pax_global_header00006660000000000000000000000064150364656540014530gustar00rootroot0000000000000052 comment=46e3fbc49c28184f602eec86d5f72892244ebacf pystac-client-0.9.0/000077500000000000000000000000001503646565400143155ustar00rootroot00000000000000pystac-client-0.9.0/.adr-dir000066400000000000000000000000231503646565400156330ustar00rootroot00000000000000docs/source/design pystac-client-0.9.0/.codespellignore000066400000000000000000000000101503646565400174630ustar00rootroot00000000000000filetestpystac-client-0.9.0/.gitattributes000066400000000000000000000000621503646565400172060ustar00rootroot00000000000000tests/cassettes/**/*.yaml linguist-generated=true pystac-client-0.9.0/.github/000077500000000000000000000000001503646565400156555ustar00rootroot00000000000000pystac-client-0.9.0/.github/dependabot.yml000066400000000000000000000005271503646565400205110ustar00rootroot00000000000000version: 2 updates: - package-ecosystem: github-actions directory: "/" schedule: interval: weekly - package-ecosystem: pip directory: "/.github/workflows" schedule: interval: weekly - package-ecosystem: pip directory: "." schedule: interval: daily versioning-strategy: increase-if-necessary pystac-client-0.9.0/.github/pull_request_template.md000066400000000000000000000002251503646565400226150ustar00rootroot00000000000000**Related Issue(s):** - # **Description:** **PR Checklist:** - [ ] Code is formatted - [ ] Tests pass - [ ] Changes are added to CHANGELOG.md pystac-client-0.9.0/.github/workflows/000077500000000000000000000000001503646565400177125ustar00rootroot00000000000000pystac-client-0.9.0/.github/workflows/continuous-integration.yml000066400000000000000000000051201503646565400251620ustar00rootroot00000000000000name: CI on: push: branches: - main pull_request: concurrency: group: ${{ github.ref }} cancel-in-progress: true jobs: build: name: build runs-on: ${{ matrix.os }} strategy: matrix: python-version: - "3.10" - "3.11" - "3.12" os: - ubuntu-latest - windows-latest - macos-latest steps: - uses: actions/checkout@v4 - uses: astral-sh/setup-uv@v6 with: python-version: ${{ matrix.python-version }} - name: Sync run: uv sync - name: Run pre-commit run: uv run pre-commit run --all-files - name: Run pytest run: uv run pytest -Werror -s --block-network --cov pystac_client --cov-report term-missing - name: Run coverage run: uv run coverage xml - uses: codecov/codecov-action@v5 with: token: ${{ secrets.CODECOV_TOKEN }} files: ./coverage.xml fail_ci_if_error: false min-versions: name: min-versions runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: astral-sh/setup-uv@v6 with: activate-environment: true python-version: "3.10" - name: Install with min requirements run: uv sync --no-dev --resolution=lowest-direct - name: Run smoke test run: stac-client search https://landsatlook.usgs.gov/stac-server -c landsat-c2l2-sr --max-items 1 pre-release: name: pre-release runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - uses: astral-sh/setup-uv@v6 - name: Sync run: uv sync - name: Install any pre-releases of pystac run: uv pip install -U --pre pystac - name: Run pytest run: uv run pytest -Werror -s --block-network upstream: name: upstream runs-on: ubuntu-latest if: github.event_name != 'pull_request' steps: - uses: actions/checkout@v4 - uses: astral-sh/setup-uv@v6 - name: Sync run: uv sync - name: Install pystac from main run: uv pip install --force-reinstall git+https://github.com/stac-utils/pystac.git - name: Run pytest run: uv run pytest -Werror -s --block-network docs: name: docs runs-on: ubuntu-latest defaults: run: shell: bash -el {0} steps: - uses: actions/checkout@v4 - uses: astral-sh/setup-uv@v6 - name: Install pandoc run: sudo apt-get install -y pandoc - name: Sync run: uv sync --group docs - name: Build docs run: ./scripts/build-docs pystac-client-0.9.0/.github/workflows/release.yml000066400000000000000000000012331503646565400220540ustar00rootroot00000000000000name: Release on: push: tags: - "*" jobs: release: name: release runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - name: Set up Python 3.11 uses: actions/setup-python@v5 with: python-version: "3.11" - name: Install release dependencies run: | python -m pip install --upgrade pip pip install build twine - name: Build and publish package env: TWINE_USERNAME: ${{ secrets.PYPI_STACUTILS_USERNAME }} TWINE_PASSWORD: ${{ secrets.PYPI_STACUTILS_PASSWORD }} run: | python -m build twine upload dist/* pystac-client-0.9.0/.gitignore000066400000000000000000000241351503646565400163120ustar00rootroot00000000000000.python-version **/*.private* # Ignore everything JetBrains .idea # Created by .ignore support plugin (hsz.mobi) ### VisualStudio template ## Ignore Visual Studio temporary files, build results, and ## files generated by popular Visual Studio add-ons. ## ## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore # User-specific files *.rsuser *.suo *.user *.userosscache *.sln.docstates # User-specific files (MonoDevelop/Xamarin Studio) *.userprefs # Mono auto generated files mono_crash.* # Build results [Dd]ebug/ [Dd]ebugPublic/ [Rr]elease/ [Rr]eleases/ x64/ x86/ [Ww][Ii][Nn]32/ [Aa][Rr][Mm]/ [Aa][Rr][Mm]64/ bld/ [Bb]in/ [Oo]bj/ [Ll]og/ [Ll]ogs/ # Visual Studio 2015/2017 cache/options directory .vs/ # Uncomment if you have tasks that create the project's static files in wwwroot #wwwroot/ # Visual Studio 2017 auto generated files Generated\ Files/ # MSTest test Results [Tt]est[Rr]esult*/ [Bb]uild[Ll]og.* # NUnit *.VisualState.xml TestResult.xml nunit-*.xml # Build Results of an ATL Project [Dd]ebugPS/ [Rr]eleasePS/ dlldata.c # Benchmark Results BenchmarkDotNet.Artifacts/ # .NET Core project.lock.json project.fragment.lock.json artifacts/ # ASP.NET Scaffolding ScaffoldingReadMe.txt # StyleCop StyleCopReport.xml # Files built by Visual Studio *_i.c *_p.c *_h.h *.ilk *.meta *.obj *.iobj *.pch *.pdb *.ipdb *.pgc *.pgd *.rsp *.sbr *.tlb *.tli *.tlh *.tmp *.tmp_proj *_wpftmp.csproj *.log *.vspscc *.vssscc .builds *.pidb *.svclog *.scc # Chutzpah Test files _Chutzpah* # Visual C++ cache files ipch/ *.aps *.ncb *.opendb *.opensdf *.sdf *.cachefile *.VC.db *.VC.VC.opendb # Visual Studio profiler *.psess *.vsp *.vspx *.sap # Visual Studio Trace Files *.e2e # TFS 2012 Local Workspace $tf/ # Guidance Automation Toolkit *.gpState # ReSharper is a .NET coding add-in _ReSharper*/ *.[Rr]e[Ss]harper *.DotSettings.user # TeamCity is a build add-in _TeamCity* # DotCover is a Code Coverage Tool *.dotCover # AxoCover is a Code Coverage Tool .axoCover/* !.axoCover/settings.json # Coverlet is a free, cross platform Code Coverage Tool coverage*.json coverage*.xml coverage*.info # Visual Studio code coverage results *.coverage *.coveragexml # NCrunch _NCrunch_* .*crunch*.local.xml nCrunchTemp_* # MightyMoose *.mm.* AutoTest.Net/ # Web workbench (sass) .sass-cache/ # Installshield output folder [Ee]xpress/ # DocProject is a documentation generator add-in DocProject/buildhelp/ DocProject/Help/*.HxT DocProject/Help/*.HxC DocProject/Help/*.hhc DocProject/Help/*.hhk DocProject/Help/*.hhp DocProject/Help/Html2 DocProject/Help/html # Click-Once directory publish/ # Publish Web Output *.[Pp]ublish.xml *.azurePubxml # Note: Comment the next line if you want to checkin your web deploy settings, # but database connection strings (with potential passwords) will be unencrypted *.pubxml *.publishproj # Microsoft Azure Web App publish settings. Comment the next line if you want to # checkin your Azure Web App publish settings, but sensitive information contained # in these scripts will be unencrypted PublishScripts/ # NuGet Packages *.nupkg # NuGet Symbol Packages *.snupkg # The packages folder can be ignored because of Package Restore **/[Pp]ackages/* # except build/, which is used as an MSBuild target. !**/[Pp]ackages/build/ # Uncomment if necessary however generally it will be regenerated when needed #!**/[Pp]ackages/repositories.config # NuGet v3's project.json files produces more ignorable files *.nuget.props *.nuget.targets # Microsoft Azure Build Output csx/ *.build.csdef # Microsoft Azure Emulator ecf/ rcf/ # Windows Store app package directories and files AppPackages/ BundleArtifacts/ Package.StoreAssociation.xml _pkginfo.txt *.appx *.appxbundle *.appxupload # Visual Studio cache files # files ending in .cache can be ignored *.[Cc]ache # but keep track of directories ending in .cache !?*.[Cc]ache/ # Others ClientBin/ ~$* *~ *.dbmdl *.dbproj.schemaview *.jfm *.pfx *.publishsettings orleans.codegen.cs # Including strong name files can present a security risk # (https://github.com/github/gitignore/pull/2483#issue-259490424) #*.snk # Since there are multiple workflows, uncomment next line to ignore bower_components # (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) #bower_components/ # RIA/Silverlight projects Generated_Code/ # Backup & report files from converting an old project file # to a newer Visual Studio version. Backup files are not needed, # because we have git ;-) _UpgradeReport_Files/ Backup*/ UpgradeLog*.XML UpgradeLog*.htm ServiceFabricBackup/ *.rptproj.bak # SQL Server files *.mdf *.ldf *.ndf # Business Intelligence projects *.rdl.data *.bim.layout *.bim_*.settings *.rptproj.rsuser *- [Bb]ackup.rdl *- [Bb]ackup ([0-9]).rdl *- [Bb]ackup ([0-9][0-9]).rdl # Microsoft Fakes FakesAssemblies/ # GhostDoc plugin setting file *.GhostDoc.xml # Node.js Tools for Visual Studio .ntvs_analysis.dat node_modules/ # Visual Studio 6 build log *.plg # Visual Studio 6 workspace options file *.opt # Visual Studio 6 auto-generated workspace file (contains which files were open etc.) *.vbw # Visual Studio LightSwitch build output **/*.HTMLClient/GeneratedArtifacts **/*.DesktopClient/GeneratedArtifacts **/*.DesktopClient/ModelManifest.xml **/*.Server/GeneratedArtifacts **/*.Server/ModelManifest.xml _Pvt_Extensions # Paket dependency manager .paket/paket.exe paket-files/ # FAKE - F# Make .fake/ # CodeRush personal settings .cr/personal # Python Tools for Visual Studio (PTVS) __pycache__/ *.pyc # Cake - Uncomment if you are using it # tools/** # !tools/packages.config # Tabs Studio *.tss # Telerik's JustMock configuration file *.jmconfig # BizTalk build output *.btp.cs *.btm.cs *.odx.cs *.xsd.cs # OpenCover UI analysis results OpenCover/ # Azure Stream Analytics local run output ASALocalRun/ # MSBuild Binary and Structured Log *.binlog # NVidia Nsight GPU debugger configuration file *.nvuser # MFractors (Xamarin productivity tool) working folder .mfractor/ # Local History for Visual Studio .localhistory/ # BeatPulse healthcheck temp database healthchecksdb # Backup folder for Package Reference Convert tool in Visual Studio 2017 MigrationBackup/ # Ionide (cross platform F# VS Code tools) working folder .ionide/ # Fody - auto-generated XML schema FodyWeavers.xsd ### macOS template # General .DS_Store .AppleDouble .LSOverride # Icon must end with two \r Icon # Thumbnails ._* # Files that might appear in the root of a volume .DocumentRevisions-V100 .fseventsd .Spotlight-V100 .TemporaryItems .Trashes .VolumeIcon.icns .com.apple.timemachine.donotpresent # Directories potentially created on remote AFP share .AppleDB .AppleDesktop Network Trash Folder Temporary Items .apdisk ### JetBrains template # Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider # Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 # CMake cmake-build-*/ # File-based project format *.iws # IntelliJ out/ # JIRA plugin atlassian-ide-plugin.xml # Crashlytics plugin (for Android Studio and IntelliJ) com_crashlytics_export_strings.xml crashlytics.properties crashlytics-build.properties fabric.properties ### VirtualEnv template # Virtualenv # http://iamzed.com/2009/05/07/a-primer-on-virtualenv/ .Python [Bb]in [Ii]nclude [Ll]ib [Ll]ib64 [Ll]ocal pyvenv.cfg .venv pip-selfcheck.json ### JupyterNotebooks template # gitignore template for Jupyter Notebooks # website: http://jupyter.org/ .ipynb_checkpoints */.ipynb_checkpoints/* # IPython profile_default/ ipython_config.py # Remove previous ipynb_checkpoints # git rm -r .ipynb_checkpoints/ ### Python template # Byte-compiled / optimized / DLL files *.py[cod] *$py.class # C extensions *.so # Distribution / packaging build/ develop-eggs/ dist/ downloads/ eggs/ .eggs/ lib/ lib64/ parts/ sdist/ var/ wheels/ share/python-wheels/ *.egg-info/ .installed.cfg *.egg MANIFEST # PyInstaller # Usually these files are written by a python script from a template # before PyInstaller builds the exe, so as to inject date/other infos into it. *.manifest *.spec # Installer logs pip-log.txt pip-delete-this-directory.txt # Unit test / coverage reports htmlcov/ .tox/ .nox/ .coverage .coverage.* .cache nosetests.xml coverage.xml *.cover *.py,cover .hypothesis/ .pytest_cache/ cover/ # Translations *.mo *.pot # Django stuff: local_settings.py db.sqlite3 db.sqlite3-journal # Flask stuff: instance/ .webassets-cache # Scrapy stuff: .scrapy # Sphinx documentation docs/_build/ # PyBuilder .pybuilder/ target/ # Jupyter Notebook # IPython # pyenv # For a library or package, you might want to ignore these files since the code is # intended to run in multiple environments; otherwise, check them in: # .python-version # pipenv # According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control. # However, in case of collaboration, if having platform-specific dependencies or dependencies # having no cross-platform support, pipenv may install dependencies that don't work, or not # install all needed dependencies. #Pipfile.lock # PEP 582; used by e.g. github.com/David-OConnor/pyflow __pypackages__/ # Celery stuff celerybeat-schedule celerybeat.pid # SageMath parsed files *.sage.py # Environments .env env/ venv/ ENV/ env.bak/ venv.bak/ # Spyder project settings .spyderproject .spyproject # Rope project settings .ropeproject # mkdocs documentation /site # mypy .mypy_cache/ .dmypy.json dmypy.json # Pyre type checker .pyre/ # pytype static type analyzer .pytype/ # Cython debug symbols cython_debug/ ### Linux template # temporary files which can be created if a process still has a handle open of a deleted file .fuse_hidden* # KDE directory preferences .directory # Linux trash folder which might appear on any partition or disk .Trash-* # .nfs files are created when an open file is removed but is still being accessed .nfs* ### Windows template # Windows thumbnail cache files Thumbs.db Thumbs.db:encryptable ehthumbs.db ehthumbs_vista.db # Dump file *.stackdump # Folder config file [Dd]esktop.ini # Recycle Bin used on file shares $RECYCLE.BIN/ # Windows Installer files *.cab *.msi *.msix *.msm *.msp # Windows shortcuts *.lnk pystac-client-0.9.0/.pre-commit-config.yaml000066400000000000000000000017431503646565400206030ustar00rootroot00000000000000# Configuration file for pre-commit (https://pre-commit.com/). # Please run `pre-commit run --all-files` when adding or changing entries. repos: - repo: https://github.com/charliermarsh/ruff-pre-commit rev: "v0.9.6" hooks: - id: ruff args: [--fix, --exit-non-zero-on-fix] - id: ruff-format - repo: https://github.com/codespell-project/codespell rev: v2.4.1 hooks: - id: codespell args: [--ignore-words=.codespellignore] types_or: [jupyter, markdown, python, shell] - repo: https://github.com/PyCQA/doc8 rev: v1.1.2 hooks: - id: doc8 args: [--ignore=D004] additional_dependencies: - importlib_metadata < 5; python_version == "3.7" - repo: https://github.com/pre-commit/mirrors-mypy rev: v1.15.0 hooks: - id: mypy files: ".*\\.py$" additional_dependencies: - pystac - pytest-vcr - types-requests - types-python-dateutil pystac-client-0.9.0/.readthedocs.yml000066400000000000000000000007001503646565400174000ustar00rootroot00000000000000version: 2 build: os: ubuntu-22.04 tools: python: "3.12" jobs: post_install: - asdf plugin add uv - asdf install uv latest - asdf global uv latest - uv sync --group docs build: html: - uv run -- sphinx-build -M html docs $READTHEDOCS_OUTPUT pdf: - uv run -- sphinx-build -M latexpdf docs $READTHEDOCS_OUTPUT sphinx: configuration: docs/conf.py formats: - pdf - htmlzip pystac-client-0.9.0/CHANGELOG.md000066400000000000000000000565441503646565400161440ustar00rootroot00000000000000# Changelog All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). ## [Unreleased] ## [v0.9.0] - 2025-07-17 ### Added - Coerce cql2 style to match HTTP method using `cql2` library ([#804](https://github.com/stac-utils/pystac-client/pull/804)) ### Fixed - Fix usage documentation of `ItemSearch` ([#790](https://github.com/stac-utils/pystac-client/pull/790)) - Fix fields argument to CLI ([#797](https://github.com/stac-utils/pystac-client/pull/797)) - Clarify recursive behaviour of the `get_items` method in the method docstring ([#800](https://github.com/stac-utils/pystac-client/pull/800)) ## [v0.8.6] - 2025-02-11 ### Changed - Use [uv](https://docs.astral.sh/uv/) for development ([#784](https://github.com/stac-utils/pystac-client/pull/784)) - Updated to Python 3.10 syntax with **pyupgrade** ([#783](https://github.com/stac-utils/pystac-client/pull/783/)) ### Fixed - `Client.get_collection` for static catalogs ([#782](https://github.com/stac-utils/pystac-client/pull/782)) - Permissive collection reading ([#787](https://github.com/stac-utils/pystac-client/pull/787)) ## [v0.8.5] - 2024-10-23 ### Fixed - Use urljoin to build hrefs ([#746](https://github.com/stac-utils/pystac-client/pull/746)) ## [v0.8.4] - 2024-10-16 ### Added - Support for collection search via `CollectionSearch` class and associated client methods ([#735](https://github.com/stac-utils/pystac-client/pull/735)) ### Removed - Python 3.9 support ([#724](https://github.com/stac-utils/pystac-client/pull/724)) ## [v0.8.3] - 2024-07-01 ### Fixed - Actually set `timeout` when initializing `StacApiIO` ([#709](https://github.com/stac-utils/pystac-client/pull/709)) - Set `_stac_io` on `CollectionClient` when reading ([#709](https://github.com/stac-utils/pystac-client/pull/709)) ## [v0.8.2] - 2024-05-30 ### Added - Support for "Feature" type `intersects` dictionaries ([#696](https://github.com/stac-utils/pystac-client/pull/696)) ## [v0.8.1] - 2024-05-23 ### Fixed - Use singular `include` and `exclude` Field extension key names ([#690](https://github.com/stac-utils/pystac-client/pull/690)) ## [v0.8.0] - 2024-05-17 ### Fixed - Update `requires-python` in metadata to require >= 3.9 ([#684](https://github.com/stac-utils/pystac-client/pull/684)) - Interpret naive datetimes as UTC ([#686](https://github.com/stac-utils/pystac-client/pull/686)) ## [v0.7.7] - 2024-04-19 ### Changed - Updated to **pystac** v1.10.0 ([#661](https://github.com/stac-utils/pystac-client/pull/661)) - Use [uv](https://github.com/astral-sh/uv) for CI ([#663](https://github.com/stac-utils/pystac-client/pull/663)) - use `APILayoutStrategy` as fallback strategy ([#666](https://github.com/stac-utils/pystac-client/pull/666)) - Updated grammar in README ([#676](https://github.com/stac-utils/pystac-client/pull/676)) ### Fixed - Respect the `REQUESTS_CA_BUNDLE` and `CURL_CA_BUNDLE` environment variables when sending requests ([#669](https://github.com/stac-utils/pystac-client/pull/669)) ## [v0.7.6] - 2024-02-28 ### Fixed - Recursion error in `get_items` ([#608](https://github.com/stac-utils/pystac-client/pull/608)) - Fixes inconsistent behavior in `CollectionClient.get_items` when Item IDs are supplied ([#639](https://github.com/stac-utils/pystac-client/pull/639)) - Logic determining if `context.matched` in `ItemSearch.matched` response ([#646](https://github.com/stac-utils/pystac-client/pull/646)) ### Removed - Passing `-q` to the CLI rather than `--query` ([#614](https://github.com/stac-utils/pystac-client/pull/614)) ## [v0.7.5] - 2023-09-05 ### Fixed - `--matched` flag in CLI ([#588](https://github.com/stac-utils/pystac-client/pull/588)) ## [v0.7.4] - 2023-09-05 ### Changed - Don't provide a `limit` by default, trust the server to know its limits ([#584](https://github.com/stac-utils/pystac-client/pull/584)) ## [v0.7.3] - 2023-08-21 ### Changed - Raise more informative errors from CLI ([#554](https://github.com/stac-utils/pystac-client/pull/554)) - Add `Retry` type hint to `StacApiIO` ([#577](https://github.com/stac-utils/pystac-client/pull/577)) ### Fixed - Updated `get_items` signatures for PySTAC v1.8 ([#559](https://github.com/stac-utils/pystac-client/pull/559), [#579](https://github.com/stac-utils/pystac-client/pull/579)) ## [v0.7.2] - 2023-06-23 ### Fixed - Remove troublesome assertion ([#549](https://github.com/stac-utils/pystac-client/pull/549)) ## [v0.7.1] - 2023-06-13 ### Fixed - Remove unnecessary `typing_extensions` import ([#541](https://github.com/stac-utils/pystac-client/pull/541)) ## [v0.7.0] - 2023-06-12 ### Added - Timeout option added to `Client.open` ([#463](https://github.com/stac-utils/pystac-client/pull/463), [#538](https://github.com/stac-utils/pystac-client/pull/538)) - Support for fetching catalog queryables ([#477](https://github.com/stac-utils/pystac-client/pull/477)) - PySTAC Client specific warnings ([#480](https://github.com/stac-utils/pystac-client/pull/480)) - Support for fetching and merging a selection of queryables ([#511](https://github.com/stac-utils/pystac-client/pull/511)) - Better error messages for the CLI ([#531](https://github.com/stac-utils/pystac-client/pull/531)) - `Modifiable` to our public API ([#534](https://github.com/stac-utils/pystac-client/pull/534)) - `max_retries` parameter to `StacApiIO` ([#532](https://github.com/stac-utils/pystac-client/pull/532)) ### Changed - Switched to Ruff from isort/flake8 ([#457](https://github.com/stac-utils/pystac-client/pull/457)) - Move to `FutureWarning` from `DeprecationWarning` for item search interface functions that are to be removed ([#464](https://github.com/stac-utils/pystac-client/pull/464)) - Consolidate contributing docs into one place ([#478](https://github.com/stac-utils/pystac-client/issues/478)) - Use `pyproject.toml` instead of `setup.py` ([#501](https://github.com/stac-utils/pystac-client/pull/501)) - Enable Ruff import sorting ([#518](https://github.com/stac-utils/pystac-client/pull/518)) ### Fixed - `query` parameter in GET requests ([#362](https://github.com/stac-utils/pystac-client/pull/362)) - Double encoding of `intersects` parameter in GET requests ([#362](https://github.com/stac-utils/pystac-client/pull/362)) - Fix geometry instantiation in item-search-intersects.ipynb ([#484](https://github.com/stac-utils/pystac-client/pull/484)) - Three tests that were false positives due to out-of-date cassettes ([#491](https://github.com/stac-utils/pystac-client/pull/491)) - Max items checks when paging ([#492](https://github.com/stac-utils/pystac-client/pull/492)) - `ItemSearch.url_with_parameters` no longer unquotes the url ([#530](https://github.com/stac-utils/pystac-client/pull/530)) ### Removed - `pystac_client.conformance.CONFORMANCE_URIS` dictionary ([#480](https://github.com/stac-utils/pystac-client/pull/480)) ## [v0.6.1] - 2023-03-14 ### Changed - Bumped PySTAC dependency to >= 1.7.0 ([#449](https://github.com/stac-utils/pystac-client/pull/449)) ### Fixed - Fix parse fail when header has multiple '=' characters ([#440](https://github.com/stac-utils/pystac-client/pull/440)) - `Client.open` and `Client.from_file` now apply `headers`, etc to existing `stac_io` instances (([#439](https://github.com/stac-utils/pystac-client/pull/439))) ## [v0.6.0] - 2023-01-27 ### Added - Python 3.11 support ([#347](https://github.com/stac-utils/pystac-client/pull/347)) - `request_modifier` to `StacApiIO` to allow for additional authentication mechanisms (e.g. AWS SigV4) ([#372](https://github.com/stac-utils/pystac-client/pull/372)) - _Authentication_ tutorial, demonstrating how to use to the provided hooks to use both basic and AWS SigV4 authentication ([#372](https://github.com/stac-utils/pystac-client/pull/372)) - CI checks for Windows and MacOS ([#378](https://github.com/stac-utils/pystac-client/pull/378)) - Fallback to `STAC API - Item Search` when finding a single item in `CollectionClient` if `STAC API - Features` is not implemented ([#379](https://github.com/stac-utils/pystac-client/pull/379)) ### Fixed - Stop iteration on an empty page ([#338](https://github.com/stac-utils/pystac-client/pull/338)) - Some mishandled cases for datetime intervals ([#363](https://github.com/stac-utils/pystac-client/pull/363)) - Collection requests when the Client's url ends in a '/' ([#373](https://github.com/stac-utils/pystac-client/pull/373), [#405](https://github.com/stac-utils/pystac-client/pull/405)) - Parse datetimes more strictly ([#364](https://github.com/stac-utils/pystac-client/pull/364)) ### Removed - Python 3.7 support ([#347](https://github.com/stac-utils/pystac-client/pull/347)) ## [v0.5.1] - 2022-09-19 ### Added - Added `ItemSearch.url_with_parameters` to get a formatted search url ([#304](https://github.com/stac-utils/pystac-client/issues/304)) ### Fixed - Fix variable name in quickstart example ([#316](https://github.com/stac-utils/pystac-client/pull/316)) - `StacApiIO.write_text_to_href` ([#312](https://github.com/stac-utils/pystac-client/pull/312)) - Removed mention of STAC_URL in `Client.open` docstring ([#317](https://github.com/stac-utils/pystac-client/pull/317)) ## [v0.5.0] - 2022-08-19 ### Added - Added a new keyword `modifier` to various constructors like `Client.open()` ([#259](https://github.com/stac-utils/pystac-client/issues/259)) ### Fixed - Fix type annotation of `Client._stac_io` and avoid implicit re-exports in `pystac_client.__init__.py` ([#249](https://github.com/stac-utils/pystac-client/pull/249)) - Added `ItemSearch.pages`, `ItemSearch.pages_as_dicts`, `ItemSearch.item_collection`, and `ItemSearch.item_collection_as_dict` as replacements for various deprecated methods ([#237](https://github.com/stac-utils/pystac-client/issues/237)) - Restored the previous behavior of `Client.search()` to return an unlimited number of items by default. ([#273](https://github.com/stac-utils/pystac-client/pull/273)) ### Deprecated - `ItemSearch.item_collections` has been deprecated in favor of `ItemSearch.pages`. ([#237](https://github.com/stac-utils/pystac-client/issues/237)) ## [v0.4.0] - 2022-06-08 ### Added - Significantly improved type hints - lru_cache to several methods ([#167](https://github.com/stac-utils/pystac-client/pull/167)) - Direct item GET via ogcapi-features, if conformant ([#166](https://github.com/stac-utils/pystac-client/pull/166)) - `py.typed` for downstream type checking ([#163](https://github.com/stac-utils/pystac-client/pull/163)) - Added tutorial for using various geometry objects (e.g., shapely, geojson) as an Item Search intersects argument ([#232](https://github.com/stac-utils/pystac-client/pull/232)) ### Changed - Item Search no longer defaults to returning an unlimited number of result Items from its "items" methods. The `max_items` parameter now defaults to 100 instead of None. Since the `limit` parameter also defaults to 100, in an ideal situation, only one request will be made to the server to retrieve all 100 items. Both of these parameters can be carefully adjusted upwards to align with the server's capabilities and the expected number of search results. ([#208](https://github.com/stac-utils/pystac-client/pull/208)) - Better error message when trying to search a non-item-search-conforming catalog ([#164](https://github.com/stac-utils/pystac-client/pull/164)) - Search `filter-lang` defaults to `cql2-json` instead of `cql-json` ([#169](https://github.com/stac-utils/pystac-client/pull/169)) - Search `filter-lang` will be set to `cql2-json` if the `filter` is a dict, or `cql2-text` if it is a string ([#169](https://github.com/stac-utils/pystac-client/pull/169)) - Search parameter `intersects` is now typed to only accept a str, dict, or object that implements `__geo_interface__` ([#174](https://github.com/stac-utils/pystac-client/pull/174)) - Better error message when trying to open a Collection with `Client.open` ([#222](https://github.com/stac-utils/pystac-client/pull/222)) ### Deprecated - Item Search methods `get_items()` and `get_item_collections()` have been renamed to `items()` and `item_collections()`. The original methods are now deprecated and may be removed as early as v0.5.0. ([#206](https://github.com/stac-utils/pystac-client/pull/206)) - Item Search methods `get_all_items()` and `get_all_items_as_dict()` are now deprecated, and may be removed as early as v0.5.0. These have been deprecated because they have the potential to perform a large number of requests to the server and instantiate a large number of objects in memory. To a user, this is only visible as a large delay in the method call and/or the exhaustion of all available memory. The iterator methods `items()` or `item_collections()` should be used instead. ([#206](https://github.com/stac-utils/pystac-client/pull/206)) - CLI parameter `-q` is now deprecated and may be removed as early as v0.5.0. Use `--query` instead. ([#215](https://github.com/stac-utils/pystac-client/pull/215)) ## Removed - Client parameter `require_geojson_link` has been removed. ([#165](https://github.com/stac-utils/pystac-client/pull/165)) ### Fixed - Search query parameter now has correct typing and handles Query Extension JSON format. ([#220](https://github.com/stac-utils/pystac-client/pull/220)) - Search sortby parameter now has correct typing and handles both GET and POST JSON parameter formats. ([#175](https://github.com/stac-utils/pystac-client/pull/175)) - Search fields parameter now has correct typing and handles both GET and POST JSON parameter formats. ([#184](https://github.com/stac-utils/pystac-client/pull/184)) - Use pytest configuration to skip benchmarks by default (instead of a `skip` mark). ([#168](https://github.com/stac-utils/pystac-client/pull/168)) - Methods retrieving collections incorrectly checked the existence of the OAFeat OpenAPI 3.0 conformance class () instead of the `STAC API - Collections` () or `STAC API - Features` () conformance classes. ([#223](https://github.com/stac-utils/pystac-client/pull/223)) ## [v0.3.5] - 2022-05-26 ### Fixed - Search against earth-search v0 failed with message "object of type 'Link' has no len()" ([#179](https://github.com/stac-utils/pystac-client/pull/179)) ## [v0.3.4] - 2022-05-18 ### Changed - Relaxed media type requirement for search links ([#160](https://github.com/stac-utils/pystac-client/pull/160), [#165](https://github.com/stac-utils/pystac-client/pull/165)) ## [v0.3.3] - 2022-04-28 ### Added - Add `--filter-lang` parameter to allow specifying other filter language to be used within the `--filter` parameter ([#140](https://github.com/stac-utils/pystac-client/pull/140)) - CI checks against minimum versions of all dependencies and any pre-release versions of PySTAC ([#144](https://github.com/stac-utils/pystac-client/pull/144)) ### Changed - Relaxed upper bound on PySTAC dependency ([#144](https://github.com/stac-utils/pystac-client/pull/144)) - Bumped PySTAC dependency to >= 1.4.0 ([#147](https://github.com/stac-utils/pystac-client/pull/147)) ## [v0.3.2] - 2022-01-11 ### Added - `Client.search` accepts an optional `filter_lang` argument for `filter` requests ([#128](https://github.com/stac-utils/pystac-client/pull/128)) - Added support for filtering the search endpoint using the `media_type` in `Client.open` ([#142](https://github.com/stac-utils/pystac-client/pull/142)) ### Fixed - Values from `parameters` and `headers` arguments to `Client.open` and `Client.from_file` are now also used in requests made from `CollectionClient` instances fetched from the same API (([#126](https://github.com/stac-utils/pystac-client/pull/126))) - The tests folder is no longer installed as a package. ## [v0.3.1] - 2021-11-17 ### Added - Adds `--block-network` option to all test commands to ensure no network requests are made during unit tests ([#119](https://github.com/stac-utils/pystac-client/pull/119)) - `parameters` argument to `StacApiIO`, `Client.open`, and `Client.from_file` to allow query string parameters to be passed to all requests ([#118](https://github.com/stac-utils/pystac-client/pull/118)) ### Changed - Update min PySTAC version to 1.2 - Default page size limit set to 100 rather than relying on the server default - Fetch single collection directly from endpoint in API rather than iterating through children [Issue #114](https://github.com/stac-utils/pystac-client/issues/114) ### Fixed - `Client.get_collections` raised an exception when API did not publish `/collections` conformance class instead of falling back to using child links ([#120](https://github.com/stac-utils/pystac-client/pull/120)) ## [v0.3.0] - 2021-09-28 ### Added - Jupyter Notebook tutorials - Basic CQL-JSON filtering ([#100](https://github.com/stac-utils/pystac-client/pull/100)) ### Changed - Improved performance when constructing `pystac.ItemCollection` objects. - Relax `requests` dependency ([#87](https://github.com/stac-utils/pystac-client/pull/87)) - Use regular expressions for checking conformance classes ([#97](https://github.com/stac-utils/pystac-client/pull/97)) - Reorganized documentation, updated all docs ### Fixed - `ItemSearch` now correctly handles times without a timezone specifier ([#92](https://github.com/stac-utils/pystac-client/issues/92)) - queries including `gsd` cast to string to float when using shortcut query syntax (i.e., "key=val" strings). ([#98](https://github.com/stac-utils/pystac-client/pull/97)) - Documentation lints ([#108](https://github.com/stac-utils/pystac-client/pull/108)) ## [v0.2.0] - 2021-08-04 ### Added - `Client.open` falls back to the `STAC_URL` environment variable if no url is provided as an argument ([#48](https://github.com/stac-utils/pystac-client/pull/48)) - New Search.get_pages() iterator function to retrieve pages as raw JSON, not as ItemCollections - `StacApiIO` class added, subclass from PySTAC `StacIO`. A `StacApiIO` instance is used for all IO for a Client instance, and all requests are in a single HTTP session, handle pagination and respects conformance - `conformance.CONFORMANCE_CLASSES` dictionary added containing all STAC API Capabilities from stac-api-spec - `collections` subcommand to CLI, for saving all Collections in catalog as JSON - `Client.get_collections` overrides Catalog to use /collections endpoint if API conforms - `Client.get_collection()` for getting specific collection - `Client.get_items` and `Client.get_all_items` override Catalog functions to use search endpoint instead of traversing catalog ### Changed - Update to use PySTAC 1.1.0 - IO changed to use PySTAC's new StacIO base class. - `Search.item_collections()` renamed to `Search.get_item_collections()` - `Search.item()` renamed to `Search.get_items()` - Conformance is checked by each individual function that requires a particular conformance - STAC API testing URLs changed to updated APIs - `ItemSearch.get_pages()` function moved to StacApiIO class for general use - Logging is now enabled in the CLI in all cases. If data are being printed to stdout, logging goes to stderr. ([#79](https://github.com/stac-utils/pystac-client/pull/79)) - Improved logging for GET requests (prints encoded URL) ### Removed - `get_pages` and `simple_stac_resolver` functions from `pystac_client.stac_io` (The new StacApiIO class understands `Link` objects) - `Client.search()` no longer accepts a `next_resolver` argument - pystac.extensions modules, which were based on PySTAC's previous extension implementation, replaced in 1.0.0 - `stac_api_object.StacApiObjectMixin`, replaced with conformance checking in `StacApiIO` - PySTAC Collection objects can no longer be passed in as `collections` arguments to the `ItemSearch` class (just pass ids) - `Catalog.get_collection_list` (was alias to `get_child_links`) because made assumption about this being an API only. Also redundant with `Catalog.get_collections` - `Search.item_collections()` - `Search.items()` - STAC_URL environment variable in Client.open(). url parameter in Client is now required - STAC_URL environment variable in CLI. CLI now has a required positional argument for the URL ### Fixed - Running `stac-client` with no arguments no longer raises a confusing exception ([#52](https://github.com/stac-utils/pystac-client/pull/52)) - `Client.get_collections_list` ([#44](https://github.com/stac-utils/pystac-client/issues/44)) - The regular expression used for datetime parsing ([#59](https://github.com/stac-utils/pystac-client/pull/59)) - `Client.from_file` now works as expected, using `Client.open` is not required, although it will fetch STAC_URL from an envvar ## [v0.1.1] - 2021-04-16 ### Added - `ItemSearch.items_as_collection` ([#37](https://github.com/stac-utils/pystac-client/pull/37)) - Documentation [published on ReadTheDocs](https://pystac-client.readthedocs.io/en/latest/) ([#46](https://github.com/stac-utils/pystac-client/pull/46)) ### Changed - CLI: pass in headers as list of KEY=VALUE pairs ### Fixed - Include headers in STAC_IO ([#38](https://github.com/stac-utils/pystac-client/pull/38)) - README updated to reflect actual CLI behavior ## [v0.1.0] - 2021-04-14 Initial release. [Unreleased]: https://github.com/stac-utils/pystac-client/compare/v0.9.0...main [v0.9.0]: https://github.com/stac-utils/pystac-client/compare/v0.8.6...v0.9.0 [v0.8.6]: https://github.com/stac-utils/pystac-client/compare/v0.8.5...v0.8.6 [v0.8.5]: https://github.com/stac-utils/pystac-client/compare/v0.8.4...v0.8.5 [v0.8.4]: https://github.com/stac-utils/pystac-client/compare/v0.8.3...v0.8.4 [v0.8.3]: https://github.com/stac-utils/pystac-client/compare/v0.8.2...v0.8.3 [v0.8.2]: https://github.com/stac-utils/pystac-client/compare/v0.8.1...v0.8.2 [v0.8.1]: https://github.com/stac-utils/pystac-client/compare/v0.8.0...v0.8.1 [v0.8.0]: https://github.com/stac-utils/pystac-client/compare/v0.7.7...v0.8.0 [v0.7.7]: https://github.com/stac-utils/pystac-client/compare/v0.7.6...v0.7.7 [v0.7.6]: https://github.com/stac-utils/pystac-client/compare/v0.7.5...v0.7.6 [v0.7.5]: https://github.com/stac-utils/pystac-client/compare/v0.7.4...v0.7.5 [v0.7.4]: https://github.com/stac-utils/pystac-client/compare/v0.7.3...v0.7.4 [v0.7.3]: https://github.com/stac-utils/pystac-client/compare/v0.7.2...v0.7.3 [v0.7.2]: https://github.com/stac-utils/pystac-client/compare/v0.7.1...v0.7.2 [v0.7.1]: https://github.com/stac-utils/pystac-client/compare/v0.7.0...v0.7.1 [v0.7.0]: https://github.com/stac-utils/pystac-client/compare/v0.6.1...v0.7.0 [v0.6.1]: https://github.com/stac-utils/pystac-client/compare/v0.6.0...v0.6.1 [v0.6.0]: https://github.com/stac-utils/pystac-client/compare/v0.5.1...v0.6.0 [v0.5.1]: https://github.com/stac-utils/pystac-client/compare/v0.5.0...v0.5.1 [v0.5.0]: https://github.com/stac-utils/pystac-client/compare/v0.4.0...v0.5.0 [v0.4.0]: https://github.com/stac-utils/pystac-client/compare/v0.3.5...v0.4.0 [v0.3.5]: https://github.com/stac-utils/pystac-client/compare/v0.3.4...v0.3.5 [v0.3.4]: https://github.com/stac-utils/pystac-client/compare/v0.3.3...v0.3.4 [v0.3.3]: https://github.com/stac-utils/pystac-client/compare/v0.3.2...v0.3.3 [v0.3.2]: https://github.com/stac-utils/pystac-client/compare/v0.3.1...v0.3.2 [v0.3.1]: https://github.com/stac-utils/pystac-client/compare/v0.3.0...v0.3.1 [v0.3.0]: https://github.com/stac-utils/pystac-client/compare/v0.2.0...v0.3.0 [v0.2.0]: https://github.com/stac-utils/pystac-client/compare/v0.1.1...v0.2.0 [v0.1.1]: https://github.com/stac-utils/pystac-client/compare/v0.1.0...v0.1.1 [v0.1.0]: https://github.com/stac-utils/pystac-client/tree/v0.1.0 pystac-client-0.9.0/LICENSE000066400000000000000000000010511503646565400153170ustar00rootroot00000000000000Copyright 2021 Jon Duckworth Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. pystac-client-0.9.0/MANIFEST.in000066400000000000000000000000271503646565400160520ustar00rootroot00000000000000global-include *.typed pystac-client-0.9.0/README.md000066400000000000000000000027131503646565400155770ustar00rootroot00000000000000# pystac-client [![CI](https://github.com/stac-utils/pystac-client/actions/workflows/continuous-integration.yml/badge.svg)](https://github.com/stac-utils/pystac-client/actions/workflows/continuous-integration.yml) [![Release](https://github.com/stac-utils/pystac-client/actions/workflows/release.yml/badge.svg)](https://github.com/stac-utils/pystac-client/actions/workflows/release.yml) [![PyPI version](https://badge.fury.io/py/pystac-client.svg)](https://badge.fury.io/py/pystac-client) [![Documentation](https://readthedocs.org/projects/pystac-client/badge/?version=stable)](https://pystac-client.readthedocs.io) [![codecov](https://codecov.io/gh/stac-utils/pystac-client/branch/main/graph/badge.svg)](https://codecov.io/gh/stac-utils/pystac-client) A Python client for working with [STAC](https://stacspec.org/) APIs. ## Installation PySTAC Client is published to PyPi as [pystac-client](https://pypi.org/project/pystac-client/). The only direct Python dependencies of **pystac-client** are [PySTAC](https://pystac.readthedocs.io), [requests](https://docs.python-requests.org), and [dateutil](https://dateutil.readthedocs.io). To install with pip, run: ```shell python -m pip install pystac-client ``` ## Documentation See the [documentation page](https://pystac-client.readthedocs.io/en/latest/) for the latest docs. ## Development See the [contributing page](https://pystac-client.readthedocs.io/en/latest/contributing.html) for the latest development instructions. pystac-client-0.9.0/RELEASING.md000066400000000000000000000026241503646565400161540ustar00rootroot00000000000000# Releasing 1. Determine the next version. We follow [semantic versioning](https://semver.org/). 2. Create a release branch named `release/vX.Y.Z`, where `X.Y.Z` is the next version. 3. Update [version.py](pystac_client/version.py) with the new version. 4. Update all cassettes: `pytest --record-mode rewrite` 5. Update the pre-commit hook versions: `pre-commit autoupdate` 6. Update [CHANGELOG.md](CHANGELOG.md). 1. Add a new header under "Unreleased" with the new version and the date, e.g. `## [vX.Y.Z] - YYYY-MM-DD`. 2. Audit the changelog section to ensure all changes are captured. 3. Add a link reference for the new version after the Unreleased link reference at the bottom of the file. Follow the format from the previous version links. 7. If necessary, update the versions table in [the documentation](docs/index.rst) 8. (optional) Build the package locally and inspect its contents: `pip install build && python -m build` 9. Open a pull request for your `release/vX.Y.Z` branch against the appropriate branch (either `main` or a version branch, e.g. `v0.3`). 10. After pull request merge, create an annotated tag for your version, e.g. `git tag -a vX.Y.Z`. 11. Push the tag. This will trigger [the Github release workflow](.github/workflows/release.yml) and publish to PyPI. 12. [Create a new release on Github](https://github.com/stac-utils/pystac-client/releases/new) pointing to the new tag. pystac-client-0.9.0/docs/000077500000000000000000000000001503646565400152455ustar00rootroot00000000000000pystac-client-0.9.0/docs/_static/000077500000000000000000000000001503646565400166735ustar00rootroot00000000000000pystac-client-0.9.0/docs/_static/STAC-03.png000066400000000000000000003502061503646565400203610ustar00rootroot00000000000000‰PNG  IHDRŸš¯•MsRGB®Îé€eXIfMM*1$2‡iVAdobe Photoshop CC 2015 (Macintosh)  Ÿ šÑižµiTXtXML:com.adobe.xmp xmp.iid:F6DA6C9F500D11E88467C7F7667B81A8 xmp.iid:F6DA6C9D500D11E88467C7F7667B81A8 xmp.did:F6DA6C9E500D11E88467C7F7667B81A8 xmp.did:F6DA6CA0500D11E88467C7F7667B81A8 1 Adobe Photoshop CC 2015 (Macintosh) =¾£@IDATxìÝ ¼œW}üsf®dI–µ^YÆX`³ÙÆ)%ÐãÈKjÙ’ æ:ä%!²%”:iÈVš.I£Ð6i 4É›&é«ÚÆ ! 2[h(‹YÒ@œÊ‚±q¼H^1ÚîÌéÙ"’ÐHÏ]ž™gæ|çó¹Ü™gÎsÎùÏpGžß<Ï‚ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ @€ÀÑñè MzœRj}üŽÏï¦ðÒãóBHçäù­Í?Kš4Os!@€öç6»òÏ—òÏmù=îƒíÖ£öÂuëöTØW @€ @€ ÐxF†ÏŸüê7×NOL¿>‡Í›²àéW4A 0I1ÜR÷Íê®»–ì^òó!t:„¸¨)HæA€jÈtü£§ßðÂu“ߨy,Ý @€ @€ @€Z>ìÎÝß“º­·ç*Ϫ¥R @€¦ ä#¡c+ý؋֭úý¦OÕü @€ @€ @€ÀÑŸo½ãÁ-!¥ßÉ“›8z‚ @€~ë®u+~òŠ;Ö®d @€ @€Q¡‡Ï·Þ~ÿ¿1þʈú™6¨E ưãg¬øAt-¼:%@€ @€ @€Z5ôY¹ËƒG< ž+{iH€å¤¦žxǃÛË©X¥ @€ @€ 0êC;òùãw<ô¼nê~,:Õö¨¿ŠÌŸêˆé'Î_·ê¿Õ7€ž  @€ @€ @€Àü %|þÔ]w-Ù;½ø³¹„³æ§ ½ @€±Ø×îv¾û{ΜüüØV¨0 @€ @€ ¡œv{ïô’—õÏcñRÔ,pR'¶«æ1tO€ @€ @€æ,0ð#Ÿ?ö•GNM ÜB\4çÙë€"Ð ­öÂ'-ÿÓBÊU& @€ @€Œ ÀÀ|î.ì¼^ð<‚¯S&@€¡ tb÷ C€Á  @€ @€ @€À >§”Z1¤M'˜“§  @€£b /ûÄß=pæQ›=$@€ @€ @€høü±;xQ®ü‰©ÞD @€À t&âÔM×T  @€ @€ @ 0†Ï)Å—æ«\ 0o)u½Î›¦Ž @€ @€ @`¾>ÇŸ7ßè”"C|~)µª“ @€ @€FO` áséìÑ#2c ÐùûGÖ4f6&B€ @€ @€pøN;llw  @€ ´;ÓOœá.š @€ @€ @€ :|^2ª B€ÆT uÒÒ1-MY @€ @€ 0⃟GœËô  @€ÀpZ)u‡;£ @€ @€ @€c Ÿíb+h¤Àt;~³‘3) @€ @€(^@ø\üKŒ’@g:~}”æk® @€ @€ PŽ€ð¹œµV)Œº@ ÷¾ä¬•ŽzæO€ @€ @€ã) |ÏuUŒ£@ ŸDzÔD€ @€ @€ã! |uT Bú@e*‘ @€ @€FT@ø<¢ gÚ Pœ@gÁôŠ«ZÁ @€ @€ 02Âç‘Y*%@€ÂnzÁS–ÞS¸ò  @€ @€ @ ÁÂç/Ž© @€C)¶~õÐ}¿  @€ @€ @€@„ÏM\s"@€‡ ¤nxñºå~Ø&w  @€ @€ @€@ã„Ï["@€G<ØŸ:b‹ @€ @€ @ Âç.Š) @€Cù¨ç«^¸nò‡ûM€ @€ @€š*0ÑÔ‰™(] ưíüu+ß]ºƒú  @€ @€ @`4ù<ëd– Pœ@zó‹Ö­ü¥âÊV0 @€ @€Œ¬€ðyd—ÎÄ  @`Lº)„yþ“V½aLëS @€ @€Œ©€ÓnéÂ*‹FRàëÝ^{Áº•ÉÙ›4 @€ @€-àÈ碗_ñ ÐGCˆ¿¼hbϹ‚熬ˆi @€ @€ @€ÀŒùש«o @€ @€ @€" |.d¡•I€ @€ @€ @€:„Ïuêê› @€ @€ @€…Ÿ Yhe @€ @€ @€ @ Násºú&@€ @€ @€ @€@!ÂçBZ™ @€ @€ @€¨S@ø\§®¾  @€ @€ @€ Pˆ€ð¹…V& @€ @€ @€ê>ש«o @€ @€ @€" |.d¡•I€ @€ @€ @€:„Ïuêê› @€ @€ @€…Ÿ Yhe @€ @€ @€ @ Násºú&@€ @€ @€ @€@!ÂçBZ™ @€ @€ @€¨S@ø\§®¾  @€ @€ @€ Pˆ€ð¹…V& @€ @€ @€ê>ש«o @€ @€ @€" |.d¡•I€ @€ @€ @€:„Ïuêê› @€ @€ @€…Ÿ Yhe @€ @€ @€ @ Násºú&@€ @€ @€ @€@!ÂçBZ™ @€ @€ @€¨S@ø\§®¾  @€ @€ @€ Pˆ€ð¹…V& @€ @€ @€ê>ש«o @€ @€ @€" |.d¡•I€ @€ @€ @€:„Ïuêê› @€ @€ @€…Ÿ Yhe @€ @€ @€ @ Násºú&@€ @€ @€ @€@!ÂçBZ™ @€ @€ @€¨S@ø\§®¾  @€ @€ @€ Pˆ€ð¹…V& @€ @€ @€ê>ש«o @€ @€ @€" |.d¡•I€ @€ @€ @€:„Ïuêê› @€ @€ @€…Ÿ Yhe @€ @€ @€ @ Násºú&@€ @€ @€ @€@!ÂçBZ™ @€ @€ @€¨S@ø\§®¾  @€ @€ @€ Pˆ€ð¹…V& @€ @€ @€ê>ש«o @€ @€ @€" |.d¡•I€ @€ @€ @€:„Ïuêê› @€ @€ @€…Ÿ Yhe @€ @€ @€ @ Násºú&@€ @€ @€ @€@!ÂçBZ™ @€ @€ @€¨S@ø\§®¾  @€ @€ @€ Pˆ€ð¹…V& @€ @€ @€ê>ש«o @€ @€ @€" |.d¡•I€ @€ @€ @€:„Ïuêê› @€ @€ @€…Ÿ Yhe @€ @€ @€ @ Násºú&@€ @€ @€ @€@!ÂçBZ™ @€ @€ @€¨S@ø\§®¾  @€ @€ @€ Pˆ€ð¹…V& @€ @€ @€ê>ש«o @€ @€ @€" |.d¡•I€ @€ @€ @€:„Ïuêê› @€ @€ @€…Ÿ Yhe @€ @€ @€ @ Násºú&@€ @€ @€ @€@!ÂçBZ™ @€ @€ @€¨S@ø\§®¾  @€ @€ @€ Pˆ€ð¹…V& @€ @€ @€ê>ש«o @€ @€ @€" |.d¡•I€ @€ @€ @€:„Ïuêê› @€ @€ @€…Ÿ Yhe @€ @€ @€ @ Násºú&@€ @€ @€ @€@!ÂçBZ™ @€ @€ @€¨S@ø\§®¾  @€ @€ @€ Pˆ€ð¹…V& @€ @€ @€ê>ש«o @€ @€ @€" |.d¡•I€ @€ @€ @€:„Ïuêê› @€ @€ @€…Ÿ Yhe @€ @€ @€ @ Násºú&@€ @€ @€ @€@!ÂçBZ™ @€ @€ @€¨S@ø\§®¾  @€ @€ @€ Pˆ€ð¹…V& @€ @€ @€ê>ש«o @€ @€ @€" |.d¡•I€ @€ @€ @€:„Ïuêê› @€ @€ @€…Ÿ Yhe @€ @€ @€ @ Násºú&@€ @€ @€ @€@!ÂçBZ™ @€ @€ @€¨S@ø\§®¾  @€ @€ @€ Pˆ€ð¹…V& @€ @€ @€ê>ש«o @€ @€ @€" |.d¡•I€ @€ @€ @€:„Ïuêê› @€ @€ @€…Ÿ Yhe @€ @€ @€ @ Násºú&@€ @€ @€ @€@!ÂçBZ™ @€ @€ @€¨S@ø\§®¾  @€ @€ @€ Pˆ€ð¹…V& @€ @€ @€ê˜¨³s}¨À;Þ±pñâ‰ç…^[éœnJ§ÇÐZBZ6ÐyŒÌ^`o á‘ÂîüûKù÷gÚí·¿¹þŠûfߥ=  @€ @€ 0áó`œR£À¢÷¼ó‚V7lÎÐ_žƒæ“Cþ´>å±w''Ñn @`”½súÝé´Óâ›ßùñ˜âï~kÏôï‡+®Ø3Jõ˜+ @€ @€åôÒ¹Ýnýú‡>Gؘ'(†ÛÏ_·ò̶Ӡq‹w¾ëü.¿)O웜  @€zîÍß­ú/{NÛõÿ…ò£êB¯ @€ @€˜€k>ÏÎÍ^ÃxÇ;–.ÙùÎërðüÑ< Áó0×ÂØ 0hSóI=Þ¼äî5µäæw?wЃ @€ @€Ç>OÇsX¸ó†sòu?•¡¿²q“3! 0 ”Ò3Sê~|ÉÍïÜ: ! C€ @€ @€ ŸOH¤AS¿ç†ç·CÌG;§³›2'ó @€CX˜RøÿóÙ@¶ q†&@€ @€ @€À·„Ïߦp§ÉKoºá¼Ð·ä9N6yžæF€-Ïò‹‹wÞð†Ak< @€ @€- |>ZÄãÆ ,¿ùæ•V¼9Oleã&gB @ ñ¿äSpolÄTL‚ @€ @€b„ÏÅ.ýè¾?íû!…3GgÆfJ€/OÁ}ý’o<}ð#‘ @€ @€ Ÿ½-°dç ò/oô$MŽ4C`ejMÿF3¦b @€ @€”( |.qÕG¥æmÛZ)Ä·ŒÊtÍ“4@àU‹ozç 0S @€ @€ @ @ás‹>*%/~î?šÊs}ú¨Ì×<  @€@R ¿Ð„y˜ @€ @€å ŸË[óQªxë(MÖ\  @€@b-~ï;ÏhÂ\Ì @€ @€²„Ïe­÷ÈT»ä}ï|BžìKFfÂ&J€š#Ãt|us¦c& @€ @€”" |.e¥G¬ÎîtzYžr>x˘©@Œéûgºö @€ @€˜«€ðy®‚ö¯I ž_SǺ%@€c/BxaHùêÏn @€ @€ €ðy€Ø†ª.»áÜê­µ$@€ŽX²è½ïzÒQÛ<$@€ @€ @€@­ÂçZyu>kÖÍz_; @€!¤®ðÙë€ @€ @€ ŸÊm°¬˜A[M  @€£Z¡µì¨M @€ @€ @ Vás­¼:Ÿƒ€×æðìJ€ò5ŸP @€ @€ @€À |ƒÔ6 @`@ÝÐP†!@€ @€ @€ÀAá³ @` Ú±½k ËR @€ @€ >7xqL 0Kôh\ø¥Yîk7 @€ @€ÌJ@ø<+6; @€š,>Ö¯ß×äš @€ @€ã' |¿5U P¼@ëƒÅ @€ @€ @`àÂç“ P»À µ` @€ @€% |> ÄC @€Àˆ |yÏ%¯øØˆ×`ú @€ @€Œ €ðyÍ”  @€ýbˆÿ5Ęú=o; @€ @€ê>×%«_ @€Àà¾ò­=Ó× ~X# @€ @€ @ á³W @`LZ1ý‹pÅûǤe @€ @€ 0bÂç[0Ó%@€[ ýÖ£—¼êOýœ­ @€ @€¨_`¢þ!Œ@€ P¯@üèžö⟭w ½ @€ @€ @àøŽ|>¾g  @€M¸mÑ¢é aýú}MŸ¨ù @€ @€ 0ÞÂçñ^_Õ @€ã-ðÁE‹:/yàÿ¹â¡ñ.Su @€ @€Œ‚€ðyVÉ  @€G ¤Â¯îYºêûÏGÂxD€ @€ @€Àð\óyxöF&@€ÌFà/sðüã{6^þÉÙìl @€ @€Ô% |®KV¿ @€ù¸5†ô–o]rù!Æ4¿]ë @€ @€s>ÏÝP @€ùH!†ÛCHBüPêvnÜ»ñŠ¿›ïAôG€ @€ @€ù>ϧ¦¾Æ]à‘4ÝzÖ¸©>®@»ÕÚó肆õë÷ w&F'@€ @€ @€ÀÌ„Ï3óÒºlîÞW¼âke¨ž @€ @€ @€À±ZÇÞl+ @€ @€ @€¨. |®n¥% @€ @€ @€ô>÷±™ @€ @€ @€ª Ÿ«[iI€ @€ @€ @€}„Ï}`l&@€ @€ @€ @€êÂçêVZ @€ @€ @€ @€@ás›  @€ @€ @€ @ º€ð¹º•– @€ @€ @€ ÐG@øÜÆf @€ @€ @€¨. |®n¥% @€ @€ @€ô>÷±™ @€ @€ @€ª Ÿ«[iI€ @€ @€ @€}„Ï}`l&@€ @€ @€ @€êÂçêVZ @€ @€ @€ @€@ás›  @€ @€ @€ @ º€ð¹º•– @€ @€ @€ ÐG@øÜÆf @€ @€ @€¨. |®n¥% @€ @€ @€ô>÷±™ @€ @€ @€ª Ÿ«[iI€ @€ @€ @€}„Ï}`l&@€ @€ @€ @€êÂçêVZ @€ @€ @€ @€@ás›  @€ @€ @€ @ º€ð¹º•– @€ @€ @€ ÐG@øÜÆf @€ @€ @€¨. |®n¥% @€ @€ @€ô>÷±™ @€ @€ @€ª Ÿ«[iI€ @€ @€ @€}„Ï}`l&@€ @€ @€ @€êÂçêVZ @€ @€ @€ @€@ás›  @€ @€ @€ @ º€ð¹º•– @€ @€ @€ ÐG@øÜÆf @€ @€ @€¨. |®n¥% @€ @€ @€ô>÷±™ @€ @€ @€ª Ÿ«[iI€ @€ @€ @€}„Ï}`l&@€ @€ @€ @€êÂçêVZ @€ @€ @€ @€@ás›  @€ @€ @€ @ º€ð¹º•– @€ @€ @€ ÐG@øÜÆf @€ @€ @€¨. |®n¥% @€ @€ @€ô>÷±™ @€ @€ @€ª Ÿ«[iI€ @€ @€ @€}„Ï}`l&@€ @€ @€ @€êÂçêVZ @€ @€ @€ @€@ás›  @€ @€ @€ @ º€ð¹º•– @€ @€ @€ ÐG@øÜÆf @€ @€ @€¨. |®n¥% @€ @€ @€ô>÷±™ @€ @€ @€ª Ÿ«[iI€ @€ @€ @€}„Ï}`l&@€ @€ @€ @€êÂçêVZ @€ @€ @€ @€@ás›  @€ @€ @€ @ º€ð¹º•– @€ @€ @€ ÐG@øÜÆf @€ @€ @€¨. |®n¥% @€ @€ @€ô>÷±™ @€ @€ @€ª Ÿ«[iI€ @€ @€ @€}„Ï}`l&@€ @€ @€ @€êÂçêVZ @€ @€ @€ @€@ás›  @€ @€ @€ @ º€ð¹º•– @€ @€ @€ ÐG@øÜÆf @€ @€ @€¨. |®n¥% @€ @€ @€ô>÷±™ @€ @€ @€ª Ÿ«[iI€ @€ @€ @€}„Ï}`l&@€ @€ @€ @€êÂçêVZ @€ @€ @€ @€@ás›  @€ @€ @€ @ º€ð¹º•– @€ @€ @€ ÐG@øÜÆf @€ @€ @€¨. |®n¥% @€ @€ @€ô>÷±™ @€ @€ @€ª Ÿ«[iI€ @€ @€ @€}„Ï}`l&@€ @€ @€ @€êÂçêVZ @€ @€ @€ @€@ás›  @€ @€ @€ @ º€ð¹º•– @€ @€ @€ ÐG@øÜÆf @€ @€ @€¨. |®n¥% @€ @€ @€ô>÷±™ @€ @€ @€ª Ÿ«[iI€ @€ @€ @€}„Ï}`l&@€ @€ @€ @€êÂçêVZ @€ @€ @€ @€@ás›  @€ @€ @€ @ º€ð¹º•– @€ @€ @€ ÐG@øÜÆf @€ @€ @€¨. |®n¥% @€ @€ @€ô>÷±™ @€ @€ @€ª Ÿ«[iI€ @€ @€ @€}„Ï}`l&@€ @€ @€ @€êÂçêVZ @€ @€ @€ @€@‰>Ûm&@€ÀX ¬}ùŸ¼ÿ¤Å«cëÀÒvœX8–E*ŠÆJ NwRk¢ûУ±ûÈ#ïþ½ÝcUœb @€ @€ÆJ@øÄpnNš/8ŽyáÊ#@€NÎïkÏÉïhùËUÝŸ\³oÙî´qóö›w½kûßP¿  @€ @€,àšÏ ^S#@`æk.ÝòªÉ}˾’ ûÇ‚ç™÷a 0*ùëU«ó\&Lw¾ºzãæÿpÆÔÔâQ™»y @€ @€ŒŸ€ðyüÖTEŠX9µuùêWíH)íÈëŠDP4”,°( ýó{÷-»íÔK®úÇ%C¨ @€ @`xÂçáÙ™yX»aËYí}¿ˆ!¾jžºÔ U³»­øç«7nyå¨`Þ @€ @€£+ |ݵ3s²ÀšK6=½ÓÇòݧ!@€ œCÚ1¹ñª×ð @€ @€ 0Háó µE€À¼ ¬Y¿é´n«ýþÜéæµc @€ÑÈÿÎׯ¹tËúÑ/E @€ @€£" |••2OŽ˜šj§‰ÖÛóõ-Ï<ò  @€Ç&RJo?í²Mg!@€ @€ 0‰A b Ì·ÀäÞe?bxé|÷«? 0f+¦»×çš^’Ò˜Õ¦ÆTàô ['÷†´¶»«S ËSŠË[©Ûûüâ”ü‡¬ýí²[qOì¦}ùñ·b«ýÐt7=Ôšˆ÷/šxðŽ;wìØóívî @€! œyá¦E{Nn>½ N¦n\ÞÎïm¡Û]š§ÔÎïk§šZ ¡“ï?Òm…nè¶ŠíðP«îOÓÓ÷Þ÷¼3ï Û¶uµõ›4Y ¿§ îvë×hÞ^1Ü~þº•gNÁHUï|烹Ýò*mØæ¡=._1Àñ ÕG`Õ+·œÑšNŸÏO÷þ¡îF€œ@ ¥ðÚÝ;¯}Û šyšX9µuyû@÷»C§ûìØŠOÏó3òwdžš'ðÄü³p&òPŒáŽü!ÄWòWo¾cüBìtÿòÞÓ'>¶o?0ýë‚üƒÀÖ­ N½kú™V|v+†só{ÏÓó{ÐÓrƒuùgå?4œõ½^0}OþùjþbÖWZÝôåÔŠÓmÇÛî×5wκW; @€ù\ª. ¨W =~.ÿ^ð\/³Þ  @`Œró‹áÂm>´mzŒÊR #$°vÖ³º1õÎÂpAþ·üùa_§4çËÓÇ¿ “oÿ§wg¾nùˆéƒ_hþ®^‡ù2!H&ïîì7ß–·ÜRûCÝéo}äþ[Þþð| ª(C`Åe›V´;í cLç‡_îî<»ÛŠ {Gz=ö¾6ï½3œÞû‰)œŸòûgï­3œ&7nÞ•ï"ÄôÑÓGv/üæ§Â޽°Ú EÀ‘ÏŽ|Ê ïDƒ:òùDBå>¿ljóª…ûÂ7²À¢rTN€f.ú{õ}7^óÇ3ßÓ˜•@\µaËósÞûÊü)ü%ù’9çΪ—úwÊGA§æüæ|ôØŽ’[³~Óiibâê'7Â@Rº{×Îk_=±0ÈÚ—ÿðÉE'½gC aˆÔÝõðº—û’àèg8ä©—m}j§Û¹< ~qÞõEù§7ï–Âýù}í–œOïlíÙwó=ïۣ͛¤ @€À8 8òyœWWmÆP`Á¾øùÃ!Áó®­’ @ ^|Ôßä„Ïõ2ë@ñ+Öo~r{"lÉÌÿ¿ùßíO92Я½Ïx äï_š{i>zì-“·|$¦îÛ„‰?¼kçöo͸·Þ¡½0,Ê×ÍþÞ.ÁÔh…Û8ê÷;'Mœÿ¦ŒíësrÙןº+„/Žú:ãüáÜmÿP~+û¡n·óüf¿¥=¾1¬ÊÿyM>û5E ÜxÕMÝ®¿çuÈ-òñÒn @ ^ás½¾z'@`žòéŒ.÷ÏäyFÕ”"ðòU½f™ÓË–²Üê$0XÕ—^õ}±_Ÿp¾$<ŸÍC(Ï;}o>•é÷î7ç úúNjýÚ;·ýmm"@`€)¶Ÿ™OÒ?À;T¾î}ïìÂçÁ²w´•oþ®V;ütì†Þ–·q³Ÿ<9¿-ÿ`>ÉæÓsÿm~ŸûíxÒ¢í÷íøío6{ÚfG€£,ÐåÉ›;e œyá¦Eù¿5{§5r#@€f.ÐnM,¹`æ»ÙƒýòÙçŸOÆ?#ç ¹å¨ÏG¹"@ÿSíØùÛ57_Ÿžvt ¤@ÊG>ñ­¹—&côc—¶úÒ+ŸŸß×nl·Ãßä7´«r«Qž.ò©ùmú-iß¾;óÑÐoì]Úîè @€ù>χ¢>ˆÀ£ËÚ½o;åö@´ B€c);Ï˺E€ÀÀò‡Öÿ$8ÿá<ðÍùçùŸÀàœÈÇZþHþù| óô ['7´‘8$Ð ñ¼C÷Çñw¾6oïó·! ô¾d´úÒÍ7ÄÔúdžÆÆ!NeC/Ï!ô/,ܾ:¹aó¿.GxÇ Sc/˜ùœ„ÏÃz÷‚×<ÿrþÿ¹˜ÂåÃšÇÆ]žßÍÞôÍeíÏzéë¾Hs0,Œ¡€ðy UIÆU u»O×ÚÔE€"ÓiÇ Œ¥@]7NtÛ_ÈToË«•OǷ磾?´vÖ³ªí¢s¸pÛDÞÜ¿Œ~ΜŒì<+:_ƒ×Ïæàùßä̪“ñØé¬nê¾orã–ß_~ñÕ+Ç£$U @€À0„ÏÃÔ763ˆ1.Ñ @€G $ï¥G‚xD€@3¦¦ç°õ·sèzcn¿¶Ê>´¹ Ó_MnØòƒÔªDCX}Ê]½k®÷èq¾-]ué•ëÆ¹ÀFÕ¶uë‚Çvþ_y^ù:Èn ¤×,hïÿÌäe[.$B€æ" |ž‹ž} ¨@ qÜÿcs ž#@€bØ_`ÕJ&@`+Öo~òÞ}Ë>ž»¸zÝŒë®ËBL°fãUÿ-§Ò§òÓ/îÓÄæÇZ1†ÿ<¹aóöÎ~…ÌT@øèéÔ<ºƒŸûÓš@IDAT½dbçÖÉWn}Âè–`æš)Z±ˆ#‚S>×ù \½aËKClõN³}FãŒUß1ü@>ûÉû|¹j¬VU1ˆ€ðy Ì!@€ 0|Ò†? 3 @ é9x~UJéOBHŽvšÁbåàè»Ât磫^¹E°17M œP …"Ž|ÎçžÐBƒY Ln¼jcŒé}yçe³ê ì.hïë|ä´‹®\S6ƒê  @`&Âç™hiK€ @`„ò‘C·ŽðôMô> ÏÁóä¡ `¸qâ©­éô¡µ¯øçŽÇÕUÓ°Š8ò9„®ð¹†WØäÆÍç³xÜ»ö¾6{ßgM/h;zö~ö$@€@qÂçâ–\Á @€… Ü·ëÙgÜVhíÊ&@ ‚Àš WŸ? Gnêú ^ÇiòÔNçÀV]ôGØÉSª¬Ü°õI¹ÝÉUÚŽ~›x격ͫF¿ŽæTðøûÚŽ<#ïks^–ôœ|y‰[\zÎ: @€@Âç"–Y‘ @€¥ Äþ8lÛÖ-ÝAý[àÔ˶>5ĘOµN:v [g(ð¬Ö‚E¦¦Ú3ÜOsˆaº£ž+zÑ>§Þ>lùçtwò¯{Æcïk.!1'ÈÃvΗ—øž=û—½-oÊÿiáF€ú ŸûÛx† @€ÀØ´bgûØ£æU`ÍÔ-ív§oN!¬ž×ŽuvÑä¾S~³È\–r½çƒHù²E…í³eÏ| ‰SB§»ÓûÚñfólLáòÕ7¿q6ûÚ‡Ê>—³Ö*%@€(WàÆ{n¼þoÊ-_åO íÛÿßóALã!Íú¹ø³«7l¾lÖ»Û‘@ñeýmJ!žWü’Ï@¯ËÝ—±Îª$@€(U …_Ù½sûJ-_Ýôè¢ùè¥ßèßÂ3ó$°"Æ.}0O˜º)M •uÚíXÖiÆçûÕ¼æ’MO!½i¾ûÕßw ôNižÚík¿ó[ @€@Âg¯ @€c+?¼kÑÃoÛòF€Àœbk"Ÿn;,ŸS'v®&ÃúÕ—^õÚjµ"@ '°ljóªükMIù AO>cjjqI5Ïc­1µ†¡'ÏcŸº:ž@ï½íàTŽ×Ès P¢€ð¹ÄUW3 @€@ _œ8Й ;vtJ(VÌL`rãUóuž/™Ù^ZÏE ¦ð¦•S[…ýsA´oQ'í-ë¨çÇ7î;°Â©·gñJÏ_ðùá¼Û‹g±«]æ ¿0ñ¦å_½r]Ø•ÆP@ø<†‹ª$ @€â¾Øˆßw÷-o½¯x |‡ÀÓ.ú‰“rðükßñ„ 5 ÄSÛûºÛjD÷ÆF µŠ»ÞóÁµKtîØ,†é}±§÷Ÿ g˜#Ö,œØÿÜä”. |.ý ~ @€1ˆž8Ð}ñýïºæÎ1+L9Ì“Àƒ^»zÊÏð5ßÚßýWùKU§Îp7ÍçI ¥ð£k6n~ÚÏmÍúM§Å”~r»h:ÿí@;úyþ]õH€‘>ìÒ™8 @€ƒù3ÊpcéY»nºf›k<{U p<´wß?ÏÏŸv¼6ž«W ÿÑþ¡µ¶œUï(z'0±Ì#Ÿ[±ÌÓÏö›&ÚoÈûž<Ûýí7O1\±êÒ+Ÿ9O½é†F\@ø<â hú @€Å Ü“tþõÔŽçíºéÚËvÝtÝ‹•P8Õ¶n]bptX5­:[µ»1ýLè›À¨ œ¾aë’B‘§¨ÏGž.Ü61êk8ˆù¯¸lÓŠ<Îb,cœP ÆÐê}Àÿñ" @€ÀÜò‡ýñî¹w£ ÐG å![áÁâ¡›¾Ïk÷±{o¾î3¹uï¨g7TX}w÷rÃ3*5Ö¨VüÇûÊeS›ñá×Þ_ë@:'0¢bçì<õ8¢ÓŸë´¬Yúµ³î áËsíhÜ÷owÛWçõÜ…Ž)¼fõ%¯ýùÝ7ÿÞ72%Ó @€! Ÿ‡oXÆG _[è?ß·óÚëǧ"• @€Œ§@7H_j–Ó¸=yáÞôÚ<«_oÜÌLˆ@RHùô½åþ½êƉÞé‹…ÏÇ{-nÛÖŠyGïRnÍX[ _—§³­9S2†€ÓnCݘ @€ @`€½ë0Æ_8À! u"·œ¨‰ç ,Ð;ò¹Ü[+œ[nñÕ*_sÛÿ,·,òÔìÕ„†Õ*mSSían\h†€ð¹ë` @€ @ 6VŠWÕÖ¹Žg+pÞêK¯|þlw¶qH1öŽü-öÖJéœb‹¯Zx ¾ÀSÕj°íΘܷ¬÷Å7(X@ø\ðâ+ @€ŠÈç®WQéˆS˺ŒØš™î`òµc‹_;íø`¬Gq”•S[—g£‹Gqî…ÌùÕ…Ô©Lè# |îc3 @€5®zQ®cÝÔrO®á39IÿdÓ?œï:ÿ|.ÿ<œFõöê¯[:ª“7oµ\¸m"÷ûŒZú™NcÑáû‰–ibïô+r›…'j7ÏïÍsüRþùëÞûZÔ?þØýpgþÝÉ?£z»ìŒ©©Å£:yó&@€¹ ôþ1çF€ @€Œ©@ ñ•#XZïù? !½/¤ô¿WL/ý?_¹å7÷õ«£w\ko÷¹­Ð}A>]ïÆÜîyù'çÔ¿¾ú¶Ûÿéîþ¼ñ35A˜\ù§äØmÁ€†kê0§¬¾äµOÜ}óï}£©æ¼R —sü9Œý×)„­?‘îÿô½7]ÓûRÕ±oùºÉ«÷®|zŒÓÏ )^˜ßÑ6ä†kݸq[—îÙ»üåyV76nf&D€>„Ù  @€ @`H1]49ìAŸ;sØü–ü!ûµ»nºî‘Cb»ÝéóûÛÊO}ðñŸ_^{ñUO™žhýTLéuyÛ¢>»5bsL±wêXás#VÃ$š ¦»ÏŒ£ðÕ‘Ú±ôŽ~>åÜ;¢vï¾ÖËò—“Žz¦±÷穾5MÄߨýîk>_y–;vtò“¾Û÷~ÞÞ;KÆämw\ºágò{ä…•ûRÞ]ø<$à @`ØÂça¯€ñ  @€ @€@M§]¶éÌéîHœ¾µ› ÞÜÞ»ÿ÷¼ÿmΕãž÷\÷ÕÜÇë×nØòkÓ±û;1ÄïŸkŸõí×ç¾ÿ}}ýWë9jþàDˆ¿T­õ0Z¥ŸÊ£.ÆÈÇó‹ù‹tœç‡÷T·ûàðŸãÈ­ü7+L°8ÇbûïÞjÇóò³Ö¿E™ÏìÛ¿ü%9x^<Õ§ðÞv7ýÄãïIs›ò¶mÝüE¬¹““—nîý›9Ô~òÜ:­sïƒïmu oh°€ð¹Á‹cj @€ @`.Ó©ý}sÙ@û>ÐMéÕ÷ï¼îýó=Þ=;¯ù»ÜçE“·ü|+Þ8ßýÏSÏY~ñÕ+zÏï<0Oýͪ›ÿäú^X¹mV;`§¶lÊAKÓÂç/ìºéšÆš `Yj¢•¹¢çm:»àï4uÓ÷ÀEºù ?»kçu¿Ñ[Èù&ßuãµ;óûÆ­ Zû÷ñÓqÏ÷óÐ_zâê [ÏÙ½s{ïÈm7(L UX½Ê%@€ @€% \ÐðbN±{QÁóau§þ‡| å¶­Iwã‚Öô‹š4!s!0LÒ3‡9~SÆNÝÀáX‹CÓß×Ä Ï¿ž§?ïÁó!’Þ–v-zøy„?8´­i¿óõª/lڜ̇# |Œ³Q @€ @€À0šü!}7‡+¯Ü}ã[r½ãÝ;¯ý휼e‹pÂ1[Ýï=a ”#àˆßÞZÇpn9K^­Ò•S[{g?øîj­‡Ó*¦´õ¾¯¹a £çëBçúµy¬÷ d¼™’â…3ÝE{áóx¬£* @€ @€ÀkÖo:-õä#66èA>ùWvß|í@¯gºë´‰“è¿hÃcSIáù›“ ‚ÀªK¯\—‡=eC7qȵ+.Û´¢‰Öœâ¾îóòØ þ<;m¿oçu×Ô'Ð: 8býµŽ[e°zëåF€ 4øÍºÀÕP2 @€˜/Ï™¯®æ½Ÿn_¼èáÿ4ïýž¨ÃíÛ„Vëêܬ¶S¡žh }žÿî°m›ÏhúàØ\@jŸSPµ',uaZàÔÛ‡)Åž{ØÃ¦Ýýûî}oƤz§ànÅØÄKKœµljóªa˜“†+à?l†ëot @€ P—@cOMšO·ý wîØ±§®Â×ï®?¹æÓ9zþÃãµÂsKWú®g a\Ch”@Û©¦X”ºÂøÃER·±ás>Ýö¿½ÿ–·?|øty?Ÿêû½ù½í½ƒ³ÊXûbc׬Êüµ!@€Ù Ÿgçf/ @€ Ðh|Zëg5t‚wí^ôðuníø_‡:þ1o‡éóޱÙ&E ¤”„­‡­x ɑχyÄÿÑa›t÷ŽûyÒï{B1¤_öŽ¿ºM]³£§ê1Ì£€ðy1uE€ @€š#ÐÌ'‡âo ;vì¦ÓÁ£ŸCøô0çpôØ)ÆsÞæ1ò¢°õˆEÂøC[·.ÈwŸvèa³~§ß Ú6=ì9åëMßšçЬ÷¶}±jØ/ ã @`Âç! ’ @€Ô*ðØõƒÏ®uŒYvÞŽñ³Üu^wËaï óÚá;Ë¡näzͱ,»˜¡Àп4ó×3œpÝÍ…ñ ¯ºçÀÓóÝvÝà³è?uÒÄpÏæqĤcÃ.+1ôÿO¡ã F@ø<g£ @€ @€ ¬ºíö'æÁNØ€Õúú½7]ó™êÍklÙ 7ÖØûlºî+nŠX~ñÕ+sñk‡ ÏÌpó0Ç?ÆØgžyá¦EÇØ^ܦVŠ<ê9ÆðÉvnÿzS¤;ø‚×!|ªtïm‡0ü&@€@AÂç‚[© @€ P†ÀDj=©¡•~¤)óÚýîk>Ÿç²«)óÉóhêš5ˆÈTÆYà¤öþ¡åÛŽá–lÜisüÖÒ–³"ä‰)<¹Aëòí©t»áƒß~Ѐ;÷ßøÖ;ò4þ¶S94…5¾@qˆÂo”# |.g­UJ€ @€…tc3?¤O!~¼QKÂ'4Ÿ'„©©… š©¨@N=à¤ögsÑ·´ð Öm¹|(5õ}-ÆŸ` ‡ðtüÐí;ä#§,<³ï“ž @€±>å²*Š @€JHݰ®‰õ·bè;¹å0£Q×w]»wyïténŠÈáóyÃ-<ÝûÀŽí…¾0Üy=z<çè-e>n5ò}máÎ_5m=ò©À›qy‹C0­é3Ýõ›Ê>—±Îª$@€ @€‚b+L6±ÜöþN³B˜¾Ü$§évZÓ¤ù˜ ¤0ä5~ñ`½1~i uŸp°4ôÓ‘ŸpŠiÐÈ¿»î¾å­÷ ¤ü ’OÞ¨/zÅnË{Û ÖOSŒƒ€ðyVQ  @€ @à0|mÌ&~Ðûͦ}Hßí¯Æ6ô»­ù¥¡Ã˜@1œ;ÌBó‘׿Œ’7*|Η+r(?ÌU9bìµGÛ‡¶9u4ꈵnè Ÿ‡öj0ð0ΘšZœÇ?s˜sˆ!=vf†;z˜“9lì<¯³óõàÛ‡m*ônjÜßÇnJßhâbÜ?Ùº§Ióê†Ð¸/4ÉÇ\ 0ŽÂçq\U5 @€ @€@éK›CØÕ´9u:õ}>òyeӌ̇À öXqv'ÿ™Þ-¥ÖÁ#žS«Ó´£Y®Ù·ì¬áÉ4e丬)394b£¾Àth^aûöù~sÞs»ÝÆý›äÛVî @€@-ÂçZXuJ€ @€†*иéSHÍù üñ¥¹ÿ–·?<ÔU:zð”N>z“ÇJH4ÔSn÷Œ…Î÷ßøÖ;óÃo5É=ÿý,ûºÏÛ¶õ>Ã^Ô¤598—š>?õ@S¼Z1.oÊ\̃# |Œ³Q @€ @€À Nä`ÕÆŠjíÞêÑØoÀÖÏÆöñˆÝa‡ÏÝû~óÐ5àó• šu-ßÒ¯û¼â¯¾Ö¸/Tü?d+4õ}­7½Æ|¢ƒ÷¶ƒ/ÿC€r„Ï嬵J  @€ @ šx}Ð= åŸnʼòu1—4e.æA`9ívøüµ°cÇþÃj>x îÃõîÿeïNãªÊÆÿŸs'Û¤{“Ò²P¶‚ ‹ øB]PJ“tKD­-U_wE}_»þô}QÔÚ²¼jÒ¤m&- þ)*" âRTJY Xº@K›É6÷üŸ›Ò’¶I:Ë]Îù^ å,ÏùÜ´“ÜçžsänIÏ|vœ2;“—®±kõŒ½¿Kå#ÅŽCUfG$D –Éç°¤é@@@°Œ}ILÙ̵'¬áÓÄMÀñö|ŽòX7¸sI†ïõ|ð{Q<–x¦Eѯ-}V¸ý$/s>ښĸ|þscUÎç  €@¼H>Çûü= € € €C T õbįY¸xÄ"ûtï(C‚ež–€@ccB+irU’»{Ït6û<þ4D=3ˆE'0)=êÕ2¨òH¶o²9a×Ìg±[[?ÿHè@ÈR€äs–PC@@@‚&T›Ê P”Æq¢ŸÕköN6÷÷U¬· Û'ÒÙá¶y €Ø+@òÙÞsCd € € €ä'`T&¿ŠÖšhë4ޱ0FGž|6 w¯e··­úá ‚¹Ù*PmN°*‚A@† ù< /#€ € € [G½daì‡Y!!€@ÄŽV'ŸuzëÊ6 Áðð¯Eö’ì ÏÌçÈôé@r ùœ‹e@@@ˆƒ€Qý†9nâyµ0.BBŒ‰:ùl¼%¶e[ú½c^ßûÅŸ¥™ù¡?]#€ €@ö$Ÿ³·¢$ € € €q°qæ³ÒeÕÇÅ8@ $ˆg>eöZrû•Qëu¯<¶â3Ÿ­8  € ù| !ÞG@@@ vz›!;*s¢qD#P3ó’C¥ç1Ñô¾»W=ôòÚÎpIéÝõBÿóàñ³.z¯tˆ €ä(@ò9G0Š#€ € € `»€Vj«1ºZ¿ÎƸˆ ¢(~6¯zymã&†™••RN¦,z¯è†OÏ € ²˜ÄI˜ € € € ¥€ìUú¼’ ´m‡„ô&ÛbJèÌ[\]ž°!®þŒ¶ò¦lˆ¡8œ„>Qþ½ŠxpfÈåµ'öW=úby—+ÁY3y'á ì}oÄ`t €Œ(@òyDÞD@@@ ~F«Mæž=È7L>÷âQyóN[T7®¼q­-±¥'`"ß¾¿¿jÈÎÞvmOMý‚§äßÒ#m9/²?õ ¶ÄB € €ÀpÖܹ7\€¼Ž € € €¹ hežÉ­Fh¥ËÝdåÙ¡õFG `µ€Lz>>Ê%±¼eÛª¾0| CÏŠ¾|Àï¸*òd}À#¤y@(’ÏEp € € €ƒ´ÒO ~nÕccγ*‚A("M>Ë‚ß8x£†\’{Ä:A¾©Õ‰A6OÛ € €€$ŸýP¤ @@@,pMâ ‹ÂÙ+£ôlyÁÒUÁ÷ •'  ÀøY——æ§ØÅ›–- ÖXHë‘ß±r oyôyª ¤eE@| ùì$Í € € € `‹À–ª—X2¶Ä³wæÐIuóÏÜû5ž!€@© 8ýN¤³žwyë‘g6k3òÌèðOš³½<ÍÒÛá»Ó# €ä @ò9,Š"€ € €  ÖÖ^‰ó_¶Æj´¾ÄÖØˆ ÂH8Ú‚ä³;bò9ÓgÝÌgeŒ;-œ3D/ € €@~$Ÿós£ € € €v õO‹¼ ¶~þ‹ã#4X@–¼Ž<ùìöœ\~ñô©O CwÀ95o´sBN(Œ €„,@ò9dpºC@@@ mþJ?ùu2F(Ì~ÎÏŽZ‡€1QÏà55nõÈ{:77»²OýÈeÂ>Ñ»…=búC@˜ |ŽÙ #\@@@²x Ër‘ÓÆ|D57s]"}:EÀ}b”Q¥ž|ô¶k{ƒ£Œ]Ég fŒÈŒ÷@@ ´ø%¯´Ï?£G@@(RãöÿÉò¡]ûàÓM–ÇHx €À‘ç\V%Í@ÓY7éhõH6…]­Φ\ˆeŽS‰û£+@@ '’Ï9qQ@@@xlé¼é‰ô)Ë£ý¢:§¹Ìò |èí'MFz]ÒUz]VÃ2&«$uVmùS¨rrטH÷þ ƒV@@ X"ý!¯XQ € € €Vu·q ıµãž^0üÛ¼ƒÅ(à:úø¨Çå¸nVËi׺ä³Ê”E»dyÔçŽþ@@Àn’ÏvŸ¢C@@@ mîÊ¿rH5jžÔxåèz£°B@O‹:ŒŒv²ZN»¯¼ß¶™ÏJ¹_Ôçþ@@À^’Ïöž"C@@@  þ~ýË‚§ò·§çÓátE/ `‰@ä3ŸÝþìf4¿´ü¦-ʨ­–¸ „aŒŠÜÏ&bA@»H>Ûu>ˆ@@@ß^\½ôIi̾Y{ûŒP+uõ„ó¼fŸ—yŠE*`TäÉÓžOŸút¶¼ÚQÙímƒ–stôË–8ª.`vHÛìøˆ%ðÓ €€=eö„B$ € € € €@§´ù±Úõ³É²DB-QÍÍgÈ—ëgô…– 46&t96ʨ´Vësú·Æ ÜÄóæ(cÜ·ÉûÁáðØBÍKgZ!!€”ˆ3ŸKäD3L@@@ÒÐZ¯ˆÉÈß8éÏ®ŠI¬„‰y Ô7áH©Z™guªíJ&gß–Én‰îì,¸ä¸Ú9‹.¸@@`æs¨4‰ € €ñ?cÁeeê52›èUZé 2‚„Q¦GoQŽz¤·Üüm{ëR«ö|ŒŸ2G!°©bÛ=µ=c7Jß“£è?—>1ß”å·ï|aÕÒ‡r©GYˆ€ëöŸ¨”,¶í‘Ó2Úí:ùùÀ®£¿šôœ]A  €  Ég¾ @@@ TôAõ ÎpºX’ËïRFáA캾ëóžÇ²pE2µõ þ&åVÊr7oêXúh©Â1î˜ ´¶fLÃÂṁby•,¿ý‹ÃOÝÐÚšŽA¼„ˆ¹ —{Ÿkä8“Y;î#Ê$|¢°æŒvNÖÖ µ@@ÿXvÛSZD@@ËjæÏ–Dòƒ’S¾[²ÍïÛx>@Ø^.úµRþó’š^/õWLšuÅëP‡·°BÀ¸êÿ¬$» Nèîû½ìŠR â&`´ö’¦‘ÚI<’Kå;½ÎvÝ™–KÅ`ËFŸÄv|´Ž €1 ùÓGØ € € »À¤úGKÒøNmt»Ô.4qÜ`\÷AiïºÚúùcr†„'°5µä^I›ü3¼ î銚ºÜ €€uÚ¨ã£*íôä´ìöË+1<u܃ûׯ•åË9@@ûXvÛ¾sBD € à‡@KKbìX5®·WK$ÊÇe2fœã˜qÊÇ(]mŒªðºqU!Sªww©eW×Õ»–ùtL¿Þá½ç*ó’ãèmWm+O¸/îØ¡¶©¦¦ÞÝõøì˜Ô°ðݲŸì‰t´Ñz³¡? ‹u¿ã ™óç=ßyý_}l›¦ðW@ë¥2qïÛþ6\k²¼ýOjf-X·eÅÒûƒë…–@ o¯â(^Z~Ó–ÜÐ2[Úž{½ j訃í"€ €@ÌH>Çü> €¥&0¦½½&Sf^-û³¬Œ>D–¿=Øu͹@}¨X$_ÞŸãäkT_Ÿ¤ƒ$-äºîÀŸ’p–c×®ÞëÞ±ëµ]žËû»ß“ö÷¬­'¯*Y²TºU*“I¨dR¤Úºå¿Û¤ÙÍŽÒÏÈãçäñsÒã3J;¥ä3ª¿üétCÃit w)ÃÈ ÊOKâùv}´ëèßÉrÞs¶¬¼þ×öCÓä-PaœŸöêÌW¤ª¼ ·b¥vÕŠÚ9‹NÙܾX>_9@ î²RÈ!2ïgõÈù5 §YÏ»•ß–èß¾û¹2ñ¼‹Æn½íÖíÄB € €À’Ï{(x€ €¶Œ½½ebooÙI’>Z’½¯–ð1ÛQòõê~eÆÄ9Ê•ÿÈÿ÷$‹Ã€wñ¾J.`M6Ê ZöN^ÈjKô‰ŒJv¶÷êÎöG%ñõ¨Äû¸ÖúQ­ÝG3}‰uݳg?~Øôˆ@i ÔÔ/øŒü­üZ£#ËywÖÖ]þÎÍ©~Bt@NϦo–¿ÿ'æçT1Ú«þLÇ!u‹Î–ø»¢ …Þ@ PY„hZô÷dz3˜ó8´^¿ß«y4ãg]Qá-a~ŸŸmÒ € P¨ÉçB© €ù ´´TŒU~B&ãž$ Ù“${²\?If,²û¢Ô@Ž9ÿl©Y!‰ç$˜¼‰×2N¹n%s©Ë\UZ¶]–ÿ›¼·VæFÿÕ8îÚt¦b­jhxÉ–à‰8 Ô6,¸PþÊ…‘xÞÍT)+tÈÌ®Ó7w\Ÿ×ÌªÝ ñ'A$”þžl%§ä³Çpj¯Ê´ªÆÆzÕÚš Â…6@ $=ð3qH ÓVy%Ÿå§÷uÞÏñ6Ž«I>ÛtBˆ@H>ó€ €¡ T®l9Úq§Kúõ ™¯,ª×Ë’Øe»f.K 6´HìéHF=V¢9Ëû’|´Ð8*éô{Kz¯—g÷Jþ*£îí[³VMŸ.op €@¶’>N®/ζ¼åäïµþÅ‘ç\ö¦'îºÑ[žŸkžïXò·Úú+% k‚Ê&­fÔôŒ],›´.”âve²‰Ÿ2 0 à(3-êŸúµë>œÏéЮyĶ_XŒH>ç3ê € € |Œ–†@(q5kÊ’;7Ÿn”sŽÌè•d³z£|ÕîR)Å4ó®‘çð_o©ñcd†ôÅÞFÓÉ[»$!ýGIhýAÒwwue~£ššväÐE(5ù‡F{‰çQ üµ;Æ–]-}7GÔ?Ý"0¬€Üçô5ÙK9^Égü¥ž_[·`ÃæÔÒ/ ;8Þ@«$ñì­í¡ï&Ïœ§ödíƒO÷JÅŠœ+UÁ(oæ3 € `•Ég«NÁ € cæfgÔi¯=Ùu3o•ËÃoU;¶ž£”3Š4³oç´ZZ:[&{ím'LÊfÒm÷JbÿNW¹wv§Í=’Œö.†q €€Lª›ß(Uþ#Z sõ„ºE׿ZüT´qÐ;{ lY±ôþšúùwȲïÜû<Óêó5 Ó[V.ùF ¢%DØ_à¸ý_ ÷•ŠÊmy%ŸUs³«êxuO 7âzÓ$ŸGÐá-@ˆH€äsDðt‹ €@1ŒI¥jûtÏùÚèóe<Óe m™ÙLº9¤s›EGÏ”äÚ™Z9ÿLª´NµÿÎhs›¼ÖÑ=sîã!ÅA7Ø( -ô[°0o¥ã¸Ÿ ÿ´‰˜J[À§YVÒˆ_òYN›6æë5õ ·méXòÃÒ>‹Œx Lh\4Nõd‰8ê§6´¶¦óŽA«õòó…=Ég¥^­+Tk+7¡æ}R©ˆ €~ È"Ž € €@ö©eÓ’©¶OÉ×ïúUïFI<ß(µåëå%µ³o‹’¾ $2çÊŰkd6ôcÕíO¦Ú¿žìl=Cfið3Ÿ¯Ô4f»€ìõ|ެðâ”$ÙüIW޶!b@`°ÀÖÔ’{å3#5øµ8=ÖÊ\WÛ°`aœb&VJ]@w»Ñ/í% 8ä6ÛuT¢ª3¹wTä³Éƒm"€ €@|˜ùßsGä €„&L-?]–{~·|ÕK§G‡Ö1å-`ŒñöÓ;Açêä)'=/³¢;µ£ZwVOøµš>½?ˆ@ $ñ|±¶g†QnOï,a»%t„XjeÎ'TÆ}— »<–C7j±Ì€.gt,ÏA— @B¹ÓdÏçHG.7…=\XZ’ϲÎE‡kÓ$œµ…D( € PâÌ‚)ño† €Àp£;–(³g¿"3œSʽO.²|LÊ’xÌî×’YÑó]×ܖܱõÙªÔ²Vu¶¾…ÑvŸ4¢Ë_@k=#ÿÚþ×” Ý3ýo•(\`óòŸ<"9”ïÞRd-È}&æ:I@ ²è²0ÚñnŽŒøÐÍ|V®[XýFoØ÷9UšD@B˜ù\ˆu@(2ªÎ¶WK’¤If$\”Q²d­Lä(:IZé÷+£ß/3¢7¨T{‹vÝ[ºæý¹èFÊ€JR@–Üö–žœlÕàµ:ÛªxAý‰Ì—ÊÜÄÅòRl·Ïx9­˜=èÄòŒ™ñÄgO¥ e³ËUÙýJ~S²é0*úåÌmò @ˆ\€™Ï‘Ÿ@@ bÕ«+evó…²?ðo¯`¥ô×e1<+öJX¦º?Ì›Ñný |Î ydç˜<ª^¥¼×µ2®ÀN±ØÜ±ä'²üö]±v„ åC뛓ê|m„"¼… }Þ‡*¥ëWEÔýînû6Vm{j÷“¼ÿ4ꑼëSñ8¶Ó –V@@ ?’Ïù¹Q @x ´´$«:—Í—Y®÷dŒY+ çË@&Äs0D@Rió^­Í]ÉÎöG$ýQµú–±õE³ø.àcé÷«ãû`iÿŒlž|…Ì€Nû×d4-Ɇ!Ÿ©­_pôÎ TÑœzE`Híåio[Œ¨¯C®W­­…¯™í¶t÷@…½X5ùOYXÔF@üˆú‡>ÿFBK € 0¬À¨U-SªSm_N&Oi£—JÁ7[˜7xEàhID'™I>“ìhûßÊ•-G¿ò°SÀUªÚÊÈ\=Úʸ —6u,}T)÷¿Šäµu nQ‹•Éx±0Æù ´O3–^ùXö “Ð,½½ O@@ :’ÏÑÙÓ3 € ŒZµüu’tþ©ë&ž’™@ÞåÚÀ;¥ƒb-óÇ>ä8‰G’©e©ªTëÛX’»O3cBRØ\ùÒ÷dôŠÂA« kŸË´Öؘ,Šñ0b.`´ù~ϲ½€/ËeËóÛw:tôÉ}ûPˆ@" ù<Ý"€ ˜€ìÓ[ZV'û9¯q]÷Ï’t¾DúbæO`à%Õ°,aªgjåüZ–äþ‹|]Àþr%uþ,»€,Gë¸ú"æö¢ªVuÝ=cWM<ï"K—ã/ e@vÆDž•d×eìÈ¥´k|IbÜKnïÊÌòs«Ai@@ 8’ÏÁÙÒ2 €á 47;²—óìdgÛƒFéÙÏùœp ·8Yf?ÿ,yÊIWu´]¦ø178”Ø7ÃEâؘZò/mŒìÿ\4Çt§¼ò×Sλ|RÑŒˆ G­"O>+íÏrÙeºÌºe·e•"oOm@@À ’ÏVœ‚@@ /é,3P«O9é!i¥]f¦¾®€Ö¨Š@®ÇÈ­7$Ÿ«}¬ºsÙTK Ë›æ*Hy@À2M©ë[dyÚ%–…U@8ú´þrçw.ŸZ@#TE|ä÷©yò9Ñ›ñe¹ìgS‹»d<ò增V:úe̓m"€ €@,H>Çò´4 €"°fMYUªý’¤³Ì@•åµÇ¦ÊŠï×%“‰Ç«;Ú®”$tE„±Ð5 €@‰žÞH/°›ªç˜Äjf/äç%›Î ±”„Àä?>u¤ ´2âÁnû÷m7lò/ë–ÞPýÂÉþ–@@üH>çoGM@"=g%wl]«•ù)IçÈN-0ÅhõIBÿCnޏˆ=¡‡FâU@Àv¿¼yg"cê%Îl5ûøÌ¡:c~[Ópù³¯CI(T ã$,˜•ëw²Xû²t¡¶ƒë»7#öà1 €D'@ò9:{zF@ gäʶ3eOç»eOçåR9ò¥ërJIà(¹9âÙúÏÕí3KiàŒ(«®Ü5æ[,c’qÔjãÜ9±~á;ŠhL Ë\ ~oñ9YlüNf~ Kò¹pEZ@@?H>û¡H €,P‘Z6-™j[®u·ìÁxfÀÝÑ<~ œl´Iy7M$SËO÷³aÚB^`kêú_Ê*+Ÿ ¾§P{¨v”Y5©n~S¨½Ò%*`”±`æ³~ÄO~í8¾¶çKlšä³/Ž4‚ € |.˜@N`L*U[ÕÑöã„ÒI/³‚뉖X`ঠ÷¾êTûÕ··po4 à£À–Ž¥ßÒJßäc“64Un´þYmýü÷Û 1 PÌŽ£#Ÿù¬ëë2ÙZ;¾¶çÇù׆䳎´ €… |.Ü@ð_ ¥%!Iºö«ÞõZ«EÒAÂÿNhðdæË¥¦O=’L-»Z­^]~ôˆ ‡€ÙT¹í ¥Õÿ—G]›«È5ýÚ†…WÛ$±!wcTô3Ÿ _g*?_þÂr^úì:7&ò$¿]Dƒ €Q |ŽJž~@F``_ç¤ó€$é¾/EÆSŒ—ˆ³Àh¹Øÿõd&ýwÙº!Î!v@ dZ[{3‰¹rSœ·KQÚ˜¯OjXð ”.ª1,˜4ã²)Ƹ¨Cqºº×ûCkkF)ó˜¯mÞØaÏ»hláÍÐ € P˜ÉçÂü¨ €€o£V®œ,û:ß4°¯³Ò¯ó­aBÀ^£d?è2 :•Lµno˜D† à ¼Ðºx[F¹3$GûL±‰ÈÌÌO×Ö/¼NÆEºØN.ã‰TÀ”9ÇGÀ®Î7lüåÍ;ýÃß}¤ýˆO—UçG;´ €"@ò¹=ê"€ à‡€1ºº£í}Æéó–‚»Ø&ix 虲²ü?$ ýa%KÎÇ+v¢EJK`ëÊžNèþódÔ›‹oäæý’€¾Y56òYT|'—E$`´ý’ÛJù;ëy·¥V¾.å½»Ù‚þÔ® Þ Ê € ’Ïñ?‡Œ@ Æ•©eÇ$;—ßi´ú‘Qš%Òb|. ½`Q2Ùì»ÉªÄ½£V-gæÁœ4€'°qåkvåÆ!µ=¸^¢jÙ\TÛ=ö&µhQyTÐ/E&`ÁL\½.S횇ƒh·6­l˜i^Ȩ‹ €E @ò¹N"C@ˆ¡€ÌîLv¶}ÜQú¯²WØ91!#Œ€V§º®û@2ÕþÿÔšª‚é„V@ زò†ûdñ–ÙrãPºÐ¶¬«¯Õ…µÏeÚdt…u±1ÐÊD?W›`f(kÌŒêαl!0­€êTE@| ùì # € ½ÀèÎö×$“‰?(£¾-µ’Ùפ$%# ËšO&wŒûKõªe§–̨( 3-©%w*å^ a÷Å,ô‡«UÌ€^FúÀT”@`D££O†š`–ÇÖ*˜Õ#zøÍè“ýŽ‘ € Pä$Ÿ‹ü3<@‹š›ÙÓöêŒ1’¨N³(2BAÀRsœqõ½Õ©¶fµfM™¥A PÒ›;®ï†æ  è’þN`ðì/0ñ¼‹d[!sèþï„ûŠã$YûùŽ%e$¶m?ðjnš ÷û‹Þ@@`.âíoÂ+ €ø.\±bªJ¸7±Ä¶ï´C5è-ÿ¹A¾6*cž×Zo“ý´·Ë’/Êò ÛŒãn“÷z£vì®ìÊ{»ËRècä±Ì¼•¹\Z–ÿ”Ic6ã´Ñãµü)ËÙÓJ—"‡¥¦ÈŸ¼ò$Äø É[gfRËÞÛ[7/‹‡DN£ €@‰x èÚúù’€ÖËdÈŵWòË3 776ÎS­­½%rJ&¾èʪiÊõ¥©Bé{þÅCž,¤Ôõ–Þ>åeÂ|;1¡kì±/(õP˜Ò € 0X€äó` #€ €@²cY“Ò™KÓ^²’£p­²dùãJ«G%)ü˜kÔcJeþe\ó\OzF55íI*ÞU–-ÈÞÄU;Ç¢•;E’ÕGGí}”Qæ(iáùšœeK^à”„Ò‘Õ>ž9÷•Ü0|QÞA[ ØÐ5=cnÝÒØx$ 3aÛÒqp2æ£å–ÍhÇÕ]ÍýÁ… åÆHcSòY•;æ8/ÉçàN:-#€ €ÀH>ˆ·@È[`åÊ1ÕNÿ÷%CvIÞm”vE/‰ü$p×J’y­,¿ü·ŠŠþµÛßÕ´Õ:–é—ww+Iˆïúºg¿øî¸iTuõñ’(?Yçdyÿµr‘ê$ù³f¿²¼0’@¥Ìªûn²³ííå··\jå÷ÂHÑó PäÅœ€–½]çÕôŒ]¼E©…r¹ªÈ¿—žOŽì÷ýß–u>f˜f\™ùy‚}¯Ø\GŸ(/´íõ"O@@H>‡ˆMW €¥#Pݹücú[äZË«KgÔÔ›Eôùº_–´þƒIèûzfÌ^¿ïìVIðÆóxç%;»”z@‚÷¾öÉTË¡Z9§É²ào–‹VòeN•7“{ ð`=³¯/ñ·dªý‚tÝœ»‡)ÄË €x 蚆ù3äf+o/è¢úL“ôÒüÚºÛ6§–~,ZºD vòsýñÑm¼e±C’Ño“×Ζ/ö“ÀÙï?‡JRã.Y†û¿dîoî{£Â~¥y@ 4-+¯ÿuMÝ™²Ú®$ Õ¨Ð:£#­>Z[¿ð…ÍK¾Fwô@ÌNˆ<~í-‹Ü!7¥¬‹~r÷>ãÓ*z÷}Bâ) €”–ÉçÒ:ߌ@ H––du²ì‡’8¼4ÈnbÚ¶+q? ËgÿÊuÕÝc¶Ý£d©ê˜Ž%¸°§Oï— üƒÒ÷õ}ÕÒ’¨å¼Þ¸êí²ÜçÛäÂÖYòzUpÄ®å„$é¿^•j?»<•ºø¥ººÍ±#€E*°%µäΚ†Ëß&3 o“!ÙTæK“ê<³©céõEzú… 46V¨õªÂ*°×[;À£²r½êñéÐÇ©æfG¾¼ßÁ8@@ÐH>‡NN‡ €Å(P¹²åhÇI´IâÙÛÏ—c—ÀNe̲¤tª¬,³jÇŒ¦MÀä(ÐÔ”´\÷7”·wtoõ;d–oƒ,c8CZ;(Ç‹²¸Ì¬{W¿ê}P–»ŸÝ5söŸŠr ˆ¡À–•7Ü7¹á²³3&ñK J ‡0lÈrCØ'ÖÍß°5u½76ØG`rï¨ãd_¹Q0ÚCgL Ëboj½nGmý‚ge”‡D;ÒÁ½›ä”¿Qdc+s´n=hæü×Ù¸¾¸&1Í—† kdû¦Õ7J6àèGî!çæ3¦Œ¥·sV£ €ø%@òÙ/IÚA(=ctUgÛg6+dvïØÒØ5b­ÌvYú§ çtæàî™sß¿óü9·«3l[®¸N‘,£—žÙxOº~îÕé™sŽ–$ô›e êïÉ Ÿ+®æ4oIò[%ýmoÉòœjR@ 0YžúQS¦ß"ü=°N¢ix¬ëèÎÚ9‹ަ{zEÀ^¹!õøè£Ó†ƒ6Ö%Ÿå¦L’ÿ¡ðÓ  €Ø'@òÙ¾sBD €qX½º2™Z~“6ê«q7€û¤Í6YþynW¢ú ®º9— $œe™èú¢É hm$ }oºnÎGdFôar_ÄÛd)꥚¬Ú]’ÇÇ««·½½ebIŽžA#€ lm_²¡'Ñw¶„vŸ…áÒaº?Ó®¼ým9@àcAòÙ˜‡_ (ÐG.í_ä3Ÿóƒ£ €ø @òÙDš@(-Q+WNNfÒk”6ï-­‘Œöeô'}ú°tÝÜy2ã¶Ζ}ÈŒèîú9w,ÍH,Iè÷I„´,ÊÀÑ=±ßÑ×—¸¿"µŒYkÓ ÀKËoÚRao5ÊÜ‘]x”’%ÅßTÛ3öûñˆ–(M ú™ÏaÍHÖz}hªYwdø8k+ "€ €€ß$Ÿý¥=@¢•j­ëôß/ƒ”%ŽKæè–„ó-F»ÿ!Éæiéú9ßÞ1gÎó%3ú8tÆ{·Kz±Ü(pºãÙ“Òü@†³#ÎCÊ1ö£JßSÕÙê-õÊ `À³©Å][*_ª—P~nA8~†pEmÃï†/hn–ëúØÈ!ŒÊrØ:“ k†u.¤Ì|ÎE‹² € à«Ég_9i @ ˜ª;–Ÿç*s·Œñðbç ±m”™<ÿHd—„óÅÝ3'ËlËKqØÙ0ïoéºyWUUe“› >¦´z"ŽãÈ#æ Ú8¿–} ßG]ª €!ÐÚÚ»ù S/ÒJ×la£®­©»â´ Èh8 LþÓ†#ä¦Çdô1gBY{ÓŽ#ÿ%cí~¼{E0aòì÷´×+,÷r2ØQ!'»ü ?Ç[pÀ㤠€ŸÉçâ;§Œ@ Tªz`F¤Ru…4cg]³V+s¾Ìl}kWýÜ?Ú#QÙ$àÍ„–™ñçíþ‡Òê÷6ÅæS,§÷©Þ5£W·Lò©=šA(P`KjÉò¹ó™9¼¥À¦"¯nŒ:wRÝüË"„Qà ú…“¥» !v9tW:ä™Ï®k]òY`¦Nj¼rôÐ@¼Š €'@ò98[ZFˆ™À„_µŒKšÞÛ$ìé1 ý@áný¾.Mÿé¡×uÕÍ+ÖY¬2àýºg6þ.=sîYÒÄIB?Q@SÖU•äÆkÜLâ7ÉÕm‡Y!€%*°eå ÷9:#?égâN`´þΤ—M‰û8ˆl\GY0ëY¢uœP—Á–•ž•^wdëV9ÓÓÍìç°°é@ö|ÞCÁ@RðÏÝ݉_Jbí?ŠÈ¡Gk_N§3Çv×͹I57»E46†€Ìš_žµýx£Õç¤û„H—²$áñ*£î"/"€y l\y£·bË9Rù±¼°§ÒS–¸Æžpˆ`ŒkEò¹ó$ý¯`G:TëÚºÙÏòs;û>uªx @ ù(/#€ÄA`OâY©Óão–1®rΉ]us?¯ššÒYÖ¡˜~yw÷̹_S*sœ2ú–WˆM‰£H@Çæ\(”ˆÀ¦Ž¥ºeúnÜÐÔpÅ%rÚf© h+’ÏO¨Å‹ûÂ?!/õÅ£™ùœ…E@@À_’ÏþzÒ €@Üdçît¢CÂ.–ÄóãZ«™2CufÏŒÙq¿P·ï¦’Š7]×ôLº~ÎÅÆxI겆B$ «oo;8À>h@ ­íK6CÚ5™ïʰeQŠ[@’ÏæáH”²oæ³bæs$ß tŠ €@‰ |.ño†”´ÀêÕ•IÕÛY$Kmgäzæ·Ò£·ŸØ5s>¯ >Tîú9¿I'ª^«µþ’tÜjçÁtv”Û§~9zuˤ`š§U@\Š#­O«i˜q®c§<ñ0ÇE³Ñë#‰AÛ7óY˜ùÉ7"€ PÚ$ŸKûü3z@ tZZ*’™t«L?‚Y«ó¦tÝœO)Y9þãa±˜1£§kæœ/d2™×ËÍ¿]üû,ÓÒ^“É$îð–äßç-ž"€D$P hmô×klLFDH·.P[?Œt25ðŽÔ£¢Y•Çq¢™q=²ÇÑjÑ¢ò‘‹ð. € à¯Ég=i @ ²Np²ºìF µ.áŽc¯1æ 郷œÒuþ¼F(Ç[„"Ð;«ééóç¼E)óé0î7B¼¾»;q›’¥ùCÁ£@ x èþ~õ6Yíå™¶³À!ÝÝcÞgghD…@áÆ$ì˜ek¢™ìö¤£™q=ò©KLÜØwÌÈEx@ðW€ä³¿ž´† dg۵ʘ÷Ä Ô‘Bü›ã$Ní®Ÿ÷%uêûúF*È{„* µI×Íû^F™×K¿ µoÿ;{s•êY¦d¥ÿ›¦E@|^\½ôI­Ì9R÷¹|êG^G;ŸP|®D~" 's| íæØ¨qû#Ù{yëm·n—Pÿc¸×¶ÜøHé@l ùlË™ @Pª:–}^fË|0”΂êĨï¦ÉÓwž?kmP]Ð.… ôÖÍ{8=zâÞì|i«¿Ðö¢ª¯•>/™LÜ 7¬ÈjÜ €6lêXú¨ãšó$/ѳÃZÛ3f~Ì‚&\²p\eCòyǖΛ¢\!’Ä÷H'ÈQæ„‘Þç=@@Ào’Ï~‹Ò €€µUË.ÕZÑÚØs®«ÏM×Ïý¨’=v\œD,0}z¿7;_ö$³DòxÄÑÒý…ÉÎöoÒu@üx¾óú¿Ê6³¤Õ®£?Ëìg¿hÍ£µ ÉçG£ÕÐÖ-½m”¶c9ôhO ½#€ €@ˆ$ŸCĦ+@èª:ÚߪþItÜsªLUœÜÓ0çW·D„,àíIžvË^'Ý.¹k?»ûx2µìÃ~6H[ €… lî¸~6æ½…µIí©5ÝcßIÏtŠ@°Ñ'ŸZìк1 Do3ó9tºD@ ¤ÊJzô @ $Fw,;ÑÕîr¹ã»<†v%æÏ¤gÎù–’½tc?!#°K ¡á%ݱü'F»³ãK¢¿“Lµ=•®›ç$z|ù‰B`Sêú–šº¯ÒZ}cˆ·­}IâýO îfk$0rðö2ïQGåZ-€ò‘&ŸåwÎõ²/}Ã*¨É㤶·…Œu4**(P[·àçÊQo±PXoºêÞÍ©¥„Õý €D/@ò9ús@ € T¯\yHF÷ß&]Œ °› šÞh”{Aw]ã]Au@»„* ]oùí8ÞªA·T¯\vVWü?Çy ÄŽ“À–ÔÒoÊEö“%µraŒÆuêĺ…oÚšZroŒb&T†˜Ø=þ¥ÝİBzC–þŽxÙkG’ß™F›u7ÕSf]vÄ¿WÜøDÖ5(­§(cްb Z?aE šËn‡FMG €¡ ÜqÓ(ãô­’~§†ÞwáÞ-ó´_Oâ¹pHZ°G@f‚œaO4yGRm½rÔª–)y·@E@ߪª¶/”Fð½á”Em®°yšF T2•±b_a­ÜH—½Þr°zLà­Ë>gÜ„ç'ÔoJ:C@ÈH>GFOÇ € £“½£nÕż}fcv˜¤GOœÞõ®¹ÏÅ,pÂE`x–– Y鯒ÏÞ§ºnb…ZsCÕðæ@06´¶¦Û7KúÜf¿…ô%kà6Mj¼rt!mP[\GŸhC,™Ê²hg>/^Ü'OØ`18£UôûqˆÇ € PÔ$Ÿ‹úô28@ tªVµFFß3ŒìêüÁtݼ«Ôôéý1‹pQ ™,;] $G,¯7ߘÜ1v©,eçíŸÇ `À–ΛžÑZ_jA(Ù†0Úíî™maÊ!`µ€«¼}…£>6¾Ðºx[ÔAÈÎÊ‘î;=äø]u¯ó" € €ÉçPi@ ZêÔ²’Äýr´QäÜû‹’ÂzWWýÜër®Ib `”9'aæâ…/ßè’k=Ê#€$°iå’ÕÒôwjÞÿfµ¹ÈÿFiì˜YûH#ß¿K­íˆcpdÚŠ›GÄc@(b’ÏE|r PŠ•«Ú•}eÿOƧϸG3ʼ¹{æÜ_—â9cÌ¥! •>§G*7º|eÔªöwãØ WÍ•Ûeý`â—ÏÇ·m\01±##ÈJ0:ò=…RÑ.¹ý2Äa_òÙ(+–Eá{ˆ·@@ ˆâta¾ˆØ  €@ «o›pÍ i{\ íÓè}eªâͽuó¦yZEÀâÚïy_PíºæÖdªåð}ßà9 €@D­­½™Œñ–ߎÃ6&eå½ffDRt‹€/Sf]v„R&òíU´2vüNeã²ÛZMœrÞå“|9á4‚ €@€äó€x@ >ÉLòz¹Ëüø¸DlŒº=­*ÞúR]Ýæ¸ÄLœä#PU­ß(õ"¿ ™OìYÖ‘k‰ej Éže Š!€*ðª¥ÉÏ…ß´ŸwŒ3˧¦hH2ÇŠßÁŒq¬˜qlœŒ3°÷ýfÈ”Ûqžö‹ç € P|$Ÿ‹ïœ2"@ $’©eWÉÀçÆeð².ÝMÝÝ™UW×—˜‰|ä¢ú;ò­£z§%«×Ä(^BEŠ^`B_õWdël¨Qæíêœæ2Ûã$>†0vì÷¬T™Ë]o]yÃÓbeÝïy²=UäK£÷=Äë € P\$Ÿ‹ë|2@ $F­Zþ:Ùcìâ3xý®™s.SMM½ñ‰™HÈ_@fž•ÆžÈF]™Lµ]˜¿5@üxô¶k{ŒÑWúÙf@m™4nÛj›f^Àhf>g¶”m{,øÁf݃³°G+7ºœ0ø9@@ H>%K» €á¬\9ÆuÝVé¬"œ ëEf|.]7çãJkÉÇq PücÚÛkd”§ÿH÷ŒpqEg» `÷Ä@ ”¶¤–Ü©ŒZm»lÇò6Ûc$>†ÐʆµO*Ùï}ØÃÃÂ¥· ç)ü3A € ºÉçÐÉé@ÀO¤Óÿiïh?Û ®-ó™î™s¿\û´Œ€}ýe¬4_2Ǩ„qÿO­^]Y2#f  €€å 'sµ„hùî[,g$<F8q¤7CzϪ%öå«âñÎVVÌPéÛn@@ JöŠRŸ¾@ ¨Nµ_!K‡½» FB«l>“®›÷к£#,ÐÚy§ü=µ$š°ÂЯKfº¿œVêSaõH? €à l\yãÚIõ o–Ï£K†/õ;úMû>ßÕÜu$ô@.Sλ|’|ÓNÈ¥N@e¯©_ðÝ€ÚιY­ÌIÞyø¤Æ+Goj½nG΢ € ƒÉg£¶çàEQ@K*SËŽ‘ ˆ×XÎÈahõŸé™ó®¹ï"P„ÍÍŽü=-ýž÷;}æUí·w×Ϲs¿·x@ óeéô½òeë pÕµcžÊúøµúDzæ\ÏÖŸ( B yÊÉgH»“ƒh;mjÙÚý¦q6ÌŠ!"€Á lêXú¨ôÐl/¶®õ)¶@uÂÐ,å>zþ=åX” ÏÔD@»ÂM>kõ”uFÛ“uH„Ø%L:Ÿ”ˆÞlWTûG#÷ºYÏÿ³ÿ;¼‚@ÉÌ.™‘=ÐC{Mχ~‹W@Â ß »Ï\ú“»–^—KyÊ"`ƒ€Qzš qC–ç+K)Š!€ €@a/»½Nbµê;G›‡ ð£* €@È£Rí¯u•ùbÈÝæÑþ^WÝœÏçQ‘*‘€™UDƒÉw(Umw×Ͻ9ߨ‡ä*P[¿àwRgL®õ‚)onÝÜqý·‚i;·VŸïXú{±ù›Ô:9·šá”6FɱÄKÀÑêxùÞ刉€ì‰s|LB%L@ˆ±@¨Ég™ö{ùytŽM^®«oS<Ä‚ 0‚ÀêÕ•n&}“”¨¡TäoÉçÝ ]3g4ò@^¾QäÕ†`M×Z«ïŽZÕò«ç7ýÛš Š]ÀKb޳a2+ò.âØƒ17(­¯ÙóÜ¢ò3¤-{çZ¤B(¶ Hâ™d¦í'iP|F¹œ¯AWó‘aÞãe@\­î¡›œ»0Æ”s%* …À¢EÞtGEÑ5}*00óYÚ õ@@á"I>{ÁœuÈħdUI(˜îá‚ àõç2®®ó–þ mšDðS`Í UFëkülÒ×¶ŒúmúàÍöµMC æÕ+—½^iõv ÃÜ,qx+'XzèÏW¯\yˆ¥Á PôÚ˜µ6ÒÑz¬qû LÜØwŒ¼V¶ïë<…À¨ u‹¦Æ"R‚D@X D–|ö´Î:|âï´«æÉÃ0’ÁÏ9Ú¼óì#Çÿ+–gŠ @¨Ú9öcʨ#-öÇ”5©Sß'û=s €ÀÇ±æ† ãè¶t:óq‰í¾=ñÙõ`´qú¿eWHDƒ”Ž@™“ñö}¶îpm]P„ÀÚ$¦ ñ2/ÅD Ü1,™“sE˜ €ÄQ Òä³væ‘W9®ûvy¸1@À‡dÆó™gLhåÍŽ›¦@X $S-‡Êž¨Ÿµ4xI8;sw64ù¹eéÐ áF··dÔÀ¶*à ïMÝ;3¿WMM½*“h”n·„×uN=]XµªÍ’™â9ÅMa@ öÿ.ßù´ "cÛ@´6Ì|¶í¤ÏŽ2' ù/ÆBÀu3$Ÿcq¦@x Dž|öØÎ8²æž¾Lßë”Ò·ùÌh¤Í9zÇéÌxöY–æ@ LÙ7¤ùQAv‘wÛZ}*]7ÛÊ=óðAÀ-7WI3>4UpZ«I<$Ò³f=í*÷BiÔ-¸áU€®UkÖ°de¶4‰Œ(ÐÚê}N<3b™(Þ4*E·ô‰@®Fif>çŠfSy­H>Ût>ˆ@"°"ùì™NÕAÿ>ëðñ3´ÖóäØúàü{í¸gJ›`g4iI ÙÑö&¥Í{Cê.ÇnLgúü9ß˱Å(zñË——;þþÓ–ÊÏ“ËÇÒS×øK‰ïKƒ_³èñÉU/m½Ô¢x(!cãJ6cJè0ÔX 0ó9Ö§Oi’Ïñ>D €€ÕÖ$Ÿw+9u|ÛYSǽÆKB+­VÉëý»ßËâϲ?è-Z©³Ï:|ÂYgVó‡,êP@Àc´üÛokr÷éòr÷R%k!ÚÂEØ"Ð[æ~DbgI<ÏïÜÙÿ«}céþÓÚ/ËŠ8wíûº Ïe¦ö—TKKÒ†Xˆ(%ù¡nk)—±"ࣀ\zSÇúØM…/@ò9|szD@ d¬\âOÏÞ²ˆmÞ×m—.So‘×N— sÓŒQ“åõq’œp%ѼM^{Z³ÎÕú÷ýý/Þ;ýU¯ê.™³Ç@@"Hv¶Ï•!ná°dYFýîíïj⥅'‡¢½ºeR&£>mƒ{7?ß½äöàWUs³«V¬¸D%2“×Çïõ^ôOI&§•ò¶à@I@îzäúAHÖtS\ãg,8\Fdç6IÅEähjÇ̾¤æ¥å7m ²ÚF@Ò°2ù<øTœzÔÄmò¼óå¯Áoñ@ ˜¼=Owl•™‰örÔW»fÎa5 ûN Y É8_0,Z"4qëp,ÞþÏÉTÛûåýŸW&º×õÕcÚÛòÒœ9\Œî$Ð3”˜€$Ÿ·¹«r(/SÇó7'73KW¹'¼¤ÔïlŒ˜@@ ÞÖ-»oN¢GÈW jç–K¤î´|ëXïÁ®)›¾`û4@lFw¶¿FVð’¹Vrô¡tÝìûG &]7÷²NäM#•‰è½qýåê³õM· €@‰ ÈÚjö’ â@ÀncŒ¿·ÙfatƸœG Ï‹!‹&¹|¶ùwbi ˆ…ÉçXœ&‚DŠ\`Í UÚèf GÙ“Éd.V§¾¯ÏÂØ hdöŒk~ A$¢ ä•Þåß‘ë_y6ü£®DúC²…Ë׈êsUÕª¶#¢ê~@ ¨ºlÜðSmK,ûÆ!{yÙ·l°V²Ý – h}‚å^6FÇfßg£«¬ù\Û‹V«ò½žÛõd´=áh>Ûì9D‚„"@ò9f:AI ¹s¬7srêHe"yO«ÏõÎjúG$}Ó)– Tw._( Üÿ°(ÌÞ2]~sVñÌxïv™ê6?«²áªp\ýÅp»¤7(Rk.ÒKò¹ÂVcYvÛ¾¤«¬9w¶ž7â²B€³Vœ†ƒÐ*6Ég·Ì±ôßFǾ›˜^ù¶`[céù³Å‡8@â ù\|ç”!€ñhi-[íý—…Aß~`í5ÆEHD.àÍΕ=2ÿ'ò@ uÛKuu›¿4Òãî™s×HzÉHe¢xO\ß[µ|ù‘QôMŸ PT;lQ:iK,ûÆ¡µ²/6m¬9wûzñÝ’ÑbæónŒ8ÿ£äó¦Öë¬ü·QkSeñ·Àx{bÓVž?{|ˆ(>’ÏÅwN +dÒ¹J®±,è^×Í,TÍÍ®eqÑ ¬YS¦ºU}0ƒ#È|ð³l'«2ŸrÏfS6Ä2 Uî^bt…E) _´gXfŠ=±ì‰kôÁ{¿bÁ3£wZ! 0¬À!u‹jå>Û~6^ÞAÀ¨#ä|Z»5‘oâµH_’ “# `ÄÎõ¤ßõM>ÛBå¦3@À’ÏœB@JV ¥Ef›èÚ6~cÌW{šÖÙñ `ƒ@rÇÖ¯ÊjgÚË+1˜¿¤g6ÞóÊóì½ðަm2ëíÙ•¯”$÷ç'S-‡‡×#=!€@ñ ‹’Ïö^˜×ʵ.i`´Ézâû¾eDqèÓf=ÇáDec¯ê‹ÏêZÙôÙ6 ,?·[yƒUmý|¹QØX³º‡üÎÅg[–')†‹Éçb9“Œˆ¡@2Yv…„}e¡?Ü]VýMËb"¬Hv¶_ |ÊŠ`a”󿃞æô°kæÜ©ðóœ*_¸\éħƒï†@ ˆž·hl‡I,í;¹KæÈs.“¥Rmš¶+.­.Ð[ôÍK(û ÈRúñIVî>¯ì+ õñû¾dísclúl`’¿‡Úè•Éè#lŠK¶â³Í¦B, €@$ŸC@¦ @!ZZ*äN\oÉ[«£ÝEjÆŒ«‚",Hv´½Is½¡ìÂsÝé~oð¼]®>&•_Ê» *ÊìçêÛÛì[6ˆ±Ò&ø. ™^›.òŽš2ë2«.‚{à;Ç—{ 4ë’âJ¹›|ÿ† A|$3Ÿ}ôŒº©xÝL múl8uZ™iêœæ²¨Ïã¾ý—%”U7£ùlÛ÷$ñ(r’ÏE~‚ `«@UUâb‰mªMñÉÞeKºg6þΦ˜ˆ*:Û—Ëó‹5K·íqÑú{ª©©wÏó<t½kîsr3LsUƒ¬Reú4³Ÿƒ¦mŠYÀùwÍž£ßMœhO4»"1nƺ˜¼Èd5«ÎmçxldGÑ8J[ùoáPÀòûºÿ>–×LØpÌPñFùšm7‰×µñÜEyŠè(z’ÏEŠ  `¡@KKBöüùŒM‘ÉËÛËúôçlЉX°A`Ôª'%ŒùµÄRcC<ûİ­²OÿxŸ×òzš>x˵2ýíŸyU¬’Y8®³sB`ÍÓ0­€«ôÓ6 Îõf›âñb‘ó­‹É‹ËÑêIïOlКe·m=7ùÄ%IÊãò©EmÙgÛníš3w?¶åOIÔ[õç8|¶Ùò½A €@X$ŸÃ’¦@=Éê²9òä¨=/Xð@~9ûâŽ9s¬ÛCÊB(aêTÛ\7s§b#ƒ$®{qöì}‰íÔ÷õ¹F_åK[þ52ª×t/ô¯9ZBRpÎ6Un:<Ǧx¼Xd©Yëbòâêï7Oyr `£Àäs/%yް16bÊ[àX—j4òYbçÍ9ƲÏY\õg eÑk}›ßpø¿#ê›n@"°nOŠˆè@ Lc>fwYôõˆ7ë1‹rA kÑ«[&õºeµåZWº¦¿ÚhG¶Þr¶«þŒë–ë­éäöÍjúåÝY7rÁêŽö™2âçÒí¨»Î¶» Uñl gS®»~ÎÉTÛ2);/›òá”ÑRkÖ\£¦Oï§?zAbèí+{²{J57{g9@JH€äs l†ŠØ P½jÙ©ÆUgØËî´q>¢dÖãîçü‰@ÖÍÍÎè7¼æø~íœ.K·¿AfâN“YôÇJýC3•HÈÔWÖ•E4•–?\ùŸ·ž¦’ËÉc•JµuÉ›OI’÷_òêãZ9ÿtUæï•:ù×m3g¾u~\³¦¬zÇÖ/HLÿåg³¾·eÔ÷_ª¯ó=‰aúOê2·Aâ-÷=æüœšÜ±unZ©_äWZ PŠÛVýð…Úúù²¢‹>È’ñ—õê~ïÆžÙOŸ›x|îZxèg6µ^·ÃÂÀ £'Èϼ6hܱ¹cé É%†‰ —Ÿàçï¹Ô §lÆÛÇÛúä³Ä¸.œ{™tPïø·Ë‡î9× ¢‚£. ¢ÙÚŒÃ÷Vã* €ÀP$Ÿ‡Rá5@ÀLÆùð@.°rkX.Ü‘®Ÿ}[nµ(]Êã—/ßpgɲoK¹f÷E¸<.ÅUKÓdY4ï‚\Ê“E@%QÝkz”ÌÀ]//ýQ÷)cîOwgTMMNc«XÑrB⥭?5ZêÅcññbeÆù†$d}?ºgÏ~"ÙÑö96­ÐàÅBòÙ÷³Mƒ»€#ûØ[’Ï‚­Ê¢O>ËcúÁ§/·òìkÃz+O Aí0fš·azÔ‡üÌýHÔ1äÓÿÖŠÖöŒõf€Úµ ¢VÇKL+òS˜u6w\ÿlmý‚mÒç¸0ûͦ/¹áx¾”‹<ù<~Öe㵫³‰9¼2|¶…gMO €€=vý°c ‘ € 0jUËI<¿;€¦ómÒ8®ùL¾•©WBÞlàÔ²YÉÔ²TO™»QÏ7Èè½ï嚎‘¶å®uó=¹È÷‡d2ñb2Õ¾Föaþreªõ\ÕÒ2Ú¯¾Ç¤Rµ’p½&‘HüUú²=ñ,$ú«¾íõ<b™®øª¼ì]زåx“œŸ7Ù q €@l$ùlÕqÊÄú…ïˆ:¢I>=Wbð>c­;ä´X!0HÀÑú„AO£{hâ™|–e™½IŸˆnèžåw/ù‹Cî}°í³íe7Ó8©~ÁÑQ#&LÙû%†1QÇ1¸¹ÑšÏ¶Á #,˜¢8HÚQîWeßÇÿ/²½+L·ú¢e,{„cþ²ç °PÀX2óY Zg!O¶!y±¿:Û¡”3ñI>Ë¿ßÊù·ñ¦Lo—¥¯Éùj åœ ÑÉ!u‹j{ÝÌ'mûŒ“½ºùlâ|ñ Pì$Ÿ‹ý 3>@ÀÕ«+M&íÝ…kË‘qÝÌÛ qØ%à%{î'{´û!¹Š`Õヤòø´—¿>®TÂ[ªûYyþ€¤þî*ý°ü¹>£ÜÊÊõ67íT:åªF–ö–Ù^îéÆèseÉð%¡=¨ÉX<¼Z–Oi·®¼&©z?(ýD}ÓÁî¡ÎÝÞ~ÐŽ9sd;9@ cþ¤d:›]‡>­æÏ>°E©@o"nÌ“zÆ~J¶–°v†ŸÌ{`¸ØyÈ-*WÿÎÈÏ‘Ñ&áÆrÙmONøëåÇó¢WÜ+‚-€özÅÖ'FýÉÖÐ$®ÆIuóÏÛ”ºþ¶(bìQýÿO¾·&FÑ÷}ön>¸|íïó €@‘ °ìv‘žX†…Ø&ìïj˜¬Ùwе´§¡éQÛœˆ'bY^[–¶þOYZûQ¹8ýY‰ÆÖÄópP‡Èõ’NþŒìCýS¹¼uOBéš>õ¬.sÿ%w? W¼~&ËVTÒ’xŽÙaÔoÓ3çü,”¨ëêº$ ð¥PúÊ®“òL™º$»¢”B”zùbomÚ˜o×ÎZxJØqÕÖ]~¶|>~!ì~³ïO§Ÿß~K“fFÉjžSGI—6LbéÚºò† !ß¿îÇÆÄùè u‹÷oÁµäè̃k½ð–åwÈÇÏXpDá-åÖBMÃüK$ñ|ynµÂ(mþª/î £'ú@°K€ä³]çƒh@¢ÐŽ^hÑàºSöÅ=ñ¬\9¦jùò#+W¶]ÑÙ~¼÷xìí-¶Ý1¼'\#\µìÉ[eÆ‘ì±ì^ÎÁ  ø[íϸ™È,>É„st¥û¯—žì¹¸©Író€Ü7Àd!°ëbïýY” »H•rMG˜{cNn¸ì$­6¨ ‰³¡½µ¹GÝÕÜ?ô›¼Š€N¿-«x7‡öó ïòó°ïmúРÖîq>4x+vz7él¼£¼;Е—«Î)ç]>)ï&r¬XS·ð­ÚèÅ9V ©¸þ]HÑ  €€eöþâeá €ä/Pµªí㪷çß‚ï5ÿaœþÉ ×cåºÅ‘JõWʺ²5’¬b,S¢U™Q}}K{wèþ[ÞyLióíª¿Él?ììqÿ.ËþÊŠÅE! KÂ'3é/)W}BÆÃyöžÔïôÎj wFXSS¯êlû¹¼y%,ÇV­ZvV·R\ıä„¶ È5¿••·ßbaœ‡¥ï’tÝ¦Ž¥2¾ƒ®8#cÜ•ÒGMýܶÑwÜ  €£œdû–{È®i‰ÁÆ™ÃÙ/¥\XŸPöý*™Pæ ïWY$ª‚­­U¿ÀûYøü¨B8P¿òÙûšL…sç亅õSKþu ò…¼/Ÿ£òwâfi£²v‚ª+üÞ.í"€– pÕòDx €@18FÏ—qØ4[ï Odš½»»Gú%­\ÞŸ*åΑë,WÊ|ùŽþk2™Ø,{ë¶Vu.»t¯ZÆIŽ˜ T¦–#‰çû$üOÉ?Y{õºôèí_ˆ"¼tWæÇү܄bÇ¡ÝÄ";"! ˆ…€QkìÓ*i¬{åÂù‡Õ9ÍþßߨX!{o~Ö5îoÅ Ö^‡—#3‹Ï•õz‚€$¸,™«­œ9œí)x!µøiùÕ8mù°ÊI’Ж™íY Y[ÿïå@Z›k\(òýZHmýü1“êç_>G[¤ý‘®idáX·¯JyŸÁ €%(ÀEÖ<é U ¹Ù1Æ\jŸÁw6^º˜'K[ÝØÝx^ÑË«SËf(kð]Óƒ_ÉŽes¥”ö^ëW›´ˆ€++\¦¦_.~#8ššäâ ùV=Ý¥6sÇ/_îýÄP`B¦Ú›M»ó€£+P!ο;iÜÓžÔ°pž/IhI:ËEù‹j{Æ>d´þª -Ýð²îy»ìÑ}OÖ¥)ˆ@Fy3c£?´Y}E ÿìY8­§4ª+g2掻+¤«ñrû­µ2S{bÝüs¥¡‚“Г¯]Ó°ðƒÒÔzYADþ´÷ÁÞ¿½uéV{#$2@ ü¿»8Èhi@ v£N;ù\×52{¸h Ù,ùÅoVòÔ“ž%z¿“.ßy½zç%6_è-Ú“‘ÕÀdÏܪÎöÏKÙæ¬ÊS(jo§ëçÞeé´»XV<ø¬Ä`Ã’­ÉÞ2s‘Äòƒ(Mèâ!ðèm×öÈEï_K´ 6GìÍ“dLkíØ Ï¨ú…­ò<åTUÜ¿©õºÙÄíÍstâ cÜ™¦Ç4ÉEùƒ²©gKY]çWj×ݶ„D %`IrÒ¬*¸8½&ç×k£N¶+æe·í i˜h^Xµô!™Qü¤$v¦ˆm/Ÿéh}‡|¯—›¢ZƬ®¨Üþà†ÖÖ¬fÀ{ûG÷•'Þ"[Õ™žž¹’ÔcÛ‡‰gÕ0¯ó2 €@ |.“Ì@($ñ|Y”ý‡Ú·QGJÿ›ìõ_’„þzzÔöE6[3ÔǨ³~\^ݹü'2ÝàÒE]Ê¡þ1ÎüwäMM;tªí:ù¾‰>Áe/ß+|Žüƒˆ‡€\¤î¿¬N>¿"i•Ç‘}ª?"Øw¡^ž?.ÿðmdÍN­ô‹²†,>£ÆÉãÑF¹‡ÉŸGK™£dyí—›‘Çíp•·'5Ö L¨[t¸R™Q6Øß_ë=Ÿ ]õpás`}?“Æ6.˜—™ª’¼OÉgÛU¾+Ûà1Ú˜ÏʧÕg»{Æfä3îaù|{R’Êäfö´Œi›|þ•ËûÕòçDù¼“ÏD}L¿l¦¥ ÷ÿ8ŽÎðÙ§F¬ €€Ï$Ÿ}¥9@A--£åYý WJåáAò‹á5Éc?¬:–}"]?¯­Tnõ8S©êäs½?—Äì÷Ía»€\`ÙžI$Þ£šæöÚ«v2×7qµÄâíõñ¦ªUmGtŸ?÷ɨ¡°_ §R­¨èQÞþõqûýßË";ð%v¥”åÊû Ç’x¶ÿ8Â^·*Ñqàb”@ :­úeÖ³ß6o[õâ“ð©g™ùìSK¾6SÙ=0ûùn_ ª1­[$9·äó` oKˆå¯Õ‰Þß­¿]ò/¿<ðx ÑlÅß¹Á1çòxÝÆ•7®Í¥e@ŠK€½)‹ë|2@À*duÙL (iUPaãÍ„ÖzYUªíöªåË ³kúÚGÀK<«ÞNy•Äó>4¶>•%W¯è™1û1[âÛy~Ó¿åòÏÏl‰G»æ=¶ÄB `·À®Ylæv»£,áè´ZýBëâm%,ÀÐc íØïYÉŒá"8d[—?..¼›^Øï%Ö§ãoéÅi¬ù½©ôì1 `‡Ég;ÎQ €Å)`Ü‹Šs`¹JVïÔeîCÕmïó–ŠÌ­6¥ hi©¨R½íÒÎô‚Û¢pŒú¦¬ÐNgÙ÷¢çšìK]R_t´Å# KyÞ\<£)®‘8®¹¥¸FÄhŠS@[±ß³1ÆÊùžóŒ[neòY–~–Y¸19š›]ùÅš?-=]2—ûVKC#,@H>‡M7 €@© Œ_¾|¼,un©{„ñŽ’´ó’«Ú–ëìœ0B9ÞòS ¥%‘L&þÏ»ÀÏfi+PUéîÌçí!ÏÆwž?û/Rõ7yV÷»Úk+Rˬ¸ì÷ÀhüØôÿ³w'pr”eâÇß·z’éž™@ œŠ. (—\AGå0™Édf’ÁY9u=w×sw5ê®×zû÷à— ØÉL2Ó“€€ETä”[¹É}ÌtÏÑõþŸš$’„9ú¨ã­ê_}>LW½õ¾Ïû­žîžzê}+½y¹ÔºÚÿš©±Jçžß·Ž)·«Dd÷´:<„V¦nÂqâ¿géåØÔáF­›ºÃ¡—ˆÍÈgOÆ)š‹å¿˜Ý 9ôcAƒæ×«û?AÃ4‰ `‘Ég‹¡ €I(¤ÜNéÏô$õÉ—¾Ý6l†nkÌõíK}T2©@&ú¦ð^‹,1‹îϧòïV]]E‹Ãýž-±Õ)ýn[b!°\`É’a¹(ð2Ë£¬¹ðäsïuá…#5×q:GK¦Ýv­1\É5ÚX7…¸\,mÉq.Mô¹—<*ï£7”VšRa Èl+„Õí €Ø+@òÙÞcCd €@¬Gëü+]eþ˜îë~o°ÍÔví ýK?¨´úxm+Ī÷O™”:EÍ9c“ÍQç÷]ãÝ;ü9b”aL½mà b"P4Îÿ“Pm¾¸'&’¾…9âº#?ô­6*B Ýž3KªÞ+ ê˪ÖÕ‰˜v{¬ÓZ[7Š[¹/߯õ¼†²JÔ…µþnÔ!ÐþNO¬Þü2ï–W, €5.@ò¹Æ_tBÀ›VÚõÖ êNPi­Õ ¹îE ê“5]ÉäzÞ$·×¶f„ª50ö²®X,ž’ŸÓù¤½!n‹löùÞµË-‰ó¦¾¥ñ¹7Ÿ%h„@­ ¬Ï]øwý|u­öß¶~ËëÖö_ñ”mq» Ô[s`wO·!9Ég£¬K>˱×#)s讯›Ÿ¯î½ø‰ï/6ÇXS±ómuã¢Ñšê3EW€äó¸,¬D¨F@¦•~‡ìŸª¦ŽZÙWF.~¡!׳X­ZUW+}ºŸM+³{Ë­¿²Òδ Û¢þê´2›”cæ ÏﺯúÚ©Af.ðî/gÅRÔªÕŠ@b!àýU ”ûcF´ä:M÷ÿ¢ƒ˜ZÀ÷°©K_BÞ¸þþÈ5? ¾¥°ZÐVN!.Ç;VSoËÑ22ÛÕWÂ:j´3±€Œœ_«ÓikþNš8R¶ €„!@ò9 eÚ@jO`^íu¹òeÎÎlY×£²Yî‘]9ãÖ=e¸óh1u™<Ù·ÚªØ?x/ñluJ~î‚[‚oÍ¿†Zx£n~ã_ÕÔ¤y¿­†}¨1u¹‹þ"§é^cݶ®»r‚þŠu½—Ææ¢+ë (\£·Á‰Z3V&k'ŠvªõuzÔÎQÜÆXq±ÁT~;n_óÚ¯–YÅîÝq?‡/`ŒùŸÕK~´%ü–i@ÀF’Ï6bBâ,pÛÞhÓÓâÜ…ˆboÍdRKI@W§ŸYÑó19¡;§ºZØ; ¸&ž·ÛmÍèçã·Žößÿ#€“ È ú/H ï,Ñ §œâ¢hš¦U*ÐÊŽä³Q‰J>g6*/ùlÝLFë¸|VjÑ"×uõUðêfÿþÞ´Ùý‰ÕQ €@ÜH>Çý? `™@ú™Y'IH»[V\Â!]Å‘jÌõ-§o¾^EìžÀ³rK¹æ¸xÞ‘§0èvËó×Eô³MͨmšE ¬î[üˆLQú½†žˆ%±óÍg—_öX":C'jCÀ–ä³ÖvŽ®ðUðØ—ä½øïîØnÚ¨Ø|ö0Öæ.î•¿/n †Š'ÐÆ|rì5=i)6"€Ô’ÉçZ:ÚôA@«÷­ÎÙK@_%Woó]Žc6›rÍØHT¦./Ç-š²˜Qç„ÁÖÎ?GÓ¼O­vuå•ÑË|ª­ªjd#SoW%ÈÎÔ €1_’^?]ƒ=ºËOÔ»ÎÿFí#PªÀ~­ç5ÈÅ/+µ|å䯾‰ùìYI¢÷¡ Í*¬ûPõ–EuîénÆ8‘˜Ù#ü£°juî’løÍÒ" €€ÍœØ¶ùè KCò¹úã¶ sìQß®¾šÚ©!“q>&#f×NcÛÓßL×õo,´·?Ûì¸vÌÕ;<òÇSÔÊ•õQ@Û /5}—l6Fýk¼¢ND´|:wá`"zB'jB`D_%•»ÚD¿¸£ÆÆDmµ06&Ô§íµÇS¯¬¶cQì¿6wáòrýJm×n›:¯ÝâùµÛzŽ 0‘Éç‰dX P¶@º¿Ûû#5–¨–ÝÙÀw0Ëôwÿ{àÍ$ t_ör’áË èJ» ¿—ßwÍÉÖ'¥£ƒû¬¹NúbCÓÅ’âJ?@ µ¹Å˵ÒW„Ó­c.]Ó·xÄIÀ(cËý ^àq²+)VcgBÝŒ;îó]âÎ…Öì36»Ä;¯åYPZ™Ï®î¿,QSâeE½ €@­ |®µ#N@£Þ`õµWµQßlèïf:Ý)޼Ö)ユ ScstJëwå[;>®fŸŸ¬ið¤?rRvit´/´ìèÔÛ_xÆO €@i#ÎèÇŒR•VšRUüÕŒ}¼ŠýÙ¨¼‘Ï‘/2åöÃr["7ò@|@;);Gs;*¶Éguá…#®vÏCÅ,>¿^w­N¦D¸~ußâïﺞç €x$Ÿy €ø& '/I~ø¦¹µ"™óÊé¹¥‡ù\mbªKç–¼M:ÃTïöÑÛ‹ÊÌηtØ2=uRæTZv•2¢®¹ìØj^`ÃòË6hG/ˆášÇ  gÁºk®Ú\ÔŒ@02;Âk‚©¹¼Ze9²R»vŽ|vŒ‰õߟëz/½OþŽþ@y¯2J—' ŸšfRï–}ä4  €/ ùübÖ €T"`Œw/0F>Wb7ù>3RÊY®V^¹ÛäÅjpë¢EŽV÷ƶóÐJ2ô ù¦YÇ·.{¯%w)äÍÒ»uôð *›m² B@˜ ¬Y~ñíÚ˜Å,ìØ„k´9õò‹îŒMÀŠÀ’U²" éjÈï“Ï{ÀãÂmÝÅ?M·¾Ã«±¼åÖ?•)¡XÞ^”.Q `t±óéÜ…kJ,O1@ ù\ƒ.#€A4®ì=BêÝ;ˆº©Ó¼*SÌ\ŒÃÎé×y–¬9jçµ<³@àVÇqŽ+Ì[ð%ÕÜÈ]•÷¡_ª™6jáè`_º&×üØyßg]t“1úyɶÓ©SúÏ>±š­F.¸ýìš¾‹¿U³t@ ,’ÏeqQ@`&ÙÆ&¢¹J­ZåMW»‹Œz–ûÉè,ëï„óŸä¼óå‡Eòøœœ‚þºVú9ùq“l[m}&p£$¿X?ê8ØÚù95çŒM“OðV黌Ŀт©z{gX! €@\d”ØšúMÿ"Ÿ]?k¢Ž[>ç¯X“Þt¦˨c¡}ªÐÊŽä³Që6/»bmU}±zgý á9ÊyµqUÓú%nœnœS]‰ÞÖ}äoÙO¯í½˜ÛsTNÈž €@Í ÔöÉëš;ÜtF ¾7{°Ô¼W0µSëNZÍÎl^ÿñ¼RßÜi} =iH§Î’?~mõ<$#~ F뾟Ÿ?ÿ‰ÉMãŠì>¦X7[Ê¿ÞUêõ’Ì}“”oœlŸ¨·IŒ÷­.¬q.ÛÐÞ¾a0ê€,i_^“9 åäˆÃqÒÎðë Jý*â8hâ,°dÉð¥Þ³ç¼sž—÷|ï~™,¥ õÕ¹‹ÿ]ŠËÇ ñ ë·á•¬eerÖ·£ëºËÌA¾UçWEƘDŒ|ÞîñtîÂ5ûµž×<¤F{ä"¡S·¯çÿ)\yu¾Mßb¹€š@ÒH>—nEI@ tÊ9Þ†„—¼ÕÚ|IþˇںI^ç¦è‘Ìÿgú—}Ââsº¿—Äì{ - ¢'c›æv=+?x÷ ÞzÏàl6ÕÐè¼Ö%!}¢¬÷‘_Ø¡•Ùd”î5Ú½(߲е­ä–ŠÆ\ŸRœ8ÔÎ$,’Ï;~DŠÌÚ¾Åß³õœ‡$'ò=©s“3ŽÈGÀGääü“c+10ÖŒ|Nî”Ûòr˜¦êVE _:1#Ÿ·ãJzP½eQËÞ»=ñ¹BèÃÛ×óÿ„ë]¥O_×wñõ–` €ðä0¬F(]@®fÊíÒ¹ü(™qœÔ…RÑ[ý¨,Nu4ä–Ÿ&éçWÙ³$/(4Îú°jn­8¾®®¢Œ$¾Mö÷ßQ’lŸÞßýª:­O’ç'ÈEo%Þ(„0²œOËôæ})­– º«TW×°´Ë2Àpë‚2¹î§eó~ eµ6†÷ãP¤iÚX›[ü£½ZÏú‹ÒŽ7 ÷¾µÑë²{ù´¼÷ž¾ºï’ß•½'; `·€ß¹÷DöëÐy#r÷šwΩo¦_uúSO²F>ÿÃäÆE£rï£ìÝzöíF;?’‹š3ÿØÆ; Ü™*šÎ5+—tQõŽ;ò3 €žÉg^ €Õ HB¬úJ¨¡LfItžoíüE™ûź¸«Ý…‘u-Iîå\híüLÙûMµƒÖF2¾2B= E/+.÷ôõ¦V–‹>Ž“ô‘²î5òðN¦Ç¶WöÏìöyÜ"Éýß›¢ûÇšY_™ÝŽ{­’'ïÙqEø?kÞÃG§E-°&wéodªÒ£†uq±tt^¢;[nçä­!gäÜdß¶\Ê'A`VÛYÊE3lè‹|÷І8ŽÁë£mßá^ºûÜî±qÅ×Ü÷Hª_»ä²=ÛϽEÕUÀk# ÂÚFÍ·fŽ4þç#×üÀû‘@ŠH>WÄÆN €ÿÈå”>æÏù!Lo¨l¶OF¤æÃl4ª¶¦ç–&'ŸNªý‰ÛÕßÎÏëð?ñÍòÅ7zú, €T#@ò¹=öEPwøµÊQ)("xY:“ú”$"¿Ië!7*÷Ó=7ä&§nΘž|kÇL]0øƒmmÞ”ÏÞƒ%*”Z¥Ü¨¡]¹øÀ;yIòù~BŸÖö^r…Œ‚^9¬Ý¯Ibê,©Öñ©ê¸T#j™ÅC©ÑÏ1Ú9.‡Œ8+Û®.ÕÙ°˜ÌFõ° ƒÑÒG;Àwì§DäÍ®”ØäóX_—,–Dë—öjÿÕªè~OÖ¶£Aü< 7uúÆÌᆯ3Ú¹FŽ8ÝDB¨µ?C ¥ @ ¶´£“2êyDŽÜÕòø–<~—£(#?Ù¸"»O\â­8ÎÛ.˜&û¾·âýØQFß—¯éë¨×Å@ &Þ(è5}Ÿ[,ª£%W²2&aû¦éwsôš¾KÎ'ñì'UX- ‰çÃ- ð‰Çn¼L®µMö¢•yÀÆe¼‘Ï5±¬YvÑCkú¿Cf‡:Y:|GMtZ©¢|Ž_¬êR‡¬é]ü%Ï5rÔé& ’#ŸC‚¦@ ©2•ïQ2ÍlÜ—»ä¯®w·.øÇýÞÏ2Òö Ò±wZÞ¹F×­ûŒÄøqËã¬*¼†göœ+Þ—TU‰¿;´vÞ©N=sÀßj©-”>¼2Ê~3v/ð(C m¨õ+ß+Ýœ»×üs•>'ŸÓíò<þß w>v’ƒ3ÝŽÒ_YÝwI­$#vàY­ X’|ÖÉŸr[^aòúql|ûÔ‡ÕÚ/€ÌðqƒôùؽÛÎ}‡kÜÿÔJ¿1éÓ¥££êëV.ö.žeA@ÀwF>ûNJ… €@m HâùȘ÷8—WÓ߸câÙë÷<ßÚù.£ÜfyýHÆI‘Í2¹ìË&-ór_ųìê‚ùüÀÜù÷ØÑØ!`þurê2îïËQÒ>”!°fùÅ·¯î[Ü™*šƒ%…òò´¶ŒÝm-ºZû†×§µ}—,”þ‘x¶õHW@®Ég[Gû^§ëlZ¼fF>ïrLÍêÞ‹WÊûÿ?ã¼Þhu™|¾åw)ǧʅbŸžnRÊ(ï‘xŽã!$f@ >$Ÿãs¬ˆ°O@†×IP±MrÈ^+óùâÕÚ:8n¡uáétñuJ›Þ‰ÊX°¾ÞèÔç,ˆ#ö¸>»»TlÓ½·îÈ7íù@:K¥ HÝjA'ö›ÑÓ³§qÔÀs+.yT¦ãþÔî# ûËpáv™ÊóÒ}otULI,ŒÅlÚfŽ4x'æ?íõ)&Á&¾ ì¶ðœY’h³cÆ!íÝ 9ù‹ÜÎÀû{ôI {zÐAoy_Ú¸B imî¢?­í]|V±ÞÙWn»t¶œ¹^wC  Ú†ŒZ'ŸmHÜo^óºYÛ·øÞí3ª­–ý@˜J€i·§b; €À„é=¯M°{í5}¡êjž*Ìõ'wmTÆ´gr=ß–É$­œÞZî:ü>¹÷ó¢¹]ÏNÕŸ¸mÏçSód„ýtkâvÕGTsó¨5ñˆUù}Ÿ¿#óÌ^^²%Òu#ÓŠÞ…A7Z…C0 PÛî¹\:»ü€… 3…ÂÌ·Éœ²säù)òø'Ë‘ï×I¢mEýô«ž\²dldgå-;JÛÂq]sžLÛ`UtŽûŒUñøLݖ¨©K{Óè[°¸6\ÔŽƒqÏ0ÊÙ#œÆJoexÆt. ×ú%n”ÿ.õ3ÚÏܳÞvª2Z>ÛÌÛeÝKåaË"ר«»å³íZI:¯\Þt³Z²¤8\Ÿ-! €@-|®…£L@€¹ß³L‡PíVû¬ž¦æ«Ó&ñü¢Öµ6r6òé\÷óÒ㯼h{ô+êåÞÏ“0>}(þF ô]rRØßJ+¯mi¾­óæÊwgÏÄ Ì>D庽éYOˆ²¯Z¥Ž’öoŒ2ÚF¶%sûEÂ{¨½:ÎÛWÝ“ŒkÞ íÇȪ×Êc¦·-„e½´q§<îÐÆÜ¢ŠîoW¯¼,qí…àYër—È…,A ¬»æªMÒ†w Kˆkr—þ&Äæhª ÍË®X»Y©ŸIÞCíÕþþCõhñD£Ù’Œö>×¼‹@úPæI2ß!÷ ¿S>Û~?êoÞ°ü² ^\, €D)@ò9J}ÚFb.àj}¤Œ¸ÛâívåO[XÑ(…BkçW%=]R¡‹ìë¸ù êíýŠjk“¿…“±xSn úKzStÝbâ’û–Ø&, -£tL¤Ég£Llo‰°ÝAÖô\è}ÿò¦ãöcËž-gî¯uê`Ñz°|·ßv“GjlŸýãÝcÚxŸi›$¹¼A.ØzVþF9êiãª¿É €‡Gê†öá/Ú• €X @òÙ‚ƒ@ €@\£–?œbµÈ}šþ'ß²ð¦j‚–ô%}€üÁxn5õ°ïî™Ôèûä¯ÔPw$UòΩò‡öD'›CINŠ_9ÔÖõH¨ÒX,ä—»µ‘wˆy½¾*Âæi(Y`mÿOIaïñ›Rv:ø©¤éY#Óˆ—Rž2 €„* Ó\?§ÔߤMïáÝ#zÊeï…jZ­VóÙ6%@b"@ò9&Š0@$ñ|°qMÓíƒ{|y’í%o*ä‹ÈdR¯”ÞZòN!4F'Í$&ù, ̵äSTîÿ†pi"Ž«ï‰8÷,ŠÆ¶ûª&àÈÒ°A`Û=¥m…@ðE`õ’mñ¥"*A@ÀÇ’8@ žqJnŒ¤´~Ÿjnõ…º««˜Jß)uýÝ—ú|ªDÆZ‘î_r¢OÕE[Í¢E2¸^͉6ˆ´Þ?Ôºàá<ã&ÔÓÿ"›£¾nb?•Íf& “M € € € €ø.@òÙwR*DjD ·w†ôÔ»'_,AûÕ--÷úì–9]«•vß%uý¬·Úº´›òF?Ç~É{ôléÄ^6tÄý]â †˜´¶J¤:Ú¦†º8] 5í#€ € € €ø @òÙDª@jQ Ñ)¾2Fý~t°qãWƒˆWîý{ÞèËT޾ŧM§Zyån¾ÕYEî["kz§†õƒ…y¿ÞiO˜Zàž©‹[ÂuÉç`‰©@@@@`’Ï»€ð@ 4׸±¹ß³Ö꣪ù¬Bi=+¿T¡i–w/à»Êß3°=2 ņÓ«=¼ŠO ¯©ÉZrO¶•mŒ' ³-Ü7Þú0×É…1qºH(LÚB@@@H€äs@°T‹$^@ëXŒ¨“{ ß0ØÒ¹"Ðã!÷‘ÖÚ9GÚ°fúm£ÌYö9èÊå~ÏÒăn¦„úGwÚ%”£; ¸&úi·å¶±xŸÞ Ž' € € € €± ùëÃGð €@”z¿([/±m£ç“%–­ªØ`KûíRÁ…UUâïÎ'Ô¯\ÛÄSãqǼF8öð—¤üÚdäè¯ÚÚž+Oö¨y£Þ@} D€ € € € PK$ŸkéhÓW@ÀO­öõ³º@ê2úª¹íwR÷8•N›Vü/Y½~œM‘¬ÒE÷]‘4ìC£Æuí˜rÛ¨%>t‡*jP@×™¿ZÐí—X! € € € €ÔÉç:ØtðWÀìïo}¾×f\3úEßk¤ÂM§u­SÊ|u’"aoŠí}ŸeÚðÃÆ§=wúôâ²qÖ³ )òïèxJ v¯ù)ØZà€ËQ @@@@_H>ûÂH% €@ µå½Îµu=vŒù¼ûÿ¤ÍgÃnw¼öä~×GL_ž}õxÛb°.ú‘ÏZýaë1Ð"Dû´6Z먧ÞÞ[#o, € € € €„#@ò9gZA’(`õÈç”1_޽«+¯ŒþV$mÓh]*»©·ÓË–$]‰|ZwcÔŠqHY…@É®1O”\8˜‚u}}L½Œ-µ"€ € € €Œ#@òyV!€L.0sÙ²™R"=y©è¶JÒðÚ-óü%ªò&u´½1ªöwl×(Õµãó8ü¬§™ãlˆS¾$ýÒ†8ˆ!¾ŽÒÑÏ‚àmŸ¥"¾˜È@@@@^$@òùE$¬@˜J`pš‰|Têd1Ê,³ßžl{àÛÚÚ6+¥ÞNi ÚпìØÒŠZRÊ56Ä»vðö{î´D„0b* <yèNô³Dn@ € € € €¡ |š†@ä¤Tq{{£š×~CÔñ3êÝûYrOÑ/ƘÑGQFZÏ.£tPEW©E‹Ü *§Þšˆ<ù\,š½kF›Ž"€ € € €D.@ò9òC@ €@ü´[·»µQks‘Ò:ò¤oa^×ßÄh¥Nf¾q”… [×Ê|Úmy­*!ZŠ 0¹€q#Ÿv[Þí}¿ž\­ € € € €1 ùÃFÈ €@ÔƱ6™1\g¦_µÏööµÑmÿ9âÿ«_ÑshÄ1”Ô|}÷ÁFéÝJ*`!mÌﬞªkEÀè§¢îª\ÎùïSÔ´ € € € žÉçð¬i HŒ€v­M>÷nnm]c ôà~«½‘ÏÏÛãÆcô³cTäSnke6 Üqï½67bˆ·@*¥7FÝÅÏÈç¨í#€ € € €5$@ò¹†6]Eü0ÚÎd†Œ4¾Ê¯>úRÏìóG”6¶ÄÔæKŸ‚®ÄQ‘O¹­”¾•û=} k£þâ¨yòÙÖ÷ëÚxÐK@@@@ öH>×Þ1§Ç €@ÕZ©™UWâëëÒ×ú_m•5º:[e ~í~BcoïKýª,°zŒ>:°ºK¬Øu{‰E)†À¤éÆáM“a##ŸC@¦ @@@@|þ? €”*`ãH:Iˆ/Wsæ •Ú‡°Êå[;n‘¶ž«½IÚÑÆmd»-›ŽŒ<G“|Žü $#€õ'wE?òYY{›„ddz € € € °“Éç8x‚ PŠ€LoÝXJ¹PËhI>Û¸hw¨ôB“@¬N>7®Èî#N{Gme”!ùõAHVû‘& µÒ Éâ¤7 € € € €6 |¶ùè €@©ƒƒÅëK-z9ǵeêí“ÕªKÓ¡÷¿ÄG]}T‰Eƒ,¶¾ÐÒùh PwÍ Dš|®9m:Œ € € € ©ÉçHùiˆ§€L»=ݲÈ­ººò–ÅôpòsxSoÛÐÌ4lžÙüÀ,ûÁ1©È“Ï2};£ž-{]$ ™t Ê…i·£Ô§m@@@@ ÖH>×Ú§¿ €€/®eÓ¸šë|éV•hÓdõ¥Ömtqn©eÃ.'3”v›»¶g Éç]Mx^µÀpÕ5TU–k*X@@@@G€äs8δ‚  €«Ô/¬Þ—ªëôûRQÕ•è–ª«¨zt@U—^­Vw—^˜’”$0XR) !€ € € € ’Ï 8ˆt]À¨TèmNÜà“C­ žx³[ …ÑßI$ë-ˆæåMý=GXÇÎ!¬ZU'+ßyeøÏ×Ü~«´ˆ@ MÖNå € € € €ì @òy ~D(U@Ï(µdàå´¾)ð6üh ««(Õ\ãGUÕÖ!X7õvÓÀúä_QßK|t`ÿµ÷WëËþì" “3Dºxv° € € € € ŠÉçP˜i@ (­Üx$Ÿ=­sA9”U¯1ÖM½]tÝÈï÷¬µ~HÍ>¤,K #0µÀèÔE( € € € €@2H>'ã8Ò @ T¹7ï@¨ NÒ˜6Îï'ÙlÕ¦ú}­dC"ê3zzö´ G;GE1枨c ýD D;¢_+yËfA@@@@ ’Ïá8Ó  (­-£C M{ü%.¸ÚÛ7ÈðgïÞÏQ/ÎH™u;·o"ù,:î÷¼óAáYŒÚ˜„nÐ@@@@x|ŽÇq"J@ñîRÍÍ6Œ$?ºñÖµb¼Õa¯ÓZµ†Ýæí=ÅöÀ7;Ê|\¹ÐéZì5}F@@@¨M’ϵyÜé5 P¥€3Te¾ìn´ºÓ—ŠB¬¤èŽ® ±¹ ›’™xOU·]0mÂ!n˜¹lÙLi·)Wë»ÇÝÀJª0$Ÿ«òcg@@@@8 |ŽÓÑ"V@ÀmTÞ†P´Ñ÷ÙG91 Ïïòb~¼œ}‚(k”Þ-ý̬“‚¨»Ü: )ù¨g‰y pÛ=•;å°_@o²?F"D@@@HŠÉç¤IúÔ €ëªûãÙmÓoCÜZ9ó­ˆC»ÇXÇ}jÑ"ׂ8!y3¢í’áuí u@@@@ ¦H>×Ôᦳ €€?F›jª®gš‰eòYk}Mu=÷mïNedòòˆ­tä#Ÿû=Gü:Hpó»GÙ7¹¿ûp”íÓ6 € € € €@m |®­ãMo@_dÚí¾TT]%#ùwtÛð~5í#€ € € €„$@ò9$hšA%ઢýYmA ‡ ¡¾ŠwöuGÓékueVÖ4°þ0Ù¥¾ÌÝ|/ž*ÖÝã{¥TXóÅ¢ŠtÊmïÈÌú$Ÿkþ• € € € žÉçð¬i HŽ€v#¿O°RzK¬A‹uý–Äÿò†þeÇF˨‰~ÊméûsmmÏEe@»ÉH¥ê,H>»$Ÿ“û£g € € € €€u$Ÿ­;$„Ä@@kׂ(m}]1Ã`[ÛÓ2×ómWàãŽÆ¸ïò±º²ªÒÊ}}Y;PX¦Ü¾3€j©ïÎ{GÍÀ´ÛQÚG@@@jK€äsmoz‹ø#`L<ïµìOï}«Å8¶L½­Þ­²Ù”o+«"ý†²ŠPXîNò9Wª£÷‹ÚÁhµ!êh@@@@ vH>×ᦧ €€ŸŒ:6i?;E])íä¢hwœ6÷­Ïè·³>ØU·]0M8&ØFJ¨ÝÑ$ŸK`¢H%&òä³cÔºJ"g@@@@* ù\‰û €Ø|nŒûa˜Ûî%=ÿnC?åœv Oïå%žëÃnw×öŠÆ%ù¼+ Ï}p•ÙÇ—Šª¨DfXx¾ŠÝÙ@@@@²H>—ÅEa@1­ë¢—Ð3£ÁôR?jñ¡ŽùM==/ñ¡žrª8®œÂ•λT7Õ"p@äZ?y € € € € P3$ŸkæPÓQ@ q{&¢GÆ,±¤ÓŠÓܳCE«Èï÷,ý½GuuY0’?Ty I@+µoHMMØLþ%kž›p#@@@@ðYÀ‚‘k>÷ˆê@0Fe$©õÒд2»÷–9]«£¤šöó­·dú{ž:¬¦öÕV«V}S57úSßäµ¥þyò¡lýS(­Ðˆ/+²û˜bJ~W´ÜKÙ쯴ÚW^GÞ…(³ä=iOù¹A~n”õ»+#ÿnÖ=³­qï"ƒÍ»üœ—÷³ Z«FËÿ®Ú u¯QÚZbYŠù$0sÙ²™CÓÌ[åýãíR¥÷8d,¿¼uÀ±O­„ZÍ ií¹˜â„­Ér-=ÜèMñýT¨QŒÓ˜£tä1Œ«@@@@, 3§² € P€1­`/_w‘±WúZaT•ySo›à§º.µ{2Zò‹jÑ¢à¾#˜± Éç[J5¡\u™åËÌä–~¸!×}ýP»ZÏÝRãåqHu5[»wJ"‹üb™ü1k… @@@@ ‘Œ|Näa¥S €@ðÚ55NÔSʪÂïi8-8ÆüÌÕúÓá´6e+G¥=ꌂRWLY²‚+—í*õÒ võuhÿ)Û}ñ·²Ýûû÷q‡ºäRƒ3”*¾É›>;¾ƒ›ýµ «6ýpXmÑ € € € €ž@p£šðEH´@}ƒkÃtů t„nˆGp mÁÝr‡Ö;ClrÒ¦$MøÕÛëM'ìûb\·Ã÷J+©û=W¢6ù>2ª=ÝßÝ,÷A^:l†ž•ÄóOdI<³D!à]$E»´‰ € € € P»$Ÿk÷ØÓs@ *õ'wm” ÖVUIõ;7Ö¿þèWT_%5h}¹%‘xaìŸqŠ_"õÜD½eÖY, ÿTæ>ŸH ›mÊäz>*÷‚¿O&‘ÿµë”Çô‰Š³>iNý#á´D+ € € € €l ùÌ+@ È©bñÈj:`Ó¾)§x•Ä3bOLæ£éÝ'ùO}oöU2Yû~ÖYa]·ª®®-îËnÛfär{É}œe2©Çeäþ÷dub¦ÂOÀA^¿±¥e}úA@@@@b$@ò9F‹P@ "ŸÒÕ5ê( ]* iËœ®Õ²ãòŠvf'­]u…wï^¿ªOéÔ™~ÕUM=Zkot.K…»]›%#¿1ª†“û8Aª™UaU씀Q‘¿?Õ5êE@@@°W ÎÞЈ @ÀvÁú°$ž"]$‰˜˜‘ϤQîZ9 #Eݹñ—˽{ªŒiUZ&T®fY´È‘{ŸQM~íë*s£_uÕT=Ùl&ÝúÄȈú”¼Zw¯©¾Ç­³Z=·‰@@@@ þŒ|Žÿ1¤ €@dFë»#k|{ÃZÍÞþcþ/´,ðFäÚ–4š›é_ö•j}Ó³|«Ôñ²jëñaÿ‚Üïùfê©©*ä~Îï”鵑KþW:NâÙò£/züÅò @@@@ $ŸxPé –€kÜ{ÂjkÂvŒ:¨±·÷¥nÛot±V?¶/ló¹·ï¹ÕÄ%=;¯šýýÚW†oÿFî÷œ÷«¾¤×3}yöÕ™\÷¯eôûÏ¥¯û%½¿IéŸcLôïÏIÁ¤ € € € €% |.™Š‚ €» Ý~¯wOÑÁ]ׇýܤFßv›A¶—wò—Hý›ƒl£’º%i{A:×óžJöÍä²Þˆçù•ìë÷>Z«ký®3‘õÝvÁ4¹à`Q*•ºKúלÈ>&¸S®cÁÌ ö¥k € € € €ã |ß…µ €¥,ZäJ±È§v5FŸPJ¸±)3çŒMJi/mÛâhe®¨,íü»tfš r‹ÅklˆÃæšú{ŽÈ<³×䂃/Hœu6ÇJl/ßÓM…¹¿x k@@@@V€äs°¾Ôž,B²ºCoðG@+mÁÔ®&Q#Ÿ½#c´ù¾üç%÷m[¼ô•é\÷gK ,ÝßýJI¦°Ôò—{d¨­ëÁ€Ûˆoõr%G&·ôcEcn—NߎÔvä2wÿݵ-@ï@@@@¢ ù•<íN%`Ýt³ð–©‚f;µ( IR ’Ïê8•ͦ’ä_hé|Tú³ÄÖ>i¥¾"÷þ¹¸7M£Üëù[RÆŠQÏ’_6U¼µº}ë³»gú{ºÅè»b0½VÑo­H>'â@Ò @@@@ ~$ŸãwÌj%âç,ìè3ÆDHD.`\}GäA(Õ”ÉLKÜ(MGé¯Z`;YïÌdRw¤sKÞ2Q!IPŸ.Û¬¸×ó¶I>s°W,;¦PHýY6µ³™U1Ð.Éç˜2ÂE@@@#@ò91‡2qyÀ¶ÉÔÂÙñ `ƒ@¡~ËmGäÓCå¾Í?chí¸Kê[ágÔu°VÎ*I2/m\±üÈ럞[z˜LÑ}áŽë"þù™üíwßq Ö5ß[Úêºî͘LÎ’­þ”ˆ~Ð @@@@Ø |ŽÝ!«•€}'Mµ!aQ+/?úYžÀ©gÈ‘O½-ˆ$.ù¼õ@8_*ï€DVºÓu‹wKúÞý ú»ÏK)}ƒÜ{v·È"Úµa£–ªE‹"¿Pb×°¢|žéïþˆ£åCC”qж¯ƒƒM³˜vÛWR*C@@@(U€äs©R” U ¥_…Ú` ûb*!lРЀ1Ê‚‹3ÌÕªKÓ¡t8ÄFò­í·JsKCl²Ú¦ÞàÝZ^HEûW[™ÏûÿÌçúâ[1:Ó×ýeÔ÷¥|Œï‘/ò?©ææÑñ6°@@@@ 8Ù´0õW$°¥¥ã^I^Ü_ÑÎìdîšÓþ×@ª¦R’  õ-èF&½¥éx âð=QüY©tÄ÷Šk«ÂGóó:mxF¯.‰çt÷”V>"@À‚‹èU"€ € € €ÄB€äs,Sm)çÆ/±¨ç‹-Š…P°NÀÕÊŠ¤ž£So·LJ€†ÚºQÊü؇ªj¶ ¹ éªšíüŽÏfS™þžËešú츚Ÿ“# ÷YÿCrzCO@@@@â&@ò9nG¬†âMgF/’în´ ËkóªÞ¦D¸$„€ÀÎÃsÛ5‘ÿ¾cZvŽ,9Ïò©ÂKožMNBí‰ë:Š‹ˆ¼©¶3©ËEþ½¡êÓX¨Úq­¸(ÔNÓ € € € €€5$Ÿ­9²«Àú“»$‘e¾¶ëúðŸë/©ÖÖÁðÛ¥Eb$ µÜâ׊ÑÏGgrÙ—ÅH®ôP眱Iiý‰Òw ä+ s;ßáyMþ(#ž½û;¿§&;_+Öê±¹]\¤R+Ç›~"€ € € € |¶ð Ò ù}×~Kk}ß kÂþÉÜ™oÚãGa·J{ÄQ@}ƒ qkU×jCAÄoé¸Z¦K¾.ˆº“\§ãèšoèïù¢ã'ù8Ó7¥´Q«p@@@@@ J’ÏQêÓöÔ³ÏÑÚy§,L]Ø÷E¥Þ¥š›G}¯™ H €v´IW™Ä&Ÿ½—I™sä¿È§8ËKXîõ|ÿÀœö_Æ%Þ âlÈõ|@¦¤ÿ|uS§]®6¿¶+"¢A@@@¨5’ϵvÄcØß¹óï‘©fÏ 9tWÚ[v@gbÁ–?6Ú¼WJ O\ªê-!÷ÎÁÖŽ‹ª®‰ ¨IK¦|uÝ…IçO§‹çJIz?«ëŸù¦êê ò3£ºð‚Ü[Fÿ;J÷I{Ù uÛ# #Ü™rÛžÃA$ € € € €@Í |®ÙCÏŽZ\)÷€~£Dÿ×zð€ã¤^/#ž—P7U"PEíØ1å«Ö-{\ŸÝ=ÉèëOîÚè8Ž—d/$¹ŸUôíÉ|ÞýqûÇz×L&õéÀa±îÁ—% #Ÿo(k #€ € € € €ÉçP©2XÁ–öÛóùâ‘r’õËÒ’I—£Õçó©Ì1c÷—6|jG ÑÃ-÷KŸ² “ÓóCÎ| â4„¹íwÊŒ´‘˜V.Ÿ_”QÏù˜†_UØ ¹noTü{ªª„ã&Pœ¦Ó¿‰[ÐÄ‹ € € € <’ÏÉ;¦µÑ#I( ¶v~¾NM?PõéôÓtüI­õ—¤Žƒ -_Vsæ UP» €À.r1Gÿ.«¢yjô»¢i8ÜVeFˆË•Q_·Uë[{`°iÖeÖG@€M}K_c”úAUÇ¥ÊQ ô9y<.‡åq—‡©M[á tßœh>« ú—^¯Œn‹ÃužÄüä³ÝÚ:˜¾>ÛZȧnÄØì¨í#j]ÊýpDmGÚlSÏEc>iþ4>,ßšWÉL&½®ë^[˜×õ7ª­®– íí¤†[·=Æ*“/ø½òü±'‘þ£jíô¦gA@@@@ ríSG €$G@’GVL+#Èä–½>9²“÷dýÉ]SuÅ9âïä%ºÕ˜ó¶Ìéòîã[[‹1ZÏI§§Ç·ãú&­Õùõ£ÎK ­§ ¶,ø±-‰çñLWd÷‘õsÇÛÁ:+Þo#è7M"€ € € €X(ÀÈg  !!€qH§­pQÉÊ܈£Ü÷KވŚX¼äkÓÊì[‹Eç:áu:•(2æ-èŽ2†¨ÚN¯è>KŽõñQµ_E»yy‡¸´8Züáðü®û¼z¼ùúã°¸®ó>‰3eC¬réSnÛp ˆ@@@@`L€ä3/@ßÚÚž“)iÿ(Ÿà{åeV(ÙïwªlörŸØ-eîÛâ^zë³o)R’€VÉùmÔm…›?ÛVEà»÷÷ï1l†¾VEQì: ¿—ßI©éßÛÜÒº&ŠªjSFš«þžsªªÃ¿WÍïý«Žš@òä‚·½ÝѺ7*m^+B$ƒ$5(Yò¨—GFÛ—ÍòÈ|<'eŸ}ž–{Ö?ê¸ún·¨ï*ÌŸÿ¸ÒÚ»x‘@@@ Æ$Ÿc|ð°Z@«Ÿ+}òYŒšÒéÔé¥[íåspÞÜ’t[:ãdµÒïð¹z›ª{Z¹©åÝk¼—a3üéöÞ1ézQ)ó“TÊýbœ§G¯ï[öv娃-1ÿ…\X#®, €@H‹9éÙG¾YÓ) äSŠEuˆ$‘·5¾ýÿ c™ám‘R’˜6‡{?H"ZÙ_וéïY¯ú—þVÖßP,º¿Þ>+Æ„µ±@@@ÀJ’ÏV‚Bâ/àèâפ¾+=q¢îÜKö#CM%ŸÇÌe´w!›mÍ4¤¾/'r?õqð»}­Ì&­œ9óç?áwÝq¨/Ý—}…œ²Ëqý½£ô‡Z;íd1:Ž+£ì½t‰ ‹þ… QÔ€@6Û”I×½_9æ£òâ €Þ÷Lt›h¶¥R)•Éõ<èÝžaZÝèE›NëZWÊt;V^¹[¦˜–ïœz¾x„<å±^¾ ÝîuuaƬËUsó¨Á'3ªLÿÒåÛÞ/“ÙÁ{%Y_>ØÚñ¾‹S @Bˆ&}LÌI!/ñluÊ@kGì“™•¾ö´N}YöVéþ!í7$ òOåóÅ“’p¬êsK‘ߥ¹!ÙMÕÌù–ö›§*Äv@ *\®!Ý·ôó™Lê1áüí­‰çªj,cgó*eÌ×FFRoÈuEn)²{;S|hèëiË3È÷Ÿ¯Juo‡—xö–=dò‚·ËE¾7lYwwc®çè­«ù@@ F£q@’+`Œù¹-½“?aK,QÄ‘oíø¾œ4:IÚŽý(a/ñìg^~î‚[¢°´¡ÍÆËŽ‘8ÞmC,“Äð7óÆ|ë‚ÿKÊÔÐrÕæ‡¥¿Ò- m~Á½Q-8„€@‚2}Kß•QÃj­¿(ÝÜ3®6J’ë³…BꙚ»#Â8hšÈäºß-Óâ÷H§'½Å‹ü~n”ûÛ†Kg×E@˜P€‘ÏÒ°@ Zz§Þ;Y1\m=>íßRß›µå>­>u©¼j$ý‡iÓŠ^Ò2WÞžV•~V;©7æuüƪ¨BÆuÝÿ’&íH‚ŽÛwý«éºþØÁÖÎ?»9Ž+eÊI!?ۖеJ]mK,ÄɘÑÓ³§$–É.?“ž`Qïö‘‘ÐÝ2›ÍOT6;Ý¢¸Ä lÉ|©t¬¤ó†rçöÝŒ«—Ï\¶lfâ0è € €@Ù%}‰,»Vv@@@6¶´¬—)w¯³C;:õQKb‰, ùÖÎyƨ³¼CY •5üg™jûø¹íwV¶{2öš¾<ûj鉵#¿äÞk—ä÷]ýŽ­¿ÿÉ0÷z!÷:$)Þcýa§?iKŸdzË+l‰…8@ 9Þ½]•«WIöµ¿WæÄá‘ÔošVf'Øþ~!ö ¤û²¯ ˆßVIdòå<™™ Uɾìƒ € ’ÏÉ9–ô°R ŸÊ,—ÀÖY\£\ÿqKb‰<ŒÁ¶¶§et‡ëêSäDѽ‘4~ëdŠÍƒ­çÈ}ƒó㩵™•Ýeΰ³Çú{ùyŸHâ}ˆ2ug‹ù>–¸»Z/µ$Â@„4ä–Îßvo×L\º$WaQ,:שÞÞq‰™8ˆƒ€ã¤N®"Î=꣪؟]@@ @ò9‘. €V Ì™3$ƒ4jKŒ’dý8£Ÿw>Cmךf½V¦±ü€lybç­Ñ=““ÊW¤Fôáùy º£‹Â®–uQ}H"²o4‰ÑWæ[Ú?a—–OѬZU' ›¦¼&ßÚõ”O½£@@¥ûzÞ,÷kõî#Ãóú˜LjôkFðS@ï_UmÚ©nÿªgg@@bøÇ¥ lÄ€ PŽ@J«‹Ë)pÙÝ ©â¿ÜFüªonœ×yA>_SZáPJ=—ßwM(-Ñ$_@ÞãŒSôF<ûñÙâÍœòS¹OìGmN+jýjÇ­Û§~ÔÙÃ{8Nq_×-â*÷T™çcRögòX-ÊczòMOÙÐÞ¾¡òJØ^,`ª›aŸÕíÿâ€Xƒ € 3º˜ÅK¸ €1Ñ´‹µV'Xþž™Œóa¹0Ó4Nt@-r”ºV6_»ÇõÙ݇ u]®2óe*ì·ÊºôD»U°þ1û 5êü,?¾wâšemœsä¤þ[#Y=* „Ó7·¶®‰¤õM¿îÈ3Eüðš*± }…š}þH‰…)†L*ÐpìQçÈmNœ´ÐäGä»ÝUr¯èŸäçtÞºë \•ôˆTyÝXµrÅYzÅÒ7ÉçÛäùByL[_Ú??ÎܨygK+N)(U è8¿rŠn©Åw-·vpȽ{וYr×FÙpÑØcÕ¥éôJ…â@IDAT–¦ã•Ñÿ,#È•uGÊã y”òBòÙê9Ñý'¹­äRÎèus»ž•u,SÔ¯\öOªèV“ ˜¢…J6›ÿ–QêÖÌhPI&Ý'›.I•E“– y£ëXu ƒ{Os à«ÀÊ+w3EóÕŠëÔ:kFô§óííUQ‡)(u“ìSzÙ²ÿÔÓÌW”1>£Õç -_žªÛ@ 2¡9íÍäz~%=¾­ÜäBÕ eF. )®Ìòùiƒï™98£œ vÊlá…â…:3W+så k&ÿIÝ:½¨7y)¶n¨«›à:'ê§@¨\ ”Å•×Ξ €l8õÌÓßý3mÔùÛWEüÿžÃ)÷“÷ ,ç@4ŸUÅ7Ê.Þcë²jU]zÆôôâKuÑÙ[F@M3JÏp”»I K¢zµ2uO ¶µ=½}þ/O UtÿŪ1ÏJÝ’Ï»ÿW^/âU:“©“‘xæå¶D-³G\;4·ã![â!ˆ·@¦˜ö¾íYA/ò2Âùì|KÇÕì;á.…­Iìw7ö/½Ü52˃R/§°l2ï/´,¸dœm¬BÀjLÿÒåò¸­” ÇyíÀÜö;K)T¹Gß¿ËØç[¥þée´ñÔôQçƒeì@Ñ äoë°î7Ð[: Û•¨«‹[6´/ +¼’㢠 €„+@ò9\oZCjZÀUú{)elI>Ëùõo ½½?$)Zå˲¹yTÒI-ÞƒÅo™–Ôô÷œéwµUÔ7Z,ÏNô¨–±{«.LI¥ô÷ª8f슼 ͦ¶Ýwù…u¥ý$3˜è“%ñü‡ÒŠ—_j eÁ/Wd.º©ë%ÕqÄ5äe6Š…ù–+vXÇ À@kÇ]™\÷YRýOå!¹èÉ»IJÍgV©ÉØŠ €ÔŠÀ”_ k‚~"€/0ÜÒq¿7z/ø–Jn!í:£_,¹4ˆ@ ae·7½¹5#p•6ßžßu_¡5™Î¤>.7ê.´viè9í¿ÜeO@ŠêëëÞ*;î_îÎroæ…ùÖàÏÛãñnÉQ¯ëO’çwm[·F’Þolé$ñ¼‰ÿA@n¯"³VéijõdÍÉ…"÷kåœ48wÁm“•c € €@í|®cMO@+RŽù®l BN–œ5½¿çp›b"v0E½`Ççÿül¾8íKÇhó2Â~ò¾ð™@)³r¹]Ádš[Ëf^/³GkR)szùÁ˜ïÎk¿¦üý*ÛccKËz3êÌ—½ÿìºÅ7…‘ô®,RöB Ùƒó:zó©üÁr+’ÏJOo‘‡Ì€0¶¬—ïK7È…Åç6Í:Ê)½m=ÿ!€ €  ˜v› €@¨s;¯kX±ì>cÌ«CmxâÆ$n¾)›çN\„-D( •5ÉgI~YµµmŽP#ð¦3ú5i¤1ð†Jo`Ã`ýÀ奧$ 0¹€$‹Þ>y‰mݘN»ŸÏ¿hu°+ÆîmÌl.¾ Ö™Ú˜R`Λä÷ßû~ä=$-7/⢸1 þA@_€‘Ïã»°@ (ïD…Q¶~žÓÐßMò9¨cN½ 4õ-}ìüOWà1ëB«´«¶L_÷ñÑ{íŠJ-V§ž¹}”‘e¡ÄM Ý—}…Ä\î­~ºþ䮑ô•W$ì4ŠÀ¤ü^NÊÃF@@¥H>ó*@]`0?z¥4*÷ï³g‘Q@ßW«.MÛ‘  TQ«Smq©¿¦š›Gm‰Ç÷8ÆFñØuaŒôqDSßó½¯Tˆ5+à8©#Ëí¼«Ü\¹ûP@@@ vH>×î±§ç €@t]]yIdý0ºÆmù•éÍ3þ}Ü-¬D "­õi5½k³Oæ‹Wìº2IÏÓ+ºÏ”þ¼Á¦>É4—åçϦ˜ˆâ- 7?¤ÌŒ 5mùm™ûP@@@ †H>×ðÁ§ë €@”ÓGoêí-QưkÛ’èûOI@•;å®Õðr¹‘’?•U[‹ù¡êê®¶[÷ŸÑÓ³§6Ú»÷»MKѸî7l ˆX@ þró“™eöâïªù¬B™ûP@@@ †H>×ðÁ§ë €@”ÚÛ7ȽŸmýœÑ®uÓîFy˜h;B´*œ Í×GÂö¦ u#ÎEÛŸ$ñÿâtã%ž÷²ªoZg‡Úº±*&‚AØ ¥g”Ù‰çÊ,Oq@@@ ù\ã/ºD)P§§{ Ÿ(c§íù™þž…ã¬g! 8o ¹Á‰šëÞÜѱv¢q_Ÿîïn–æï³­ÅÑÑÿ±-&âAhw¤Ì^Ô•Yžâ € € €5.@ò¹Æ_tˆR`skë¥ô¢Œaܶù7 ï¸ÛX‰@Hò%ÍŠä³Ñ겺~3«.MË´„ßð-jÓ;<¿ë¾)J±([@n1PîE/-»v@@@¨i’Ï5}øé< ½€žf¾#QØv/Á—§™oG¯C5+°jUQÊ›v;êåÉÂm÷ü:ê ‚j¿aónÿ-uTý•Ö«‹ê‹•îË~ €ÀdrAQ¹3Y¨²Ù¦Éêd € € €; |ÞQƒŸ@B<­óýlÝÈCIüÙ¸¢ç´ÐAhhÚ¼öUò_£ËÕ¢E®qøB&·ìõ’„ù´ïW_áÒÁ¶wT_ 5 €ãõü8k'[å4¤§8Y¶!€ € € °£Éç5ø@ Çýš4\î4ÇêºæÂ™Ë–Í ¼!@`Q¥_·ËªHžíf#i8èF³ÙŒRæ i&tSeÖ_tÝ╹Å@’´cþZrámcÞ[î>”G@@¨]ºÚí:=G°E``n׳ ¹îoËhco \›–‡¦ïžÔï¶)(bI¾€$^«dXnĈ ù}Ä1Ò|&ãÈ/Æ]nÕ¢åþÚCm]ZÁ €@¢G§=˜qFå+—*ýCƘ…Óû{¾<ÜÒq¢0¢êŒ1ºqåò£Ý¢iÖÚ)Ãû<:H»ÉcûçÞ-iòòX-Ûÿ¦•yD+ç~íº7 Üqi›•Dn7Ò0¸öUÔÞ¬$G£^¡µ~…|V{÷— ÆT½<¼Å{ínÚöxJþR^È÷ËÊ;är²?åçt>)ëX˜X@^k™Íëf+Gý³¼ÎÓJ¬´9H^Y{ÈNÞïßö 7Êσòø»|'ØhóHÊÑ· ŒþNuum‘õ, h\‘ÝÇ-:'ÉÇ£\lQZ^Jí+ylŸ‘jD~ö^Þëã)yÿyØÕêǘ{œç÷[::Ê]Dª‰çR¿¢çPé÷©ò»s¼ôàpy ½wèg´A<ÿ¦”{·¼·ß¥{C¾µëï;”ñíÇL.û2­êæ¸Ê«:F¾å(•{¿×Ó·5âÅã}®>&¿Óå> µó›|ÓTÍÍ£ÛÊ$÷?¾{”vlùŒ(ÍiœR™åËÔ)w®QæDy=RÞ_n”ö¾ÛzËù\3öžiÔÍ…|ñ«òY:¼uSˆÿò}3Dì­MÉ1gAâ!°×¼sÉØl‹VsÖêÜ%—ÙWìâ‘û f2©G%îÿ`±¢ò…éŒBkÇUVC5!Éõ¬’÷»·DÚY­³ù–ŽÓ#!€ÆÓýÝÍrBâ×T]m•’h(¾*¨2Õ§ý÷œwÎwåœÙ³œän_›[¼Ü¶¸ˆ§öú{þbŒyu™=¿5Ÿ/žɉ¢2õ£x&×ý˜ÔóòRêÊ·v–t^%Ý¿äDÇ8g¥æH½^RµÒe½ìx\°ô³Á}Ö\£fŸï%Cb·¤Wt¿\>çy1y“t ]m'¤ž¿H}ý’$¼rKKǽÕÖ7ÑþéeËÒuîß&Úézmzó- æûƒ7ÔPë½ÞJYî’ß…cJ)zù;3©k“ïÖï–_Ö7KûÛ‰•„R”þ$uõhwÚUƒmmOWRIœöiÈ-//+5fIê5ZÞXjù(Ë5õ-}MQ;gÈñô~gó!–?ËçkJé+ s;÷¡¾ª«(õó¬”ã¶õ=¡x¶$mÏ©à{Äö¾üI¾_P¨Ë\©æÌÚ¾²¢ÿÇÎ!9çH‚û=²ÿqÕ±u¾~ÉÍ^X˜×é߈¥+¯Ÿ|÷¨ðh·[}Føú:[ui:=0ãÝÚè3…ö$y”ô8ŸÊ¤«þýïX޳.Îß7Çéθ«ä˜ÊWà’–Ð¿«1ò¹¤ãB!@À¼+Èû»¿,WÎ~?ð¶ÊlÀQîä$ÓÍ…ööÇÊÜ•âT(`ü8ùQaÛ[w““·7TU…;ïvmvÖȈò¦Û¶oÑæÇù–`FØ×Y"B(Œk~%§†ÊM>¿^.\š_ui—j>Ë•ËRЀܿ¡¡ÁyŸŒ²úˆœl?¼Ô3CSTíä:]ê;=óÌ^ëT®çÂ:5í[›[[×L±_ô›s¹†´î’ÄùyÊU'xùd2Ö79ãùym¿¦ḩåDÜdÄø7[:{e£ŸÍDïH% x#3S®ú´ŒÂ’‹)M5 çÛóFFËHO}¼qF¿Þë¹¾èªoµu\¿c!~¶XÀÙ¸e]—¼&>YTZ.˜ðõíáu2kÃëäýíË™¾¥Ëí|i µã.‹5J m÷þþ=†ÍÐg†”û¯òÚo”ÄsIûMPè8ù 8.SÌ/Rý=Ÿ”‹¯ž Ü„«½$øpû)‰âƒRhæ„KÛà½7œ.§gú»o–O‹¶vþ¹´]--Åw’ Ÿ%1_ÈA¼yÝyfËØì•ûŒ_hµ&ðÄ3ß7'Ä{÷|[œö@&È/°@D¼©bdtÃOU6»}¶ˆ"¡ÙZØãúìîÒÏr¿ÀûN3ªÜ›|¯4Ê årö‘‘Ôb á€(ïm99¾©ÎÔe¼m¬Cüp³¢Â:[3›w»I¦¶Ü¿Âýkg7ùÌI÷u¿WöÈ?’äÞ”¤A,³$qò™Q5ü¸$[¿©V^¹}zà ڪ¸Nï»ÜbgQF ?)I‡K¥¢±ÄsÅ–¶ã ÞhÍLÏí2£Lí•¥¨ï;J~²ŽkÄóÙÒ _‰ç]c—<•9EÞS¯“önm\ÑsÚ®xn‘€÷¾œë9SÏJT2«™—xl‘Ýu‡L}GC÷¥ ½½ûÖRÀ§û—ž-‰gïͧäáçïÒʘŸK’¾{Ûß¿%õDŽá{dF†‡åsõ³²Cµ‰çÛ42¿R·eú—~[ÎýlŸ®{ç26?ã»GIG‡Ïˆ’˜&,äÍ!ÈTú?”B•œ·ònŸÈÂ÷Í@X«ª”äsU|ìŒ à«€wÏ­ÿË×:ý«ìM ™ÔûW5!0¾ÀаsÈø[B]»v¸¥Ó;1“˜%³¢çcÒ™ù6vÈhý¥XŒX³˜@ lA×›Ù♲wôvÐj¶ÜõnïäoEû×ÀN™•Ý4¬èù¥$Y½™6ÂJ84H[ÿž)fù2¢Ï’å¶ ¦eúzþ£PHýUNèA¢òFm‡½¼Vô7gúº¿£$ž°§½¼)xûº¿æ8©{¤Õ…ò(iúOŸ"<ÎuÍ5’„îM÷e_áSTã“@cïÒ£äo›ä‚ÏË¥ÊWúTm)ÕÈ]ÚÔû”3r¿wAR);ØRÆ],IØå2®wñnpïÝ’¤—ψ?z÷lž´ï2šW>O~*ÇðJ)·×¤e«Û(MèOÈÅc¿ó>Ï««*¼½ùîQ‚5Ÿ% M^D>ãÞ]Ôú6)õºÉKNºu`Ò­•läûf%j¡ìCò9fA(U ?·ýRöÖRˇYNNš}ž+ÚïͶŒ«ºçrÂüÏI𢲡Ù±2£Þ7¢v ý‡dÖ‡L°Õ €€ÿ]]EùNSÍûÎ,ï䯌d½¾¡w©$öX¶ ¤sKÞ¢ŠêI6œ¼}]Èÿï+Ÿß¿cs¹’)Cn{§æúºkxvï;•6ÿ'öÜicøOd¢úxæé½nhZ™Ý;üæi1hI:Ÿi¤³VŸ–¶¢¼È`žÖ©{e:î÷Ýgê/A@F‚zÀ¸Ž$KdTk {Rdl&5¹ Ifbø…Œ¨m ¤+õ. ª3”$¬Ü+=”En9•ºq¢d¯7šQ~¿¯—Ï“3B‰fk#ÇÉçùïåök…ØfEMñÝcj6>#¦6šª„$ž½Ù®’Gzª²SlÏO±½¬Í|ß,‹+ôÂ$ŸC'§A@IÆîÉæ|DÊÈyQë-W´_5åU¹Ö…M@ñ0“_õBgŒ+Éç„,ÞÉ cܬt'Ê‘jJçÊ›õQ Ê{Så=_M“òEííÆÑ–“QËÆN|VSYö•©Uçiå\'] rDVIRrlÎL«á[ÒýÝaŽðÛ›—ìéïù´LÇø{¹/è«K 8¬BZ4ZLýzF.ù1 «ËµÐN&·ô“’t¾Iþz<È’þ6ÈtÜŽ%{{gXSÍ…1–°ìï‘{¾]cÇ߯ty#jmž†ÛK¶Êrû%óª_4¯PE³Ríú;#R†R+"ºxà@]g®µõ–Þñá»ÇÔ¯R>#¦6šª„~XÊ|}ªr%nßRb¹É‹ñ}srK¶’|¶ä@ €À ùÖö[夙7½“‹Ü[/µ4–÷²Q“˜^, õ/^îùýûK¸-ÔšüA"Ó¸ýTjÿä{ ]’‘q×¶.XYBQŠ €þ Ì9c“ŒõnGàÇ2_’®«d´í}rrê3µ8ålCnéyO_*˜v$8$™oø¹!íÍ+–éÇA.©IÈÅKå>ž_“òu%ír!ÏEŒïò!ÃÑ\6›’Æò7£þ†ToßëÍK4:£76öö¾4ˆîSçÄ ×vï+üVJ´N\*²-Ggô·ò,*¯a•­ëÜkä§ý£‰C™I/ر팹 ¢Äó¶0Ì«ä–ÞtíÖ-|÷˜âð1Pi›åBÆfùœý^i¥K*µ¹¤R“âûæd:Vm#ùlÕá @íu©âçäç ÛŸ[öÿq2íÓw,‹‰p’"`Tä÷–’/ˆ$³aŲEÒO:y¼£Æ?îýÀ‚D!oé¸ZÚõ.Ðñeùÿì `ÅõÿgV>$'! I¸¡Pî–«%…r“–Ó±ìøˆz%$„–-¥ÿ–÷ '-øq&r¶ŽØrÂY…r5œIiËUîqîX’miçÿÇ Nb[»Ò®´+}K»oÞ¼ùÌjw´oÞL\:§~ˆ©7à€|*ÔÙò/Gw9Òh(ÝÑüi¤Tõj†L3õpy{SN"Ø*TÔPç[õª0´ƒœ›_ 45•!‚´Æçx¼ Ÿ5äå‹Úöö¸cÞèÖÖT"á…8ÄÃÚ[¤äCc;;Ý[K9ƒÆWTô’dPÔ¹"J}%ÔÑÑ ±NöÙ9Nµ=\;¦!“Á—‡;˜ý{¤¡Î{D@/ºs;LdÔ“/ó!b‰·¬Óns¼i±ÿ< æØ‰ã¶Ð  "°¡2²‹³]æÙ&)q>RÍö¬}4ÌÏvÈ·ñ¥Fùkù¶!Ûúáø¨EºÏŸf«Ç½òòšžšÈÝÓOÍ$@$ž@<ž:R¯¤—´-q$"•®At×{¸/ATôÏC ›÷ "%e茲M(w&F ºÝ}MÈÞãî«®×jÙ¤eükŒÞ‰t¯ß3 yzJ¨E*°GyÒ¯_%¢l’azñépH\‰É™ßG•¼0m;Â]"Ôî D³…‚Æ=Ð=ÕýÎ+ý¤‘2ïg´ó`·Ñxÿí£R¥HÝ,DæÎ~%– ¼Ž¦Ÿ.MõYY*vÙt ôÉR çI&\éÉòQ¼2t¤¨ýûTO“gî‹J g£=ùߤüSpaË'ÀÙ;þ•ú£—ÖëæØc„Ó”÷ˆàØ;T‘ ]ŠŽfæÃ¤±˜=+¶•æxs[&^Ýã½´4^%E»H€H€rN OÞˆíç¢âCs^¹… ñãì:¬qøJ"<ý â!«&XtI.±¶ªjµKºs¢¶lAÓ§PÑí9©,³JމǓ—gV”¥H€HÀA‘ÈsakØ0Õ? Õ­upÇCúÃ…):üà•¢£õ^ÄO,,ï“÷­©­õj–;÷µ# Ù.¼ƒõqS¨ #ðf™Yº*L&µžD™9V&Ån* öÁDÌ#q2ecT¹>šñ¶o__ ο("‘TÆZ,ŒW×ÿ0ÔÑR޼ßV³{tÁa}'œ wĪêžGä4š»å¶•gGó{¯f¼. µ·£ ñ#¤Ó®Ü²TÚO(bjÇÆ1i%·H¼øâÛã=ÔVÄb¢Ä¼ËªJšÇûJ–nU­¥k*Ö÷Yô±P0dÜ€‰ÙFد‚‡ñ{,ebŽa¾Y&ÊWoþúÆKY²+úNLy”TòÄ,×ÀÝÐ`=ÛcEMÍzã÷®éXn'ØÙÚÏÀÈ•ø~^gâÖÄÔú·¶.¿•§ä#_†×Â~¹¦¦P0hÀ5ì|¶U7.v'?øÒ„¿îוǤ”ß·X}/&ÿÜ‹ëöCøûœ!Õ¥½¥hî_¥æöB™{a)ÍA_“OÐû3Øv’¦x åÆY) ŽÿÂwù~Üwž’J½.Ôû›lê5Œ e˜»Ááõi)Ô¡¯¯ÑVôn%³3²ßÍÂýèê­öçë#ÇÃç=b0ìVR\’A±‹à~ºvD‹‹a¼i…§Åè|öt÷Ð8 (rúáX´õÛø¡ÿ˜GI”â‡U Ò¨ÑSYûºGm¤Yþ#àÖë$Þ·*èE¹1­­’ÕÛ2y¨“&áÁÇ·ððCN*c%$@$†@ÏÔºWF-l;Ù4͇!jË¡–FõP‡'ô§ÐT⌞•DDô#¦Tw&bfK\Â9qCl§®Ääó¶pölIj >j燞ðg}H§×D”Ó ¼ý^™FYŸ¬h'ǯ´N7·x¸îb¬„3@Û;Üö.Ž_ɦóÐ÷½Ã ¥Û¯©×œ¦"#Q5&†bý_[“(ŽFtÝñp6ý=]=[ol4ÑIºŸ,o¡Îæ>Du[’È’õ21ÃR{íUt´œGÓ¹vÊ ’EQÑgÙÝ1ó¡­'b ñ=üäÇ«ÿ{8*Úz¨)¾‡jöeò=<k@ß çUÊss˜Ò"k'‰ÝI(ÝÈ”ôëDÂü#·­æ¹X4åp]½kÝßZØÖ€¿Ú9¹‹ÅÒð—Š_à^x,\ÿœÕ2.ÉI£w-¾@W••¦®]wZdÕ0²úºø^Ãëwß™kñ9nù‘vï4ÒÁþcR6Rþº{jí #Èj›ôïÛgðºu\[Û¸ÞRõ}ôû¥ølÏ/¢Ä÷0‰ëÚ­¯Ðãå­hƺxpüT,µ Qß[ŸÆ„”Gñ]c»ÿ‰2ñnYÜ迦öF¹i¤>‰‰!ŸÁ0èD,è´$RðãMK¼-dï"ëí¶Ð:  $€ÁÄãÁhói^å³åÛ#Zçø›>¿úäˆ#3øòÙÖí n?øO×ÈÓ xöø¢EåI3ÞŽ>ˆRñìÖ 7D=k #(JúÁí¨… NÀúÀ÷À®9‚P‚§U'!â$dº¹^u´Ü‰úÿÔ;-òrŽêÏQ5ò1išÄjžÏ´Â Õ ÿBÙïã¡ù/{JS?†óB|¶ý<1Å?ÃDƒEiÔgjæÇ彜Pê|8 Ãoí(LAðêxY÷åâÔ³º?.”Ý»XU}ê;m|š, Sžy{ÎçìLeé àÜ= “dþ”Iq8ø2”ºpà»”‰ Ñ®{/þ2©z ¯á·ðÙ°©¬>mþv<ÜpÍr@ÅÂæÉÊWŒ ²í!)þ¡ÌÔ™‰êˆždý†ë<-ó1öá¾R¥3œjQi÷Âëà´>f¨Ìu¸-5ŒÔìî©‘úCœ-ÖÖÿil<14ù +qߺÈb1+b+°4ÃYÝSëî³"ãñ­øÆ¼Gäü”ìÒ×.Ã,¹%VS³MÃV#ô3¦'ñºÞQ+9Þt§Êì’ܰ:I€H€H`D‰@âR¼3¢P~Г(iÂ,زüšÁÚ}O ½=ÝŒó\4q›¹¨4ë:j/d&n‡ãÙvú̬붨Ïë°nÜw-ŠSŒH€rJ {ê´¥¸F}×Ñ|8â*<;ü+mYXÑÞü™œ6ÞÊzàxýf¼ªö„lσMÓÍãU — M:Ršf´Þq‰©ÌÜ8½ôÁ¸ùMØ÷ 6 "N×ßIÇó&ý‰ªú7Us >¯Ü´/ý_³V,^lÛ‘Ÿ^/%%°ä¦Ò”iÞå6õÆ”Tg#ªôälσë\w!Ýçw¥¡ŽÄ~åis“W–·7íc³Ň#ÐØh(SބÖ¿Çp˜Ì‰ïÔ5Å1Çó ÛÖ×Õ­LŒÞ¾ Žä¦A»Ó½=*ØÙöÕtBù8'ú/ãUu5ÚñœQýÈûÖŸ6ë>rb{ÕŽÎÄñ<¸òx¸ö™”P'bŸû…i|e°¾/αï9>Õ5Á`jŸD¸þgC9žsj Ç›9Åm·2:Ÿí£< @î Tž±$õÃ+ÏnXCèDíÌÃŒeü>ãF™@þ¾ŠÌJ:W ß5šÌw[¨³í·øþE¼m¸qiì´úåÞ¶‘Ö‘ 3}Š?·t "”túÒÞ|°À@ªRò¹P´¥5mÚ#68Pg—”Æ1±pÝnD²u×4¼''ÃÎ…¶mÅ$­PGs½ír™À:ñxê,½Žøyx(²éÈ×6í€Æd¯V+PBnZ¿J³äæa¡å/Âµá ›&¾òÈDUßm–³$›Ú°¤<Ù¿¶íbK>*ÇDg£¿>Ö]tï*&< þ¬†ß‡É¹[/`£|zÑ)S’ñXòLDÇÿ#½ðF \·.óÚ³¬ýsLÜø‰÷±„šØMšŒ0!M¼6xg¦ï{à ÿAö•³í”Çò'ۑϱlÑŽ=xÈÙ™ǵªÙ;.ðTæGŽ7svØ­ˆÎg»Ä(O$@$H¥§®Ý•—Ê­WúµÐ–?X§$ lI¡-÷äþæOlÈ}­ÙÕXmÅš’J;J¼¼={ö¥›½l m# ~:J©ºîJÓc}æöÞåwàðDÕå<*|SëãFè:¼gÓg ¥è“u‰ ÿ¶ÀA;âm87­h¤Œ#ÖŠ¾ùºM]—æsÜ‹%{?´aó Áަ½lÈSt€€¡„å‰Þ˜îNºf˽aF­ŠJ%O±*ë†2ÌŽÌV& ;vÄãÉg o÷7o‡@–;õØ–5ÅS–Ë(õ ˲. õ؃÷—Ï®õR61‹ÛȨ9ÞžÏóá  ÐiÍ”!΄y^_?µ‘™Ít@{ôDò YÉ>i)%›MÏ™Im‡ SvbÖüv9«4óоGÞ˼8K’ €· èµUõ¿BZî#„Hí†Éÿç#ÂëXÝç¢å{§JÕ_R®ºX‡]ÕÏ‚ÃCv 9*_Y‰5…­Èk<,kpÔ)3¤Xé1“hŽ ¡ŽÖ£!ng=îGÒçÚ¨ÅaÑHd¾Wz"ˆõM¸\“uZ%/.AÜx½Åbv/Y–Ÿ¨çKJÍ¿[´U‹hCÖqÑT@þÙq¥ƒF"½ÈðÊà]iß+Õ™V&K€a¼lCÅ6dÝ-ê±ïnžZë6„éî5áãª|ûŽãÍỎÎçáÙ𠀇 $¦Öÿ3áëa7™¶ÑÝÑZµiÿ’€— À©;Ϋöéˆg¡Rþ‰^µq]3&£5Íéà[ ð =Ù&VÕpRÞž ¦&aÞ,¿/øbœÝ ð¤ŠP ÑY­™kýóÿ2/í\É`yêVhKXרŽýNë%ü$išvÖßõSËŠÃV§Ûj©R×Û’wI¸¤OÞ Õ–#;ñ›Ö^;]²ÛOjCëWM¶<UÉÖÎgûÖY…ú­f¦Ø±|QÛÞy²÷õž©uöÃj*ó-;Åd™|ÌŽ|&²øÞ¾k£Üö6d]-ö±ï®Z›#kĺßÉ•›­ñîŽ7‡ï:Ÿ‡gÃ#$@$@'Û¹ër˜ø¬ÇÍÔæ•*©Z탞ʳ‰e¡¾uy6Á³Õkdz4Å–4å·%oÄÍ’Ùù5µ“ @þè,5‰êú¹˜„óDDï.”¼Ö¼ä¤Ep@ÿpÔÂ;©3C]ÉrY¶ òŽÓÜ…TvÖÓ UÄVæ¨TFÀÚò'ÙP•ˆ'¬§6¶¡×¶è†ºº°ªú£6 ~nüƒMcmÈSTŠã-Cæó–e]”¯[UH¥òroÃ}u±U³‘3„±ÜFù®Øiõväm¨þXtMmí|²šn¼\D£—ÎË»¢{ðáþy‡g/åsI÷[ÈÜ&€4%ÜH€H€HÀ§&Ÿ×g.lýªaªçЂQo…Ž€n F[ÏJ„ëîò¸­4/OŒx©)Jò:1_ǧynÍP{Ë1ÒT‹|âxF*9#"jjÖçé4bµ$@$à)Ë\ £® E[Åæ»x¯Ó=#à/«­Ä4S?‡†Ú¬´d_ø±µUU«³WãŒ8:ÖúZÎ)‰”éb‰3µg©¥©)4*T²Ÿ)Ô¾hǾhÇîp¦ï‚É ;C³ÎÌ¢túo9^Ü ™@¿c§w²&>èæ:µ6ìÕŽpùE‹åŒž„q dY”§˜GY…€5q1À ›ZaÕ SÈC!»Àª¼SrXGûy§t¤×w;}âz$ö [µ]ŸôyØ·ã’É2x«cà ¸ ¸Ç¼G¸†¡8øŸÉIE¹®„ãÍœ§ó9g¨Y €tZ¨PGó¹BJ?¤·ÅR êŽŠÎæítZJ7xP§¿ ¬)/‡RV'\»ÓV%MO9ŸË£óOAKÀñr§ÅNkUß‹UÕú!#ƒÓ §> HKë±>¡ÇË4}*èO›==m¡‘j‚ [>åXÞY̽£R‰'ÝÓn_³©ÄÅ´“׆¸£¢£6í”2KrX1ò‘pÖ}Žçþ }›g&ÀsÄ­øŒ2’û!¥SY=á%JRÉ'윺JÊa?Ï;k杻%iôÅ¡hË–„="„‹à'óaŠiˆç¦^ŽxË×ö÷rc“žƒ-Ö[µª×0*`üÏùÙŠ}ìÁ{DnÎ;iËrS“»µp¼é.ß‘´÷êGà1  ð:xuÃ=°ñ:¯Û9`ŸTJ^êl½Ô'öÒÌ\¨¬ìAuyõ>K!=ã|ÆÄ’¯ -['˜øÄñ,Äà ~¹åòÌf]$@$°Þi‘—‘’;çÌÉ8`9éJ6~€ÏR|mˆý¹Û%Õ?sWYúšz«êÿ © é%$ µ—eYõÀP´ù8ƒž3ÍÀrtà<<ìŸG„N3ËgT0.f*µŸvÀyëèý£c»t½€·–×}†õ;í-jYü˜†ãyïg°K>Ú§R©÷sQ¯”Öï*¡VæÂ&]îE)«u™¦YfUÖ¹"{ðáÊYµR<zk›>ÙÁñ¦7:Š{oô­  È’@<žúTø'%ŒR¿AêÉ«ES“ýYBbq¿ÈÙìa€xÂùêl¹p £Aé0vzk·o–Éòs¼e­! oHTÕ?„1Üa°ò®L-EôÏÔLË:QN ãNèqL‡„_Fë •ÜݱºGPTÑÞü8œ[áp~øÑÏŒ ÎCEN@r;”á±ï!–‡‚ý–#6ñ€/;í-fÙŠŽ†¿ Sïã¾[>ú8d–~˜‹zMSZžl{¬žœ›M‰µ¹©(ûZŠ}ìÁ{Döç% )[ë³[Ré¶Ç›n¶§ŸÎg{¼(M$@$àU‘H/&ªêÔùvÜÙ ¤.&Ñ¿^b-tå¹y™i¿¹Íˆfu´ü‘lWmÞçý7 <hðÒšŸÞGF I€H`€@$²QÐg áåÿËÉbñ­Á Ëf]Ì¥–LYWfYzÛ²èÆu”mˆÛ-_Ô¶7"£xPüJêõ¹9ñÒ¢”–¦ØÎNÃ{6ô½cG>'²R`¢…ÕM·*Yìr)Ñ£Óú–—¬OkúúÖç¬Ä7Ü‹›Î¥â“­ØÇ¼GäæDõô¬ËMMÙ×Âñfö ÝÐ@ç³T©“H€H /âáÈÛ†T:õ¢o~4 ²³.$z½¨iR^ ±RÏ@²|O éEy³hQy(Úv;ržù*-=BÌfs缜1¬”H €`Ù‚ß "öO4©¤"6æ  Ê9Rd}<î¹sˆ¢ŒÙhœ;Ž{=™ ËÌ)súµÊ†=%œ2b” )Ñ?ÙF‰ˆ"5´kƒ´ÓÞXïÝ*JJJG{×:Ç,ËÏù‰XN;MK aÚøndSSá–-ú±ï¹9¹1A47eQ Ç›YÀs¿(Ïî3f $@$@9$Ð]Õp?<Ï?Ía•NTuT*x¢|a«­µÍœ¨˜:¼G@ Ù•o«ÌT`Ï\Û0ª½}ÇP*¾XH…è7?mò‰êú;üd1m% ¯ˆ^ûCØf;‚Ñ4ýóÖ&:½à|¶ó°ÐqGÎø›ÆÂñÜ.°Ì úÅçvÞ:œç‚Îá16ê±s¾ÛP›(&”"3—ÕMñ{bUJ%휵zNÌËy[TäcÞ#Šè\¡©oŽÇ#‡è|öHGÐ   ç$ªê®€¶¿8§1'šö1LõtEGÛé9©•x—€ùN»-„!÷Ì% Qí͇˜FòÔyT.ëu ®‡ãñäÐC$@$@šÀ” D<þÑ. 8yò²>f¿MMevíu[^ eÇ¡Üí¤=:›O<x:ÃNꥮâ"€sØNú_;ç{Î@"3ŽkƒLäÌ0ŸW%vÎ Ÿ·–æ“À0Š|ìÁ{Ä0çEíæxÓMç³?ú‰V’ Ø! ¥Š^7Ež¶S̲ã”4;CÑ– RDzÀšæÛy©vP¥ø1·ï ®¾­ˆ6‡MCþ•ìájEÎ+ÿ_i)Ö™ÏQz:çͧF ð(d Å¾eæDûeœ)1&²µ6­3µŽ¬÷q;k¢:çôŠF+R)ã bÙBKGµSü)D7ýú~† ça|Ü  qB@©ƒTÒØË0R;—'ñý¤ß²T…¼G@ ;“"ƒŽ)¥kƒ²Ó^ïõW-J&ûâ9¬ŽU‘€' ý؃÷Ož—93ŠãÍœ¡Î¶¢’l°< x’"gŒ…MÓL3 £)w÷¤C¥'†ý© ?FgŠpØÎš}Ckä^_ÀÖ7ò½h9Ö~ÚuhFÅäC.Çzx?A]~›l±™ ¦­;-²ÊuN¬€H€ŠŒ@|Ú´w0ï=4{WËM·ahY«%ASôi;», çLHڙеÆ)³B¢÷FÜÒËP_/Æ?‹ád^h¤Ô£ÝÏ/[&Í uõ v´Äü6ÀȦ½…T“ Öa  ¼ˆW×]…T€Wç¥r*EZ¡óB¶{ª¼½ Ñ,ÜŠ€€å*n±ÀC³#Ò=ºµu‡`gk'"±®…ÎR§ôæXÏݱªºç¸NVG$@EIñŽ;Øi¸Rfޜϰó¸±ãíØë¦,ØUÛÔÿO›òÛˆ#R}Æ6;‡ßñŽˆcºkr°|…Úqx3xÄÓN=«ö-±aãÉQ6ä]5Â6*0ËËSzr&7«”õsC*ã«j)G>"PÜcÞ#|tª:g*Ǜα̕&:ŸsEšõ ä@ü¹¥ßƒóónHæj¤Gô(B92WÃ’^'€ÔÎË<`ãNØPÑÙ25Uª–â„­tB_^t(ñ÷x<5éA™½3/ÀJI€ŠŠ@SS.¶ûÚksöÑ»öêÛBº¤GõNÛbOž>Œ°i,²ýœj£úÞx øœ ùmD·»¯i{ì´û³ßh5 @&M8Î@š®3)î‘2˜Ñ/¯­èl} ´¨e7ØD3& „™ƒh 4F+›i;·V‡èL”¸³Sñl/‚mkUyþüR0”ªv3-hžÛÇêI€HÀS‚!y ²å|C g¢7o›ê[y«|Pʼnž€Ž@¶¾L‹ÿ••=ƒTØ~ÛÛ[r YùD¢ªþ!Û•d^à³™Í_IÓTÖ×ìΟ™®×ŒtÉ÷ÚªDÊómÉ»$œ,U³¡Úò5LJ¹Ð%S Vm )žDãL‹ ôÌÄ‹öRŒ,(汇Ä{„¥Ó¤`„8ÞôgWÒùìÏ~£Õ$@$@™ˆDzcªLG§<“© /”CDÐIXmY°³ù /ØCœ%` •÷ÈgœcôGPeд`çüãB¡À x퉇ñ4aS‘×}òdF£lÂÁ¿$@$à>C¾j³–¾îíÖçÕù {FçѦÝΊ/ZTŽ%f.¶©´Í¦ü6âX«ö3Ûì~Gûð‡œ=‚¥jöÆ=œÕJm¹$¨¬{ ÓÞ´Qç ¡hk~×`oj™ß¶a³H)óN;ò”b}]ÝJüÎø»e†ü®eY ’€íØCwïþ9Q°”ãM'(æ^ϹgÎI€H€òM Ž•ôÉJ8×òîàËÅX©ä¡hK;£ ³$é±â†Pÿò€I²'aoË—'ª¨(¹öÚYküÉžpë6ÛHqM@*ë×/%Ž©èh;àH ÐíØCw$ï…v:ÜŽ7GæãÑ£t>{´ch €»ôlé’@ê ¨%ß‘2N4´QÐ/‡:[¾#yow‚hžuÄÑ÷`ª<›*ÃrWytþ)ˆv~y ÚÙjúÍ|7q¸ú»}>%QùßpÜO$@…B ØÑ2Ó0”Nûzlņí®Ïk»¤q ê/µcƒRf.Ó8dÚá¡a7òx$}–•G›÷ÅMûç– l|‰û¼ƒc­Ök*sUÙ¬äúÇÃòܬt8\NTëéÍMÁ¥uø+•œ‹·}Ö»CW±°åÖå“ÝÙzRꇶ4J©¯yÜ2 `¤JšPÌò¹¡¤ù'VdP•#EBÍ_AdþâQ ›vrD!•ÀFE9öØÔù¼Gl"Qø9Þôgóµ?ûV“ 8@`Ced…í\{ÝuùV1¯ ~ð“£.88߯°þì :èÙìµd§ÑgiÏ÷µìŒh¹; aÜÚlE\egk¥» #ðF¡¸Æ—ŠI€¼B@)YÑÑrî7s`R¿ÃYaf;[~’aËyBÉ»u›†a=úÍ®rÛòò¡ÎùGÛ.–M8S !ï {N¥þ”Mµ›ÊJZŽ–7TÀ²£z“þLþ'¤S·2“²^(ƒ¬¾µÝi~˜ù6x̳£—¶++Ú›í¤ƒ·£~hÙEwn—Tê/8X6´À{_‰/yI;P¹e@ »¦æCÓÌ­nûeï­ ;)ж(MœÇêDÓ <\Øb/»”“ÆPW(¾±Ç¦Nä=b‰ÂÿËñ¦?û˜Îgö­& pˆ@¼²þ]8 O„ºBp@k*G˜fê98¯Ìt½^­„›(ñT¾­@øòA£ÚÛ‡N¸xq Rl_¬úÄaç×òm«Cõ÷ 4J¨@IDAT;ž»§N[ê>ª! oÀúÀ¡…mwÁ©ó£­ ”ˆ  F[.ßz¿›Ÿƒ­_€-×fPÇã½UuÿΠœ[E°î²± ,Ú|€[l¡·©©,$zþŠ}‡o±?ý‡wãc&8â´WRu§¯n£„)Õ§¬Êf*7¶³s<’5ÿ>Óòn•SÂÜ`]·<ºláKJ•úZÙk£¥Êë~Û(–¡(&€S¡&Œ›?mGƒò d­2픡ì–¤4lM¢Áýí¼Šhë·¶Ôâî§ÃM]$8PÓNÒãwÔ%ùLïn«©=ÇŠnì1˜/ïƒiî{Ž7ýÙ·t>û³ßh5 €ƒ Ð]<ßK$¯TD[f1·ƒ'KNU©¼;ŸusS¾Ó¶n¶vTlXõRlÿÇÆl}ܧŸéxöiÇÑl {Æ´¶N¥âá¡÷W†+ 'Jc¨£õŽ\¤(­èh­Á²}°ÅVºmm;œ77׆<îŸò1ŒÁ>ëª MM£‘æ»÷â*»õ(%Å”)I»å†’‡3Çò2!8¯*‡ÒáØ>„¼öªžÛ Ïsimá$[c½ê¸a'ÿYWR0’:² çÎïl6hd²ydtG³-‡°Í:„žì½°ïT›eŸHTÕÞa³ Å·"«ªÕ™¢lµ{ÄÈìt^nbD!‡ê‰H˜®³CMÜJe×îß…:[[9a|+2ü˜)¢{ †Ä{Ä`…ûžãMö-Ïþì7ZM$@$à0t@kB; }æ-HŽ$ÔÞrŒÃȨÎe>ãi—«°¤ÑCáM‚:‚Qõóá$øέ7í/€¿t<@'² $@é èëx²T=ÉcÓJKuœ*/£óOL+›‰À’›Já ý"ÚP<”Šÿ$FÿkårQd"î“OlL%Ž˜n‡7I þ™‘ãYˆe‰ç–Þê”I¦¯ØÐulhaó‘6ä­‹ÂñŒ”ñzÍòjë…r'©LaÃù,¦‘ú^î¬ó~M±Ñ뮀•oØ´t×””Ï£­gÙ,gI¼¢³ípLö}ÂS,øX(e˜ê›HÌ˷l ˜†¼:ìL¦1ôr­?MMp»³;燉Hú~»ó5LÃ9´dT{ó!#Èð X%P4c­ð±5‘ÂûÌñ¦?û”Îgö­& pÀ&4žz)}£-ýŒ0Äãp6ç, ¤V¹Žõuu+àU`85´`ÁîH w"Hôw£Á69iÏNÒ¤. ÏÐÑpîgÃÈ}¤0‡:›À‘ú9åF…“ð¤àò‰ÏÁór3sÎJùc§¢wG46óƒåp;ßж>âÔú³ãÚÚÆ¡/~¯—XY™¤öró;N¦ú…ãg‰DÒ”·:é×ÔÒiä¥ß°cK.e•a®²WŸºçÎQöʰô” %ͳÑ”ÍVVH¡þŒ‰.–-hr$íû˜htb¨£å¥Ì§aË'mÚƒ¥íÅϺkAˆ›z¦Öé 0´«K)õSLây |QÛÞv˦“ש½¥2‚Üøt²8¾®£O#ûl ²!tŠbì± Þ#¶ARh;8ÞôgÒùìÏ~£Õ$@$@.Ðh#:Oæ–¹TE>ÕÖcöõ2üžŠ6í‘OCX·5xˆªgËç{-)<Ô‘z}4Ò½¶÷L¡ŽæÏ…Ô¥l ÀPBÍLDÓ·Ný9”ø¶û”¬ÃäLDz^?T¯¸¯e¤H®mËë=H­#1îiÄû=óAC ¦ß‹¨µãSkuÄ´÷7)ŽÇú³Ï¡Ý-S"¾í­S£ü•=%æ;ð\}å3¼Ë«á騭$ù5·ßIfð1Œ±L$ŒGÊ£ÍûÞŸé{,rH/Œ”F>SÝŽ–Sê-›úÐÇjQytþ)VËõ§€Ž6ÿPÜû(«eü$—¨šþ¢…œ‰Í8ïN Ëð=jÕÙ|j&¯£¢­‡bBÀÕIÑû&¦Ì|vØŽšÅØþÄ’¥:Š››ƒâÐO¡.‡þŒ”¹ “ ~£'dkRE{û.8ÇÚ‘Úû:è*³¡/ˆûÚõünƒEG&Pàc¡Ï{ÄPT gÇ›þìË °ø³±´šH€H€¬ØPY‡7Ç"Ö½/´ˆƒ~ Ÿƒg%_EäÌ %ªüWëÃá.+\(“{¦4#íõ×s_ó65·Ùãÿ¯+•:¹§:ò?ÿ7…-  46p”ü?H8p-—‡õ?Tï×Á½ŽÐG¤”KM™úÆ{%Fj}IOiŸ*-•qÑ»S‰2÷Aš¼CãôD8Ž…3ÍÄZ• ÌôaÊÚ©XkyjhùÄ.my,Ǩ #ðf™Yº*L&u/&Ê̱2)vS…¨syõSêy >–åö\<üQ–:†,މw¢õ9fq“‡!â%8ò®GÚõÿKTÕÛK§Œs:8ùà/`Ñïï#ªÕîZ»mtV,`¨™¦mã aÜgÖBpúK‰0^ˆ²÷d_ŸJ*UÖ[&&”õIDp~ ëŸ1‘Ç£†Ð¸Ø˜íäø¶mU `Ò‰^'Wga¨ÏÀ eaš©ä4LXXïáÃøŽ=–2‘:Þ0ß,å«7}ã¥,ÙÑÖˆŠ•Ga<~"¾¯ûgPçà"oDéלÌ<0XyQ¿¯¬ì1.8Y!ž‡ ›,‚¸G^ŠIßF›ïF_Ï‹?·ô;ýìhÚKÊÀ7”Hêɺ™Nþ˜¥×®µi;ÅI ‚{ ÕpÞ#†¢R8û8Þô__Òùì¿>£Å$@$@9 °úäÈZžT½-˜…|ZªÌuA<0¾?²gãÁßi~«©y?×F°¾‘ HCþÍvrÁ‘UòèF/úäÉê" <ÆFÓ\ÔÖ€è.yœsí•ãýÁpF ¤íW›JDª6ÕÓˆ#ðã£s•B™šŸ6Ír¤­“U£ëu쇃Êò¦£ëàÐjг¼ó‰äÀÓ©”À H¿B‡Ø½+Í’°WöX¶Ò† Jn@–½F±­H?tæÅp®_ çêKhðJK ¥þm¦Œ¥J­H™ÒFßö2©v3dÊøcp΄“jW &"ͼÜõ¤qÊ'°…™ŠtO|€vêôÀûe c*·©)4:%Ð…ç f”|·ð=Ë@©/‹`äxSÓ™p£_m¯µ<¸É“ðáK8—¾dô÷¾Üò{¸é 6ð=ÜDz°›ï?‚côÔõ5œôk“›eqɨ¢£õK˜¨ÑŽB™|§Gá›t.¾Lç†?øLNø>?‰Kô¿1 áP°õ†ÌP2)ÇaâǾøNÆ)¢'ÂcÙÐ!Õâᆻ‡<Ä$04¢{ ‰…÷ˆ!±ÊNŽ7ýד™ÜŒý×JZL$@$@™‡c‰DªsnϤ¸OÊ`f¶º@É7±þâx}Ò'v…™ýë Dcps€|,L¿¡®ŽŽg©R €· ôTÖâ!¥ ÃÊ„·-Ù:Dx^¯nhY*·G¥©¦£FÏrEdð:Ã0ÂnN2Ü8@þ) ò‡ètâzm^Þ]–˜ÿK–ª.¤_Ý«zVaâÄkxžü…7ãõuÔcÅñ¼ºÎÀ8÷ƒôv©íÒËd/ß-Ùk¡‰Ä㢬 $ö ÷ #pROMä5ŸØë[3cÕu˜Ðr¾ Ø :¾†ëÍu¸öü …^Ñ×#ýR}âý€R/#“Òk‹Ÿdëx†ŽF8žï€ÍTQD8ö¡³yŽ¿q¼é¿þ£óÙ}F‹I€H€rI éUÕ‡E¿Èeµy¨«?ÔÏÃëDeÜYÑÙvxl`•Cýktu„ûìhFÊÑ“û3Ø/Ë$@$àkñpÒ<›5hDÜ àÆD¸Þsã±XMÃóïžáQ¦]J?¥{jí nÛ'Ž:¼â\3ÿUÛé¼]†dJ1U ‹:·¬ `’p<ž:ß½{²Öå¢8ÿ%R£tT®‹ÕPõ ±êú›à0vÂ=H«+oqz¨ïá¾ö3W´SiAàØ#M÷ò‘s¼é¯¾£óÙ_ýEkI€H€òA¿^cáúŸ"…×LTŸÌ‡ 9¬3€º¾¦”¹$ÔÙòx¨£9"/æ29ì€mª2•_¢:¶1Ý[;äŸâÏ.ý’ÀšpÞ²‹Ö @îô„§?€ô¡§¢Æ•¹«Õ‰šÔ5p$žïÕužãUupvè¤ÙÙ䑿÷ØøÔ†§sbP$²‘XÔËI}#T‚ˆÄÙ±êÚ{GÙâ<@züëú¦á˜Ðz»ëK˜$Œõ=*Ñd}÷6w@G(˜:ÆcËl6®ßĪnÀ XÞ@t{´p?k@Äó=jÍòŽ=Òtïiùô0Ç›¾ê8:Ÿ}Õ]4–H€H ŸU ó ©tŠ·õù´#gu뵫¤ükhê7BÑæŽnmÝ!gu³¢Í‚!ó!|(ôI›Ûë›"ú¿…ˆ¿ Ö=uA?U’ €¯$ª¦?¦Tês0úyÞ‹57¿‰ôxÕñ¼‰a¿³kÈⳜAdÈd¤ùýï&ûrñWGb!º¾uå+ 9‚‹Å¹‰êú¹›Û+ÕšÍï‡yƒ29I»­«ôÉKðçýaLán»0ëccä¨<Eß±[Ü%ùžcÏúfÛq‰°µX¢¡ë¤OÆä„eÄs)ò¬iÈÃá8lÍe¥¬«0 p쑦_yHÈŸ‡9ÞôO¿Ñù쟾¢¥$@$@ Ð]Õp?ÖÍ;¦¼çsreÂîX'òשRõ."¡[*:ÚN‡cˆÑ×­ðPô‘UWhÕèõOCú½ë ­al dC Qù_|ç®#¥”W@O_6º\,û*8ÇÆÂu7ºX‡£ªãáúæT*u”¾è¨bëÊôúÆ_ƒ_Áº¸¬sNRG×#õ$h\áœVKšV#Õv²éÔÖoJZI3?áãî¾[_W·RªN¯ÅínMÅ¥]/+ÄB«ÿ€W>'m.Dƃ8öôÆù×nøObôºÏá·Ô/`Q¾³ÅàÿQ|ôöŸï™Z÷Š7ÑŠB À±Gú^ä="=#¿Ip¼éãƒcô­$ ð½nža¤&ä'=dV.L)EÔQÒu. ~ð[­?+_Ô¶w.*.ö:°Îeg±3È ý¯!Úá(¤¸Ô‘ãÜH€H€¶&0ù¼¾XUÝep–†4Å÷m}8Ÿí,~½î8pþ™G;2ªºwZäe8ö?'T„ëÚŒ”Ø/R]çÛþx}·ýâΖˆ×ÔÿC–ŠC1~±œú: úÏ߀Àù²mªmØ6òu‹•gcƒ²:º^‹e–Û)GÙ4*ÏX‡óÿûÿ ɼàëËÙö,&LEýUÈ8ðZÎjeEé L™‘ÐKh™ãÓžW.Ï m_&ÃÞ„äþû#Jÿ×bÊ”|NŽÐöp+@{XèTÞ#,@ò—Ç›Þï/:Ÿ½ßG´H€HÀƒº§F>ˆÇS'âÖ-4/&í¦”ú©‘2_ E[ž u´^TÑÞ¾K.*.Æ:T2Ð^Œí΢͋KKSGêh‡,t°( ýÀiŠOÇãø£Ðà6¼òµDÁÆô"µ¯v8 |ÛpìÇ«ë®,O{b¼t9Úá–“q²Óü¦D”í¯j¸XàÁªW˜ÅN«_ž7TJ)jàéq+í퓆!O×ço¼²þÝ¡Ú.•´4 ¢¯/gÑÏÚNí€ÆdÖÏbbgÓPvs_æôøNàD ˆ‰,·B“[©ðáS”˜¦<õMŽ…en5KºM §²öuôS)¯ÀuI§æ¹\ç ÜW+R½1öÃ]£\¶ê‹‰Ç–z›÷K˜|#Äñ¦·»ªÄÛæÑ:  ð0H¤OEgWt´¼€'WÃÒR[ë¦iG"ÚæH%“E[ÅCž¿ 3Ы©ázvQOÔÖ¾‰u·—Ⳏäà6)®ïÔua?¾Gã1  - Ä«ëŸÂžºP´i¥Œ3¥4ÎD€Øþ[J¹òéŒnS©À-‰iÓ¼²f«# ]S[«£n./þUhýÊaˆ3ýEìE«Qö8OîŽíÔu¯ðøý.VUß!”ж~QšòëRšÕJÈlÖX~ù†R·v×4¼”–cÿšÏ8ÃÒlRôM„HNÇ®z2+êüR¨½åœàý4¼²ù=ñ,¢À¯[ó⋞™„€öämXóüÑÔôÝ`¨¤׳¯âL8ʨÊ"#ƒj•fé]ü½“É<Hy= çÅ…¡P f|¯)xes]ÞÔšwuÆCÊv\Ÿðúõy“Ñü[X8ö°ÖŸ¼GXãä)Ž7½ÙSt>{³_h €è5½‚ [–I³?×>2ÝiSñ½NíÎxÁk“SLG}뵊WàÞÿ?¤ó} }ðoišu?¿l™ïxI©Ð ½ ÆCpÄ—„6¬þ¼â8¥Á>=ÁaW¼&á…Ó­Ók³ê¨DÝ~´]·_.M™©Gì¦4Ž*®×ÓsãFµÃÿ»fܸ Ãu÷ˆN‰þ1®­m\o@« óLRµ'&j6ú{ÄKošÍ8àßC¼Ôë`ô¢Tæß¾»ýBNü³fÚ´µã,oEׄq[‘Ë‹ Ö?Çùw꾫ÿü[¿j2œýÇÀQΫ}ÀpOðÔíÔÎÇMç Ž˜×çàÛè‹W1Æ|-`ȧ»»“çk=uØ’—-¶óÊ…ãÞÙÁÒy  \3nû¼}—lÂy‹¬^¦àn8¢¥X‚BƒóadLØ÷¼=qL_—Bxmúþámÿy±çÌr|ß’JüÑ_R*õL¢:ò?-ॠË12®g”¥Ì§ú¦“‹ÍÎ9µ¦¯O_ór²!³]Õ¸ÒRK¾_Lò)ö±‡Õ³¦Èî^¼&Xíª´rE:ÞD¦%K÷è|ŒÕð[‡ øƒÀÄêYø~¹×¬•JÍXw›×ì¢=¹'Z°`wQ’º?Dñ@‘ÛVÞÖëñIC>T¢J¯‡»¶:ÎÃÿ`ÓØž„1è òµaÄŠ}÷+)ë7TÕ-+vl¿ªg^9:‚ÌS®µ+£sxÊ(Cvàáü¨rãÓ))?‹ïØ—ï‹”Á»C…žx§6úý&ç´vDi„Žü}/ŒÔ‘"ùY)SÏD|b·77,)ò&,û„ëÆÕ¹ç*Jgñ…+£˜72¾÷Éfx6Nil4|7¹Ã©¶SÏÈøý™fM€c¬º¯€÷÷çª^ÓsBÚÒlžœXÂJH€H€HÀçâ:UäâÅ'†Ö¯ú%fA_êóæ8mþH9.³“¢WᇕN“ø"Y.KžH åtþÔ×Ô4:Xø<"éOÂyô…DBކXš­îÏgmuKÜ,™!jjÖg­‰ H€H€†'‰¤°pª¾œê˜s†g˜îH±;ž52þ,!›áÙ8u¤Ð³08Å©õðûWŒ½^mæ¹m½Ÿy°ÎÊë’<ïsÒCt>ç3+! (Sý°¢£íQ%Í;Ðî EÓvë ÕB‡ê¢y¿×SbªŠhËðù)8[Ÿ2„|bÃ’—^.ЍÌœ-›|Èþ†Ÿ‡cþópÐBô<0à·‘$‘ññpíÕ|P=&# àÜgu$@$@$@$@$@$à-t>{«?h @ˆU×ÞZÔr˜HI¬#¥Ž+f¹Õ _R¯yx œ®3Rø'tøÁÝ"Ú²ij_Â3ì¥XgíÅP¹ziõɽþš?·Ewn2Ë’¦q0Úƒµ›C¤0EÒíúDg³~}U꫱©õKì¢, €»è|v—/µ“ 1xeý»¢©iJE(p9œ«?Š@ã°ÛôQ(0 Œå±"ÒO ¤ë~¾é×¥”¯™R½Ž#¯Ê”ùZÀ(Ç ëHkk×W&ö4S©½¹üIôû¾°qo´eo‘Ú¸v$š‚Mÿ£ð=Κ† ÔnIÄÍ‹E$¢×åF$@$@$@$@$@$@$@$@$à!t>{¨3h @Àúˆ1!~ZؼP˜òv´p¿le.›´+üµ»Ây¼—îwàR`ií˜îÅŽå¯÷ ÷!¿]J™k±üäZ¬/½Fr­aе2`ôÉTª/™ `ùJ¸‚ËÍdy±¡§¤o”J––ê}Êè+/)) )‘*1M5VÊÀXDbã¯ÚøW¨I(¹DwÃkG¼véfP˜x‡üÙz£k¹ƒSÿ¬„¢sá†6§R €³è|v–'µ‘ ÀâSžÑègB¢÷·øöBÜ™-2(øÄÀKû¥ûc‹µ x£/õ>x„• 1vÊí)Æ–kOãM`ó>‰÷¦–Ó嵞ç~g2tlt*oüWçæ.~H˜%_ÕÔ¼ïnMÔN$@$@$@$@$@$@$@$@$ :Ÿ³¡Ç²$@$@$`‡@8‹ ñ`gK;œ ·¢¨Ž˜åF$0<õˆ4¿k;߈Épûs#        ð2ÃËÆÑ6  (D‰ªú‡Ê“ÆÁ¼½­ÛÇ6‘€Zý^„¤«j¸Žg'ˆR ¸O€‘Ïî3f $@$@$° 5µµk°sF°£õtÞˆ÷ûn#Ä$PœV!Ãù…‰ê†;гùl5 ø—#ŸýÛw´œH€H $ªëŽ^wˆ”ò 4'YMbH ͆Yò©Du=ÏÙPdY        ÈF>ç <«%  ͦÌHÄ„¸ltgë_RJÝŒýGm>Æ7$P^“B] 7,*Žæ²•$@$@$@$@$@$@$@$@$P˜ù\˜ýÊV‘ øÀ†ªºeñg—‹µ Ïƒù+|ØšLv Ä•R—Å¡ƒèx¶‹Žò$@$@$@$@$@$@$@$@$à=t>{¯Oh @1hl4cUõ7ƒ©}…WSqóùPØmo©ÀþXÛù QYÙSØMeëH€H€H€H€H€H€H€H€H 80ívqô3[I$@$à3«Oެ…É•E›o2”¼ ÑЧù¬ 4—†$€õÍ_N¥Ä…=5u)À$@$@$@$@$@$@$@$@$@¾%ÀÈgßv ' (½á†ÿ$ªëO‡ó¹ í}¥ÚÌ6,÷¥çÆF?”Žç‚íc6ŒH€H€H€H€H€H€H€H È Ðù\ä'›O$@$àHŽ0>zûOkç,~×VÓJè'°VIñãx<µO,\?GL™ÂTò<1H€H€H€H€H€H€H€H€H @ 0ívv,›E$@$P€à´‹ 1G45ݪœ5¡ÿZ9¡[Ê&>!Õu%ªüWë«Â]…Ñ$¶‚H€H€H€H€H€H€H€H€H`$t>D‡ÇH€H€HÀ‹"‘x\ˆ?Œ°iNO"ð=%ÄÅ0s”M¥MEI ‘Îó¤Jý*^y»( °Ñ$@$@$@$@$@$@$@$@$P¤è|.ÒŽg³I€H€üO`õÉ‘µhÅOÇD£×¤DïÅpBŸÏcýß2¶À§zàt¾M;t:û´ i6 dG€Îçìø±4 äÀúpJãkkû]¢Ô<_ªþHh¦ãÎ{Ï !äM²Tý6~Zýò¢i5J$@$@$@$@$@$@$@$@$° :Ÿ·AÂ$@$@$àOkjk×Àò_aMèk°&ô,¬ })>ïäÏÖÐjÀù&oÓùªØiut:û Ãh" ¸M€Îg· S? äš@$²kB_ 'ôõÁ`à«Rª à$<,×f°¾‚%ðªêšxܼMà\+ØV²a$@$@$@$@$@$@$@$@$@¶ Ðùl €OD"½È‡|¬½-ØÑzÂF'´¨ÁgÃ'- ™ž" Á9tUlÉÒNÑØhzÊ4C$@$@$@$@$@$@$@$@$à t>{¢h €%JmÒ’dN…”}9­•‘@Õu¢Ø£Á¶¶=e‰ú"WÏÁçq¨b‘â"Ð-…ü«4äµÝSk_(®¦³µ$@$@$@$@$@$@$@$@$@v Ðùl—åI€òG@ÂùìIïs`mþ °f°G Q[û&J|)¹/CJî)ÅL|>ÁžJ<%–HCÜK•Ü#jjÖ|{Ù@         GÐùìF*!ÈS‰7 F>§LóÍ\´Ÿu€£"‘8Rrßw”G›÷5”œ‰¹gãóŽŽÖCe~"€‰4êNÃÌa”³Ÿº¶’ €wÐùì¾ %$@é”/‹¤J'•ëã}ÌŠWWçºVÖGè 7¼ u?‹_V±~õT%Õ™ø<¯ ƒÕP•7 ôÂáü€Æ]qUÚ!Âá˜7ͤU$@$@$@$@$@$@$@$@$@~ @ç³z‰6’ ôXÕ:ç݉53ßJ|ÂCHžyíÞk{ç¿h @VEoù×Äês¾ §ÌÍÏ®ˆ__Õ:çÝì”°4 xe½þÞ4 ¼ð®©¬¢Üø´‡He‚t݇ „÷ß¡øè>{)®iK•4_2¤x)Öm¾$"í€æF$@$@$@$@$@$@$@$@$@¾ @ç³/º‰F’ E «cÞ-kf¾ßê¸+û”ºõF]ÑM¥$PlàX ñ<š­_›·Qíí;¦Ƀ¥’ŸÂÜ[ ¹ÒìïèßOB¨t³ ÿÞôÁä·z÷5dÊ~](ãuS‰e%%É¥ÝS#:67         ð5:Ÿ}Ý}4žH «}î&VϵL]è: %.éŠÎ»ÚõzX 9îšš@¿ÚESS XZº»(Iîmc/SˆðÝߎé!·ËÀ ûòâ ÖŽemóûBªåp˜ Lõ¾!å¦H½!”z#‘o#’9™-¶ž->ñ ø—Ïþí;ZN$°‘€êê˜sÑÄð9oaÙßc—×µ"¿±2:÷B'È#8nB¼ ôkØmlgçøž¾¾±21.•Rc !Æ™RŒE´ñX|—õçþëR|Fšë÷fÚe¦P}pfw÷+ÇêòRеú=ÝIý{ÖÂ\¹5†)ך¹¶´W®]_W·rXƒx€H€H€H€H€H€H€H€H€H€Š„€Nš"AÇf’ x‰€ŽHÞ><ë)C¨yBгM‰gLܱªãÖ—ÓIE$@®X[UµèWN68Ĺ‘ €çL¬ž‰¹÷–¶»:æfI’B$@$†‚¸‘ @aXóT×ÎC¥:w¶ë§¾.•šÕuøîG­j§ã¹0ζ‚H€H€H€H€H€H€H€H€H€H€HÀMŒ|v“.u“ äžÀÍ7÷­âO»MŸ~s¼gl="¡ÏÂô¾aHizcdëÇ>`(uÇGë÷h4&E4})J ¸³6*¹’ @Þ ¼;>ÉâNýÚ%<»¢ÇH-MqÖlÝ‹¸n'”Ø뺮ź­«ál~ëE¿8¶/ôôk÷^Û“wãi ø#Ÿ}Øi4™HÀ÷£7ÇPâ¡×°…1ÍH€H€H€H€H€H€H€H@˜=»tâò¾ƒ•!¦Üú÷ÆÞÝðÚ¯ñxÃkëç˰o5&ý/WR½mHù:&þ¿lÈÀK+Ö캬?˸‘ .­…ÛR¶ŒH€H€H€H€H€H€H€H€H€H`HûœþòÕØ±†T'!kÜñAê0!r‰õÌ„²ÈP;GcçhÈsG(”Å_¡”)&n÷NLTÏú'ŽÿMêþ• æê÷Z;7   "@çsu&›B$@$@$@$@$@$@^$0¡úœûà|8Õ’mÊ<±+z룖d)D$@$K&Žyï4!̯¬‘±*ø˜·S6<Í6+¯€¯ù”9K£ý|bõÌåpK·¦LqתÎyOÚÔEq    óÙ£C³H€H€H€H€H€H€H l_3ãSRYt<£ÁRßÅ:Ÿ ¡ó٠ϘX}Î.p2SŠwfÁÈòdèΰá[†!¾Gô¥Rÿ§¤¸­«cÞú<ÙÃjI€H€H€ `8 ƒ*H€H€H€H€H€H€H€H`H†’ y`˜È¿Z3><{as7 @&UÏÜgBÍÌ[1ÕçMD9_Uùr½L)u~†Š'v-ùJ†eYŒH€Hv˜6{ï ϽýÖR¾}šÆZ’ê¥ÂçÔ³SI€H€H€üA€Îgô­$      _˜Ð36ƒwÉÔh8®¿›iY–# b'0¡zÖ¦™zA yt°mJÙ{¹wh ø”€êÂ,M?lRͬã²ÔÁâ$@$P\fÏ.ÅZÉ×â|>º/¥øñ„ð9sÅôé>I^HôÙ  °N€Îgë¬(I$@$@$@$@$@$@$`ÇCìp ¢#Š úù;# ð Àf«Ï3áƒdk%{óÎ{#¥œ1±gìŸÑ,F@Xß²9$@$@…C€ÎçÂéK¶„H€H€H€H€H€H€rëC|~Zò‡] æ<’AYËEV¶ßú4„¿¼}ÍŒŸ*€¬êk– oDµøÕÊàºËrŽÛ¬¾¸Äù}.®þfkI€HÀ)t>;E’zH€H€H€H€H€H€H È eÁ™B‰1Nc€§á»ÐIç³Ó`©HÀ×&öŒýµª2»FÈ÷ e^ðQt^Kvzì•^Õ~ëË(qƤð97*)õõ} V˜J±*:ï ²!  È#Oõ²Z       B"€g2l<Æ¢IÜ‚H·.D³Í·XF‹dJ|Ó†›¦Éèç‘ñ @A˜X7{g\k϶ß(ùžêK\d¿K @æè|ΜK’ @1@Ælu¡UJ¨{´£yHù€ÔÑÖ7)êûך¶^‚’$@$à[ª/¥—7(·ßuÞª{ïZg¿K @æè|ΜK’ @ј>ç4¤Ë>À*€‘Öv^¹`î3Ðó‚U]+Fé7lÈS”H€üI`úô2)Õ¹ßÞÕ1waåX„H€H€H€²"@çsVøX˜H€H€H€H€H€H€Š”€!-G=ƒÐ’®ŽyKF&%oùø–G¥çísúw2ˆÜR?‘ €— ìÆDŸlÚ¨R)q™Í2'   GÐùìF*!      â!0~ễ”§Xm±”òúô²æ=Ù^n³Ä¤Õ¥±/oþÄ7$@$P€LCža»YRܹzáÜe¶Ë± 8@ ÄTA$@$@$@$@$@$@$PD†¸ÀFsW—šÆ_ÓÉ#2zýÄêYw ¡,§Ó–B~zÿœN·§ŸØX2q»·C[Ž1•:TH±?Þï›wÄkSdwïµcþ#¼^Eä«JˆgU‰xdUëœw±Ïû[±´3MOLª<{'0ކü¬Pb_ôã>(²3^x(Þ‡¿1¼ÖJ)Þª¿¿_SJ--))}âöõyÀ­L¬>g ΓJ»M5”¼ÒnÊg@`຦”<ßÕƒ a¯—¾~‡ðÚt ÇW]èµ·×!kÇ{¦Pïâï¿•Ï«€ñOß\ÇÑ€‚ÞØŸþè^ôÓöcÞlHqŒPJ/ÿ²¾K{â;5ïGãhÈZüÕ÷Ò·ñÂØI½†ñÕÓ¢¼üñó¯·3Ùq@ÿþô9JKN@Û?ƒ1æÞhÿà1ǘõàï:%äR©—…!^VB=1¾wÔc¯Ý{­>Æ2"€ï$7     ( ªg^9vœb9i8"DkWFç.ÈIe¬„\&°Óé3&%K ý /h­*yuWÇœ‹¬ÈNšvîaÊüÿíÝ `œEÝ?ð™g7IzfÓ(ÈQ@ål¡Ü· š¤ŠK’†CQxñø¿yEQ”#MÚr+ѶIZ‚€rÉ ‚(Pi9š«msìóÌÿ;iSÒ$»™ÙóÙÝïƒ1ÙçùÍõyöê3ÏÌx/™ÄöÆ8Ò9¦¹aþS½3â7.œŽy¿X*y6ê«;–FÇQo\Lõ®ôîjoXøzù$>i®´s¹ñÅóö÷<\Ÿe³Nzälå‹èèZÜÝ­îZwÝ#ÇÅdÒ¬¹{„½À»ñç””ôšÆ0ÍÞ­¨¤¢ ½–÷Y¶ðq¸o™†á†cO«øL^@•(é” CçX$3ü,ŒZÀ¿ðš^'wÄ:_ÏÏA&ŸÏ­|O¨¤Bßü`²½‚÷ŽCLSSTvÉNª³£7c‹›ôЙºýf­Xªââ{Ósè`]ŒÄwãæÇcÉįiz¾s8ÞüûS>îG=uÇý£è¾£eØÆ¥¢¾¾k¨¼ð\[Š˜Ò¡âôqé8S[–ÎÙ$–1™)ÌÌj³Ö (@ P€ (@ ¤CÀÍs.D¹Û½[Më©/BáÂÕ3ˆ?Â4çyzôsFt>ë‹§^W×7¥Zõ-\@Õ£]±MÁUåï9ÊùFI>'¥s}KCퟑ±éÅæDÔa‡Jxa‰üð#~Ž×ÜC.f‹ho¬}(sdúÕ´ºÚ ½ˆïB|ß9¦âý$Ûdrº’òôPçèQR±P7¶.®ù(™3ìàšÏÙŽÙB P€ (@ P€ @bÊÊòq=ë晩G0¢ä óx\ Tʸ³º'_)Î,œyþ®6e¤#¶°´ü|\<]‰ö]‡òÕñܯ)r:¦f®GþÓf–Üï`JæJ;£`Jm½ê tݸdŽ"“x=ž5_*,­Xˆ›v‰R/Ê@œß/XV{Ó°aëõÈ3n WV5ËATwIw5:`êŽçd5 ]FA/Áûø ãg–'½¼¨•ɲƒ<Ÿ™sBñy¶^÷ ×ûnÝ*GÍ{—¥Ht#ðµLœâµe>‹º¾œè’ß„âò3C/¬z åÜ‹Ÿ©I*¯ù~G„Ýwô{¢¾#Iå0Û,`çsL6… (@ P€ (L®Q_Aþ“LËp”¸Ù4¶7.Oõ³ë{üJ'¨Gcûr]V1PÀÛ·£‚zÐTlG CòÙ¢âòKSQ˜.#WÚÍsBIåA8×o;×{E‹Mð1‰^蹸uãß…Åsœ7³K“À„YU{£h½þ»ñ†NšW××o1NÀÀÁªªòBÅW;Ý·1øøG7x`R÷Nuù$:z~-PŸ¤–”í™ó|fÌÖ3§`$òÏðyö**]†ŸDN2„nàâ|Ž7L,®Üsˆà´ÖÓèã}j¹'埠ô¹U3©ᆜWxsLŠÄ3¸v>gðÉcÕ)@ P€ (@ P€©@§Úeå}Ô¼qw=m¨ÕöaSÍf\ü[d•Hˆ Fe[¦Iz8FÐLÉë/  tŒ¤ÉÇH½ß–Vþå'õâm®´3ÊFêŽ*O¨çsL”¸d“w ³êú~² cþÉð‹ ûNõC¼w«ËPŸ‡'͸@<äf)Àói –ÆðñÅ•Gz¯b$òÕ¨F:o¸(q¥z #¡ç¥‘#jÑ…%•ç…½ÀkxŸ:-j`òNÁÍ1ÃwL‹Ù’WæìOv>ûó¼°V (@ P€ (@_ „Š/8²˜ÎOֈǪñ4BI¯Æ.œPØ1ëúgÓ²Xô1ôì‘ÎZa>ÉK K*~¬:äJ;#ùõLãZ\Ñ ;ª“΋å}ª¨ÎÆïOpî>$™ø§‡ÚV; å Û4Œß. 1sÀÕRzOaÏç·ïõÇÇ»ùÎ#˜ê6äêdD-x>3â4m­$>¯®r¤z<Ýß™úaZiY£oæBÝFõÙŸÞ?ËÊ™ý+)Ô¨H²¦"7mc¾cþßjš€q¹%ÀÎçÜ:ßl-(@ P€ (@ P 6é\n‘ÐU^×|‹øBÛ¾Žßaç0ïpʦ˜¢*b쬹c1bnF¬ùb-j\Ìý6FÉ\–â¿Íµk¢Æðà zýRt ü 3`º_4(Í;1ôLu»Ä³|¤™f@ñ<ŸHü»©¸A®ŸW×£’>|í©³…pò©ÝR?Ð@IDATZ6%ò¹ÒÓÇw޹ÿ9(õGð}÷{˜ýåÇ©/™%ú]€Ï~?C¬(@ P€ (@ P ÍO/ß U(1®†MmËîøÀ8~°@)nlwä}rºž²1òñÔ zŽ^ëz¿Ô•8tI%sã¸Ó+:Ò<"WÚ9˜ÈÄÙMa÷q;h°ã>Ù··V9ýât¬W낌®Æg­j¯ä3Vñ Þ.Ðå¸sÐrÆöþýãØPÇhÝAÎ-ŠÏg?Âr)¡ÎÑ ¸A®ÜOÕX5 Ëj<5aVÕÞ¥l }ä.ÂMè ÷á&ÅCÅ•_õaÍX¥4 °ó9ø,š (@ P€ ( á £×zÆõA³ÍSRw¾ÆµíñgØf“‰#½oÙÄ'#¶¨¸|¨üx.?àˆo'ªÍ¹ÒÎÁ¼&ž2g¤ëvßcñ\ˆÖëC_/¥,Ãó|šv ;î8ýäMt]q ŽÏD‡Ø÷…MxNm¬.ûöË tß'ª«y ÐË7! ˆº|Æ®>ž~Nq‹A µ¡î6Œzþy I{“èçw¡cè ¼žg(øœ'½Ý{_Óù*P$gª~½ã“ô—ˆ}£7¡õo).+œUq¸uºJÀó™'ïqE£ïEMOÏ€Úê*îåyîƒé]TZqÞ;Îõµ•T5ø¾²¯¯ëÈÊ¥TÀ‡S¤´ý,Œ (@ P€ (@(zM[Ùé^%¤ÿ¡•íµ÷ßiûxå7ub­½¸˜•yZy¦B¾¢uqÍGæi©¤óÔ9–Lסƒq9:@þª¤ø§ð¼ÂŽ·Ù•^`˜›7NH¹¯PjÖ‘žü§Ù€‘ßµ Ûp…mºHñ¹ÒÎAÚ/Ý‚üû°ßz=^œƒ6œ¿ß…Ãjáºûëþ;HÞ}w5ãÁkøY®wN.+¾¥côYx~è,ËV_,|qÕÕ¸“ã:—Íöñ!{¼?öå÷¬FNÝÀݸH~šI9èŒ;¾[†_5‰íS°Ùíî¿/[n>I8øÏb“Òy×"œ¡ýZ꾋Ϝ¼¿ê›­L¶V¼gß%”{gkÓ— â?ÞÜõ†xñ2~þ„Ÿ«&”Tã)Ü\bøZAšÞM OýŽéÝaú;—^Ϲp>MÏ»ã0âù¼`âm ¯ºG”#Ç´ôo¼ð{y2íæ@WX·¹À Žó„·«'åÞR‰£ðZ;»÷ÓÇbÜöÆèXúØÖÆcÌÃ:Ö¢Ÿƒö]m°%Ú•#u”xÜòõA½1ß5÷Áw•£ñ–v2²Ø³6QïãÏE9ÎC9&€ï½Ü(@ P€ (@ d‡Ö »ÿÈIØÈ¾D©à‚Á춦º¥‰ÊùP •¸.@é‘Z†›ºån0 ކ58§àâä[QƒúTâšÖ¦ºõߊǡY•'¢SàQ›²ðžÕ¦”úI ³{þšwn2I —©J¨kÐñ1Ó ~.Va$˜^'0![®´s0,|Î|çÌv„ä&t²^W¿þ†Õõõ±Ž`î­ŽÄù? ¯‹±c—Þ¿]¡¼ÃÑIö¢Al\!¡’ ýyWj’‰ Ú²t¾îãÖG@l•žx¦Ï.ƒ?Õt¼÷>oÈÈŸy˜¹C]9D¬Æñk[ 6.õõ]Q⌡#«ïåXóV„Œl ÂûÐ -u·IKl†¿žy>qÒqñ‘a´½ÒÚXwˆQdA¡ÒŠ Ñi|kŒY _T4àÞœ[›ó×=Œ× k“Ï„™å»Ž¼¯ŸJ¤i“¶77þ¹­¡î¬ÞÇÉü=±¸rOW*}ƒVLuÕuÃ÷Åñä÷­55V7mõ|¹bÌ¿Ž¬òt~‰ÚøùŸ(Iÿæãø·j¬(@ P€ (@ P€i8±:(¤ºÔ¢]r‘E|ÔP\X_‰‹òv£¨%: °Ž`ÔŒ“tPzêL›¬qõU ØÚ´àFÓŽg?\^B'S1.)ž‡‡¢”ù†§œ#Ùñ¬ËÊ•vöwE'Ña¸`}mÿýC<~2 ä- µ×& ãY¥pþë;Ýé ÊC”Ý÷pz‡h7¿ ”c5Ú\·'ÈßïíÊ€ú©ÖÆÚKPÏùƒÔ\êWŽ®Ïâý÷ÖDt<ë2WcÀUGàÏ·)3Ú®òhy¬G€çÓgO„¢YóAoèob«–|ßiÄwšÙÍ ó´íxÖe6/[ðJ[cÝe˜ %åMØåÙÖ£¨ÏÄhß´Mgå2Ðñ|;ÒÅÔñŒ™RžÆ{Öô¶Æ_†Y“mdz®oÛÒºgqCç‡xž-ô b܆àùJ(UÇ«ªò0Ç(ÓÛ[m›ñ|Ÿ‹C¾”¨ï46Õ´¶5Ô~ ß“"}‡ŠZA¼V©gç‰çÁ¢WÍEÇÅM7êwYËÔÝôôà ™ cmSÍû?ÇSêT˜éeA¸Q`Hv>IÄ P€ (@ P€ @n xʻܦåžôn±‰7‰mÞ9؈¸Mb{c¤ÝhíÞdqýÞ¥¸j2ØÇ4\H­k[vǦñ‘âÚšjþãå 8Þ;j.Œõú.ÇE³qÑqc¤t±îÏ•vö÷ ½¸º\mÖÚ¾EŠe¤Qÿ²#>~¬:ÜZ°~Ž?1fàÿ‡]¸.ÍÍמ7ܲ~áXFZ–‘;á˜Ê·u؆óu4Þ«È‚‚ƒÛ—-À(ÂämºÓù^`QÂèñ£VfŸ»¡<Ÿ¾8÷…»—ã&¨ì*#?p]qF+ßn—Î,ZwΆ÷PD?j–b{”î@ÇýÉÙ&—• Çì8×XçŽuÑáwfHù¨®¶Õ=TyíM V(/< £ª_*–Ç)ÀÎg>(@ P€ (@ P€ PXŽ[=_#åg²¿½aá*)åÏLb{b¤§×´åF %„‘ƒC‰›ˆ~>TLŸãIö·O9Ùñ'ÏgÚΣ »W£p=CŒé¶StcïJÓñÄaîÍ^AðäñºM>J© ÞøÆC£¼{¦Ó——Å~VJžµ¦aÑ«ŸîJÞ_z‰/(JQ‚ÕÌDÉ«sö£;ŸýxVX' P€ (@ P€ @ÆŸQ9×ÒÊ,ª°>°¥ë^‹x«Ðu÷×ý ŒGƒmÍ\ž¥GÚXG0¦KͳIîY¬¥m‘oÒ;góÙeÛ(@ P€ (@ P€1º==epÐ4)F~ܾfÅÉöUŠÛLë³-.Ot»Y¦‰9\J'l“šÅ6ñ~‰Í•vözv: ïÕû8Úo }z¨½±ö¡h1É:ÖþÀÝpçÁ}†ù :Å,ÃX†¥A@IÙaY¬ÍˆBˬžbÜÃb¶þ¬'ÔÈ×ÅÙ äüù”a·lÃ,èokª»Å">a¡=S|+a>“JÆÌ#—%¬ÈÈ•bžM~zÉ•ÖIε6i‹5³…@]¢òc>Ù%ÀÎçì:Ÿl (@ P€ (@ P .‰§Ì‰Ž»*޲í¶®ckþ=òy•UB)ªDYY¾Ušƒ]á¶Y&QTRñeË4iÏ•vn‡ö„ñ¨tÌÿj{ºtü¡D“i±UvŠi,ãR/à)Õn[êø_m›†ñþÀëóß&5“±éÐ3É’1IÈñó)qcÔ×mX=O]x$KÏ&‡ü%¯1/]0±¸rOóøÈ‘ãʪÆH!OŽ1ð ¾/jjºIÑž ó¿(Éö†©UŽÅ¤S€ÏéÔgÙ (@ P€ (@Ÿ „‡èõjÇ™WKþ kÎZ­‘gžwŸÈúz£+æ÷Ùcòç¤P×è³Lã‘ÿÉ»ÈÃêb)‚ÿ*)×#k3fË•vöœ¬»ˆMgžœ5ÍSwM˨çÞúuïý{ÈßRœ8d Ò&šm WΰÝmÓ0ÞŸè|²½™ÉŸ a­zrù|N(©8k“ã;å²O§ó©£—ÎÀL&¿³©ƒ+=ýÝ9îÍépK‰Í2 ¯´6ÔßxwÉ uqÍGؽpCÜ•ãì|Îñ'›O P€ (@ P€è#€Ùû”ÕôRy7÷IŸä?==µ:¡-6%¾esèêúú-èzþe©(W„J*ÿ7U#´-ë7 ~ÔêÃðËt4éC¢ºÚ–ÂêëÚQœéì'̪Ú;…ÕcQyÞûá=¡ÇÙÃ6 ãý)€ÏU›5gýÙÖj»@.ŸOW‰Û! þHíwÊÈry58j±œŠ´jg¤’)¾騠û¥HËôäýëâ)ç÷ý÷ñ1ØùÌç(@ P€ (@ P€=¡’ŠÓðǾkZv.±ˆ+kË}ˆD–™Q8«âpË4±…Kù` ±¶¶º&Ô9úuLÃ]®§=!Ô&É‘vJ©Ž7‡U/™Ç&1R‰·Msw]÷@ÓXÆ¥V`ÛëmJ•ÒãÍ6`Œ¥’.€;¿hQHGÁ°iÅÛ[×5KnmÆÚëë}lð{ºž2Û .jfÄ9*jÀŽÝ®|Q¿ã®ô1¾ø3WÚ‰‹æG™¾”p¬§INÊÉ”¢Å4_t®ŒØ¥¦ñŒK­ž¯c­XãŽ%Å¡©­!Kë˜\V6¼k˨}UÀÙëuïƒ÷ïÝpl¼ìŒ¬±ø[wJéßør3ÿ2+Ä ÀóÚ Iv)®Ñ%\=ƒˆÙ¦ÄC=³«˜E'= ‹U7áµh:Ù vyÇ R÷ÇZ±1§_Œ%oºÌoUâñm7*ÅZdbÓ)Õˆ÷;ÞÔ–XÕŒÎÏ}úXy P€ (@ P€ @b&–Î=ÐUÊf„Ч¤§§%LéÖ~èî‡^\õ ÝË¢às&”T^ÙÜX»Æ"u蚆E¯b çeèÄŸiøÓzäóy¸àyž:¢WâñKxü¦¯{ Ò/§»C:WÚ‰Ž#ã‹À˜®þNœ«;?=þÿK Çæ5äÿeY •RE&;Ÿñ|="Ë|Ûœ¢ÓæNyÁÊSG+)èèTû ÿánt<ºíðàÓÝüË_<ŸÉ9ݵ¯ðDÀ4wåȧLcS‡©¤ŸÂŒÆEáåÿ9ÇÜùŸÅ{¾yyR§ù°x P€ (@ P€ €\ü¶Í¨gÔyY{ÃÂU)¯;ÖÕU%·áòÜÏ-ÊÎó„wâl‘&¦PÇ ^æyîÉH<"¦ &š‚]SÐÞ²žÑp[;¤ß@‡Ç tx>ØÒõÈšwn˜,¹{r ú ðÞÉULoîx>í’Þ°ôhu÷,F3WE‹éwlßQ³Ï/ܸ䎶~ûù0ºƒRÌ !¿Š×ÎTÝѬû‰ð>œ€Ü™Eªx>S îºû Lá`¾yÏ›Ç&?²mgùrèãžuŸÍúДBçqì›{Ú¼à½ç¹ØKK|ÊŽ|ï¹üÎÄçË3W7Ír£(@ P€ (@ P —&͸ ÏçÙàrâ-6ñ‰Œ ò!¿n»<åE¢¬,ß.}tóÒš·¥Rß°Oi•b?”q).R6ºÃ ZBÅ(,®˜5eÆ¥FSºZ•!8ÛÛ‰ì;£é)óŒÀœäÝÞä$ÀìãðDðIÛänð˶i] ¨¤bjQIåb ¬FWóõˆž=úY€ç3¥gGß«Uˆ{TˆÙ´4-XTXZ9 Ä×E JØ5ï{çà­ïœuy›[QnMçüúæ45¹[6·S 9"ëÇ3J9<¹Ïæ@[SÍB%•èøÀ¿¥ 7̈0¡w†3,ŠÀ„YU{{^øF¼`…¬7ˆ"‘‡x>Óp9Úæ¥Óœ·6õ³é Å¢n:1ìVk6Ǿá{\È&5¾´¿oŸŠX¼Sê:¦¢,–áv>ûÿ±† 2J pæù» ™w:™¿Ò%܃ñEs[~áü'[FNV– @æ lûÔɼгÆH£€ Ü).Ic RW´ßBaIï|Ö jk¨ý:ŽÚñ ø&PÊ[!¥¼À´Š˜ªûË“Ëʆ¯®¯ßbš†q$f’ø–O¨ÆE ÞÓ~m>G?I{m¯€y‡x¼3=ÚuÖo¼ºéÞ«Ö§»,ß?ì|öϹ`M(@ d¦@uµƒõЮ Å븻MÏ»È ™y&Yk P€ rTÓ´^–KM—ž¸4•ím^¶à•Öi“§cÈ\”»2•eãVÐÃÒ}~béÜ“]nÖµSÊÉ6cþJ`ø°õ+cõ\T2Gf² Ïòø¤»Ü'ð¾Yl™”á>àùôÅI±yïÚÉ5X ó™k”è˜Ü|'³`ȰœiÙü”g}$;Ÿ³þ³ ’' ×t.zqÕ_0’ãz”2"y%1g P€ (@dà&“ïÁÉÈÛÇyž3¡¤2µ#½««½¶ÆºÛ[§í¶\f¢sèÏøªiq‹\øëÄâÊ=“~N²¨ÊsSu~’~ZX@æ èé³·¾_Ø´AN/,ž7Ý&E®ÇâÚÆˆpž³SÞ‹M˜yâø¹ïó?ÆÏ…ŽRgáñ žr:îž2ìîvÜq‘~Po$ 9›ϧON½6£sB/ã¿m´y•¤M{f«„ͨá13ðÁ)ãšzÜ-`(À;ˆÉ¬(@ ä’€žfkÉé»°÷Í¥v³­ (@ P «”¼<JÉó„wÎ#:R¼¡s¶Uˆå(u¹^—uKר/;Ê™¥„:û’Ù!^äJµDTUM55ÝIou´Ó :›œ0×-Lús… ) =o‘ÎÜ!û8Ž÷<Ôï+Ü º÷VŒ9ÔK‡Å²uá=üQG‰åR:kž6ù5÷ÀX2êMST\¾Yåà‡soûãýÍó¯`‚Ò{jƒÀö¦Û„îq»5 ñ¶i|*âð-`WãHµ6ž:a”(^÷æÛ˜Ó/·~ù-q•i^ši¤*2d\ö °ó9ûÏ1[H P áE§Í¤‚âd¼WÂ3g† (@ P€)(*©˜‚‹\3SR˜ï ‘¢#ö§)éˆÐv=¢‡–lûãN¯8 ”'{B/•<KÚì!i¬».ú(|U‹?5ƒXÒej;Ûë? …G‡Ñf³kgR\–îc1JW™—os;]ÕÌùr[›þ-TRe®ÄçM10rö=³Ekã‚GMÓäj\aIåyB©91´ÒÝÐ ß¹qÉmÛÓ7nÿ‹¤A€ç3 葊tœ·ñ‰ttÀ~W…÷ÄNÿt>WUåÉÝÉ*i‡'ÞtÈpÿøž°Ù¹;þðYç³ÐuâF³/ÐÄ¢(@ l˜2ãÒ‚uÁÍËðÏ|VP€ (@Ìø6ªo< #³›: ö;‡>vÏÄ(ä? 8’¦k—×½†¢õÏou gž¿k@ô„\÷gj[vÇ؇µ¡{~z:£¥ã£¸¤ƒ²€¬Û=üöuy›ŒÆM²hàÔ¢1«¯Æl×Z¤É©ÐŽÎ1ñ¬lLßw„,nnªýg’¡F%9ÿ¬ÌžçÓ_§ÕéèzÓ–ï¢V“šIOm—ªGzG›ÛF­¤øw¿¦ÀÍûZU`Ú2\äû .0^µfɭͦi|WSÓÝ*Ä•¡âŠM¸™à‡õÊÛ0*ooÄÿË"MúBÓØÎÎ`çÓxNyh¼ÉàÞ‹æ÷¥+Kvœ2°Öé©2Ö–¥•ßÁhfÛåö÷†Ü)ª«ÏÂ~>gÊ&C%D‡Æë­ëÿë+[ÌG;tó:$ÖsÅØFƒ ŸOé›a B¢Ä´Äd”â\ÒøzæùLñ¹6-NÊú]Óp%K›öÏQÏí®B=ÌûΔXnÚÆhq˜Öÿ |G?5ZLßcÊq.Äã+ûîKÇß…cfâýtçt”Í2ý+`òåÙ¿µgÍ(@ P eøòsqÊ cA (@ P€ÉøËÌ1 w¯eš”‡o\rG ­·,8ßuÃúÂ]Æn­MuÕ¨ü 6 À:†{ØÄû!6íìyN)ñwÓöcJs½Ž87 $M ¥¡±êÛÐy:»èÅ÷k›.ñ¡’Êÿ‡òËÐÞ…:G?*)ß%‘õ‘RL5ÏO6˜ÇƉÿ§ ‡ÝãË%÷Ró|úóœ·4Ö=Žë‰ï™×N —ü3O|dQÙ%;¡Îß´ÉY*÷.›øH±^@þ9Ò±Á÷ËŠ±³æŽüXêöJ©®H]i,)SØùœ)gŠõ¤(F=}Š?-U`Ñ (@ P€ (,½à\P;Ò2«{±ÖðFË4i ÇEŽ[í V‰ªª<ût¾I¡0òy¾Mm¤”™8Ú4-íÄ¢‹-l)*.ŸaŸ­¡[Œæ)NmŒµ5PzÞE ln¼-¼€¾*­øöµ¬VBà K*¾ŽNçkúdz<ªýòøâò®)ª&ôÉ?êŸxøOÔ€ô¤<+Ù%"+óçZZ_Ï<Ÿ‰8ÙIÈ3Ö‹;lòuùsħí}Jut^…ò'šÖ7><ݲl‘^¯9î­mIí¿ñ^ýªEFcƒ^ÐzÙ‹ü‡ Å犞nû¸!sì|ιSÎS€°(è_@*óéfì‹` P€ (@HϹܺGÞf&M šëžÄEÀ×,‹ß%ô±{¦e_…{®ú§M…<¥2bÍçþmJG;¥tôôŸÝýëé1F?ÿf—⪑Ž'{¨¸ò«˜ŠýÑ¢ÓæNJvY‘òGAg¤cöK1yÀ>îˆ* ;9ð>÷ݨA‘*q%:vkEYY~¤tï/,©<Ï¡ƒÔ£È‘ò/…Å?Aý±¾hœ›cŒspœ ƱñVW;X#w^}ê–Ÿ+uÈÌøs±Çá}7Ù¤~wzÅèö¶zUJ$tV ¼æn·k¹º]½áSÔýU8«âp¬¹¸õ=Q/aú^Œõù¦Ä^>¯¡/«‡é·oÂÿûc©:6ÊC£Lç ‘êt—c”ñ8éš5&n?HÄ4ÜÈÇø&åZtTGjœÁþÂWŸ‹°Ì}M¤ñõÌóiðKSÈÚ¦š÷ñ~5Ø %k„÷_â3ÌbjüˆY?ãk£žÏ{››sÞl¶[Bר;aÝYÿ‰qÅõ`!éÜ›†é·e ÓÕ3ïìnQW†æ@¤ò"`S)@ P`(å‰ÏÃã (@ P€þp”£×¯³-–1£ž{õU×Ýq±¹÷±ÉoŒZ9*4«òP“XӌΛã)ïQÄïïªÀ#ºƒÖ4­m¦´´º@ëHÑn[F¤øœh'F3Gjÿ û¥¸°°´òƒKÒN}ƒƒôÄrdßÛ¡6 Sìëurõô¡èoLå¦Ì/š+qx*k–Ee©Î`÷ù8³ÿ©MÛnPÀÍ1§Ç”>Á‰&—• Ljì:tP™Þ¸+ä+qMs/Å&ãfH•ôk"cN¿x:Üô´è>Û2äõÌóé³çÍŽÕÁèçŸbO׎{£>ϰeÛÖ@˜ˆƒzÆ™W ;‘÷·ÉsŠ_+ª«=›4CÅ®[ºh–°ýþ½oÐ ,ž2ãÒ‚¡òOÔq|~ü y•%*?æ“}ì|ξsÊQ€H¸€’b„gÊ )@ P€ R&0ñ”9#QX•eè@òîµL“öðöîÞ€Œ{l+‚Ž»ÄŒ~Æ´©E¥?Ã(¬;P‡ÞÑ3!LuýpQi¥åÈsƒVœXD{/1ˆÜ‚Q±ñ¯M˜+í„ZÏè)–n4øSçþc¡q‡W}78<ˆŒBý2ÃÍ&òzŒ&]Ü35f¿ƒÉzè)‰ 熛ÇM(©4^[Ó0לÛ¸äŽ6L ? µºÙ¦Žžš}¦i¿;tFÕÎ}ö§ôOÜ qXGçèçõˆlË‚C˜æþ~ý~+ôû åæ)ó›pP·Ó,³· —y®EH¤Ï‰¯¶Ly=ó|úêi3 2zô3:“¯p úŽ]°þñcã‹çYuGÏràQýùØ%ÝeRÈS¼G õT[Ã}ÃcÂ7G8úF”–Ÿ´.oóxOe™Î6\¢Œ_"Ñwl2>·Øùœ[ç›­¥(“þ¡5.¦„LD P€ (à ðð‚¹¨ÈXËÊÜÛÚ¸Àö—eI ØO½‹ˆ_™8û¢ ñÔ¨¨ì’B/®Z‚‘ÔWÌG WJÕ‡J*¯¥£d`~[÷„F­ÒsŠt|ý-­‹k>d¿ñ®\iç Ž£Ïix‡}Ñ8è«EÇÞ²>m„²pCÃqRºOápäÎC%fajÌçÑÉkó<‰PâлñïGóÎgÌÆ€!cW +#hY:ÿeì??±¼“â\vßÒ¸ý×ÿ†ÁŠMȾÑeã1CÖJ•ÿ@†Ÿ5Sý~[¸Óª¬Ó+ñ¦Ešc K/8Â"Þ&9•7#A‰M¢TÅfÌë™ç3UO‰˜ËµÁ½‰ß±Ë@íêHïÙÂÒòóíÒ™EëYoðùø"¢O2K±=Ê çbö´ŠÏ¨ÎÎ'±cˆuUhôª§ gW~n{âþÐÓÔbÊÃL»{¹er=B6æ-WÚÙ¨uÉ|ÝQuCÿýC>–⇡ÎQ+&̪Ú{ÈXË=µ7nhxÉLnžâ õ Fcϵ,Æ:£þÛí©ËÇÏ,?Ê. £{Zë–ã=>ÞQö#u'.Fÿ½‡&n(š9wŸÞüý[ßäƒÎ‹kò;Å;¨÷¥È#ôãÙäÛ–ÕýÕ:‡ ´úŒž³0Ñ3l}/¿ýWY×?E 2æõÌó™¢gDìż÷Ø¢,Ú>9¸–¹ŒJÞŽ›4_zAÌ7ªô-SßhÓsó‹§žÁþ½ú3û[þÄÿ4‹-ªu؆ßâõ÷Z ©?ÙPžÃ²(?Ñ7 Æ~`=Û ¾?à}ûut<ÏÀ=(ÀÎç&ÜC P€ý°îÐæ~»ø (@ )Õz‹p†R ¡¡>8 îk™éóÛ:p-“ù'·ÆP› c•¬×sÕ³(ï Ã2“®zkÞ4þŒÊɆizÂô…D\¼tKçh\ólÒöÄ*çÖi¶%È•vFòÛ=â‡8ÃÅfy²ç¹¯%jd):îvÁ xŽÿõ±¹Qx˜’ÎÍ㊫vÔÆDì÷<ëuˆƒŽ#ï_\~Šiùºßݶ¤€i²¬kiZ°ÓÓ^’€ŽÔ7´('ð&žcÿ@gωèìÑç £ôÏ),)¯wÝîÕè¼ø_ÔuLüõ•·¶6Öþ$–|Ú–ÔþéV§•âs!ùX¢:æCÅœ€éÆ1r]~Õ¸iÌ”×3Ïgž1ÙÒPû8ntùA I‘D}ÑQÎkXJb ¾œˬ"f–ŒõåoÔ7ÚÄzó :„W´N›|mlm°HU_ß ýþÐi‘ª7´õüêèü/>+¯Å÷†ýzØüÖ7 éÝ0«Ï0›ËB¤h“ž±¹-€™3¸Q€ ¢ àÿADL_T¢çÌ£ (@ÜÀ?¼¦µ4Ö½”­e+ý&€‹tcRÀ/ØÔ ä*Ñ™Qg“Æo±ºSÊ–ÿêeÕÁ¶Ÿƒ¶ßgڞ’Ê3p³æ½ˆ·éì›=¦l”WRüÅQJO¡»2Ðí­ï(PÝù^°ó:Ž—žš‚‹µŸÃ{ÉI8~<~FôÍÀøo%þÝzènˆêjÏ8ͶÀ\içP.z*KŒ(ÒÓÇv„Ø„´÷`Õí‡N~Öæ\L,®ÜÓ•=#$¿<ô:îö›_km¨»Ç>¡yŠ¢ÓæNºâ™§Ø!r9:Qÿà¹êeOä ó¶¨9,?,Â…¸a£ÓÔçñ‚ù‚^jxØqÇ­[ºÈfšï ˶zd:ô{w¢µ ÏgñóÜßRž|+p›Ñ¹±q“ô6”ãŽpóƒ^ k'Wäu=UäooŒràšžæFÛ+˜Iá£Èø‚daiE½TâÌø²-x-=¢©;´ß xá÷òdþÚÍ®ž%2 Üà8Ox»zRÂûЉ(/Þk›ïä«À6Õ´ÆYwãäø!ÚË •ýËø¾o>Ž÷íg…RoK'ðAgw ]Îê@¬2JJggüÞ³ªLî£ðsŒ>„ÓMÛM‚¥ãLݶt„I8c2P€ÏxÒXe P€©À´[ø’VœêrY(@ P [];­Yq§îpàF” è5^1Õî+–…nÄsvçlxÎꑟ¢öMËö?‹¯Ç™¦Ùf¬§mfš&]qJª3Ú,‰¥ü\i§‰M¨xÞL!½ÄÚ\,ëq!ø¯¸ñài¬ØûoG…Wuq1[ÐÉÇáÞXézûàáaˆ;¿õEà86õ¬ãþ‹820NŠÎtRZϸ`œo ;Ÿ{%>ýŽŠbtTèbb»AáÓ¬üü×]­æŠúz7žJbT÷nI¹yÄzóÐ?q­d…êUáþènéíŒWÝÃeAž;Þs»' )÷Egó1¸±â‹è¼ßu¨:£sèit¦GÜPeãó 7b$wË”×3ÏçàÏv> =å¦MUË>Ý›ñ}"”<ÏW£%x^'f“ù× §”dŒP{7£œk=w„̵;“^Ï<Ÿ‰:ëÉÏSWon-Ø8/g=SƒŸ·yÒ=jMâWÓXIÕZ°þëy}Gë¡h¹Åó¼²TNE¡"Üí3v>ûì„°: ü(Ð6lýø§]»ëÆ:Q€ ü. Ùè÷:²~Ù)àºaÝ1f9•¨z.ûÖ_SÖ£Ÿ±6àW'͸ È晡;÷0UêÏmÒ¤&£u\uÚúå·¬MDy¹ÒN+tÆß‚uºÏB¬_—UøägáœÝ`ÒžDÆèÎ3¬éËä‰l¥¿óÒ¯yœûtìèOüú5E|£o§¶6Õ&¼“ª¥þæO÷Ù¨ÈfÓÊ$+ÏU-M 0ÍŸ9‰]G;BÁ™ôzæùŒpýº»¾¾ ïS¸Q²ç>χÕlt ÇlUŸæÚa™–ÆÚ¹­o&KØ 8q¶ª[ï+íË<g>Lž…ì|ΓÊ&Q€H¸¾ JGü!áù2C P€ @ö ¬iY?yEö7“-ô›À”—àbõHWtºÞæ·¶Ä[Ÿ±Ý#ÿ„Ž…6Ë| Ü ýTÚ- ußÅåÀ«P–_. ®tç„D¢Ë•vš…1/ˆ€s(:ȧ°ÌŠê †õkáÃvòAª:vn :î(ظS3Õ•Œ\žÜ‚·Ó+°¾sR×YÅTº/yJÍF=:"×%©G<ÌU?ÏuŸ–¢Ö}ú÷àa]èуIüÞLz=ó|&þü'9Gý>õcÜ|qÊÁTø¾Ø:ñúúfZ(][_³Þ5ÚZ XÕVã ãT<\“æz雚fãÜñFë4Ÿ¿ÏÎg¿žÖ‹ €ß”ø5ªäÇ»ý&ÅúP€ ¶ ()oU‡·ïàH‘Àúü-çbdÄËâ6:ÝYwÃáÊnêTR,´´Àì®Î%âÄê m:¬Ë÷KtvŸ†t­¶i/ÅÒn7ÿðæ¥5o'4ßm™åJ;MìÚšjþ3r½;dÿ‡øN“4IŒÙŒ;¾ßºa·#[—Ì3‰å ™õÆ%w´)éÀ C3 ©/]ô:QNCgŠî`}+©…%.ó»¼ Ø7$b}硪ÕÞ´`.”q-CÅ&øøZtºÍÄTþzªú¾:Þ‡Ü ‡ŒHP@¦½žy>tâS˜ n¾xÂëîÀ2êW(6ÿ~ZŽïq´5ÕÝœÂæ[ÕÞXûP wnZ¹Ó*a‚Õ!ÆçÊò„eÉŒ²N€ÏYwJÙ P€ÉÀ£z ¤{’“;s¥(@ d¥@‹êÚâÛ‹Y)ÎFmð”¸|ûó?îZ³âN=Š!ë¶ØFt«]‹F½¯;ά7|wþK°Ûû<Æ?§áû³üþ*:2f'jªíH¹ÒÎHíï»ÿ½Çu “쇎Øûëñ“êÑïÝ(ñ6/(÷kk¬»Î/7>µ5,|ЧÀ㣾^ü;=èLYÚ:I?G{¦âöËþ¸WH,ÆÏ4tjÌi_\»ºïÁdÿÝÜX÷¤F9©%þ¼f|ªm9äÈgÔsäÖ™N’-³5ÿL{=ó|¦æy‘ÈRÚ¸{>K¯ÄŒ"âÍàÏÈ;•Ÿ¥/H)OÇ{ÏÌm×@Ù´„çµfÉ­Íø®w>n^9ï™ÿHxƒgØ…›«:¬`ã´æÆÚ½Ø*ÀÎg>(@ PÀXwµ]‰`Þµn,Æ@ P€Èe\)¹J_@Ée¶==…Å•'K¡´-]:NmšL‰ßzQ>l[_\`»Ô6MoüÇ,lÁè௠G¶íjRGñà=ç=Ô÷›Ã Öïƒ §)Áž+íì=¯CýÖ#Íá6¦¼þ,fÐSè&{Ù½Ö¸'½½ñ|»(ÕuCyèãºÃJ†Ýið¸Ï$ž1I¨©éFçέ˜Êz :ZÊQš:6âsë÷* ÷Çûõ™øy)É ³o]\ó^ؽB•&k:}äû4:‹f œ‘^³R*£©~×åmJÙèg–i¯gžÏˆOu_Ð3Š´5Ô…×áç”R QÙd݉¯Nb¦±>¯ÇÃZjï÷5Ì •Ó#Æñžy”PÞ‰8¬oœIF‡}Ï{´«û´5Ôþ`u}½ÉÌ ƒÔ–»rIŸsÜ(@ P€æ¡’ò¯á¢Á]æ)I P€ÈALw‹;ÑÏ@Ë“ñÿe“mð}­ ß×fÚ¤ÁSõ9tFn—&³¢'—ŸéIù'ÛZëx‰è5ûüB,$]&¤< ï Ç¢X—;îí]œë…#þØzÈä¿‹j,˜æ-WÚiÊ\TvÉNª«³ }Ócž„t;™¦§Gƒê Ì źB 31J¬¯M(©8OÒo£R³ð“Gå^Àh¯ßµºû~xÞÇÑ_$P:ïhO¹_ÇûI*4.E•Òß‘Ã{ì]J¨z|mLQ¹6ÅÈÂÒò/H%a#JðÇË=³RÔc$ØB“ƒ…¥•ßÅsüº¡*‹A›ä7T>±ÏÀ×sNžÏPI…~­™l¯ ö“ÀTÇô|–vv”bM”sñYzÊG\¼ï<‡÷ÅÈãn¼÷|G^¾KŠì²ÕI÷ôCQÁX êUžÄAwéeyLfGÂsm)Ê+5AÁM¯S[–ÎÙ$–1™)€×7 P€ €@QiÅï±VÔ%v©M P€È·°ÎêÉžî6g4ÙPkqeUcTw—Õ¿÷wÊÛÔ™õ£ª«±/¿gÝq€Qe›±Þh—õ‰ˆ– ¬,ü–Q‡:y$:%÷SRí!…ÜùB¸¨ª;¥û^TÕk7ãq1ñ!Õ›J8/+é>×Þ°ÐÓæ~Úò\iç§-ŽþWYY Ô=æL Îç~ž‚WíßEøŽŸaøéÝ0bZ®EÜG9ÿ_üý®ÿÓñijkšjßí ÊÔßcgÍtóŽŽwÂÖ×€Üm»âù?mêuÐÏýuøY…×Ç*¼NÞVJ¾â)çïk›jÞÏÔ¶ûºÞXç>4võ±B©Óq^ŽÇùÐÖy=>œþŠNŸ¿ ÏåÕé,Åp$FHƒ6èµVõkxWüè×o¯‘~Îⵋu£•X‰v®”Ž|¯ùÇpÓJì7ÞôtÚ­õûBÔmݺ=>I÷4ûùzΡó©ÏOÔ'ѶƒAÏq}zÈŽÕǹ?jõaŽÄg©R˜eŸ¥Rì×¥¾qFßàÕûzÔ³è×£þ¼x Ÿ§+ñYòŒ((x¢¥þæO°/ë7ýo‚`Gøh%ð}NxßÚ¿wÃþ¬…½é÷-}óÏøà;¦÷n”|.°¥ë“gAï*­xï}_è}õwÀÙ¯uÉü7£Æð`F à5É (`)€‹&E£ïí“zD7 P€ ¶ È‚NøØ—.zoû.þA P t–çĈÎ\i§ùs@_«3¥fžkæEÒÁçlâ)sFvçç„eÒ7 `šî=Сº;:0Bx–†Pž7Êèë©qõkpÃÄGBx¢ÓãmG©WU0ðrëÁ»®Ìâ÷5>gõ3`ð-m2±ÎƒëçÚ^~¯0?ã ¶ W<ƒÏ‡ÃM*€åBv÷ýM”& aLDý&Ê (`/€è®ѵ¸ƒw®}b¦ (@ d¥ÀÊ€’§dÈ´¬<;l(@ P€ÉHpFr*É\)@ P ™¡’J, ‚YL 6· 0vm}ÑÚöÙ1ćì|öáIa•(@ d€ —Ó±\:dz^W5™U¥(@ "€5ž»Ãùåœj{î¢(@ P€ (@¬Ø¥¸jD—tõtæ&}Ž›°¾¸ž"[ ĺØx“°i (`! Z›Üèy˜”âi‹t ¥(@ d‹@ Ö¨¼ µ¡î v (‹ÀJ$zTJ¹´eýn+ÄcÕáX2a P€ (@ P€ @¶(Gžlz;¶ôÔsÙÒn¶#²€é0øÈ9ð(@ P šÀ‰ÕÁ c?üŒ'¼Ý„+wRÂãOѼxŒ |% ¥Z/…\çtt½¹fÅ›|U9V† (@ P€ (Fmë=·¡ ÃLªe«ŽÃìaO˜Ä2&sعçŽ5§(Ö¼u-®ç‘gŒµ¤(@ P€ (@ P€ (0¤@§tË0ÊÕ¨ã™uŒÜè=ß2d® Èt®ùœégõ§(@ P€ (@ P€ (@ P€ @*ª«t<_eZ¤’bù{-ê0g\æ päsæž;Öœ (@ P€ (@¢œª =IDAT P€ (@ P KB%声Ô Oz—µ5,|ÆOÍ ½´ªõÙ߸NJÞcËÀŒàÈçŒ>}¬<(@ P€ (@ P€ (@ P€ @Ö `d±Pòn%Ä‘R9+ŠJ+óKÑ)¾‹Pâ:Óú`„tÛ¸îáËMã—Ùì|ÎìóÇÚS€ (@ P€ (@ P€ (@ d™@á «®RokÖh¥Äƒ¡’Н¤½™eeùBÈ? !Óº(¡nZùÀM¦ñŒËl@fWŸµ§(@ P€ (@ P€ (@ P€ @ö—Ÿ-¤üm¿åáñY#÷:lóÁS¯¿ŽAÑ)ÞÊÊ¡®Ñõ(õT‹’7uȯv¾þÒ‹4 Í`v>gðÉcÕ)@ P€ (@ P€ (@ P€ ²G hÖ¼C”Mh‘îl¸Iyì·àÔáûNbË›/´ HΞ1§_gôécå)@ P€ (@ P€ (@ P€ ²A`âì‹&xžûÚ2Ô”Ö“¥TóF|vš3ò £^Øüús]ÉlaqåÉÇ]†2¦[–óöNܯ­{ïå°e:†g°ÖøæF P€ (@ P€ (@ P€ (@ ¤Mk)‡:G?„ò·«ƒjJ\‡õ¡ëZl´K=º¨¤b FaW ¡¾=rð£Jª/µ5,xxð£Ü›­ì|ÎÖ3ËvQ€ (@ P€ (@ P€ (@ d„@¨¸âVt _Ge7cè?%ïµ1üÔ{-êˆ%¯)3.-X›¿é4G9s”P%È#¦Y”Ñy]KcÝ÷c©Ód¶;Ÿ3ûü±ö (@ P€ (@ P€ (@ P€,*)¿HyKâš · ¯'¥PÏ ¥Þ”R¾…Žé5*Øöºô1tò‡;ž¡è³昀“cíes)@ P€ (@ P€ (@ P€ (à+¶%µÿv Ó¥K|U1ÓÊ(ñl°Û;†Ϧ`ÙÇ‘ÏÙ{nÙ2 P€ (@ P€ (@ P€ (@ •TVaìPí‘™Put6Þ^P°áâÕõõ=ëIgBYÇä °ó9y¶Ì™ (@ P€ (@ P€ (@ P€Ö㊫vÈðï±óLëÄ©J D;V”¾¸¥iÁ}©*’åø_€Ïþ?G¬!(@ P€ (@ P€ (@ P€ @ L(wª§¼Ÿ¡é‡ø¨ùJIq»Óí~¯åþEû¨^¬ŠØù샓À*P€ (@ P€ (@ P€ (@ P ‚€,,®(uñ¥ÄQbR±[¡û!¿ßÜXûÏTÈ22O€Ï™wÎXc P€ (@ P€ (@ P€ (@(š5ï婯£éeXz×l@‡âÂsÛ²lÑ[)*“Åd¨;Ÿ3ôıÚ (@ P€ (@ P€ (@ P€¹+0±tî®8UHy*:¢‡ÄèÄiÈ”P:JýiLxä#+¸©3qy3§l`çs6Ÿ]¶ (@ P€ (@ P€ (@ P '&ž^¾—rÄTOŠ„’“•T»I!wCã ñ3 ?#ñÄÞÂøÙ„ŸRŠUJ©÷”tÞEgóËnP>ݾ¸vµâF P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (@ P€ (ŸÀÿ“.›6™°èÙIEND®B`‚pystac-client-0.9.0/docs/_static/custom.css000066400000000000000000000003661503646565400207240ustar00rootroot00000000000000.no-sidebar { display: none; } .card-text a { font-weight: 600; color: rgb(255, 26, 26); } .card-header p { font-size: large; font-weight: 600; } .navbar-brand img { height: 50px; } .navbar-brand { height: 75px; } pystac-client-0.9.0/docs/api.rst000066400000000000000000000037741503646565400165630ustar00rootroot00000000000000API Reference ============= This section is autogenerated from in-line code documentation. It is mostly useful as a reference for the various classes, methods, and other objects in the library, but is not intended to function as a starting point for working with ``pystac_client``. Client ------ Client is the base PySTAC-Client that inherits from :class:`Catalog `. In addition to the PySTAC functionality, Client allows opening of API URLs, understanding of conformance, and support for searching and paging through results. .. autoclass:: pystac_client.Client :members: :undoc-members: :show-inheritance: Collection Client ----------------- Client is the a PySTAC-Client that inherits from :class:`Collection `. In addition to the PySTAC functionality, CollectionClient allows opening of API URLs, and iterating through items at a search endpoint, if supported. .. autoclass:: pystac_client.CollectionClient :members: :undoc-members: Collection Search ----------------- The `CollectionSearch` class represents a search of collections in a STAC API. .. autoclass:: pystac_client.CollectionSearch :members: :undoc-members: :member-order: bysource Item Search ----------- The `ItemSearch` class represents a search of a STAC API. .. autoclass:: pystac_client.ItemSearch :members: :undoc-members: :member-order: bysource STAC API IO ----------- The StacApiIO class inherits from the :class:`Collection ` class and allows for reading over http, such as with REST APIs. .. autoclass:: pystac_client.stac_api_io.StacApiIO :members: :undoc-members: :show-inheritance: Conformance ----------- .. automodule:: pystac_client.conformance :members: :undoc-members: :show-inheritance: Exceptions ---------- .. automodule:: pystac_client.exceptions :members: :undoc-members: :show-inheritance: Warnings -------- .. automodule:: pystac_client.warnings :members: :undoc-members: :show-inheritance: pystac-client-0.9.0/docs/conf.py000066400000000000000000000101571503646565400165500ustar00rootroot00000000000000# Configuration file for the Sphinx documentation builder. # # This file only contains a selection of the most common options. For a full # list see the documentation: # https://www.sphinx-doc.org/en/master/usage/configuration.html import re import subprocess import sys from pathlib import Path # -- Path setup -------------------------------------------------------------- # If extensions (or modules to document with autodoc) are in another directory, # add these directories to sys.path here. If the directory is relative to the # documentation root, use os.path.abspath to make it absolute, like shown here. # sys.path.insert(0, str(Path(__file__).parent.parent.parent.resolve())) from pystac_client import __version__ # noqa: E402 git_branch = ( subprocess.check_output(["git", "rev-parse", "--abbrev-ref", "HEAD"]) .decode("utf-8") .strip() ) # -- Project information ----------------------------------------------------- project = "pystac-client" copyright = "2021, Jon Duckworth" author = "Matthew Hanson, Jon Duckworth" github_user = "stac-utils" github_repo = "pystac-client" package_description = "A Python client for the STAC and STAC-API specs" # The full version, including alpha/beta/rc tags version = re.fullmatch(r"^(\d+\.\d+\.\d).*$", __version__).group(1) # type: ignore release = __version__ # -- General configuration --------------------------------------------------- # Add any Sphinx extension module names here, as strings. They can be # extensions coming with Sphinx (named 'sphinx.ext.*') or your custom # ones. extensions = [ "sphinx.ext.autodoc", "sphinx.ext.viewcode", "sphinx.ext.intersphinx", "sphinx.ext.napoleon", "sphinx.ext.extlinks", "sphinxcontrib.fulltoc", "nbsphinx", "myst_parser", ] extlinks = { "tutorial": ( "https://github.com/stac-utils/pystac-client/tree/{}/docs/tutorials/%s".format( git_branch ), "tutorial", ) } nbsphinx_allow_errors = False # Add any paths that contain templates here, relative to this directory. templates_path = ["_templates"] # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. # This pattern also affects html_static_path and html_extra_path. source_suffix = [".rst", "*.md", "*.ipynb"] exclude_patterns = ["build/*"] # -- Options for HTML output ------------------------------------------------- # The theme to use for HTML and HTML Help pages. See the documentation for # a list of builtin themes. # html_theme = "pydata_sphinx_theme" # Theme options are theme-specific and customize the look and feel of a theme # further. For a list of options available for each theme, see the # documentation. # html_theme_options = { "icon_links": [ { "name": "GitHub", "url": "https://github.com/stac-utils/pystac-client", "icon": "fab fa-github-square", }, { "name": "Gitter", "url": "https://gitter.im/SpatioTemporal-Asset-Catalog/" "python?utm_source=share-link&utm_medium=link&utm_campaign=share-link", "icon": "fab fa-gitter", }, ], "external_links": [ {"name": "STAC Spec", "url": "https://github.com/radiantearth/stac-spec"} ], "navigation_with_keys": False, # "navbar_end": ["navbar-icon-links.html", "search-field.html"] } html_logo = "_static/STAC-03.png" # Add any paths that contain custom static files (such as style sheets) here, # relative to this directory. They are copied after the builtin static files, # so a file named "default.css" will overwrite the builtin "default.css". html_static_path: list[str] = ["_static"] # -- Options for intersphinx extension --------------------------------------- intersphinx_mapping = { "python": ("https://docs.python.org/3", None), "requests": ("https://requests.readthedocs.io/en/latest", None), "pystac": ("https://pystac.readthedocs.io/en/latest", None), "dateutil": ("https://dateutil.readthedocs.io/en/stable/", None), } # -- Options for autodoc extension ------------------------------------------- autodoc_typehints = "none" pystac-client-0.9.0/docs/contributing.rst000066400000000000000000000162451503646565400205160ustar00rootroot00000000000000Contributing ============ A list of issues and ongoing work is available on the PySTAC Client `issues page `_. If you want to contribute code, the best way is to coordinate with the core developers via an issue or pull request conversation. Development installation ^^^^^^^^^^^^^^^^^^^^^^^^ Fork PySTAC Client into your GitHub account. Clone the repo, install `uv `_ then sync and activate the created virtual environment: .. code-block:: bash $ git clone git@github.com:your_user_name/pystac-client.git $ cd pystac-client $ uv sync $ source .venv/bin/activate Testing ^^^^^^^ tl;dr: Run ``./scripts/test`` to run all tests and linters. PySTAC Client runs tests using `pytest `_. You can find unit tests in the ``tests/`` directory. To run the tests and generate the coverage report: .. code-block:: bash $ pytest -v -s --block-network --cov pystac_client --cov-report term-missing The PySTAC Client tests use `vcrpy `_ to mock API calls with "pre-recorded" API responses. When adding new tests use the ``@pytest.mark.vcr`` decorator function to indicate ``vcrpy`` should be used. Record the new responses and commit them to the repository. .. code-block:: bash $ pytest -v -s --record-mode new_episodes $ git add $ git commit -a -m 'new test episodes' To update PySTAC Client to use future versions of STAC API, the existing recorded API responses should be "re-recorded": .. code-block:: bash $ pytest -v -s --record-mode rewrite --block-network $ git commit -a -m 'updated test episodes' Code quality checks ^^^^^^^^^^^^^^^^^^^ `pre-commit `_ is used to ensure a standard set of formatting and linting is run before every commit. These hooks should be installed with: .. code-block:: bash $ pre-commit install These can then be run independent of a commit with: .. code-block:: bash $ pre-commit run --all-files PySTAC Client uses - `black `_ for Python code formatting - `codespell `_ to check code for common misspellings - `doc8 `_ for style checking on RST files in the docs - `ruff `_ for Python style checks - `mypy `_ for Python type annotation checks Once installed you can bypass pre-commit by adding the ``--no-verify`` (or ``-n``) flag to Git commit commands, as in ``git commit --no-verify``. Pull Requests ^^^^^^^^^^^^^ To make Pull Requests to PySTAC Client, the code must pass linting, formatting, and code tests. To run the entire suit of checks and tests that will be run the GitHub Action Pipeline, use the ``test`` script. .. code-block:: bash $ scripts/test If automatic formatting is desired (incorrect formatting will cause the GitHub Action to fail), use the format script and commit the resulting files: .. code-block:: bash $ scripts/format $ git commit -a -m 'formatting updates' To build the documentation, `install Pandoc `_, install the Python documentation requirements via pip, then use the ``build-docs`` script: .. code-block:: bash $ pip install -e '.[docs]' $ scripts/build-docs CHANGELOG ^^^^^^^^^ PySTAC Client maintains a `changelog `_ to track changes between releases. All Pull Requests should make a changelog entry unless the change is trivial (e.g. fixing typos) or is entirely invisible to users who may be upgrading versions (e.g. an improvement to the CI system). For changelog entries, please link to the PR of that change. This needs to happen in a few steps: - Make a Pull Request (see above) to PySTAC Client with your changes - Record the link to the Pull Request - Push an additional commit to your branch with the changelog entry with the link to the Pull Request. For more information on changelogs and how to write a good entry, see `keep a changelog `_. Benchmark ^^^^^^^^^ By default, PySTAC Client benchmarks are skipped during test runs. To run the benchmarks, use the ``--benchmark-only`` flag: .. code-block:: bash $ pytest --benchmark-only ============================= test session starts ============================== platform darwin -- Python 3.9.13, pytest-6.2.4, py-1.10.0, pluggy-0.13.1 benchmark: 3.4.1 (defaults: timer=time.perf_counter disable_gc=False min_rounds=5 min_time=0.000005 max_time=1.0 calibration_precision=10 warmup=False warmup_iterations=100000) rootdir: /Users/gadomski/Code/pystac-client, configfile: pytest.ini plugins: benchmark-3.4.1, recording-0.11.0, console-scripts-1.1.0, requests-mock-1.9.3, cov-2.11.1, typeguard-2.13.3 collected 75 items tests/test_cli.py ss [ 2%] tests/test_client.py ssssssssssssssss [ 24%] tests/test_collection_client.py ss [ 26%] tests/test_item_search.py ...sssssssssssssssssssssssssssssssssssssssssss [ 88%] s [ 89%] tests/test_stac_api_io.py ssssssss [100%] --------------------------------------------------------------------------------------- benchmark: 3 tests -------------------------------------------------------------------------------------- Name (time in ms) Min Max Mean StdDev Median IQR Outliers OPS Rounds Iterations ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- test_single_item_search 213.4729 (1.0) 284.8732 (1.0) 254.9405 (1.0) 32.9424 (3.27) 271.0926 (1.0) 58.2907 (4.95) 1;0 3.9225 (1.0) 5 1 test_single_item 314.6746 (1.47) 679.7592 (2.39) 563.9692 (2.21) 142.7451 (14.18) 609.5605 (2.25) 93.9942 (7.98) 1;1 1.7731 (0.45) 5 1 test_requests 612.9212 (2.87) 640.5024 (2.25) 625.6871 (2.45) 10.0637 (1.0) 625.1143 (2.31) 11.7822 (1.0) 2;0 1.5982 (0.41) 5 1 ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- Legend: Outliers: 1 Standard Deviation from Mean; 1.5 IQR (InterQuartile Range) from 1st Quartile and 3rd Quartile. OPS: Operations Per Second, computed as 1 / Mean ======================== 3 passed, 72 skipped in 11.86s ======================== For more information on running and comparing benchmarks, see the `pytest-benchmark documentation `_. pystac-client-0.9.0/docs/design/000077500000000000000000000000001503646565400165165ustar00rootroot00000000000000pystac-client-0.9.0/docs/design/0001-record-architecture-decisions.md000066400000000000000000000007451503646565400253400ustar00rootroot00000000000000# 1. Record architecture decisions Date: 2021-03-01 ## Status Accepted ## Context We need to record the architectural decisions made on this project. ## Decision We will use Architecture Decision Records, as [described by Michael Nygard](http://thinkrelevance.com/blog/2011/11/15/documenting-architecture-decisions). ## Consequences See Michael Nygard's article, linked above. For a lightweight ADR toolset, see Nat Pryce's [adr-tools](https://github.com/npryce/adr-tools). pystac-client-0.9.0/docs/design/0002-choose-stac-library.md000066400000000000000000000060371503646565400232770ustar00rootroot00000000000000# 2. Choose STAC library Date: 2021-03-01 ## Status Accepted ## Context We would like to use an existing Python library for working with STAC objects as Python objects. Ideally this library will meet the following requirements: * **Actively maintained** to ensure that it is up-to-date with the latest STAC spec * **Well-documented** to reduce the documentation burden for this library * **Easily extensible** to allow us to take advantage of existing STAC object functionality The 2 most obvious choices for Python STAC clients are [`PySTAC`](https://github.com/stac-utils/pystac) and [`sat-stac`](https://github.com/sat-utils/sat-stac). ### `PySTAC` `PySTAC` is an actively maintained STAC client for Python 3. Its last release was less than 2 months ago and its last commit was less than 2 weeks ago. It has had 15 contributors within the last year and it supports the latest release candidate for the STAC spec (as well as previous releases). `PySTAC` hosts [documentation on ReadTheDocs](https://pystac.readthedocs.io/en/latest/) that includes a description of programming concepts related to the library, quickstart instructions, tutorials, and an API reference. `PySTAC` supports both reading and writing of STAC objects. Extending `PySTAC` classes through inheritance is made a bit more difficult by the fact that some class methods (like ``from_dict``) have references to specific classes (like ``Catalog``) rather than using the ``cls`` argument. This will require us to overwrite some of these methods to implement inheritance. It has robust support for traversing catalogs using links. There is no existing support for the STAC API spec in `PySTAC` or any related tooling. ### `sat-stac` `sat-stac` is an actively maintained STAC client for Python 3. Its last release was less than 2 months ago and its last commit was at that same time. It has had 2 contributors within the last year and it supports the latest release candidate for the STAC spec (as well as previous releases). `sat-stac` has installation documented in the GitHub repo's main README and has 2 tutorials in the form of Jupyter Notebooks in that repo. `sat-stac` supports reading STAC catalogs (support for writing STAC catalogs was removed in v0.4.0). There is also an existing library for working with STAC API - Item Search results called [sat-search](https://github.com/sat-utils/sat-search) that uses `sat-stac` as its backend. ## Decision We will use `PySTAC` as our "backend" for working with STAC objects in Python. While both libraries are well-maintained, `PySTAC` has more thorough documentation and seems to be more widely supported through community contribution. ## Consequences We will need to create our own implementation of a STAC API - Item Search client since there is not existing tooling based on `PySTAC`. We will be able to point to the hosted documentation for `PySTAC` to guide users through existing functionality for navigating STAC Catalogs. Special care should be taken to ensure that we do not break any of `PySTAC`'s functionality through inheritance. pystac-client-0.9.0/docs/design/design_decisions.rst000066400000000000000000000005371503646565400225660ustar00rootroot00000000000000Design Decisions ================ `Architectural Design Records (ADRs) `__ for major design decisions related to the library. In general, this library makes an attempt to follow the design patterns laid out in the PySTAC library. .. toctree:: :glob: :maxdepth: 1 * pystac-client-0.9.0/docs/images/000077500000000000000000000000001503646565400165125ustar00rootroot00000000000000pystac-client-0.9.0/docs/images/stacterm-cal.png000066400000000000000000000520551503646565400216060ustar00rootroot00000000000000‰PNG  IHDRØÁlw¡~ ÔiCCPICC ProfileH‰•—T“Y€ßÿ§7Z )¡7A:¤„Ð(½ŠJH %†„ bGGp,¨ˆ`ÐAGG@lˆ(EìdPQ×Á‚ •ý%ÌÌžÝ={Ïyy_nî»åûι€âÇ‹3a²D9’È@_z|B"7Ѐ 4€°âp¥bfxx(@dzÿ«¼ïÐÄ~ËfÂ׿ÿþ_EÇ—r€’NáI¹Y·!ë W,ÉU‹è—æˆ'¸ au ’ Âò N›âwœ2Éhü¤Mt$ a]ðdG’ÙÑÓs¹iˆrÂv"žP„pÂ^\‡‡p ³³²–Lðï[ öb(d„)ò™öÿ) ÿNš‚§êš¼ŸP*Îä,û?¯æKV¦l:†²ÈIP$²+!÷w'cIˆ‚E)óæYÈ›´Ÿd,(fš¹RVâ4ó8~!г™óC§9UÀVøÉaGO3_ê5Í’%‘ŠX©sš9’™¸²Œ…^Àg+üç ¢ã¦9W;š¥Q!36,…^"‹TäÏúÎÄ PÔž%ýS½B¶âlŽ :HQ;g&¾ˆ9ãS¯ÈÇ÷󟱉QØ‹s|±Ä™á {~f B/ÍRœÍAšsæl¸âÓ9ÁáÓ Â8WÀ, @?/g¢Öñ2‰0MCg"/Og‹¸¶³évöL¼Û©Vx{gò=B4üŒ.;iaäÀÆ3ºd¤OO– a9£3EúšRÀ)9W&ÉÒ¡'>0€”:ÐúÀX$?à|€?a $€E€  HÀR°¬E l;@ØöƒZpÍà48.kàè÷ `¼cá D…´!Ȳ† äùC¡P$”%Ci’A+ uP T U@UPô3t:]z »Ð4 ½>Ã(˜ «Ãz°<fÀL8ކÂip6œ›àr¸> 7Áçákp/,‡_À£(€"¡h(C” Šb¡ÂP‰¨T”µ UŒ*CU£P­¨NÔ-”õõ ESÑt´ Ú„ŽAsÑÙèUèè t-º ݾ…@ ¿a(]Œ5ÆÃÆÄcÒ0K1E˜2L ææ"¦3„yÅbiXs¬+6›€MÇ.ÇnÄîÁ6bÛ°=ØAì(‡ÓÆYã/ÂàËð‡ðgñ7ñOñc‚)ÁFà–6Z × C„1¢*ÑœèIŒ&¦×ˉ Ä‹ÄÄ·$ɈäFŠ IkH夣¤Ë¤Ò'²ÙŠÌ"'‘eäMäƒä6ò]ò[ …bFñ¡$Rr(›(u” ”G”JT%[%¶OiµR¥R“ÒM¥WÊeSe¦ò"å|å2åãÊו_ªTÌTX*•U*•*'UúUFU©ªöªaªYªU©^Q}¦†S3SóW㩪íW» 6HEQ©,*—ºŽz€z‘:¤ŽU7Wg«§«—¨QïVÑPÓpÒˆÕÈÓ¨Ô8£!§¡hf46-“¶™vŒÖGû¬©§ÉÔäknÐlм©ùAk––_«X«Q«Wë³6]Û_;C{«v³öC´Ž•N„ÎR½:u^ÎRŸå1‹;«xÖ±Y÷ta]+ÝHÝåºûu»tGõôõõÄz»ô.è½Ô§éûè§ëo×?«?l@5ð2l78gðœ®AgÒ3éåôúˆ¡®a¡Ì°Ê°ÛpÌÈÜ(ƨÀ¨Ñè¡1јaœj¼Ý¸ÝxÄÄÀdžÉ “z“{¦S†©Àt§i§é3s³8³õfÍfÏ̵ÌÙæùæõæ,(ÞÙÕ·-±– Ë Ë=–7¬`+g+U¥ÕukØÚÅZh½Çºg6f¶ÛlÑìêÙý6d¦M®M½Í€-Í6Ô¶À¶ÙöÕ“9‰s¶ÎéœóÍÎÙ.Óî€Ý}{5û`ûûVû7V\‡J‡ÛŽÇÇÕŽ-ޝ¬øN{î8Sç9¯wnwþêâê"qipv5qMvÝíÚÏPg„362.»aÜ|ÝV»vûäîâžã~Ìý CÏæšÏåÏ=0wÐÓÈ“ãYå)÷¢{%{ýè%÷6ôæxW{?ö1öáùÔø¼í¼a¾'¿”ÿ4Õ3µ4õYšgÚ¶´a· LðRÈV_§¥ïKÿ–q0c<3.³1 Ÿ•œuR¤&Êu,Ñ_’·¤Gl-.˳ݳwdHB$5RHºPÚ’£Ž H]2 Ùw²\¯ÜÊÜKc—ÏSÍåu-³Z¶aÙÓü€üŸ–£—s—·¯0\±vÅÀJæÊªUЪ”Uí«W®Z¸¦v-qmÆÚ_ ì J Þ­‹[×Z¨W¸¦pð»Àïê‹”Š$Eýë=Öïûý½ðûî ŽvmøVÌ+¾ZbWRVòe#wãÕì(ÿa|Sê¦îÍ.›÷nÁnméÛê½µ¶Tµ4¿tpÛ¼mMÛéÛ‹·¿Û±xÇ•2§²};‰;e;åå¡å-»LvmÙõ¥BPÑ[é[Ù¸[w÷†ÝöðöÜÜë³·aŸÞ¾’}Ÿþx§*°ª©Ú¬ºl?vîþ'btþÄø©®F§¦¤æëAÑAymdmGk]Ý!ÝC›ëázYýðá¤Ã7Žøii°i¨j¤5–GeGŸÿœüsß±cíÇÇ~1ýe÷ ê‰â&¨iYÓH³ YÞ’ÐÒs2ød{«Gë‰S¶§ž6<]yFãÌæ³Ä³…gÇÏåŸm·½<Ÿv~°}qûý ñnwDtt_ ¹xùRÀ¥ ÌÎs—=/Ÿ¾â~åäUÆÕæk.ךºœ»Nüêüë‰n—î¦ë®×[n¸Ýhí™Ûsö¦÷Íó·ün]ºÍ¾}­w~oO_Lßþ¤~ùÞgw3ï¾¾—{oìþš˜ÅU–=Ò}Tý›åorù™¿®ÇQïr_ü.ýýËPáÊ“²§Oëž9<;=0|ãù‚çC/Ä/Æ^ýCõ»_Y¼úåŸ?ºFâG†^K^¿ÙøVûíÁwNïÚGÃG½Ïz?ö¡ø£öÇÚOŒOŸã>?[ú÷¥ü«å×Öo!ߌg‹9Îä(€Bœš À›ƒÈœõÄSsõ¤@Sÿ& ü'žš½'Å€š6¢×êÀÞ‰Qa ²Â‘ïÑ>vtT¬‰4ÕÑaÊ©MÊÆÇß"s#΀¯ýããcÍãã_kdïÐö~jžŸìq̳&èªt ø›LÍúªñï;˜ÈÀ ü}ÿ'uçTÃhfVeXIfMM*‡i’†D Ø ÁASCIIScreenshot º]OÖiTXtXML:com.adobe.xmp 193 472 Screenshot o @IDATxí} œÅõÿë=€–CP.E¼4^ñHüy_¨1c Ä?ñŠšü„x¡ þ”¨QÄQðFE<‚ž€‘KnaaÙ]v·ÿï[C½CwuOõÌîÌì{|–îéªzUõíê~]×ûZ;v´I$4–eÑž{îéÿ§Ÿ~¢ŠŠ ßð\¸á†è•W^¡ï¿ÿ¾Îª*÷¨Î ¯ÓŒå¾×)ü’¹–XTä’ ‚€ ¼ˆé%¹ „D eË–Ô¶m[ߨ­[·&ôÂÅ4]¢ù-µ‹@Aíf'¹ õÝvÛFMEEEªò[·n¥çŸž&Ož¬~wïÞþñPƒ ȶmzæ™ghÒ¤Idš®þ!,52éÁfæ}‘Rå´páBºñÆiРA´aúì²Ë(//öøázII‰ Ã>š6mJ¦ér:©Š ÕˆÍêÛ'…ÏÖ®]KǧE‹ (z®:tPÆôÅ_T†·E‹j˜ø´ÓN#ÓtÙ€‰”Q¨ˆ­wYê˜QôíÛ—ª««iþüùÔ©S'U¶yóæÑàÁƒÕ ôÊÊJjß¾ý.e6M·‹"¹ µ‚€ØZY2bqÄtØa‡ÑË/¿LÛ·o',`‚´jÕŠŽ9æ5j”2¾ÅÅű;þ7MWC‰üZE@ l­Â-™ÕgöÝw_Â>á¹sçÒ„ 7nTÇë®»ŽfÍš¥Â07‹9YGLÓ9éå(uƒ€غÁ]r­g´iÓ†î¸ãZµjÝzë­ñÚ/_¾\cNväÈ‘„9X,nB<ˆi:•Xþ:E@¶éÔ)ü’y}@+‚ï»ï>5ô;vìXêÖ­›ªöŠ+”!ݲe‹.FÏõª«®R[uÞyçµøÉ$]}ÀTê(dâÉ)î’”1«8øàƒÕ>×ÄJŒ3†Þzë-êÝ»7Ý|óͪçŠ8'N¤^xLÓ%æ#¿A n[7¸K®‚@ àÁ©sç΄^-?…ÓtaõKD²Ü;´™DÙgŸ}èæ›o¦ÝvÛªªªè½÷Þ£G}4í´ÓN£?üáªm¾ÿþûôðÃÇüÚËàÁƒÕKTÚ`&9aÖ­[GÇ{¬j_x·lÙ²%Ž‹É{ í ïË¡C‡ÒG¡zÈè±Þu×]4wî\¥†ü’K.QÆÝýŽŒg,'žì´BžÁ¹q±´´”0´wË-·Ð¼yóèÒK/¥öíÛ«Ê5iÒ„ºwïNÏ=÷-X°€N?ýtÕˆˆ°fÍšÅAhذ¡2†¸ Ó‰ð¢¢":å”SÔ‹øÁ¤… Ò´iÓ¨Q£Ftæ™g" 5hЀ:è úïÿ«~ËÙ@»ví衇ŠÿuëÖM½ n¿ývõrú׿þ¥>Ê0tçž»jÓ¦ á#mΜ9ôë_ÿºÆP³W{Ò³£MÔf)gÍš¥>â~ÿûß«aÛêêêxö&ï%$þÓŸþ¤:ÐþO>ù„Z´h×»ï¾ûz¾#ãäÄza`ï¾ûnš={6xà„¹YH×®]ã€|ýõ×ôú믫&z±={öŒ‡ùéDº+V¨ž.zÀ0²˜ƒÃµ“O>Y©=ãŒ3Ôñ¥—^RGù/;¨¬¬¤Õ«WÇÿðR;ì°ÃÔGÕ÷ßO{î¹§º×Û·o',qR¯¾úªj¶mÓI'ä©cb{©èñCÚ (õàz—h‡~8M:µFMÚsÌ1´víZÕkÅà#<¢Œ¬£Üä餭ÏÇœ"ö»‘÷ß?uìØ‘6nܨ&ë=GЫ…`n Ò²eKuÔý¤igΜ¹‹ŠI“&Ñ5×\CèÍÀÐâ¥êâÙ%\È80D‡Þª[œ¹0ÜWüAðÂrß[÷°òÖ­[©G„…yŽxµ'Ìë(mÐ •úq ÓMX™þî»ïÐ9bÚ&ð>ÄÔ—Ÿ˜¼#ýtÕ§ë9i`‹‹‹é—_~Q÷C:u¢aÆѷß~K½{÷¦ÿýßÿ­1G‹Þ„—` Ct.]ºÄ£„щÈXå—(&4h]yå•´Ç{Ð<E~g!ÎÇæK¿ùæÏ gë¦ °úØ-^íEÚ !9w˜©Î1,‡FC† Q¿9X÷Â÷9"9¿ßzë-‚ñ~üñÇãs· £Ó­Geìú ]úôéãÛÓqE•Ó CÀïKób˜g¿úê« Ãt´,†r½Ñ‘#GªŸh“‰û vçÄÇQÚ  9÷Cí2Ê{ mvĈê}‡wôÝ{ï½ñìÛfâïxD9©€Ås“Þã£5¢eþl¾Æ<+†:_\(=Vġװ~ýú¤*ƒ•¾­[·VÛlšê<þøã•ÁDzxgkQ¢nù½`å0Úîmâ‹Ó¸–L;”6˜½m¡.Jnú^BY1ú‡žì²eËTG¥.ÊŸKyæŒÍ–›rçwÒ~ûí§†°±ØID¨m¤ Ö6â’_}E '†ˆ³éæa8µŸyæ™l*¶”5‡6˜C7Sª’ÑH6£oNA [ȉUÄu~&2L´mÛVͧtèLeùr]—´³\¿Ã™Q?igé¹Ú!ât07ÀçjãÆ=kƒ›Œ­+É€ œØèÞgcÇŽU+;Ãl‡HÌ3¨œ¦ ¦l,‰åsÿ†ëÅóÏ??îÆ ½°$ФC§_y¤ù?ÒÎüZMò×¥I;Ã".H*Þ‘aZ ÖÀ¦ƒ¹á¦›nR>xQQø¼|óÍ7É1€ÉW(ì?LäÚÄ^D¶C˜HªË锘¦’Nºá[ù»ï¾SÛCðÁßQ$:uå‘vÖ@}¥âypp–væ ±ó(íLÚ¶#¥â¹³UéÏ´IuÌ ½zõ¢k¯½V½ðEðüóÏ+_«º,-4ΗŒÛ…ØmüØCüô†2áÀ¬4`ÊÁfkìå‹Mˉ—Þ r")ðr×Ù¿«Š;ŽûŽ °E þŒO@nïPAìn]ÎyN“{äèö;J;‹}Y'>ÀKÚÙ‡ªÙ¸Ù¬Ôƒÿ¤I;C³q¿#Óñ>sšfà¬s¾Ñ˃û÷¿ÿ­¶`ƒrbOÒÉ(ìQÇâ§{ aPñ"BÏ>~Q8œ@o,ˆåÄOoÐuxåñbá JçÅÆâ¤ñcUq¸?ØWù÷¿ÿ]1b`Ÿ¥[‚Ø5Üqó &÷ÈÑíw”væ‡ )ïOÒΈÜlVþhéC¤ùã#ï³6©hgÊÖ¹]Îü'Ncx â0Å8ÔÆqÕªUÔ¼yså<NԱцÎý𜘖єa‹Å]†dXUàp©÷›ßüF±`Àײ#aØ5œ¸Î1H§/•GigþhJ;óÇ&ÙigþˆI;óÇÆ4$pˆн˜>UDZ9†'1‡šØƒ2-X2é–,Y¢|ÓӔ)SÔ‚x_‚[Ľ÷Þ[©Ò±œ$“—;®)Ä‹[o²¬*ø*ÿË_þ¢¼UDn:ê(š>}ºš—Õ1 ¹óuŸëtºã¥ò\Ú™7šÒμq1½*íÌ9igÞ¸D¹ÊÀz178®ÞГ…!;æÓBù±‡èô(yÃEž³Î:‹0 C†åD§[†áñtˆ3—š¬n`?jÔ(EvÄG¨ùó &¡ <uÂh›Ü£ |.íÌ%ig5Ù¬¼Q UÚ™7VÒÎRÛ΀rà±÷­ š?¾šû;ï¼óT¯uðàÁ*êgŸ}æ—$Ôõ ö/%K—.U—уư06aî ‰Â°œxéÌ–kÇB&,äÂGÎï~÷;åÞ¢I–]#H§É=rÊ’ìQÚY²ˆ¥'~P›@®ÒÎvÅÞäY‘÷Yî¼ÏBõ`› ¾t°ö©§ž¢þýû«ENˆã:wîÜÄèÚ߉_M~ì!:%èQ¡<0¬P/ahCaXNtº°Ärâz¢#÷ÄßNZ÷ÑK;çaô8i£óæw1l^=$ˆIÈÑã>é4¹GnýaÏ¥ÅJl‰¿½ð”væ…Š÷5igÒμXÓ¼[KrW#»JïeçÎé‡~PÆ,¹ì½ccñ”ƒwŠpWñîÇrNCæÆÂ3¶>ymÿ1e×ÐéL×=òCXÚ™2µ{]×&¤yß‹t=+ò>[ï ¸ÏU]ÛM×=Šl`}ê"—A@z€ñl½FM*/‚€  6 A@L0Zäd’Q.¦¡¼~`›RÙøD°àvyM¨ÀÊ£•U%q•-¯x6~^'¯¶je”Í9?ÿl”N ~$ûŒùé‘ë‚@] P/ ,¶° 8ºté¢V_}õÕ‘°Æv„Ñ£GÜBà= ~˜Ýl>&ü§ù9ʸ"m©]IãËæÓ„òØj`}î4ðòô§?ýI­¬¾å–[ÜAIŸÛñÄÕ06VeöîÝÛX'Z'ÍžMÖ›oWœxµQ×®‘tJbAÀ t"jßžlî%óòd²¾ýÖÉFŽõlxÆêám‘*‡@ Õm×e½0°  Ã] qî¼óNEc7bÄ7¡Ï±ŸÖÙ;lذxº1cƘfL¤Õ~ »9A¶ñ>Ø)åKizåji¢Ð#M†d5.ÙÍyÈšùvÕB˜Í‡^}•(E+´kd&?²lxƲL)h­"ê¶ë.¼8ûw£‘æó ONydQǼb²y¬{õp¦yr²™íÈâÞ+z®Ü%ŽYÆN<9¥¹‰zA@È*êE6[îH5Ù´¬:Ú¶œÚ¨«ÅÜ»jÿkmd&y‚€ ¥È"§,½qRlA@ÌF@ lfß) ‚@–"’!âfÍšVb-_¾<’/^S C³¿ðåÖs‡,©˜3Ük¯½ÔV(>ˆ뽇UDëì20Ž•31<Ý¿ÃàRÛ,'ز?Ò?þÍùFº±K—þº~ÆÂÖ«=Ïͯ^½:¥~¯ÓñŒùÕ'íZÚnÝÚ¿{x=m7’EÃÁŠ\4JHYY]rÉ%‰åýûä“O¦Aƒíÿµ×^£§Ÿ~z—ë¡/œz*ÙgžIÄ‹s¨²’hÖ,²}4tr¯ˆ]t/¤=KmýÁê\8šx饗¼¢Ö¸ÇCy Îù-™’n ý¡äÝx8¶êÜÓ¤/5°ò•q}¬l.M,[÷;ѱAèÂüôáº_ºt1 éÊò /0yO¬©nÛ¶Máü*V.§@RÉ2F¥ÂÂÂx©6nܨö Ç/œdË3vöÙgž Ð7Vò36sæL5j”Aw&1}Ævj–®v-m7óíC:Ú®Óò"X8XÀ6ô^:ê(G¯Ñ.ý–,YO ïCx¾óÎ;ñkIŸXV̸²C~âcÛKØ®róg¸µÄbçwÍ™3‡xàºöÚkéâ‹/¦·ß~›¶ìp¼àWÎ‡šž ¶à”ÙU”Ï«†ÝòOfÐÙdWÐ5%ÓhT“ci@£ô&oÕ „.L§×/]º˜„teášÆî1JÏYÀúõ×_WN4té‚ÂÒÁ2ôï~ã7TÖ© WȆg ÏC¿~ýÔ;àÿø‡úÈ>“?hÑ#0qˆòŒÝw¯ðtµki»™mÒÑvÝíËxCÂmÛ¶¥ÇœÀ*ƒžÅ|àÖô9zÀ‹/ŽÿõêÕ‹·Wþɮͪçº`aõ«õŪ\vÇŽI—ÏIçþx Ÿzê)EW÷ØcnÔ¯ýk'Šïñ†­ŸÒÙ›'Ó:fÌqË^¼=§™Õ€ž)›§ØtZæ5dókÑY öuGó<×±AèÂ<•í¸è—.]LBº²ÀÏóúõë•cÏ>ûLa—wTIËz­p8‚v¼fÍšHEÌ–g¬Q£Füˆ5P.C+øÇ2¤sçÎÆõòŒ™dš®v-m7³íC:Ú®»ý÷`‡ç´ÓN£!C†(Òqô4ÇïÖo|Ž— ^¢á÷6‚Xl´‰«Í½a›‰ÒÙq7“¬/¿4ÖŠ—(ób-Z¨#†ó‚dvå:Ï(ócº¾­ú™nl|Up·PÑÕ5õŒï¾¨cƒÐ…¹u$ž‡M—J&¡Ä2¸ŸsÎ9tÐA(áž©¢ˆÃ24xð`ºçž{¢¨ª‘ÓøÃÇ"¼h}òÉ'5“ù‘-Ï>®áûôÓO§Ö­[SÏž=©¤¤„>ýôÓdª[#n”g¬†"él×Òv3×>¤£íº›œqFnñB>÷ÜsÕb'w¦çÄÜæ$0¶Dû믉'Lja÷ƒ0Šì¨>Š ®øRÿË_þB't’úÀ€¾âbsîÖVyì0Ÿ œNl°' +AU<Ûœ{µ™*µÉrÆ¢8@õ^1¿EÒÅ2ôî»ïª5 Ï=÷œ¾†ÿç(’MÏØŒ3ÔüóÑG­>8¿Ø1RdZÿträHeñ› éÓ§z†!‹$OÚ’,^@e1‡)ñ¯q¾xôèѪ¾W]u•——+ª:ç«Û¤¼?ï2¾µÉ‘ôÅöµ4‹{ºù<ìŒ9ÙL”Úf9ÿdÌóaqzX„e*éb‚_ê/yd‹Ý0u‚9^ô¸M%[ž1øæ¡Ä{ï½G^x¡Àú‰ãŽ;δê*]ªŸ±0…IG»–¶›¹ö!]m×ikÆÖ¢sr` zœŽ^'“#¾ 16žŠÞ+s³©"XÎpz³\V‹çw£†¿ÐƒÅb'¬¤ÆêQÌ»™Ê’ÄêXA<¬t:µÌk¤8aW2éz¦ †ÂÓÉ$¤«/>è Â3•Ú`Ú¼9æ‘«c„¹þlyÆ?ß0°éÓ§«iè¹E‘T?cAeIw»–¶›yö!]m×ik‘ ,˜cÎ8ã BÃD¯CoÎ J'“ã\ z…xP#ËW_)Ÿ¹6o#à.q‰ J¼#’êc=–°´CäÇWCÆXé$»óPp&T/² ¨Q^:oÍ×VV—Ðfî­–TWPo½®èµUçõŠ«ªýtc¾ Aø(Áªnœ£l]˜Ÿ>]:/&!ä‡ÞZ:=À˘ÐÃ¥Øyýõ׫læÍ›gœæFÑÓrþ°òœ¹×\s±Nô| óñ˜ƒ8p úàü íÏP``³áûüóÏU]±EíÛkð.˜:uªaÍcÉLŸ1“LÓÑ®¥íf¾}HWÛuÚ ñ"'(À¼ðáaWì}à OÓeùN`$°¸#Ê G—:òð-½ÿ>D›Ë‹Þ+¿M‰'kDKöÇùçŸOC‡UÉ0Œ]¶škŠzSßÂ+`GOŸnÿ‘þ¾õsº}ëLº³IšÜâ,¥÷ɲï¨ÄÞȦ£cƒÐ…éêì— ÙœQŠT1 éÊymìSð0‹‡ðâŽb¸ó sßÓ$þÆ †°ñÁˆüaujɆg ÷dÊ”)„}ì DDݱ…mï7"¦Ï˜Ižé`È’¶›ùö!]m×iƒ)aÓÁ|X]yqBEÂzr²¹·i±—¶„ªþa<9@yQoW¬j #Al:Э9]ØÅR2ÞNü1ÀRÛl:*Ó ú½¡;ÝaÓ *^¼(ت‚^6déÒ¥ÊÐÄ#žÔõ3¶ø¨ÿ?üêc3ŒÎdŸ±0:k3Ž´Ý˜Óšº´aïwªÛ.òM‰ [tÅ k`ój`õýc`½tÔwë…‰\A Ó0žƒÍôŠIùA@ºD@ l]¢/y ‚€ ä,ÚENa†4Ûå5¡+×ïÜNRŸ†4“a9I.¡‡Çáe nR4ÿŒ's˜Æ¢–Ú¬$†ëÌT,JJWy…%õÈ&óŒ¥"÷t´ki»õ“Kk`ÑXuì/ÿi~Ž2®ˆWjWÒø²ù4¡|~j °+÷°êøê«¯Þ%~²,'6—ðV!ö@@ôÓOd±ÓqGl8—ØÁÆ¢®ýò Y;¶{8q¼Žºrbk’ “ŸÎ(LBºº“!“_9S:XNtùa»œÈcŒë3Ï<j´N§.Ì«-8×üÒEacñÓ‰cNý’=š¶k]¤íÆLL2,X:<{š m×)‹îh`uì/Oñ6’ÿT¬ j&…ÎL0WH/”/Ôå§Âü˜Zœ„F,'7Ý„=ÄËzcû\eΑ]¹Yξ<Þ¿Ftå4e9ñÓ‰Iȯîì JÑô0 ù•3],'~ùá>ÝxãÊ·íßÿþwîØ‹­:AÌE:º0]ÛðK…ÅO'ÊaÊÆ¢Ó ½&ÏXN&!NÓg õKV¢´k]¤í&Ï‚¥Ã÷5SÚn˜68ëÇþåÏrou­½M±¿L«øAyÚ3¿80_?¦'¡ ˉõÿGÖ_ÿJ´Ã¿£+~„kGÞ>@˖ņJãþ'~åŒÂrâ§û±L™„üê…Iȯœéb9ñËÛsààÅ_Tl:p䀗!H&‚ÄO'ÒéÂtzýÒEacñÓ‰r˜²±ètB¯É3¤Ó„IÈOg”g õKV¢´k¿:HÛ5cÁòÃÓ¹§™ÒvòèŽ=X?öGéÅ »Ñ!…{Pï‚Ö´‚ça—óþÍ–N ÏQÇÔbÌr²0 ç̰6x`áx‚ÉÛÚ:Ÿ"ªË~åŒÂrâ§Ó]¼\’bò©{&!¿r:þ–M˜„ÜuL<÷˯S§N**<7ùûŽÑ[>Aâ§éta:½aÓ%ÃÆ¤Ó„E§ÓôÓéf&LB~:£ÄÀ7š‰"l,ÙÁ$äÕvRÍÞ#m—¨>2 ¹ÛVdë({¥b±:=¡p/çRÒG̵UqÔWø†ãz¬$ì߿ҺüXìØbïp½çOwÝq×'LB©aÒa k°s°"ëžR§;Õah«éd6–Ô°±øÝ÷T³÷HÛ݉t}j»;kÍ›WÜ?¼ÎÁþÒÆj¬Ø_òxq ˜`ÖØ¥Ô!¯)Y؆&•-¦ÆV!]טÉÌYæT®÷RSã†ûvß}wÅþ‚ÞØX°H,'øsŽÃaÌð(<”hƒA†2¯‚!›ÙM,Þ3Éod¢=ˆ>úìðdc+oõ°¾ý6P¥_9Ý,' –>…çvQ0LB~:7lØ ÊcÄ$äWw0¹\~9IHñà29|X&!]9Ár‚!53`¥'†ÖÂ0 é÷ˆ«…·oß®0ÿ.¶ê€t Hütk]˜N¯_:`pß}÷©ákðÂvëÖM©Y±b…bÄ1ÑÙ®];:äCè­·ÞR ¨;$ “_9£•˜ÿ›9s&1Âù©ŽOób$82°p¶`37«Ãýê(±˜ÍÃf¢u^ã\бéLšD¿´‚|ëʉòƒI½)0 ¡ü˜ N¬gŸ}V1 áeFtu§‡"ì.lyi¬î¼ ʺ÷ÞHuà ^¤ôÚÀžEt¸ôfNß›o¾Ya<&ò?ö‡‰N§.L§×/ >öê&ʘ1c”L¼îþí§óÃ?Tm «¦!Xiþ ·g÷G¨[ûÜO§é3Ý~:Á‹0GàxíøÕW_u.ùýt¢œ¦Ï˜of¦íZWi»¹Ûvš“ 4°:%yl\;æ“Íbõ°#éðXäèö:y3²Ù¸XXu /FÜ#æn†Rd`½òJ¼†MÑuÉTw§¼uÍ$ä”Ãô#ƒ•¥è¢7[_##Â$T{Ïžg|4¦r BÚ.^»üÞÍPI' V$ë‡W¦X¿r¦ÂÀúé®­ëa lbyr¡î‰u’ß‚€ d)[ä”I•’²‚€ u€غ¾’¿ ‚@N"¸ŠµÞÍjÄ«ˆóiUõVOö°Šh]F6ÿ +©dq†;u:ua^ev˜„tu7eJ¶,^åK¼f7oNVPƒ1'ETÎÚf9IQµj¨G¨Õ«W«•É5"ü0ac ÂÚ„%H§Iu:uaº¼té°õ)??_‘‚èt¤2,[Úµ´ÝäéÂ’Ë¥fl­mÍ[tž.>…·áÄ¢m±·ÓÓìàÿ¥òï•–^»Ó=MúR6¾0®•Í¥‰ez—…A¬#a˜jV?x{6‰Á ö§ÂIúäÉ“µa‰zÜ¿ƒênÂ$¤+§;落"x’}ÛmÄ{fbŸ7 2xã8± “PP9ÓÁrâwߣ° ùéÖgóÖ%°§`¯u2«Àu:MØX‚°6ac Ò©«ƒ»ºÏu:uan‰çAéL™„óqÿÖÕÝ´]ûé”¶›< VP›ðÃÚ}Ïu:ua‰zL~k‡ˆ x•ðw•?ÓU%Ð%›ß¦Ÿ«·Ñ€¢žì1¶ôúŸÌ ³É®Pa««Ji@£TÌ{buâ°Ž€ebРAÊ;ØQ°Z&…¶mÛ²ËàrõåªÓå„étêœô^Ç ºƒIè¢MSè‚ÍShYõfÅ$”¿/}¸¦,I3Eð×=-YBÌG¶J€Ôà¼ój2 Iˆ·Ò¨?vÖ$Aåt³œ\z饄­(QÅï¾Ãm&¶C9Ø ³ÖO'VuöãíKX‘Œã”)S¨OŸ>¡üëtžÇ¸cêå—_Nð8u1{Ñ‚óaí°±àYù‰iñ¬DÕéWÓrÕÁOoP:|$0€®¼òJµ x¢7Etu7m×~:¥íÆX°r±í†mƒZ»¦º”®ßú Í«Ú@«yxøYv‡XÈæµ;öß‹·ç4³Ð3eó›N˼†l^,:«Á¾Ú¼ƒXG‚˜¼”ëtê¼t9×tuG&¡0eIš)‚iX÷ßOÖÒ¥Dë×[‹÷­Ûd’LBºrbS=>€üqZ´hçñƒ>p`3>úÝ÷(,C~:±ßKóa±%/Bˆã`^W ?¦l,:¬MÙXt:Q7¿:èê­Ó© 3Õ‰t¦LBº<ýê¥]ûé”¶›< VP[òÃZwÏu:ua:aôCĉJŽo°'Uó@ä\îÕö)l§‚¿­ú™nl|UØUÊøî™¯ÿbOÔ™È:¢cRHLë÷;Q§;ž.Ì/ñÜ]w'Ì„IÈI‹cbYL™"Ü:Ù»vlŸï÷±a|fÀ$äÖé.'6ÎC@7dÈ5ÞäøñãÝI’>sßñL†eÈO'> `\O?ýtÂÜfÏž=•oc¸Ê ?ŽßÙ¨,Cn¬g,&LBîz¸uâº_Üi‚ÎuºãëÂÜñϽҙ0 %êuÿö«»óqeÒ®ýtºó•¶žË[b›ƒµ;½×y¢Nw]˜;^ØsmÖ­¤oa{eTŸ-›OÛÙ̶âùY8ȆwXé ªbãÛœ{µa%Õ¬#ÈW§S¦+sbݸQ˜„Ë‚!ò¨LB6Œ_¯^±^,{—R‘I(±œéfr°õ:bˆn'±'®¨2ƒ‡Íáßøè£Vþáò2ŠàÁGo8 K"ÖXxÁËÙ”I(Qg”::iu:uaNz¯£_ºT²±xåë\Kw»–¶›< –_›pî™ÉQ§Sf’Ò„2°Ýò[æ[gU®£'xî‚ùXÈ­Mޤ/¶¯Uaù<·…9Ù0’ÖN]˜®¼^uwâ›2 y•%2“ÐÞ{Oj-X@Ök¯9E¤(LB^åL7“P¼à'˜'Ű4 YÁ&%àâï /¤{N<ñD:î¸ã¢¨U íðŸÁXCSNÏ6H±ÖNZS&!/Aå ×éÔ…éôêÒ¥’EW†t·ki»É±`éÚ„î>êÂt:ua:Aa¶]^cz°éq´’ÉÔÿº%6W¥Kv¸FÄ âa¥Ó©e^#Å ‹xA’ÖN]˜®¬~uOL“ “_Y¢0 Ù<Ìißpñ*åg8±|Îïd˜„üÊé¸}ºrÒÞR1ecñÃ: ‹ŸÎ(õÓéÔ…éò ›.l,ºr¤³]KÛMŽ+l›ÐÝÏÄ0N]X¢ždkç`±ˆéñâ“ÕÐïƒÛfQ÷|f«aYZµ‰VV—Ðfî­VÚÕ”ÇÛ_Á¦ƒ­:¯W,ÑRôÀèXG0æÅ´ã°ÍxUP§C¯ºü¼ôáš®îû´4bÒ•Ó”åÄnÒ„‡nÍ»>÷œbRub‹÷š0 éÊ™.–“ ûnÂ2ä§óóÏ?gþ‡ÁtÉ%—( <ÌÅ¢L:Õ¯9įûéDû4acÑamÊÆ¢ÓYÊÛ¸tuˆW4áD§ÓôÓéÄv S&¡„¢×øéW÷(íÚO§óÎ’¶›§Fu°`éÚD&µÝJóC닸Ë3¥»›³KòJ¿¡IlH/hCw6éCV¬#ü$ãUÅ:_ÄXÈ£cÑ1SìRt:׬Y£ÍÏO§®î?³Sá›:¦e­ ÒvW©E¦÷,1ÖÀꘌ™"Ø_èÔSÉ>óLâåÄ4'D³f‘õ裉å®ñ[WND4a9A:cŽ “têB°¸bàÀÔ¥KEÏuõÕW#IÎKÐýsH†e(H'ÉÓ“#XµŠ•Å: Ò‰—óLº€#¾h±H':¦Ï˜N'ÊbÂ$¤ÓôÓa“ê° :èžM¿²étÒIÛ!ñ;ÁÁ ? Â3ÛÚ®vˆXÇvaÌ¡caOPʸòNö9Gôþû¤|ë¢7«]9±Ìß„åÙésL˜„ SÇâÇÊt¹,ºûçÔ;Y–¡0:?úè£8K<IN6NÓgL§Ó”I(H§é3„y*Ãuu@>ºgÓ¯A:‘NÚîõälC bÁÒá™m7¿yóæÃü¼õLc_¶Ø0s8I‡Ë/ìüñÇ•8|ùãïŠ+®PÛ&L˜à§N]ïÇÿ[ì9Çú…Wƒ»”uˆZ ’½e Ñg^±[ÿÕ¯ˆØqýónçõ 9èÊ‰Þ 81‚Ö­[§\íýö·¿UÎÝçÏŸŸ içϲ³¢9Ld°•*©Ô®¤¦LÃwda[zûÊ E¿F]éÑmsèÛÊõÔ¿è@*dVˆ·è•v*ñ8ƒãvl˜–x𰙀6oÞ¬¨Î@ývüñÇ«- Ž÷59uIwÿÀv„ëA<€Àê}||i$H'6ÿÏ™3‡>ùä&!ZO[ÐöD§³ªªJõVyäúæ›oÔ³°,ÄêmNÓgL§ØÁ=$>.PÎ’’:…É ð,€¾ÏOt:MŸ1¿¼Òu]W´3ݳéW¦ H'm7¼}Ðá™mW;DœØ¨ü˜àÉ$–“z]ì/†„Ù—®Í~am&Q§ý÷'~ó‘õå—5’ýp—³ëÚ6S–/Æœã ;¨"˜2 ù1„¤‚)"›lwß?”Å{ô衼/Áo°‰$ꄎ³Î:Kýa(ž´`l“·ÎT± ¹uºËåsëÄGŠ)“»Kïb žxˆ>ÞI“çäë>•,'Xþy€áÇ«(X¼¥lÃPÔCÊï׌†5>REŸÃ‹š&¡’ꊓPÑN&!Nô.»ì2Âp"ö ™9‹+ ˜g¾h0$8G¹s]t÷s£X”ãüa1ä\ãEpàJ§½ èkÁ[Æzöì©¶FÁ~…ö§NX,^;ƒéáÞ †ßxã F"N'a²Ï˜N'˜„PWlBµí0ˆ®.±|Îoǽ¤ó[Ž‚€ õílý„Dj-‚€ DG@ lt Eƒ ‚€ ° µ>D¼K ä‚ ‚€ ƒH6oªTIA î[÷÷@J ‚€ ƒˆÍÁ›*UA@¨{ÄÀÖý=‚€ ä b`sð¦J•A@ê1°u¤‚€ 9ˆ€Ø¼©R%A@ºG@ lÝß) ‚@" 6oªTIA î[÷÷@J ‚€ ƒˆÍÁ›*UA@¨{ÄÀÖý=‚€ ä b`sð¦J•A@ê‚(E8å”S¨S§NJÅÛo¿M+W®Œ¢®FÚ¼¼<úÕ¯~¥˜ë?üðÔꮑ‘üA@Ò€@$»×^{Ñ~ûíG]ºt¡Õ«W'e/¿ürÚm·Ýè¾ûîó¬ÖSO=E 4  6Ђ ’Òí©P. ‚€ µˆ@$;vìXUÔ—_~9é"Ã(·lÙÒ3 wÓ¦MéÚk¯¥¥K—zÆ‘‹‚€ ‚@&#h`Ÿ}öYÕ;Ý{ゥººšÞ{ï=zôÑGë4|øp:à€¨  €***èÅ_$â“O>™þøÇ?Raa¡Ò1qâDu„1]µj7Ž5j¤®Ýu×]ê8fÌ•o¯^½”Ñ…ñ…Î矞^}õUÿ?ž>þøcêÛ·¯2Ð?þø#Íœ9SåÙ¸qcÚ¸q£*ô=š>ýôS•öºë®£Ã;Œ^{í5š0aB\Ÿœ‚€ ¦.r***¢Ž; íwß}G§žz*æWZZJ0Œ·Ür Í›7.½ôRjß¾=}þùçtûí·Ó?ü@¿üò‹:Çïµk×*wÞy§2œøác„͘1ƒ,Ë¢›nº‰lÛ¦ÿûßÊè_vÙeÔ¡C‡xYPVÌ /^¼˜|ðAZ¸p!µhÑ‚6lHO<ñ„’þþûïiݺutÞyçÅÓ¡'áh¿u<¢œ‚€ !4°Ð3wî\ÕSD¯î„NT÷ÝwÓìÙ³éÀ¤5kÖ¨ø]»v¥-[¶(}8–——«sèß¾}»Š3þ|e ñaˆÛ­[7eÑã}÷ÝwéÖ[oUñÑ#vËŠ+åÄÂ(YHII ½ù曪ìèáÂð6iÒ$žlÚ´i4}útúâ‹/â×äDA@ˆ‚@à1”/Z´Hå㊞iïÞ½éõ×_׿{ÿý÷«ž/†e·mۦ⢇i*èýB¾ùæuܼy³2Ê{챇úíü‡!áD©¬¬Œ_‚Q‡1ÏÏÏ_ƒÁÆŸˆ ‚€ *Bõ`±èÈI Áº†×™7Åõ}÷ÝWmßAOòÊ+¯$g1¶Þ8‚4îßÎu¿ãúõëUz²ä‡y\ 3»†7YÁÜ.†ŒQnA@A ì´xm0@0>˜G…QÄB'·`þÃÆmÚ´!w/ÛppíŠ+®pGW瘗E8V‡1´:Æ"+BôZ¬ô|öÙg»èNöÂ…^¨ê†ùeA@A „"FosäÈ‘*?ìIuæT`õîÀé‘GQ½Û믿^Ís2DEqâÃ@:òÖ[o©Õ¾#FŒP ˜†JË—/w‚w9bÕ0öÆöïß_-rBWÌѺÅ®£ìŽàáîkNŽ~×Ýqä\A@ƒ€Å+„wZ ¯¼òŠZ üõ×_æ2þùgXÞ—°‚Ûtœá]ïXÉ]ÅÜiçÎÕ*dgn79 [A@H?¡z°(ÆO?ý”tiçG“Và‘ ªª*¾èÊ#X. ‚€ €¶‹Þk.˹瞛ËÕ“º ‚€ Ô!Z[‡å’¬A@¬F ôq2µ|µU«d¢§6n÷îd³[D+N#˜ÍÇÞsÏXùØq…Å®Êݼ9YìAŠ]T…Mâïœ$æ½}•H€ ‚@­"›ÎØ\@ìÿ,vÃè)¿ù QëÖÄn™<ƒ“º7Œìƒ™öÙ‡,Ê0–Ëfßv6ê’Z=ÆŽ9è7Èš:5©¬%² ‚@v#uÆÖWž|’,ö+œaÇÿ+²{,¼:xˆZ²„hÒ$²ØE£­Jð{üþûÄ{„Â둘‚€ Y@ú ,÷üìb½I@ÄÞŸ,öO¬„=CÙW_3”0:ìØb2ˆýÀd-[F6; à ²ÄN…ÉbÖ:öX²/¾˜xßO,Þë#ýóŸdÁ×1†† Š]cÄÖ=÷ÄÎù_ˆ¡)K\A2'<œk±›È¸L™BLDÄ~˜‰eØÌÄ$º±zðÞ^‹}$∂€ ä¡<9™Ôؾäb²F"æ†#‹žöeßp±ŸC²Øq{‹ :þx¢víbáìŠÑ†;D¦¡³à’ñ¤“”¡µy.±ñe"¸CÄ9ŒñŠ6z̲Ãu‰]DÅt9ÿûèdRú²8飙Oõ\™ÅG ûe¶ž{.öÀ×ìsÎ!vw%I+‚€ ¤¯Ëœ­Ê€¡—Æì54gŽª¾}ÐAj~¿mÕ­[‰=XuVÌ@r, qÿóxö'bNX\‹{Ä^¤lćqæs·X €W§ÓN#‹‹ÄK'æIÕŸ¦, jb??œìCÝ5ˆç[-æ³uÄfRb7“4yr¬Ž`¡çÍ‹Àì#Œ-€b¶!›gXûŒ|ä(‚€ y¤ÏÀ‚¸>ˆ™Ö†}ûm²˜ÐÜâU¹jñÏî»á½P›)é0ß©d{®C,Ýœ«Šâ?/¼*°,^ªÑãä!ð]Æß„cÈš?PoGlÐìañÔ¦MDee±Ë0ô"‚€ 9…@Ú ¬ê1²a5Ç C{úéd³ÿagHWÍ«&øv…Oัu.:Gøæ¡ÝdÅS§cÀ1ÇëS•ç‰^q¼LÜ#µÐ+õ«˜1 νRëÞ{wÆêÔ‰Û~øšê‘cÞøÿý?5¾3’œ ‚€ äÉ[ª°µþŸÿ!jÙ’Øi0ÑÒ¥DìâЂ¡š5K —Ú]¤ŒÍ«níO$êÑ#œfÌeòS{Ÿ}Œ ­;“ÐeÁ¼nŸ>Ãiô6m¹£—ŠÅ[<×j3 ‘Í‹šlpábѸ@0A@ÈIÒÖƒµ;.6¯Š'Œ (î˜èÜâ?û‰'Ôð±.¬úé#KlwzÖÍs tÓMd³Á²˜sFܾãb»x*ûdyÖÂjeˆ—N, Ò¾ü2Ñï~§æƒ™ò‡èöÛqÕS,6üq#ŒÃް±%.»ÚÂÃ=zUÃuëb¡ es’ÈQA {H‹«Ä¸³W0ÄIDAT''xt*.&Z¶Ì!^ädó¶kÕª˜‘õŽU;Wk³,ÍšÅê½aC¨º‰'§P0I$A@2 ´õ`U-1´Š??á-7NÏÔ/J­]¯Í²ð6£Œ©w­, ‚€ P¿HßlýÂQj+‚€ Ô@@ l 8ä‡ ‚€ Ò2D|üÈÓRS:-‡´¡b«ÞßþƒAêšIþ§á>´o^suñµò%´¬š=H…”ݬFTdåÓªj×ÞXNÛ¿Ñ4µb%­¬. ©‰_ñlè¸QA 3H‹MgÕ5êI­óŠè¶Ò™žÙ\Ò¨µÍk’»O^3ê–ß’(ØMÊeåÁe{ºøjlÅ Ýbo§§Ë¾£—Êy{Ëeö§Ív­,o`=+*A@2¬3°0v­,ÞSê#w—~I w7Ÿ(¡/Þ6[Å}¿Å¹¡Óðšhú®ògz‚ê/v9ÝÕ¤ (êI¯”/¦êØæœÐº$¢ ‚@ö"6‹žßÿ6>’Úå7VèÌe£3dË4u¾_~ º“ Oë¼FTÅFgJù2ºûfy½ù™´ j#”ߊý2Xô¦‡¶}K§7؇†õ¢B+6müNó³Uü+KÞSíÞä(uíûª_âyét"LW¥,ÉÿÖT—Òõ[?‰§z¶lÝÜäpêUК¾©Œí{=³Agú3÷Äó¸~osÝGnc"A@œB m‹œ®)ê­æ ‡nù˜nÞò-b£ÉãÞM£l(ï)ýŠÞ-_Ng6ìLò›©ð¦ÜûìÍÆhlÙé¿l”Ïk¸§°èãí«èÆ­ŸÒòªÚX]®Îñ{ÍŽ9Nô‡oA?±Û=/fÔ•BþÏOgPYœôQŽÇ7ØSõ\ñáH{ÂF÷k6¸¿åyÞÝyXYDA ·H[¶¹ÕPõÐÊíJš]µŽ¦W2g+ËÑ…íÔüäŒíë©c^1mâùÈíl‚°øgØÖé*ÎŒíkè…òElT¤çšF³Á…1šÅ%¿å«syÇ[©’fpýì®ÔÖcˆØKg/†Â\©®,î<œóØhWÀûd ×dTéÎÞhßÂöÔ‡ëûLÙ,vrÏ9º‘ÁÊáB6“KØÀ$Uw¼Ú8¯í²ùµö¶Àê‰'§@ˆ$‚ ‡@Úz°¨)ö„®á~¢ŸdRÏ­¶ËlDA@r´ÍÁæ.dR3A@A 1°ÁI A@A iÒ2›t)$ ‚€ cH6Çn¨TGA 3›÷AJ!‚€ cˆÍ±*ÕA@È ÄÀfÆ}R‚€ äb`sì†JuA@21°™q¤‚€ 9†€Ø»¡RA@Ì@@ lfÜ)… ‚@Ž!ðÿÿG€18pIEND®B`‚pystac-client-0.9.0/docs/index.rst000066400000000000000000000045041503646565400171110ustar00rootroot00000000000000PySTAC Client Documentation =========================== PySTAC Client is a Python package for working with `STAC `__ Catalogs and `STAC APIs `__. PySTAC Client builds upon PySTAC through higher-level functionality and ability to access STAC API search endpoints. STAC Versions ============= +---------------+---------------+-----------------------------+ | pystac-client | STAC spec | STAC API Spec | +===============+===============+=============================+ | 0.9.x | 1.0.x - 1.1.x | 1.0.0-beta.1 - 1.0.0 | +---------------+---------------+-----------------------------+ | 0.8.x | 1.0.x | 1.0.0-beta.1 - 1.0.0 | +---------------+---------------+-----------------------------+ | 0.7.x | 1.0.x | 1.0.0-beta.1 - 1.0.0 | +---------------+---------------+-----------------------------+ | 0.6.x | 1.0.x | 1.0.0-beta.1 - 1.0.0-rc.2 | +---------------+---------------+-----------------------------+ | 0.5.x | 1.0.x | 1.0.0-beta.1 - 1.0.0-rc.1 | +---------------+---------------+-----------------------------+ | 0.4.x | 1.0.x | 1.0.0-beta.1 - 1.0.0-rc.1 | +---------------+---------------+-----------------------------+ | 0.3.x | 1.0.x | 1.0.0-beta.1 - 1.0.0-beta.4 | +---------------+---------------+-----------------------------+ | 0.2.x | 1.0.x | 1.0.0-beta.1 - 1.0.0-beta.2 | +---------------+---------------+-----------------------------+ Installation ------------ ``pystac-client`` requires `Python >=3.10 `__. To install with pip, run: .. code-block:: console $ python -m pip install pystac-client This will install the dependencies :doc:`pystac `, :doc:`python-dateutil `, and :doc:`requests `. Acknowledgements ---------------- This package builds upon the great work of the PySTAC library for working with STAC objects in Python. It also uses concepts from the `sat-search `__ library for working with STAC API search endpoints. Table of Contents ----------------- .. toctree:: :maxdepth: 2 quickstart usage api tutorials contributing design/design_decisions pystac-client-0.9.0/docs/quickstart.rst000066400000000000000000000152451503646565400202000ustar00rootroot00000000000000Quickstart ---------- PySTAC Client can be used as either a Command Line Interface (CLI) or a Python library. CLI ~~~ Use the CLI to quickly perform Item or Collection searches and output or save the results. The ``--matched`` switch performs a search with limit=1 so does not get any Items, but gets the total number of matches which will be output to the screen (if supported by the STAC API). .. code-block:: console $ stac-client search https://earth-search.aws.element84.com/v1 -c sentinel-2-l2a --bbox -72.5 40.5 -72 41 --matched 3141 items matched The ``--matched`` flag can also be used for collection search to get the total number of collections that match your search terms. .. code-block:: console $ stac-client collections https://emc.spacebel.be --q sentinel-2 --matched 76 collections matched If the same URL is to be used over and over, define an environment variable to be used in the CLI call: .. code-block:: console $ export STAC_API_URL=https://earth-search.aws.element84.com/v1 $ stac-client search ${STAC_API_URL} -c sentinel-2-l2a --bbox -72.5 40.5 -72 41 --datetime 2020-01-01/2020-01-31 --matched 48 items matched Without the ``--matched`` switch, all items will be fetched, paginating if necessary. If the ``--max-items`` switch is provided it will stop paging once that many items has been retrieved. It then prints all items to stdout as an ItemCollection. This can be useful to pipe output to another process such as `stac-terminal `__, `geojsonio-cli `__, or `jq `__. .. code-block:: console $ stac-client search ${STAC_API_URL} -c sentinel-2-l2a --bbox -72.5 40.5 -72 41 --datetime 2020-01-01/2020-01-31 | stacterm cal --label platform .. figure:: images/stacterm-cal.png :alt: If the ``--save`` switch is provided instead, the results will not be output to stdout, but instead will be saved to the specified file. .. code-block:: console $ stac-client search ${STAC_API_URL} -c sentinel-2-l2a --bbox -72.5 40.5 -72 41 --datetime 2020-01-01/2020-01-31 --save items.json If the Catalog supports the `Query extension `__, any Item property can also be included in the search. Rather than requiring the JSON syntax the Query extension uses, pystac-client uses a simpler syntax that it will translate to the JSON equivalent. Note however that when the simple syntax is used it sends all property values to the server as strings, except for ``gsd`` which it casts to ``float``. This means that if there are extensions in use with numeric properties these will be sent as strings. Some servers may automatically cast this to the appropriate data type, others may not. The query filter will also accept complete JSON as per the specification. :: where operator is one of `>=`, `<=`, `>`, `<`, `=` Examples: eo:cloud_cover<10 created=2021-01-06 view:sun_elevation<20 Any number of properties can be included, and each can be included more than once to use additional operators. .. code-block:: console $ stac-client search ${STAC_API_URL} -c sentinel-2-l2a --bbox -72.5 40.5 -72 41 --datetime 2020-01-01/2020-01-31 ---query "eo:cloud_cover<10" --matched 10 items matched .. code-block:: console $ stac-client search ${STAC_API_URL} -c sentinel-2-l2a --bbox -72.5 40.5 -72 41 --datetime 2020-01-01/2020-01-31 --query "eo:cloud_cover<10" "eo:cloud_cover>5" --matched 4 items matched Collection searches can also use multiple filters like this example search for collections that include the term ``"biomass"`` and have a spatial extent that intersects Scandinavia. .. code-block:: console $ stac-client collections https://emc.spacebel.be --q biomass --bbox 0.09 54.72 33.31 71.36 --matched 43 items matched Since most STAC APIs have not yet implemented the `collection search extension `__, ``pystac-client`` will perform a limited client-side filter on the full list of collections using only the ``bbox``, ``datetime``, and ``q`` (free-text search) parameters. In the case that the STAC API does not support collection search, a warning will be displayed to inform you that the filter is being applied client-side. Python ~~~~~~ First, create a Client instance configured to use a specific STAC API by the root URL of that API. For this example, we will use `Earth Search `__. .. code-block:: python from pystac_client import Client client = Client.open("https://earth-search.aws.element84.com/v1") Create an Item Search instance that represents a search to run. This does not actually run a search yet -- that does not happen until a method is called that requires data from the STAC API. .. code-block:: python search = client.search( max_items=10, collections=["sentinel-2-c1-l2a"], bbox=[-72.5,40.5,-72,41] ) Calling ``matched()`` will send a request to the STAC API and retrieve a single item and metadata about how many Items match the search criteria. .. code-block:: python print(f"{search.matched()} items found") The ``items()`` iterator method can be used to iterate through all resulting items. This iterator hides the pagination behavior that the may occur if there are sufficient results. Be careful with this method -- you could end up iterating over the entire catalog if ``max_items`` is not set! .. code-block:: python for item in search.items(): print(item.id) Use ``item_collection()`` to convert all Items from a search into a single `PySTAC ItemCollection `__. The ``ItemCollection`` can then be saved as a GeoJSON FeatureCollection. This requires retrieving all of the results from the search, so it may take some time to retrieve all the paginated responses. .. code-block:: python item_collection = search.item_collection() item_collection.save_object("my_itemcollection.json") Some STAC APIs also implement the Collection Search Extension. Earth Search does not, so we use the ORNL_CLOUD CMR-STAC Catalog instead: .. code-block:: python client = Client.open("https://cmr.earthdata.nasa.gov/stac/ORNL_CLOUD") collection_search = client.collection_search( q="rain", ) print(f"{collection_search.matched()} collections found") The ``collections()`` iterator method can be used to iterate through all resulting collections. .. code-block:: python for collection in collection_search.collections(): print(collection.id) pystac-client-0.9.0/docs/tutorials.rst000066400000000000000000000035541503646565400200340ustar00rootroot00000000000000.. _tutorials: Tutorials ######### PySTAC-Client Introduction -------------------------- - :tutorial:`GitHub version ` - :ref:`Docs version ` This tutorial gives an introduction to using pystac-client with a STAC API STAC Metadata Visualization --------------------------- - :tutorial:`GitHub version ` - :ref:`Docs version ` This tutorial gives an introduction to using hvplot to visualize STAC metadata and Item geometries on a map. CQL2 Filtering --------------------------- - :tutorial:`GitHub version ` - :ref:`Docs version ` This tutorial gives an introduction to using CQL2-JSON filtering in searches to search by arbitrary STAC Item properties. Item Search with Intersects ----------------------------------------------------- - :tutorial:`GitHub version ` - :ref:`Docs version ` This tutorial demonstrates the use of different Python library object types that can be used for the `intersects` search parameter. Calculating Coverage Percentage of the AOI by an Item ----------------------------------------------------- - :tutorial:`GitHub version ` - :ref:`Docs version ` This tutorial demonstrates the use of pystac-client to calculate the percentage an Item's geometry that intesects with the area of interest (AOI) specified in the search by the `intersects` parameter. Authentication -------------- - :tutorial:`GitHub version ` - :ref:`Docs version ` This tutorial demontrates different ways the pystac-client can be used to access a private stac api, when protected with various authentication mechanisms. pystac-client-0.9.0/docs/tutorials/000077500000000000000000000000001503646565400172735ustar00rootroot00000000000000pystac-client-0.9.0/docs/tutorials/aoi-coverage.ipynb000066400000000000000000000105051503646565400227000ustar00rootroot00000000000000{ "cells": [ { "cell_type": "markdown", "id": "e06a27bf", "metadata": {}, "source": [ "# Calculating Coverage Percentage of the AOI by an Item\n", "\n", "This notebook demonstrates the use of pystac-client to calculate the percentage an Item's geometry that intesects with the area of interest (AOI) specified in the search by the `intersects` parameter." ] }, { "cell_type": "code", "execution_count": null, "id": "b65de617", "metadata": {}, "outputs": [], "source": [ "from typing import Any, Dict\n", "\n", "import matplotlib.pyplot as plt\n", "from pystac.item import Item\n", "from shapely.geometry import shape\n", "\n", "from pystac_client import Client" ] }, { "cell_type": "code", "execution_count": null, "id": "98942e75", "metadata": {}, "outputs": [], "source": [ "def intersection_percent(item: Item, aoi: Dict[str, Any]) -> float:\n", " \"\"\"The percentage that the Item's geometry intersects the AOI. An Item that\n", " completely covers the AOI has a value of 100.\n", " \"\"\"\n", " geom_item = shape(item.geometry)\n", " geom_aoi = shape(aoi)\n", "\n", " intersected_geom = geom_aoi.intersection(geom_item)\n", "\n", " intersection_percent = (intersected_geom.area * 100) / geom_aoi.area\n", "\n", " return intersection_percent\n", "\n", "\n", "# STAC API root URL\n", "URL = \"https://planetarycomputer.microsoft.com/api/stac/v1\"\n", "\n", "# geometry of the AOI to search over\n", "intersects_geometry = {\n", " \"type\": \"Polygon\",\n", " \"coordinates\": [\n", " [\n", " [-73.21, 43.99],\n", " [-73.21, 47.05],\n", " [-70.12, 47.05],\n", " [-70.12, 43.99],\n", " [-73.21, 43.99],\n", " ]\n", " ],\n", "}\n", "\n", "# Create a Client and an ItemSearch representing our search\n", "# No search operations will be performed until we call the items() method\n", "client = Client.open(URL)\n", "item_search = client.search(\n", " collections=[\"sentinel-2-l2a\"], intersects=intersects_geometry, max_items=100\n", ")" ] }, { "cell_type": "code", "execution_count": null, "id": "0b0883fe", "metadata": {}, "outputs": [], "source": [ "print(\n", " [\n", " f\"{intersection_percent(item, intersects_geometry):.2f}\"\n", " for item in item_search.items()\n", " ]\n", ")" ] }, { "cell_type": "code", "execution_count": null, "id": "03254847", "metadata": {}, "outputs": [], "source": [ "# create a generator that filters to only those Items that intersect more than 5%\n", "items_gt_5_percent = (\n", " i for i in item_search.items() if intersection_percent(i, intersects_geometry) > 5\n", ")" ] }, { "cell_type": "code", "execution_count": null, "id": "e1de7a09", "metadata": {}, "outputs": [], "source": [ "# Render the AOI and Item results\n", "# The green shape is the AOI\n", "# The blue shapes are the Item geometries\n", "# If there are no blue shapes, adjust the intersection percent filter above\n", "# until there are\n", "\n", "cm = plt.get_cmap(\"RdBu\")\n", "fig, axs = plt.subplots()\n", "axs.set_aspect(\"equal\", \"datalim\")\n", "\n", "for item in items_gt_5_percent:\n", " xs, ys = shape(item.geometry).exterior.xy\n", " axs.fill(xs, ys, alpha=0.5, fc=\"b\", ec=\"none\")\n", "\n", "geom_intersects = shape(intersects_geometry)\n", "xs, ys = geom_intersects.exterior.xy\n", "axs.fill(xs, ys, alpha=0.5, fc=\"g\", ec=\"none\")\n", "\n", "plt.show()" ] } ], "metadata": { "interpreter": { "hash": "6b6313dbab648ff537330b996f33bf845c0da10ea77ae70864d6ca8e2699c7ea" }, "kernelspec": { "display_name": "Python 3.9.11 ('.venv': venv)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.9.11" } }, "nbformat": 4, "nbformat_minor": 5 } pystac-client-0.9.0/docs/tutorials/authentication.md000066400000000000000000000056671503646565400226520ustar00rootroot00000000000000# Authentication While not integrated into this library directly, pystac-client provides a series of hooks that support a wide variety of authentication mechanisms. These can be used when interacting with stac API implementations behind various authorization walls. ## Basic auth Pystac-client supports HTTP basic authentication by simply exposing the ability to define headers to be used when sending requests. Simply encode the token and provide the header. ```python import base64 import pystac_client # encode credentials user_name = "yellowbeard" password = "yaarg" userpass = f"{user_name}:{password}" b64_userpass = base64.b64encode(userpass.encode()).decode() # create the client client = pystac_client.Client.open( url="https://planetarycomputer.microsoft.com/api/stac/v1", headers={ 'Authorization': f"Basic {b64_userpass}" } ) ``` ## Token auth Providing a authentication token can be accomplished using the same mechanism as described above for [basic auth](#basic-auth). Simply provide the token in the `Authorization` header to the client in the same manner. ## AWS SigV4 Accessing a stac api protected by AWS IAM often requires signing the request using [AWS SigV4](https://docs.aws.amazon.com/general/latest/gr/signature-version-4.html). Unlike basic and token authentication, the entire request is part of the signing process. Thus the `Authorization` header cannot be added when the client is created, rather it must be generated and added after the request is fully formed. Pystac-client provides a lower-level hook, the `request_modifier` parameter, which can mutate the request, adding the necessary header after the request has been generated but before it is sent. The code cell below demonstrates this, using the `boto3` module. ```python import boto3 import botocore.auth import botocore.awsrequest import pystac_client import requests # Details regarding the private stac api region = "us-east-1" service_name = "execute-api" endpoint_id = "xxxxxxxx" deployment_stage = "dev" stac_api_url = f"https://{endpoint_id}.{service_name}.{region}.amazonaws.com/{deployment_stage}" # load AWS credentials credentials = boto3.Session(region_name=region).get_credentials() signer = botocore.auth.SigV4Auth(credentials, service_name, region) def sign_request(request: requests.Request) -> requests.Request: """Sign the request using AWS SigV4. Args: request (requests.Request): The fully populated request to sign. Returns: requests.Request: The provided request object, with auth header added. """ aws_request = botocore.awsrequest.AWSRequest( method=request.method, url=request.url, params=request.params, data=request.data, headers=request.headers ) signer.add_auth(aws_request) request.headers = aws_request.headers return request # create the client client = pystac_client.Client.open( url=stac_api_url, request_modifier=sign_request ) ``` pystac-client-0.9.0/docs/tutorials/cql2-filter.ipynb000066400000000000000000000234341503646565400224700ustar00rootroot00000000000000{ "cells": [ { "attachments": {}, "cell_type": "markdown", "id": "e06a27bf", "metadata": {}, "source": [ "# CQL2 Filtering\n", "\n", "This notebook demonstrates using pystac-client to filter STAC items with [CQL2](https://docs.ogc.org/is/21-065r2/21-065r2.html) as described in the [STAC API Filter Extension](https://github.com/stac-api-extensions/filter). \n", "\n", "Note: Not all STAC APIs support the Filter Extension. APIs advertise conformance by including `https://api.stacspec.org/v1.0.0/item-search#filter` in the `conformsTo` attribute of the root API." ] }, { "cell_type": "code", "execution_count": null, "id": "b65de617", "metadata": {}, "outputs": [], "source": [ "import json\n", "\n", "import geopandas as gpd\n", "import pandas as pd\n", "\n", "from pystac_client import Client" ] }, { "cell_type": "markdown", "id": "c8ac88bb", "metadata": {}, "source": [ "The first step as always with pystac-client is opening the catalog:" ] }, { "cell_type": "code", "execution_count": null, "id": "98942e75", "metadata": {}, "outputs": [], "source": [ "# STAC API root URL\n", "URL = \"https://planetarycomputer.microsoft.com/api/stac/v1\"\n", "\n", "catalog = Client.open(URL)" ] }, { "cell_type": "markdown", "id": "1e16077c", "metadata": {}, "source": [ "## Initial Search Parameters\n", "\n", "Here we set up some initial search parameters to use with the `Client.search` function. We are providing a maximum number of items to return (`max_items`), a collection to look within (`collections`), a geometry (`intersects`), and a datetime range (`datetime`)." ] }, { "cell_type": "code", "execution_count": null, "id": "5e961981", "metadata": {}, "outputs": [], "source": [ "# AOI around Delfzijl, in the north of The Netherlands\n", "geom = {\n", " \"type\": \"Polygon\",\n", " \"coordinates\": [\n", " [\n", " [6.42425537109375, 53.174765470134616],\n", " [7.344360351562499, 53.174765470134616],\n", " [7.344360351562499, 53.67393435835391],\n", " [6.42425537109375, 53.67393435835391],\n", " [6.42425537109375, 53.174765470134616],\n", " ]\n", " ],\n", "}\n", "\n", "params = {\n", " \"max_items\": 100,\n", " \"collections\": \"landsat-8-c2-l2\",\n", " \"intersects\": geom,\n", " \"datetime\": \"2018-01-01/2020-12-31\",\n", "}" ] }, { "cell_type": "markdown", "id": "d6f1dd5f", "metadata": {}, "source": [ "## Using Filters\n", "\n", "In addition to the parameters described above in the following examples we will filter by Item properties (`filter`) using CQL2-JSON. Here is a little function that does the search constructs a `GeoDataFrame` of the results and then plots `datetime` vs `eo:cloud_cover`.\n", "\n", "Remember that in this whole notebook we are only looking at STAC metadata, there is no part where we are reading the data itself." ] }, { "cell_type": "code", "execution_count": null, "id": "8b26e89b", "metadata": {}, "outputs": [], "source": [ "def search_and_plot(filter):\n", " search = catalog.search(**params, filter=filter)\n", "\n", " gdf = gpd.GeoDataFrame.from_features(search.item_collection_as_dict())\n", " gdf[\"datetime\"] = pd.to_datetime(gdf[\"datetime\"])\n", " print(f\"Found {len(gdf)} items\")\n", "\n", " gdf.plot.line(x=\"datetime\", y=\"eo:cloud_cover\", title=json.dumps(filter))" ] }, { "cell_type": "markdown", "id": "11afcc19", "metadata": {}, "source": [ "We can test out the function by passing an empty dict to do no filtering at all." ] }, { "cell_type": "code", "execution_count": null, "id": "b6293c11", "metadata": {}, "outputs": [], "source": [ "search_and_plot({})" ] }, { "cell_type": "markdown", "id": "44d3bc04", "metadata": {}, "source": [ "## CQL2 Filters\n", "\n", "We will use `eo:cloud_cover` as an example and filter for all the STAC Items where `eo:cloud_cover <= 10%`." ] }, { "cell_type": "code", "execution_count": null, "id": "dfc0e759", "metadata": {}, "outputs": [], "source": [ "filter = {\"op\": \"<=\", \"args\": [{\"property\": \"eo:cloud_cover\"}, 10]}\n", "\n", "search_and_plot(filter)" ] }, { "cell_type": "markdown", "id": "75e835f1", "metadata": {}, "source": [ "Next let's look for all the STAC Items where `eo:cloud_cover >= 80%`." ] }, { "cell_type": "code", "execution_count": null, "id": "9c2f9ca1", "metadata": {}, "outputs": [], "source": [ "filter = {\"op\": \">=\", \"args\": [{\"property\": \"eo:cloud_cover\"}, 80]}\n", "\n", "search_and_plot(filter)" ] }, { "cell_type": "markdown", "id": "0ad984bf", "metadata": {}, "source": [ "We can combine multiple CQL2 statements to express more complicated logic:" ] }, { "cell_type": "code", "execution_count": null, "id": "109f673c", "metadata": {}, "outputs": [], "source": [ "filter = {\n", " \"op\": \"and\",\n", " \"args\": [\n", " {\"op\": \"<=\", \"args\": [{\"property\": \"eo:cloud_cover\"}, 60]},\n", " {\"op\": \">=\", \"args\": [{\"property\": \"eo:cloud_cover\"}, 40]},\n", " ],\n", "}\n", "\n", "search_and_plot(filter)" ] }, { "cell_type": "markdown", "id": "617c7416", "metadata": {}, "source": [ "You can see the power of this syntax. Indeed we can replace `datetime` and `intersects` from our original search parameters with a more complex CQL2 statement." ] }, { "cell_type": "code", "execution_count": null, "id": "7b0dc965", "metadata": {}, "outputs": [], "source": [ "filter = {\n", " \"op\": \"and\",\n", " \"args\": [\n", " {\"op\": \"s_intersects\", \"args\": [{\"property\": \"geometry\"}, geom]},\n", " {\"op\": \">=\", \"args\": [{\"property\": \"datetime\"}, \"2018-01-01\"]},\n", " {\"op\": \"<=\", \"args\": [{\"property\": \"datetime\"}, \"2020-12-31\"]},\n", " {\"op\": \"<=\", \"args\": [{\"property\": \"eo:cloud_cover\"}, 60]},\n", " {\"op\": \">=\", \"args\": [{\"property\": \"eo:cloud_cover\"}, 40]},\n", " ],\n", "}\n", "search = catalog.search(max_items=100, collections=\"landsat-8-c2-l2\", filter=filter)\n", "\n", "print(f\"Found {len(search.item_collection())} items\")" ] }, { "cell_type": "markdown", "id": "56503c7b", "metadata": {}, "source": [ "### CQL2 Text\n", "\n", "The examples above all use CQL2-json but pystac-client also supports passing `filter` as CQL2 text.\n", "\n", "NOTE: As of right now in pystac-client if you use CQL2 text you need to change the search HTTP method to GET." ] }, { "cell_type": "code", "execution_count": null, "id": "5e8f62f5", "metadata": {}, "outputs": [], "source": [ "search = catalog.search(**params, method=\"GET\", filter=\"eo:cloud_cover<=10\")\n", "\n", "print(f\"Found {len(search.item_collection())} items\")" ] }, { "cell_type": "markdown", "id": "9b865c1f", "metadata": {}, "source": [ "Just like CQL2 json, CQL2 text statements can be combined to express more complex logic:" ] }, { "cell_type": "code", "execution_count": null, "id": "c06f40cf", "metadata": {}, "outputs": [], "source": [ "search = catalog.search(\n", " **params, method=\"GET\", filter=\"eo:cloud_cover<=60 and eo:cloud_cover>=40\"\n", ")\n", "\n", "print(f\"Found {len(search.item_collection())} items\")" ] }, { "cell_type": "markdown", "id": "35cbf612", "metadata": {}, "source": [ "## Queryables\n", "\n", "pystac-client provides a method for accessing all the arguments that can be used within CQL2 filters for a particular collection. These are provided as a json schema document, but for readability we are mostly interested in the names of the fields within `properties`.\n", "\n", "NOTE: When getting the collection, you might notice that we use \"landsat-c2-l2\" as the collection id rather than \"landsat-8-c2-l2\". This is because \"landsat-8-c2-l2\" doesn't actually exist as a collection. It is just used in some places as a collection id on items. This is likely a remnant of some former setup in the Planetary Computer STAC." ] }, { "cell_type": "code", "execution_count": null, "id": "90f1cc6d", "metadata": {}, "outputs": [], "source": [ "collection = catalog.get_collection(\"landsat-c2-l2\")\n", "queryables = collection.get_queryables()\n", "\n", "list(queryables[\"properties\"].keys())" ] }, { "cell_type": "markdown", "id": "c407ffec", "metadata": {}, "source": [ "## Read More\n", "\n", "- For more involved CQL2 examples in a STAC context read the [STAC API Filter Extension Examples](https://github.com/stac-api-extensions/filter?tab=readme-ov-file#examples)\n", "\n", "- For examples of all the different CQL2 operations take a look at the [playground on the CQL2-rs docs](https://developmentseed.org/cql2-rs/latest/playground/)." ] } ], "metadata": { "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.12.11" } }, "nbformat": 4, "nbformat_minor": 5 } pystac-client-0.9.0/docs/tutorials/item-search-intersects.ipynb000066400000000000000000000152041503646565400247220ustar00rootroot00000000000000{ "cells": [ { "cell_type": "markdown", "id": "e06a27bf", "metadata": {}, "source": [ "# Item Search with Intersects\n", "\n", "This notebook shows the use of pystac-client to perform item search with the `intersects` parameter, to restrict the results to an Area of Interest (AOI)." ] }, { "cell_type": "markdown", "id": "1e16077c", "metadata": {}, "source": [ "# Client\n", "\n", "We first connect to an API by retrieving the root catalog, or landing page, of the API with the `Client.open` function." ] }, { "cell_type": "code", "execution_count": null, "id": "98942e75", "metadata": { "tags": [] }, "outputs": [], "source": [ "import json\n", "from typing import Any, Dict\n", "\n", "from pystac_client import Client\n", "\n", "# STAC API root URL\n", "URL = \"https://planetarycomputer.microsoft.com/api/stac/v1\"\n", "\n", "client = Client.open(URL)" ] }, { "cell_type": "markdown", "id": "62e26114", "metadata": {}, "source": [ "# Item Search\n", "\n", "When the Catalog is a STAC API, we have the ability to search for items based on spatio-temporal properties.\n", "\n", "The STAC API endpoint `/search` accepts a parameter `intersects` that is a GeoJSON Geometry representing the AOI of the search.\n", "\n", "The `search` method of the pystac_client `Client` class accepts several different types of objects:\n", "\n", "1. a string representing a GeoJSON geometry\n", "2. a dictionary representing a GeoJSON geometry\n", "3. any object that implements a ``__geo_interface__`` property, [an informal specification](https://gist.github.com/sgillies/2217756) \n", " supported by several libraries for generating a GeoJSON representation from an object. Several prominent libraries support this\n", " protocol for their objects that represent geometries, including [Shapely](https://shapely.readthedocs.io), [ArcPy](https://pro.arcgis.com/en/pro-app/2.8/arcpy/get-started/what-is-arcpy-.htm), [PySAL](https://pysal.org/), [geojson](https://github.com/jazzband/geojson), [pyshp](https://pypi.org/project/pyshp/), [descartes](https://docs.descarteslabs.com/), and [pygeoif](https://github.com/cleder/pygeoif)" ] }, { "cell_type": "markdown", "id": "0d27fabf", "metadata": {}, "source": [ "## Item Search with AOI as a Dictionary" ] }, { "cell_type": "code", "execution_count": null, "id": "d8af6334", "metadata": { "tags": [] }, "outputs": [], "source": [ "# AOI around Delfzijl, in northern Netherlands\n", "aoi_as_dict: Dict[str, Any] = {\n", " \"type\": \"Polygon\",\n", " \"coordinates\": [[[6, 53], [7, 53], [7, 54], [6, 54], [6, 53]]],\n", "}\n", "\n", "search = client.search(\n", " max_items=25,\n", " collections=\"aster-l1t\",\n", " intersects=aoi_as_dict,\n", ")\n", "\n", "print(f\"AOI as dictionary, found {len(list(search.items()))} items\")" ] }, { "cell_type": "markdown", "id": "9da4956b", "metadata": {}, "source": [ "## Item Search with AOI as a String" ] }, { "cell_type": "code", "execution_count": null, "id": "9a7c9336", "metadata": { "tags": [] }, "outputs": [], "source": [ "aoi_as_str: str = json.dumps(aoi_as_dict)\n", "\n", "search = client.search(\n", " max_items=25,\n", " collections=\"aster-l1t\",\n", " intersects=aoi_as_str,\n", ")\n", "\n", "print(f\"AOI as string, found {len(list(search.items()))} items\")" ] }, { "cell_type": "markdown", "id": "f22ffb5a", "metadata": {}, "source": [ "## Item Search with AOI as a Shapely Geometry Object" ] }, { "cell_type": "code", "execution_count": null, "id": "a44598ef", "metadata": { "tags": [] }, "outputs": [], "source": [ "import shapely.geometry\n", "\n", "aoi_as_shapely_shape = shapely.geometry.shape(aoi_as_dict)\n", "\n", "search = client.search(\n", " max_items=25,\n", " collections=\"aster-l1t\",\n", " intersects=aoi_as_shapely_shape,\n", ")\n", "\n", "print(\n", " \"AOI as Shapely Geometry object from shape(), \"\n", " f\"found {len(list(search.items()))} items\"\n", ")\n", "\n", "aoi_as_shapely_polygon = shapely.geometry.Polygon(aoi_as_dict[\"coordinates\"][0])\n", "\n", "search = client.search(\n", " max_items=25,\n", " collections=\"aster-l1t\",\n", " intersects=aoi_as_shapely_polygon,\n", ")\n", "\n", "print(\n", " \"AOI as Shapely Geometry object with Polygon, \"\n", " f\"found {len(list(search.items()))} items\"\n", ")" ] }, { "cell_type": "markdown", "id": "8f236254", "metadata": {}, "source": [ "## Item Search with AOI as a \"geojson\" library object" ] }, { "cell_type": "code", "execution_count": null, "id": "84ce4395", "metadata": { "tags": [] }, "outputs": [], "source": [ "import geojson\n", "\n", "aoi_as_geojson_polygon = geojson.Polygon(aoi_as_dict[\"coordinates\"])\n", "\n", "search = client.search(\n", " max_items=25,\n", " collections=\"aster-l1t\",\n", " intersects=aoi_as_geojson_polygon,\n", ")\n", "\n", "print(f\"AOI as geojson Polygon, found {len(list(search.items()))} items\")" ] }, { "cell_type": "markdown", "id": "3fe9c255", "metadata": {}, "source": [ "## Item Search with AOI as a pygeoif Object" ] }, { "cell_type": "code", "execution_count": null, "id": "a27dcb72", "metadata": { "tags": [] }, "outputs": [], "source": [ "import pygeoif\n", "\n", "aoi_as_pygeoif_polygon = pygeoif.geometry.Polygon(aoi_as_dict[\"coordinates\"][0])\n", "\n", "search = client.search(\n", " max_items=25,\n", " collections=\"aster-l1t\",\n", " intersects=aoi_as_pygeoif_polygon,\n", ")\n", "\n", "print(f\"AOI as pygeoif Polygon, found {len(list(search.items()))} items\")" ] } ], "metadata": { "interpreter": { "hash": "6b6313dbab648ff537330b996f33bf845c0da10ea77ae70864d6ca8e2699c7ea" }, "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.11.3" } }, "nbformat": 4, "nbformat_minor": 5 } pystac-client-0.9.0/docs/tutorials/pystac-client-introduction.ipynb000066400000000000000000000201621503646565400256350ustar00rootroot00000000000000{ "cells": [ { "cell_type": "markdown", "id": "e06a27bf", "metadata": {}, "source": [ "# PySTAC-Client Introduction\n", "\n", "This notebook shows basic use of pystac-client to open an API, iterate through Collections and Items, and perform simple spatio-temporal searches." ] }, { "cell_type": "code", "execution_count": null, "id": "b65de617", "metadata": {}, "outputs": [], "source": [ "# set pystac_client logger to DEBUG to see API calls\n", "import logging\n", "\n", "from pystac_client import Client\n", "\n", "logging.basicConfig()\n", "logger = logging.getLogger(\"pystac_client\")\n", "logger.setLevel(logging.DEBUG)" ] }, { "cell_type": "markdown", "id": "1e16077c", "metadata": {}, "source": [ "# Client\n", "\n", "We first connect to an API by retrieving the root catalog, or landing page, of the API with the `Client.open` function." ] }, { "cell_type": "code", "execution_count": null, "id": "98942e75", "metadata": { "scrolled": true }, "outputs": [], "source": [ "# STAC API root URL\n", "URL = \"https://planetarycomputer.microsoft.com/api/stac/v1\"\n", "\n", "# custom headers\n", "headers = []\n", "\n", "cat = Client.open(URL, headers=headers)\n", "cat" ] }, { "cell_type": "markdown", "id": "f6efbb86", "metadata": {}, "source": [ "# CollectionClient\n", "\n", "As with a static catalog the `get_collections` function will iterate through the Collections in the Catalog. Notice that because this is an API it can get all the Collections through a single call, rather than having to fetch each one individually." ] }, { "cell_type": "code", "execution_count": null, "id": "bb7693fb", "metadata": {}, "outputs": [], "source": [ "for collection in cat.get_collections():\n", " print(collection)" ] }, { "cell_type": "markdown", "id": "ebab2724-cab3-4fba-b25b-fdfb4e537014", "metadata": {}, "source": [ "# Collection Search\n", "\n", "Sometimes, it can be challenging to identify which collection you want to work with. The `collection_search` method allows you to discover collections by applying search filters that will help you find the specific collection(s) you need. Since many STAC APIs have not implemented the collection search extension, `pystac-client` will perform a limited client-side filter if the API does not conform to the collection search spec." ] }, { "cell_type": "code", "execution_count": null, "id": "a23a53ec-5b5f-421d-9f0e-01dbde8c3697", "metadata": {}, "outputs": [], "source": [ "collection_search = cat.collection_search(\n", " q=\"ASTER\",\n", ")" ] }, { "cell_type": "markdown", "id": "90b3d014-9c8f-4c5b-a94e-bfb7f17380ad", "metadata": {}, "source": [ "The `collections` method lets you iterate through the results of the search so you can inspect the details of matching collections." ] }, { "cell_type": "code", "execution_count": null, "id": "006f13fd-5e58-4f3f-bd5a-707cd830caa1", "metadata": {}, "outputs": [], "source": [ "for result in collection_search.collections():\n", " print(result.id, f\"{collection.description}\", sep=\"\\n\")\n", " print(\"\\n\")" ] }, { "cell_type": "code", "execution_count": null, "id": "fef20a46", "metadata": {}, "outputs": [], "source": [ "collection = cat.get_collection(\"aster-l1t\")\n", "collection" ] }, { "cell_type": "markdown", "id": "47a540fe", "metadata": {}, "source": [ "# Items\n", "\n", "The main functions for getting items return iterators, where pystac-client will handle retrieval of additional pages when needed. Note that one request is made for the first ten items, then a second request for the next ten." ] }, { "cell_type": "code", "execution_count": null, "id": "17d6de4b", "metadata": {}, "outputs": [], "source": [ "items = collection.get_items()\n", "\n", "\n", "# flush stdout so we can see the exact order that things happen\n", "def get_ten_items(items):\n", " for i, item in enumerate(items):\n", " print(f\"{i}: {item}\", flush=True)\n", " if i == 9:\n", " return\n", "\n", "\n", "print(\"First page\", flush=True)\n", "get_ten_items(items)\n", "\n", "print(\"Second page\", flush=True)\n", "get_ten_items(items)" ] }, { "cell_type": "markdown", "id": "62e26114", "metadata": {}, "source": [ "# API Search\n", "\n", "If the Catalog is an API, we have the ability to search for items based on spatio-temporal properties." ] }, { "cell_type": "code", "execution_count": null, "id": "d8af6334", "metadata": {}, "outputs": [], "source": [ "# AOI around Delfzijl, in northern Netherlands\n", "geom = {\n", " \"type\": \"Polygon\",\n", " \"coordinates\": [\n", " [\n", " [6.42425537109375, 53.174765470134616],\n", " [7.344360351562499, 53.174765470134616],\n", " [7.344360351562499, 53.67393435835391],\n", " [6.42425537109375, 53.67393435835391],\n", " [6.42425537109375, 53.174765470134616],\n", " ]\n", " ],\n", "}\n", "\n", "# limit sets the # of items per page so we can see multiple pages getting fetched\n", "search = cat.search(\n", " max_items=15,\n", " limit=5,\n", " collections=\"aster-l1t\",\n", " intersects=geom,\n", " datetime=\"2000-01-01/2010-12-31\",\n", ")\n", "\n", "items = list(search.items())\n", "\n", "len(items)" ] }, { "cell_type": "code", "execution_count": null, "id": "275f316f", "metadata": {}, "outputs": [], "source": [ "# note that this will work in JupyterLab, but not in a Jupyter Notebook\n", "\n", "import IPython.display\n", "\n", "IPython.display.JSON([i.to_dict() for i in items])" ] }, { "cell_type": "code", "execution_count": null, "id": "68bf65f2", "metadata": {}, "outputs": [], "source": [ "# this cell can be used in Jupyter Notebook. Use above if using JupyterLab\n", "\n", "import json\n", "import uuid\n", "\n", "from IPython.display import display_html, display_javascript\n", "\n", "\n", "class RenderJSON(object):\n", " def __init__(self, json_data):\n", " if isinstance(json_data, dict) or isinstance(json_data, list):\n", " self.json_str = json.dumps(json_data)\n", " else:\n", " self.json_str = json_data\n", " self.uuid = str(uuid.uuid4())\n", "\n", " def _ipython_display_(self):\n", " display_html(\n", " '
'.format(self.uuid),\n", " raw=True,\n", " )\n", " display_javascript(\n", " \"\"\"\n", " require([\"https://rawgit.com/caldwell/renderjson/master/renderjson.js\"],\n", " function() {\n", " renderjson.set_show_to_level(2);\n", " document.getElementById('%s').appendChild(renderjson(%s))\n", " });\n", " \"\"\"\n", " % (self.uuid, self.json_str),\n", " raw=True,\n", " )\n", "\n", "\n", "RenderJSON([i.to_dict() for i in items])" ] } ], "metadata": { "interpreter": { "hash": "6b6313dbab648ff537330b996f33bf845c0da10ea77ae70864d6ca8e2699c7ea" }, "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.12.3" } }, "nbformat": 4, "nbformat_minor": 5 } pystac-client-0.9.0/docs/tutorials/stac-metadata-viz.ipynb000066400000000000000000000165131503646565400236620ustar00rootroot00000000000000{ "cells": [ { "cell_type": "markdown", "id": "ab31574b", "metadata": {}, "source": [ "# STAC Metadata Visualizations\n", "\n", "This notebook illustrates a simple way to display footprints of discovered Items after searching a STAC API, and making simple plots using Pandas and Holoviews. Only the metadata is visualized in these examples through maps and plots. The actual STAC data (i.e., Item Assets) are not accessed.\n", "\n", "The libraries GeoPandas and hvplot are used for visualizations." ] }, { "cell_type": "code", "execution_count": null, "id": "3188b5a0", "metadata": {}, "outputs": [], "source": [ "# set pystac_client logger to DEBUG to see API calls\n", "import logging\n", "\n", "from pystac_client import Client\n", "\n", "logging.basicConfig()\n", "logger = logging.getLogger(\"pystac_client\")\n", "logger.setLevel(logging.DEBUG)" ] }, { "cell_type": "markdown", "id": "1d404982", "metadata": {}, "source": [ "Define the STAC API to use, along with any custom headers (such as for authentication)" ] }, { "cell_type": "code", "execution_count": null, "id": "d40ed5c1", "metadata": {}, "outputs": [], "source": [ "# STAC API root URL\n", "URL = \"https://planetarycomputer.microsoft.com/api/stac/v1\"\n", "\n", "# custom headers\n", "headers = []\n", "\n", "cat = Client.open(URL, headers=headers)\n", "cat" ] }, { "cell_type": "markdown", "id": "e513e548", "metadata": {}, "source": [ "## Search\n", "\n", "Perform a spatio-temporal search of ASTER data for a small AOI in the northern part of The Netherlands between 2000 and 2010." ] }, { "cell_type": "code", "execution_count": null, "id": "ae7a3eca", "metadata": { "scrolled": true }, "outputs": [], "source": [ "# AOI around Delfzijl, in northern Netherlands\n", "geom = {\n", " \"type\": \"Polygon\",\n", " \"coordinates\": [\n", " [\n", " [6.42425537109375, 53.174765470134616],\n", " [7.344360351562499, 53.174765470134616],\n", " [7.344360351562499, 53.67393435835391],\n", " [6.42425537109375, 53.67393435835391],\n", " [6.42425537109375, 53.174765470134616],\n", " ]\n", " ],\n", "}\n", "\n", "# limit sets the # of items per page so we can see multiple pages getting fetched\n", "search = cat.search(\n", " max_items=50,\n", " collections=\"aster-l1t\",\n", " intersects=geom,\n", " datetime=\"2000-01-01/2010-12-31\",\n", ")\n", "\n", "# retrieve the items as dictionaries, rather than Item objects\n", "items = list(search.items_as_dicts())\n", "len(items)" ] }, { "cell_type": "markdown", "id": "2a23660f", "metadata": {}, "source": [ "## GeoPandas\n", "\n", "A GeoDataFrame is constructed from the AOI geometry, in order to make visualizations easy.\n", "\n", "The STAC Items, which are a GeoJSON FeatureCollection can be converted to a GeoDataFrame." ] }, { "cell_type": "code", "execution_count": null, "id": "ed0da77b", "metadata": {}, "outputs": [], "source": [ "from copy import deepcopy\n", "\n", "import geopandas as gpd\n", "import pandas as pd\n", "from shapely.geometry import shape\n", "\n", "\n", "# convert a list of STAC Items into a GeoDataFrame\n", "def items_to_geodataframe(items):\n", " _items = []\n", " for i in items:\n", " _i = deepcopy(i)\n", " _i[\"geometry\"] = shape(_i[\"geometry\"])\n", " _items.append(_i)\n", " gdf = gpd.GeoDataFrame(pd.json_normalize(_items))\n", " for field in [\"properties.datetime\", \"properties.created\", \"properties.updated\"]:\n", " if field in gdf:\n", " gdf[field] = pd.to_datetime(gdf[field])\n", " gdf.set_index(\"properties.datetime\", inplace=True)\n", " return gdf" ] }, { "cell_type": "code", "execution_count": null, "id": "c4bed793", "metadata": {}, "outputs": [], "source": [ "# convert geometry to a GeoDataFrame\n", "aoi_gdf = gpd.GeoDataFrame([{\"geometry\": shape(geom)}])\n", "aoi_gdf" ] }, { "cell_type": "code", "execution_count": null, "id": "d1fc8732", "metadata": {}, "outputs": [], "source": [ "# convert found items to a GeoDataFrame\n", "items_gdf = items_to_geodataframe(items)\n", "items_gdf.head()" ] }, { "cell_type": "markdown", "id": "4d570626", "metadata": {}, "source": [ "## Plot Geometries on a Map\n", "\n", "Holoviews is used to display geometries on a map by using `hvplot`. The The `*` Holoviews operator to overlay two plots" ] }, { "cell_type": "code", "execution_count": null, "id": "e8fbfad6", "metadata": {}, "outputs": [], "source": [ "import hvplot.pandas # noqa: F401\n", "\n", "\n", "# plot polygons on a map with background tiles.\n", "def plot_polygons(data, *args, **kwargs):\n", " return data.hvplot.polygons(\n", " *args,\n", " geo=True,\n", " projection=\"GOOGLE_MERCATOR\",\n", " xaxis=None,\n", " yaxis=None,\n", " frame_width=600,\n", " frame_height=600,\n", " fill_alpha=0,\n", " line_width=4,\n", " **kwargs,\n", " )" ] }, { "cell_type": "code", "execution_count": null, "id": "72094092", "metadata": {}, "outputs": [], "source": [ "plot_polygons(aoi_gdf, tiles=\"OSM\", line_color=\"red\")" ] }, { "cell_type": "code", "execution_count": null, "id": "d7d6cfc6", "metadata": {}, "outputs": [], "source": [ "plot_polygons(items_gdf, tiles=\"OSM\")" ] }, { "cell_type": "code", "execution_count": null, "id": "0a07e87b", "metadata": {}, "outputs": [], "source": [ "plot_polygons(items_gdf, tiles=\"OSM\") * plot_polygons(aoi_gdf, line_color=\"red\")" ] }, { "cell_type": "markdown", "id": "b0604c84", "metadata": {}, "source": [ "## Line Plots\n", "\n", "Numeric STAC metadata can also be plotted, most often this will be plotted vs the Item `datetime`." ] }, { "cell_type": "code", "execution_count": null, "id": "c198e261", "metadata": {}, "outputs": [], "source": [ "items_df = pd.DataFrame(items_gdf)\n", "\n", "plot_fields = [\n", " \"properties.eo:cloud_cover\",\n", " \"properties.view:sun_azimuth\",\n", " \"properties.view:sun_elevation\",\n", "]\n", "\n", "items_df[plot_fields].hvplot(height=500, width=800).opts(legend_position=\"top_right\")" ] } ], "metadata": { "interpreter": { "hash": "6b6313dbab648ff537330b996f33bf845c0da10ea77ae70864d6ca8e2699c7ea" }, "kernelspec": { "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, "language_info": { "codemirror_mode": { "name": "ipython", "version": 3 }, "file_extension": ".py", "mimetype": "text/x-python", "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", "version": "3.9.16" } }, "nbformat": 4, "nbformat_minor": 5 } pystac-client-0.9.0/docs/usage.rst000066400000000000000000000611531503646565400171110ustar00rootroot00000000000000Usage ##### PySTAC-Client (pystac-client) builds upon `PySTAC `_ library to add support for STAC APIs in addition to static STAC catalogs. PySTAC-Client can be used with static or dynamic (i.e., API) catalogs. Currently, pystac-client does not offer much in the way of additional functionality if using with static catalogs, as the additional features are for support STAC API endpoints such as `search`. However, in the future it is expected that pystac-client will offer additional convenience functions that may be useful for static and dynamic catalogs alike. The most basic implementation of a STAC API is an endpoint that returns a valid STAC Catalog, but also contains a ``"conformsTo"`` attribute that is a list of conformance URIs for the standards that the API supports. This section is organized by the classes that are used, which mirror parent classes from PySTAC: +------------------+------------+ | pystac-client | pystac | +==================+============+ | Client | Catalog | +------------------+------------+ | CollectionClient | Collection | +------------------+------------+ The classes offer all of the same functions for accessing and traversing Catalogs as in PySTAC. The documentation for pystac-client only includes new functions, it does not duplicate documentation for inherited functions. Client ++++++ The :class:`pystac_client.Client` class is the main interface for working with services that conform to the STAC API spec. This class inherits from the :class:`pystac.Catalog` class and in addition to the methods and attributes implemented by a Catalog, it also includes convenience methods and attributes for: * Checking conformance to various specs * Querying a search endpoint (if the API conforms to the STAC API - Item Search spec) * Getting jsonschema of queryables from `/queryables` endpoint (if the API conforms to the STAC API - Filter spec) The preferred way to interact with any STAC Catalog or API is to create an :class:`pystac_client.Client` instance with the ``pystac_client.Client.open`` method on a root Catalog. This calls the :meth:`pystac.STACObject.from_file` except it properly configures conformance and IO for reading from remote servers. The following code creates an instance by making a call to the Microsoft Planetary Computer root catalog. .. code-block:: python >>> from pystac_client import Client >>> catalog = Client.open('https://planetarycomputer.microsoft.com/api/stac/v1') >>> catalog.title 'Microsoft Planetary Computer STAC API' Some functions, such as ``Client.search`` will throw an error if the provided Catalog/API does not support the required Conformance Class. In other cases, such as ``Client.get_collections``, API endpoints will be used if the API conforms, otherwise it will fall back to default behavior provided by :class:`pystac.Catalog`. When a ``Client`` does not conform to a particular Conformance Class, an informative warning is raised. Similarly when falling back to the :class:`pystac.Catalog` implementation a warning is raised. You can control the behavior of these warnings using the standard :py:mod:`warnings` or special context managers :func:`pystac_client.warnings.strict` and from :func:`pystac_client.warnings.ignore`. API Conformance --------------- This library is intended to work with any STAC static catalog or STAC API. A static catalog will be usable more or less the same as with PySTAC, except that pystac-client supports providing custom headers to API endpoints. (e.g., authenticating to an API with a token). A STAC API is a STAC Catalog that is required to advertise its capabilities in a `conformsTo` field and implements the `STAC API - Core` spec along with other optional specifications: * `CORE `__ * `ITEM_SEARCH `__ * `FIELDS `__ * `QUERY `__ * `SORT `__ * `CONTEXT `__ * `FILTER `__ * `COLLECTIONS `__ (based on the `Features Collection section of OGC APO - Features __`) * `FEATURES `__ (based on `OGC API - Features `__) The :meth:`pystac_client.Client.conforms_to` method is used to check conformance against conformance classes (specs). To check an API for support for a given spec, pass the `conforms_to` function the name of a :class:`ConformanceClasses`. .. code-block:: python >>> catalog.conforms_to("ITEM_SEARCH") True If the API does not advertise conformance with a particular spec, but it does support it you can update `conforms_to` on the client object. For instance in `v0` of earth-search there are no ``"conformsTo"`` uris set at all. But they can be explicitly set: .. code-block:: python >>> catalog = Client.open("https://earth-search.aws.element84.com/v0") :1: NoConformsTo: Server does not advertise any conformance classes. >>> catalog.conforms_to("ITEM_SEARCH") False >>> catalog.add_conforms_to("ITEM_SEARCH") Note, updating ``"conformsTo"`` does not change what the server supports, it just changes PySTAC client's understanding of what the server supports. Configuring retry behavior -------------------------- By default, **pystac-client** will retry requests that fail DNS lookup or have timeouts. If you'd like to configure this behavior, e.g. to retry on some ``50x`` responses, you can configure the StacApiIO's session: .. code-block:: python from requests.adapters import HTTPAdapter from urllib3 import Retry from pystac_client import Client from pystac_client.stac_api_io import StacApiIO retry = Retry( total=5, backoff_factor=1, status_forcelist=[502, 503, 504], allowed_methods=None ) stac_api_io = StacApiIO(max_retries=retry) client = Client.open( "https://planetarycomputer.microsoft.com/api/stac/v1", stac_io=stac_api_io ) Automatically modifying results ------------------------------- Some systems, like the `Microsoft Planetary Computer `__, have public STAC metadata but require some `authentication `__ to access the actual assets. ``pystac-client`` provides a ``modifier`` keyword that can automatically modify the STAC objects returned by the STAC API. .. code-block:: python >>> from pystac_client import Client >>> import planetary_computer, requests >>> catalog = Client.open( ... 'https://planetarycomputer.microsoft.com/api/stac/v1', ... modifier=planetary_computer.sign_inplace, ... ) >>> item = next(catalog.get_collection("sentinel-2-l2a").get_all_items()) >>> requests.head(item.assets["B02"].href).status_code 200 Without the modifier, we would have received a 404 error because the asset is in a private storage container. ``pystac-client`` expects that the ``modifier`` callable modifies the result object in-place and returns no result. A warning is emitted if your ``modifier`` returns a non-None result that is not the same object as the input. Here's an example of creating your own modifier. Because :py:class:`~pystac_client.Modifiable` is a union, the modifier function must handle a few different types of input objects, and care must be taken to ensure that you are modifying the input object (rather than a copy). Simplifying this interface is a space for future improvement. .. code-block:: python import urllib.parse import pystac from pystac_client import Client, Modifiable def modifier(modifiable: Modifiable) -> None: if isinstance(modifiable, dict): if modifiable["type"] == "FeatureCollection": new_features = list() for item_dict in modifiable["features"]: modifier(item_dict) new_features.append(item_dict) modifiable["features"] = new_features else: stac_object = pystac.read_dict(modifiable) modifier(stac_object) modifiable.update(stac_object.to_dict()) else: for key, asset in modifiable.assets.items(): url = urllib.parse.urlparse(asset.href) if not url.query: asset.href = urllib.parse.urlunparse(url._replace(query="foo=bar")) modifiable.assets[key] = asset client = Client.open( "https://planetarycomputer.microsoft.com/api/stac/v1", modifier=modifier ) item_search = client.search(collections=["landsat-c2-l2"], max_items=1) item = next(item_search.items()) asset = item.assets["red"] assert urllib.parse.urlparse(asset.href).query == "foo=bar" Using custom certificates ------------------------- If you need to use custom certificates in your ``pystac-client`` requests, you can customize the :class:`StacApiIO` instance before creating your :class:`Client`. .. code-block:: python >>> from pystac_client.stac_api_io import StacApiIO >>> from pystac_client.client import Client >>> stac_api_io = StacApiIO() >>> stac_api_io.session.verify = "/path/to/certfile" >>> client = Client.open("https://planetarycomputer.microsoft.com/api/stac/v1", stac_io=stac_api_io) CollectionClient ++++++++++++++++ STAC APIs may optionally implement a ``/collections`` endpoint as described in the `STAC API - Collections spec `__. This endpoint allows clients to search or inspect items within a particular collection. .. code-block:: python >>> catalog = Client.open('https://planetarycomputer.microsoft.com/api/stac/v1') >>> collection = catalog.get_collection("sentinel-2-l2a") >>> collection.title 'Sentinel-2 Level-2A' :class:`pystac_client.CollectionClient` overrides :meth:`pystac.Collection.get_items`. PySTAC will get items by iterating through all children until it gets to an ``item`` link. PySTAC client will use the API endpoint instead: `/collections//items` (as long as `STAC API - Item Search spec `__ is supported). .. code-block:: python >>> item = next(collection.get_items(), None) Note that calling list on this iterator will take a really long time since it will be retrieving every itme for the whole ``"sentinel-2-l2a"`` collection. CollectionSearch ++++++++++++++++ STAC API services may optionally implement a ``/collections`` endpoint as described in the `STAC API - Collections spec `__. The ``/collections`` endpoint can be extended with the `STAC API - Collection Search Extension `__ which adds the capability to apply filter parameters to the collection-level metadata. See the `Query Parameters and Fields `__ from that spec for details on the meaning of each parameter. The :meth:`pystac_client.Client.collection_search` method provides an interface for making requests to a service's "collections" endpoint. This method returns a :class:`pystac_client.CollectionSearch` instance. .. code-block:: python >>> from pystac_client import Client >>> catalog = Client.open('https://planetarycomputer.microsoft.com/api/stac/v1') >>> results = catalog.collection_search( ... q="biomass", ... datetime="2022/.." ... ) Instances of :class:`~pystac_client.CollectionSearch` have a handful of methods for getting matching collections as Python objects. The right method to use depends on how many of the matches you want to consume (a single collection at a time, a page at a time, or everything) and whether you want plain Python dictionaries representing the collections, or :class:`pystac.Collection` objects. The following table shows the :class:`~pystac_client.CollectionSearch` methods for fetching matches, according to which set of matches to return and whether to return them as ``pystac`` objects or plain dictionaries. ====================== ======================================================= =============================================================== Matches to return PySTAC objects Plain dictionaries ====================== ======================================================= =============================================================== **Single collections** :meth:`~pystac_client.CollectionSearch.collections` :meth:`~pystac_client.CollectionSearch.collections_as_dicts` **Pages** :meth:`~pystac_client.CollectionSearch.pages` :meth:`~pystac_client.CollectionSearch.pages_as_dicts` **Everything** :meth:`~pystac_client.CollectionSearch.collection_list` :meth:`~pystac_client.CollectionSearch.collection_list_as_dict` ====================== ======================================================= =============================================================== Additionally, the ``matched`` method can be used to access result metadata about how many total items matched the query: * :meth:`CollectionSearch.matched `: returns the number of hits (collections) for this search. If the API supports the STAC API Context Extension this value will be returned directly from a search result with ``limit=1``. Otherwise ``pystac-client`` will count the results and return a value with an associated warning. .. code-block:: python >>> for collection in results.collections(): ... print(item.id) fia modis-13Q1-061 modis-13A1-061 sentinel-3-olci-lfr-l2-netcdf The :meth:`~pystac_client.CollectionSearch.collections` and related methods handle retrieval of successive pages of results by finding links with a ``"rel"`` type of ``"next"`` and parsing them to construct the next request. The default implementation of this ``"next"`` link parsing assumes that the link follows the spec for an extended STAC link as described in the `STAC API - Collections: Collection Paging `__ section. Alternatively, the Collections can be returned as a list, where each list is one page of results retrieved from search: .. code-block:: python >>> for page in results.pages(): ... for collection in page.collections(): ... print(collection.id) fia modis-13Q1-061 modis-13A1-061 sentinel-3-olci-lfr-l2-netcdf If you do not need the :class:`pystac.Collection` instances, you can instead use :meth:`CollectionSearch.collections_as_dicts ` to retrieve dictionary representation of the collections, without incurring the cost of creating the Collection objects. .. code-block:: python >>> for collection_dict in results.collections_as_dicts(): ... print(collection_dict["id"]) fia modis-13Q1-061 modis-13A1-061 sentinel-3-olci-lfr-l2-netcdf ItemSearch ++++++++++ STAC API services may optionally implement a ``/search`` endpoint as describe in the `STAC API - Item Search spec `__ from that spec for details on the meaning of each parameter. The :meth:`pystac_client.Client.search` method provides an interface for making requests to a service's "search" endpoint. This method returns a :class:`pystac_client.ItemSearch` instance. .. code-block:: python >>> from pystac_client import Client >>> catalog = Client.open('https://planetarycomputer.microsoft.com/api/stac/v1') >>> results = catalog.search( ... max_items=5, ... bbox=[-73.21, 43.99, -73.12, 44.05], ... datetime=['2019-01-01T00:00:00Z', '2019-01-02T00:00:00Z'], ... ) Instances of :class:`~pystac_client.ItemSearch` have a handful of methods for getting matching items as Python objects. The right method to use depends on how many of the matches you want to consume (a single item at a time, a page at a time, or everything) and whether you want plain Python dictionaries representing the items, or :class:`pystac.Item` objects. The following table shows the :class:`~pystac_client.ItemSearch` methods for fetching matches, according to which set of matches to return and whether to return them as ``pystac`` objects or plain dictionaries. ================= ================================================= ========================================================= Matches to return PySTAC objects Plain dictionaries ================= ================================================= ========================================================= **Single items** :meth:`~pystac_client.ItemSearch.items` :meth:`~pystac_client.ItemSearch.items_as_dicts` **Pages** :meth:`~pystac_client.ItemSearch.pages` :meth:`~pystac_client.ItemSearch.pages_as_dicts` **Everything** :meth:`~pystac_client.ItemSearch.item_collection` :meth:`~pystac_client.ItemSearch.item_collection_as_dict` ================= ================================================= ========================================================= Additionally, the ``matched`` method can be used to access result metadata about how many total items matched the query: * :meth:`ItemSearch.matched `: returns the number of hits (items) for this search if the API supports the STAC API Context Extension. Not all APIs support returning a total count, in which case a warning will be issued. .. code-block:: python >>> for item in results.items(): ... print(item.id) S2B_OPER_MSI_L2A_TL_SGS__20190101T200120_A009518_T18TXP_N02.11 MCD43A4.A2019010.h12v04.006.2019022234410 MCD43A4.A2019009.h12v04.006.2019022222645 MYD11A1.A2019002.h12v04.006.2019003174703 MYD11A1.A2019001.h12v04.006.2019002165238 The :meth:`~pystac_client.ItemSearch.items` and related methods handle retrieval of successive pages of results by finding links with a ``"rel"`` type of ``"next"`` and parsing them to construct the next request. The default implementation of this ``"next"`` link parsing assumes that the link follows the spec for an extended STAC link as described in the `STAC API - Item Search: Paging `__ section. See the :mod:`Paging ` docs for details on how to customize this behavior. Alternatively, the Items can be returned within ItemCollections, where each ItemCollection is one page of results retrieved from search: .. code-block:: python >>> for ic in results.pages(): ... for item in ic.items: ... print(item.id) S2B_OPER_MSI_L2A_TL_SGS__20190101T200120_A009518_T18TXP_N02.11 MCD43A4.A2019010.h12v04.006.2019022234410 MCD43A4.A2019009.h12v04.006.2019022222645 MYD11A1.A2019002.h12v04.006.2019003174703 MYD11A1.A2019001.h12v04.006.2019002165238 If you do not need the :class:`pystac.Item` instances, you can instead use :meth:`ItemSearch.items_as_dicts ` to retrieve dictionary representation of the items, without incurring the cost of creating the Item objects. .. code-block:: python >>> for item_dict in results.items_as_dicts(): ... print(item_dict["id"]) S2B_OPER_MSI_L2A_TL_SGS__20190101T200120_A009518_T18TXP_N02.11 MCD43A4.A2019010.h12v04.006.2019022234410 MCD43A4.A2019009.h12v04.006.2019022222645 MYD11A1.A2019002.h12v04.006.2019003174703 MYD11A1.A2019001.h12v04.006.2019002165238 Query Extension --------------- If the Catalog supports the `Query extension `__, any Item property can also be included in the search. Rather than requiring the JSON syntax the Query extension uses, pystac-client can use a simpler syntax that it will translate to the JSON equivalent. Note however that when the simple syntax is used it sends all property values to the server as strings, except for ``gsd`` which it casts to ``float``. This means that if there are extensions in use with numeric properties these will be sent as strings. Some servers may automatically cast this to the appropriate data type, others may not. The query filter will also accept complete JSON as per the specification. :: where operator is one of `>=`, `<=`, `>`, `<`, `=` Examples: eo:cloud_cover<10 view:off_nadir<50 platform=landsat-8 Any number of properties can be included, and each can be included more than once to use additional operators. Sort Extension --------------- If the Catalog supports the `Sort extension `__, the search request can specify the order in which the results should be sorted with the ``sortby`` parameter. The ``sortby`` parameter can either be a string (e.g., ``"-properties.datetime,+id,collection"``), a list of strings (e.g., ``["-properties.datetime", "+id", "+collection"]``), or a dictionary representing the POST JSON format of sortby. In the string and list formats, a ``-`` prefix means a descending sort and a ``+`` prefix or no prefix means an ascending sort. .. code-block:: python >>> from pystac_client import Client >>> results = Client.open('https://planetarycomputer.microsoft.com/api/stac/v1').search( ... sortby="properties.datetime" ... ) >>> results = Client.open('https://planetarycomputer.microsoft.com/api/stac/v1').search( ... sortby="-properties.datetime,+id,+collection" ... ) >>> results = Client.open('https://planetarycomputer.microsoft.com/api/stac/v1').search( ... sortby=["-properties.datetime", "+id" , "+collection" ] ... ) >>> results = Client.open('https://planetarycomputer.microsoft.com/api/stac/v1').search( ... sortby=[ {"direction": "desc", "field": "properties.datetime"}, {"direction": "asc", "field": "id"}, {"direction": "asc", "field": "collection"}, ] ... ) Loading data ++++++++++++ Once you've fetched your STAC :class:`Items` with ``pystac-client``, you now can work with the data referenced by your :class:`Assets`. This is out of scope for ``pystac-client``, but there's a wide variety of tools and options available, and the correct choices depend on your type of data, your environment, and the type of analysis you're doing. For simple workflows, it can be easiest to load data directly using `rasterio `_, `fiona `_, and similar tools. Here is a simple example using **rasterio** to display data from a raster file. .. code-block:: python >>> import rasterio.plot.show >>> with rasterio.open(item.assets["data"].href) as dataset: ... rasterio.plot.show(dataset) For larger sets of data and more complex workflows, a common tool for working with a large number of raster files is `xarray `_, which provides data structures for labelled multi-dimensional arrays. `stackstac `_ and `odc-stac `_ are two similar tools that can load asset data from :class:`Items` or an :class:`ItemCollection` into an **xarray**. Here's a simple example from **odc-stac**'s documentation: .. code-block:: python >>> catalog = pystac_client.Client.open(...) >>> query = catalog.search(...) >>> xx = odc.stac.load( ... query.get_items(), ... bands=["red", "green", "blue"], ... resolution=100, ... ) >>> xx.red.plot.imshow(col="time") See each packages's respective documentation for more examples and tutorials. pystac-client-0.9.0/pyproject.toml000066400000000000000000000066011503646565400172340ustar00rootroot00000000000000[project] name = "pystac-client" description = "Python library for searching SpatioTemporal Asset Catalog (STAC) APIs." readme = "README.md" authors = [ { name = "Jon Duckworth", email = "duckontheweb@gmail.com" }, { name = "Matthew Hanson", email = "matt.a.hanson@gmail.com" }, ] maintainers = [{ name = "Pete Gadomski", email = "pete.gadomski@gmail.com" }] keywords = ["pystac", "imagery", "raster", "catalog", "STAC"] license = { text = "Apache-2.0" } classifiers = [ "Programming Language :: Python", "Programming Language :: Python :: 3", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.12", "Operating System :: OS Independent", "Natural Language :: English", "Development Status :: 4 - Beta", "Intended Audience :: Developers", "License :: OSI Approved :: Apache Software License", "Topic :: Scientific/Engineering :: GIS", "Topic :: Software Development :: Libraries", "Topic :: Software Development :: Libraries :: Python Modules", ] requires-python = ">=3.10" dependencies = [ "requests>=2.28.2", "pystac[validation]>=1.10.0", "python-dateutil>=2.8.2", ] dynamic = ["version"] [project.scripts] stac-client = "pystac_client.cli:cli" [dependency-groups] dev = [ "codespell~=2.4.0", "coverage~=7.2", "cql2>=0.3.7", "doc8~=1.1.1", "importlib-metadata~=8.0", "mypy~=1.2", "orjson~=3.8", "pre-commit~=4.0", "pytest-benchmark~=5.1.0", "pytest-console-scripts~=1.4.0", "pytest-cov~=6.0", "pytest-recording~=0.13", "pytest~=8.0", "recommonmark~=0.7.1", "requests-mock~=1.12", "ruff==0.9.4", "tomli~=2.0; python_version<'3.11'", "types-python-dateutil>=2.8.19,<2.10.0", "types-requests~=2.32.0", "urllib3>=2.0,<2.3.0", # v2.3.0 breaks VCR, b/c https://github.com/urllib3/urllib3/pull/3489 ] docs = [ "Sphinx~=8.0", "boto3~=1.26", "cartopy~=0.21", "geojson~=3.2.0", "geopandas~=1.0.0", "geoviews~=1.9", "hvplot~=0.11.0", "ipykernel~=6.22", "ipython~=8.12", "jinja2>=3.0,<4.0", "matplotlib~=3.8", "myst-parser~=4.0", "nbsphinx~=0.9", "pydata-sphinx-theme~=0.13", "pygeoif~=1.0", "scipy~=1.10", "sphinxcontrib-fulltoc~=1.2", ] [project.urls] homepage = "https://github.com/stac-utils/pystac-client" documentation = "https://pystac-client.readthedocs.io" repository = "https://github.com/stac-utils/pystac-client.git" changelog = "https://github.com/stac-utils/pystac-client/blob/main/CHANGELOG.md" discussions = "https://github.com/radiantearth/stac-spec/discussions/categories/stac-software" [tool.setuptools.packages.find] include = ["pystac_client*"] exclude = ["tests*"] [tool.setuptools.dynamic] version = { attr = "pystac_client.version.__version__" } [tool.doc8] ignore-path = "docs/_build,docs/tutorials" max-line-length = 130 [tool.ruff] line-length = 88 [tool.ruff.lint] ignore = ["E722", "E731"] select = ["E", "F", "W", "I"] [tool.ruff.lint.per-file-ignores] "__init__.py" = ["F401"] "test_item_search.py" = ["E501"] [tool.pytest.ini_options] markers = "vcr: records network activity" addopts = "--benchmark-skip --block-network" [tool.mypy] show_error_codes = true strict = true [[tool.mypy.overrides]] module = ["jinja2"] ignore_missing_imports = true [build-system] requires = ["setuptools>=61.0"] build-backend = "setuptools.build_meta" pystac-client-0.9.0/pystac_client/000077500000000000000000000000001503646565400171565ustar00rootroot00000000000000pystac-client-0.9.0/pystac_client/__init__.py000066400000000000000000000010041503646565400212620ustar00rootroot00000000000000__all__ = [ "Client", "CollectionClient", "CollectionSearch", "ConformanceClasses", "ItemSearch", "Modifiable", "__version__", ] from pystac_client._utils import Modifiable from pystac_client.client import Client from pystac_client.collection_client import CollectionClient from pystac_client.collection_search import CollectionSearch from pystac_client.conformance import ConformanceClasses from pystac_client.item_search import ItemSearch from pystac_client.version import __version__ pystac-client-0.9.0/pystac_client/_utils.py000066400000000000000000000022001503646565400210210ustar00rootroot00000000000000import urllib import warnings from collections.abc import Callable from typing import Any, Union import pystac from pystac_client.errors import IgnoredResultWarning Modifiable = Union[ pystac.Collection, pystac.Item, pystac.ItemCollection, dict[Any, Any] ] def call_modifier( modifier: Callable[[Modifiable], None] | None, obj: Modifiable ) -> None: """Calls the user's modifier and validates that the result is None.""" if modifier is None: return None result = modifier(obj) if result is not None and result is not obj: warnings.warn( f"modifier '{modifier}' returned a result that's being ignored. " "You should ensure that 'modifier' is operating in-place and use " "a function that returns 'None' or silence this warning.", IgnoredResultWarning, ) def urljoin(href: str, name: str) -> str: """Joins a path onto an existing href, respecting query strings, etc.""" url = urllib.parse.urlparse(href) path = url.path if not path.endswith("/"): path += "/" return urllib.parse.urlunparse(url._replace(path=path + name)) pystac-client-0.9.0/pystac_client/cli.py000066400000000000000000000331431503646565400203030ustar00rootroot00000000000000import argparse import json import logging import os import re import sys import warnings from typing import Any from pystac import STACError, STACTypeError from .client import Client from .conformance import ConformanceClasses from .item_search import ( OPS, BBoxLike, CollectionsLike, DatetimeLike, FieldsLike, FilterLangLike, FilterLike, IDsLike, IntersectsLike, QueryLike, SortbyLike, ) from .version import __version__ from .warnings import ( DoesNotConformTo, FallbackToPystac, MissingLink, NoConformsTo, PystacClientWarning, ) logger = logging.getLogger(__name__) def search( client: Client, matched: bool = False, save: str | None = None, *, method: str = "GET", max_items: int | None = None, limit: int | None = None, ids: IDsLike | None = None, collections: CollectionsLike | None = None, bbox: BBoxLike | None = None, intersects: IntersectsLike | None = None, datetime: DatetimeLike | None = None, query: QueryLike | None = None, filter: FilterLike | None = None, filter_lang: FilterLangLike | None = None, sortby: SortbyLike | None = None, fields: FieldsLike | None = None, ) -> int: """Main function for performing a search""" result = client.search( method=method, max_items=max_items, limit=limit, ids=ids, collections=collections, bbox=bbox, intersects=intersects, datetime=datetime, query=query, filter=filter, filter_lang=filter_lang, sortby=sortby, fields=fields, ) if matched: if (nmatched := result.matched()) is not None: print(f"{nmatched} items matched") else: raise KeyError("'matched' is not supported for this catalog") else: feature_collection = result.item_collection_as_dict() if save: with open(save, "w") as f: f.write(json.dumps(feature_collection)) else: print(json.dumps(feature_collection)) return 0 def collections( client: Client, save: str | None = None, matched: bool = False, *, max_collections: int | None = None, limit: int | None = None, bbox: BBoxLike | None = None, datetime: DatetimeLike | None = None, q: str | None = None, query: QueryLike | None = None, filter: FilterLike | None = None, filter_lang: FilterLangLike | None = None, sortby: SortbyLike | None = None, fields: FieldsLike | None = None, ) -> int: """Fetch collections from collections endpoint""" try: result = client.collection_search( max_collections=max_collections, limit=limit, bbox=bbox, datetime=datetime, q=q, query=query, filter=filter, filter_lang=filter_lang, sortby=sortby, fields=fields, ) if matched: if (nmatched := result.matched()) is not None: print(f"{nmatched} collections matched") else: raise KeyError("'matched' is not supported for this catalog") else: collections_dicts = list(result.collections_as_dicts()) if save: with open(save, "w") as f: f.write(json.dumps(collections_dicts)) else: print(json.dumps(collections_dicts)) except STACTypeError as e: raise STACError( f"The client at {client.self_href} is OK, but one or more of the " "collections is invalid." ) from e return 0 def add_warnings_behavior(parser: argparse.ArgumentParser) -> None: warnings_group = parser.add_argument_group("warnings behavior") warnings_group.add_argument( "--error", nargs="*", choices=[ "no-conforms-to", "does-not-conform-to", "missing-link", "fallback-to-pystac", ], help="Error on all stac-client warnings or specific warnings.", ) warnings_group.add_argument( "--ignore", nargs="*", choices=[ "no-conforms-to", "does-not-conform-to", "missing-link", "fallback-to-pystac", ], help="Ignore all stac-client warnings or specific warnings.", ) def set_warnings(error: list[str] | None, ignore: list[str] | None) -> None: # First set filters on the base class if ignore is not None and len(ignore) == 0: warnings.filterwarnings("ignore", category=PystacClientWarning) if error is not None and len(error) == 0: warnings.filterwarnings("error", category=PystacClientWarning) # Then set filters on any specific classes category_options = { "no-conforms-to": NoConformsTo, "does-not-conform-to": DoesNotConformTo, "missing-link": MissingLink, "fallback-to-pystac": FallbackToPystac, } if ignore is not None: for w in ignore: warnings.filterwarnings("ignore", category=category_options[w]) if error is not None: for w in error: warnings.filterwarnings("error", category=category_options[w]) def set_conforms_to( client: Client, clear: bool, remove: list[str] | None, add: list[str] | None ) -> None: """Alters conforms_to settings on client in-place""" if clear: client.clear_conforms_to() if remove is not None: for conformance_class in remove: client.remove_conforms_to(conformance_class) if add is not None: for conformance_class in add: client.add_conforms_to(conformance_class) def parse_args(args: list[str]) -> dict[str, Any]: desc = "STAC Client" dhf = argparse.ArgumentDefaultsHelpFormatter parser0 = argparse.ArgumentParser(description=desc) parser0.add_argument( "--version", help="Print version and exit", action="version", version=__version__, ) parent = argparse.ArgumentParser(add_help=False) parent.add_argument("url", help="Root Catalog URL") parent.add_argument( "--logging", default="INFO", help="DEBUG, INFO, WARN, ERROR, CRITICAL" ) parent.add_argument( "--headers", nargs="*", help="Additional request headers (KEY=VALUE pairs)", default=None, ) parent.add_argument( "--add-conforms-to", choices=[c.name for c in ConformanceClasses], nargs="*", help="Specify conformance classes to add to client", ) parent.add_argument( "--remove-conforms-to", choices=[c.name for c in ConformanceClasses], nargs="*", help="Specify conformance classes to remove from client", ) parent.add_argument( "--clear-conforms-to", default=False, action="store_true", ) subparsers = parser0.add_subparsers(dest="command") # collections command parser = subparsers.add_parser( "collections", help="Get all collections in this Catalog", parents=[parent], formatter_class=dhf, ) add_warnings_behavior(parser) collections_group = parser.add_argument_group("collection search options") collections_group.add_argument( "--bbox", help="Bounding box (min lon, min lat, max lon, max lat)", nargs=4 ) collections_group.add_argument( "--datetime", help="Single datetime or begin and end datetime (e.g., 2017-01-01/2017-02-15)", ) collections_group.add_argument("--q", help="Free-text search query") collections_group.add_argument( "--query", nargs="*", help=f"Query properties of form KEY=VALUE ({','.join(OPS)} supported)", ) collections_group.add_argument( "--filter", help="Filter on queryables using language specified in filter-lang parameter", ) collections_group.add_argument( "--filter-lang", help="Filter language used within the filter parameter", default="cql2-json", ) collections_group.add_argument("--sortby", help="Sort by fields", nargs="*") collections_group.add_argument( "--fields", help="Control what fields get returned", nargs="*" ) collections_group.add_argument("--limit", help="Page size limit", type=int) collections_group.add_argument( "--max-collections", dest="max_collections", help="Max collections to retrieve from search", type=int, ) output_group = parser.add_argument_group("output options") output_group.add_argument( "--save", help="Filename to save collections to", default=None ) output_group.add_argument( "--matched", help="Print number matched", default=False, action="store_true" ) # search command parser = subparsers.add_parser( "search", help="Perform new search of items", parents=[parent], formatter_class=dhf, ) search_group = parser.add_argument_group("search options") search_group.add_argument( "-c", "--collections", help="One or more collection IDs", nargs="*" ) search_group.add_argument( "--ids", help="One or more Item IDs (ignores other parameters)", nargs="*" ) search_group.add_argument( "--bbox", help="Bounding box (min lon, min lat, max lon, max lat)", nargs=4 ) search_group.add_argument( "--intersects", help="GeoJSON Feature or geometry (file or string)" ) search_group.add_argument( "--datetime", help="Single datetime or begin and end datetime (e.g., 2017-01-01/2017-02-15)", ) search_group.add_argument( "--query", nargs="*", help=f"Query properties of form KEY=VALUE ({','.join(OPS)} supported)", ) search_group.add_argument( "--filter", help="Filter on queryables using language specified in filter-lang parameter", ) search_group.add_argument( "--filter-lang", help="Filter language used within the filter parameter", default="cql2-json", ) search_group.add_argument("--sortby", help="Sort by fields", nargs="*") search_group.add_argument( "--fields", help="Control what fields get returned", nargs="*" ) search_group.add_argument("--limit", help="Page size limit", type=int) search_group.add_argument( "--max-items", dest="max_items", help="Max items to retrieve from search", type=int, ) search_group.add_argument("--method", help="GET or POST", default="POST") add_warnings_behavior(parser) output_group = parser.add_argument_group("output options") output_group.add_argument( "--matched", help="Print number matched", default=False, action="store_true" ) output_group.add_argument( "--save", help="Filename to save Item collection to", default=None ) parsed_args = { k: v for k, v in vars(parser0.parse_args(args)).items() if v is not None } if "command" not in parsed_args: parser0.print_usage() return {} # if intersects is JSON file, read it in if "intersects" in parsed_args: if os.path.exists(parsed_args["intersects"]): with open(parsed_args["intersects"]) as f: data = json.loads(f.read()) if data["type"] == "Feature": parsed_args["intersects"] = data["geometry"] elif data["type"] == "FeatureCollection": logger.warning( "When the input to intersects is a FeatureCollection, " "only the first feature geometry is used." ) parsed_args["intersects"] = data["features"][0]["geometry"] else: parsed_args["intersects"] = data # if headers provided, parse it if "headers" in parsed_args: new_headers = {} splitter = re.compile("^([^=]+)=(.+)$") for head in parsed_args["headers"]: match = splitter.match(head) if match: new_headers[match.group(1)] = match.group(2) else: logger.warning(f"Unable to parse header {head}") parsed_args["headers"] = new_headers if "filter" in parsed_args: if "json" in parsed_args["filter_lang"]: parsed_args["filter"] = json.loads(parsed_args["filter"]) return parsed_args def cli() -> int: args = parse_args(sys.argv[1:]) if not args: return 1 loglevel = args.pop("logging") if args.get("save", False) or args.get("matched", False): logging.basicConfig(level=loglevel) # quiet loggers logging.getLogger("urllib3").propagate = False cmd = args.pop("command") try: url = args.pop("url") headers = args.pop("headers", {}) set_warnings(args.pop("error", None), args.pop("ignore", None)) client = Client.open(url, headers=headers) set_conforms_to( client, args.pop("clear_conforms_to"), args.pop("remove_conforms_to", None), args.pop("add_conforms_to", None), ) if cmd == "search": return search(client, **args) elif cmd == "collections": return collections(client, **args) else: logger.error( f"Command '{cmd}' is not a valid command. " "must be 'search' or 'collections'", ) return 1 except Exception as e: logger.error(e, exc_info=True) return 1 if __name__ == "__main__": return_code = cli() if return_code and return_code != 0: sys.exit(return_code) pystac-client-0.9.0/pystac_client/client.py000066400000000000000000001021021503646565400210020ustar00rootroot00000000000000import re import warnings from collections.abc import Callable, Iterator from functools import lru_cache from typing import ( TYPE_CHECKING, Any, cast, ) import pystac import pystac.utils import pystac.validation from pystac import CatalogType, Collection from pystac.layout import APILayoutStrategy, HrefLayoutStrategy from requests import Request from pystac_client._utils import Modifiable, call_modifier, urljoin from pystac_client.collection_client import CollectionClient from pystac_client.collection_search import CollectionSearch from pystac_client.conformance import ConformanceClasses from pystac_client.errors import ClientTypeError from pystac_client.exceptions import APIError from pystac_client.item_search import ( BBoxLike, CollectionsLike, DatetimeLike, FieldsLike, FilterLangLike, FilterLike, IDsLike, IntersectsLike, ItemSearch, QueryLike, SortbyLike, ) from pystac_client.mixins import QUERYABLES_ENDPOINT, QueryablesMixin from pystac_client.stac_api_io import StacApiIO, Timeout from pystac_client.warnings import ( DoesNotConformTo, FallbackToPystac, NoConformsTo, PystacClientWarning, ) if TYPE_CHECKING: from pystac.item import Item as Item_Type class Client(pystac.Catalog, QueryablesMixin): """A Client for interacting with the root of a STAC Catalog or API Instances of the ``Client`` class inherit from :class:`pystac.Catalog` and provide a convenient way of interacting with STAC Catalogs OR STAC APIs that conform to the `STAC API spec `_. In addition to being a valid `STAC Catalog `_ APIs that have a ``"conformsTo"`` indicate that it supports additional functionality on top of a normal STAC Catalog, such as searching items (e.g., /search endpoint). """ _stac_io: StacApiIO | None _fallback_strategy: HrefLayoutStrategy = APILayoutStrategy() def __init__( self, id: str, description: str, title: str | None = None, stac_extensions: list[str] | None = None, extra_fields: dict[str, Any] | None = None, href: str | None = None, catalog_type: CatalogType = CatalogType.ABSOLUTE_PUBLISHED, strategy: HrefLayoutStrategy | None = None, *, modifier: Callable[[Modifiable], None] | None = None, **kwargs: dict[str, Any], ): super().__init__( id, description, title=title, stac_extensions=stac_extensions, extra_fields=extra_fields, href=href, catalog_type=catalog_type, strategy=strategy, **kwargs, ) self.modifier = modifier def __repr__(self) -> str: return f"" @classmethod def open( cls, url: str, headers: dict[str, str] | None = None, parameters: dict[str, Any] | None = None, ignore_conformance: bool | None = None, modifier: Callable[[Modifiable], None] | None = None, request_modifier: Callable[[Request], Request | None] | None = None, stac_io: StacApiIO | None = None, timeout: Timeout | None = None, ) -> "Client": """Opens a STAC Catalog or API This function will read the root catalog of a STAC Catalog or API Args: url : The URL of a STAC Catalog. headers : A dictionary of additional headers to use in all requests made to any part of this Catalog/API. parameters: Optional dictionary of query string parameters to include in all requests. ignore_conformance (DEPRECATED) : Ignore any advertised Conformance Classes in this Catalog/API. This means that functions will skip checking conformance, and may throw an unknown error if that feature is not supported, rather than a :class:`NotImplementedError`. .. deprecated:: 0.7.0 Conformance can be altered rather than ignored using methods like :meth:`clear_conforms_to` and :meth:`add_conforms_to` modifier : A callable that modifies the children collection and items returned by this Client. This can be useful for injecting authentication parameters into child assets to access data from non-public sources. The callable should expect a single argument, which will be one of the following types: * :class:`pystac.Collection` * :class:`pystac.Item` * :class:`pystac.ItemCollection` * A STAC item-like :class:`dict` * A STAC collection-like :class:`dict` The callable should mutate the argument in place and return ``None``. ``modifier`` propagates recursively to children of this Client. After getting a child collection with, e.g. :meth:`Client.get_collection`, the child items of that collection will still be signed with ``modifier``. request_modifier: A callable that either modifies a `Request` instance or returns a new one. This can be useful for injecting Authentication headers and/or signing fully-formed requests (e.g. signing requests using AWS SigV4). The callable should expect a single argument, which will be an instance of :class:`requests.Request`. If the callable returns a `requests.Request`, that will be used. Alternately, the callable may simply modify the provided request object and return `None`. stac_io: A `StacApiIO` object to use for I/O requests. Generally, leave this to the default. However in cases where customized I/O processing is required, a custom instance can be provided here. timeout: Optional float or (float, float) tuple following the semantics defined by `Requests `__. Return: catalog : A :class:`Client` instance for this Catalog/API """ client: Client = cls.from_file( url, headers=headers, parameters=parameters, modifier=modifier, request_modifier=request_modifier, stac_io=stac_io, timeout=timeout, ) if ignore_conformance is not None: warnings.warn( ( "The `ignore_conformance` option is deprecated and will be " "removed in the next major release. Instead use `set_conforms_to` " "or `add_conforms_to` to control behavior." ), FutureWarning, ) if not client.has_conforms_to(): warnings.warn(NoConformsTo()) return client @classmethod def from_file( # type: ignore cls, href: str, stac_io: StacApiIO | None = None, headers: dict[str, str] | None = None, parameters: dict[str, Any] | None = None, modifier: Callable[[Modifiable], None] | None = None, request_modifier: Callable[[Request], Request | None] | None = None, timeout: Timeout | None = None, ) -> "Client": """Open a STAC Catalog/API Returns: Client: A Client (PySTAC Catalog) of the root Catalog for this Catalog/API """ if stac_io is None: stac_io = StacApiIO( headers=headers, parameters=parameters, request_modifier=request_modifier, timeout=timeout, ) else: stac_io.update( headers=headers, parameters=parameters, request_modifier=request_modifier, timeout=timeout, ) client: Client = super().from_file(href, stac_io) client.modifier = modifier return client def has_conforms_to(self) -> bool: """Whether server contains list of ``"conformsTo"`` URIs""" return "conformsTo" in self.extra_fields def get_conforms_to(self) -> list[str]: """List of ``"conformsTo"`` URIs Return: List[str]: List of URIs that the server conforms to """ return cast(list[str], self.extra_fields.get("conformsTo", []).copy()) def set_conforms_to(self, conformance_uris: list[str]) -> None: """Set list of ``"conformsTo"`` URIs Args: conformance_uris : URIs indicating what the server conforms to """ self.extra_fields["conformsTo"] = conformance_uris def clear_conforms_to(self) -> None: """Clear list of ``"conformsTo"`` urls Removes the entire list, so :py:meth:`has_conforms_to` will return False after using this method. """ self.extra_fields.pop("conformsTo", None) def add_conforms_to(self, name: str) -> None: """Add ``"conformsTo"`` by name. Args: name : name of :py:class:`ConformanceClasses` keys to add. """ conformance_class = ConformanceClasses.get_by_name(name) if not self.conforms_to(conformance_class): self.set_conforms_to([*self.get_conforms_to(), conformance_class.valid_uri]) def remove_conforms_to(self, name: str) -> None: """Remove ``"conformsTo"`` by name. Args: name : name of :py:class:`ConformanceClasses` keys to remove. """ conformance_class = ConformanceClasses.get_by_name(name) self.set_conforms_to( [ uri for uri in self.get_conforms_to() if not re.match(conformance_class.pattern, uri) ] ) def conforms_to(self, conformance_class: ConformanceClasses | str) -> bool: """Checks whether the API conforms to the given standard. This method only checks against the ``"conformsTo"`` property from the API landing page and does not make any additional calls to a ``/conformance`` endpoint even if the API provides such an endpoint. Args: name : name of :py:class:`ConformanceClasses` keys to check conformance against. Return: bool: Indicates if the API conforms to the given spec or URI. """ if isinstance(conformance_class, str): conformance_class = ConformanceClasses.get_by_name(conformance_class) return any( re.match(conformance_class.pattern, uri) for uri in self.get_conforms_to() ) @classmethod def from_dict( cls, d: dict[str, Any], href: str | None = None, root: pystac.Catalog | None = None, migrate: bool = False, preserve_dict: bool = True, modifier: Callable[[Modifiable], None] | None = None, ) -> "Client": try: # this will return a Client because we have used a StacApiIO instance result = super().from_dict( d=d, href=href, root=root, migrate=migrate, preserve_dict=preserve_dict ) except pystac.STACTypeError: raise ClientTypeError( f"Could not open Client (href={href}), " f"expected type=Catalog, found type={d.get('type', None)}" ) result.modifier = modifier return result def _supports_collections(self) -> bool: return self.conforms_to(ConformanceClasses.COLLECTIONS) or self.conforms_to( ConformanceClasses.FEATURES ) def _warn_about_fallback(self, *args: str) -> None: if self.has_conforms_to(): warnings.warn(DoesNotConformTo(*args), stacklevel=2) warnings.warn(FallbackToPystac(), stacklevel=2) def get_merged_queryables(self, collections: list[str]) -> dict[str, Any]: """Return the set of queryables in common to the specified collections. Queryables from multiple collections are unioned together, except in the case when the same queryable key has a different definition, in which case that key is dropped. Output is a dictionary that can be used in ``jsonshema.validate`` Args: collections List[str]: The IDs of the collections to inspect. Return: Dict[str, Any]: Dictionary containing queryable fields """ if not collections: raise ValueError("cannot get_merged_queryables from empty Iterable") if not self.conforms_to(ConformanceClasses.FILTER): raise DoesNotConformTo(ConformanceClasses.FILTER.name) response = self.get_queryables_from( self._get_collection_queryables_href(collections[0]) ) response.pop("$id") addl_props = response.get("additionalProperties", False) for collection in collections[1:]: resp = self.get_queryables_from( self._get_collection_queryables_href(collection) ) # additionalProperties is false if any collection doesn't support additional # properties addl_props &= resp.get("additionalProperties", False) # drop queryables if their keys match, but the descriptions differ for k in set(resp["properties"]).intersection(response["properties"]): if resp["properties"][k] != response["properties"][k]: resp["properties"].pop(k) response["properties"].pop(k) response["properties"].update(resp["properties"]) return response @lru_cache def get_collection(self, collection_id: str) -> Collection | CollectionClient: """Get a single collection from this Catalog/API Args: collection_id: The Collection ID to get Returns: Union[Collection, CollectionClient]: A STAC Collection Raises: NotFoundError if collection_id does not exist. """ collection: Collection | CollectionClient | None = None if self._supports_collections(): assert self._stac_io is not None url = self._collections_href(collection_id) collection = CollectionClient.from_dict( self._stac_io.read_json(url), root=self, modifier=self.modifier, ) call_modifier(self.modifier, collection) else: self._warn_about_fallback("COLLECTIONS", "FEATURES") for collection in super().get_collections(): if collection.id == collection_id: call_modifier(self.modifier, collection) break if collection is None: raise KeyError(f"Collection {collection_id} not found on catalog") return collection def get_collections(self) -> Iterator[Collection]: """Get Collections in this Catalog Gets the collections from the /collections endpoint if supported, otherwise fall back to Catalog behavior of following child links Return: Iterator[Union[Collection, CollectionClient]]: Collections in Catalog/API """ collection: Collection | CollectionClient if self._supports_collections(): assert self._stac_io is not None url = self._collections_href() for page in self._stac_io.get_pages(url): if "collections" not in page: raise APIError("Invalid response from /collections") for col in page["collections"]: collection = CollectionClient.from_dict( col, root=self, modifier=self.modifier ) call_modifier(self.modifier, collection) yield collection else: self._warn_about_fallback("COLLECTIONS", "FEATURES") for collection in super().get_collections(): call_modifier(self.modifier, collection) yield collection def get_items( self, *ids: str, recursive: bool | None = None ) -> Iterator["Item_Type"]: """Return all items of this catalog. Args: ids: Zero or more item ids to find. recursive: If this client conforms to the ITEM_SEARCH conformance class, this is unused and this will always yield items recursively. Otherwise, this will only return items recursively if True or None. Return: Iterator[Item]: Iterator of items whose parent is this catalog. """ if self.conforms_to(ConformanceClasses.ITEM_SEARCH): if recursive is False: warnings.warn( "Getting items recursively using the /search endpoint " "(the recursive argument is being ignored).", PystacClientWarning, ) search = self.search(ids=ids) yield from search.items() else: self._warn_about_fallback("ITEM_SEARCH") for item in super().get_items( *ids, recursive=recursive is None or recursive ): call_modifier(self.modifier, item) yield item def get_all_items(self) -> Iterator["Item_Type"]: """Get all items from this catalog and all subcatalogs. Will traverse any subcatalogs recursively, or use the /search endpoint if supported Returns: Iterator[Item]: All items that belong to this catalog, and all catalogs or collections connected to this catalog through child links. """ yield from self.get_items() def search( self, *, method: str | None = "POST", max_items: int | None = None, limit: int | None = None, ids: IDsLike | None = None, collections: CollectionsLike | None = None, bbox: BBoxLike | None = None, intersects: IntersectsLike | None = None, datetime: DatetimeLike | None = None, query: QueryLike | None = None, filter: FilterLike | None = None, filter_lang: FilterLangLike | None = None, sortby: SortbyLike | None = None, fields: FieldsLike | None = None, ) -> ItemSearch: """Query the ``/search`` endpoint using the given parameters. This method returns an :class:`~pystac_client.ItemSearch` instance. See that class's documentation for details on how to get the number of matches and iterate over results. The ``url``, ``stac_io``, and ``client`` keywords are supplied by this Client instance. .. warning:: This method is only implemented if the API conforms to the `STAC API - Item Search `__ spec *and* contains a link with a ``"rel"`` type of ``"search"`` in its root catalog. If the API does not meet either of these criteria, this method will raise a :exc:`NotImplementedError`. Args: method : The HTTP method to use when making a request to the service. This must be either ``"GET"``, ``"POST"``, or ``None``. If ``None``, this will default to ``"POST"``. If a ``"POST"`` request receives a ``405`` status for the response, it will automatically retry with ``"GET"`` for all subsequent requests. max_items : The maximum number of items to return from the search, even if there are more matching results. This client to limit the total number of Items returned from the :meth:`items`, :meth:`item_collections`, and :meth:`items_as_dicts methods`. The client will continue to request pages of items until the number of max items is reached. Setting this to ``None`` will allow iteration over a possibly very large number of results. limit: A recommendation to the service as to the number of items to return *per page* of results. Defaults to 100. ids: List of one or more Item ids to filter on. collections: List of one or more Collection IDs or :class:`pystac.Collection` instances. Only Items in one of the provided Collections will be searched bbox: A list, tuple, or iterator representing a bounding box of 2D or 3D coordinates. Results will be filtered to only those intersecting the bounding box. intersects: A string or dictionary representing a GeoJSON geometry, or an object that implements a ``__geo_interface__`` property, as supported by several libraries including Shapely, ArcPy, PySAL, and geojson. Results filtered to only those intersecting the geometry. datetime: Either a single datetime or datetime range used to filter results. You may express a single datetime using a :class:`datetime.datetime` instance, a `RFC 3339-compliant `__ timestamp, or a simple date string (see below). Instances of :class:`datetime.datetime` may be either timezone aware or unaware. Timezone aware instances will be converted to a UTC timestamp before being passed to the endpoint. Timezone unaware instances are assumed to represent UTC timestamps. You may represent a datetime range using a ``"/"`` separated string as described in the spec, or a list, tuple, or iterator of 2 timestamps or datetime instances. For open-ended ranges, use either ``".."`` (``'2020-01-01:00:00:00Z/..'``, ``['2020-01-01:00:00:00Z', '..']``) or a value of ``None`` (``['2020-01-01:00:00:00Z', None]``). If using a simple date string, the datetime can be specified in ``YYYY-mm-dd`` format, optionally truncating to ``YYYY-mm`` or just ``YYYY``. Simple date strings will be expanded to include the entire time period, for example: - ``2017`` expands to ``2017-01-01T00:00:00Z/2017-12-31T23:59:59Z`` - ``2017-06`` expands to ``2017-06-01T00:00:00Z/2017-06-30T23:59:59Z`` - ``2017-06-10`` expands to ``2017-06-10T00:00:00Z/2017-06-10T23:59:59Z`` If used in a range, the end of the range expands to the end of that day/month/year, for example: - ``2017/2018`` expands to ``2017-01-01T00:00:00Z/2018-12-31T23:59:59Z`` - ``2017-06/2017-07`` expands to ``2017-06-01T00:00:00Z/2017-07-31T23:59:59Z`` - ``2017-06-10/2017-06-11`` expands to ``2017-06-10T00:00:00Z/2017-06-11T23:59:59Z`` query: List or JSON of query parameters as per the STAC API `query` extension filter: JSON of query parameters as per the STAC API `filter` extension filter_lang: Language variant used in the filter body. If `filter` is a dictionary or not provided, defaults to 'cql2-json'. If `filter` is a string, defaults to `cql2-text`. sortby: A single field or list of fields to sort the response by fields: A list of fields to include in the response. Note this may result in invalid STAC objects, as they may not have required fields. Use `items_as_dicts` to avoid object unmarshalling errors. Returns: search : An ItemSearch instance that can be used to iterate through Items. Raises: NotImplementedError: If the API does not conform to the `Item Search spec `__ or does not have a link with a ``"rel"`` type of ``"search"``. """ if not self.conforms_to(ConformanceClasses.ITEM_SEARCH): raise DoesNotConformTo( "ITEM_SEARCH", "There is no fallback option available for search." ) return ItemSearch( url=self._search_href(), method=method, max_items=max_items, client=self, limit=limit, ids=ids, collections=collections, bbox=bbox, intersects=intersects, datetime=datetime, query=query, filter=filter, filter_lang=filter_lang, sortby=sortby, fields=fields, modifier=self.modifier, ) def collection_search( self, *, max_collections: int | None = None, limit: int | None = None, bbox: BBoxLike | None = None, datetime: DatetimeLike | None = None, q: str | None = None, query: QueryLike | None = None, filter: FilterLike | None = None, filter_lang: FilterLangLike | None = None, sortby: SortbyLike | None = None, fields: FieldsLike | None = None, ) -> CollectionSearch: """Query the ``/collections`` endpoint using the given parameters. This method returns an :class:`~pystac_client.CollectionSearch` instance. See that class's documentation for details on how to get the number of matches and iterate over results. The ``url``, `stac_io``, and ``client`` keywords are supplied by this Client instance. .. warning:: This method is fully implemented if the API conforms to the `STAC API - Collection Search Extension `__ spec. If the API does not conform to the Collection Search Extension but conforms to `STAC API - Collections `__ (has a ``"rel"`` type of ``"data"`` in its root catalog), a limited client-side collection filtering process will be used. If the API does not meet either of these criteria, this method will raise a :exc:`NotImplementedError`. Client-side filtering will only use the ``bbox``, ``datetime``, and ``q`` (free-text search) parameters. Args: max_collections : The maximum number of collections to return from the search, even if there are more matching results. This client to limit the total number of Collections returned from the :meth:`collections`, :meth:`collection_list`, and :meth:`collections_as_dicts methods`. The client will continue to request pages of collections until the number of max collections is reached. Setting this to ``None`` will allow iteration over a possibly very large number of results. limit: A recommendation to the service as to the number of items to return *per page* of results. Defaults to 100. bbox: A list, tuple, or iterator representing a bounding box of 2D or 3D coordinates. Results will be filtered to only those intersecting the bounding box. datetime: Either a single datetime or datetime range used to filter results. You may express a single datetime using a :class:`datetime.datetime` instance, a `RFC 3339-compliant `__ timestamp, or a simple date string (see below). Instances of :class:`datetime.datetime` may be either timezone aware or unaware. Timezone aware instances will be converted to a UTC timestamp before being passed to the endpoint. Timezone unaware instances are assumed to represent UTC timestamps. You may represent a datetime range using a ``"/"`` separated string as described in the spec, or a list, tuple, or iterator of 2 timestamps or datetime instances. For open-ended ranges, use either ``".."`` (``'2020-01-01:00:00:00Z/..'``, ``['2020-01-01:00:00:00Z', '..']``) or a value of ``None`` (``['2020-01-01:00:00:00Z', None]``). If using a simple date string, the datetime can be specified in ``YYYY-mm-dd`` format, optionally truncating to ``YYYY-mm`` or just ``YYYY``. Simple date strings will be expanded to include the entire time period, for example: - ``2017`` expands to ``2017-01-01T00:00:00Z/2017-12-31T23:59:59Z`` - ``2017-06`` expands to ``2017-06-01T00:00:00Z/2017-06-30T23:59:59Z`` - ``2017-06-10`` expands to ``2017-06-10T00:00:00Z/2017-06-10T23:59:59Z`` If used in a range, the end of the range expands to the end of that day/month/year, for example: - ``2017/2018`` expands to ``2017-01-01T00:00:00Z/2018-12-31T23:59:59Z`` - ``2017-06/2017-07`` expands to ``2017-06-01T00:00:00Z/2017-07-31T23:59:59Z`` - ``2017-06-10/2017-06-11`` expands to ``2017-06-10T00:00:00Z/2017-06-11T23:59:59Z`` q: Free-text search query. See the `STAC API - Free Text Extension Spec `__ for details. query: List or JSON of query parameters as per the STAC API `query` extension filter: JSON of query parameters as per the STAC API `filter` extension filter_lang: Language variant used in the filter body. If `filter` is a dictionary or not provided, defaults to 'cql2-json'. If `filter` is a string, defaults to `cql2-text`. sortby: A single field or list of fields to sort the response by fields: A list of fields to include in the response. Note this may result in invalid STAC objects, as they may not have required fields. Use `items_as_dicts` to avoid object unmarshalling errors. Returns: collection_search : A CollectionSearch instance that can be used to iterate through Collections. Raises: NotImplementedError: If the API does not conform to either the `STAC API - Collection Search spec `__ or the `STAC API - Collections spec `__. """ if not ( self.conforms_to(ConformanceClasses.COLLECTION_SEARCH) or self.conforms_to(ConformanceClasses.COLLECTIONS) ) and any([bbox, datetime, q, query, filter, sortby, fields]): raise DoesNotConformTo( "COLLECTION_SEARCH or COLLECTIONS", "there is no fallback option available for search.", ) return CollectionSearch( url=self._collections_href(), client=self, max_collections=max_collections, limit=limit, bbox=bbox, datetime=datetime, q=q, query=query, filter=filter, filter_lang=filter_lang, sortby=sortby, fields=fields, modifier=self.modifier, ) def get_search_link(self) -> pystac.Link | None: """Returns this client's search link. Searches for a link with rel="search" and either a GEOJSON or JSON media type. Returns: Optional[pystac.Link]: The search link, or None if there is not one found. """ return next( ( link for link in self.links if link.rel == "search" and ( link.media_type == pystac.MediaType.GEOJSON or link.media_type == pystac.MediaType.JSON ) ), None, ) def _search_href(self) -> str: search_link = self.get_search_link() href = self._get_href("search", search_link, "search") return href def _collections_href(self, collection_id: str | None = None) -> str: data_link = self.get_single_link("data") href = self._get_href("data", data_link, "collections") if collection_id is not None: return urljoin(href, collection_id) return href def _get_collection_queryables_href(self, collection_id: str | None = None) -> str: href = self._collections_href(collection_id) return urljoin(href, QUERYABLES_ENDPOINT) pystac-client-0.9.0/pystac_client/collection_client.py000066400000000000000000000171031503646565400232230ustar00rootroot00000000000000from __future__ import annotations import warnings from collections.abc import Callable, Iterator from typing import ( TYPE_CHECKING, Any, Optional, cast, ) import pystac from pystac.layout import APILayoutStrategy, HrefLayoutStrategy from pystac_client._utils import Modifiable, call_modifier from pystac_client.conformance import ConformanceClasses from pystac_client.exceptions import APIError from pystac_client.item_search import ItemSearch from pystac_client.mixins import QueryablesMixin from pystac_client.stac_api_io import StacApiIO from pystac_client.warnings import FallbackToPystac if TYPE_CHECKING: from pystac.item import Item as Item_Type from pystac_client import Client class CollectionClient(pystac.Collection, QueryablesMixin): modifier: Callable[[Modifiable], None] _stac_io: StacApiIO _fallback_strategy: HrefLayoutStrategy = APILayoutStrategy() def __init__( self, id: str, description: str, extent: pystac.Extent, title: str | None = None, stac_extensions: list[str] | None = None, href: str | None = None, extra_fields: dict[str, Any] | None = None, catalog_type: pystac.CatalogType | None = None, license: str = "proprietary", keywords: list[str] | None = None, providers: list[pystac.Provider] | None = None, summaries: pystac.Summaries | None = None, assets: dict[str, pystac.Asset] | None = None, strategy: HrefLayoutStrategy | None = None, *, modifier: Callable[[Modifiable], None] | None = None, **kwargs: dict[str, Any], ): super().__init__( id, description, extent, title, stac_extensions, href, extra_fields, catalog_type, license, keywords, providers, summaries, assets, strategy, **kwargs, ) # error: Cannot assign to a method [assignment] # https://github.com/python/mypy/issues/2427 setattr(self, "modifier", modifier) @classmethod def from_dict( cls, d: dict[str, Any], href: str | None = None, root: pystac.Catalog | Client | None = None, migrate: bool = False, preserve_dict: bool = True, modifier: Callable[[Modifiable], None] | None = None, ) -> CollectionClient: result = super().from_dict(d, href, root, migrate, preserve_dict) # error: Cannot assign to a method [assignment] # https://github.com/python/mypy/issues/2427 setattr(result, "modifier", modifier) return result def __repr__(self) -> str: return f"" def set_root(self, root: pystac.Catalog | Client | None) -> None: # hook in to set_root and use it for setting _stac_io super().set_root(root=root) if root is None: raise ValueError("`CollectionClient.root` must be set") elif root._stac_io is not None and isinstance(root._stac_io, StacApiIO): self._stac_io = root._stac_io else: raise ValueError("`CollectionClient.root` must be a valid `Client` object") def get_root(self) -> Client: from pystac_client.client import Client root = super().get_root() if root is None or not isinstance(root, Client): raise ValueError( "`CollectionClient.root` is not have a valid `Client` object." ) return root def conforms_to(self, conformance_class: ConformanceClasses | str) -> bool: root = self.get_root() return root.conforms_to(conformance_class) def get_items(self, *ids: str, recursive: bool = False) -> Iterator[Item_Type]: """Return all items in this Collection or specific items. If the Collection contains a link of with a `rel` value of `items`, that link will be used to iterate through items. Otherwise, the default PySTAC behavior is assumed. Args: ids: Items ids to retrieve recursive: If True, search every child collection as well as this one. Return: Iterator[Item]: Iterator of items whose parent is this catalog. """ if recursive is True: yield from super().get_items(*ids, recursive=True) else: root = self.get_root() if root.conforms_to(ConformanceClasses.ITEM_SEARCH): url = root._search_href() if ids else self._items_href() search = ItemSearch( url=url, method="GET", client=root, ids=ids, collections=[self.id], modifier=self.modifier, ) yield from search.items() else: root._warn_about_fallback("ITEM_SEARCH") for item in super().get_items(*ids): call_modifier(self.modifier, item) yield item def get_item(self, id: str, recursive: bool = False) -> Item_Type | None: """Returns an item with a given ID. If the collection conforms to [ogcapi-features](https://github.com/radiantearth/stac-api-spec/blob/738f4837ac6bea041dc226219e6d13b2c577fb19/ogcapi-features/README.md), this will use the `/collections/{collectionId}/items/{featureId}`. If not, and the collection conforms to [item search](https://github.com/radiantearth/stac-api-spec/blob/2d3c0cf644af9976eecbf32aec77b9a137268e12/item-search/README.md), this will use `/search?ids={featureId}&collections={collectionId}`. Otherwise, the default PySTAC behavior is used. Args: id : The ID of the item to find. recursive : If True, search this catalog and all children for the item; otherwise, only search the items of this catalog. Defaults to False. Return: Item or None: The item with the given ID, or None if not found. """ if not recursive: root = self.get_root() if root.conforms_to(ConformanceClasses.FEATURES) and self._stac_io: url = f"{self._items_href().rstrip('/')}/{id}" try: obj = self._stac_io.read_stac_object(url, root=self) item = cast(Optional[pystac.Item], obj) except APIError as err: if getattr(err, "status_code", None) and err.status_code == 404: return None else: raise err elif root.conforms_to(ConformanceClasses.ITEM_SEARCH) and self._stac_io: item_search = ItemSearch( url=root._search_href(), method="GET", client=root, ids=[id], collections=[self.id], modifier=self.modifier, ) item = next(item_search.items(), None) else: root._warn_about_fallback("FEATURES", "ITEM_SEARCH") item = super().get_item(id, recursive=False) else: warnings.warn(FallbackToPystac()) item = super().get_item(id, recursive=True) if item: call_modifier(self.modifier, item) return item def _items_href(self) -> str: link = self.get_single_link("items") href = self._get_href("items", link, "items") return href pystac-client-0.9.0/pystac_client/collection_search.py000066400000000000000000000517201503646565400232150ustar00rootroot00000000000000import warnings from collections.abc import Callable, Iterator from datetime import datetime, timezone from functools import lru_cache from typing import ( TYPE_CHECKING, Any, Optional, ) from pystac import Collection, Extent from pystac_client._utils import Modifiable, call_modifier from pystac_client.conformance import ConformanceClasses from pystac_client.free_text import sqlite_text_search from pystac_client.item_search import ( BaseSearch, BBox, BBoxLike, Datetime, DatetimeLike, FieldsLike, FilterLangLike, FilterLike, QueryLike, SortbyLike, ) from pystac_client.stac_api_io import StacApiIO from pystac_client.warnings import DoesNotConformTo, PystacClientWarning if TYPE_CHECKING: from pystac_client import client as _client TemporalInterval = tuple[Optional[datetime], Optional[datetime]] def temporal_intervals_overlap( interval1: TemporalInterval, interval2: TemporalInterval, ) -> bool: start1, end1 = interval1 start2, end2 = interval2 dtmin = datetime.min.replace(tzinfo=timezone.utc) dtmax = datetime.max.replace(tzinfo=timezone.utc) return (start2 or dtmin) <= (end1 or dtmax) and (start1 or dtmin) <= (end2 or dtmax) def bboxes_overlap(bbox1: BBox, bbox2: BBox) -> bool: xmin1, ymin1, xmax1, ymax1 = bbox1 xmin2, ymin2, xmax2, ymax2 = bbox2 return xmin1 <= xmax2 and xmin2 <= xmax1 and ymin1 <= ymax2 and ymin2 <= ymax1 def _extent_matches( extent: Extent, bbox: BBox | None = None, temporal_interval_str: Datetime | None = None, ) -> tuple[bool, bool]: bbox_overlaps = not bbox or ( any( bboxes_overlap(bbox, tuple(collection_bbox)) for collection_bbox in extent.spatial.bboxes ) ) # check for overlap between the provided temporal interval and the collection's # temporal extent collection_temporal_extent = extent.temporal # process the user-provided temporal interval search_temporal_interval = ( temporal_interval_str.split("/") if temporal_interval_str else [] ) # replace .. in open intervals with actual strings if search_temporal_interval: if search_temporal_interval[0] == "..": search_temporal_interval[0] = datetime.min.replace( tzinfo=timezone.utc ).isoformat() if search_temporal_interval[1] == "..": search_temporal_interval[1] = datetime.max.replace( tzinfo=timezone.utc ).isoformat() datetime_overlaps = not temporal_interval_str or ( any( temporal_intervals_overlap( ( datetime.fromisoformat( search_temporal_interval[0].replace("Z", "+00:00") ), datetime.fromisoformat( search_temporal_interval[1].replace("Z", "+00:00") ), ), ( collection_temporal_interval[0], collection_temporal_interval[1], ), ) for collection_temporal_interval in collection_temporal_extent.intervals ) ) return bbox_overlaps, datetime_overlaps def collection_matches( collection_dict: dict[str, Any], bbox: BBox | None = None, temporal_interval_str: Datetime | None = None, q: str | None = None, ) -> bool: # check for overlap between provided bbox and the collection's spatial extent try: extent = Extent.from_dict(collection_dict.get("extent", {})) except Exception: warnings.warn( f"Unable to parse extent from collection={collection_dict.get('id', None)}", PystacClientWarning, ) bbox_overlaps = True datetime_overlaps = True else: bbox_overlaps, datetime_overlaps = _extent_matches( extent, bbox, temporal_interval_str ) # check for overlap between the provided free-text search query (q) and the # collection's title, description, and keywords text_fields: dict[str, str] = { key: text for key, text in collection_dict.items() if text and key in ["title", "description", "keywords"] } if text_fields.get("keywords"): text_fields["keywords"] = ", ".join(text_fields["keywords"]) text_overlaps = not q or sqlite_text_search(q, text_fields) return bbox_overlaps and datetime_overlaps and text_overlaps class CollectionSearch(BaseSearch): """Represents a deferred query to a STAC collection search endpoint as described in the `STAC API - Collection Search extension `__. Due to potential conflicts between the collection-search and transactions extensions pystac_client will only send GET requests to the /collections endpoint. No request is sent to the API until a method is called to iterate through the resulting STAC Collections, either :meth:`CollectionSearch.collections`, or :meth:`CollectionSearch.collections_as_dicts`. All parameters except `url``, ``method``, ``max_collections``, and ``client`` correspond to query parameters described in the `STAC API - Collection Extension: Query Parameters Table `__ docs. Please refer to those docs for details on how these parameters filter search results. Args: url: The URL to the search page of the STAC API. max_collections : The maximum number of collections to return from the search, even if there are more matching results. This client to limit the total number of Collections returned from the :meth:`collections`, :meth:`collection_list`, and :meth:`collections_as_dicts methods`. The client will continue to request pages of collections until the number of max collections is reached. Setting this to ``None`` will allow iteration over a possibly very large number of results. stac_io: An instance of StacIO for retrieving results. Normally comes from the Client that returns this CollectionSearch client: An instance of a root Client used to set the root on resulting Collections. client: An instance of Client for retrieving results. This is normally populated by the client that returns this CollectionSearch instance. limit: A recommendation to the service as to the number of collections to return *per page* of results. Defaults to 100. bbox: A list, tuple, or iterator representing a bounding box of 2D or 3D coordinates. Results will be filtered to only those intersecting the bounding box. datetime: Either a single datetime or datetime range used to filter results. You may express a single datetime using a :class:`datetime.datetime` instance, a `RFC 3339-compliant `__ timestamp, or a simple date string (see below). Instances of :class:`datetime.datetime` may be either timezone aware or unaware. Timezone aware instances will be converted to a UTC timestamp before being passed to the endpoint. Timezone unaware instances are assumed to represent UTC timestamps. You may represent a datetime range using a ``"/"`` separated string as described in the spec, or a list, tuple, or iterator of 2 timestamps or datetime instances. For open-ended ranges, use either ``".."`` (``'2020-01-01:00:00:00Z/..'``, ``['2020-01-01:00:00:00Z', '..']``) or a value of ``None`` (``['2020-01-01:00:00:00Z', None]``). If using a simple date string, the datetime can be specified in ``YYYY-mm-dd`` format, optionally truncating to ``YYYY-mm`` or just ``YYYY``. Simple date strings will be expanded to include the entire time period, for example: - ``2017`` expands to ``2017-01-01T00:00:00Z/2017-12-31T23:59:59Z`` - ``2017-06`` expands to ``2017-06-01T00:00:00Z/2017-06-30T23:59:59Z`` - ``2017-06-10`` expands to ``2017-06-10T00:00:00Z/2017-06-10T23:59:59Z`` If used in a range, the end of the range expands to the end of that day/month/year, for example: - ``2017/2018`` expands to ``2017-01-01T00:00:00Z/2018-12-31T23:59:59Z`` - ``2017-06/2017-07`` expands to ``2017-06-01T00:00:00Z/2017-07-31T23:59:59Z`` - ``2017-06-10/2017-06-11`` expands to ``2017-06-10T00:00:00Z/2017-06-11T23:59:59Z`` q: Free-text search query. See the `STAC API - Free Text Extension Spec `__ for syntax. query: List or JSON of query parameters as per the STAC API `query` extension filter: JSON of query parameters as per the STAC API `filter` extension filter_lang: Language variant used in the filter body. If `filter` is a dictionary or not provided, defaults to 'cql2-json'. If `filter` is a string, defaults to `cql2-text`. sortby: A single field or list of fields to sort the response by fields: A list of fields to include in the response. Note this may result in invalid STAC objects, as they may not have required fields. Use `collections_as_dicts` to avoid object unmarshalling errors. modifier : A callable that modifies the children collection and items returned by this Client. This can be useful for injecting authentication parameters into child assets to access data from non-public sources. The callable should expect a single argument, which will be one of the following types: * :class:`pystac.Collection` * :class:`pystac.Item` * :class:`pystac.ItemCollection` * A STAC item-like :class:`dict` * A STAC collection-like :class:`dict` The callable should mutate the argument in place and return ``None``. ``modifier`` propagates recursively to children of this Client. After getting a child collection with, e.g. :meth:`Client.get_collection`, the child items of that collection will still be signed with ``modifier``. """ _stac_io: StacApiIO _collection_search_extension_enabled: bool _collection_search_free_text_enabled: bool def __init__( self, url: str, *, max_collections: int | None = None, stac_io: StacApiIO | None = None, client: Optional["_client.Client"] = None, limit: int | None = None, bbox: BBoxLike | None = None, datetime: DatetimeLike | None = None, query: QueryLike | None = None, filter: FilterLike | None = None, filter_lang: FilterLangLike | None = None, sortby: SortbyLike | None = None, fields: FieldsLike | None = None, q: str | None = None, modifier: Callable[[Modifiable], None] | None = None, collection_search_extension_enabled: bool = False, collection_search_free_text_enabled: bool = False, ): super().__init__( url=url, method="GET", max_items=max_collections, stac_io=stac_io, client=client, limit=limit, bbox=bbox, datetime=datetime, query=query, filter=filter, filter_lang=filter_lang, sortby=sortby, fields=fields, q=q, modifier=modifier, ) if client and client._stac_io is not None and stac_io is None: self._stac_io = client._stac_io self._collection_search_extension_enabled = client.conforms_to( ConformanceClasses.COLLECTION_SEARCH ) self._collection_search_free_text_enabled = client.conforms_to( ConformanceClasses.COLLECTION_SEARCH_FREE_TEXT ) if any([bbox, datetime, q, query, filter, sortby, fields]): if not self._collection_search_extension_enabled: warnings.warn( str(DoesNotConformTo("COLLECTION_SEARCH")) + ". Filtering will be performed client-side where only bbox, " "datetime, and q arguments are supported" ) self._validate_client_side_args() else: if not self._collection_search_free_text_enabled: warnings.warn( str(DoesNotConformTo("COLLECTION_SEARCH#FREE_TEXT")) + ". Free-text search is not enabled for collection search" "Free-text filters will be applied client-side." ) else: self._stac_io = stac_io or StacApiIO() self._collection_search_extension_enabled = ( collection_search_extension_enabled ) self._collection_search_free_text_enabled = ( collection_search_free_text_enabled ) self._validate_client_side_args() def _validate_client_side_args(self) -> None: """Client-side filtering only supports the bbox, datetime, and q parameters.""" args = {key for key, value in self._parameters.items() if value is not None} extras = args - {"bbox", "datetime", "q", "limit", "max_items"} if extras: raise ValueError( "Only the limit, max_collections, bbox, datetime, and q arguments are " "supported for client-side filtering but these extra arguments were " "provided: " + ",".join(extras) ) @lru_cache(1) def matched(self) -> int | None: """Return number matched for search Returns the value from the `numberMatched` or `context.matched` field. Not all APIs will support counts in which case a warning will be issued Returns: int: Total count of matched collections. If counts are not supported `None` is returned. """ found = None iter = self.pages_as_dicts() page = next(iter, None) if not page: return 0 # if collection search and free-text are fully supported, try reading a value # from the search result context if ( self._collection_search_extension_enabled and self._collection_search_free_text_enabled ): if "context" in page: found = page["context"].get("matched", None) elif "numberMatched" in page: found = page["numberMatched"] if not found: count = len(page["collections"]) for page in iter: count += len(page["collections"]) found = count return found # ------------------------------------------------------------------------ # Result sets # ------------------------------------------------------------------------ # By collection def collections(self) -> Iterator[Collection]: """Iterator that yields :class:`pystac.Collection` instances for each collection matching the given search parameters. Yields: Collection : each Collection matching the search criteria """ for collection in self.collections_as_dicts(): # already signed in collections_as_dicts yield Collection.from_dict( collection, root=self.client, preserve_dict=False ) @lru_cache(1) def collections_as_dicts(self) -> Iterator[dict[str, Any]]: """Iterator that yields :class:`dict` instances for each collection matching the given search parameters. Yields: Collection : each Collection matching the search criteria """ for page in self.pages_as_dicts(): yield from page.get("collections", []) # ------------------------------------------------------------------------ # By Page def pages(self) -> Iterator[list[Collection]]: """Iterator that yields lists of Collection objects. Each list is a page of results from the search. Yields: List[Collection] : a group of Collections matching the search criteria """ if isinstance(self._stac_io, StacApiIO): for page in self.pages_as_dicts(): # already signed in pages_as_dicts yield [ Collection.from_dict( collection, preserve_dict=False, root=self.client ) for collection in page["collections"] ] def pages_as_dicts(self) -> Iterator[dict[str, Any]]: """Iterator that yields :class:`dict` instances for each page of results from the search. Yields: Dict : a group of collections matching the search criteria as a feature-collection-like dictionary. """ if isinstance(self._stac_io, StacApiIO): num_collections = 0 for page in self._stac_io.get_pages( self.url, self.method, self.get_parameters() ): call_modifier(self.modifier, page) collections = page.get("collections", []) page_has_collections = len(collections) > 0 # apply client-side filter if the collection search extension # is not enabled in the API if not self._collection_search_extension_enabled: args = { "bbox": self._parameters.get("bbox"), "temporal_interval_str": self._parameters.get("datetime"), "q": self._parameters.get("q"), } collections = [ collection for collection in filter( lambda x: collection_matches(x, **args), collections, ) ] # apply client-side free-text filter if free-text extension is not # enabled in the API elif not self._collection_search_free_text_enabled: if q := self._parameters.get("q"): collections = [ collection for collection in filter( lambda x: collection_matches(x, q=q), collections, ) ] if collections: num_collections += len(collections) if self._max_items and num_collections > self._max_items: # Slice the features down to make sure we hit max_collections page["collections"] = collections[ 0 : -(num_collections - self._max_items) ] else: page["collections"] = collections yield page if self._max_items and num_collections >= self._max_items: return # if there were collections on this page but they got filtered out keep # going elif page_has_collections: continue else: return # ------------------------------------------------------------------------ # Everything @lru_cache(1) def collection_list(self) -> list[Collection]: """ Get the matching collections as a list of :py:class:`pystac.Collection` objects. Return: List[Collection]: The list of collections """ # Bypass the cache here, so that we can pass __preserve_dict__ # without mutating what's in the cache. collection_list = self.collections_as_dicts.__wrapped__(self) # already signed in collections_as_dicts return [ Collection.from_dict(collection, preserve_dict=False, root=self.client) for collection in collection_list ] @lru_cache(1) def collection_list_as_dict(self) -> dict[str, Any]: """ Get the matching collections as a dict. The dictionary will have a single key: 1. ``'collections'`` with the value being a list of dictionaries for the matching collections. Return: Dict : A dictionary with the list of matching collections """ collections = [] for page in self.pages_as_dicts(): for collection in page["collections"]: collections.append(collection) return {"collections": collections} pystac-client-0.9.0/pystac_client/conformance.py000066400000000000000000000026631503646565400220310ustar00rootroot00000000000000from __future__ import annotations import re from enum import Enum class ConformanceClasses(Enum): """Enumeration class for Conformance Classes""" # defined conformance classes regexes CORE = "/core" COLLECTIONS = "/collections" # this is ogcapi-features instead of just features for historical reasons, # even thought this is a STAC API conformance class FEATURES = "/ogcapi-features" ITEM_SEARCH = "/item-search" CONTEXT = "/item-search#context" FIELDS = "/item-search#fields" SORT = "/item-search#sort" QUERY = "/item-search#query" FILTER = "/item-search#filter" # collection search COLLECTION_SEARCH = "/collection-search" COLLECTION_SEARCH_FREE_TEXT = "/collection-search#free-text" @classmethod def get_by_name(cls, name: str) -> ConformanceClasses: for member in cls: if member.name == name.upper(): return member raise ValueError( f"Invalid conformance class '{name}'. Options are: {list(cls)}" ) def __str__(self) -> str: return f"{self.name}" def __repr__(self) -> str: return str(self) @property def valid_uri(self) -> str: return f"https://api.stacspec.org/v1.0.*{self.value}" @property def pattern(self) -> re.Pattern[str]: return re.compile( rf"{re.escape('https://api.stacspec.org/v1.0.')}(.*){re.escape(self.value)}" ) pystac-client-0.9.0/pystac_client/errors.py000066400000000000000000000003661503646565400210510ustar00rootroot00000000000000class ClientTypeError(Exception): """Raised when trying to open a Client on a non-catalog STAC Object.""" pass class IgnoredResultWarning(RuntimeWarning): """ Warning raised when a 'modifier' callable returns a result. """ pystac-client-0.9.0/pystac_client/exceptions.py000066400000000000000000000006411503646565400217120ustar00rootroot00000000000000from requests import Response class APIError(Exception): """Raised when unexpected server error.""" status_code: int | None @classmethod def from_response(cls, response: Response) -> "APIError": error = cls(response.text) error.status_code = response.status_code return error class ParametersError(Exception): """Raised when invalid parameters are used in a query""" pystac-client-0.9.0/pystac_client/free_text.py000066400000000000000000000045061503646565400215220ustar00rootroot00000000000000"""Client-side free-text search filtering as described in `OGC API - Features - Part 9: Text Search `__ Uses the `SQLite FTS5 Extension `__ to implement free-text search filtering. """ import re import sqlite3 def parse_query_for_sqlite(q: str) -> str: """Translate an OGC Features API free-text search query into the SQLite text search syntax """ # separate out search terms, quoted exact phrases, commas, and exact phrases tokens = [token.strip() for token in re.findall(r'"[^"]*"|,|[\(\)]|[^,\s\(\)]+', q)] # special characters that need to be escaped or quoted for sqlite fts5 special_chars = set("-@&:^~<>=") for i, token in enumerate(tokens): if token.startswith("+"): tokens[i] = token[1:].strip() elif token.startswith("-"): tokens[i] = "NOT " + token[1:].strip() elif token == ",": tokens[i] = "OR" elif any(char in token for char in special_chars): # Escape any existing double quotes in the token escaped_token = token.replace('"', '""') tokens[i] = f'"{escaped_token}"' return " ".join(tokens) def sqlite_text_search(q: str, text_fields: dict[str, str]) -> bool: """Perform a free-text search against a set of text fields for a single collection to determine if that collection matches the query. Creates an in-memory SQLite database with a single table and a single row then runs the MATCH query to determine if the row matches the search criteria. """ column_clause = ", ".join(text_fields.keys()) value_clause = ", ".join(["?" for _ in text_fields.keys()]) with sqlite3.connect(":memory:") as conn: # Use an in-memory database cursor = conn.cursor() cursor.execute( f""" CREATE VIRTUAL TABLE collections USING fts5({column_clause}); """ ) cursor.execute( f""" INSERT INTO collections ({column_clause}) VALUES ({value_clause}); """, tuple(text_fields.values()), ) cursor.execute( f""" SELECT COUNT(*) FROM collections WHERE collections MATCH '{parse_query_for_sqlite(q)}'; """ ) return bool(cursor.fetchone()[0]) pystac-client-0.9.0/pystac_client/item_search.py000066400000000000000000001054261503646565400220230ustar00rootroot00000000000000import json import re import warnings from abc import ABC from collections.abc import Callable, Iterable, Iterator, Mapping from copy import deepcopy from datetime import datetime as datetime_ from datetime import timezone from functools import lru_cache from itertools import chain from typing import ( TYPE_CHECKING, Any, Optional, Protocol, Union, ) from dateutil.relativedelta import relativedelta from dateutil.tz import tzutc from pystac import Collection, Item, ItemCollection from requests import Request from pystac_client._utils import Modifiable, call_modifier from pystac_client.conformance import ConformanceClasses from pystac_client.stac_api_io import StacApiIO from pystac_client.warnings import DoesNotConformTo if TYPE_CHECKING: from pystac_client import client as _client DATETIME_REGEX = re.compile( r"^(?P\d{4})(-(?P\d{2})(-(?P\d{2})" r"(?P([Tt])\d{2}:\d{2}:\d{2}(\.\d+)?" r"(?P[Zz]|([-+])(\d{2}):(\d{2}))?)?)?)?$" ) class GeoInterface(Protocol): @property def __geo_interface__(self) -> dict[str, Any]: ... DatetimeOrTimestamp = Optional[Union[datetime_, str]] Datetime = str DatetimeLike = Union[ DatetimeOrTimestamp, tuple[DatetimeOrTimestamp, DatetimeOrTimestamp], list[DatetimeOrTimestamp], Iterator[DatetimeOrTimestamp], ] BBox = tuple[float, ...] BBoxLike = Union[BBox, list[float], Iterator[float], str] Collections = tuple[str, ...] CollectionsLike = Union[list[str], Iterator[str], str] IDs = tuple[str, ...] IDsLike = Union[IDs, str, list[str], Iterator[str]] Intersects = dict[str, Any] IntersectsLike = Union[str, GeoInterface, Intersects] Query = dict[str, Any] QueryLike = Union[Query, list[str]] FilterLangLike = str FilterLike = Union[dict[str, Any], str] Sortby = list[dict[str, str]] SortbyLike = Union[Sortby, str, list[str]] Fields = dict[str, list[str]] FieldsLike = Union[Fields, str, list[str]] # these cannot be reordered or parsing will fail! OP_MAP = { ">=": "gte", "<=": "lte", "=": "eq", "<>": "neq", ">": "gt", "<": "lt", } OPS = list(OP_MAP.keys()) # from https://gist.github.com/angstwad/bf22d1822c38a92ec0a9#gistcomment-2622319 def dict_merge( dct: dict[Any, Any], merge_dct: dict[Any, Any], add_keys: bool = True ) -> dict[Any, Any]: """Recursive dict merge. Inspired by :meth:``dict.update()``, instead of updating only top-level keys, dict_merge recurses down into dicts nested to an arbitrary depth, updating keys. The ``merge_dct`` is merged into ``dct``. This version will return a copy of the dictionary and leave the original arguments untouched. The optional argument ``add_keys``, determines whether keys which are present in ``merge_dict`` but not ``dct`` should be included in the new dict. Args: dct (dict) onto which the merge is executed merge_dct (dict): dct merged into dct add_keys (bool): whether to add new keys Return: dict: updated dict """ dct = dct.copy() if not add_keys: merge_dct = {k: merge_dct[k] for k in set(dct).intersection(set(merge_dct))} for k, v in merge_dct.items(): if k in dct and isinstance(dct[k], dict) and isinstance(merge_dct[k], Mapping): dct[k] = dict_merge(dct[k], merge_dct[k], add_keys=add_keys) else: dct[k] = merge_dct[k] return dct class BaseSearch(ABC): _stac_io: StacApiIO def __init__( self, url: str, *, method: str | None = "POST", max_items: int | None = None, stac_io: StacApiIO | None = None, client: Optional["_client.Client"] = None, limit: int | None = None, ids: IDsLike | None = None, collections: CollectionsLike | None = None, bbox: BBoxLike | None = None, intersects: IntersectsLike | None = None, datetime: DatetimeLike | None = None, query: QueryLike | None = None, filter: FilterLike | None = None, filter_lang: FilterLangLike | None = None, sortby: SortbyLike | None = None, fields: FieldsLike | None = None, modifier: Callable[[Modifiable], None] | None = None, q: str | None = None, ): self.url = url self.client = client self._max_items = max_items if self._max_items is not None and limit is not None: limit = min(limit, self._max_items) if limit is not None and (limit < 1 or limit > 10000): raise Exception(f"Invalid limit of {limit}, must be between 1 and 10,000") self.method = method self.modifier = modifier params = { "limit": limit, "bbox": self._format_bbox(bbox), "datetime": self._format_datetime(datetime), "ids": self._format_ids(ids), "collections": self._format_collections(collections), "intersects": self._format_intersects(intersects), "query": self._format_query(query), "filter": self._format_filter(method, filter_lang, filter), "filter-lang": self._format_filter_lang(method, filter, filter_lang), "sortby": self._format_sortby(sortby), "fields": self._format_fields(fields), "q": q, } self._parameters: dict[str, Any] = { k: v for k, v in params.items() if v is not None } def get_parameters(self) -> dict[str, Any]: if self.method == "POST": return self._parameters elif self.method == "GET": return self._clean_params_for_get_request() else: raise Exception(f"Unsupported method {self.method}") def _clean_params_for_get_request(self) -> dict[str, Any]: params = deepcopy(self._parameters) if "bbox" in params: params["bbox"] = ",".join(map(str, params["bbox"])) if "ids" in params: params["ids"] = ",".join(params["ids"]) if "collections" in params: params["collections"] = ",".join(params["collections"]) if "intersects" in params: params["intersects"] = json.dumps( params["intersects"], separators=(",", ":") ) if "query" in params: params["query"] = json.dumps(params["query"], separators=(",", ":")) if "sortby" in params: params["sortby"] = self._sortby_dict_to_str(params["sortby"]) if "fields" in params: params["fields"] = self._fields_dict_to_str(params["fields"]) if "filter" in params and isinstance(params["filter"], dict): params["filter"] = json.dumps(params["filter"]) return params def url_with_parameters(self) -> str: """Returns the search url with parameters, appropriate for a GET request. Examples: >>> search = ItemSearch( ... url="https://planetarycomputer.microsoft.com/api/stac/v1/search", ... collections=["cop-dem-glo-30"], ... bbox=[88.214, 27.927, 88.302, 28.034], ... ) >>> assert ( ... search.url_with_parameters() ... == "https://planetarycomputer.microsoft.com/api/stac/v1/search?" ... "limit=100&bbox=88.214,27.927,88.302,28.034&collections=cop-dem-glo-30" ... ) Returns: str: The search url with parameters. """ params = self._clean_params_for_get_request() request = Request("GET", self.url, params=params) url = request.prepare().url if url is None: raise ValueError("Could not construct a full url") return url def _format_query(self, value: QueryLike | None) -> dict[str, Any] | None: if value is None: return None if self.client and not self.client.conforms_to(ConformanceClasses.QUERY): warnings.warn(DoesNotConformTo("QUERY")) if isinstance(value, dict): return value elif isinstance(value, list): query: dict[str, Any] = {} for q in value: if isinstance(q, str): try: query = dict_merge(query, json.loads(q)) except json.decoder.JSONDecodeError: for op in OPS: parts = q.split(op) if len(parts) == 2: param = parts[0] val: str | float = parts[1] if param == "gsd": val = float(val) query = dict_merge(query, {parts[0]: {OP_MAP[op]: val}}) break else: raise Exception("Unsupported query format, must be a List[str].") else: raise Exception("Unsupported query format, must be a Dict or List[str].") return query @staticmethod def _format_filter_lang( method: str | None, _filter: FilterLike | None, value: FilterLangLike | None, ) -> str | None: if _filter is None: return None if value is not None: return value if method == "GET": return "cql2-text" if method == "POST": return "cql2-json" return None def _format_filter( self, method: str | None, filter_lang: FilterLangLike | None, value: FilterLike | None, ) -> FilterLike | None: if not value: return None if self.client and not self.client.conforms_to(ConformanceClasses.FILTER): warnings.warn(DoesNotConformTo("FILTER")) if method == "GET" and isinstance(value, str): return value if method == "POST" and isinstance(value, dict): return value # if filter_lang is specified, do not coerce if filter_lang is not None: return value try: import cql2 if isinstance(value, dict): expr = cql2.parse_json(json.dumps(value)) else: # could be cql2-text or stringified cql2-json expr = cql2.Expr(value) except ImportError as e: raise ValueError( "Unless you specify ``filter_lang`` pystac-client will try to convert " "the filter to cql2-text or cql2-json based on the HTTP method " "provided.\n" "Resolve this error by installing ``cql2``: ``pip install cql2``" ) from e if method == "GET": return str(expr.to_text()) if method == "POST": return dict(expr.to_json()) return value @staticmethod def _format_bbox(value: BBoxLike | None) -> BBox | None: if value is None: return None if isinstance(value, str): bbox = tuple(map(float, value.split(","))) else: bbox = tuple(map(float, value)) return bbox @staticmethod def _to_utc_isoformat(dt: datetime_) -> str: if dt.tzinfo is not None: dt = dt.astimezone(timezone.utc) dt = dt.replace(tzinfo=None) return f"{dt.isoformat('T')}Z" def _to_isoformat_range( self, component: DatetimeOrTimestamp, ) -> tuple[str, str | None]: """Converts a single DatetimeOrTimestamp into one or two Datetimes. This is required to expand a single value like "2017" out to the whole year. This function returns two values. The first value is always a valid Datetime. The second value can be None or a Datetime. If it is None, this means that the first value was an exactly specified value (e.g. a `datetime.datetime`). If the second value is a Datetime, then it will be the end of the range at the resolution of the component, e.g. if the component were "2017" the second value would be the last second of the last day of 2017. """ if component is None: return "..", None elif isinstance(component, str): if component == "..": return component, None elif component == "": return "..", None match = DATETIME_REGEX.match(component) if not match: raise Exception(f"invalid datetime component: {component}") elif match.group("remainder"): if match.group("tz_info"): return component, None else: return f"{component}Z", None else: year = int(match.group("year")) optional_month = match.group("month") optional_day = match.group("day") if optional_day is not None: start = datetime_( year, int(optional_month), int(optional_day), 0, 0, 0, tzinfo=tzutc(), ) end = start + relativedelta(days=1, seconds=-1) elif optional_month is not None: start = datetime_(year, int(optional_month), 1, 0, 0, 0, tzinfo=tzutc()) end = start + relativedelta(months=1, seconds=-1) else: start = datetime_(year, 1, 1, 0, 0, 0, tzinfo=tzutc()) end = start + relativedelta(years=1, seconds=-1) return self._to_utc_isoformat(start), self._to_utc_isoformat(end) else: return self._to_utc_isoformat(component), None def _format_datetime(self, value: DatetimeLike | None) -> Datetime | None: if value is None: return None elif isinstance(value, datetime_): return self._to_utc_isoformat(value) elif isinstance(value, str): components = value.split("/") else: components = list(value) # type: ignore if not components: return None elif len(components) == 1: if components[0] is None: raise Exception("cannot create a datetime query with None") start, end = self._to_isoformat_range(components[0]) if end is not None: return f"{start}/{end}" else: return start elif len(components) == 2: if all(c is None for c in components): raise Exception("cannot create a double open-ended interval") start, _ = self._to_isoformat_range(components[0]) backup_end, end = self._to_isoformat_range(components[1]) return f"{start}/{end or backup_end}" else: raise Exception( "too many datetime components " f"(max=2, actual={len(components)}): {value}" ) @staticmethod def _format_collections(value: CollectionsLike | None) -> Collections | None: def _format(c: Any) -> Collections: if isinstance(c, str): return (c,) if isinstance(c, Iterable): return tuple(map(lambda x: _format(x)[0], c)) return (c.id,) if value is None: return None if isinstance(value, str): return tuple(map(lambda x: _format(x)[0], value.split(","))) if isinstance(value, Collection): return _format(value) return _format(value) @staticmethod def _format_ids(value: IDsLike | None) -> IDs | None: if value is None or isinstance(value, (tuple, list)) and not value: # We can't just check for truthiness here because of the Iterator[str] case return None elif isinstance(value, str): # We could check for str in the first branch, but then we'd be checking # for str twice #microoptimizations if value: return tuple(value.split(",")) else: return None else: return tuple(value) def _format_sortby(self, value: SortbyLike | None) -> Sortby | None: if value is None: return None if self.client and not self.client.conforms_to(ConformanceClasses.SORT): warnings.warn(DoesNotConformTo("SORT")) if isinstance(value, str): return [self._sortby_part_to_dict(part) for part in value.split(",")] if isinstance(value, list): if value and isinstance(value[0], str): return [self._sortby_part_to_dict(str(v)) for v in value] elif value and isinstance(value[0], dict): return value # type: ignore raise Exception( "sortby must be of type None, str, List[str], or List[Dict[str, str]" ) @staticmethod def _sortby_part_to_dict(part: str) -> dict[str, str]: if part.startswith("-"): return {"field": part[1:], "direction": "desc"} elif part.startswith("+"): return {"field": part[1:], "direction": "asc"} else: return {"field": part, "direction": "asc"} @staticmethod def _sortby_dict_to_str(sortby: Sortby) -> str: return ",".join( [ f"{'+' if sort['direction'] == 'asc' else '-'}{sort['field']}" for sort in sortby ] ) def _format_fields(self, value: FieldsLike | None) -> Fields | None: if value is None: return None if self.client and not self.client.conforms_to(ConformanceClasses.FIELDS): warnings.warn(DoesNotConformTo("FIELDS")) if isinstance(value, str): return self._fields_to_dict(value.split(",")) if isinstance(value, list): if len(value) == 1: return self._fields_to_dict(value[0].split(",")) return self._fields_to_dict(value) if isinstance(value, dict): return value raise Exception( "sortby must be of type None, str, List[str], or List[Dict[str, str]" ) @staticmethod def _fields_to_dict(fields: list[str]) -> Fields: includes: list[str] = [] excludes: list[str] = [] for field in fields: if field.startswith("-"): excludes.append(field[1:]) elif field.startswith("+"): includes.append(field[1:]) else: includes.append(field) return {"include": includes, "exclude": excludes} @staticmethod def _fields_dict_to_str(fields: Fields) -> str: includes = [f"+{x}" for x in fields.get("include", [])] excludes = [f"-{x}" for x in fields.get("exclude", [])] return ",".join(chain(includes, excludes)) @staticmethod def _format_intersects(value: IntersectsLike | None) -> Intersects | None: if value is None: return None if isinstance(value, dict): if value.get("type") == "Feature": return deepcopy(value.get("geometry")) else: return deepcopy(value) if isinstance(value, str): return dict(json.loads(value)) if hasattr(value, "__geo_interface__"): return dict(deepcopy(getattr(value, "__geo_interface__"))) raise Exception( "intersects must be of type None, str, dict, or an object that " "implements __geo_interface__" ) if TYPE_CHECKING: from pystac_client import client as _client def __getattr__(name: str) -> Any: if name in ("DEFAUL_LIMIT", "DEFAULT_LIMIT_AND_MAX_ITEMS"): warnings.warn( f"{name} is deprecated and will be removed in v0.8", DeprecationWarning ) return 100 raise AttributeError(f"module {__name__} has no attribute {name}") class ItemSearch(BaseSearch): """Represents a deferred query to a STAC search endpoint as described in the `STAC API - Item Search spec `__. No request is sent to the API until a method is called to iterate through the resulting STAC Items, either :meth:`ItemSearch.item_collections`, :meth:`ItemSearch.items`, or :meth:`ItemSearch.items_as_dicts`. All parameters except `url``, ``method``, ``max_items``, and ``client`` correspond to query parameters described in the `STAC API - Item Search: Query Parameters Table `__ docs. Please refer to those docs for details on how these parameters filter search results. Args: url: The URL to the search page of the STAC API. method : The HTTP method to use when making a request to the service. This must be either ``"GET"``, ``"POST"``, or ``None``. If ``None``, this will default to ``"POST"``. If a ``"POST"`` request receives a ``405`` status for the response, it will automatically retry with ``"GET"`` for all subsequent requests. max_items : The maximum number of items to return from the search, even if there are more matching results. This allows the client to limit the total number of Items returned from the :meth:`items`, :meth:`item_collections`, and :meth:`items_as_dicts methods`. The client will continue to request pages of items until the number of max items is reached. By default (``max_items=None``) all items matching the query will be returned. stac_io: An instance of StacIO for retrieving results. Normally comes from the Client that returns this ItemSearch client: An instance of a root Client used to set the root on resulting Items. client: An instance of Client for retrieving results. This is normally populated by the client that returns this ItemSearch instance. limit: A recommendation to the service as to the number of items to return *per page* of results. Defaults to 100. ids: List of one or more Item ids to filter on. collections: List of one or more Collection IDs or :class:`pystac.Collection` instances. bbox: A list, tuple, or iterator representing a bounding box of 2D or 3D coordinates. Results will be filtered to only those intersecting the bounding box. intersects: A string or dictionary representing a GeoJSON geometry or feature, or an object that implements a ``__geo_interface__`` property, as supported by several libraries including Shapely, ArcPy, PySAL, and geojson. Results filtered to only those intersecting the geometry. datetime: Either a single datetime or datetime range used to filter results. You may express a single datetime using a :class:`datetime.datetime` instance, a `RFC 3339-compliant `__ timestamp, or a simple date string (see below). Instances of :class:`datetime.datetime` may be either timezone aware or unaware. Timezone aware instances will be converted to a UTC timestamp before being passed to the endpoint. Timezone unaware instances are assumed to represent UTC timestamps. You may represent a datetime range using a ``"/"`` separated string as described in the spec, or a list, tuple, or iterator of 2 timestamps or datetime instances. For open-ended ranges, use either ``".."`` (``'2020-01-01:00:00:00Z/..'``, ``['2020-01-01:00:00:00Z', '..']``) or a value of ``None`` (``['2020-01-01:00:00:00Z', None]``). If using a simple date string, the datetime can be specified in ``YYYY-mm-dd`` format, optionally truncating to ``YYYY-mm`` or just ``YYYY``. Simple date strings will be expanded to include the entire time period, for example: - ``2017`` expands to ``2017-01-01T00:00:00Z/2017-12-31T23:59:59Z`` - ``2017-06`` expands to ``2017-06-01T00:00:00Z/2017-06-30T23:59:59Z`` - ``2017-06-10`` expands to ``2017-06-10T00:00:00Z/2017-06-10T23:59:59Z`` If used in a range, the end of the range expands to the end of that day/month/year, for example: - ``2017/2018`` expands to ``2017-01-01T00:00:00Z/2018-12-31T23:59:59Z`` - ``2017-06/2017-07`` expands to ``2017-06-01T00:00:00Z/2017-07-31T23:59:59Z`` - ``2017-06-10/2017-06-11`` expands to ``2017-06-10T00:00:00Z/2017-06-11T23:59:59Z`` query: List or JSON of query parameters as per the STAC API `query` extension filter: JSON of query parameters as per the STAC API `filter` extension filter_lang: Language variant used in the filter body. If `filter` is a dictionary or not provided, defaults to 'cql2-json'. If `filter` is a string, defaults to `cql2-text`. sortby: A single field or list of fields to sort the response by fields: A list of fields to include in the response. Note this may result in invalid STAC objects, as they may not have required fields. Use `items_as_dicts` to avoid object unmarshalling errors. modifier : A callable that modifies the children collection and items returned by this Client. This can be useful for injecting authentication parameters into child assets to access data from non-public sources. The callable should expect a single argument, which will be one of the following types: * :class:`pystac.Collection` * :class:`pystac.Item` * :class:`pystac.ItemCollection` * A STAC item-like :class:`dict` * A STAC collection-like :class:`dict` The callable should mutate the argument in place and return ``None``. ``modifier`` propagates recursively to children of this Client. After getting a child collection with, e.g. :meth:`Client.get_collection`, the child items of that collection will still be signed with ``modifier``. """ _stac_io: StacApiIO def __init__( self, url: str, *, method: str | None = "POST", max_items: int | None = None, stac_io: StacApiIO | None = None, client: Optional["_client.Client"] = None, limit: int | None = None, ids: IDsLike | None = None, collections: CollectionsLike | None = None, bbox: BBoxLike | None = None, intersects: IntersectsLike | None = None, datetime: DatetimeLike | None = None, query: QueryLike | None = None, filter: FilterLike | None = None, filter_lang: FilterLangLike | None = None, sortby: SortbyLike | None = None, fields: FieldsLike | None = None, modifier: Callable[[Modifiable], None] | None = None, ): super().__init__( url=url, method=method, max_items=max_items, stac_io=stac_io, client=client, limit=limit, ids=ids, collections=collections, bbox=bbox, intersects=intersects, datetime=datetime, query=query, filter=filter, filter_lang=filter_lang, sortby=sortby, fields=fields, modifier=modifier, ) if client and client._stac_io is not None and stac_io is None: self._stac_io = client._stac_io if not client.conforms_to(ConformanceClasses.ITEM_SEARCH): warnings.warn(DoesNotConformTo("ITEM_SEARCH")) else: self._stac_io = stac_io or StacApiIO() @lru_cache(1) def matched(self) -> int | None: """Return number matched for search Returns the value from the `numberMatched` or `context.matched` field. Not all APIs will support counts in which case a warning will be issued Returns: int: Total count of matched items. If counts are not supported `None` is returned. """ params = {**self.get_parameters(), "limit": 1} resp = self._stac_io.read_json(self.url, method=self.method, parameters=params) found = None if "context" in resp: found = resp["context"].get("matched", None) elif "numberMatched" in resp: found = resp["numberMatched"] if found is None: warnings.warn("numberMatched or context.matched not in response") return found # ------------------------------------------------------------------------ # Result sets # ------------------------------------------------------------------------ # By item def items(self) -> Iterator[Item]: """Iterator that yields :class:`pystac.Item` instances for each item matching the given search parameters. Yields: Item : each Item matching the search criteria """ for item in self.items_as_dicts(): # already signed in items_as_dicts yield Item.from_dict(item, root=self.client, preserve_dict=False) def items_as_dicts(self) -> Iterator[dict[str, Any]]: """Iterator that yields :class:`dict` instances for each item matching the given search parameters. Yields: Item : each Item matching the search criteria """ for page in self.pages_as_dicts(): yield from page.get("features", []) # ------------------------------------------------------------------------ # By Page def pages(self) -> Iterator[ItemCollection]: """Iterator that yields ItemCollection objects. Each ItemCollection is a page of results from the search. Yields: ItemCollection : a group of Items matching the search criteria within an ItemCollection """ if isinstance(self._stac_io, StacApiIO): for page in self.pages_as_dicts(): # already signed in pages_as_dicts yield ItemCollection.from_dict( page, preserve_dict=False, root=self.client ) def pages_as_dicts(self) -> Iterator[dict[str, Any]]: """Iterator that yields :class:`dict` instances for each page of results from the search. Yields: Dict : a group of items matching the search criteria as a feature-collection-like dictionary. """ if isinstance(self._stac_io, StacApiIO): num_items = 0 for page in self._stac_io.get_pages( self.url, self.method, self.get_parameters() ): call_modifier(self.modifier, page) features = page.get("features", []) if features: num_items += len(features) if self._max_items and num_items > self._max_items: # Slice the features down to make sure we hit max_items page["features"] = features[0 : -(num_items - self._max_items)] yield page if self._max_items and num_items >= self._max_items: return else: return # ------------------------------------------------------------------------ # Everything @lru_cache(1) def item_collection(self) -> ItemCollection: """ Get the matching items as a :py:class:`pystac.ItemCollection`. Return: ItemCollection: The item collection """ # Bypass the cache here, so that we can pass __preserve_dict__ # without mutating what's in the cache. feature_collection = self.item_collection_as_dict.__wrapped__(self) # already signed in item_collection_as_dict return ItemCollection.from_dict( feature_collection, preserve_dict=False, root=self.client ) @lru_cache(1) def item_collection_as_dict(self) -> dict[str, Any]: """ Get the matching items as an item-collection-like dict. The dictionary will have two keys: 1. ``'type'`` with the value ``'FeatureCollection'`` 2. ``'features'`` with the value being a list of dictionaries for the matching items. Return: Dict : A GeoJSON FeatureCollection """ features = [] for page in self.pages_as_dicts(): for feature in page["features"]: features.append(feature) feature_collection = {"type": "FeatureCollection", "features": features} return feature_collection # Deprecated methods # not caching these, since they're cached in the implementation def get_item_collections(self) -> Iterator[ItemCollection]: """DEPRECATED .. deprecated:: 0.4.0 Use :meth:`ItemSearch.pages` instead. Yields: ItemCollection : a group of Items matching the search criteria. """ warnings.warn( "get_item_collections() is deprecated, use pages() instead", FutureWarning, ) return self.pages() def item_collections(self) -> Iterator[ItemCollection]: """DEPRECATED .. deprecated:: 0.5.0 Use :meth:`ItemSearch.pages` instead. Yields: ItemCollection : a group of Items matching the search criteria within an ItemCollection """ warnings.warn( "item_collections() is deprecated, use pages() instead", FutureWarning, ) return self.pages() def get_items(self) -> Iterator[Item]: """DEPRECATED. .. deprecated:: 0.4.0 Use :meth:`ItemSearch.items` instead. Yields: Item : each Item matching the search criteria """ warnings.warn( "get_items() is deprecated, use items() instead", FutureWarning, ) return self.items() def get_all_items(self) -> ItemCollection: """DEPRECATED .. deprecated:: 0.4.0 Use :meth:`ItemSearch.item_collection` instead. Return: item_collection : ItemCollection """ warnings.warn( "get_all_items() is deprecated, use item_collection() instead.", FutureWarning, ) return self.item_collection() def get_all_items_as_dict(self) -> dict[str, Any]: """DEPRECATED .. deprecated:: 0.4.0 Use :meth:`ItemSearch.item_collection_as_dict` instead. Return: Dict : A GeoJSON FeatureCollection """ warnings.warn( "get_all_items_as_dict() is deprecated, use item_collection_as_dict() " "instead.", FutureWarning, ) return self.item_collection_as_dict() pystac-client-0.9.0/pystac_client/mixins.py000066400000000000000000000042461503646565400210450ustar00rootroot00000000000000import warnings from typing import Any import pystac from pystac_client._utils import urljoin from pystac_client.conformance import ConformanceClasses from pystac_client.exceptions import APIError from pystac_client.stac_api_io import StacApiIO from pystac_client.warnings import DoesNotConformTo, MissingLink QUERYABLES_REL = "http://www.opengis.net/def/rel/ogc/1.0/queryables" QUERYABLES_ENDPOINT = "queryables" class StacAPIObject(pystac.STACObject): _stac_io: StacApiIO | None def conforms_to(self, conformance_class: str | ConformanceClasses) -> bool: raise NotImplementedError class BaseMixin(StacAPIObject): def _get_href(self, rel: str, link: pystac.Link | None, endpoint: str) -> str: if link and isinstance(link.href, str): href = link.absolute_href else: warnings.warn(MissingLink(rel, self.__class__.__name__), stacklevel=2) href = urljoin(self.self_href, endpoint) return href class QueryablesMixin(BaseMixin): """Mixin for adding support for /queryables endpoint""" def get_queryables_from(self, url: str) -> dict[str, Any]: """Return all queryables. Output is a dictionary that can be used in ``jsonshema.validate`` Args: url: a queryables url Return: Dict[str, Any]: Dictionary containing queryable fields """ if self._stac_io is None: raise APIError("API access is not properly configured") result = self._stac_io.read_json(url) if "properties" not in result: raise APIError( f"Invalid response from {QUERYABLES_ENDPOINT}: " "expected 'properties' attribute" ) return result def get_queryables(self) -> dict[str, Any]: url = self._get_queryables_href() return self.get_queryables_from(url) def _get_queryables_href(self) -> str: if not self.conforms_to(ConformanceClasses.FILTER): raise DoesNotConformTo(ConformanceClasses.FILTER.name) link = self.get_single_link(QUERYABLES_REL) href = self._get_href(QUERYABLES_REL, link, QUERYABLES_ENDPOINT) return href pystac-client-0.9.0/pystac_client/py.typed000066400000000000000000000000001503646565400206430ustar00rootroot00000000000000pystac-client-0.9.0/pystac_client/stac_api_io.py000066400000000000000000000306231503646565400220060ustar00rootroot00000000000000import json import logging import warnings from collections.abc import Callable, Iterator from copy import deepcopy from typing import ( TYPE_CHECKING, Any, Optional, Union, ) from urllib.parse import urlparse import pystac from pystac.link import Link from pystac.serialization import ( identify_stac_object, identify_stac_object_type, merge_common_properties, migrate_to_latest, ) from pystac.stac_io import DefaultStacIO from requests import Request, Session from requests.adapters import HTTPAdapter from urllib3 import Retry import pystac_client from .exceptions import APIError if TYPE_CHECKING: from pystac.catalog import Catalog as Catalog_Type from pystac.stac_object import STACObject as STACObject_Type logger = logging.getLogger(__name__) Timeout = Union[float, tuple[float, float], tuple[float, None]] class StacApiIO(DefaultStacIO): def __init__( self, headers: dict[str, str] | None = None, conformance: list[str] | None = None, parameters: dict[str, Any] | None = None, request_modifier: Callable[[Request], Request | None] | None = None, timeout: Timeout | None = None, max_retries: int | Retry | None = 5, ): """Initialize class for API IO Args: headers : Optional dictionary of headers to include in all requests conformance (DEPRECATED) : Optional list of `Conformance Classes `__. .. deprecated:: 0.7.0 Conformance can be altered on the client class directly parameters: Optional dictionary of query string parameters to include in all requests. request_modifier: Optional callable that can be used to modify Request objects before they are sent. If provided, the callable receives a `request.Request` and must either modify the object directly or return a new / modified request instance. timeout: Optional float or (float, float) tuple following the semantics defined by `Requests `__. max_retries: The number of times to retry requests. Set to ``None`` to disable retries. Return: StacApiIO : StacApiIO instance """ # TODO - this should super() to parent class if conformance is not None: warnings.warn( ( "The `conformance` option is deprecated and will be " "removed in the next major release. Instead use " "`Client.set_conforms_to` or `Client.add_conforms_to` to control " "behavior." ), category=FutureWarning, ) self.session = Session() if max_retries: self.session.mount("http://", HTTPAdapter(max_retries=max_retries)) self.session.mount("https://", HTTPAdapter(max_retries=max_retries)) self.timeout = timeout self.update( headers=headers, parameters=parameters, request_modifier=request_modifier, timeout=timeout, ) def update( self, headers: dict[str, str] | None = None, parameters: dict[str, Any] | None = None, request_modifier: Callable[[Request], Request | None] | None = None, timeout: Timeout | None = None, ) -> None: """Updates this StacApi's headers, parameters, and/or request_modifer. Args: headers : Optional dictionary of headers to include in all requests parameters: Optional dictionary of query string parameters to include in all requests. request_modifier: Optional callable that can be used to modify Request objects before they are sent. If provided, the callable receives a `request.Request` and must either modify the object directly or return a new / modified request instance. timeout: Optional float or (float, float) tuple following the semantics defined by `Requests `__. """ self.session.headers.update(headers or {}) self.session.params.update(parameters or {}) # type: ignore self._req_modifier = request_modifier self.timeout = timeout def read_text(self, source: pystac.link.HREF, *args: Any, **kwargs: Any) -> str: """Read text from the given URI. Overwrites the default method for reading text from a URL or file to allow :class:`urllib.request.Request` instances as input. This method also raises any :exc:`urllib.error.HTTPError` exceptions rather than catching them to allow us to handle different response status codes as needed. """ if isinstance(source, Link): link = source.to_dict() href = link["href"] # get headers and body from Link and add to request from simple STAC # resolver merge = bool(link.get("merge", False)) # If the link object includes a "method" property, use that. If not # fall back to 'GET'. method = link.get("method", "GET") # If the link object includes a "headers" property, use that and # respect the "merge" property. headers = link.get("headers", None) # If "POST" use the body object that and respect the "merge" property. link_body = link.get("body", {}) if method == "POST": parameters = ( {**(kwargs.get("parameters", {})), **link_body} if merge else link_body ) else: # parameters are already in the link href parameters = {} return self.request( href, method=method, headers=headers, parameters=parameters ) else: # str or something that can be str'ed href = str(source) if _is_url(href): return self.request(href, *args, **kwargs) else: with open(href) as f: href_contents = f.read() return href_contents def request( self, href: str, method: str | None = None, headers: dict[str, str] | None = None, parameters: dict[str, Any] | None = None, ) -> str: """Makes a request to an http endpoint Args: href (str): The request URL method (Optional[str], optional): The http method to use, 'GET' or 'POST'. Defaults to None, which will result in 'GET' being used. headers (Optional[Dict[str, str]], optional): Additional headers to include in request. Defaults to None. parameters (Optional[Dict[str, Any]], optional): parameters to send with request. Defaults to None. Raises: APIError: raised if the server returns an error response Return: str: The decoded response from the endpoint """ if method == "POST": request = Request(method=method, url=href, headers=headers, json=parameters) else: params = deepcopy(parameters) or {} request = Request(method="GET", url=href, headers=headers, params=params) try: modified = self._req_modifier(request) if self._req_modifier else None prepped = self.session.prepare_request(modified or request) msg = f"{prepped.method} {prepped.url} Headers: {prepped.headers}" if method == "POST": msg += f" Payload: {json.dumps(request.json)}" if self.timeout is not None: msg += f" Timeout: {self.timeout}" logger.debug(msg) send_kwargs = self.session.merge_environment_settings( prepped.url, proxies={}, stream=None, verify=True, cert=None ) resp = self.session.send(prepped, timeout=self.timeout, **send_kwargs) except Exception as err: logger.debug(err) raise APIError(str(err)) if resp.status_code != 200: raise APIError.from_response(resp) try: return resp.content.decode("utf-8") except Exception as err: raise APIError(str(err)) def write_text_to_href(self, href: str, *args: Any, **kwargs: Any) -> None: if _is_url(href): raise APIError("Transactions not supported") else: return super().write_text_to_href(href, *args, **kwargs) def stac_object_from_dict( self, d: dict[str, Any], href: pystac.link.HREF | None = None, root: Optional["Catalog_Type"] = None, preserve_dict: bool = True, ) -> "STACObject_Type": """Deserializes a :class:`~pystac.STACObject` sub-class instance from a dictionary. Args: d : The dictionary to deserialize href : Optional href to associate with the STAC object root : Optional root :class:`~pystac.Catalog` to associate with the STAC object. preserve_dict: If ``False``, the dict parameter ``d`` may be modified during this method call. Otherwise the dict is not mutated. Defaults to ``True``, which results results in a deepcopy of the parameter. Set to ``False`` when possible to avoid the performance hit of a deepcopy. """ if identify_stac_object_type(d) == pystac.STACObjectType.ITEM: collection_cache = None if root is not None: collection_cache = root._resolved_objects.as_collection_cache() # Merge common properties in case this is an older STAC object. merge_common_properties( d, json_href=str(href), collection_cache=collection_cache ) info = identify_stac_object(d) d = migrate_to_latest(d, info) if info.object_type == pystac.STACObjectType.CATALOG: result = pystac_client.client.Client.from_dict( d, href=str(href), root=root, migrate=False, preserve_dict=preserve_dict ) result._stac_io = self return result if info.object_type == pystac.STACObjectType.COLLECTION: collection_client = ( pystac_client.collection_client.CollectionClient.from_dict( d, href=str(href), root=root, migrate=False, preserve_dict=preserve_dict, ) ) collection_client._stac_io = self return collection_client if info.object_type == pystac.STACObjectType.ITEM: return pystac.Item.from_dict( d, href=str(href), root=root, migrate=False, preserve_dict=preserve_dict ) raise ValueError(f"Unknown STAC object type {info.object_type}") def get_pages( self, url: str, method: str | None = None, parameters: dict[str, Any] | None = None, ) -> Iterator[dict[str, Any]]: """Iterator that yields dictionaries for each page at a STAC paging endpoint, e.g., /collections, /search Return: Dict[str, Any] : JSON content from a single page """ page = self.read_json(url, method=method, parameters=parameters) if not (page.get("features") or page.get("collections")): return None yield page next_link = next( (link for link in page.get("links", []) if link["rel"] == "next"), None ) while next_link: link = Link.from_dict(next_link) page = self.read_json(link, parameters=parameters) if not (page.get("features") or page.get("collections")): return None yield page # get the next link and make the next request next_link = next( (link for link in page.get("links", []) if link["rel"] == "next"), None ) def _is_url(href: str) -> bool: url = urlparse(href) return bool(url.scheme) and bool(url.netloc) pystac-client-0.9.0/pystac_client/version.py000066400000000000000000000000261503646565400212130ustar00rootroot00000000000000__version__ = "0.9.0" pystac-client-0.9.0/pystac_client/warnings.py000066400000000000000000000053301503646565400213610ustar00rootroot00000000000000import warnings from collections.abc import Iterator from contextlib import contextmanager class PystacClientWarning(UserWarning): """Base warning class""" ... class NoConformsTo(PystacClientWarning): """Inform user when client does not have "conformsTo" set""" def __str__(self) -> str: return "Server does not advertise any conformance classes." class DoesNotConformTo(PystacClientWarning): """Inform user when client does not conform to extension""" def __str__(self) -> str: return "Server does not conform to {}".format(", ".join(self.args)) class MissingLink(PystacClientWarning): """Inform user when link is not found""" def __str__(self) -> str: return "No link with rel='{}' could be found on this {}.".format(*self.args) class FallbackToPystac(PystacClientWarning): """Inform user when falling back to pystac implementation""" def __str__(self) -> str: return "Falling back to pystac. This might be slow." @contextmanager def strict() -> Iterator[None]: """Context manager for raising all pystac-client warnings as errors For more fine-grained control or to filter warnings in the whole python session, use the :py:mod:`warnings` module directly. Examples: >>> from pystac_client import Client >>> from pystac_client.warnings import strict >>> with strict(): ... Client.open("https://perfect-api.test") For finer-grained control: >>> import warnings >>> from pystac_client import Client >>> from pystac_client.warnings import MissingLink >>> warnings.filterwarnings("error", category=FallbackToPystac) >>> Client.open("https://imperfect-api.test") """ warnings.filterwarnings("error", category=PystacClientWarning) try: yield finally: warnings.filterwarnings("default", category=PystacClientWarning) @contextmanager def ignore() -> Iterator[None]: """Context manager for ignoring all pystac-client warnings For more fine-grained control or to set filter warnings in the whole python session, use the ``warnings`` module directly. Examples: >>> from pystac_client import Client >>> from pystac_client.warnings import ignore >>> with ignore(): ... Client.open("https://perfect-api.test") For finer-grained control: >>> import warnings >>> from pystac_client import Client >>> from pystac_client.warnings import MissingLink >>> warnings.filterwarnings("ignore", category=MissingLink) >>> Client.open("https://imperfect-api.test") """ warnings.filterwarnings("ignore", category=PystacClientWarning) try: yield finally: warnings.filterwarnings("default", category=PystacClientWarning) pystac-client-0.9.0/scripts/000077500000000000000000000000001503646565400160045ustar00rootroot00000000000000pystac-client-0.9.0/scripts/build-docs000077500000000000000000000005001503646565400177520ustar00rootroot00000000000000#!/bin/bash set -e if [[ -n "${CI}" ]]; then set -x fi function usage() { echo -n \ "Usage: $(basename "$0") Build documentation " } if [ "${BASH_SOURCE[0]}" = "${0}" ]; then if [ "${1:-}" = "--help" ]; then usage else uv run -- sphinx-build -M html docs docs/build fi fi pystac-client-0.9.0/scripts/format000077500000000000000000000004651503646565400172270ustar00rootroot00000000000000#!/bin/bash set -e if [[ -n "${CI}" ]]; then set -x fi function usage() { echo -n \ "Usage: $(basename "$0") Format code with black " } if [ "${BASH_SOURCE[0]}" = "${0}" ]; then if [ "${1:-}" = "--help" ]; then usage else pre-commit run black --all-files fi fi pystac-client-0.9.0/scripts/lint000077500000000000000000000006631503646565400167050ustar00rootroot00000000000000#!/bin/bash set -e if [[ -n "${CI}" ]]; then set -x fi function usage() { echo -n \ "Usage: $(basename "$0") Execute project linters. " } if [ "${BASH_SOURCE[0]}" = "${0}" ]; then if [ "${1:-}" = "--help" ]; then usage else pre-commit run codespell --all-files pre-commit run doc8 --all-files pre-commit run ruff --all-files pre-commit run mypy --all-files fi fi pystac-client-0.9.0/scripts/test000077500000000000000000000007231503646565400167130ustar00rootroot00000000000000#!/bin/bash set -e if [[ -n "${CI}" ]]; then set -x fi function usage() { echo -n \ "Usage: $(basename "$0") Execute project linters and test suites. " } if [ "${BASH_SOURCE[0]}" = "${0}" ]; then if [ "${1:-}" = "--help" ]; then usage else ./scripts/lint ./scripts/format # Test suite with coverage enabled pytest -Werror --cov pystac_client --cov-report term-missing coverage xml fi fi pystac-client-0.9.0/tests/000077500000000000000000000000001503646565400154575ustar00rootroot00000000000000pystac-client-0.9.0/tests/__init__.py000066400000000000000000000000001503646565400175560ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/000077500000000000000000000000001503646565400174555ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_cli/000077500000000000000000000000001503646565400212635ustar00rootroot00000000000000TestCLICollections.test_collection_search[inprocess].yaml000066400000000000000000003051641503646565400345030ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_cliinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v1 response: body: string: '{"stac_version":"1.0.0","type":"Catalog","id":"earth-search-aws","title":"Earth Search by Element 84","description":"A STAC API of public datasets on AWS","links":[{"rel":"self","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"conformance","type":"application/json","href":"https://earth-search.aws.element84.com/v1/conformance"},{"rel":"data","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections"},{"rel":"search","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","method":"POST"},{"rel":"aggregate","type":"application/json","href":"https://earth-search.aws.element84.com/v1/aggregate","method":"GET"},{"rel":"aggregations","type":"application/json","href":"https://earth-search.aws.element84.com/v1/aggregations"},{"rel":"service-desc","type":"application/vnd.oai.openapi","href":"https://earth-search.aws.element84.com/v1/api"},{"rel":"service-doc","type":"text/html","href":"https://earth-search.aws.element84.com/v1/api.html"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","href":"https://earth-search.aws.element84.com/v1/queryables"},{"rel":"server","type":"text/html","href":"https://stac-utils.github.io/stac-server/"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/naip"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd"}],"conformsTo":["https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features#fields","https://api.stacspec.org/v1.0.0/ogcapi-features#sort","https://api.stacspec.org/v1.0.0/ogcapi-features#query","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#sort","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v0.3.0/aggregation","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson"]}' headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '612' Content-Type: - application/json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:50:11 GMT Via: - 1.1 f923e65cfb5d73f11ea9a89d42fad5fc.cloudfront.net (CloudFront) X-Amz-Cf-Id: - IiFXhZ_EurGohZkDikJP2DNDJ0cL90wZNQumAUKpOPbf9q8xqPu8IQ== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f182-2b7b5e354b22df557ee805bf;Parent=3862bf82ca3f7d25;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"d29-QPs+H0wJLUX32EZKNgzG3k6wfQ8" x-amz-apigw-id: - N2qshEoAvHcEc6g= x-amzn-Remapped-content-length: - '3369' x-amzn-RequestId: - 383db7db-757c-4b29-bea6-1b19df876019 x-powered-by: - Express status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v1/collections?q=sentinel response: body: string: "{\"collections\":[{\"type\":\"Collection\",\"id\":\"sentinel-2-pre-c1-l2a\",\"title\":\"Sentinel-2 Pre-Collection 1 Level-2A \",\"description\":\"Sentinel-2 Pre-Collection 1 Level-2A (baseline < 05.00), with data and metadata matching collection sentinel-2-c1-l2a\",\"stac_version\":\"1.0.0\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"roles\":[\"visual\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"roles\":[\"overview\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"product_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"id\":\"cop-dem-glo-30\",\"type\":\"Collection\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/aggregations\"}],\"title\":\"Copernicus DEM GLO-30\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"DSM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20123/121286/CSCDA_ESA_Mission-specific+Annex_31_Oct_22.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[30],\"platform\":[\"tandem-x\"],\"proj:epsg\":[4326],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[false]},\"description\":\"The Copernicus DEM is a Digital Surface Model (DSM) which represents the surface of the Earth including buildings, infrastructure and vegetation. GLO-30 Public provides limited worldwide coverage at 30 meters because a small subset of tiles covering specific countries are not yet released to the public by the Copernicus Programme.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"raster:bands\":[{\"sampling\":\"point\",\"data_type\":\"float32\",\"spatial_resolution\":30,\"unit\":\"meter\"}]}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"]},{\"id\":\"naip\",\"type\":\"Collection\",\"description\":\"The [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/) (NAIP) provides U.S.-wide, high-resolution aerial imagery, with four spectral bands (R, G, B, IR). NAIP is administered by the [Aerial Field Photography Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/) (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA). \ Data are captured at least once every three years for each state. This dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\n\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip\"},{\"rel\":\"license\",\"href\":\"https://www.fsa.usda.gov/help/policies-and-links/\",\"title\":\"Public Domain\",\"type\":\"text/html\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/F7QN651G\",\"title\":\"NAIP Overview\",\"type\":\"text/html\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.14358/PERS.83.10.737\",\"title\":\"Publication\",\"type\":\"text/html\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/aggregations\"}],\"title\":\"NAIP: National Agriculture Imagery Program\",\"extent\":{\"spatial\":{\"bbox\":[[-160,17,-67,50]]},\"temporal\":{\"interval\":[[\"2010-01-01T00:00:00Z\",\"2022-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"NAIP\",\"Aerial\",\"Imagery\",\"USDA\",\"AFPO\",\"Agriculture\",\"United States\"],\"providers\":[{\"name\":\"USDA Farm Service Agency\",\"url\":\"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/\",\"roles\":[\"producer\",\"licensor\"]},{\"name\":\"Esri\",\"url\":\"https://www.esri.com\",\"roles\":[\"processor\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/naip\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[0.6,1],\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\",\"description\":\"visible red\"},{\"name\":\"Green\",\"common_name\":\"green\",\"description\":\"visible green\"},{\"name\":\"Blue\",\"common_name\":\"blue\",\"description\":\"visible blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"item_assets\":{\"image\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"name\":\"Blue\",\"common_name\":\"blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"metadata\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"FGDC Metdata\"}},\"sci:doi\":\"10.5066/F7QN651G\",\"sci:publications\":[{\"doi\":\"10.14358/PERS.83.10.737\",\"citation\":\"Maxwell, A. E., Warner, T. A., Vanderbilt, B. C., & Ramezan, C. A. (2017). Land cover classification and feature extraction from National Agriculture Imagery Program (NAIP) orthoimagery: A Review. Photogrammetric Engineering & Remote Sensing, 83(11), 737-747. https://doi.org/10.14358/pers.83.10.737\"}],\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"]},{\"id\":\"cop-dem-glo-90\",\"type\":\"Collection\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20123/121286/CSCDA_ESA_Mission-specific+Annex_31_Oct_22.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/aggregations\"}],\"title\":\"Copernicus DEM GLO-90\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[90],\"platform\":[\"tandem-x\"],\"proj:epsg\":[4326],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[false]},\"description\":\"The Copernicus DEM is a Digital Surface Model (DSM) which represents the surface of the Earth including buildings, infrastructure and vegetation. GLO-90 provides worldwide coverage at 90 meters.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"raster:bands\":[{\"sampling\":\"point\",\"data_type\":\"float32\",\"spatial_resolution\":30,\"unit\":\"meter\"}]}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"]},{\"type\":\"Collection\",\"id\":\"landsat-c2-l2\",\"stac_version\":\"1.0.0\",\"description\":\"Atmospherically corrected global Landsat Collection 2 Level-2 data from the Thematic Mapper (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor (TIRS) onboard Landsat 8 and 9.\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9IAXOVV\",\"title\":\"Landsat 4-5 TM Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9C7I13B\",\"title\":\"Landsat 7 ETM+ Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat 8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/core-science-systems/hdds/data-policy\",\"title\":\"Public Domain\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"reduced_resolution_browse\":{\"type\":\"image/jpeg\",\"title\":\"Reduced resolution browse image\",\"roles\":[\"overview\"]},\"mtl.json\":{\"type\":\"application/json\",\"title\":\"Product Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata File (json)\",\"roles\":[\"metadata\"]},\"mtl.txt\":{\"type\":\"text/plain\",\"title\":\"Product Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata File (txt)\",\"roles\":[\"metadata\"]},\"mtl.xml\":{\"type\":\"application/xml\",\"title\":\"Product Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata File (xml)\",\"roles\":[\"metadata\"]},\"ang\":{\"type\":\"text/plain\",\"title\":\"Angle Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients File\",\"roles\":[\"metadata\"]},\"qa_pixel\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality Assessment Band\",\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"]},\"qa_radsat\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"saturation\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\",\"description\":\"Collection 2 Level-2 Coastal/Aerosol Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band\",\"description\":\"Collection 2 Level-2 Blue Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band\",\"description\":\"Collection 2 Level-2 Green Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band\",\"description\":\"Collection 2 Level-2 Red Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band 0.8\",\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared Band 1.6\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 2.2 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"atmos_opacity\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Opacity Band\",\"description\":\"Collection 2 Level-2 Atmospheric Opacity Band Surface Reflectance Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.001}],\"roles\":[\"data\"]},\"cloud_qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Cloud Quality Assessment Band Surface Reflectance Product\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"]},\"qa_aerosol\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Assessment Band Surface Reflectance Product\",\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"data-mask\",\"water-mask\"]},\"lwir11\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band Surface Temperature\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.00341802,\"offset\":149}],\"roles\":[\"temperature\"]},\"lwir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band Surface Temperature\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.00341802,\"offset\":149}],\"roles\":[\"temperature\"]},\"atran\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance Band\",\"description\":\"Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\"]},\"cdist\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"description\":\"Collection 2 Level-2 Cloud Distance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"kilometer\",\"scale\":0.01}],\"roles\":[\"data\"]},\"drad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"urad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"trad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"description\":\"Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"emis\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"description\":\"Collection 2 Level-2 Emissivity Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\",\"emissivity\"]},\"emsd\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard Deviation Band\",\"description\":\"Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\",\"emissivity\"]},\"qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Quality Assessment Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.01}],\"roles\":[\"data\"]}},\"title\":\"Landsat Collection 2 Level-2\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1982-08-22T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Landsat\",\"USGS\",\"NASA\",\"Satellite\",\"Global\",\"Imagery\",\"Reflectance\",\"Temperature\"],\"providers\":[{\"name\":\"NASA\",\"roles\":[\"producer\",\"licensor\"],\"url\":\"https://landsat.gsfc.nasa.gov/\"},{\"name\":\"USGS\",\"roles\":[\"producer\",\"processor\",\"licensor\"],\"url\":\"https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"landsat-4\",\"landsat-5\",\"landsat-7\",\"landsat-8\",\"landsat-9\"],\"instruments\":[\"tm\",\"etm+\",\"oli\",\"tirs\"],\"gsd\":[30,60,100,120],\"sci:doi\":[\"10.5066/P9IAXOVV\",\"10.5066/P9C7I13B\",\"10.5066/P9OGBGM6\"],\"eo:bands\":[{\"name\":\"TM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Thematic Mapper)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.07},{\"name\":\"TM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Thematic Mapper)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"TM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Thematic Mapper)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"TM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Thematic Mapper)\",\"center_wavelength\":0.83,\"full_width_half_max\":0.14},{\"name\":\"TM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"TM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Thematic Mapper)\",\"center_wavelength\":11.45,\"full_width_half_max\":2.1},{\"name\":\"TM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":2.22,\"full_width_half_max\":0.27},{\"name\":\"ETM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.07},{\"name\":\"ETM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"ETM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"ETM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.84,\"full_width_half_max\":0.13},{\"name\":\"ETM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"ETM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":11.34,\"full_width_half_max\":2.05},{\"name\":\"ETM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.28},{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol (Operational Land Imager)\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02},{\"name\":\"OLI_B2\",\"common_name\":\"blue\",\"description\":\"Visible blue (Operational Land Imager)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06},{\"name\":\"OLI_B3\",\"common_name\":\"green\",\"description\":\"Visible green (Operational Land Imager)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06},{\"name\":\"OLI_B4\",\"common_name\":\"red\",\"description\":\"Visible red (Operational Land Imager)\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04},{\"name\":\"OLI_B5\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Operational Land Imager)\",\"center_wavelength\":0.87,\"full_width_half_max\":0.03},{\"name\":\"OLI_B6\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.09},{\"name\":\"OLI_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.19},{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave infrared (Thermal Infrared Sensor)\",\"center_wavelength\":10.9,\"full_width_half_max\":0.59}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-l2a\",\"stac_version\":\"1.0.0\",\"title\":\"Sentinel-2 Level-2A\",\"description\":\"Global Sentinel-2 data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water vapour (WVP)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"aot-jp2\":{\"type\":\"image/jp2\",\"title\":\"Aerosol optical thickness (AOT)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"blue-jp2\":{\"type\":\"image/jp2\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal-jp2\":{\"type\":\"image/jp2\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"green-jp2\":{\"type\":\"image/jp2\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"scl-jp2\":{\"type\":\"image/jp2\",\"title\":\"Scene classification map (SCL)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"reflectance\"]},\"swir16-jp2\":{\"type\":\"image/jp2\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22-jp2\":{\"type\":\"image/jp2\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"visual-jp2\":{\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]},\"wvp-jp2\":{\"type\":\"image/jp2\",\"title\":\"Water vapour (WVP)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-l1c\",\"stac_version\":\"1.0.0\",\"title\":\"Sentinel-2 Level-1C\",\"description\":\"Global Sentinel-2 data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-1C (L1C) Top-of-Atmosphere Reflectance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"blue\":{\"type\":\"image/jp2\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"cirrus\":{\"type\":\"image/jp2\",\"title\":\"Cirrus (band 10) - 60m\",\"eo:bands\":[{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"type\":\"image/jp2\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"type\":\"image/jp2\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"type\":\"image/jp2\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"type\":\"image/jp2\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/jp2\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red\":{\"type\":\"image/jp2\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/jp2\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/jp2\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/jp2\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/jp2\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-c1-l2a\",\"title\":\"Sentinel-2 Collection 1 Level-2A\",\"description\":\"Sentinel-2 Collection 1 Level-2A, data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"stac_version\":\"1.0.0\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"roles\":[\"visual\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"roles\":[\"overview\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"product_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"id\":\"sentinel-1-grd\",\"type\":\"Collection\",\"title\":\"Sentinel-1 Level-1C Ground Range Detected (GRD)\",\"description\":\"Sentinel-1 is a pair of Synthetic Aperture Radar (SAR) imaging satellites launched in 2014 and 2016 by the European Space Agency (ESA). Their 6 day revisit cycle and ability to observe through clouds makes this dataset perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. This dataset represents the global Sentinel-1 GRD archive, from beginning to the present, converted to cloud-optimized GeoTIFF format.\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/technical-guides/sentinel-1-sar/products-algorithms/level-1-algorithms/ground-range-detected\",\"title\":\"Sentinel-1 Ground Range Detected (GRD) Technical Guide\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"Copernicus Sentinel data terms\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/aggregations\"}],\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2014-10-10T00:28:21Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"ESA\",\"Copernicus\",\"Sentinel\",\"C-Band\",\"SAR\",\"GRD\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-1a\",\"sentinel-1b\"],\"constellation\":[\"sentinel-1\"],\"s1:resolution\":[\"full\",\"high\",\"medium\"],\"s1:orbit_source\":[\"DOWNLINK\",\"POEORB\",\"PREORB\",\"RESORB\"],\"sar:looks_range\":[5,6,3,2],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"sar:product_type\":[\"GRD\"],\"sar:looks_azimuth\":[1,6,2],\"sar:polarizations\":[[\"VV\",\"VH\"],[\"HH\",\"HV\"],[\"VV\"],[\"VH\"],[\"HH\"],[\"HV\"]],\"sar:frequency_band\":[\"C\"],\"s1:processing_level\":[\"1\"],\"sar:instrument_mode\":[\"IW\",\"EW\",\"SM\"],\"sar:center_frequency\":[5.405],\"sar:resolution_range\":[20,23,50,93,9],\"s1:product_timeliness\":[\"NRT-10m\",\"NRT-1h\",\"NRT-3h\",\"Fast-24h\",\"Off-line\",\"Reprocessing\"],\"sar:resolution_azimuth\":[22,23,50,87,9],\"sar:pixel_spacing_range\":[10,25,40,3.5],\"sar:observation_direction\":[\"right\"],\"sar:pixel_spacing_azimuth\":[10,25,40,3.5],\"sar:looks_equivalent_number\":[4.4,29.7,2.7,10.7,3.7],\"sat:platform_international_designator\":[\"2014-016A\",\"2016-025A\",\"0000-000A\"],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[true]},\"item_assets\":{\"hh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HH Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"hv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HV Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"vh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VH Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"vv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VV Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail Image\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"SAFE Manifest File\"},\"schema-noise-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Noise Schema\"},\"schema-noise-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Noise Schema\"},\"schema-noise-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Noise Schema\"},\"schema-noise-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Noise Schema\"},\"schema-product-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Product Schema\"},\"schema-product-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Product Schema\"},\"schema-product-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Product Schema\"},\"schema-product-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Product Schema\"},\"schema-calibration-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Calibration Schema\"},\"schema-calibration-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Calibration Schema\"},\"schema-calibration-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Calibration Schema\"},\"schema-calibration-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Calibration Schema\"}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"]}],\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"}],\"context\":{\"page\":1,\"limit\":100,\"matched\":9,\"returned\":9}}" headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '8117' Content-Type: - application/json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:50:11 GMT Via: - 1.1 d50ea39d66fbd0459a5507b1cf70c2dc.cloudfront.net (CloudFront) X-Amz-Cf-Id: - eCNcQmWbtSHeO-33J-rNQZPlBEYUyefTLDTR7W5ko-gI60pqT4-hBA== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f183-4f17a317413c0fb95459f0dc;Parent=3552531be28adce9;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"141dd-9fMv6YJnvxPn9adSQK466CnIbE0" x-amz-apigw-id: - N2qsiHMqvHcEaMA= x-amzn-Remapped-content-length: - '82397' x-amzn-RequestId: - ec4ef05e-b18d-41ce-9a40-a29f597c7986 x-powered-by: - Express status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_cli/TestCLICollections.test_collections[inprocess].yaml000066400000000000000000003051511503646565400334140ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v1 response: body: string: '{"stac_version":"1.0.0","type":"Catalog","id":"earth-search-aws","title":"Earth Search by Element 84","description":"A STAC API of public datasets on AWS","links":[{"rel":"self","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"conformance","type":"application/json","href":"https://earth-search.aws.element84.com/v1/conformance"},{"rel":"data","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections"},{"rel":"search","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","method":"POST"},{"rel":"aggregate","type":"application/json","href":"https://earth-search.aws.element84.com/v1/aggregate","method":"GET"},{"rel":"aggregations","type":"application/json","href":"https://earth-search.aws.element84.com/v1/aggregations"},{"rel":"service-desc","type":"application/vnd.oai.openapi","href":"https://earth-search.aws.element84.com/v1/api"},{"rel":"service-doc","type":"text/html","href":"https://earth-search.aws.element84.com/v1/api.html"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","href":"https://earth-search.aws.element84.com/v1/queryables"},{"rel":"server","type":"text/html","href":"https://stac-utils.github.io/stac-server/"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/naip"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd"}],"conformsTo":["https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features#fields","https://api.stacspec.org/v1.0.0/ogcapi-features#sort","https://api.stacspec.org/v1.0.0/ogcapi-features#query","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#sort","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v0.3.0/aggregation","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson"]}' headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '612' Content-Type: - application/json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:50:10 GMT Via: - 1.1 20ebec22e4be2753f048f31dfe94e426.cloudfront.net (CloudFront) X-Amz-Cf-Id: - bLlS5LeEXcGnTbJmhdy8V8s6YNX0aj1SLuCE6ClrWg3aalY716OnsQ== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f182-354a2ab30cb3fd775fa13508;Parent=6436a00881a064de;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"d29-QPs+H0wJLUX32EZKNgzG3k6wfQ8" x-amz-apigw-id: - N2qseEr7PHcEKqA= x-amzn-Remapped-content-length: - '3369' x-amzn-RequestId: - 81bd2f62-76f3-4b78-88e6-c23689c1818d x-powered-by: - Express status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v1/collections response: body: string: "{\"collections\":[{\"type\":\"Collection\",\"id\":\"sentinel-2-pre-c1-l2a\",\"title\":\"Sentinel-2 Pre-Collection 1 Level-2A \",\"description\":\"Sentinel-2 Pre-Collection 1 Level-2A (baseline < 05.00), with data and metadata matching collection sentinel-2-c1-l2a\",\"stac_version\":\"1.0.0\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"roles\":[\"visual\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"roles\":[\"overview\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"product_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"id\":\"cop-dem-glo-30\",\"type\":\"Collection\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/aggregations\"}],\"title\":\"Copernicus DEM GLO-30\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"DSM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20123/121286/CSCDA_ESA_Mission-specific+Annex_31_Oct_22.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[30],\"platform\":[\"tandem-x\"],\"proj:epsg\":[4326],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[false]},\"description\":\"The Copernicus DEM is a Digital Surface Model (DSM) which represents the surface of the Earth including buildings, infrastructure and vegetation. GLO-30 Public provides limited worldwide coverage at 30 meters because a small subset of tiles covering specific countries are not yet released to the public by the Copernicus Programme.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"raster:bands\":[{\"sampling\":\"point\",\"data_type\":\"float32\",\"spatial_resolution\":30,\"unit\":\"meter\"}]}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"]},{\"id\":\"naip\",\"type\":\"Collection\",\"description\":\"The [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/) (NAIP) provides U.S.-wide, high-resolution aerial imagery, with four spectral bands (R, G, B, IR). NAIP is administered by the [Aerial Field Photography Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/) (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA). \ Data are captured at least once every three years for each state. This dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\n\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip\"},{\"rel\":\"license\",\"href\":\"https://www.fsa.usda.gov/help/policies-and-links/\",\"title\":\"Public Domain\",\"type\":\"text/html\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/F7QN651G\",\"title\":\"NAIP Overview\",\"type\":\"text/html\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.14358/PERS.83.10.737\",\"title\":\"Publication\",\"type\":\"text/html\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/aggregations\"}],\"title\":\"NAIP: National Agriculture Imagery Program\",\"extent\":{\"spatial\":{\"bbox\":[[-160,17,-67,50]]},\"temporal\":{\"interval\":[[\"2010-01-01T00:00:00Z\",\"2022-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"NAIP\",\"Aerial\",\"Imagery\",\"USDA\",\"AFPO\",\"Agriculture\",\"United States\"],\"providers\":[{\"name\":\"USDA Farm Service Agency\",\"url\":\"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/\",\"roles\":[\"producer\",\"licensor\"]},{\"name\":\"Esri\",\"url\":\"https://www.esri.com\",\"roles\":[\"processor\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/naip\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[0.6,1],\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\",\"description\":\"visible red\"},{\"name\":\"Green\",\"common_name\":\"green\",\"description\":\"visible green\"},{\"name\":\"Blue\",\"common_name\":\"blue\",\"description\":\"visible blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"item_assets\":{\"image\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"name\":\"Blue\",\"common_name\":\"blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"metadata\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"FGDC Metdata\"}},\"sci:doi\":\"10.5066/F7QN651G\",\"sci:publications\":[{\"doi\":\"10.14358/PERS.83.10.737\",\"citation\":\"Maxwell, A. E., Warner, T. A., Vanderbilt, B. C., & Ramezan, C. A. (2017). Land cover classification and feature extraction from National Agriculture Imagery Program (NAIP) orthoimagery: A Review. Photogrammetric Engineering & Remote Sensing, 83(11), 737-747. https://doi.org/10.14358/pers.83.10.737\"}],\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"]},{\"id\":\"cop-dem-glo-90\",\"type\":\"Collection\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20123/121286/CSCDA_ESA_Mission-specific+Annex_31_Oct_22.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/aggregations\"}],\"title\":\"Copernicus DEM GLO-90\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[90],\"platform\":[\"tandem-x\"],\"proj:epsg\":[4326],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[false]},\"description\":\"The Copernicus DEM is a Digital Surface Model (DSM) which represents the surface of the Earth including buildings, infrastructure and vegetation. GLO-90 provides worldwide coverage at 90 meters.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"raster:bands\":[{\"sampling\":\"point\",\"data_type\":\"float32\",\"spatial_resolution\":30,\"unit\":\"meter\"}]}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"]},{\"type\":\"Collection\",\"id\":\"landsat-c2-l2\",\"stac_version\":\"1.0.0\",\"description\":\"Atmospherically corrected global Landsat Collection 2 Level-2 data from the Thematic Mapper (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor (TIRS) onboard Landsat 8 and 9.\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9IAXOVV\",\"title\":\"Landsat 4-5 TM Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9C7I13B\",\"title\":\"Landsat 7 ETM+ Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat 8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/core-science-systems/hdds/data-policy\",\"title\":\"Public Domain\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"reduced_resolution_browse\":{\"type\":\"image/jpeg\",\"title\":\"Reduced resolution browse image\",\"roles\":[\"overview\"]},\"mtl.json\":{\"type\":\"application/json\",\"title\":\"Product Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata File (json)\",\"roles\":[\"metadata\"]},\"mtl.txt\":{\"type\":\"text/plain\",\"title\":\"Product Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata File (txt)\",\"roles\":[\"metadata\"]},\"mtl.xml\":{\"type\":\"application/xml\",\"title\":\"Product Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata File (xml)\",\"roles\":[\"metadata\"]},\"ang\":{\"type\":\"text/plain\",\"title\":\"Angle Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients File\",\"roles\":[\"metadata\"]},\"qa_pixel\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality Assessment Band\",\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"]},\"qa_radsat\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"saturation\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\",\"description\":\"Collection 2 Level-2 Coastal/Aerosol Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band\",\"description\":\"Collection 2 Level-2 Blue Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band\",\"description\":\"Collection 2 Level-2 Green Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band\",\"description\":\"Collection 2 Level-2 Red Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band 0.8\",\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared Band 1.6\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 2.2 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"atmos_opacity\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Opacity Band\",\"description\":\"Collection 2 Level-2 Atmospheric Opacity Band Surface Reflectance Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.001}],\"roles\":[\"data\"]},\"cloud_qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Cloud Quality Assessment Band Surface Reflectance Product\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"]},\"qa_aerosol\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Assessment Band Surface Reflectance Product\",\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"data-mask\",\"water-mask\"]},\"lwir11\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band Surface Temperature\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.00341802,\"offset\":149}],\"roles\":[\"temperature\"]},\"lwir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band Surface Temperature\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.00341802,\"offset\":149}],\"roles\":[\"temperature\"]},\"atran\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance Band\",\"description\":\"Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\"]},\"cdist\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"description\":\"Collection 2 Level-2 Cloud Distance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"kilometer\",\"scale\":0.01}],\"roles\":[\"data\"]},\"drad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"urad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"trad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"description\":\"Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"emis\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"description\":\"Collection 2 Level-2 Emissivity Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\",\"emissivity\"]},\"emsd\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard Deviation Band\",\"description\":\"Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\",\"emissivity\"]},\"qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Quality Assessment Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.01}],\"roles\":[\"data\"]}},\"title\":\"Landsat Collection 2 Level-2\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1982-08-22T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Landsat\",\"USGS\",\"NASA\",\"Satellite\",\"Global\",\"Imagery\",\"Reflectance\",\"Temperature\"],\"providers\":[{\"name\":\"NASA\",\"roles\":[\"producer\",\"licensor\"],\"url\":\"https://landsat.gsfc.nasa.gov/\"},{\"name\":\"USGS\",\"roles\":[\"producer\",\"processor\",\"licensor\"],\"url\":\"https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"landsat-4\",\"landsat-5\",\"landsat-7\",\"landsat-8\",\"landsat-9\"],\"instruments\":[\"tm\",\"etm+\",\"oli\",\"tirs\"],\"gsd\":[30,60,100,120],\"sci:doi\":[\"10.5066/P9IAXOVV\",\"10.5066/P9C7I13B\",\"10.5066/P9OGBGM6\"],\"eo:bands\":[{\"name\":\"TM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Thematic Mapper)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.07},{\"name\":\"TM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Thematic Mapper)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"TM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Thematic Mapper)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"TM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Thematic Mapper)\",\"center_wavelength\":0.83,\"full_width_half_max\":0.14},{\"name\":\"TM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"TM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Thematic Mapper)\",\"center_wavelength\":11.45,\"full_width_half_max\":2.1},{\"name\":\"TM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":2.22,\"full_width_half_max\":0.27},{\"name\":\"ETM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.07},{\"name\":\"ETM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"ETM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"ETM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.84,\"full_width_half_max\":0.13},{\"name\":\"ETM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"ETM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":11.34,\"full_width_half_max\":2.05},{\"name\":\"ETM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.28},{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol (Operational Land Imager)\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02},{\"name\":\"OLI_B2\",\"common_name\":\"blue\",\"description\":\"Visible blue (Operational Land Imager)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06},{\"name\":\"OLI_B3\",\"common_name\":\"green\",\"description\":\"Visible green (Operational Land Imager)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06},{\"name\":\"OLI_B4\",\"common_name\":\"red\",\"description\":\"Visible red (Operational Land Imager)\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04},{\"name\":\"OLI_B5\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Operational Land Imager)\",\"center_wavelength\":0.87,\"full_width_half_max\":0.03},{\"name\":\"OLI_B6\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.09},{\"name\":\"OLI_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.19},{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave infrared (Thermal Infrared Sensor)\",\"center_wavelength\":10.9,\"full_width_half_max\":0.59}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-l2a\",\"stac_version\":\"1.0.0\",\"title\":\"Sentinel-2 Level-2A\",\"description\":\"Global Sentinel-2 data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water vapour (WVP)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"aot-jp2\":{\"type\":\"image/jp2\",\"title\":\"Aerosol optical thickness (AOT)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"blue-jp2\":{\"type\":\"image/jp2\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal-jp2\":{\"type\":\"image/jp2\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"green-jp2\":{\"type\":\"image/jp2\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"scl-jp2\":{\"type\":\"image/jp2\",\"title\":\"Scene classification map (SCL)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"reflectance\"]},\"swir16-jp2\":{\"type\":\"image/jp2\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22-jp2\":{\"type\":\"image/jp2\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"visual-jp2\":{\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]},\"wvp-jp2\":{\"type\":\"image/jp2\",\"title\":\"Water vapour (WVP)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-l1c\",\"stac_version\":\"1.0.0\",\"title\":\"Sentinel-2 Level-1C\",\"description\":\"Global Sentinel-2 data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-1C (L1C) Top-of-Atmosphere Reflectance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"blue\":{\"type\":\"image/jp2\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"cirrus\":{\"type\":\"image/jp2\",\"title\":\"Cirrus (band 10) - 60m\",\"eo:bands\":[{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"type\":\"image/jp2\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"type\":\"image/jp2\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"type\":\"image/jp2\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"type\":\"image/jp2\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/jp2\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red\":{\"type\":\"image/jp2\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/jp2\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/jp2\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/jp2\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/jp2\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-c1-l2a\",\"title\":\"Sentinel-2 Collection 1 Level-2A\",\"description\":\"Sentinel-2 Collection 1 Level-2A, data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"stac_version\":\"1.0.0\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"roles\":[\"visual\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"roles\":[\"overview\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"product_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"id\":\"sentinel-1-grd\",\"type\":\"Collection\",\"title\":\"Sentinel-1 Level-1C Ground Range Detected (GRD)\",\"description\":\"Sentinel-1 is a pair of Synthetic Aperture Radar (SAR) imaging satellites launched in 2014 and 2016 by the European Space Agency (ESA). Their 6 day revisit cycle and ability to observe through clouds makes this dataset perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. This dataset represents the global Sentinel-1 GRD archive, from beginning to the present, converted to cloud-optimized GeoTIFF format.\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/technical-guides/sentinel-1-sar/products-algorithms/level-1-algorithms/ground-range-detected\",\"title\":\"Sentinel-1 Ground Range Detected (GRD) Technical Guide\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"Copernicus Sentinel data terms\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/aggregations\"}],\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2014-10-10T00:28:21Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"ESA\",\"Copernicus\",\"Sentinel\",\"C-Band\",\"SAR\",\"GRD\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-1a\",\"sentinel-1b\"],\"constellation\":[\"sentinel-1\"],\"s1:resolution\":[\"full\",\"high\",\"medium\"],\"s1:orbit_source\":[\"DOWNLINK\",\"POEORB\",\"PREORB\",\"RESORB\"],\"sar:looks_range\":[5,6,3,2],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"sar:product_type\":[\"GRD\"],\"sar:looks_azimuth\":[1,6,2],\"sar:polarizations\":[[\"VV\",\"VH\"],[\"HH\",\"HV\"],[\"VV\"],[\"VH\"],[\"HH\"],[\"HV\"]],\"sar:frequency_band\":[\"C\"],\"s1:processing_level\":[\"1\"],\"sar:instrument_mode\":[\"IW\",\"EW\",\"SM\"],\"sar:center_frequency\":[5.405],\"sar:resolution_range\":[20,23,50,93,9],\"s1:product_timeliness\":[\"NRT-10m\",\"NRT-1h\",\"NRT-3h\",\"Fast-24h\",\"Off-line\",\"Reprocessing\"],\"sar:resolution_azimuth\":[22,23,50,87,9],\"sar:pixel_spacing_range\":[10,25,40,3.5],\"sar:observation_direction\":[\"right\"],\"sar:pixel_spacing_azimuth\":[10,25,40,3.5],\"sar:looks_equivalent_number\":[4.4,29.7,2.7,10.7,3.7],\"sat:platform_international_designator\":[\"2014-016A\",\"2016-025A\",\"0000-000A\"],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[true]},\"item_assets\":{\"hh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HH Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"hv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HV Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"vh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VH Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"vv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VV Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail Image\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"SAFE Manifest File\"},\"schema-noise-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Noise Schema\"},\"schema-noise-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Noise Schema\"},\"schema-noise-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Noise Schema\"},\"schema-noise-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Noise Schema\"},\"schema-product-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Product Schema\"},\"schema-product-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Product Schema\"},\"schema-product-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Product Schema\"},\"schema-product-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Product Schema\"},\"schema-calibration-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Calibration Schema\"},\"schema-calibration-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Calibration Schema\"},\"schema-calibration-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Calibration Schema\"},\"schema-calibration-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Calibration Schema\"}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"]}],\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"}],\"context\":{\"page\":1,\"limit\":100,\"matched\":9,\"returned\":9}}" headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '8117' Content-Type: - application/json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:50:10 GMT Via: - 1.1 17a5b9b0c17eb15303e6341f5fc26610.cloudfront.net (CloudFront) X-Amz-Cf-Id: - BeMI0GtfkbDJqh-k96rZWmp6WORzh-ZcWMRWcYnFgN_xNq1OdnIj0g== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f182-59fbf1cd13c774cf081a3124;Parent=086145b01a2b00a9;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"141dd-9fMv6YJnvxPn9adSQK466CnIbE0" x-amz-apigw-id: - N2qsfH8YvHcEm0g= x-amzn-Remapped-content-length: - '82397' x-amzn-RequestId: - b0edb184-6a16-4689-8835-0342ed8ab17e x-powered-by: - Express status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_cli/TestCLICollections.test_save[inprocess].yaml000066400000000000000000003051511503646565400320340ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v1 response: body: string: '{"stac_version":"1.0.0","type":"Catalog","id":"earth-search-aws","title":"Earth Search by Element 84","description":"A STAC API of public datasets on AWS","links":[{"rel":"self","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"conformance","type":"application/json","href":"https://earth-search.aws.element84.com/v1/conformance"},{"rel":"data","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections"},{"rel":"search","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","method":"POST"},{"rel":"aggregate","type":"application/json","href":"https://earth-search.aws.element84.com/v1/aggregate","method":"GET"},{"rel":"aggregations","type":"application/json","href":"https://earth-search.aws.element84.com/v1/aggregations"},{"rel":"service-desc","type":"application/vnd.oai.openapi","href":"https://earth-search.aws.element84.com/v1/api"},{"rel":"service-doc","type":"text/html","href":"https://earth-search.aws.element84.com/v1/api.html"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","href":"https://earth-search.aws.element84.com/v1/queryables"},{"rel":"server","type":"text/html","href":"https://stac-utils.github.io/stac-server/"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/naip"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd"}],"conformsTo":["https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features#fields","https://api.stacspec.org/v1.0.0/ogcapi-features#sort","https://api.stacspec.org/v1.0.0/ogcapi-features#query","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#sort","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v0.3.0/aggregation","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson"]}' headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '612' Content-Type: - application/json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:50:11 GMT Via: - 1.1 9bed99ac619d23b077acdc859dc1c43c.cloudfront.net (CloudFront) X-Amz-Cf-Id: - 4ezV3QZMRraNxnLsXDmUHklK1ErDWVKI1HtF8rIUMSk-r7PLSZ9ZXQ== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f183-6bcc556a2c6d2eb97a36d561;Parent=4162810339b0556c;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"d29-QPs+H0wJLUX32EZKNgzG3k6wfQ8" x-amz-apigw-id: - N2qskGL-PHcEa9A= x-amzn-Remapped-content-length: - '3369' x-amzn-RequestId: - f712e635-a59b-4ce7-8a66-1066e6f5cc03 x-powered-by: - Express status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v1/collections response: body: string: "{\"collections\":[{\"type\":\"Collection\",\"id\":\"sentinel-2-pre-c1-l2a\",\"title\":\"Sentinel-2 Pre-Collection 1 Level-2A \",\"description\":\"Sentinel-2 Pre-Collection 1 Level-2A (baseline < 05.00), with data and metadata matching collection sentinel-2-c1-l2a\",\"stac_version\":\"1.0.0\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"roles\":[\"visual\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"roles\":[\"overview\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"product_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"id\":\"cop-dem-glo-30\",\"type\":\"Collection\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/aggregations\"}],\"title\":\"Copernicus DEM GLO-30\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"DSM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20123/121286/CSCDA_ESA_Mission-specific+Annex_31_Oct_22.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[30],\"platform\":[\"tandem-x\"],\"proj:epsg\":[4326],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[false]},\"description\":\"The Copernicus DEM is a Digital Surface Model (DSM) which represents the surface of the Earth including buildings, infrastructure and vegetation. GLO-30 Public provides limited worldwide coverage at 30 meters because a small subset of tiles covering specific countries are not yet released to the public by the Copernicus Programme.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"raster:bands\":[{\"sampling\":\"point\",\"data_type\":\"float32\",\"spatial_resolution\":30,\"unit\":\"meter\"}]}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"]},{\"id\":\"naip\",\"type\":\"Collection\",\"description\":\"The [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/) (NAIP) provides U.S.-wide, high-resolution aerial imagery, with four spectral bands (R, G, B, IR). NAIP is administered by the [Aerial Field Photography Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/) (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA). \ Data are captured at least once every three years for each state. This dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\n\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip\"},{\"rel\":\"license\",\"href\":\"https://www.fsa.usda.gov/help/policies-and-links/\",\"title\":\"Public Domain\",\"type\":\"text/html\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/F7QN651G\",\"title\":\"NAIP Overview\",\"type\":\"text/html\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.14358/PERS.83.10.737\",\"title\":\"Publication\",\"type\":\"text/html\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/aggregations\"}],\"title\":\"NAIP: National Agriculture Imagery Program\",\"extent\":{\"spatial\":{\"bbox\":[[-160,17,-67,50]]},\"temporal\":{\"interval\":[[\"2010-01-01T00:00:00Z\",\"2022-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"NAIP\",\"Aerial\",\"Imagery\",\"USDA\",\"AFPO\",\"Agriculture\",\"United States\"],\"providers\":[{\"name\":\"USDA Farm Service Agency\",\"url\":\"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/\",\"roles\":[\"producer\",\"licensor\"]},{\"name\":\"Esri\",\"url\":\"https://www.esri.com\",\"roles\":[\"processor\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/naip\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[0.6,1],\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\",\"description\":\"visible red\"},{\"name\":\"Green\",\"common_name\":\"green\",\"description\":\"visible green\"},{\"name\":\"Blue\",\"common_name\":\"blue\",\"description\":\"visible blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"item_assets\":{\"image\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"name\":\"Blue\",\"common_name\":\"blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"metadata\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"FGDC Metdata\"}},\"sci:doi\":\"10.5066/F7QN651G\",\"sci:publications\":[{\"doi\":\"10.14358/PERS.83.10.737\",\"citation\":\"Maxwell, A. E., Warner, T. A., Vanderbilt, B. C., & Ramezan, C. A. (2017). Land cover classification and feature extraction from National Agriculture Imagery Program (NAIP) orthoimagery: A Review. Photogrammetric Engineering & Remote Sensing, 83(11), 737-747. https://doi.org/10.14358/pers.83.10.737\"}],\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"]},{\"id\":\"cop-dem-glo-90\",\"type\":\"Collection\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20123/121286/CSCDA_ESA_Mission-specific+Annex_31_Oct_22.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/aggregations\"}],\"title\":\"Copernicus DEM GLO-90\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[90],\"platform\":[\"tandem-x\"],\"proj:epsg\":[4326],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[false]},\"description\":\"The Copernicus DEM is a Digital Surface Model (DSM) which represents the surface of the Earth including buildings, infrastructure and vegetation. GLO-90 provides worldwide coverage at 90 meters.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"raster:bands\":[{\"sampling\":\"point\",\"data_type\":\"float32\",\"spatial_resolution\":30,\"unit\":\"meter\"}]}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"]},{\"type\":\"Collection\",\"id\":\"landsat-c2-l2\",\"stac_version\":\"1.0.0\",\"description\":\"Atmospherically corrected global Landsat Collection 2 Level-2 data from the Thematic Mapper (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor (TIRS) onboard Landsat 8 and 9.\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9IAXOVV\",\"title\":\"Landsat 4-5 TM Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9C7I13B\",\"title\":\"Landsat 7 ETM+ Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat 8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/core-science-systems/hdds/data-policy\",\"title\":\"Public Domain\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"reduced_resolution_browse\":{\"type\":\"image/jpeg\",\"title\":\"Reduced resolution browse image\",\"roles\":[\"overview\"]},\"mtl.json\":{\"type\":\"application/json\",\"title\":\"Product Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata File (json)\",\"roles\":[\"metadata\"]},\"mtl.txt\":{\"type\":\"text/plain\",\"title\":\"Product Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata File (txt)\",\"roles\":[\"metadata\"]},\"mtl.xml\":{\"type\":\"application/xml\",\"title\":\"Product Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata File (xml)\",\"roles\":[\"metadata\"]},\"ang\":{\"type\":\"text/plain\",\"title\":\"Angle Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients File\",\"roles\":[\"metadata\"]},\"qa_pixel\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality Assessment Band\",\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"]},\"qa_radsat\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"saturation\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\",\"description\":\"Collection 2 Level-2 Coastal/Aerosol Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band\",\"description\":\"Collection 2 Level-2 Blue Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band\",\"description\":\"Collection 2 Level-2 Green Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band\",\"description\":\"Collection 2 Level-2 Red Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band 0.8\",\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared Band 1.6\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 2.2 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"atmos_opacity\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Opacity Band\",\"description\":\"Collection 2 Level-2 Atmospheric Opacity Band Surface Reflectance Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.001}],\"roles\":[\"data\"]},\"cloud_qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Cloud Quality Assessment Band Surface Reflectance Product\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"]},\"qa_aerosol\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Assessment Band Surface Reflectance Product\",\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"data-mask\",\"water-mask\"]},\"lwir11\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band Surface Temperature\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.00341802,\"offset\":149}],\"roles\":[\"temperature\"]},\"lwir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band Surface Temperature\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.00341802,\"offset\":149}],\"roles\":[\"temperature\"]},\"atran\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance Band\",\"description\":\"Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\"]},\"cdist\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"description\":\"Collection 2 Level-2 Cloud Distance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"kilometer\",\"scale\":0.01}],\"roles\":[\"data\"]},\"drad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"urad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"trad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"description\":\"Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"emis\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"description\":\"Collection 2 Level-2 Emissivity Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\",\"emissivity\"]},\"emsd\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard Deviation Band\",\"description\":\"Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\",\"emissivity\"]},\"qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Quality Assessment Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.01}],\"roles\":[\"data\"]}},\"title\":\"Landsat Collection 2 Level-2\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1982-08-22T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Landsat\",\"USGS\",\"NASA\",\"Satellite\",\"Global\",\"Imagery\",\"Reflectance\",\"Temperature\"],\"providers\":[{\"name\":\"NASA\",\"roles\":[\"producer\",\"licensor\"],\"url\":\"https://landsat.gsfc.nasa.gov/\"},{\"name\":\"USGS\",\"roles\":[\"producer\",\"processor\",\"licensor\"],\"url\":\"https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"landsat-4\",\"landsat-5\",\"landsat-7\",\"landsat-8\",\"landsat-9\"],\"instruments\":[\"tm\",\"etm+\",\"oli\",\"tirs\"],\"gsd\":[30,60,100,120],\"sci:doi\":[\"10.5066/P9IAXOVV\",\"10.5066/P9C7I13B\",\"10.5066/P9OGBGM6\"],\"eo:bands\":[{\"name\":\"TM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Thematic Mapper)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.07},{\"name\":\"TM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Thematic Mapper)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"TM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Thematic Mapper)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"TM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Thematic Mapper)\",\"center_wavelength\":0.83,\"full_width_half_max\":0.14},{\"name\":\"TM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"TM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Thematic Mapper)\",\"center_wavelength\":11.45,\"full_width_half_max\":2.1},{\"name\":\"TM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":2.22,\"full_width_half_max\":0.27},{\"name\":\"ETM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.07},{\"name\":\"ETM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"ETM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"ETM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.84,\"full_width_half_max\":0.13},{\"name\":\"ETM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"ETM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":11.34,\"full_width_half_max\":2.05},{\"name\":\"ETM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.28},{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol (Operational Land Imager)\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02},{\"name\":\"OLI_B2\",\"common_name\":\"blue\",\"description\":\"Visible blue (Operational Land Imager)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06},{\"name\":\"OLI_B3\",\"common_name\":\"green\",\"description\":\"Visible green (Operational Land Imager)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06},{\"name\":\"OLI_B4\",\"common_name\":\"red\",\"description\":\"Visible red (Operational Land Imager)\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04},{\"name\":\"OLI_B5\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Operational Land Imager)\",\"center_wavelength\":0.87,\"full_width_half_max\":0.03},{\"name\":\"OLI_B6\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.09},{\"name\":\"OLI_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.19},{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave infrared (Thermal Infrared Sensor)\",\"center_wavelength\":10.9,\"full_width_half_max\":0.59}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-l2a\",\"stac_version\":\"1.0.0\",\"title\":\"Sentinel-2 Level-2A\",\"description\":\"Global Sentinel-2 data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water vapour (WVP)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"aot-jp2\":{\"type\":\"image/jp2\",\"title\":\"Aerosol optical thickness (AOT)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"blue-jp2\":{\"type\":\"image/jp2\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal-jp2\":{\"type\":\"image/jp2\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"green-jp2\":{\"type\":\"image/jp2\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"scl-jp2\":{\"type\":\"image/jp2\",\"title\":\"Scene classification map (SCL)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"reflectance\"]},\"swir16-jp2\":{\"type\":\"image/jp2\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22-jp2\":{\"type\":\"image/jp2\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"visual-jp2\":{\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]},\"wvp-jp2\":{\"type\":\"image/jp2\",\"title\":\"Water vapour (WVP)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-l1c\",\"stac_version\":\"1.0.0\",\"title\":\"Sentinel-2 Level-1C\",\"description\":\"Global Sentinel-2 data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-1C (L1C) Top-of-Atmosphere Reflectance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"blue\":{\"type\":\"image/jp2\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"cirrus\":{\"type\":\"image/jp2\",\"title\":\"Cirrus (band 10) - 60m\",\"eo:bands\":[{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"type\":\"image/jp2\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"type\":\"image/jp2\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"type\":\"image/jp2\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"type\":\"image/jp2\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/jp2\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red\":{\"type\":\"image/jp2\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/jp2\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/jp2\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/jp2\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/jp2\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-c1-l2a\",\"title\":\"Sentinel-2 Collection 1 Level-2A\",\"description\":\"Sentinel-2 Collection 1 Level-2A, data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"stac_version\":\"1.0.0\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"roles\":[\"visual\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"roles\":[\"overview\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"product_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"id\":\"sentinel-1-grd\",\"type\":\"Collection\",\"title\":\"Sentinel-1 Level-1C Ground Range Detected (GRD)\",\"description\":\"Sentinel-1 is a pair of Synthetic Aperture Radar (SAR) imaging satellites launched in 2014 and 2016 by the European Space Agency (ESA). Their 6 day revisit cycle and ability to observe through clouds makes this dataset perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. This dataset represents the global Sentinel-1 GRD archive, from beginning to the present, converted to cloud-optimized GeoTIFF format.\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/technical-guides/sentinel-1-sar/products-algorithms/level-1-algorithms/ground-range-detected\",\"title\":\"Sentinel-1 Ground Range Detected (GRD) Technical Guide\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"Copernicus Sentinel data terms\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/aggregations\"}],\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2014-10-10T00:28:21Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"ESA\",\"Copernicus\",\"Sentinel\",\"C-Band\",\"SAR\",\"GRD\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-1a\",\"sentinel-1b\"],\"constellation\":[\"sentinel-1\"],\"s1:resolution\":[\"full\",\"high\",\"medium\"],\"s1:orbit_source\":[\"DOWNLINK\",\"POEORB\",\"PREORB\",\"RESORB\"],\"sar:looks_range\":[5,6,3,2],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"sar:product_type\":[\"GRD\"],\"sar:looks_azimuth\":[1,6,2],\"sar:polarizations\":[[\"VV\",\"VH\"],[\"HH\",\"HV\"],[\"VV\"],[\"VH\"],[\"HH\"],[\"HV\"]],\"sar:frequency_band\":[\"C\"],\"s1:processing_level\":[\"1\"],\"sar:instrument_mode\":[\"IW\",\"EW\",\"SM\"],\"sar:center_frequency\":[5.405],\"sar:resolution_range\":[20,23,50,93,9],\"s1:product_timeliness\":[\"NRT-10m\",\"NRT-1h\",\"NRT-3h\",\"Fast-24h\",\"Off-line\",\"Reprocessing\"],\"sar:resolution_azimuth\":[22,23,50,87,9],\"sar:pixel_spacing_range\":[10,25,40,3.5],\"sar:observation_direction\":[\"right\"],\"sar:pixel_spacing_azimuth\":[10,25,40,3.5],\"sar:looks_equivalent_number\":[4.4,29.7,2.7,10.7,3.7],\"sat:platform_international_designator\":[\"2014-016A\",\"2016-025A\",\"0000-000A\"],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[true]},\"item_assets\":{\"hh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HH Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"hv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HV Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"vh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VH Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"vv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VV Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail Image\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"SAFE Manifest File\"},\"schema-noise-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Noise Schema\"},\"schema-noise-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Noise Schema\"},\"schema-noise-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Noise Schema\"},\"schema-noise-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Noise Schema\"},\"schema-product-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Product Schema\"},\"schema-product-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Product Schema\"},\"schema-product-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Product Schema\"},\"schema-product-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Product Schema\"},\"schema-calibration-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Calibration Schema\"},\"schema-calibration-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Calibration Schema\"},\"schema-calibration-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Calibration Schema\"},\"schema-calibration-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Calibration Schema\"}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"]}],\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"}],\"context\":{\"page\":1,\"limit\":100,\"matched\":9,\"returned\":9}}" headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '8117' Content-Type: - application/json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:50:11 GMT Via: - 1.1 9427b8c01c70c4a2deb16eed5a2ced9c.cloudfront.net (CloudFront) X-Amz-Cf-Id: - vojCLM497FaUeGCVLTZXlPwTFmThdvcqbbb1QClrLgkq9KJGkiEpaA== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f183-7283c89531d085ec7bbecf29;Parent=7ddeb64d93bed6e9;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"141dd-9fMv6YJnvxPn9adSQK466CnIbE0" x-amz-apigw-id: - N2qslEIvPHcEFAw= x-amzn-Remapped-content-length: - '82397' x-amzn-RequestId: - 8516dcef-0417-4046-95c7-4d0d5a99e451 x-powered-by: - Express status: code: 200 message: OK version: 1 TestCLISearch.test_altering_conforms_to[inprocess---clear-conforms-to].yaml000066400000000000000000000110751503646565400376440ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_cliinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v1 response: body: string: '{"stac_version":"1.0.0","type":"Catalog","id":"earth-search-aws","title":"Earth Search by Element 84","description":"A STAC API of public datasets on AWS","links":[{"rel":"self","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"conformance","type":"application/json","href":"https://earth-search.aws.element84.com/v1/conformance"},{"rel":"data","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections"},{"rel":"search","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","method":"POST"},{"rel":"aggregate","type":"application/json","href":"https://earth-search.aws.element84.com/v1/aggregate","method":"GET"},{"rel":"aggregations","type":"application/json","href":"https://earth-search.aws.element84.com/v1/aggregations"},{"rel":"service-desc","type":"application/vnd.oai.openapi","href":"https://earth-search.aws.element84.com/v1/api"},{"rel":"service-doc","type":"text/html","href":"https://earth-search.aws.element84.com/v1/api.html"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","href":"https://earth-search.aws.element84.com/v1/queryables"},{"rel":"server","type":"text/html","href":"https://stac-utils.github.io/stac-server/"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/naip"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd"}],"conformsTo":["https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features#fields","https://api.stacspec.org/v1.0.0/ogcapi-features#sort","https://api.stacspec.org/v1.0.0/ogcapi-features#query","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#sort","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v0.3.0/aggregation","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson"]}' headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '612' Content-Type: - application/json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:50:07 GMT Via: - 1.1 402032e48d13c4b7217c7a59235bf8cc.cloudfront.net (CloudFront) X-Amz-Cf-Id: - DRn2uNwvhiOOGSsw1Dt_0lJlXc7KMVEXLahHpabZyf4fBoIKoteUGg== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f17f-6deb43431b1e2e456478def8;Parent=7613099d48a9e733;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"d29-QPs+H0wJLUX32EZKNgzG3k6wfQ8" x-amz-apigw-id: - N2qr-Hu5vHcEHCQ= x-amzn-Remapped-content-length: - '3369' x-amzn-RequestId: - 119678a1-a0c2-4e19-a088-4ccf360fd322 x-powered-by: - Express status: code: 200 message: OK version: 1 TestCLISearch.test_altering_conforms_to[inprocess---remove-conforms-to=ITEM_SEARCH].yaml000066400000000000000000000110751503646565400416540ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_cliinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v1 response: body: string: '{"stac_version":"1.0.0","type":"Catalog","id":"earth-search-aws","title":"Earth Search by Element 84","description":"A STAC API of public datasets on AWS","links":[{"rel":"self","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"conformance","type":"application/json","href":"https://earth-search.aws.element84.com/v1/conformance"},{"rel":"data","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections"},{"rel":"search","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","method":"POST"},{"rel":"aggregate","type":"application/json","href":"https://earth-search.aws.element84.com/v1/aggregate","method":"GET"},{"rel":"aggregations","type":"application/json","href":"https://earth-search.aws.element84.com/v1/aggregations"},{"rel":"service-desc","type":"application/vnd.oai.openapi","href":"https://earth-search.aws.element84.com/v1/api"},{"rel":"service-doc","type":"text/html","href":"https://earth-search.aws.element84.com/v1/api.html"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","href":"https://earth-search.aws.element84.com/v1/queryables"},{"rel":"server","type":"text/html","href":"https://stac-utils.github.io/stac-server/"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/naip"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd"}],"conformsTo":["https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features#fields","https://api.stacspec.org/v1.0.0/ogcapi-features#sort","https://api.stacspec.org/v1.0.0/ogcapi-features#query","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#sort","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v0.3.0/aggregation","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson"]}' headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '612' Content-Type: - application/json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:50:07 GMT Via: - 1.1 12e4fc9256386a4cd8f000b9caa3e012.cloudfront.net (CloudFront) X-Amz-Cf-Id: - SZC7T6UXfwTFds9ScxeFl3NGIJ7rfz4Nr5f9bAPM6SoqF5xi93K3pA== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f17f-040a000b6239446109b35aad;Parent=4cc908d43ad21307;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"d29-QPs+H0wJLUX32EZKNgzG3k6wfQ8" x-amz-apigw-id: - N2qsAHxCPHcEFAw= x-amzn-Remapped-content-length: - '3369' x-amzn-RequestId: - bf75d666-867c-4b8a-972c-c8c1a4333d89 x-powered-by: - Express status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_cli/TestCLISearch.test_fields[inprocess].yaml000066400000000000000000000475611503646565400313030ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v1 response: body: string: '{"stac_version":"1.0.0","type":"Catalog","id":"earth-search-aws","title":"Earth Search by Element 84","description":"A STAC API of public datasets on AWS","links":[{"rel":"self","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"conformance","type":"application/json","href":"https://earth-search.aws.element84.com/v1/conformance"},{"rel":"data","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections"},{"rel":"search","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","method":"POST"},{"rel":"aggregate","type":"application/json","href":"https://earth-search.aws.element84.com/v1/aggregate","method":"GET"},{"rel":"aggregations","type":"application/json","href":"https://earth-search.aws.element84.com/v1/aggregations"},{"rel":"service-desc","type":"application/vnd.oai.openapi","href":"https://earth-search.aws.element84.com/v1/api"},{"rel":"service-doc","type":"text/html","href":"https://earth-search.aws.element84.com/v1/api.html"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","href":"https://earth-search.aws.element84.com/v1/queryables"},{"rel":"server","type":"text/html","href":"https://stac-utils.github.io/stac-server/"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/naip"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd"}],"conformsTo":["https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features#fields","https://api.stacspec.org/v1.0.0/ogcapi-features#sort","https://api.stacspec.org/v1.0.0/ogcapi-features#query","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#sort","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v0.3.0/aggregation","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson"]}' headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '612' Content-Type: - application/json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:50:10 GMT Via: - 1.1 5950a1c2bfcf1f3e07bedbb2efad39f2.cloudfront.net (CloudFront) X-Amz-Cf-Id: - c7piICiUXaJK6hGILiSIE2yZYmXPN1Xi6iHgXTdteybd8cT1ZHhBiw== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f182-15d26f79267f18217a66cda0;Parent=316c5b4f776e769a;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"d29-QPs+H0wJLUX32EZKNgzG3k6wfQ8" x-amz-apigw-id: - N2qsYEkNvHcECRA= x-amzn-Remapped-content-length: - '3369' x-amzn-RequestId: - b506bd75-6dee-4c18-b889-7ea558419778 x-powered-by: - Express status: code: 200 message: OK - request: body: '{"collections": ["cop-dem-glo-30"], "fields": {"include": [], "exclude": ["geometry", "assets"]}}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '97' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://earth-search.aws.element84.com/v1/search response: body: string: '{"type":"FeatureCollection","stac_version":"1.0.0","stac_extensions":[],"context":{"limit":10,"matched":26450,"returned":10},"numberMatched":26450,"numberReturned":10,"features":[{"stac_version":"1.0.0","bbox":[-180.0013888888889,-89.99986111111112,-179.0013888888889,-88.99986111111112],"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W180_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W180_00_DEM/Copernicus_DSM_COG_10_S90_00_W180_00_DEM.json","type":"application/json"},{"rel":"handbook","description":"Also includes data usage information","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W180_00_DEM/thumbnail"}],"id":"Copernicus_DSM_COG_10_S90_00_W180_00_DEM","collection":"cop-dem-glo-30","type":"Feature","properties":{"datetime":"2021-04-22T00:00:00Z"}},{"stac_version":"1.0.0","bbox":[-179.0013888888889,-89.99986111111112,-178.0013888888889,-88.99986111111112],"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W179_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W179_00_DEM/Copernicus_DSM_COG_10_S90_00_W179_00_DEM.json","type":"application/json"},{"rel":"handbook","description":"Also includes data usage information","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W179_00_DEM/thumbnail"}],"id":"Copernicus_DSM_COG_10_S90_00_W179_00_DEM","collection":"cop-dem-glo-30","type":"Feature","properties":{"datetime":"2021-04-22T00:00:00Z"}},{"stac_version":"1.0.0","bbox":[-178.0013888888889,-89.99986111111112,-177.0013888888889,-88.99986111111112],"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W178_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W178_00_DEM/Copernicus_DSM_COG_10_S90_00_W178_00_DEM.json","type":"application/json"},{"rel":"handbook","description":"Also includes data usage information","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W178_00_DEM/thumbnail"}],"id":"Copernicus_DSM_COG_10_S90_00_W178_00_DEM","collection":"cop-dem-glo-30","type":"Feature","properties":{"datetime":"2021-04-22T00:00:00Z"}},{"stac_version":"1.0.0","bbox":[-177.0013888888889,-89.99986111111112,-176.0013888888889,-88.99986111111112],"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W177_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W177_00_DEM/Copernicus_DSM_COG_10_S90_00_W177_00_DEM.json","type":"application/json"},{"rel":"handbook","description":"Also includes data usage information","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W177_00_DEM/thumbnail"}],"id":"Copernicus_DSM_COG_10_S90_00_W177_00_DEM","collection":"cop-dem-glo-30","type":"Feature","properties":{"datetime":"2021-04-22T00:00:00Z"}},{"stac_version":"1.0.0","bbox":[-176.0013888888889,-89.99986111111112,-175.0013888888889,-88.99986111111112],"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W176_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W176_00_DEM/Copernicus_DSM_COG_10_S90_00_W176_00_DEM.json","type":"application/json"},{"rel":"handbook","description":"Also includes data usage information","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W176_00_DEM/thumbnail"}],"id":"Copernicus_DSM_COG_10_S90_00_W176_00_DEM","collection":"cop-dem-glo-30","type":"Feature","properties":{"datetime":"2021-04-22T00:00:00Z"}},{"stac_version":"1.0.0","bbox":[-175.0013888888889,-89.99986111111112,-174.0013888888889,-88.99986111111112],"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W175_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W175_00_DEM/Copernicus_DSM_COG_10_S90_00_W175_00_DEM.json","type":"application/json"},{"rel":"handbook","description":"Also includes data usage information","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W175_00_DEM/thumbnail"}],"id":"Copernicus_DSM_COG_10_S90_00_W175_00_DEM","collection":"cop-dem-glo-30","type":"Feature","properties":{"datetime":"2021-04-22T00:00:00Z"}},{"stac_version":"1.0.0","bbox":[-174.0013888888889,-89.99986111111112,-173.0013888888889,-88.99986111111112],"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W174_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W174_00_DEM/Copernicus_DSM_COG_10_S90_00_W174_00_DEM.json","type":"application/json"},{"rel":"handbook","description":"Also includes data usage information","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W174_00_DEM/thumbnail"}],"id":"Copernicus_DSM_COG_10_S90_00_W174_00_DEM","collection":"cop-dem-glo-30","type":"Feature","properties":{"datetime":"2021-04-22T00:00:00Z"}},{"stac_version":"1.0.0","bbox":[-173.0013888888889,-89.99986111111112,-172.0013888888889,-88.99986111111112],"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W173_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W173_00_DEM/Copernicus_DSM_COG_10_S90_00_W173_00_DEM.json","type":"application/json"},{"rel":"handbook","description":"Also includes data usage information","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W173_00_DEM/thumbnail"}],"id":"Copernicus_DSM_COG_10_S90_00_W173_00_DEM","collection":"cop-dem-glo-30","type":"Feature","properties":{"datetime":"2021-04-22T00:00:00Z"}},{"stac_version":"1.0.0","bbox":[-172.0013888888889,-89.99986111111112,-171.0013888888889,-88.99986111111112],"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W172_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W172_00_DEM/Copernicus_DSM_COG_10_S90_00_W172_00_DEM.json","type":"application/json"},{"rel":"handbook","description":"Also includes data usage information","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W172_00_DEM/thumbnail"}],"id":"Copernicus_DSM_COG_10_S90_00_W172_00_DEM","collection":"cop-dem-glo-30","type":"Feature","properties":{"datetime":"2021-04-22T00:00:00Z"}},{"stac_version":"1.0.0","bbox":[-171.0013888888889,-89.99986111111112,-170.0013888888889,-88.99986111111112],"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W171_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W171_00_DEM/Copernicus_DSM_COG_10_S90_00_W171_00_DEM.json","type":"application/json"},{"rel":"handbook","description":"Also includes data usage information","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W171_00_DEM/thumbnail"}],"id":"Copernicus_DSM_COG_10_S90_00_W171_00_DEM","collection":"cop-dem-glo-30","type":"Feature","properties":{"datetime":"2021-04-22T00:00:00Z"}}],"links":[{"rel":"next","title":"Next page of Items","method":"POST","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","merge":false,"body":{"fields":{"include":[],"exclude":["geometry","assets"]},"collections":["cop-dem-glo-30"],"next":"2021-04-22T00:00:00Z,Copernicus_DSM_COG_10_S90_00_W171_00_DEM,cop-dem-glo-30"}},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"}]}' headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '946' Content-Type: - application/geo+json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:50:10 GMT Via: - 1.1 350e87fe323bf8d725a381e15f465f40.cloudfront.net (CloudFront) X-Amz-Cf-Id: - DyFSDYuLbgcdoJONuZIw0Zh1RGVR2BzqgrdYMeQxq3nl_iZabgAzwQ== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f182-04f84aff5a3e0ed729f31890;Parent=6d9094516b74a27c;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"36d6-Yp3Ss1A+rOL1FLrKfyikyPdbank" x-amz-apigw-id: - N2qsZF1dPHcEN9g= x-amzn-Remapped-content-length: - '14038' x-amzn-RequestId: - 775da2a5-feab-40c1-bfc2-531135fe691c x-powered-by: - Express status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_cli/TestCLISearch.test_filter[inprocess].yaml000066400000000000000000011032161503646565400313110ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v1 response: body: string: '{"stac_version":"1.0.0","type":"Catalog","id":"earth-search-aws","title":"Earth Search by Element 84","description":"A STAC API of public datasets on AWS","links":[{"rel":"self","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"conformance","type":"application/json","href":"https://earth-search.aws.element84.com/v1/conformance"},{"rel":"data","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections"},{"rel":"search","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","method":"POST"},{"rel":"aggregate","type":"application/json","href":"https://earth-search.aws.element84.com/v1/aggregate","method":"GET"},{"rel":"aggregations","type":"application/json","href":"https://earth-search.aws.element84.com/v1/aggregations"},{"rel":"service-desc","type":"application/vnd.oai.openapi","href":"https://earth-search.aws.element84.com/v1/api"},{"rel":"service-doc","type":"text/html","href":"https://earth-search.aws.element84.com/v1/api.html"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","href":"https://earth-search.aws.element84.com/v1/queryables"},{"rel":"server","type":"text/html","href":"https://stac-utils.github.io/stac-server/"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/naip"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd"}],"conformsTo":["https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features#fields","https://api.stacspec.org/v1.0.0/ogcapi-features#sort","https://api.stacspec.org/v1.0.0/ogcapi-features#query","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#sort","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v0.3.0/aggregation","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson"]}' headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '612' Content-Type: - application/json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:49:49 GMT Via: - 1.1 f5cdd38f09a779678a15f788f0f3cbe2.cloudfront.net (CloudFront) X-Amz-Cf-Id: - vVxlbyFOZX2pjXRH3cuSVbrl65QPXiVadUS2ve4nSOmsb0rdwqDJbQ== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f16d-1aaad0734636f8f30cee9519;Parent=588685ee97481794;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"d29-QPs+H0wJLUX32EZKNgzG3k6wfQ8" x-amz-apigw-id: - N2qpJH8LvHcEnKw= x-amzn-Remapped-content-length: - '3369' x-amzn-RequestId: - 08a6c85d-c5c9-4114-8541-e3aae0c31ca3 x-powered-by: - Express status: code: 200 message: OK - request: body: '{"filter": {"op": "lte", "args": [{"property": "eo:cloud_cover"}, 40]}, "filter-lang": "cql2-json"}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '99' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://earth-search.aws.element84.com/v1/search response: body: string: "{\"type\":\"FeatureCollection\",\"stac_version\":\"1.0.0\",\"stac_extensions\":[],\"context\":{\"limit\":10,\"matched\":115240404,\"returned\":10},\"numberMatched\":115240404,\"numberReturned\":10,\"features\":[{\"type\":\"Feature\",\"stac_version\":\"1.0.0\",\"id\":\"S1C_EW_GRDM_1SSH_20250717T113918_20250717T114012_003259_00694E\",\"properties\":{\"sar:frequency_band\":\"C\",\"sar:center_frequency\":5.405,\"sar:observation_direction\":\"right\",\"sar:instrument_mode\":\"EW\",\"sar:polarizations\":[\"HH\"],\"sar:product_type\":\"GRD\",\"sar:resolution_range\":93,\"sar:resolution_azimuth\":87,\"sar:pixel_spacing_range\":40,\"sar:pixel_spacing_azimuth\":40,\"sar:looks_range\":6,\"sar:looks_azimuth\":2,\"sar:looks_equivalent_number\":10.7,\"sat:platform_international_designator\":\"2024-235A\",\"sat:orbit_state\":\"ascending\",\"sat:absolute_orbit\":3259,\"sat:relative_orbit\":113,\"proj:epsg\":4326,\"proj:bbox\":[114.467918,-64.427773,124.722733,-59.791134],\"proj:shape\":[10450,9036],\"proj:transform\":[0.0011348843514829578,0,114.467918,0,-0.0004436975119617227,-59.791134],\"proj:centroid\":{\"lat\":-62.09164,\"lon\":119.47984},\"platform\":\"sentinel-1c\",\"constellation\":\"sentinel-1\",\"start_datetime\":\"2025-07-17T11:39:18.861689Z\",\"end_datetime\":\"2025-07-17T11:40:12.347528Z\",\"s1:instrument_configuration_ID\":\"5\",\"s1:datatake_id\":\"26958\",\"s1:product_timeliness\":\"Fast-24h\",\"s1:processing_level\":\"1\",\"s1:resolution\":\"medium\",\"s1:orbit_source\":\"RESORB\",\"s1:slice_number\":\"2\",\"s1:total_slices\":\"2\",\"s1:shape\":[10450,9036],\"s1:product_identifier\":\"S1C_EW_GRDM_1SSH_20250717T113918_20250717T114012_003259_00694E_32F5\",\"s1:processing_datetime\":\"2025-07-17T12:31:39.000000Z\",\"storage:platform\":\"AWS\",\"storage:region\":\"eu-central-1\",\"storage:requester_pays\":true,\"datetime\":\"2025-07-17T11:39:45.604609Z\",\"processing:software\":{\"sentinel1-to-stac\":\"2025.05.13\"},\"created\":\"2025-07-17T12:42:20.044Z\",\"updated\":\"2025-07-17T12:42:20.044Z\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[117.3590313,-64.4190946],[121.0864923,-63.5974738],[124.6790868,-62.6569576],[121.2710464,-59.8123396],[114.5924939,-61.5647165],[116.1434584,-63.242562],[117.3590313,-64.4190946]]]},\"links\":[{\"rel\":\"self\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items/S1C_EW_GRDM_1SSH_20250717T113918_20250717T114012_003259_00694E\"},{\"rel\":\"canonical\",\"href\":\"s3://earthsearch-data/sentinel-1-grd/2025/7/17/EW/S1C_EW_GRDM_1SSH_20250717T113918_20250717T114012_003259_00694E/S1C_EW_GRDM_1SSH_20250717T113918_20250717T114012_003259_00694E.json\",\"type\":\"application/json\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"collection\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"thumbnail\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items/S1C_EW_GRDM_1SSH_20250717T113918_20250717T114012_003259_00694E/thumbnail\"}],\"assets\":{\"safe-manifest\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/EW/SH/S1C_EW_GRDM_1SSH_20250717T113918_20250717T114012_003259_00694E_32F5/manifest.safe\",\"type\":\"application/xml\",\"title\":\"Manifest File\",\"description\":\"General product metadata in XML format. Contains a high-level textual description of the product and references to all of product's components, the product metadata, including the product identification and the resource references, and references to the physical location of each component file contained in the product.\",\"roles\":[\"metadata\"]},\"schema-product-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/EW/SH/S1C_EW_GRDM_1SSH_20250717T113918_20250717T114012_003259_00694E_32F5/annotation/rfi/rfi-ew-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\",\"roles\":[\"metadata\"]},\"schema-calibration-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/EW/SH/S1C_EW_GRDM_1SSH_20250717T113918_20250717T114012_003259_00694E_32F5/annotation/calibration/calibration-ew-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\",\"roles\":[\"metadata\"]},\"schema-noise-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/EW/SH/S1C_EW_GRDM_1SSH_20250717T113918_20250717T114012_003259_00694E_32F5/annotation/calibration/noise-ew-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/EW/SH/S1C_EW_GRDM_1SSH_20250717T113918_20250717T114012_003259_00694E_32F5/preview/quick-look.png\",\"type\":\"image/png\",\"title\":\"Preview Image\",\"description\":\"An averaged, decimated preview image in PNG format. Single polarization products are represented with a grey scale image. Dual polarization products are represented by a single composite colour image in RGB with the red channel (R) representing the co-polarization VV or HH), the green channel (G) represents the cross-polarization (VH or HV) and the blue channel (B) represents the ratio of the cross an co-polarizations.\",\"roles\":[\"thumbnail\"]},\"hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/EW/SH/S1C_EW_GRDM_1SSH_20250717T113918_20250717T114012_003259_00694E_32F5/measurement/ew-hh.tiff\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"HH Data\",\"description\":\"Actual SAR data that have been processed into an image\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}],\"roles\":[\"data\"]}},\"bbox\":[114.5924939,-64.4190946,124.6790868,-59.8123396],\"stac_extensions\":[\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\"],\"collection\":\"sentinel-1-grd\"},{\"type\":\"Feature\",\"stac_version\":\"1.0.0\",\"id\":\"S1A_IW_GRDH_1SDH_20250717T113922_20250717T113952_060123_077867\",\"properties\":{\"sar:frequency_band\":\"C\",\"sar:center_frequency\":5.405,\"sar:observation_direction\":\"right\",\"sar:instrument_mode\":\"IW\",\"sar:polarizations\":[\"HH\",\"HV\"],\"sar:product_type\":\"GRD\",\"sar:resolution_range\":20,\"sar:resolution_azimuth\":22,\"sar:pixel_spacing_range\":10,\"sar:pixel_spacing_azimuth\":10,\"sar:looks_range\":5,\"sar:looks_azimuth\":1,\"sar:looks_equivalent_number\":4.4,\"sat:platform_international_designator\":\"2014-016A\",\"sat:orbit_state\":\"descending\",\"sat:absolute_orbit\":60123,\"sat:relative_orbit\":26,\"proj:epsg\":4326,\"proj:bbox\":[-79.16394,67.97245,-71.869957,70.212135],\"proj:shape\":[25390,19648],\"proj:transform\":[0.0003712328481270357,0,-79.16394,0,-0.00008821130366285974,70.212135],\"proj:centroid\":{\"lat\":69.09687,\"lon\":-75.62607},\"platform\":\"sentinel-1a\",\"constellation\":\"sentinel-1\",\"start_datetime\":\"2025-07-17T11:39:22.558932Z\",\"end_datetime\":\"2025-07-17T11:39:52.096445Z\",\"s1:instrument_configuration_ID\":\"7\",\"s1:datatake_id\":\"489575\",\"s1:product_timeliness\":\"NRT-3h\",\"s1:processing_level\":\"1\",\"s1:resolution\":\"high\",\"s1:orbit_source\":\"PREORB\",\"s1:slice_number\":\"11\",\"s1:total_slices\":\"11\",\"s1:shape\":[25390,19648],\"s1:product_identifier\":\"S1A_IW_GRDH_1SDH_20250717T113922_20250717T113952_060123_077867_3DC8\",\"s1:processing_datetime\":\"2025-07-17T12:31:59.000000Z\",\"storage:platform\":\"AWS\",\"storage:region\":\"eu-central-1\",\"storage:requester_pays\":true,\"datetime\":\"2025-07-17T11:39:37.327688Z\",\"processing:software\":{\"sentinel1-to-stac\":\"2025.05.13\"},\"created\":\"2025-07-17T12:48:54.396Z\",\"updated\":\"2025-07-17T12:48:54.396Z\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-78.241461,70.2060061],[-78.7231188,69.2574538],[-79.1051233,68.4593043],[-77.2144778,68.3292013],[-77.204328,68.3292013],[-77.1674193,68.3910233],[-75.0857715,68.2212435],[-75.0497856,68.2756838],[-75.038713,68.2775292],[-73.0880909,68.092986],[-72.5510701,68.8228545],[-71.8747191,69.6994349],[-73.3888964,69.8452241],[-75.0008816,69.9817861],[-76.5990261,70.1008165],[-78.241461,70.2060061]]]},\"links\":[{\"rel\":\"self\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items/S1A_IW_GRDH_1SDH_20250717T113922_20250717T113952_060123_077867\"},{\"rel\":\"canonical\",\"href\":\"s3://earthsearch-data/sentinel-1-grd/2025/7/17/IW/S1A_IW_GRDH_1SDH_20250717T113922_20250717T113952_060123_077867/S1A_IW_GRDH_1SDH_20250717T113922_20250717T113952_060123_077867.json\",\"type\":\"application/json\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"collection\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"thumbnail\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items/S1A_IW_GRDH_1SDH_20250717T113922_20250717T113952_060123_077867/thumbnail\"}],\"assets\":{\"safe-manifest\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113922_20250717T113952_060123_077867_3DC8/manifest.safe\",\"type\":\"application/xml\",\"title\":\"Manifest File\",\"description\":\"General product metadata in XML format. Contains a high-level textual description of the product and references to all of product's components, the product metadata, including the product identification and the resource references, and references to the physical location of each component file contained in the product.\",\"roles\":[\"metadata\"]},\"schema-product-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113922_20250717T113952_060123_077867_3DC8/annotation/rfi/rfi-iw-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\",\"roles\":[\"metadata\"]},\"schema-product-hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113922_20250717T113952_060123_077867_3DC8/annotation/rfi/rfi-iw-hv.xml\",\"type\":\"application/xml\",\"title\":\"HV Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\",\"roles\":[\"metadata\"]},\"schema-calibration-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113922_20250717T113952_060123_077867_3DC8/annotation/calibration/calibration-iw-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\",\"roles\":[\"metadata\"]},\"schema-calibration-hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113922_20250717T113952_060123_077867_3DC8/annotation/calibration/calibration-iw-hv.xml\",\"type\":\"application/xml\",\"title\":\"HV Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\",\"roles\":[\"metadata\"]},\"schema-noise-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113922_20250717T113952_060123_077867_3DC8/annotation/calibration/noise-iw-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\",\"roles\":[\"metadata\"]},\"schema-noise-hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113922_20250717T113952_060123_077867_3DC8/annotation/calibration/noise-iw-hv.xml\",\"type\":\"application/xml\",\"title\":\"HV Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113922_20250717T113952_060123_077867_3DC8/preview/quick-look.png\",\"type\":\"image/png\",\"title\":\"Preview Image\",\"description\":\"An averaged, decimated preview image in PNG format. Single polarization products are represented with a grey scale image. Dual polarization products are represented by a single composite colour image in RGB with the red channel (R) representing the co-polarization VV or HH), the green channel (G) represents the cross-polarization (VH or HV) and the blue channel (B) represents the ratio of the cross an co-polarizations.\",\"roles\":[\"thumbnail\"]},\"hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113922_20250717T113952_060123_077867_3DC8/measurement/iw-hh.tiff\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"HH Data\",\"description\":\"Actual SAR data that have been processed into an image\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}],\"roles\":[\"data\"]},\"hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113922_20250717T113952_060123_077867_3DC8/measurement/iw-hv.tiff\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"HV Data\",\"description\":\"Actual SAR data that have been processed into an image\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}],\"roles\":[\"data\"]}},\"bbox\":[-79.1051233,68.092986,-71.8747191,70.2060061],\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\"],\"collection\":\"sentinel-1-grd\"},{\"type\":\"Feature\",\"stac_version\":\"1.0.0\",\"id\":\"S1A_IW_GRDH_1SDH_20250717T113857_20250717T113922_060123_077867\",\"properties\":{\"sar:frequency_band\":\"C\",\"sar:center_frequency\":5.405,\"sar:observation_direction\":\"right\",\"sar:instrument_mode\":\"IW\",\"sar:polarizations\":[\"HH\",\"HV\"],\"sar:product_type\":\"GRD\",\"sar:resolution_range\":20,\"sar:resolution_azimuth\":22,\"sar:pixel_spacing_range\":10,\"sar:pixel_spacing_azimuth\":10,\"sar:looks_range\":5,\"sar:looks_azimuth\":1,\"sar:looks_equivalent_number\":4.4,\"sat:platform_international_designator\":\"2014-016A\",\"sat:orbit_state\":\"descending\",\"sat:absolute_orbit\":60123,\"sat:relative_orbit\":26,\"proj:epsg\":4326,\"proj:bbox\":[-78.340233,69.701378,-70.552917,71.690308],\"proj:shape\":[25398,16629],\"proj:transform\":[0.0004682973119249506,0,-78.340233,0,-0.00007831049688951871,71.690308],\"proj:centroid\":{\"lat\":70.69714,\"lon\":-74.55458},\"platform\":\"sentinel-1a\",\"constellation\":\"sentinel-1\",\"start_datetime\":\"2025-07-17T11:38:57.558712Z\",\"end_datetime\":\"2025-07-17T11:39:22.557428Z\",\"s1:instrument_configuration_ID\":\"7\",\"s1:datatake_id\":\"489575\",\"s1:product_timeliness\":\"NRT-3h\",\"s1:processing_level\":\"1\",\"s1:resolution\":\"high\",\"s1:orbit_source\":\"PREORB\",\"s1:slice_number\":\"10\",\"s1:total_slices\":\"11\",\"s1:shape\":[25398,16629],\"s1:product_identifier\":\"S1A_IW_GRDH_1SDH_20250717T113857_20250717T113922_060123_077867_AF2F\",\"s1:processing_datetime\":\"2025-07-17T12:31:09.000000Z\",\"storage:platform\":\"AWS\",\"storage:region\":\"eu-central-1\",\"storage:requester_pays\":true,\"datetime\":\"2025-07-17T11:39:10.058070Z\",\"processing:software\":{\"sentinel1-to-stac\":\"2025.05.13\"},\"created\":\"2025-07-17T12:49:26.807Z\",\"updated\":\"2025-07-17T12:49:26.807Z\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-77.4377788,71.6861038],[-77.8177515,71.0294118],[-78.2369605,70.2064817],[-76.7077768,70.1083909],[-75.0381683,69.9844868],[-73.4315445,69.8492247],[-71.8724172,69.7026048],[-71.3045232,70.3665246],[-70.9131926,70.7847011],[-70.5507729,71.1502184],[-72.1883728,71.3050985],[-73.9230309,71.4496534],[-75.6824699,71.5776877],[-77.4377788,71.6861038]]]},\"links\":[{\"rel\":\"self\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items/S1A_IW_GRDH_1SDH_20250717T113857_20250717T113922_060123_077867\"},{\"rel\":\"canonical\",\"href\":\"s3://earthsearch-data/sentinel-1-grd/2025/7/17/IW/S1A_IW_GRDH_1SDH_20250717T113857_20250717T113922_060123_077867/S1A_IW_GRDH_1SDH_20250717T113857_20250717T113922_060123_077867.json\",\"type\":\"application/json\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"collection\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"thumbnail\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items/S1A_IW_GRDH_1SDH_20250717T113857_20250717T113922_060123_077867/thumbnail\"}],\"assets\":{\"safe-manifest\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113857_20250717T113922_060123_077867_AF2F/manifest.safe\",\"type\":\"application/xml\",\"title\":\"Manifest File\",\"description\":\"General product metadata in XML format. Contains a high-level textual description of the product and references to all of product's components, the product metadata, including the product identification and the resource references, and references to the physical location of each component file contained in the product.\",\"roles\":[\"metadata\"]},\"schema-product-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113857_20250717T113922_060123_077867_AF2F/annotation/rfi/rfi-iw-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\",\"roles\":[\"metadata\"]},\"schema-product-hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113857_20250717T113922_060123_077867_AF2F/annotation/rfi/rfi-iw-hv.xml\",\"type\":\"application/xml\",\"title\":\"HV Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\",\"roles\":[\"metadata\"]},\"schema-calibration-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113857_20250717T113922_060123_077867_AF2F/annotation/calibration/calibration-iw-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\",\"roles\":[\"metadata\"]},\"schema-calibration-hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113857_20250717T113922_060123_077867_AF2F/annotation/calibration/calibration-iw-hv.xml\",\"type\":\"application/xml\",\"title\":\"HV Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\",\"roles\":[\"metadata\"]},\"schema-noise-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113857_20250717T113922_060123_077867_AF2F/annotation/calibration/noise-iw-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\",\"roles\":[\"metadata\"]},\"schema-noise-hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113857_20250717T113922_060123_077867_AF2F/annotation/calibration/noise-iw-hv.xml\",\"type\":\"application/xml\",\"title\":\"HV Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113857_20250717T113922_060123_077867_AF2F/preview/quick-look.png\",\"type\":\"image/png\",\"title\":\"Preview Image\",\"description\":\"An averaged, decimated preview image in PNG format. Single polarization products are represented with a grey scale image. Dual polarization products are represented by a single composite colour image in RGB with the red channel (R) representing the co-polarization VV or HH), the green channel (G) represents the cross-polarization (VH or HV) and the blue channel (B) represents the ratio of the cross an co-polarizations.\",\"roles\":[\"thumbnail\"]},\"hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113857_20250717T113922_060123_077867_AF2F/measurement/iw-hh.tiff\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"HH Data\",\"description\":\"Actual SAR data that have been processed into an image\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}],\"roles\":[\"data\"]},\"hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113857_20250717T113922_060123_077867_AF2F/measurement/iw-hv.tiff\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"HV Data\",\"description\":\"Actual SAR data that have been processed into an image\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}],\"roles\":[\"data\"]}},\"bbox\":[-78.2369605,69.7026048,-70.5507729,71.6861038],\"stac_extensions\":[\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\"],\"collection\":\"sentinel-1-grd\"},{\"type\":\"Feature\",\"stac_version\":\"1.0.0\",\"id\":\"S1C_EW_GRDM_1SSH_20250717T113814_20250717T113918_003259_00694E\",\"properties\":{\"sar:frequency_band\":\"C\",\"sar:center_frequency\":5.405,\"sar:observation_direction\":\"right\",\"sar:instrument_mode\":\"EW\",\"sar:polarizations\":[\"HH\"],\"sar:product_type\":\"GRD\",\"sar:resolution_range\":93,\"sar:resolution_azimuth\":87,\"sar:pixel_spacing_range\":40,\"sar:pixel_spacing_azimuth\":40,\"sar:looks_range\":6,\"sar:looks_azimuth\":2,\"sar:looks_equivalent_number\":10.7,\"sat:platform_international_designator\":\"2024-235A\",\"sat:orbit_state\":\"ascending\",\"sat:absolute_orbit\":3259,\"sat:relative_orbit\":113,\"proj:epsg\":4326,\"proj:bbox\":[117.319931,-67.958656,129.832275,-62.647114],\"proj:shape\":[10453,10926],\"proj:transform\":[0.0011451898224418828,0,117.319931,0,-0.0005081356548359325,-62.647114],\"proj:centroid\":{\"lat\":-65.27468,\"lon\":123.43593},\"platform\":\"sentinel-1c\",\"constellation\":\"sentinel-1\",\"start_datetime\":\"2025-07-17T11:38:14.181415Z\",\"end_datetime\":\"2025-07-17T11:39:18.855769Z\",\"s1:instrument_configuration_ID\":\"5\",\"s1:datatake_id\":\"26958\",\"s1:product_timeliness\":\"Fast-24h\",\"s1:processing_level\":\"1\",\"s1:resolution\":\"medium\",\"s1:orbit_source\":\"RESORB\",\"s1:slice_number\":\"1\",\"s1:total_slices\":\"2\",\"s1:shape\":[10453,10926],\"s1:product_identifier\":\"S1C_EW_GRDM_1SSH_20250717T113814_20250717T113918_003259_00694E_E219\",\"s1:processing_datetime\":\"2025-07-17T12:32:00.000000Z\",\"storage:platform\":\"AWS\",\"storage:region\":\"eu-central-1\",\"storage:requester_pays\":true,\"datetime\":\"2025-07-17T11:38:46.518592Z\",\"processing:software\":{\"sentinel1-to-stac\":\"2025.05.13\"},\"created\":\"2025-07-17T12:42:32.678Z\",\"updated\":\"2025-07-17T12:42:32.678Z\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[124.6924472,-62.6546431],[121.0241311,-63.6128214],[117.3703207,-64.421914],[119.5308557,-66.2971713],[121.8420882,-67.9395325],[124.2822598,-67.406853],[124.2202079,-67.3665596],[127.2156232,-66.5800314],[127.1664652,-66.5494083],[129.5260499,-65.8426612],[126.8900521,-64.2204467],[124.6924472,-62.6546431]]]},\"links\":[{\"rel\":\"self\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items/S1C_EW_GRDM_1SSH_20250717T113814_20250717T113918_003259_00694E\"},{\"rel\":\"canonical\",\"href\":\"s3://earthsearch-data/sentinel-1-grd/2025/7/17/EW/S1C_EW_GRDM_1SSH_20250717T113814_20250717T113918_003259_00694E/S1C_EW_GRDM_1SSH_20250717T113814_20250717T113918_003259_00694E.json\",\"type\":\"application/json\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"collection\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"thumbnail\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items/S1C_EW_GRDM_1SSH_20250717T113814_20250717T113918_003259_00694E/thumbnail\"}],\"assets\":{\"safe-manifest\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/EW/SH/S1C_EW_GRDM_1SSH_20250717T113814_20250717T113918_003259_00694E_E219/manifest.safe\",\"type\":\"application/xml\",\"title\":\"Manifest File\",\"description\":\"General product metadata in XML format. Contains a high-level textual description of the product and references to all of product's components, the product metadata, including the product identification and the resource references, and references to the physical location of each component file contained in the product.\",\"roles\":[\"metadata\"]},\"schema-product-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/EW/SH/S1C_EW_GRDM_1SSH_20250717T113814_20250717T113918_003259_00694E_E219/annotation/rfi/rfi-ew-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\",\"roles\":[\"metadata\"]},\"schema-calibration-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/EW/SH/S1C_EW_GRDM_1SSH_20250717T113814_20250717T113918_003259_00694E_E219/annotation/calibration/calibration-ew-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\",\"roles\":[\"metadata\"]},\"schema-noise-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/EW/SH/S1C_EW_GRDM_1SSH_20250717T113814_20250717T113918_003259_00694E_E219/annotation/calibration/noise-ew-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/EW/SH/S1C_EW_GRDM_1SSH_20250717T113814_20250717T113918_003259_00694E_E219/preview/quick-look.png\",\"type\":\"image/png\",\"title\":\"Preview Image\",\"description\":\"An averaged, decimated preview image in PNG format. Single polarization products are represented with a grey scale image. Dual polarization products are represented by a single composite colour image in RGB with the red channel (R) representing the co-polarization VV or HH), the green channel (G) represents the cross-polarization (VH or HV) and the blue channel (B) represents the ratio of the cross an co-polarizations.\",\"roles\":[\"thumbnail\"]},\"hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/EW/SH/S1C_EW_GRDM_1SSH_20250717T113814_20250717T113918_003259_00694E_E219/measurement/ew-hh.tiff\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"HH Data\",\"description\":\"Actual SAR data that have been processed into an image\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}],\"roles\":[\"data\"]}},\"bbox\":[117.3703207,-67.9395325,129.5260499,-62.6546431],\"stac_extensions\":[\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\"],\"collection\":\"sentinel-1-grd\"},{\"type\":\"Feature\",\"stac_version\":\"1.0.0\",\"id\":\"S1A_IW_GRDH_1SDH_20250717T113717_20250717T113742_060123_077867\",\"properties\":{\"sar:frequency_band\":\"C\",\"sar:center_frequency\":5.405,\"sar:observation_direction\":\"right\",\"sar:instrument_mode\":\"IW\",\"sar:polarizations\":[\"HH\",\"HV\"],\"sar:product_type\":\"GRD\",\"sar:resolution_range\":20,\"sar:resolution_azimuth\":22,\"sar:pixel_spacing_range\":10,\"sar:pixel_spacing_azimuth\":10,\"sar:looks_range\":5,\"sar:looks_azimuth\":1,\"sar:looks_equivalent_number\":4.4,\"sat:platform_international_designator\":\"2014-016A\",\"sat:orbit_state\":\"descending\",\"sat:absolute_orbit\":60123,\"sat:relative_orbit\":26,\"proj:epsg\":4326,\"proj:bbox\":[-74.237846,75.449715,-63.032154,77.57502],\"proj:shape\":[25422,16629],\"proj:transform\":[0.0006738644536652839,0,-74.237846,0,-0.00008360101486901099,77.57502],\"proj:centroid\":{\"lat\":76.50908,\"lon\":-68.8403},\"platform\":\"sentinel-1a\",\"constellation\":\"sentinel-1\",\"start_datetime\":\"2025-07-17T11:37:17.559336Z\",\"end_datetime\":\"2025-07-17T11:37:42.558053Z\",\"s1:instrument_configuration_ID\":\"7\",\"s1:datatake_id\":\"489575\",\"s1:product_timeliness\":\"NRT-3h\",\"s1:processing_level\":\"1\",\"s1:resolution\":\"high\",\"s1:orbit_source\":\"PREORB\",\"s1:slice_number\":\"6\",\"s1:total_slices\":\"11\",\"s1:shape\":[25422,16629],\"s1:product_identifier\":\"S1A_IW_GRDH_1SDH_20250717T113717_20250717T113742_060123_077867_4BEA\",\"s1:processing_datetime\":\"2025-07-17T12:30:35.000000Z\",\"storage:platform\":\"AWS\",\"storage:region\":\"eu-central-1\",\"storage:requester_pays\":true,\"datetime\":\"2025-07-17T11:37:30.058694Z\",\"processing:software\":{\"sentinel1-to-stac\":\"2025.05.13\"},\"created\":\"2025-07-17T12:47:45.319Z\",\"updated\":\"2025-07-17T12:47:45.319Z\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-72.6871131,77.5678465],[-73.4484322,76.8641807],[-73.9717467,76.3408662],[-74.1846204,76.1072964],[-71.8947499,75.9727721],[-69.6965333,75.8205082],[-67.4391851,75.6401569],[-65.3932324,75.4538924],[-64.9704416,75.7406806],[-64.3362553,76.1427754],[-63.7020691,76.5256524],[-63.1137099,76.8627024],[-65.2646212,77.0622715],[-67.7274516,77.258884],[-70.3218498,77.4348004],[-72.6871131,77.5678465]]]},\"links\":[{\"rel\":\"self\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items/S1A_IW_GRDH_1SDH_20250717T113717_20250717T113742_060123_077867\"},{\"rel\":\"canonical\",\"href\":\"s3://earthsearch-data/sentinel-1-grd/2025/7/17/IW/S1A_IW_GRDH_1SDH_20250717T113717_20250717T113742_060123_077867/S1A_IW_GRDH_1SDH_20250717T113717_20250717T113742_060123_077867.json\",\"type\":\"application/json\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"collection\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"thumbnail\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items/S1A_IW_GRDH_1SDH_20250717T113717_20250717T113742_060123_077867/thumbnail\"}],\"assets\":{\"safe-manifest\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113717_20250717T113742_060123_077867_4BEA/manifest.safe\",\"type\":\"application/xml\",\"title\":\"Manifest File\",\"description\":\"General product metadata in XML format. Contains a high-level textual description of the product and references to all of product's components, the product metadata, including the product identification and the resource references, and references to the physical location of each component file contained in the product.\",\"roles\":[\"metadata\"]},\"schema-product-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113717_20250717T113742_060123_077867_4BEA/annotation/rfi/rfi-iw-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\",\"roles\":[\"metadata\"]},\"schema-product-hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113717_20250717T113742_060123_077867_4BEA/annotation/rfi/rfi-iw-hv.xml\",\"type\":\"application/xml\",\"title\":\"HV Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\",\"roles\":[\"metadata\"]},\"schema-calibration-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113717_20250717T113742_060123_077867_4BEA/annotation/calibration/calibration-iw-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\",\"roles\":[\"metadata\"]},\"schema-calibration-hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113717_20250717T113742_060123_077867_4BEA/annotation/calibration/calibration-iw-hv.xml\",\"type\":\"application/xml\",\"title\":\"HV Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\",\"roles\":[\"metadata\"]},\"schema-noise-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113717_20250717T113742_060123_077867_4BEA/annotation/calibration/noise-iw-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\",\"roles\":[\"metadata\"]},\"schema-noise-hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113717_20250717T113742_060123_077867_4BEA/annotation/calibration/noise-iw-hv.xml\",\"type\":\"application/xml\",\"title\":\"HV Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113717_20250717T113742_060123_077867_4BEA/preview/quick-look.png\",\"type\":\"image/png\",\"title\":\"Preview Image\",\"description\":\"An averaged, decimated preview image in PNG format. Single polarization products are represented with a grey scale image. Dual polarization products are represented by a single composite colour image in RGB with the red channel (R) representing the co-polarization VV or HH), the green channel (G) represents the cross-polarization (VH or HV) and the blue channel (B) represents the ratio of the cross an co-polarizations.\",\"roles\":[\"thumbnail\"]},\"hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113717_20250717T113742_060123_077867_4BEA/measurement/iw-hh.tiff\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"HH Data\",\"description\":\"Actual SAR data that have been processed into an image\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}],\"roles\":[\"data\"]},\"hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113717_20250717T113742_060123_077867_4BEA/measurement/iw-hv.tiff\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"HV Data\",\"description\":\"Actual SAR data that have been processed into an image\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}],\"roles\":[\"data\"]}},\"bbox\":[-74.1846204,75.4538924,-63.1137099,77.5678465],\"stac_extensions\":[\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\"],\"collection\":\"sentinel-1-grd\"},{\"type\":\"Feature\",\"stac_version\":\"1.0.0\",\"id\":\"S1A_IW_GRDH_1SDH_20250717T113627_20250717T113652_060123_077867\",\"properties\":{\"sar:frequency_band\":\"C\",\"sar:center_frequency\":5.405,\"sar:observation_direction\":\"right\",\"sar:instrument_mode\":\"IW\",\"sar:polarizations\":[\"HH\",\"HV\"],\"sar:product_type\":\"GRD\",\"sar:resolution_range\":20,\"sar:resolution_azimuth\":22,\"sar:pixel_spacing_range\":10,\"sar:pixel_spacing_azimuth\":10,\"sar:looks_range\":5,\"sar:looks_azimuth\":1,\"sar:looks_equivalent_number\":4.4,\"sat:platform_international_designator\":\"2014-016A\",\"sat:orbit_state\":\"descending\",\"sat:absolute_orbit\":60123,\"sat:relative_orbit\":26,\"proj:epsg\":4326,\"proj:bbox\":[-71.03804,78.242622,-56.537846,80.474655],\"proj:shape\":[25435,16629],\"proj:transform\":[0.0008719823200432974,0,-71.03804,0,-0.00008775439355219191,80.474655],\"proj:centroid\":{\"lat\":79.34725,\"lon\":-64.08329},\"platform\":\"sentinel-1a\",\"constellation\":\"sentinel-1\",\"start_datetime\":\"2025-07-17T11:36:27.558897Z\",\"end_datetime\":\"2025-07-17T11:36:52.557614Z\",\"s1:instrument_configuration_ID\":\"7\",\"s1:datatake_id\":\"489575\",\"s1:product_timeliness\":\"NRT-3h\",\"s1:processing_level\":\"1\",\"s1:resolution\":\"high\",\"s1:orbit_source\":\"PREORB\",\"s1:slice_number\":\"4\",\"s1:total_slices\":\"11\",\"s1:shape\":[25435,16629],\"s1:product_identifier\":\"S1A_IW_GRDH_1SDH_20250717T113627_20250717T113652_060123_077867_4595\",\"s1:processing_datetime\":\"2025-07-17T12:31:54.000000Z\",\"storage:platform\":\"AWS\",\"storage:region\":\"eu-central-1\",\"storage:requester_pays\":true,\"datetime\":\"2025-07-17T11:36:40.058255Z\",\"processing:software\":{\"sentinel1-to-stac\":\"2025.05.13\"},\"created\":\"2025-07-17T12:47:54.934Z\",\"updated\":\"2025-07-17T12:47:54.934Z\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-68.5264138,80.4656603],[-69.1213542,80.1254228],[-69.82844,79.6996507],[-70.4195789,79.3213978],[-70.8510533,79.0267787],[-68.2888177,78.8823204],[-65.4395661,78.6903428],[-62.8526206,78.4869606],[-60.2732781,78.2550668],[-59.5547877,78.5534874],[-58.518869,78.950748],[-57.4582403,79.3309017],[-56.6694215,79.5932077],[-59.4312377,79.8536129],[-62.4021385,80.091209],[-65.4186577,80.2945912],[-68.5264138,80.4656603]]]},\"links\":[{\"rel\":\"self\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items/S1A_IW_GRDH_1SDH_20250717T113627_20250717T113652_060123_077867\"},{\"rel\":\"canonical\",\"href\":\"s3://earthsearch-data/sentinel-1-grd/2025/7/17/IW/S1A_IW_GRDH_1SDH_20250717T113627_20250717T113652_060123_077867/S1A_IW_GRDH_1SDH_20250717T113627_20250717T113652_060123_077867.json\",\"type\":\"application/json\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"collection\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"thumbnail\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items/S1A_IW_GRDH_1SDH_20250717T113627_20250717T113652_060123_077867/thumbnail\"}],\"assets\":{\"safe-manifest\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113627_20250717T113652_060123_077867_4595/manifest.safe\",\"type\":\"application/xml\",\"title\":\"Manifest File\",\"description\":\"General product metadata in XML format. Contains a high-level textual description of the product and references to all of product's components, the product metadata, including the product identification and the resource references, and references to the physical location of each component file contained in the product.\",\"roles\":[\"metadata\"]},\"schema-product-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113627_20250717T113652_060123_077867_4595/annotation/rfi/rfi-iw-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\",\"roles\":[\"metadata\"]},\"schema-product-hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113627_20250717T113652_060123_077867_4595/annotation/rfi/rfi-iw-hv.xml\",\"type\":\"application/xml\",\"title\":\"HV Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\",\"roles\":[\"metadata\"]},\"schema-calibration-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113627_20250717T113652_060123_077867_4595/annotation/calibration/calibration-iw-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\",\"roles\":[\"metadata\"]},\"schema-calibration-hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113627_20250717T113652_060123_077867_4595/annotation/calibration/calibration-iw-hv.xml\",\"type\":\"application/xml\",\"title\":\"HV Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\",\"roles\":[\"metadata\"]},\"schema-noise-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113627_20250717T113652_060123_077867_4595/annotation/calibration/noise-iw-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\",\"roles\":[\"metadata\"]},\"schema-noise-hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113627_20250717T113652_060123_077867_4595/annotation/calibration/noise-iw-hv.xml\",\"type\":\"application/xml\",\"title\":\"HV Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113627_20250717T113652_060123_077867_4595/preview/quick-look.png\",\"type\":\"image/png\",\"title\":\"Preview Image\",\"description\":\"An averaged, decimated preview image in PNG format. Single polarization products are represented with a grey scale image. Dual polarization products are represented by a single composite colour image in RGB with the red channel (R) representing the co-polarization VV or HH), the green channel (G) represents the cross-polarization (VH or HV) and the blue channel (B) represents the ratio of the cross an co-polarizations.\",\"roles\":[\"thumbnail\"]},\"hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113627_20250717T113652_060123_077867_4595/measurement/iw-hh.tiff\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"HH Data\",\"description\":\"Actual SAR data that have been processed into an image\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}],\"roles\":[\"data\"]},\"hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113627_20250717T113652_060123_077867_4595/measurement/iw-hv.tiff\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"HV Data\",\"description\":\"Actual SAR data that have been processed into an image\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}],\"roles\":[\"data\"]}},\"bbox\":[-70.8510533,78.2550668,-56.6694215,80.4656603],\"stac_extensions\":[\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\"],\"collection\":\"sentinel-1-grd\"},{\"type\":\"Feature\",\"stac_version\":\"1.0.0\",\"id\":\"S1A_IW_GRDH_1SDH_20250717T113537_20250717T113602_060123_077867\",\"properties\":{\"sar:frequency_band\":\"C\",\"sar:center_frequency\":5.405,\"sar:observation_direction\":\"right\",\"sar:instrument_mode\":\"IW\",\"sar:polarizations\":[\"HH\",\"HV\"],\"sar:product_type\":\"GRD\",\"sar:resolution_range\":20,\"sar:resolution_azimuth\":22,\"sar:pixel_spacing_range\":10,\"sar:pixel_spacing_azimuth\":10,\"sar:looks_range\":5,\"sar:looks_azimuth\":1,\"sar:looks_equivalent_number\":4.4,\"sat:platform_international_designator\":\"2014-016A\",\"sat:orbit_state\":\"descending\",\"sat:absolute_orbit\":60123,\"sat:relative_orbit\":26,\"proj:epsg\":4326,\"proj:bbox\":[-65.588013,80.88221,-45.832287,83.290779],\"proj:shape\":[25441,16629],\"proj:transform\":[0.0011880285044199893,0,-65.588013,0,-0.00009467273299005542,83.290779],\"proj:centroid\":{\"lat\":82.05936,\"lon\":-56.1117},\"platform\":\"sentinel-1a\",\"constellation\":\"sentinel-1\",\"start_datetime\":\"2025-07-17T11:35:37.558458Z\",\"end_datetime\":\"2025-07-17T11:36:02.557174Z\",\"s1:instrument_configuration_ID\":\"7\",\"s1:datatake_id\":\"489575\",\"s1:product_timeliness\":\"NRT-3h\",\"s1:processing_level\":\"1\",\"s1:resolution\":\"high\",\"s1:orbit_source\":\"PREORB\",\"s1:slice_number\":\"2\",\"s1:total_slices\":\"11\",\"s1:shape\":[25441,16629],\"s1:product_identifier\":\"S1A_IW_GRDH_1SDH_20250717T113537_20250717T113602_060123_077867_628C\",\"s1:processing_datetime\":\"2025-07-17T12:31:55.000000Z\",\"storage:platform\":\"AWS\",\"storage:region\":\"eu-central-1\",\"storage:requester_pays\":true,\"datetime\":\"2025-07-17T11:35:50.057816Z\",\"processing:software\":{\"sentinel1-to-stac\":\"2025.05.13\"},\"created\":\"2025-07-17T12:48:48.664Z\",\"updated\":\"2025-07-17T12:48:48.664Z\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-61.1555181,83.2877309],[-62.1969308,82.9927945],[-63.4367078,82.6117262],[-64.9557609,82.0844947],[-65.4412315,81.8965706],[-62.2152012,81.7164767],[-58.5298009,81.4659112],[-55.3011606,81.2049056],[-52.0229292,80.8969189],[-50.7231209,81.1996854],[-49.2040678,81.5207224],[-47.5023107,81.8495896],[-45.9963079,82.1132053],[-47.5231912,82.2776389],[-49.4729036,82.4681731],[-51.2842831,82.6299966],[-53.2731464,82.7918201],[-55.1497773,82.9301531],[-57.1908418,83.0658761],[-61.1555181,83.2877309]]]},\"links\":[{\"rel\":\"self\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items/S1A_IW_GRDH_1SDH_20250717T113537_20250717T113602_060123_077867\"},{\"rel\":\"canonical\",\"href\":\"s3://earthsearch-data/sentinel-1-grd/2025/7/17/IW/S1A_IW_GRDH_1SDH_20250717T113537_20250717T113602_060123_077867/S1A_IW_GRDH_1SDH_20250717T113537_20250717T113602_060123_077867.json\",\"type\":\"application/json\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"collection\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"thumbnail\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items/S1A_IW_GRDH_1SDH_20250717T113537_20250717T113602_060123_077867/thumbnail\"}],\"assets\":{\"safe-manifest\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113537_20250717T113602_060123_077867_628C/manifest.safe\",\"type\":\"application/xml\",\"title\":\"Manifest File\",\"description\":\"General product metadata in XML format. Contains a high-level textual description of the product and references to all of product's components, the product metadata, including the product identification and the resource references, and references to the physical location of each component file contained in the product.\",\"roles\":[\"metadata\"]},\"schema-product-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113537_20250717T113602_060123_077867_628C/annotation/rfi/rfi-iw-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\",\"roles\":[\"metadata\"]},\"schema-product-hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113537_20250717T113602_060123_077867_628C/annotation/rfi/rfi-iw-hv.xml\",\"type\":\"application/xml\",\"title\":\"HV Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\",\"roles\":[\"metadata\"]},\"schema-calibration-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113537_20250717T113602_060123_077867_628C/annotation/calibration/calibration-iw-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\",\"roles\":[\"metadata\"]},\"schema-calibration-hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113537_20250717T113602_060123_077867_628C/annotation/calibration/calibration-iw-hv.xml\",\"type\":\"application/xml\",\"title\":\"HV Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\",\"roles\":[\"metadata\"]},\"schema-noise-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113537_20250717T113602_060123_077867_628C/annotation/calibration/noise-iw-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\",\"roles\":[\"metadata\"]},\"schema-noise-hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113537_20250717T113602_060123_077867_628C/annotation/calibration/noise-iw-hv.xml\",\"type\":\"application/xml\",\"title\":\"HV Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113537_20250717T113602_060123_077867_628C/preview/quick-look.png\",\"type\":\"image/png\",\"title\":\"Preview Image\",\"description\":\"An averaged, decimated preview image in PNG format. Single polarization products are represented with a grey scale image. Dual polarization products are represented by a single composite colour image in RGB with the red channel (R) representing the co-polarization VV or HH), the green channel (G) represents the cross-polarization (VH or HV) and the blue channel (B) represents the ratio of the cross an co-polarizations.\",\"roles\":[\"thumbnail\"]},\"hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113537_20250717T113602_060123_077867_628C/measurement/iw-hh.tiff\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"HH Data\",\"description\":\"Actual SAR data that have been processed into an image\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}],\"roles\":[\"data\"]},\"hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113537_20250717T113602_060123_077867_628C/measurement/iw-hv.tiff\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"HV Data\",\"description\":\"Actual SAR data that have been processed into an image\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}],\"roles\":[\"data\"]}},\"bbox\":[-65.4412315,80.8969189,-45.9963079,83.2877309],\"stac_extensions\":[\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\"],\"collection\":\"sentinel-1-grd\"},{\"type\":\"Feature\",\"stac_version\":\"1.0.0\",\"id\":\"S1A_IW_GRDH_1SDH_20250717T113508_20250717T113537_060123_077867\",\"properties\":{\"sar:frequency_band\":\"C\",\"sar:center_frequency\":5.405,\"sar:observation_direction\":\"right\",\"sar:instrument_mode\":\"IW\",\"sar:polarizations\":[\"HH\",\"HV\"],\"sar:product_type\":\"GRD\",\"sar:resolution_range\":20,\"sar:resolution_azimuth\":22,\"sar:pixel_spacing_range\":10,\"sar:pixel_spacing_azimuth\":10,\"sar:looks_range\":5,\"sar:looks_azimuth\":1,\"sar:looks_equivalent_number\":4.4,\"sat:platform_international_designator\":\"2014-016A\",\"sat:orbit_state\":\"descending\",\"sat:absolute_orbit\":60123,\"sat:relative_orbit\":26,\"proj:epsg\":4326,\"proj:bbox\":[-61.205822,82.100655,-36.265442,84.845428],\"proj:shape\":[25444,19320],\"proj:transform\":[0.0012909099378881986,0,-61.205822,0,-0.00010787505895299462,84.845428],\"proj:centroid\":{\"lat\":83.42842,\"lon\":-49.17373},\"platform\":\"sentinel-1a\",\"constellation\":\"sentinel-1\",\"start_datetime\":\"2025-07-17T11:35:08.512559Z\",\"end_datetime\":\"2025-07-17T11:35:37.556954Z\",\"s1:instrument_configuration_ID\":\"7\",\"s1:datatake_id\":\"489575\",\"s1:product_timeliness\":\"NRT-3h\",\"s1:processing_level\":\"1\",\"s1:resolution\":\"high\",\"s1:orbit_source\":\"PREORB\",\"s1:slice_number\":\"1\",\"s1:total_slices\":\"11\",\"s1:shape\":[25444,19320],\"s1:product_identifier\":\"S1A_IW_GRDH_1SDH_20250717T113508_20250717T113537_060123_077867_6DD4\",\"s1:processing_datetime\":\"2025-07-17T12:32:11.000000Z\",\"storage:platform\":\"AWS\",\"storage:region\":\"eu-central-1\",\"storage:requester_pays\":true,\"datetime\":\"2025-07-17T11:35:23.034757Z\",\"processing:software\":{\"sentinel1-to-stac\":\"2025.05.13\"},\"created\":\"2025-07-17T12:49:32.195Z\",\"updated\":\"2025-07-17T12:49:32.195Z\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[-54.120925,84.7337536],[-55.7464924,84.4622996],[-57.501474,84.1277168],[-58.5115353,83.9162352],[-59.6257592,83.6637199],[-61.1061303,83.2912598],[-59.2753942,83.1934101],[-57.094293,83.0608395],[-53.2939372,82.792542],[-49.5251459,82.4737414],[-45.9583669,82.1170635],[-45.1345356,82.2591034],[-43.7614835,82.4768978],[-41.3878394,82.8177935],[-38.5217903,83.1776279],[-36.4764162,83.4017352],[-38.61964,83.6605634],[-41.2678946,83.9414868],[-41.7003271,83.8941401],[-44.3643638,84.143499],[-47.6186552,84.4023272],[-48.003741,84.3549806],[-51.0149864,84.5601493],[-54.120925,84.7337536]]]},\"links\":[{\"rel\":\"self\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items/S1A_IW_GRDH_1SDH_20250717T113508_20250717T113537_060123_077867\"},{\"rel\":\"canonical\",\"href\":\"s3://earthsearch-data/sentinel-1-grd/2025/7/17/IW/S1A_IW_GRDH_1SDH_20250717T113508_20250717T113537_060123_077867/S1A_IW_GRDH_1SDH_20250717T113508_20250717T113537_060123_077867.json\",\"type\":\"application/json\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"collection\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"thumbnail\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items/S1A_IW_GRDH_1SDH_20250717T113508_20250717T113537_060123_077867/thumbnail\"}],\"assets\":{\"safe-manifest\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113508_20250717T113537_060123_077867_6DD4/manifest.safe\",\"type\":\"application/xml\",\"title\":\"Manifest File\",\"description\":\"General product metadata in XML format. Contains a high-level textual description of the product and references to all of product's components, the product metadata, including the product identification and the resource references, and references to the physical location of each component file contained in the product.\",\"roles\":[\"metadata\"]},\"schema-product-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113508_20250717T113537_060123_077867_6DD4/annotation/rfi/rfi-iw-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\",\"roles\":[\"metadata\"]},\"schema-product-hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113508_20250717T113537_060123_077867_6DD4/annotation/rfi/rfi-iw-hv.xml\",\"type\":\"application/xml\",\"title\":\"HV Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\",\"roles\":[\"metadata\"]},\"schema-calibration-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113508_20250717T113537_060123_077867_6DD4/annotation/calibration/calibration-iw-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\",\"roles\":[\"metadata\"]},\"schema-calibration-hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113508_20250717T113537_060123_077867_6DD4/annotation/calibration/calibration-iw-hv.xml\",\"type\":\"application/xml\",\"title\":\"HV Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\",\"roles\":[\"metadata\"]},\"schema-noise-hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113508_20250717T113537_060123_077867_6DD4/annotation/calibration/noise-iw-hh.xml\",\"type\":\"application/xml\",\"title\":\"HH Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\",\"roles\":[\"metadata\"]},\"schema-noise-hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113508_20250717T113537_060123_077867_6DD4/annotation/calibration/noise-iw-hv.xml\",\"type\":\"application/xml\",\"title\":\"HV Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113508_20250717T113537_060123_077867_6DD4/preview/quick-look.png\",\"type\":\"image/png\",\"title\":\"Preview Image\",\"description\":\"An averaged, decimated preview image in PNG format. Single polarization products are represented with a grey scale image. Dual polarization products are represented by a single composite colour image in RGB with the red channel (R) representing the co-polarization VV or HH), the green channel (G) represents the cross-polarization (VH or HV) and the blue channel (B) represents the ratio of the cross an co-polarizations.\",\"roles\":[\"thumbnail\"]},\"hh\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113508_20250717T113537_060123_077867_6DD4/measurement/iw-hh.tiff\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"HH Data\",\"description\":\"Actual SAR data that have been processed into an image\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}],\"roles\":[\"data\"]},\"hv\":{\"href\":\"s3://sentinel-s1-l1c/GRD/2025/7/17/IW/DH/S1A_IW_GRDH_1SDH_20250717T113508_20250717T113537_060123_077867_6DD4/measurement/iw-hv.tiff\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"HV Data\",\"description\":\"Actual SAR data that have been processed into an image\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}],\"roles\":[\"data\"]}},\"bbox\":[-61.1061303,82.1170635,-36.4764162,84.7337536],\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\"],\"collection\":\"sentinel-1-grd\"},{\"type\":\"Feature\",\"stac_version\":\"1.0.0\",\"id\":\"S2B_T32VKL_20250717T112116_L2A\",\"properties\":{\"created\":\"2025-07-17T12:43:02.279Z\",\"platform\":\"sentinel-2b\",\"constellation\":\"sentinel-2\",\"instruments\":[\"msi\"],\"eo:cloud_cover\":99.996191,\"proj:epsg\":32632,\"proj:centroid\":{\"lat\":59.3941,\"lon\":3.75054},\"mgrs:utm_zone\":32,\"mgrs:latitude_band\":\"V\",\"mgrs:grid_square\":\"KL\",\"grid:code\":\"MGRS-32VKL\",\"view:azimuth\":297.9578145890109,\"view:incidence_angle\":11.617152483068454,\"view:sun_azimuth\":171.450264156544,\"view:sun_elevation\":51.9101661210558,\"s2:tile_id\":\"S2B_OPER_MSI_L2A_TL_2BPS_20250717T121711_A043678_T32VKL_N05.11\",\"s2:degraded_msi_data_percentage\":0,\"s2:nodata_pixel_percentage\":99.651462,\"s2:saturated_defective_pixel_percentage\":0,\"s2:cloud_shadow_percentage\":0,\"s2:vegetation_percentage\":0,\"s2:not_vegetated_percentage\":0,\"s2:water_percentage\":0.003808,\"s2:unclassified_percentage\":0,\"s2:medium_proba_clouds_percentage\":2.056164,\"s2:high_proba_clouds_percentage\":97.940028,\"s2:thin_cirrus_percentage\":0,\"s2:snow_ice_percentage\":0,\"s2:product_type\":\"S2MSI2A\",\"s2:processing_baseline\":\"05.11\",\"s2:product_uri\":\"S2B_MSIL2A_20250717T112119_N0511_R037_T32VKL_20250717T121711.SAFE\",\"s2:generation_time\":\"2025-07-17T12:17:11.000000Z\",\"s2:datatake_id\":\"GS2B_20250717T112119_043678_N05.11\",\"s2:datatake_type\":\"INS-NOBS\",\"s2:datastrip_id\":\"S2B_OPER_MSI_L2A_DS_2BPS_20250717T121711_S20250717T112116_N05.11\",\"s2:reflectance_conversion_factor\":0.967718180845495,\"datetime\":\"2025-07-17T11:24:34.857000Z\",\"earthsearch:payload_id\":\"roda-sentinel-2-c1-l2a/workflow-sentinel-2-c1-l2a-to-stac/e80701e63d6556f6b2b970fb78011c64\",\"storage:platform\":\"AWS\",\"storage:region\":\"us-west-2\",\"storage:requester_pays\":false,\"processing:software\":{\"sentinel-2-c1-l2a-to-stac\":\"v2025.06.17\"},\"updated\":\"2025-07-17T12:43:02.279Z\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[3.7080564855974103,59.43109732998165],[3.7260482578760445,59.31570302641626],[3.817529817454556,59.43549885945435],[3.7080564855974103,59.43109732998165]]]},\"links\":[{\"rel\":\"self\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items/S2B_T32VKL_20250717T112116_L2A\"},{\"rel\":\"canonical\",\"href\":\"s3://e84-earth-search-sentinel-data/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/S2B_T32VKL_20250717T112116_L2A.json\",\"type\":\"application/json\"},{\"rel\":\"via\",\"href\":\"s3://sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/metadata.xml\",\"type\":\"application/xml\",\"title\":\"Granule Metadata in Sinergize RODA Archive\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a\"},{\"rel\":\"collection\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"thumbnail\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items/S2B_T32VKL_20250717T112116_L2A/thumbnail\"}],\"assets\":{\"red\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/B04.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,199980,0,-10,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"122002b1367ad9be4d8dcf2b575ef0c853a0d9950c04a34d83328b2843c66edf4465\",\"file:size\":1077354,\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/B03.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,199980,0,-10,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12209925d9338376b514a153dd6cca79b199643f634254a7e8cec67a24b07fb0b7f7\",\"file:size\":1075469,\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/B02.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,199980,0,-10,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220b9904a22992f96d2035dbdbd81325611d542255f89726f9513e0eb540878e8f0\",\"file:size\":1075710,\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/TCI.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,199980,0,-10,6600000],\"file:checksum\":\"1220bfb265764387bca726ef8d1e26ab4ac67c4698db1e17ee41f3c7bf4fd05c04c3\",\"file:size\":560293,\"roles\":[\"visual\"]},\"nir\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/B08.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,199980,0,-10,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12204a17885e9e1abd12e86372f4d77e60166137198f82c25de3f5dfbf98d1deb5f5\",\"file:size\":1079059,\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/B12.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12205c968342b22ada9e9bae0510b56191d7a5bb6c26431445040fabbcf52e4b55f5\",\"file:size\":314843,\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/B06.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12200b2d4aba2f1567e8f6ceb5361bf6fe7a016ea4c0ecfd423de2ea2014b649f128\",\"file:size\":318437,\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/B07.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220ae75ce4b8f87fd15009cdffdf272a75c9c5d31761e8bea160d5b781bd540ea08\",\"file:size\":319274,\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/B05.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"122093a9711d2484c1156016fac3e1cfde0ef06aa5ec4b2e82cf1aacad89be6c2308\",\"file:size\":318065,\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/B11.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220302230d62926ecf9c159115ddbbd956778e5a65e0860f483ffa19e69d50c8103\",\"file:size\":316489,\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/WVP.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"file:checksum\":\"122048af7f1f510e020d2144dbce2bb9ad7d9161eebb1771cf518f37f4d9f8c46042\",\"file:size\":95845,\"roles\":[\"data\"]},\"nir08\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/B8A.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220230997408408afa1db304bebfb115c58494887b16168e6bca8b1bb62f38edef9\",\"file:size\":319687,\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/SCL.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"file:checksum\":\"12207f3b1c9c24d65d9d3a9368fcc50d75a762bd836d8f5c2eedb688f885e083873b\",\"file:size\":58560,\"roles\":[\"data\"]},\"aot\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/AOT.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"file:checksum\":\"1220ace2664f3fa4c981021c48f36dd3f1d297553a33c6a6d397d87ae74fd77ec99d\",\"file:size\":100877,\"roles\":[\"data\"]},\"coastal\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/B01.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,199980,0,-60,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12204087a723a7c4eced2eaf79c607a11bd58e018815d9cda95e6531a6f824f7418f\",\"file:size\":45407,\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/B09.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,199980,0,-60,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220b3cfae1187be2d8319bf6e226a85182554087b71610fb296a89423efc5ffef70\",\"file:size\":42335,\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/CLD_20m.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"file:checksum\":\"1220591b77848109046a3119a49d37ce7d95d2a4310638004ca54aa1c4a8e24abfc0\",\"file:size\":63791,\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/SNW_20m.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"file:checksum\":\"122043381e6e75b945814ae6deb962e6a0af1037ffa485bffa985884af7c6ce06ebc\",\"file:size\":53931,\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/L2A_PVI.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"gsd\":320,\"proj:shape\":[343,343],\"proj:transform\":[320,0,199980,0,-320,6600000],\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"file:checksum\":\"1220ab650771508713c44d17b9988223827cc93d4424f762dedf6d29d3c283f563c3\",\"file:size\":4867,\"roles\":[\"overview\"]},\"granule_metadata\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/metadata.xml\",\"type\":\"application/xml\",\"file:checksum\":\"12202ec80018e53fbdf23bdae125340f6c1be7e4e27ffb9c337b57701fdfddb2ae51\",\"file:size\":100219,\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/tileInfo.json\",\"type\":\"application/json\",\"file:checksum\":\"12206067b6be8e6b31f65eff69ac6e488a8fa78e5e1e77fd41c4349674126ab1e6cf\",\"file:size\":1482,\"roles\":[\"metadata\"]},\"product_metadata\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/product_metadata.xml\",\"type\":\"application/xml\",\"file:checksum\":\"12204b85c3c475fe3347b6807104ac3521e61bc50abf2ac7a804480ccbe8b28c57fe\",\"file:size\":54604,\"roles\":[\"metadata\"]},\"thumbnail\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/V/KL/2025/7/S2B_T32VKL_20250717T112116_L2A/L2A_PVI.jpg\",\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"file:checksum\":\"122008c8833e024a79984f2d5a23255256faff2f14fb5fa3e2f79117e23c21e82f2c\",\"file:size\":2744,\"roles\":[\"thumbnail\"]}},\"bbox\":[3.708056,59.315703,3.81753,59.435499],\"stac_extensions\":[\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\",\"https://stac-extensions.github.io/grid/v1.1.0/schema.json\",\"https://stac-extensions.github.io/mgrs/v1.0.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/sentinel-2/v1.0.0/schema.json\",\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\"],\"collection\":\"sentinel-2-c1-l2a\"},{\"type\":\"Feature\",\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sentinel-2/v1.0.0/schema.json\",\"https://stac-extensions.github.io/mgrs/v1.0.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/grid/v1.1.0/schema.json\"],\"id\":\"S2B_32VKL_20250717_0_L2A\",\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[3.7080564855974103,59.43109732998165],[3.7260482578760445,59.31570302641626],[3.817529817454556,59.43549885945435],[3.7080564855974103,59.43109732998165]]]},\"bbox\":[3.708056,59.315703,3.81753,59.435499],\"properties\":{\"created\":\"2025-07-17T12:44:21.489Z\",\"platform\":\"sentinel-2b\",\"constellation\":\"sentinel-2\",\"instruments\":[\"msi\"],\"eo:cloud_cover\":99.996191,\"proj:epsg\":32632,\"proj:centroid\":{\"lat\":59.3941,\"lon\":3.75054},\"mgrs:utm_zone\":32,\"mgrs:latitude_band\":\"V\",\"mgrs:grid_square\":\"KL\",\"grid:code\":\"MGRS-32VKL\",\"view:azimuth\":297.9578145890109,\"view:incidence_angle\":11.617152483068454,\"view:sun_azimuth\":171.450264156544,\"view:sun_elevation\":51.9101661210558,\"s2:tile_id\":\"S2B_OPER_MSI_L2A_TL_2BPS_20250717T121711_A043678_T32VKL_N05.11\",\"s2:degraded_msi_data_percentage\":0,\"s2:nodata_pixel_percentage\":99.651462,\"s2:saturated_defective_pixel_percentage\":0,\"s2:cloud_shadow_percentage\":0,\"s2:vegetation_percentage\":0,\"s2:not_vegetated_percentage\":0,\"s2:water_percentage\":0.003808,\"s2:unclassified_percentage\":0,\"s2:medium_proba_clouds_percentage\":2.056164,\"s2:high_proba_clouds_percentage\":97.940028,\"s2:thin_cirrus_percentage\":0,\"s2:snow_ice_percentage\":0,\"s2:product_type\":\"S2MSI2A\",\"s2:processing_baseline\":\"05.11\",\"s2:product_uri\":\"S2B_MSIL2A_20250717T112119_N0511_R037_T32VKL_20250717T121711.SAFE\",\"s2:generation_time\":\"2025-07-17T12:17:11.000000Z\",\"s2:datatake_id\":\"GS2B_20250717T112119_043678_N05.11\",\"s2:datatake_type\":\"INS-NOBS\",\"s2:datastrip_id\":\"S2B_OPER_MSI_L2A_DS_2BPS_20250717T121711_S20250717T112116_N05.11\",\"s2:reflectance_conversion_factor\":0.967718180845495,\"datetime\":\"2025-07-17T11:24:34.857000Z\",\"s2:sequence\":\"0\",\"earthsearch:s3_path\":\"s3://sentinel-cogs/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A\",\"earthsearch:payload_id\":\"roda-sentinel2/workflow-sentinel2-to-stac/f41bae555f12fd9447647e1236aa493e\",\"earthsearch:boa_offset_applied\":true,\"processing:software\":{\"sentinel2-to-stac\":\"2025.03.06\"},\"updated\":\"2025-07-17T12:44:21.489Z\"},\"links\":[{\"rel\":\"self\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items/S2B_32VKL_20250717_0_L2A\"},{\"rel\":\"canonical\",\"href\":\"s3://sentinel-cogs/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/S2B_32VKL_20250717_0_L2A.json\",\"type\":\"application/json\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\"},{\"rel\":\"derived_from\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items/S2B_32VKL_20250717_0_L1C\",\"type\":\"application/geo+json\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a\"},{\"rel\":\"collection\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"thumbnail\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items/S2B_32VKL_20250717_0_L2A/thumbnail\"}],\"assets\":{\"aot\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/AOT.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"blue\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B02.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,199980,0,-10,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/qi/CLD_20m.jp2\",\"type\":\"image/jp2\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"coastal\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B01.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,199980,0,-60,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/granule_metadata.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B03.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,199980,0,-10,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B08.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,199980,0,-10,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B8A.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B09.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,199980,0,-60,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"product_metadata\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/product_metadata.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"red\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B04.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,199980,0,-10,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B05.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B06.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B07.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/SCL.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"snow\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/qi/SNW_20m.jp2\",\"type\":\"image/jp2\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"swir16\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B11.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B12.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"tileinfo_metadata\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/tileinfo_metadata.json\",\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/TCI.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,199980,0,-10,6600000],\"roles\":[\"visual\"]},\"wvp\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/WVP.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"thumbnail\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/preview.jpg\",\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]},\"aot-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/R20m/AOT.jp2\",\"type\":\"image/jp2\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"blue-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/R10m/B02.jp2\",\"type\":\"image/jp2\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,199980,0,-10,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"coastal-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/R60m/B01.jp2\",\"type\":\"image/jp2\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,199980,0,-60,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/R10m/B03.jp2\",\"type\":\"image/jp2\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,199980,0,-10,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/R10m/B08.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,199980,0,-10,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir08-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/R20m/B8A.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/R60m/B09.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,199980,0,-60,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"red-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/R10m/B04.jp2\",\"type\":\"image/jp2\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,199980,0,-10,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/R20m/B05.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/R20m/B06.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/R20m/B07.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/R20m/SCL.jp2\",\"type\":\"image/jp2\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"swir16-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/R20m/B11.jp2\",\"type\":\"image/jp2\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/R20m/B12.jp2\",\"type\":\"image/jp2\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/R10m/TCI.jp2\",\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,199980,0,-10,6600000],\"roles\":[\"visual\"]},\"wvp-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/R20m/WVP.jp2\",\"type\":\"image/jp2\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]}},\"collection\":\"sentinel-2-l2a\"}],\"links\":[{\"rel\":\"next\",\"title\":\"Next page of Items\",\"method\":\"POST\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/search\",\"merge\":false,\"body\":{\"next\":\"2025-07-17T11:24:34.857000Z,S2B_32VKL_20250717_0_L2A,sentinel-2-l2a\"}},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"}]}" headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '9878' Content-Type: - application/geo+json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:49:49 GMT Via: - 1.1 e466a87164c3f9591e3c8ac45a4b2074.cloudfront.net (CloudFront) X-Amz-Cf-Id: - 3jIf6kvQ0LHco9ZqX1JTFX7F6IoTUKPCxbU9ItV8ijejPKzj8BHZKA== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f16d-6a390a727c18beae4bff07c6;Parent=2cd55e543c2df6e2;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"18273-uKZAVhLKTjgpOamN5FLxTXRjIm0" x-amz-apigw-id: - N2qpKGQdPHcEnlw= x-amzn-Remapped-content-length: - '98931' x-amzn-RequestId: - 0375d3c0-cb74-4f5d-92e1-90cb2539c583 x-powered-by: - Express status: code: 200 message: OK - request: body: '{"next": "2025-07-17T11:24:34.857000Z,S2B_32VKL_20250717_0_L2A,sentinel-2-l2a"}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '79' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://earth-search.aws.element84.com/v1/search response: body: string: "{\"type\":\"FeatureCollection\",\"stac_version\":\"1.0.0\",\"stac_extensions\":[],\"context\":{\"limit\":10,\"matched\":115240405,\"returned\":10},\"numberMatched\":115240405,\"numberReturned\":10,\"features\":[{\"type\":\"Feature\",\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sentinel-2/v1.0.0/schema.json\",\"https://stac-extensions.github.io/mgrs/v1.0.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/grid/v1.1.0/schema.json\"],\"id\":\"S2B_32VKL_20250717_0_L1C\",\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[3.7080564855974103,59.43109732998165],[3.7260482578760445,59.31570302641626],[3.817529817454556,59.43549885945435],[3.7080564855974103,59.43109732998165]]]},\"bbox\":[3.708056,59.315703,3.81753,59.435499],\"properties\":{\"created\":\"2025-07-17T12:44:21.183Z\",\"platform\":\"sentinel-2b\",\"constellation\":\"sentinel-2\",\"instruments\":[\"msi\"],\"eo:cloud_cover\":98.5441075120606,\"proj:epsg\":32632,\"proj:centroid\":{\"lat\":59.3941,\"lon\":3.75054},\"mgrs:utm_zone\":32,\"mgrs:latitude_band\":\"V\",\"mgrs:grid_square\":\"KL\",\"grid:code\":\"MGRS-32VKL\",\"view:azimuth\":297.9578145890109,\"view:incidence_angle\":11.617152483068454,\"view:sun_azimuth\":171.450264156544,\"view:sun_elevation\":51.9101661210558,\"s2:tile_id\":\"S2B_OPER_MSI_L1C_TL_2BPS_20250717T120258_A043678_T32VKL_N05.11\",\"s2:degraded_msi_data_percentage\":0,\"s2:product_type\":\"S2MSI1C\",\"s2:processing_baseline\":\"05.11\",\"s2:product_uri\":\"S2B_MSIL1C_20250717T112119_N0511_R037_T32VKL_20250717T120258.SAFE\",\"s2:generation_time\":\"2025-07-17T12:02:58.000000Z\",\"s2:datatake_id\":\"GS2B_20250717T112119_043678_N05.11\",\"s2:datatake_type\":\"INS-NOBS\",\"s2:datastrip_id\":\"S2B_OPER_MSI_L1C_DS_2BPS_20250717T120258_S20250717T112116_N05.11\",\"s2:reflectance_conversion_factor\":0.967718180845495,\"datetime\":\"2025-07-17T11:24:34.857000Z\",\"s2:sequence\":\"0\",\"earthsearch:s3_path\":\"s3://earthsearch-data/sentinel-2-l1c/32/V/KL/2025/7/S2B_32VKL_20250717_0_L1C\",\"earthsearch:payload_id\":\"roda-sentinel2/workflow-sentinel2-to-stac/f41bae555f12fd9447647e1236aa493e\",\"processing:software\":{\"sentinel2-to-stac\":\"2025.03.06\"},\"updated\":\"2025-07-17T12:44:21.183Z\"},\"links\":[{\"rel\":\"self\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items/S2B_32VKL_20250717_0_L1C\"},{\"rel\":\"canonical\",\"href\":\"s3://earthsearch-data/sentinel-2-l1c/32/V/KL/2025/7/S2B_32VKL_20250717_0_L1C/S2B_32VKL_20250717_0_L1C.json\",\"type\":\"application/json\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c\"},{\"rel\":\"collection\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"thumbnail\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items/S2B_32VKL_20250717_0_L1C/thumbnail\"}],\"assets\":{\"blue\":{\"href\":\"s3://sentinel-s2-l1c/tiles/32/V/KL/2025/7/17/0/B02.jp2\",\"type\":\"image/jp2\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,199980,0,-10,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cirrus\":{\"href\":\"s3://sentinel-s2-l1c/tiles/32/V/KL/2025/7/17/0/B10.jp2\",\"type\":\"image/jp2\",\"title\":\"Cirrus - 60m\",\"eo:bands\":[{\"name\":\"B10\",\"common_name\":\"cirrus\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,199980,0,-60,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"href\":\"s3://sentinel-s2-l1c/tiles/32/V/KL/2025/7/17/0/B01.jp2\",\"type\":\"image/jp2\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,199980,0,-60,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"href\":\"s3://sentinel-s2-l1c/tiles/32/V/KL/2025/7/17/0/metadata.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"href\":\"s3://sentinel-s2-l1c/tiles/32/V/KL/2025/7/17/0/B03.jp2\",\"type\":\"image/jp2\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,199980,0,-10,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"href\":\"s3://sentinel-s2-l1c/tiles/32/V/KL/2025/7/17/0/B08.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,199980,0,-10,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"href\":\"s3://sentinel-s2-l1c/tiles/32/V/KL/2025/7/17/0/B8A.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"href\":\"s3://sentinel-s2-l1c/tiles/32/V/KL/2025/7/17/0/B09.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,199980,0,-60,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"product_metadata\":{\"href\":\"s3://sentinel-s2-l1c/tiles/32/V/KL/2025/7/17/0/product_metadata.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"red\":{\"href\":\"s3://sentinel-s2-l1c/tiles/32/V/KL/2025/7/17/0/B04.jp2\",\"type\":\"image/jp2\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,199980,0,-10,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"href\":\"s3://sentinel-s2-l1c/tiles/32/V/KL/2025/7/17/0/B05.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"href\":\"s3://sentinel-s2-l1c/tiles/32/V/KL/2025/7/17/0/B06.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"href\":\"s3://sentinel-s2-l1c/tiles/32/V/KL/2025/7/17/0/B07.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"href\":\"s3://sentinel-s2-l1c/tiles/32/V/KL/2025/7/17/0/B11.jp2\",\"type\":\"image/jp2\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"href\":\"s3://sentinel-s2-l1c/tiles/32/V/KL/2025/7/17/0/B12.jp2\",\"type\":\"image/jp2\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,199980,0,-20,6600000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"tileinfo_metadata\":{\"href\":\"s3://sentinel-s2-l1c/tiles/32/V/KL/2025/7/17/0/tileInfo.json\",\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"href\":\"s3://sentinel-s2-l1c/tiles/32/V/KL/2025/7/17/0/TCI.jp2\",\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,199980,0,-10,6600000],\"roles\":[\"visual\"]}},\"collection\":\"sentinel-2-l1c\"},{\"type\":\"Feature\",\"stac_version\":\"1.0.0\",\"id\":\"S2B_T30VXR_20250717T112116_L2A\",\"properties\":{\"created\":\"2025-07-17T12:46:35.966Z\",\"platform\":\"sentinel-2b\",\"constellation\":\"sentinel-2\",\"instruments\":[\"msi\"],\"eo:cloud_cover\":0,\"proj:epsg\":32630,\"proj:centroid\":{\"lat\":63.28825,\"lon\":1.00754},\"mgrs:utm_zone\":30,\"mgrs:latitude_band\":\"V\",\"mgrs:grid_square\":\"XR\",\"grid:code\":\"MGRS-30VXR\",\"view:azimuth\":114.40990189285054,\"view:incidence_angle\":11.128377172304747,\"view:sun_azimuth\":165.537767793256,\"view:sun_elevation\":47.0107276346185,\"s2:tile_id\":\"S2B_OPER_MSI_L2A_TL_2BPS_20250717T121711_A043678_T30VXR_N05.11\",\"s2:degraded_msi_data_percentage\":0,\"s2:nodata_pixel_percentage\":88.571393,\"s2:saturated_defective_pixel_percentage\":0,\"s2:cloud_shadow_percentage\":0,\"s2:vegetation_percentage\":0,\"s2:not_vegetated_percentage\":0,\"s2:water_percentage\":100,\"s2:unclassified_percentage\":0,\"s2:medium_proba_clouds_percentage\":0,\"s2:high_proba_clouds_percentage\":0,\"s2:thin_cirrus_percentage\":0,\"s2:snow_ice_percentage\":0,\"s2:product_type\":\"S2MSI2A\",\"s2:processing_baseline\":\"05.11\",\"s2:product_uri\":\"S2B_MSIL2A_20250717T112119_N0511_R037_T30VXR_20250717T121711.SAFE\",\"s2:generation_time\":\"2025-07-17T12:17:11.000000Z\",\"s2:datatake_id\":\"GS2B_20250717T112119_043678_N05.11\",\"s2:datatake_type\":\"INS-NOBS\",\"s2:datastrip_id\":\"S2B_OPER_MSI_L2A_DS_2BPS_20250717T121711_S20250717T112116_N05.11\",\"s2:reflectance_conversion_factor\":0.967718180845495,\"datetime\":\"2025-07-17T11:23:43.265000Z\",\"earthsearch:payload_id\":\"roda-sentinel-2-c1-l2a/workflow-sentinel-2-c1-l2a-to-stac/33e419862c85a4c0ac3fb5700cceeb29\",\"storage:platform\":\"AWS\",\"storage:region\":\"us-west-2\",\"storage:requester_pays\":false,\"processing:software\":{\"sentinel-2-c1-l2a-to-stac\":\"v2025.06.17\"},\"updated\":\"2025-07-17T12:46:35.966Z\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[1.1393967826652442,62.98114663885232],[1.2713805656017882,63.88797070046716],[0.6118335337238818,62.995628290212586],[1.1393967826652442,62.98114663885232]]]},\"links\":[{\"rel\":\"self\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items/S2B_T30VXR_20250717T112116_L2A\"},{\"rel\":\"canonical\",\"href\":\"s3://e84-earth-search-sentinel-data/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/S2B_T30VXR_20250717T112116_L2A.json\",\"type\":\"application/json\"},{\"rel\":\"via\",\"href\":\"s3://sentinel-s2-l2a/tiles/30/V/XR/2025/7/17/0/metadata.xml\",\"type\":\"application/xml\",\"title\":\"Granule Metadata in Sinergize RODA Archive\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a\"},{\"rel\":\"collection\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"thumbnail\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items/S2B_T30VXR_20250717T112116_L2A/thumbnail\"}],\"assets\":{\"red\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/B04.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220d67059eeac8d2a88090050628ba821ec078a4ea8ca8e2d8149189b796ae7f951\",\"file:size\":15650216,\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/B03.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12207e481008faa4afa3880aeed042e8d25c1bdafcd977e02655ba3007164559cbc3\",\"file:size\":16861217,\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/B02.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220079446a586a93fbca242016291678930743e923c0e5208ce5d48382697a82399\",\"file:size\":18153716,\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/TCI.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,7100040],\"file:checksum\":\"12206684080e6d94d08494742f3852a5bb944a3b8dacc266738c124ddee6580a7027\",\"file:size\":18503412,\"roles\":[\"visual\"]},\"nir\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/B08.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220d99b656d1c620b92fa3c05258e634f2c100c81bd0b5217c5a2802283518ca950\",\"file:size\":15423718,\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/B12.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12209949d39da3cae36232bcd182ba50aa762efe3bb2604ef2d9b7324024f4aa4170\",\"file:size\":3422214,\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/B06.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220ebd19d7946df5b95cb48049535bb40b4b83d28ee57dbca6c806a298c44d77e3f\",\"file:size\":3838339,\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/B07.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220d85a8007fdc9a583615810a4657dc07b2144816690ebb3f196fab2043b8d1f6c\",\"file:size\":3945668,\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/B05.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220db0babb3b8234fa223231913cabc614cfafeb8fbd717f5cffa589edef0e42bb6\",\"file:size\":3831828,\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/B11.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12205a0bee5af5981088a1e174d0ba1f3cfa9923ab4a8f8105989cc6f6de93675d38\",\"file:size\":3340199,\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/WVP.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"file:checksum\":\"1220d8455b415313d5c7bee8dfa9659b2a70ff256991461d9d13fb7d3c0f82c94721\",\"file:size\":95845,\"roles\":[\"data\"]},\"nir08\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/B8A.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220258ed3052a87146dcaf0154c65aa01a243fcf5ecb399b10d69a57347dc7ac81e\",\"file:size\":3966764,\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/SCL.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"file:checksum\":\"12209e63f0ef03621b32d8cd910f5f62ebf9e97a9b0dc088a8439fb08124226d187c\",\"file:size\":74084,\"roles\":[\"data\"]},\"aot\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/AOT.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"file:checksum\":\"1220828acea1e9157a822fb2f3a5a72cbef35a3d9982ace5942fa6050229227989db\",\"file:size\":175800,\"roles\":[\"data\"]},\"coastal\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/B01.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12209af1d89ab6a6391f157deac1d6a3306addfa9d919515574ef31a6c9245f76c54\",\"file:size\":430136,\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/B09.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12209e984b5e8664b59ef8a41be82a797992b34fe5e9c8565b1ef70078173e4e4725\",\"file:size\":262493,\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/CLD_20m.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"file:checksum\":\"1220a1f8b3cc577272f2848c0a3dcae4bc55803463de2191960a2eed0fd2e1d620a3\",\"file:size\":53931,\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/SNW_20m.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"file:checksum\":\"1220a1f8b3cc577272f2848c0a3dcae4bc55803463de2191960a2eed0fd2e1d620a3\",\"file:size\":53931,\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/L2A_PVI.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"gsd\":320,\"proj:shape\":[343,343],\"proj:transform\":[320,0,600000,0,-320,7100040],\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"file:checksum\":\"1220509c796593ee824ab85d5f2589afe635d8466d6059cfe38ec2dfd2cf9e898b2a\",\"file:size\":20905,\"roles\":[\"overview\"]},\"granule_metadata\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/metadata.xml\",\"type\":\"application/xml\",\"file:checksum\":\"1220c1c2fdbce34093cec0170c4feddf1678f66beddbbedb0bf48ce2eedeee3d4ced\",\"file:size\":185411,\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/tileInfo.json\",\"type\":\"application/json\",\"file:checksum\":\"1220aa73dd40214b649cc95fb4373efcdf1a35775076bb84b927ad4514ae7693571f\",\"file:size\":1510,\"roles\":[\"metadata\"]},\"product_metadata\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/product_metadata.xml\",\"type\":\"application/xml\",\"file:checksum\":\"122022b3d76870b4332c2b331b0fda045012860fc58b07e5e4f816a2ae65af8d6193\",\"file:size\":54762,\"roles\":[\"metadata\"]},\"thumbnail\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/30/V/XR/2025/7/S2B_T30VXR_20250717T112116_L2A/L2A_PVI.jpg\",\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"file:checksum\":\"122073e2c50c8e7693c8e3a993ec378b2e202a93d3d9397402ba820aa848197826ce\",\"file:size\":2945,\"roles\":[\"thumbnail\"]}},\"bbox\":[0.611834,62.981147,1.271381,63.887971],\"stac_extensions\":[\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\",\"https://stac-extensions.github.io/grid/v1.1.0/schema.json\",\"https://stac-extensions.github.io/mgrs/v1.0.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/sentinel-2/v1.0.0/schema.json\",\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\"],\"collection\":\"sentinel-2-c1-l2a\"},{\"type\":\"Feature\",\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/mgrs/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/sentinel-2/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\",\"https://stac-extensions.github.io/grid/v1.1.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"],\"id\":\"S2B_30VXR_20250717_0_L2A\",\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[1.1393967826652442,62.98114663885232],[1.2713805656017882,63.88797070046716],[0.6118335337238818,62.995628290212586],[1.1393967826652442,62.98114663885232]]]},\"bbox\":[0.611834,62.981147,1.271381,63.887971],\"properties\":{\"created\":\"2025-07-17T12:48:46.702Z\",\"platform\":\"sentinel-2b\",\"constellation\":\"sentinel-2\",\"instruments\":[\"msi\"],\"eo:cloud_cover\":0,\"proj:epsg\":32630,\"proj:centroid\":{\"lat\":63.28825,\"lon\":1.00754},\"mgrs:utm_zone\":30,\"mgrs:latitude_band\":\"V\",\"mgrs:grid_square\":\"XR\",\"grid:code\":\"MGRS-30VXR\",\"view:azimuth\":114.40990189285054,\"view:incidence_angle\":11.128377172304747,\"view:sun_azimuth\":165.537767793256,\"view:sun_elevation\":47.0107276346185,\"s2:tile_id\":\"S2B_OPER_MSI_L2A_TL_2BPS_20250717T121711_A043678_T30VXR_N05.11\",\"s2:degraded_msi_data_percentage\":0,\"s2:nodata_pixel_percentage\":88.571393,\"s2:saturated_defective_pixel_percentage\":0,\"s2:cloud_shadow_percentage\":0,\"s2:vegetation_percentage\":0,\"s2:not_vegetated_percentage\":0,\"s2:water_percentage\":100,\"s2:unclassified_percentage\":0,\"s2:medium_proba_clouds_percentage\":0,\"s2:high_proba_clouds_percentage\":0,\"s2:thin_cirrus_percentage\":0,\"s2:snow_ice_percentage\":0,\"s2:product_type\":\"S2MSI2A\",\"s2:processing_baseline\":\"05.11\",\"s2:product_uri\":\"S2B_MSIL2A_20250717T112119_N0511_R037_T30VXR_20250717T121711.SAFE\",\"s2:generation_time\":\"2025-07-17T12:17:11.000000Z\",\"s2:datatake_id\":\"GS2B_20250717T112119_043678_N05.11\",\"s2:datatake_type\":\"INS-NOBS\",\"s2:datastrip_id\":\"S2B_OPER_MSI_L2A_DS_2BPS_20250717T121711_S20250717T112116_N05.11\",\"s2:reflectance_conversion_factor\":0.967718180845495,\"datetime\":\"2025-07-17T11:23:43.265000Z\",\"s2:sequence\":\"0\",\"earthsearch:s3_path\":\"s3://sentinel-cogs/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A\",\"earthsearch:payload_id\":\"roda-sentinel2/workflow-sentinel2-to-stac/589d8711d3f25ddb0039d0eb79139191\",\"earthsearch:boa_offset_applied\":true,\"processing:software\":{\"sentinel2-to-stac\":\"2025.03.06\"},\"updated\":\"2025-07-17T12:48:46.702Z\"},\"links\":[{\"rel\":\"self\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items/S2B_30VXR_20250717_0_L2A\"},{\"rel\":\"canonical\",\"href\":\"s3://sentinel-cogs/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A/S2B_30VXR_20250717_0_L2A.json\",\"type\":\"application/json\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\"},{\"rel\":\"derived_from\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items/S2B_30VXR_20250717_0_L1C\",\"type\":\"application/geo+json\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a\"},{\"rel\":\"collection\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"thumbnail\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items/S2B_30VXR_20250717_0_L2A/thumbnail\"}],\"assets\":{\"aot\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A/AOT.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"blue\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A/B02.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"href\":\"s3://sentinel-s2-l2a/tiles/30/V/XR/2025/7/17/0/qi/CLD_20m.jp2\",\"type\":\"image/jp2\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"coastal\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A/B01.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A/granule_metadata.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A/B03.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A/B08.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A/B8A.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A/B09.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"product_metadata\":{\"href\":\"s3://sentinel-s2-l2a/tiles/30/V/XR/2025/7/17/0/product_metadata.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"red\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A/B04.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A/B05.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A/B06.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A/B07.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A/SCL.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"snow\":{\"href\":\"s3://sentinel-s2-l2a/tiles/30/V/XR/2025/7/17/0/qi/SNW_20m.jp2\",\"type\":\"image/jp2\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"swir16\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A/B11.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A/B12.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"tileinfo_metadata\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A/tileinfo_metadata.json\",\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A/TCI.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,7100040],\"roles\":[\"visual\"]},\"wvp\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A/WVP.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"thumbnail\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/30/V/XR/2025/7/S2B_30VXR_20250717_0_L2A/preview.jpg\",\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]},\"aot-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/30/V/XR/2025/7/17/0/R20m/AOT.jp2\",\"type\":\"image/jp2\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"blue-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/30/V/XR/2025/7/17/0/R10m/B02.jp2\",\"type\":\"image/jp2\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"coastal-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/30/V/XR/2025/7/17/0/R60m/B01.jp2\",\"type\":\"image/jp2\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/30/V/XR/2025/7/17/0/R10m/B03.jp2\",\"type\":\"image/jp2\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/30/V/XR/2025/7/17/0/R10m/B08.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir08-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/30/V/XR/2025/7/17/0/R20m/B8A.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/30/V/XR/2025/7/17/0/R60m/B09.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"red-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/30/V/XR/2025/7/17/0/R10m/B04.jp2\",\"type\":\"image/jp2\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/30/V/XR/2025/7/17/0/R20m/B05.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/30/V/XR/2025/7/17/0/R20m/B06.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/30/V/XR/2025/7/17/0/R20m/B07.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/30/V/XR/2025/7/17/0/R20m/SCL.jp2\",\"type\":\"image/jp2\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"swir16-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/30/V/XR/2025/7/17/0/R20m/B11.jp2\",\"type\":\"image/jp2\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/30/V/XR/2025/7/17/0/R20m/B12.jp2\",\"type\":\"image/jp2\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/30/V/XR/2025/7/17/0/R10m/TCI.jp2\",\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,7100040],\"roles\":[\"visual\"]},\"wvp-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/30/V/XR/2025/7/17/0/R20m/WVP.jp2\",\"type\":\"image/jp2\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]}},\"collection\":\"sentinel-2-l2a\"},{\"type\":\"Feature\",\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/mgrs/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/sentinel-2/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\",\"https://stac-extensions.github.io/grid/v1.1.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"],\"id\":\"S2B_30VXR_20250717_0_L1C\",\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[1.1393967826652442,62.98114663885232],[1.2713805656017882,63.88797070046716],[0.6118335337238818,62.995628290212586],[1.1393967826652442,62.98114663885232]]]},\"bbox\":[0.611834,62.981147,1.271381,63.887971],\"properties\":{\"created\":\"2025-07-17T12:48:46.603Z\",\"platform\":\"sentinel-2b\",\"constellation\":\"sentinel-2\",\"instruments\":[\"msi\"],\"eo:cloud_cover\":0,\"proj:epsg\":32630,\"proj:centroid\":{\"lat\":63.28825,\"lon\":1.00754},\"mgrs:utm_zone\":30,\"mgrs:latitude_band\":\"V\",\"mgrs:grid_square\":\"XR\",\"grid:code\":\"MGRS-30VXR\",\"view:azimuth\":114.40990189285054,\"view:incidence_angle\":11.128377172304747,\"view:sun_azimuth\":165.537767793256,\"view:sun_elevation\":47.0107276346185,\"s2:tile_id\":\"S2B_OPER_MSI_L1C_TL_2BPS_20250717T120258_A043678_T30VXR_N05.11\",\"s2:degraded_msi_data_percentage\":0,\"s2:product_type\":\"S2MSI1C\",\"s2:processing_baseline\":\"05.11\",\"s2:product_uri\":\"S2B_MSIL1C_20250717T112119_N0511_R037_T30VXR_20250717T120258.SAFE\",\"s2:generation_time\":\"2025-07-17T12:02:58.000000Z\",\"s2:datatake_id\":\"GS2B_20250717T112119_043678_N05.11\",\"s2:datatake_type\":\"INS-NOBS\",\"s2:datastrip_id\":\"S2B_OPER_MSI_L1C_DS_2BPS_20250717T120258_S20250717T112116_N05.11\",\"s2:reflectance_conversion_factor\":0.967718180845495,\"datetime\":\"2025-07-17T11:23:43.265000Z\",\"s2:sequence\":\"0\",\"earthsearch:s3_path\":\"s3://earthsearch-data/sentinel-2-l1c/30/V/XR/2025/7/S2B_30VXR_20250717_0_L1C\",\"earthsearch:payload_id\":\"roda-sentinel2/workflow-sentinel2-to-stac/589d8711d3f25ddb0039d0eb79139191\",\"processing:software\":{\"sentinel2-to-stac\":\"2025.03.06\"},\"updated\":\"2025-07-17T12:48:46.603Z\"},\"links\":[{\"rel\":\"self\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items/S2B_30VXR_20250717_0_L1C\"},{\"rel\":\"canonical\",\"href\":\"s3://earthsearch-data/sentinel-2-l1c/30/V/XR/2025/7/S2B_30VXR_20250717_0_L1C/S2B_30VXR_20250717_0_L1C.json\",\"type\":\"application/json\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c\"},{\"rel\":\"collection\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"thumbnail\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items/S2B_30VXR_20250717_0_L1C/thumbnail\"}],\"assets\":{\"blue\":{\"href\":\"s3://sentinel-s2-l1c/tiles/30/V/XR/2025/7/17/0/B02.jp2\",\"type\":\"image/jp2\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cirrus\":{\"href\":\"s3://sentinel-s2-l1c/tiles/30/V/XR/2025/7/17/0/B10.jp2\",\"type\":\"image/jp2\",\"title\":\"Cirrus - 60m\",\"eo:bands\":[{\"name\":\"B10\",\"common_name\":\"cirrus\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"href\":\"s3://sentinel-s2-l1c/tiles/30/V/XR/2025/7/17/0/B01.jp2\",\"type\":\"image/jp2\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"href\":\"s3://sentinel-s2-l1c/tiles/30/V/XR/2025/7/17/0/metadata.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"href\":\"s3://sentinel-s2-l1c/tiles/30/V/XR/2025/7/17/0/B03.jp2\",\"type\":\"image/jp2\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"href\":\"s3://sentinel-s2-l1c/tiles/30/V/XR/2025/7/17/0/B08.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"href\":\"s3://sentinel-s2-l1c/tiles/30/V/XR/2025/7/17/0/B8A.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"href\":\"s3://sentinel-s2-l1c/tiles/30/V/XR/2025/7/17/0/B09.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"product_metadata\":{\"href\":\"s3://sentinel-s2-l1c/tiles/30/V/XR/2025/7/17/0/product_metadata.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"red\":{\"href\":\"s3://sentinel-s2-l1c/tiles/30/V/XR/2025/7/17/0/B04.jp2\",\"type\":\"image/jp2\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"href\":\"s3://sentinel-s2-l1c/tiles/30/V/XR/2025/7/17/0/B05.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"href\":\"s3://sentinel-s2-l1c/tiles/30/V/XR/2025/7/17/0/B06.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"href\":\"s3://sentinel-s2-l1c/tiles/30/V/XR/2025/7/17/0/B07.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"href\":\"s3://sentinel-s2-l1c/tiles/30/V/XR/2025/7/17/0/B11.jp2\",\"type\":\"image/jp2\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"href\":\"s3://sentinel-s2-l1c/tiles/30/V/XR/2025/7/17/0/B12.jp2\",\"type\":\"image/jp2\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,7100040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"tileinfo_metadata\":{\"href\":\"s3://sentinel-s2-l1c/tiles/30/V/XR/2025/7/17/0/tileInfo.json\",\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"href\":\"s3://sentinel-s2-l1c/tiles/30/V/XR/2025/7/17/0/TCI.jp2\",\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,7100040],\"roles\":[\"visual\"]}},\"collection\":\"sentinel-2-l1c\"},{\"type\":\"Feature\",\"stac_version\":\"1.0.0\",\"id\":\"S2B_T31WDN_20250717T112116_L2A\",\"properties\":{\"created\":\"2025-07-17T12:48:24.893Z\",\"platform\":\"sentinel-2b\",\"constellation\":\"sentinel-2\",\"instruments\":[\"msi\"],\"eo:cloud_cover\":0.001096,\"proj:epsg\":32631,\"proj:centroid\":{\"lat\":65.24183,\"lon\":2.78183},\"mgrs:utm_zone\":31,\"mgrs:latitude_band\":\"W\",\"mgrs:grid_square\":\"DN\",\"grid:code\":\"MGRS-31WDN\",\"view:azimuth\":111.58029179598854,\"view:incidence_angle\":10.323536701725777,\"view:sun_azimuth\":168.355746240221,\"view:sun_elevation\":45.4064419487837,\"s2:tile_id\":\"S2B_OPER_MSI_L2A_TL_2BPS_20250717T121711_A043678_T31WDN_N05.11\",\"s2:degraded_msi_data_percentage\":0,\"s2:nodata_pixel_percentage\":66.411591,\"s2:saturated_defective_pixel_percentage\":0,\"s2:cloud_shadow_percentage\":0,\"s2:vegetation_percentage\":0.00001,\"s2:not_vegetated_percentage\":0,\"s2:water_percentage\":99.998891,\"s2:unclassified_percentage\":0,\"s2:medium_proba_clouds_percentage\":0.000682,\"s2:high_proba_clouds_percentage\":0,\"s2:thin_cirrus_percentage\":0.000415,\"s2:snow_ice_percentage\":0,\"s2:product_type\":\"S2MSI2A\",\"s2:processing_baseline\":\"05.11\",\"s2:product_uri\":\"S2B_MSIL2A_20250717T112119_N0511_R037_T31WDN_20250717T121711.SAFE\",\"s2:generation_time\":\"2025-07-17T12:17:11.000000Z\",\"s2:datatake_id\":\"GS2B_20250717T112119_043678_N05.11\",\"s2:datatake_type\":\"INS-NOBS\",\"s2:datastrip_id\":\"S2B_OPER_MSI_L2A_DS_2BPS_20250717T121711_S20250717T112116_N05.11\",\"s2:reflectance_conversion_factor\":0.967718180845495,\"datetime\":\"2025-07-17T11:23:07.930000Z\",\"earthsearch:payload_id\":\"roda-sentinel-2-c1-l2a/workflow-sentinel-2-c1-l2a-to-stac/ff7acbc7a33821d6236bc24dc6cb489a\",\"storage:platform\":\"AWS\",\"storage:region\":\"us-west-2\",\"storage:requester_pays\":false,\"processing:software\":{\"sentinel-2-c1-l2a-to-stac\":\"v2025.06.17\"},\"updated\":\"2025-07-17T12:48:24.893Z\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[2.841741304451631,65.82146165511926],[2.013001001560724,64.83311602178232],[3.2056904805716897,64.83624976412734],[3.2135276107413233,65.82139457717805],[2.841741304451631,65.82146165511926]]]},\"links\":[{\"rel\":\"self\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items/S2B_T31WDN_20250717T112116_L2A\"},{\"rel\":\"canonical\",\"href\":\"s3://e84-earth-search-sentinel-data/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/S2B_T31WDN_20250717T112116_L2A.json\",\"type\":\"application/json\"},{\"rel\":\"via\",\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/DN/2025/7/17/0/metadata.xml\",\"type\":\"application/xml\",\"title\":\"Granule Metadata in Sinergize RODA Archive\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a\"},{\"rel\":\"collection\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"thumbnail\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items/S2B_T31WDN_20250717T112116_L2A/thumbnail\"}],\"assets\":{\"red\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/B04.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,7300020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220762fb3a245d4da5fd42b13c4c8bcb85e02259b76aac72eb30031b5463cd20bf4\",\"file:size\":44827451,\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/B03.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,7300020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220396b3b992d2b73aaf02572309255c861d24cbce5cecdbf296c112831542c1634\",\"file:size\":47859326,\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/B02.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,7300020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"122092a68e4aff8b2cf2f93f4666671106c01c23992f3d9a1b0dd7fadc86e36b5968\",\"file:size\":51180258,\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/TCI.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,7300020],\"file:checksum\":\"1220b3e6dca3554d47b216eb338e8b8251a26d1d4837fc92b961c141830cf1cd75ce\",\"file:size\":51653823,\"roles\":[\"visual\"]},\"nir\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/B08.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,7300020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220d4d04750029bc56eaabf9c806cbcbaab53d59897b8c1ed4a3c4b6f71323de236\",\"file:size\":44552127,\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/B12.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,7300020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220f1d0e849feb9768fae826fabb4785d19d498e7186c333adddeee0ffd76dbfce3\",\"file:size\":10181706,\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/B06.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,7300020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220275df0bc2de332d6a651134c2c5028f808776e04c690ce95017258ee5545f60a\",\"file:size\":10899085,\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/B07.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,7300020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220dd18a9f464eec2b7934da0f0ec85ce44083ad7ae499917f5bb63e850e2692c24\",\"file:size\":11318488,\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/B05.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,7300020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220194dd56129fc639aea32b162bff8f3f22eccdd519ae6ccdb06cabe84daf0a911\",\"file:size\":10884149,\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/B11.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,7300020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220368cd8dbe17be09e7cc1cda09b1c5ee5a0afc513ba7e3659dd457a3698fd622b\",\"file:size\":9917599,\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/WVP.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,7300020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"file:checksum\":\"122062ac591ce6737846b782ca05e73cfff0c8a7a245ad5cd254cb452c038bbd913a\",\"file:size\":95845,\"roles\":[\"data\"]},\"nir08\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/B8A.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,7300020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220aa787681510b6157aabc374f4cc6ceb6a3b3d1fbad418d64f2f56edab8580a9d\",\"file:size\":11312861,\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/SCL.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,7300020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"file:checksum\":\"12207e1cb00ac992de9728154d6f1c57cf095bd1364d108d646255c43d89ee35a40c\",\"file:size\":95271,\"roles\":[\"data\"]},\"aot\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/AOT.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,7300020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"file:checksum\":\"1220173f6018f2b53ce1108d8dc6f03b8f22db4c0f132fdb27ec68d49d1b8ca2178d\",\"file:size\":197897,\"roles\":[\"data\"]},\"coastal\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/B01.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,7300020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12209d9cfafbcf368cde77975be882728ac9cc605d284258c0fc68040ebf429720de\",\"file:size\":1074004,\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/B09.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,7300020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220d4d63e87522754b8818480446391363b647e9868929bec852def49ce81c02245\",\"file:size\":768124,\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/CLD_20m.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,7300020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"file:checksum\":\"12208f9eb4b2c820600ac69740d5f4c3ea806b8e7fc62e6e75fa71a608e35897c626\",\"file:size\":54717,\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/SNW_20m.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,7300020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"file:checksum\":\"12205a72fb98804289d9654ece1e41feac33e8ea9c45fc1d423b43ff9a4b86bc6cf9\",\"file:size\":53931,\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/L2A_PVI.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"gsd\":320,\"proj:shape\":[343,343],\"proj:transform\":[320,0,399960,0,-320,7300020],\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"file:checksum\":\"12205a9184797578009fc79486cb65c177593a727e93ae2e28783f97e8e11bece8d8\",\"file:size\":49523,\"roles\":[\"overview\"]},\"granule_metadata\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/metadata.xml\",\"type\":\"application/xml\",\"file:checksum\":\"122013998a7d427224e61741dd67fed53bc6978c630553e16f822aa158e2e683db98\",\"file:size\":275739,\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/tileInfo.json\",\"type\":\"application/json\",\"file:checksum\":\"122091765247b5eea695e5d8838d677c622a3f982acf208e4cb298d5be3a81235b77\",\"file:size\":1521,\"roles\":[\"metadata\"]},\"product_metadata\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/product_metadata.xml\",\"type\":\"application/xml\",\"file:checksum\":\"1220661eaf0506b5cff8449f9b8dd58f5b83cf8d9f678569c4455d628941d70912a3\",\"file:size\":54852,\"roles\":[\"metadata\"]},\"thumbnail\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/DN/2025/7/S2B_T31WDN_20250717T112116_L2A/L2A_PVI.jpg\",\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"file:checksum\":\"122089bb0367182e79e1b175c249783d892f8c2fdfbba93f0fda46ac4591229251b5\",\"file:size\":3823,\"roles\":[\"thumbnail\"]}},\"bbox\":[2.013001,64.833116,3.213528,65.821462],\"stac_extensions\":[\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\",\"https://stac-extensions.github.io/grid/v1.1.0/schema.json\",\"https://stac-extensions.github.io/mgrs/v1.0.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/sentinel-2/v1.0.0/schema.json\",\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\"],\"collection\":\"sentinel-2-c1-l2a\"},{\"type\":\"Feature\",\"stac_version\":\"1.0.0\",\"id\":\"S2B_T31WES_20250717T112116_L2A\",\"properties\":{\"created\":\"2025-07-17T12:43:31.241Z\",\"platform\":\"sentinel-2b\",\"constellation\":\"sentinel-2\",\"instruments\":[\"msi\"],\"eo:cloud_cover\":0,\"proj:epsg\":32631,\"proj:centroid\":{\"lat\":68.52191,\"lon\":5.57269},\"mgrs:utm_zone\":31,\"mgrs:latitude_band\":\"W\",\"mgrs:grid_square\":\"ES\",\"grid:code\":\"MGRS-31WES\",\"view:azimuth\":117.737754032185,\"view:incidence_angle\":11.4941437499378,\"view:sun_azimuth\":171.629092521222,\"view:sun_elevation\":42.0158166343274,\"s2:tile_id\":\"S2B_OPER_MSI_L2A_TL_2BPS_20250717T121711_A043678_T31WES_N05.11\",\"s2:degraded_msi_data_percentage\":0,\"s2:nodata_pixel_percentage\":97.689879,\"s2:saturated_defective_pixel_percentage\":0,\"s2:cloud_shadow_percentage\":0,\"s2:vegetation_percentage\":0,\"s2:not_vegetated_percentage\":0,\"s2:water_percentage\":100,\"s2:unclassified_percentage\":0,\"s2:medium_proba_clouds_percentage\":0,\"s2:high_proba_clouds_percentage\":0,\"s2:thin_cirrus_percentage\":0,\"s2:snow_ice_percentage\":0,\"s2:product_type\":\"S2MSI2A\",\"s2:processing_baseline\":\"05.11\",\"s2:product_uri\":\"S2B_MSIL2A_20250717T112119_N0511_R037_T31WES_20250717T121711.SAFE\",\"s2:generation_time\":\"2025-07-17T12:17:11.000000Z\",\"s2:datatake_id\":\"GS2B_20250717T112119_043678_N05.11\",\"s2:datatake_type\":\"INS-NOBS\",\"s2:datastrip_id\":\"S2B_OPER_MSI_L2A_DS_2BPS_20250717T121711_S20250717T112116_N05.11\",\"s2:reflectance_conversion_factor\":0.967718180845495,\"datetime\":\"2025-07-17T11:22:10.574000Z\",\"earthsearch:payload_id\":\"roda-sentinel-2-c1-l2a/workflow-sentinel-2-c1-l2a-to-stac/b907f98de4fa34a7f8ebf14b34438500\",\"storage:platform\":\"AWS\",\"storage:region\":\"us-west-2\",\"storage:requester_pays\":false,\"processing:software\":{\"sentinel-2-c1-l2a-to-stac\":\"v2025.06.17\"},\"updated\":\"2025-07-17T12:43:31.241Z\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[5.670880878386981,68.40360286941383],[5.711314187391423,68.75351628026976],[5.335888784422792,68.40861922463387],[5.670880878386981,68.40360286941383]]]},\"links\":[{\"rel\":\"self\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items/S2B_T31WES_20250717T112116_L2A\"},{\"rel\":\"canonical\",\"href\":\"s3://e84-earth-search-sentinel-data/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/S2B_T31WES_20250717T112116_L2A.json\",\"type\":\"application/json\"},{\"rel\":\"via\",\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/ES/2025/7/17/0/metadata.xml\",\"type\":\"application/xml\",\"title\":\"Granule Metadata in Sinergize RODA Archive\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a\"},{\"rel\":\"collection\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"thumbnail\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items/S2B_T31WES_20250717T112116_L2A/thumbnail\"}],\"assets\":{\"red\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/B04.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12201f0aee444ccf170dd9445c760113368e96cad3686dc488e1255f71571c2bf93d\",\"file:size\":3513569,\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/B03.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220e618cc0d6924c9bd2bf8bdf1c1088afb33f807707be05c09ddcf060346fe5591\",\"file:size\":3790720,\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/B02.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220788a366ffb0e9923675f0658e63fa14520abd91fe8f5290584b5c464315fa9a7\",\"file:size\":4054134,\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/TCI.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,7700040],\"file:checksum\":\"122098f1644fa46aca20ca2e58d38c0a6ba05f4aa936e9b36b4ddf3d42dd1a1808d9\",\"file:size\":4195708,\"roles\":[\"visual\"]},\"nir\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/B08.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220d3e081558ce153b964c3b45b1fd4af3d500904bf50d1691009f17dccd74d7f79\",\"file:size\":3505400,\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/B12.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220086f63f2ee53420669a8c633a78bd62338ee40f374d1796986b2b20b247b02b5\",\"file:size\":808873,\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/B06.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12203b155f027098a130f32d83f0fa90b100217924e79856cb4375f79007ff6b8de8\",\"file:size\":875299,\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/B07.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12201b5e0ab9e463ce8e9cb31cabc59185ac4d7c769b092db5c06ba183cbe9281971\",\"file:size\":882059,\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/B05.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"122007ec279e2ef4997b5d0b8e439ee4a4b2b3df4d2b636b540e2f365b4d2f294c37\",\"file:size\":863709,\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/B11.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12200f65afcada5a428ce00394876a225c4d60296a9ce4935a2d18f30cca39e9e5ee\",\"file:size\":799992,\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/WVP.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"file:checksum\":\"12206ed522ecf3767cf1b2bacd459c08f1feefebadf04b2829d1af792754a39f99d2\",\"file:size\":95845,\"roles\":[\"data\"]},\"nir08\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/B8A.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12204e7414d8da373a5567593f348ac1fd72a719824626148c02398e96e577949d0a\",\"file:size\":891827,\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/SCL.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"file:checksum\":\"1220ae6c6c8c378d99a50e88eb52ae7f27c915b9d221488ff0407a2e9c3caf339406\",\"file:size\":60463,\"roles\":[\"data\"]},\"aot\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/AOT.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"file:checksum\":\"1220b7265dec598ae72ca2a1637426e6afb11317fde8b0b7404881dec32465ab852b\",\"file:size\":105464,\"roles\":[\"data\"]},\"coastal\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/B01.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,499980,0,-60,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220e7bc65e7dc71dbfdfdcb25e690900577d31438304a38c32ed414feaf73244818\",\"file:size\":108759,\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/B09.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,499980,0,-60,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"122074ef32232dd0f93f23b9fb034825d21b35a03fc29ebf0b4dcd04157e912aeafc\",\"file:size\":68771,\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/CLD_20m.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"file:checksum\":\"1220f75049cc2b62ce21710336f972d3453ffd853644ef511d190a2c7270441879ec\",\"file:size\":53931,\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/SNW_20m.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"file:checksum\":\"1220f75049cc2b62ce21710336f972d3453ffd853644ef511d190a2c7270441879ec\",\"file:size\":53931,\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/L2A_PVI.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"gsd\":320,\"proj:shape\":[343,343],\"proj:transform\":[320,0,499980,0,-320,7700040],\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"file:checksum\":\"122057426d287e08d71a2e8d581799f34372ab911b56a7b409568de1d9041e5c687c\",\"file:size\":8065,\"roles\":[\"overview\"]},\"granule_metadata\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/metadata.xml\",\"type\":\"application/xml\",\"file:checksum\":\"1220c4b32c483d5af1d246f25613313fa63fa0f2abde838837229490eebc738fb861\",\"file:size\":101610,\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/tileInfo.json\",\"type\":\"application/json\",\"file:checksum\":\"12205be7a2aadf215d5cd1a52fb2646cb7daab36939469dda674343e94c0f201e751\",\"file:size\":1509,\"roles\":[\"metadata\"]},\"product_metadata\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/product_metadata.xml\",\"type\":\"application/xml\",\"file:checksum\":\"1220ccac9b3cf27e00604b85801fbae284abbb144b852310ad1333fb6537b0fda789\",\"file:size\":54613,\"roles\":[\"metadata\"]},\"thumbnail\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/31/W/ES/2025/7/S2B_T31WES_20250717T112116_L2A/L2A_PVI.jpg\",\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"file:checksum\":\"1220a1d40d8e9c6b86c56a8d8aea3b625ff6662f9c8773a323cbb412483325862c62\",\"file:size\":2706,\"roles\":[\"thumbnail\"]}},\"bbox\":[5.335889,68.403603,5.711314,68.753516],\"stac_extensions\":[\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\",\"https://stac-extensions.github.io/grid/v1.1.0/schema.json\",\"https://stac-extensions.github.io/mgrs/v1.0.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/sentinel-2/v1.0.0/schema.json\",\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\"],\"collection\":\"sentinel-2-c1-l2a\"},{\"type\":\"Feature\",\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sentinel-2/v1.0.0/schema.json\",\"https://stac-extensions.github.io/mgrs/v1.0.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/grid/v1.1.0/schema.json\"],\"id\":\"S2B_31WES_20250717_0_L2A\",\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[5.670880878386981,68.40360286941383],[5.711314187391423,68.75351628026976],[5.335888784422792,68.40861922463387],[5.670880878386981,68.40360286941383]]]},\"bbox\":[5.335889,68.403603,5.711314,68.753516],\"properties\":{\"created\":\"2025-07-17T12:46:07.928Z\",\"platform\":\"sentinel-2b\",\"constellation\":\"sentinel-2\",\"instruments\":[\"msi\"],\"eo:cloud_cover\":0,\"proj:epsg\":32631,\"proj:centroid\":{\"lat\":68.52191,\"lon\":5.57269},\"mgrs:utm_zone\":31,\"mgrs:latitude_band\":\"W\",\"mgrs:grid_square\":\"ES\",\"grid:code\":\"MGRS-31WES\",\"view:azimuth\":117.737754032185,\"view:incidence_angle\":11.4941437499378,\"view:sun_azimuth\":171.629092521222,\"view:sun_elevation\":42.0158166343274,\"s2:tile_id\":\"S2B_OPER_MSI_L2A_TL_2BPS_20250717T121711_A043678_T31WES_N05.11\",\"s2:degraded_msi_data_percentage\":0,\"s2:nodata_pixel_percentage\":97.689879,\"s2:saturated_defective_pixel_percentage\":0,\"s2:cloud_shadow_percentage\":0,\"s2:vegetation_percentage\":0,\"s2:not_vegetated_percentage\":0,\"s2:water_percentage\":100,\"s2:unclassified_percentage\":0,\"s2:medium_proba_clouds_percentage\":0,\"s2:high_proba_clouds_percentage\":0,\"s2:thin_cirrus_percentage\":0,\"s2:snow_ice_percentage\":0,\"s2:product_type\":\"S2MSI2A\",\"s2:processing_baseline\":\"05.11\",\"s2:product_uri\":\"S2B_MSIL2A_20250717T112119_N0511_R037_T31WES_20250717T121711.SAFE\",\"s2:generation_time\":\"2025-07-17T12:17:11.000000Z\",\"s2:datatake_id\":\"GS2B_20250717T112119_043678_N05.11\",\"s2:datatake_type\":\"INS-NOBS\",\"s2:datastrip_id\":\"S2B_OPER_MSI_L2A_DS_2BPS_20250717T121711_S20250717T112116_N05.11\",\"s2:reflectance_conversion_factor\":0.967718180845495,\"datetime\":\"2025-07-17T11:22:10.574000Z\",\"s2:sequence\":\"0\",\"earthsearch:s3_path\":\"s3://sentinel-cogs/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A\",\"earthsearch:payload_id\":\"roda-sentinel2/workflow-sentinel2-to-stac/a05535291dfc9b73e77bce94b796fa3d\",\"earthsearch:boa_offset_applied\":true,\"processing:software\":{\"sentinel2-to-stac\":\"2025.03.06\"},\"updated\":\"2025-07-17T12:46:07.928Z\"},\"links\":[{\"rel\":\"self\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items/S2B_31WES_20250717_0_L2A\"},{\"rel\":\"canonical\",\"href\":\"s3://sentinel-cogs/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A/S2B_31WES_20250717_0_L2A.json\",\"type\":\"application/json\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\"},{\"rel\":\"derived_from\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items/S2B_31WES_20250717_0_L1C\",\"type\":\"application/geo+json\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a\"},{\"rel\":\"collection\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"thumbnail\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items/S2B_31WES_20250717_0_L2A/thumbnail\"}],\"assets\":{\"aot\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A/AOT.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"blue\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A/B02.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/ES/2025/7/17/0/qi/CLD_20m.jp2\",\"type\":\"image/jp2\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"coastal\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A/B01.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,499980,0,-60,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A/granule_metadata.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A/B03.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A/B08.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A/B8A.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A/B09.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,499980,0,-60,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"product_metadata\":{\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/ES/2025/7/17/0/product_metadata.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"red\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A/B04.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A/B05.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A/B06.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A/B07.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A/SCL.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"snow\":{\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/ES/2025/7/17/0/qi/SNW_20m.jp2\",\"type\":\"image/jp2\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"swir16\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A/B11.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A/B12.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"tileinfo_metadata\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A/tileinfo_metadata.json\",\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A/TCI.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,7700040],\"roles\":[\"visual\"]},\"wvp\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A/WVP.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"thumbnail\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/31/W/ES/2025/7/S2B_31WES_20250717_0_L2A/preview.jpg\",\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]},\"aot-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/ES/2025/7/17/0/R20m/AOT.jp2\",\"type\":\"image/jp2\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"blue-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/ES/2025/7/17/0/R10m/B02.jp2\",\"type\":\"image/jp2\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"coastal-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/ES/2025/7/17/0/R60m/B01.jp2\",\"type\":\"image/jp2\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,499980,0,-60,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/ES/2025/7/17/0/R10m/B03.jp2\",\"type\":\"image/jp2\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/ES/2025/7/17/0/R10m/B08.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir08-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/ES/2025/7/17/0/R20m/B8A.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/ES/2025/7/17/0/R60m/B09.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,499980,0,-60,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"red-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/ES/2025/7/17/0/R10m/B04.jp2\",\"type\":\"image/jp2\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/ES/2025/7/17/0/R20m/B05.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/ES/2025/7/17/0/R20m/B06.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/ES/2025/7/17/0/R20m/B07.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/ES/2025/7/17/0/R20m/SCL.jp2\",\"type\":\"image/jp2\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"swir16-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/ES/2025/7/17/0/R20m/B11.jp2\",\"type\":\"image/jp2\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/ES/2025/7/17/0/R20m/B12.jp2\",\"type\":\"image/jp2\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/ES/2025/7/17/0/R10m/TCI.jp2\",\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,7700040],\"roles\":[\"visual\"]},\"wvp-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/31/W/ES/2025/7/17/0/R20m/WVP.jp2\",\"type\":\"image/jp2\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]}},\"collection\":\"sentinel-2-l2a\"},{\"type\":\"Feature\",\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sentinel-2/v1.0.0/schema.json\",\"https://stac-extensions.github.io/mgrs/v1.0.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/grid/v1.1.0/schema.json\"],\"id\":\"S2B_31WES_20250717_0_L1C\",\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[5.670880878386981,68.40360286941383],[5.711314187391423,68.75351628026976],[5.335888784422792,68.40861922463387],[5.670880878386981,68.40360286941383]]]},\"bbox\":[5.335889,68.403603,5.711314,68.753516],\"properties\":{\"created\":\"2025-07-17T12:46:07.754Z\",\"platform\":\"sentinel-2b\",\"constellation\":\"sentinel-2\",\"instruments\":[\"msi\"],\"eo:cloud_cover\":0,\"proj:epsg\":32631,\"proj:centroid\":{\"lat\":68.52191,\"lon\":5.57269},\"mgrs:utm_zone\":31,\"mgrs:latitude_band\":\"W\",\"mgrs:grid_square\":\"ES\",\"grid:code\":\"MGRS-31WES\",\"view:azimuth\":117.737754032185,\"view:incidence_angle\":11.4941437499378,\"view:sun_azimuth\":171.629092521222,\"view:sun_elevation\":42.0158166343274,\"s2:tile_id\":\"S2B_OPER_MSI_L1C_TL_2BPS_20250717T120258_A043678_T31WES_N05.11\",\"s2:degraded_msi_data_percentage\":0,\"s2:product_type\":\"S2MSI1C\",\"s2:processing_baseline\":\"05.11\",\"s2:product_uri\":\"S2B_MSIL1C_20250717T112119_N0511_R037_T31WES_20250717T120258.SAFE\",\"s2:generation_time\":\"2025-07-17T12:02:58.000000Z\",\"s2:datatake_id\":\"GS2B_20250717T112119_043678_N05.11\",\"s2:datatake_type\":\"INS-NOBS\",\"s2:datastrip_id\":\"S2B_OPER_MSI_L1C_DS_2BPS_20250717T120258_S20250717T112116_N05.11\",\"s2:reflectance_conversion_factor\":0.967718180845495,\"datetime\":\"2025-07-17T11:22:10.574000Z\",\"s2:sequence\":\"0\",\"earthsearch:s3_path\":\"s3://earthsearch-data/sentinel-2-l1c/31/W/ES/2025/7/S2B_31WES_20250717_0_L1C\",\"earthsearch:payload_id\":\"roda-sentinel2/workflow-sentinel2-to-stac/a05535291dfc9b73e77bce94b796fa3d\",\"processing:software\":{\"sentinel2-to-stac\":\"2025.03.06\"},\"updated\":\"2025-07-17T12:46:07.754Z\"},\"links\":[{\"rel\":\"self\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items/S2B_31WES_20250717_0_L1C\"},{\"rel\":\"canonical\",\"href\":\"s3://earthsearch-data/sentinel-2-l1c/31/W/ES/2025/7/S2B_31WES_20250717_0_L1C/S2B_31WES_20250717_0_L1C.json\",\"type\":\"application/json\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c\"},{\"rel\":\"collection\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"thumbnail\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items/S2B_31WES_20250717_0_L1C/thumbnail\"}],\"assets\":{\"blue\":{\"href\":\"s3://sentinel-s2-l1c/tiles/31/W/ES/2025/7/17/0/B02.jp2\",\"type\":\"image/jp2\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cirrus\":{\"href\":\"s3://sentinel-s2-l1c/tiles/31/W/ES/2025/7/17/0/B10.jp2\",\"type\":\"image/jp2\",\"title\":\"Cirrus - 60m\",\"eo:bands\":[{\"name\":\"B10\",\"common_name\":\"cirrus\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,499980,0,-60,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"href\":\"s3://sentinel-s2-l1c/tiles/31/W/ES/2025/7/17/0/B01.jp2\",\"type\":\"image/jp2\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,499980,0,-60,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"href\":\"s3://sentinel-s2-l1c/tiles/31/W/ES/2025/7/17/0/metadata.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"href\":\"s3://sentinel-s2-l1c/tiles/31/W/ES/2025/7/17/0/B03.jp2\",\"type\":\"image/jp2\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"href\":\"s3://sentinel-s2-l1c/tiles/31/W/ES/2025/7/17/0/B08.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"href\":\"s3://sentinel-s2-l1c/tiles/31/W/ES/2025/7/17/0/B8A.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"href\":\"s3://sentinel-s2-l1c/tiles/31/W/ES/2025/7/17/0/B09.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,499980,0,-60,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"product_metadata\":{\"href\":\"s3://sentinel-s2-l1c/tiles/31/W/ES/2025/7/17/0/product_metadata.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"red\":{\"href\":\"s3://sentinel-s2-l1c/tiles/31/W/ES/2025/7/17/0/B04.jp2\",\"type\":\"image/jp2\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"href\":\"s3://sentinel-s2-l1c/tiles/31/W/ES/2025/7/17/0/B05.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"href\":\"s3://sentinel-s2-l1c/tiles/31/W/ES/2025/7/17/0/B06.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"href\":\"s3://sentinel-s2-l1c/tiles/31/W/ES/2025/7/17/0/B07.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"href\":\"s3://sentinel-s2-l1c/tiles/31/W/ES/2025/7/17/0/B11.jp2\",\"type\":\"image/jp2\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"href\":\"s3://sentinel-s2-l1c/tiles/31/W/ES/2025/7/17/0/B12.jp2\",\"type\":\"image/jp2\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,7700040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"tileinfo_metadata\":{\"href\":\"s3://sentinel-s2-l1c/tiles/31/W/ES/2025/7/17/0/tileInfo.json\",\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"href\":\"s3://sentinel-s2-l1c/tiles/31/W/ES/2025/7/17/0/TCI.jp2\",\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,7700040],\"roles\":[\"visual\"]}},\"collection\":\"sentinel-2-l1c\"},{\"type\":\"Feature\",\"stac_version\":\"1.0.0\",\"id\":\"S2B_T32WNE_20250717T112116_L2A\",\"properties\":{\"created\":\"2025-07-17T12:44:00.206Z\",\"platform\":\"sentinel-2b\",\"constellation\":\"sentinel-2\",\"instruments\":[\"msi\"],\"eo:cloud_cover\":0,\"proj:epsg\":32632,\"proj:centroid\":{\"lat\":71.15153,\"lon\":9.26662},\"mgrs:utm_zone\":32,\"mgrs:latitude_band\":\"W\",\"mgrs:grid_square\":\"NE\",\"grid:code\":\"MGRS-32WNE\",\"view:azimuth\":117.51258289412162,\"view:incidence_angle\":10.29144095849103,\"view:sun_azimuth\":179.162457967219,\"view:sun_elevation\":39.4999034124239,\"s2:tile_id\":\"S2B_OPER_MSI_L2A_TL_2BPS_20250717T121711_A043678_T32WNE_N05.11\",\"s2:degraded_msi_data_percentage\":0,\"s2:nodata_pixel_percentage\":98.492491,\"s2:saturated_defective_pixel_percentage\":0,\"s2:cloud_shadow_percentage\":0,\"s2:vegetation_percentage\":0,\"s2:not_vegetated_percentage\":0,\"s2:water_percentage\":100,\"s2:unclassified_percentage\":0,\"s2:medium_proba_clouds_percentage\":0,\"s2:high_proba_clouds_percentage\":0,\"s2:thin_cirrus_percentage\":0,\"s2:snow_ice_percentage\":0,\"s2:product_type\":\"S2MSI2A\",\"s2:processing_baseline\":\"05.11\",\"s2:product_uri\":\"S2B_MSIL2A_20250717T112119_N0511_R037_T32WNE_20250717T121711.SAFE\",\"s2:generation_time\":\"2025-07-17T12:17:11.000000Z\",\"s2:datatake_id\":\"GS2B_20250717T112119_043678_N05.11\",\"s2:datatake_type\":\"INS-NOBS\",\"s2:datastrip_id\":\"S2B_OPER_MSI_L2A_DS_2BPS_20250717T121711_S20250717T112116_N05.11\",\"s2:reflectance_conversion_factor\":0.967718180845495,\"datetime\":\"2025-07-17T11:21:21.471000Z\",\"earthsearch:payload_id\":\"roda-sentinel-2-c1-l2a/workflow-sentinel-2-c1-l2a-to-stac/01f1c47c783b1672f38d23c85a941e7f\",\"storage:platform\":\"AWS\",\"storage:region\":\"us-west-2\",\"storage:requester_pays\":false,\"processing:software\":{\"sentinel-2-c1-l2a-to-stac\":\"v2025.06.17\"},\"updated\":\"2025-07-17T12:44:00.206Z\"},\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[8.999474016345971,71.11606007666093],[9.80092641208958,71.11487318451336],[8.999471114153323,71.22364670591139],[8.999474016345971,71.11606007666093]]]},\"links\":[{\"rel\":\"self\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items/S2B_T32WNE_20250717T112116_L2A\"},{\"rel\":\"canonical\",\"href\":\"s3://e84-earth-search-sentinel-data/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/S2B_T32WNE_20250717T112116_L2A.json\",\"type\":\"application/json\"},{\"rel\":\"via\",\"href\":\"s3://sentinel-s2-l2a/tiles/32/W/NE/2025/7/17/0/metadata.xml\",\"type\":\"application/xml\",\"title\":\"Granule Metadata in Sinergize RODA Archive\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a\"},{\"rel\":\"collection\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"thumbnail\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items/S2B_T32WNE_20250717T112116_L2A/thumbnail\"}],\"assets\":{\"red\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/B04.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12206abefff00ca930bbbb72f6e7c4312051736d8bc69d919ac475dc2b0444e0148a\",\"file:size\":2351265,\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/B03.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12201a9216a1024ed3fb03286292faa5544c23f1f783eb16c8bf954ca91779571f56\",\"file:size\":2516731,\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/B02.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220738cc1ff98f32d3e67a15b510f9de817d443104fdbdba13891a8a2a294cad42d\",\"file:size\":2690267,\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/TCI.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,8000040],\"file:checksum\":\"1220a6bbcbf5049f2a9fad431f7924e8d36df4236b2fa6ed1323c2961af7cd781fd3\",\"file:size\":2890377,\"roles\":[\"visual\"]},\"nir\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/B08.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220f2bfb068274ef4d17c07f46f059b625759a63ad1a9b25239c86974c5533944e2\",\"file:size\":2334757,\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/B12.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"122055a399812ae0b5c38af30648bc86e9e34ec49079a161a68cd200a402ac362dd0\",\"file:size\":552097,\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/B06.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220c64b01b6c983293329c4db59bc42f9550ce1fdcdb7262bcc43c8fd41698e99fb\",\"file:size\":582831,\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/B07.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12200a3928440b3ee84f6b9f92f864ebe2311891ebe28a8f4a310718f6e1cf1b61c1\",\"file:size\":602566,\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/B05.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220c51d2fb0a1497132a569ab138574d7983adfc792ea09deb1dbdd34aae64d6777\",\"file:size\":585037,\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/B11.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220e3e26bfd50358bb1e14b4681ccaa52746ce6396e927a115d8d184864906cb766\",\"file:size\":536509,\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/WVP.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"file:checksum\":\"1220ab51bf628b97a60ffde4d9135e0d0b3b3a114b29fb3eb84c8c4cce73f0707022\",\"file:size\":95845,\"roles\":[\"data\"]},\"nir08\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/B8A.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12206762440ec69001b3a0a2c5c861d64c0d44fcec208e58167470bcd7be7975e12c\",\"file:size\":604515,\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/SCL.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"file:checksum\":\"1220726d6b938626a765836631d53097689b772068d63c1221419b22540bf01442a7\",\"file:size\":59015,\"roles\":[\"data\"]},\"aot\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/AOT.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"file:checksum\":\"12206102421ba191c2849d16f2f2257a279a66742074b4c70c51b0d467f6cfde2b1a\",\"file:size\":100254,\"roles\":[\"data\"]},\"coastal\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/B01.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,499980,0,-60,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"12206f83e21131a9c1c61511fdff92dab3f5fc3e09a13025896c463f006d8403294a\",\"file:size\":72756,\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/B09.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,499980,0,-60,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"file:checksum\":\"1220b55a00338f0aba235c8adc57b035454ea9b178cf2c607a4bd80e336724408ab0\",\"file:size\":55567,\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/CLD_20m.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"file:checksum\":\"1220e121f84e7cc93df76b841b545ff5f7ee4e7c767b92b0fe52b6de481a85798a08\",\"file:size\":53931,\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/SNW_20m.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"file:checksum\":\"1220e121f84e7cc93df76b841b545ff5f7ee4e7c767b92b0fe52b6de481a85798a08\",\"file:size\":53931,\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/L2A_PVI.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"gsd\":320,\"proj:shape\":[343,343],\"proj:transform\":[320,0,499980,0,-320,8000040],\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"file:checksum\":\"12206982636c444e34729b8a77a252b163ae75e1b28c12c485704545b9d2843e5cb7\",\"file:size\":6701,\"roles\":[\"overview\"]},\"granule_metadata\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/metadata.xml\",\"type\":\"application/xml\",\"file:checksum\":\"1220c94e16a75563d3529f071dcdc8d38d1757cbe22f89bdc2823b3f2d2c859d888f\",\"file:size\":179459,\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/tileInfo.json\",\"type\":\"application/json\",\"file:checksum\":\"12207ee683133f3391902b7547753e017d3fa524c80ecd927e069d098c3724f28fd6\",\"file:size\":1505,\"roles\":[\"metadata\"]},\"product_metadata\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/product_metadata.xml\",\"type\":\"application/xml\",\"file:checksum\":\"1220e9afa1128493194ece5b743e54b44c5c80e9ffb795c76c0d5b234dc2baf4e61f\",\"file:size\":54820,\"roles\":[\"metadata\"]},\"thumbnail\":{\"href\":\"https://e84-earth-search-sentinel-data.s3.us-west-2.amazonaws.com/sentinel-2-c1-l2a/32/W/NE/2025/7/S2B_T32WNE_20250717T112116_L2A/L2A_PVI.jpg\",\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"file:checksum\":\"122078c7663829dd085c09feeda52eac13931c49d2c167698b6e99449ebf91296b1c\",\"file:size\":2660,\"roles\":[\"thumbnail\"]}},\"bbox\":[8.999471,71.114873,9.800926,71.223647],\"stac_extensions\":[\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\",\"https://stac-extensions.github.io/grid/v1.1.0/schema.json\",\"https://stac-extensions.github.io/mgrs/v1.0.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/sentinel-2/v1.0.0/schema.json\",\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\"],\"collection\":\"sentinel-2-c1-l2a\"},{\"type\":\"Feature\",\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.1.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/grid/v1.1.0/schema.json\",\"https://stac-extensions.github.io/sentinel-2/v1.0.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/mgrs/v1.0.0/schema.json\"],\"id\":\"S2B_32WNE_20250717_0_L2A\",\"geometry\":{\"type\":\"Polygon\",\"coordinates\":[[[8.999474016345971,71.11606007666093],[9.80092641208958,71.11487318451336],[8.999471114153323,71.22364670591139],[8.999474016345971,71.11606007666093]]]},\"bbox\":[8.999471,71.114873,9.800926,71.223647],\"properties\":{\"created\":\"2025-07-17T12:48:15.270Z\",\"platform\":\"sentinel-2b\",\"constellation\":\"sentinel-2\",\"instruments\":[\"msi\"],\"eo:cloud_cover\":0,\"proj:epsg\":32632,\"proj:centroid\":{\"lat\":71.15153,\"lon\":9.26662},\"mgrs:utm_zone\":32,\"mgrs:latitude_band\":\"W\",\"mgrs:grid_square\":\"NE\",\"grid:code\":\"MGRS-32WNE\",\"view:azimuth\":117.51258289412162,\"view:incidence_angle\":10.29144095849103,\"view:sun_azimuth\":179.162457967219,\"view:sun_elevation\":39.4999034124239,\"s2:tile_id\":\"S2B_OPER_MSI_L2A_TL_2BPS_20250717T121711_A043678_T32WNE_N05.11\",\"s2:degraded_msi_data_percentage\":0,\"s2:nodata_pixel_percentage\":98.492491,\"s2:saturated_defective_pixel_percentage\":0,\"s2:cloud_shadow_percentage\":0,\"s2:vegetation_percentage\":0,\"s2:not_vegetated_percentage\":0,\"s2:water_percentage\":100,\"s2:unclassified_percentage\":0,\"s2:medium_proba_clouds_percentage\":0,\"s2:high_proba_clouds_percentage\":0,\"s2:thin_cirrus_percentage\":0,\"s2:snow_ice_percentage\":0,\"s2:product_type\":\"S2MSI2A\",\"s2:processing_baseline\":\"05.11\",\"s2:product_uri\":\"S2B_MSIL2A_20250717T112119_N0511_R037_T32WNE_20250717T121711.SAFE\",\"s2:generation_time\":\"2025-07-17T12:17:11.000000Z\",\"s2:datatake_id\":\"GS2B_20250717T112119_043678_N05.11\",\"s2:datatake_type\":\"INS-NOBS\",\"s2:datastrip_id\":\"S2B_OPER_MSI_L2A_DS_2BPS_20250717T121711_S20250717T112116_N05.11\",\"s2:reflectance_conversion_factor\":0.967718180845495,\"datetime\":\"2025-07-17T11:21:21.471000Z\",\"s2:sequence\":\"0\",\"earthsearch:s3_path\":\"s3://sentinel-cogs/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A\",\"earthsearch:payload_id\":\"roda-sentinel2/workflow-sentinel2-to-stac/a874394ea338c65e7783e57e0ed35c5b\",\"earthsearch:boa_offset_applied\":true,\"processing:software\":{\"sentinel2-to-stac\":\"2025.03.06\"},\"updated\":\"2025-07-17T12:48:15.270Z\"},\"links\":[{\"rel\":\"self\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items/S2B_32WNE_20250717_0_L2A\"},{\"rel\":\"canonical\",\"href\":\"s3://sentinel-cogs/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A/S2B_32WNE_20250717_0_L2A.json\",\"type\":\"application/json\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\"},{\"rel\":\"derived_from\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items/S2B_32WNE_20250717_0_L1C\",\"type\":\"application/geo+json\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a\"},{\"rel\":\"collection\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"thumbnail\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items/S2B_32WNE_20250717_0_L2A/thumbnail\"}],\"assets\":{\"aot\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A/AOT.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"blue\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A/B02.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/W/NE/2025/7/17/0/qi/CLD_20m.jp2\",\"type\":\"image/jp2\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"coastal\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A/B01.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,499980,0,-60,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A/granule_metadata.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A/B03.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A/B08.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A/B8A.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A/B09.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,499980,0,-60,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"product_metadata\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/W/NE/2025/7/17/0/product_metadata.xml\",\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"red\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A/B04.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A/B05.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A/B06.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A/B07.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A/SCL.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"snow\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/W/NE/2025/7/17/0/qi/SNW_20m.jp2\",\"type\":\"image/jp2\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"swir16\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A/B11.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A/B12.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"tileinfo_metadata\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A/tileinfo_metadata.json\",\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A/TCI.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,8000040],\"roles\":[\"visual\"]},\"wvp\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A/WVP.tif\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"thumbnail\":{\"href\":\"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/W/NE/2025/7/S2B_32WNE_20250717_0_L2A/preview.jpg\",\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]},\"aot-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/W/NE/2025/7/17/0/R20m/AOT.jp2\",\"type\":\"image/jp2\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"blue-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/W/NE/2025/7/17/0/R10m/B02.jp2\",\"type\":\"image/jp2\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"coastal-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/W/NE/2025/7/17/0/R60m/B01.jp2\",\"type\":\"image/jp2\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,499980,0,-60,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/W/NE/2025/7/17/0/R10m/B03.jp2\",\"type\":\"image/jp2\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/W/NE/2025/7/17/0/R10m/B08.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir08-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/W/NE/2025/7/17/0/R20m/B8A.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/W/NE/2025/7/17/0/R60m/B09.jp2\",\"type\":\"image/jp2\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,499980,0,-60,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"red-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/W/NE/2025/7/17/0/R10m/B04.jp2\",\"type\":\"image/jp2\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/W/NE/2025/7/17/0/R20m/B05.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/W/NE/2025/7/17/0/R20m/B06.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/W/NE/2025/7/17/0/R20m/B07.jp2\",\"type\":\"image/jp2\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/W/NE/2025/7/17/0/R20m/SCL.jp2\",\"type\":\"image/jp2\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"swir16-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/W/NE/2025/7/17/0/R20m/B11.jp2\",\"type\":\"image/jp2\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/W/NE/2025/7/17/0/R20m/B12.jp2\",\"type\":\"image/jp2\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/W/NE/2025/7/17/0/R10m/TCI.jp2\",\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,499980,0,-10,8000040],\"roles\":[\"visual\"]},\"wvp-jp2\":{\"href\":\"s3://sentinel-s2-l2a/tiles/32/W/NE/2025/7/17/0/R20m/WVP.jp2\",\"type\":\"image/jp2\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,499980,0,-20,8000040],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]}},\"collection\":\"sentinel-2-l2a\"}],\"links\":[{\"rel\":\"next\",\"title\":\"Next page of Items\",\"method\":\"POST\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/search\",\"merge\":false,\"body\":{\"next\":\"2025-07-17T11:21:21.471000Z,S2B_32WNE_20250717_0_L2A,sentinel-2-l2a\"}},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"}]}" headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '13387' Content-Type: - application/geo+json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:49:50 GMT Via: - 1.1 f923e65cfb5d73f11ea9a89d42fad5fc.cloudfront.net (CloudFront) X-Amz-Cf-Id: - tiKOh_bCEPjpFFy27OFqXKzOpe7aq77U2budIGMUDaxMEAPNGkl0Lw== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f16e-28f470616bb80f7c22e5db3f;Parent=76ca34aa1bf802fa;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"27c18-BK/LTcsQ5R3wTLGD8uCic+UmOZA" x-amz-apigw-id: - N2qpRFCMvHcEaMA= x-amzn-Remapped-content-length: - '162840' x-amzn-RequestId: - eb650624-3400-4389-a4dc-8acd25a59cdb x-powered-by: - Express status: code: 200 message: OK version: 1 TestCLISearch.test_intersects[inprocess-netherlands_aoi.json].yaml000066400000000000000000165740031503646565400362510ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_cliinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","https://api.stacspec.org/v1.0.0/collections","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","https://api.stacspec.org/v1.0.0/item-search#query"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3362' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:49:51 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T124950Z-167d46d96d8ttf9rhC1DENb9c80000000seg000000002rxm status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","https://api.stacspec.org/v1.0.0/collections","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","https://api.stacspec.org/v1.0.0/item-search#query"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3362' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:49:52 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T124951Z-167d46d96d8t4qtmhC1DENgtus0000000rsg000000000cr2 status: code: 200 message: OK - request: body: '{"collections": ["landsat-8-c2-l2"], "intersects": {"type": "Polygon", "coordinates": [[[6.42425537109375, 53.174765470134616], [7.344360351562499, 53.174765470134616], [7.344360351562499, 53.67393435835391], [6.42425537109375, 53.67393435835391], [6.42425537109375, 53.174765470134616]]]}}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '290' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"LC08_L2SP_197023_20220324_02_T1","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20220324_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_SR_B1.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_SR_B2.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_SR_B3.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_SR_B4.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_SR_B5.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_SR_B6.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_SR_B7.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_ST_QA.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_ST_B10.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_ST_DRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_ST_EMIS.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_ST_EMSD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_ST_TRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_ST_URAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_ST_CDIST.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220324_20220330_02_T1/LC08_L2SP_197023_20220324_20220330_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.2661024,54.2077659],[9.0724345,53.6855485],[8.1759883,51.9629194],[5.3740822,52.4936092],[6.2661024,54.2077659]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-03-24T10:27:05.856308Z","platform":"landsat-8","proj:bbox":[263085.0,5762385.0,504915.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.99,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232022083LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":158.04122582,"view:sun_elevation":36.37993604,"landsat:cloud_cover_land":0.59,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20220324_02_T1","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20220324_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220324_20220330_02_T1/LC08_L2SP_197022_20220324_20220330_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.9310956,55.6010923],[9.8407813,55.0877822],[8.9196315,53.3795694],[6.0149144,53.9017375],[6.9310956,55.6010923]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-03-24T10:26:41.977977Z","platform":"landsat-8","proj:bbox":[311685.0,5918085.0,553215.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.91,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222022083LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":159.12021346,"view:sun_elevation":35.19777292,"landsat:cloud_cover_land":1.25,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_196023_20220317_02_T2","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_196023_20220317_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_SR_B1.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367785.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_SR_B2.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367785.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_SR_B3.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367785.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_SR_B4.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367785.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_SR_B5.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367785.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_SR_B6.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367785.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_SR_B7.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367785.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_ST_QA.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367785.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_ST_B10.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367785.0,0.0,-30.0,6003915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_ST_DRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367785.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_ST_EMIS.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367785.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_ST_EMSD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367785.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_ST_TRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367785.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_ST_URAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367785.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_QA_PIXEL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367785.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_ST_ATRAN.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367785.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_ST_CDIST.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367785.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_QA_RADSAT.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367785.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367785.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220317_20220322_02_T2/LC08_L2SP_196023_20220317_20220322_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[7.8062053,54.171717],[10.6307649,53.6960775],[9.7956024,51.9975305],[6.9759693,52.4822203],[7.8062053,54.171717]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-03-17T10:21:00.495016Z","platform":"landsat-8","proj:bbox":[367785.0,5762385.0,606615.0,6003915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81960232022076LGN00","landsat:wrs_path":"196","landsat:wrs_type":"2","view:sun_azimuth":158.20105926,"view:sun_elevation":33.57236919,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20220315_02_T1","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20220315_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220315_20220322_02_T1/LC08_L2SP_198023_20220315_20220322_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.6759802,54.1845995],[7.5662733,53.7636577],[6.8397151,51.9873005],[3.9550651,52.4192085],[4.6759802,54.1845995]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-03-15T10:33:23.445244Z","platform":"landsat-8","proj:bbox":[565185.0,5768385.0,798615.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":88.43,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232022074LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":158.25124902,"view:sun_elevation":32.77503329,"landsat:cloud_cover_land":95.73,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20220315_02_T2","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20220315_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_SR_B1.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_SR_B2.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_SR_B3.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_SR_B4.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_SR_B5.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_SR_B6.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_SR_B7.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_ST_QA.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_ST_B10.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_ST_DRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_ST_EMIS.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_ST_EMSD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_ST_TRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_ST_URAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_ST_CDIST.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220315_20220322_02_T2/LC08_L2SP_198022_20220315_20220322_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.3927969,55.6378074],[8.309297,55.0758045],[7.3135782,53.3446095],[4.4015363,53.9149085],[5.3927969,55.6378074]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-03-15T10:32:59.562676Z","platform":"landsat-8","proj:bbox":[209985.0,5919285.0,454215.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":21.51,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222022074LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":159.25176335,"view:sun_elevation":31.59026462,"landsat:cloud_cover_land":80.07,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20220308_02_T1","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20220308_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_SR_B1.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_SR_B2.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_SR_B3.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_SR_B4.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_SR_B5.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_SR_B6.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_SR_B7.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_ST_QA.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_ST_B10.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262785.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_ST_DRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_ST_EMIS.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_ST_EMSD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_ST_TRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_ST_URAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_ST_CDIST.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220308_20220315_02_T1/LC08_L2SP_197023_20220308_20220315_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.2616239,54.2079015],[9.0676831,53.6853873],[8.1707902,51.9626845],[5.3691691,52.4936655],[6.2616239,54.2079015]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-03-08T10:27:16.063280Z","platform":"landsat-8","proj:bbox":[262785.0,5762385.0,504615.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":1.04,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232022067LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":158.45482906,"view:sun_elevation":29.99051968,"landsat:cloud_cover_land":1.19,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20220308_02_T1","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20220308_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220308_20220315_02_T1/LC08_L2SP_197022_20220308_20220315_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.9266754,55.6009986],[9.8361174,55.0873781],[8.9144931,53.3791251],[6.0100385,53.9015964],[6.9266754,55.6009986]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-03-08T10:26:52.189186Z","platform":"landsat-8","proj:bbox":[311385.0,5918085.0,552915.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.23,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222022067LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":159.39796797,"view:sun_elevation":28.80364841,"landsat:cloud_cover_land":0.39,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20220220_02_T2","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20220220_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220220_20220301_02_T2/LC08_L2SP_197023_20220220_20220301_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.2850714,54.2074556],[9.0910971,53.6855166],[8.1948443,51.963185],[5.3932487,52.4935934],[6.2850714,54.2074556]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-02-20T10:27:18.395242Z","platform":"landsat-8","proj:bbox":[264285.0,5762385.0,506115.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.99,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232022051LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":159.18687978,"view:sun_elevation":23.94796989,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20220220_02_T2","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20220220_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220220_20220301_02_T2/LC08_L2SP_197022_20220220_20220301_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.950353,55.6006497],[9.8599279,55.0876021],[8.9389972,53.3797759],[6.0344077,53.9016817],[6.950353,55.6006497]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-02-20T10:26:54.516911Z","platform":"landsat-8","proj:bbox":[312885.0,5918085.0,554415.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":34.27,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222022051LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":160.01505157,"view:sun_elevation":22.75128995,"landsat:cloud_cover_land":22.96,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_196023_20220213_02_T1","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_196023_20220213_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_SR_B1.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_SR_B2.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_SR_B3.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_SR_B4.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_SR_B5.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_SR_B6.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_SR_B7.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_ST_QA.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_ST_B10.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_ST_DRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_ST_EMIS.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_ST_EMSD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_ST_TRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_ST_URAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_QA_PIXEL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_ST_ATRAN.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_ST_CDIST.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_QA_RADSAT.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/196/023/LC08_L2SP_196023_20220213_20220222_02_T1/LC08_L2SP_196023_20220213_20220222_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[7.8293971,54.1709871],[10.6539677,53.6957722],[9.8191181,51.9976208],[6.9994934,52.4818927],[7.8293971,54.1709871]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-02-13T10:21:11.186669Z","platform":"landsat-8","proj:bbox":[369285.0,5762385.0,608115.0,6003915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.96,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81960232022044LGN00","landsat:wrs_path":"196","landsat:wrs_type":"2","view:sun_azimuth":159.65044426,"view:sun_elevation":21.54083249,"landsat:cloud_cover_land":99.95,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20220211_02_T1","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20220211_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220211_20220222_02_T1/LC08_L2SP_198023_20220211_20220222_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.6980971,54.1848208],[7.5892775,53.7639173],[6.8628456,51.9869714],[3.9773355,52.4188555],[4.6980971,54.1848208]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-02-11T10:33:33.637001Z","platform":"landsat-8","proj:bbox":[566685.0,5768385.0,800115.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":66.76,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232022042LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":159.79901673,"view:sun_elevation":20.89149583,"landsat:cloud_cover_land":76.81,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20220211_02_T2","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20220211_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_SR_B1.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_SR_B2.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_SR_B3.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_SR_B4.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_SR_B5.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_SR_B6.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_SR_B7.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_ST_QA.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_ST_B10.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_ST_DRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_ST_EMIS.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_ST_EMSD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_ST_TRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_ST_URAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_ST_CDIST.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220211_20220222_02_T2/LC08_L2SP_198022_20220211_20220222_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.4157741,55.637345],[8.3315621,55.0757569],[7.3365378,53.3449935],[4.4252286,53.9148751],[5.4157741,55.637345]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-02-11T10:33:09.754433Z","platform":"landsat-8","proj:bbox":[211485.0,5919285.0,455715.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":51.81,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222022042LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":160.57238614,"view:sun_elevation":19.68641048,"landsat:cloud_cover_land":98.29,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20220204_02_T2","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20220204_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220204_20220212_02_T2/LC08_L2SP_197023_20220204_20220212_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.286552,54.207397],[9.0927984,53.6852903],[8.1963515,51.963012],[5.3945573,52.49358],[6.286552,54.207397]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-02-04T10:27:24.675146Z","platform":"landsat-8","proj:bbox":[264285.0,5762385.0,506115.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.93,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232022035LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":160.38597259,"view:sun_elevation":18.75101479,"landsat:cloud_cover_land":99.91,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20220204_02_T2","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20220204_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/022/LC08_L2SP_197022_20220204_20220212_02_T2/LC08_L2SP_197022_20220204_20220212_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.9521674,55.6007537],[9.8619855,55.0875431],[8.9408382,53.3798586],[6.0360263,53.9019143],[6.9521674,55.6007537]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-02-04T10:27:00.792578Z","platform":"landsat-8","proj:bbox":[312885.0,5918085.0,554415.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222022035LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":161.12163133,"view:sun_elevation":17.53804609,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20220126_02_T2","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20220126_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/023/LC08_L2SP_198023_20220126_20220204_02_T2/LC08_L2SP_198023_20220126_20220204_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.7097677,54.1849541],[7.6018947,53.7641727],[6.8756641,51.9869372],[3.9892223,52.4187148],[4.7097677,54.1849541]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-01-26T10:33:36.342214Z","platform":"landsat-8","proj:bbox":[567585.0,5768385.0,801015.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232022026LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":161.28090389,"view:sun_elevation":16.37960971,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20220126_02_T2","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20220126_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_SR_B1.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_SR_B2.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_SR_B3.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_SR_B4.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_SR_B5.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_SR_B6.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_SR_B7.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_ST_QA.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_ST_B10.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_ST_DRAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_ST_EMIS.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_ST_EMSD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_ST_TRAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_ST_URAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_QA_PIXEL.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_ST_ATRAN.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_ST_CDIST.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_QA_RADSAT.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/198/022/LC08_L2SP_198022_20220126_20220204_02_T2/LC08_L2SP_198022_20220126_20220204_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.4283818,55.6369656],[8.3438637,55.0755173],[7.3494201,53.3448984],[4.4384336,53.9146514],[5.4283818,55.6369656]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-01-26T10:33:12.459648Z","platform":"landsat-8","proj:bbox":[212085.0,5919285.0,456615.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":97.91,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222022026LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":161.97550207,"view:sun_elevation":15.15474644,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20220119_02_T2","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20220119_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/197/023/LC08_L2SP_197023_20220119_20220127_02_T2/LC08_L2SP_197023_20220119_20220127_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.2932805,54.2073174],[9.0999301,53.6852056],[8.2034941,51.9631933],[5.401316,52.4937844],[6.2932805,54.2073174]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-01-19T10:27:28.668933Z","platform":"landsat-8","proj:bbox":[264885.0,5762385.0,506715.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":93.11,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232022019LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":162.06378867,"view:sun_elevation":14.86943991,"landsat:cloud_cover_land":92.16,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20211202_02_T1","bbox":[5.39917169,51.96236538,9.10294969,54.20751462],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20211202_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264885.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211202_20211209_02_T1/LC08_L2SP_197023_20211202_20211209_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.2948776,54.2074221],[9.1013438,53.6850432],[8.2042889,51.9630991],[5.4022578,52.4939601],[6.2948776,54.2074221]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-12-02T10:27:38.415939Z","platform":"landsat-8","proj:bbox":[264885.0,5762385.0,506715.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":57.25,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021336LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":167.44149372,"view:sun_elevation":14.01755784,"landsat:cloud_cover_land":58.72,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20211123_02_T1","bbox":[3.99023161,51.98425523,7.60967938,54.18688477],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20211123_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211123_20211201_02_T1/LC08_L2SP_198023_20211123_20211201_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.7132216,54.1852365],[7.6053165,53.7640237],[6.8785257,51.9867286],[3.9920811,52.4189327],[4.7132216,54.1852365]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-11-23T10:33:48.275902Z","platform":"landsat-8","proj:bbox":[567885.0,5768385.0,801315.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":30.75,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232021327LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":167.93998123,"view:sun_elevation":15.68482542,"landsat:cloud_cover_land":29.61,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20211123_02_T1","bbox":[4.43872469,53.34434551,8.35167781,55.63989449],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20211123_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211123_20211201_02_T1/LC08_L2SP_198022_20211123_20211201_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.4323872,55.6371063],[8.3476744,55.0754173],[7.3526911,53.3450284],[4.4418779,53.915034],[5.4323872,55.6371063]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-11-23T10:33:24.389099Z","platform":"landsat-8","proj:bbox":[212385.0,5919285.0,456915.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":21.09,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222021327LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":168.58517244,"view:sun_elevation":14.37882039,"landsat:cloud_cover_land":8.11,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20211116_02_T2","bbox":[5.41293168,51.96274537,9.1167497,54.20750463],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20211116_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211116_20211125_02_T2/LC08_L2SP_197023_20211116_20211125_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.306906,54.2073573],[9.1127209,53.6853313],[8.2159683,51.9635397],[5.4145947,52.4940375],[6.306906,54.2073573]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-11-16T10:27:37.044897Z","platform":"landsat-8","proj:bbox":[265785.0,5762385.0,507615.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021320LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":168.12216887,"view:sun_elevation":17.31036558,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20211116_02_T2","bbox":[6.05611451,53.37921536,9.88741787,55.60086464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20211116_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211116_20211125_02_T2/LC08_L2SP_197022_20211116_20211125_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.9735278,55.6005975],[9.8828647,55.0874807],[8.9614119,53.3802229],[6.0570635,53.9022066],[6.9735278,55.6005975]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-11-16T10:27:13.162329Z","platform":"landsat-8","proj:bbox":[314385.0,5918085.0,555915.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222021320LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":168.78536088,"view:sun_elevation":16.00259173,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20211107_02_T1","bbox":[3.9814816,51.98457523,7.60053938,54.18696477],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20211107_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211107_20211117_02_T1/LC08_L2SP_198023_20211107_20211117_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.7050867,54.1852504],[7.5960456,53.7638371],[6.8687284,51.9866874],[3.9834409,52.4190864],[4.7050867,54.1852504]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-11-07T10:33:51.513509Z","platform":"landsat-8","proj:bbox":[567285.0,5768385.0,800715.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":50.04,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232021311LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":168.06410154,"view:sun_elevation":19.76107667,"landsat:cloud_cover_land":48.28,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20211107_02_T2","bbox":[4.42924469,53.34402551,8.34265781,55.63984449],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20211107_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211107_20211117_02_T2/LC08_L2SP_198022_20211107_20211117_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.424192,55.6373205],[8.3389582,55.0753822],[7.3432046,53.3447571],[4.4329088,53.9150086],[5.424192,55.6373205]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-11-07T10:33:27.630942Z","platform":"landsat-8","proj:bbox":[211785.0,5919285.0,456315.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":34.99,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222021311LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":168.75701916,"view:sun_elevation":18.45370646,"landsat:cloud_cover_land":3.99,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20211031_02_T1","bbox":[5.38977169,51.96210538,9.09375971,54.21021462],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20211031_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_SR_B1.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_SR_B2.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_SR_B3.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_SR_B4.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_SR_B5.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_SR_B6.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_SR_B7.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_ST_QA.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_ST_B10.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_ST_DRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_ST_EMIS.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_ST_EMSD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_ST_TRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_ST_URAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_ST_CDIST.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211031_20211109_02_T1/LC08_L2SP_197023_20211031_20211109_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.2868214,54.2074925],[9.0924195,53.684733],[8.1947146,51.9625146],[5.3935664,52.4937515],[6.2868214,54.2074925]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-10-31T10:27:42.311342Z","platform":"landsat-8","proj:bbox":[264285.0,5762385.0,506115.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":90.45,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021304LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":167.78683864,"view:sun_elevation":21.90513875,"landsat:cloud_cover_land":89.59,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20211031_02_T2","bbox":[6.03236452,53.37868536,9.86361787,55.60103464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20211031_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211031_20211109_02_T2/LC08_L2SP_197022_20211031_20211109_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.953654,55.6009331],[9.8625629,55.0871248],[8.9401528,53.3794631],[6.0362434,53.9021328],[6.953654,55.6009331]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-10-31T10:27:18.428774Z","platform":"landsat-8","proj:bbox":[312885.0,5918085.0,554415.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":96.91,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222021304LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":168.50873597,"view:sun_elevation":20.60065434,"landsat:cloud_cover_land":99.83,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_196023_20211024_02_T1","bbox":[6.99315157,51.99665526,10.6562597,54.17190474],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_196023_20211024_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_SR_B1.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_SR_B2.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_SR_B3.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_SR_B4.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_SR_B5.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_SR_B6.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_SR_B7.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_ST_QA.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_ST_B10.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_ST_DRAD.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_ST_EMIS.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_ST_EMSD.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_ST_TRAD.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_ST_URAD.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_QA_PIXEL.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_ST_ATRAN.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_ST_CDIST.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_QA_RADSAT.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20211024_20211103_02_T1/LC08_L2SP_196023_20211024_20211103_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[7.8287888,54.1712118],[10.6528378,53.6952733],[9.8166837,51.9972559],[6.9975999,52.4822508],[7.8287888,54.1712118]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-10-24T10:21:31.919762Z","platform":"landsat-8","proj:bbox":[368985.0,5762385.0,608115.0,6003915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.17,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81960232021297LGN00","landsat:wrs_path":"196","landsat:wrs_type":"2","view:sun_azimuth":167.29811213,"view:sun_elevation":24.21077376,"landsat:cloud_cover_land":0.17,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20211022_02_T2","bbox":[3.9727316,51.98489523,7.59138939,54.18704477],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20211022_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211022_20211103_02_T2/LC08_L2SP_198023_20211022_20211103_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.6988518,54.185448],[7.5895797,53.7638711],[6.8618491,51.9870594],[3.9768101,52.4196098],[4.6988518,54.185448]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-10-22T10:33:53.502519Z","platform":"landsat-8","proj:bbox":[566685.0,5768385.0,800115.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":61.26,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232021295LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":167.12272326,"view:sun_elevation":24.8903806,"landsat:cloud_cover_land":67.47,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20211022_02_T2","bbox":[4.42450469,53.34385551,8.33362781,55.63979449],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20211022_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_SR_B1.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_SR_B2.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_SR_B3.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_SR_B4.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_SR_B5.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_SR_B6.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_SR_B7.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_ST_QA.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_ST_B10.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_ST_DRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_ST_EMIS.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_ST_EMSD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_ST_TRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_ST_URAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_ST_CDIST.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211022_20211103_02_T2/LC08_L2SP_198022_20211022_20211103_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.4179255,55.6376104],[8.3331399,55.0753149],[7.336762,53.3447415],[4.4260449,53.9153347],[5.4179255,55.6376104]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-10-22T10:33:29.619951Z","platform":"landsat-8","proj:bbox":[211485.0,5919285.0,455715.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":16.57,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222021295LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":167.88987165,"view:sun_elevation":23.59306373,"landsat:cloud_cover_land":1.15,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20211015_02_T1","bbox":[5.38977169,51.96210538,9.09375971,54.21021462],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20211015_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_SR_B1.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_SR_B2.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_SR_B3.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_SR_B4.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_SR_B5.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_SR_B6.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_SR_B7.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_ST_QA.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_ST_B10.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_ST_DRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_ST_EMIS.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_ST_EMSD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_ST_TRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_ST_URAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_ST_CDIST.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20211015_20211025_02_T1/LC08_L2SP_197023_20211015_20211025_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.2869399,54.2076553],[9.0927834,53.684726],[8.1948713,51.9626469],[5.3934918,52.4940414],[6.2869399,54.2076553]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-10-15T10:27:42.026423Z","platform":"landsat-8","proj:bbox":[264285.0,5762385.0,506115.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":23.56,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021288LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":166.37376378,"view:sun_elevation":27.34811155,"landsat:cloud_cover_land":23.48,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20211015_02_T1","bbox":[6.03236452,53.37868536,9.86361787,55.60103464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20211015_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20211015_20211025_02_T1/LC08_L2SP_197022_20211015_20211025_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.9539009,55.6009471],[9.863125,55.0870096],[8.9405989,53.3794049],[6.036403,53.9021921],[6.9539009,55.6009471]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-10-15T10:27:18.143855Z","platform":"landsat-8","proj:bbox":[312885.0,5918085.0,554415.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":24.42,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222021288LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":167.18328714,"view:sun_elevation":26.05913688,"landsat:cloud_cover_land":20.32,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20211006_02_T1","bbox":[3.9814816,51.98457523,7.60053938,54.18696477],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20211006_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20211006_20211013_02_T1/LC08_L2SP_198023_20211006_20211013_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.7072922,54.1852936],[7.5988633,53.763638],[6.8712377,51.9867096],[3.9853536,52.4193389],[4.7072922,54.1852936]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-10-06T10:33:50.803175Z","platform":"landsat-8","proj:bbox":[567285.0,5768385.0,800715.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":55.13,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232021279LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":165.14492828,"view:sun_elevation":30.61530027,"landsat:cloud_cover_land":71.74,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20211006_02_T2","bbox":[4.43398469,53.34418551,8.34265781,55.63984449],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20211006_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_SR_B1.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_SR_B2.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_SR_B3.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_SR_B4.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_SR_B5.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_SR_B6.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_SR_B7.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_ST_QA.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_ST_B10.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_ST_DRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_ST_EMIS.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_ST_EMSD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_ST_TRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_ST_URAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_ST_CDIST.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20211006_20211013_02_T2/LC08_L2SP_198022_20211006_20211013_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.4266248,55.6371088],[8.3420593,55.0748521],[7.3459849,53.344558],[4.4350591,53.9151121],[5.4266248,55.6371088]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-10-06T10:33:26.920608Z","platform":"landsat-8","proj:bbox":[212085.0,5919285.0,456315.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":52.61,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222021279LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":166.01883675,"view:sun_elevation":29.34051952,"landsat:cloud_cover_land":98.69,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20210929_02_T2","bbox":[5.40376169,51.96249538,9.10754969,54.20750462],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20210929_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210929_20211012_02_T2/LC08_L2SP_197023_20210929_20211012_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.300623,54.2074059],[9.1070315,53.684784],[8.2096721,51.9630269],[5.407732,52.4941296],[6.300623,54.2074059]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-09-29T10:27:37.429913Z","platform":"landsat-8","proj:bbox":[265185.0,5762385.0,507015.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":96.19,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021272LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":163.99535661,"view:sun_elevation":33.19866011,"landsat:cloud_cover_land":95.96,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20210929_02_T1","bbox":[6.04661452,53.37900536,9.88265787,55.60089464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20210929_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_SR_B1.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_SR_B2.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_SR_B3.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_SR_B4.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_SR_B5.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_SR_B6.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_SR_B7.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_ST_QA.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_ST_B10.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_ST_DRAD.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_ST_EMIS.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_ST_EMSD.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_ST_TRAD.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_ST_URAD.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_ST_CDIST.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210929_20211012_02_T1/LC08_L2SP_197022_20210929_20211012_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.9674795,55.6006339],[9.8774668,55.0869004],[8.955379,53.3797193],[6.0504132,53.9023167],[6.9674795,55.6006339]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-09-29T10:27:13.547346Z","platform":"landsat-8","proj:bbox":[313785.0,5918085.0,555615.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":94.31,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222021272LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":164.92761844,"view:sun_elevation":31.93753899,"landsat:cloud_cover_land":87.25,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20210920_02_T1","bbox":[3.9990416,51.98661523,7.61882938,54.18680477],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20210920_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_SR_B1.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_SR_B2.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_SR_B3.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_SR_B4.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_SR_B5.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_SR_B6.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_SR_B7.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_ST_QA.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_ST_B10.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_ST_DRAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_ST_EMIS.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_ST_EMSD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_ST_TRAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_ST_URAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_ST_ATRAN.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_ST_CDIST.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210920_20210925_02_T1/LC08_L2SP_198023_20210920_20210925_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.7228307,54.1859427],[7.6155737,53.7644186],[6.8882747,51.9870377],[4.0012284,52.4195522],[4.7228307,54.1859427]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-09-20T10:33:45.127033Z","platform":"landsat-8","proj:bbox":[568485.0,5768685.0,801915.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":66.07,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232021263LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":162.31576155,"view:sun_elevation":36.50864425,"landsat:cloud_cover_land":63.8,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20210920_02_T2","bbox":[4.44851469,53.34467551,8.3607078,55.63725449],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20210920_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_SR_B1.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_SR_B2.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_SR_B3.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_SR_B4.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_SR_B5.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_SR_B6.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_SR_B7.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_ST_QA.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_ST_B10.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_ST_DRAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_ST_EMIS.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_ST_EMSD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_ST_TRAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_ST_URAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_QA_PIXEL.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_ST_ATRAN.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_ST_CDIST.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_QA_RADSAT.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210920_20210925_02_T2/LC08_L2SP_198022_20210920_20210925_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.4430738,55.6371505],[8.3581532,55.0751751],[7.36299,53.3451046],[4.4524142,53.9153843],[5.4430738,55.6371505]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-09-20T10:33:21.244465Z","platform":"landsat-8","proj:bbox":[212985.0,5919285.0,457515.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.96,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222021263LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":163.33458583,"view:sun_elevation":35.26847969,"landsat:cloud_cover_land":99.98,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20210913_02_T2","bbox":[5.41293168,51.96274537,9.1167497,54.20750463],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20210913_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210913_20210924_02_T2/LC08_L2SP_197023_20210913_20210924_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.3079777,54.2074508],[9.1147204,53.6849235],[8.2175196,51.9633888],[5.4152366,52.4944057],[6.3079777,54.2074508]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-09-13T10:27:33.363901Z","platform":"landsat-8","proj:bbox":[265785.0,5762385.0,507615.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":91.45,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021256LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":160.88125789,"view:sun_elevation":39.04392429,"landsat:cloud_cover_land":95.82,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20210913_02_T2","bbox":[6.05611451,53.37921536,9.88741787,55.60086464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20210913_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210913_20210924_02_T2/LC08_L2SP_197022_20210913_20210924_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.9749827,55.6005217],[9.8853014,55.0868995],[8.9634182,53.3799054],[6.058108,53.9023941],[6.9749827,55.6005217]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-09-13T10:27:09.481333Z","platform":"landsat-8","proj:bbox":[314385.0,5918085.0,555915.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":95.67,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222021256LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":161.97620404,"view:sun_elevation":37.82236343,"landsat:cloud_cover_land":96.48,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20210904_02_T1","bbox":[3.998981608200543,51.983925229053455,7.6188293791279715,54.186804770946544],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20210904_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210904_20210910_02_T1/LC08_L2SP_198023_20210904_20210910_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.72302245,54.18555233],[7.61587467,53.76392717],[6.88840871,51.98666349],[4.00123408,52.4192896],[4.72302245,54.18555233]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-09-04T10:33:42.069201Z","platform":"landsat-8","proj:bbox":[568485.0,5768385.0,801915.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":57.74,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232021247LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":158.95269502,"view:sun_elevation":42.20190449,"landsat:cloud_cover_land":35.6,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20210904_02_T2","bbox":[4.448204688309976,53.34467551223951,8.360707813651116,55.63995448776049],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20210904_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210904_20210910_02_T2/LC08_L2SP_198022_20210904_20210910_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.44354071,55.63717446],[8.35892484,55.07510467],[7.36351276,53.34513172],[4.45262406,53.91551473],[5.44354071,55.63717446]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-09-04T10:33:18.178162Z","platform":"landsat-8","proj:bbox":[212985.0,5919285.0,457515.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":65.29,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222021247LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":160.15690648,"view:sun_elevation":41.0060488,"landsat:cloud_cover_land":70.32,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20210828_02_T2","bbox":[5.4175116844169375,51.96286537385122,9.121349696700676,54.20749462614878],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20210828_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210828_20210901_02_T2/LC08_L2SP_197023_20210828_20210901_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.31257764,54.20737055],[9.11929441,53.6848864],[8.22211237,51.96349717],[5.41983215,52.49446138],[6.31257764,54.20737055]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-08-28T10:27:28.925591Z","platform":"landsat-8","proj:bbox":[266085.0,5762385.0,507915.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":95.78,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021240LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":157.4220808,"view:sun_elevation":44.54843336,"landsat:cloud_cover_land":96.24,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20210828_02_T2","bbox":[6.060864514414334,53.37931535715476,9.892177872321167,55.60082464284524],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20210828_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210828_20210901_02_T2/LC08_L2SP_197022_20210828_20210901_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.97973781,55.60044764],[9.89002062,55.08688273],[8.96815822,53.37997553],[6.06287511,53.90241122],[6.97973781,55.60044764]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-08-28T10:27:05.043023Z","platform":"landsat-8","proj:bbox":[314685.0,5918085.0,556215.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":93.61,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222021240LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":158.71805166,"view:sun_elevation":43.37462516,"landsat:cloud_cover_land":97.78,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20210819_02_T2","bbox":[4.003351609167372,51.983765229178516,7.623399377974572,54.18676477082148],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20210819_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210819_20210827_02_T2/LC08_L2SP_198023_20210819_20210827_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.72581717,54.18574335],[7.6186024,53.76412584],[6.8910457,51.98669245],[4.00392277,52.41931428],[4.72581717,54.18574335]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-08-19T10:33:37.360186Z","platform":"landsat-8","proj:bbox":[568785.0,5768385.0,802215.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":97.55,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232021231LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":155.50410757,"view:sun_elevation":47.37964901,"landsat:cloud_cover_land":99.81,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20210819_02_T2","bbox":[4.453264687344524,53.34483551160399,8.365227798632635,55.63728448839601],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20210819_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_SR_B1.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_SR_B2.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_SR_B3.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_SR_B4.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_SR_B5.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_SR_B6.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_SR_B7.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_ST_QA.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_ST_B10.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_ST_DRAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_ST_EMIS.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_ST_EMSD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_ST_TRAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_ST_URAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_QA_PIXEL.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_ST_ATRAN.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_ST_CDIST.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_QA_RADSAT.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210819_20210827_02_T2/LC08_L2SP_198022_20210819_20210827_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.44665939,55.63722177],[8.36134532,55.07519884],[7.36601129,53.34522144],[4.45580192,53.915566],[5.44665939,55.63722177]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-08-19T10:33:13.473382Z","platform":"landsat-8","proj:bbox":[213285.0,5919285.0,457815.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":12.72,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222021231LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":156.92604929,"view:sun_elevation":46.23370979,"landsat:cloud_cover_land":2.48,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20210812_02_T1","bbox":[5.4175116844169375,51.96286537385122,9.121349696700676,54.20749462614878],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20210812_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210812_20210819_02_T1/LC08_L2SP_197023_20210812_20210819_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.31292499,54.20738593],[9.11924505,53.68492091],[8.22191374,51.96342623],[5.42003085,52.49438172],[6.31292499,54.20738593]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-08-12T10:27:24.446239Z","platform":"landsat-8","proj:bbox":[266085.0,5762385.0,507915.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":6.04,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021224LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":154.10963285,"view:sun_elevation":49.41701092,"landsat:cloud_cover_land":5.48,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20210812_02_T1","bbox":[6.060864514414334,53.37931535715476,9.892177872321167,55.60082464284524],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20210812_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210812_20210819_02_T1/LC08_L2SP_197022_20210812_20210819_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.98019867,55.60051525],[9.89005522,55.08694843],[8.96800797,53.37999183],[6.0631387,53.90243345],[6.98019867,55.60051525]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-08-12T10:27:00.563671Z","platform":"landsat-8","proj:bbox":[314685.0,5918085.0,556215.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":39.58,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222021224LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":155.63207287,"view:sun_elevation":48.29232314,"landsat:cloud_cover_land":16.51,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20210803_02_T1","bbox":[4.003351609167372,51.983765229178516,7.623399377974572,54.18676477082148],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20210803_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210803_20210811_02_T1/LC08_L2SP_198023_20210803_20210811_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.72774279,54.18572236],[7.61998143,53.7641829],[6.89240824,51.98666785],[4.00580159,52.4192126],[4.72774279,54.18572236]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-08-03T10:33:31.818823Z","platform":"landsat-8","proj:bbox":[568785.0,5768385.0,802215.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":59.64,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232021215LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":152.54514778,"view:sun_elevation":51.78384145,"landsat:cloud_cover_land":79.75,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20210803_02_T2","bbox":[4.453264701540554,53.342145511566756,8.365267798632635,55.637284488433245],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20210803_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210803_20210811_02_T2/LC08_L2SP_198022_20210803_20210811_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.44865813,55.63697929],[8.36278431,55.07507172],[7.36736778,53.34504816],[4.45766651,53.91527195],[5.44865813,55.63697929]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-08-03T10:33:07.932019Z","platform":"landsat-8","proj:bbox":[213285.0,5918985.0,457815.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":55.07,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222021215LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":154.19646366,"view:sun_elevation":50.68334562,"landsat:cloud_cover_land":79.83,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20210727_02_T1","bbox":[5.422101683807313,51.96299537343794,9.125949697450826,54.20749462656206],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20210727_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210727_20210804_02_T1/LC08_L2SP_197023_20210727_20210804_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.31853525,54.20746371],[9.12439881,53.68516688],[8.22707214,51.96371041],[5.42564955,52.4944987],[6.31853525,54.20746371]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-07-27T10:27:17.777658Z","platform":"landsat-8","proj:bbox":[266385.0,5762385.0,508215.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":72.3,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021208LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":151.55684072,"view:sun_elevation":53.4030983,"landsat:cloud_cover_land":75.54,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20210727_02_T2","bbox":[6.065614514005511,53.379425356793384,9.896947872789193,55.60079464320661],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20210727_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210727_20210804_02_T2/LC08_L2SP_197022_20210727_20210804_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.98578187,55.60061261],[9.89522131,55.0872823],[8.97338326,53.38024757],[6.06893201,53.90244809],[6.98578187,55.60061261]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-07-27T10:26:53.895092Z","platform":"landsat-8","proj:bbox":[314985.0,5918085.0,556515.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":62.95,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222021208LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":153.30229593,"view:sun_elevation":52.31827909,"landsat:cloud_cover_land":73.42,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20210718_02_T1","bbox":[4.012171598047015,51.98612522944609,7.632549375524188,54.18668477055391],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20210718_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_SR_B1.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_SR_B2.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_SR_B3.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_SR_B4.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_SR_B5.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_SR_B6.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_SR_B7.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_ST_QA.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_ST_B10.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_ST_DRAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_ST_EMIS.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_ST_EMSD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_ST_TRAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_ST_URAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_ST_ATRAN.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_ST_CDIST.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210718_20210729_02_T1/LC08_L2SP_198023_20210718_20210729_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.7371449,54.18569237],[7.62937061,53.76435404],[6.9020115,51.98644361],[4.01544504,52.41878291],[4.7371449,54.18569237]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-07-18T10:33:23.574905Z","platform":"landsat-8","proj:bbox":[569385.0,5768685.0,802815.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":26.39,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232021199LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":150.66207811,"view:sun_elevation":55.16194102,"landsat:cloud_cover_land":6.26,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20210718_02_T1","bbox":[4.4674846989451265,53.342635509923355,8.374287801782343,55.63733449007665],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20210718_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_SR_B1.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_SR_B2.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_SR_B3.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_SR_B4.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_SR_B5.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_SR_B6.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_SR_B7.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_ST_QA.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_ST_B10.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_ST_DRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_ST_EMIS.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_ST_EMSD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_ST_TRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_ST_URAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_QA_PIXEL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_ST_ATRAN.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_ST_CDIST.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_QA_RADSAT.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210718_20210729_02_T1/LC08_L2SP_198022_20210718_20210729_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.45813761,55.63693887],[8.3718167,55.07540153],[7.37678925,53.34559115],[4.46760306,53.91544042],[5.45813761,55.63693887]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-07-18T10:32:59.688102Z","platform":"landsat-8","proj:bbox":[214185.0,5918985.0,458415.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":80.86,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222021199LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":152.51495762,"view:sun_elevation":54.09119537,"landsat:cloud_cover_land":2.81,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20210711_02_T1","bbox":[5.426681683196876,51.96312537304317,9.130549698198585,54.20748462695683],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20210711_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210711_20210720_02_T1/LC08_L2SP_197023_20210711_20210720_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.32107601,54.20744863],[9.12655216,53.68523974],[8.22923184,51.96379696],[5.42820625,52.49447926],[6.32107601,54.20744863]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-07-11T10:27:11.148447Z","platform":"landsat-8","proj:bbox":[266685.0,5762385.0,508515.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":57.28,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021192LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":150.30567933,"view:sun_elevation":56.25564405,"landsat:cloud_cover_land":65.84,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20210711_02_T1","bbox":[6.0703645136382836,53.37952535644508,9.90170787328794,55.60075464355492],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20210711_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210711_20210720_02_T1/LC08_L2SP_197022_20210711_20210720_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.98850609,55.60025191],[9.89748228,55.0869799],[8.97554304,53.38012978],[6.07158119,53.90227331],[6.98850609,55.60025191]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-07-11T10:26:47.270115Z","platform":"landsat-8","proj:bbox":[315285.0,5918085.0,556815.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":10.88,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222021192LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":152.22417902,"view:sun_elevation":55.19080669,"landsat:cloud_cover_land":27.85,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20210702_02_T1","bbox":[3.994601607248808,51.984085228934624,7.6142493803506905,54.186844771065374],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20210702_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210702_20210708_02_T1/LC08_L2SP_198023_20210702_20210708_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.7201915,54.18587095],[7.61158909,53.76421613],[6.88360856,51.98686407],[3.99789806,52.41950334],[4.7201915,54.18587095]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-07-02T10:33:21.321808Z","platform":"landsat-8","proj:bbox":[568185.0,5768385.0,801615.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":48.83,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232021183LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":150.29880673,"view:sun_elevation":57.26681902,"landsat:cloud_cover_land":75.95,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20210702_02_T2","bbox":[4.448514702881004,53.34198551212551,8.356237796927532,55.63722448787449],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20210702_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_SR_B1.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_SR_B2.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_SR_B3.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_SR_B4.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_SR_B5.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_SR_B6.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_SR_B7.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_ST_QA.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_ST_B10.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_ST_DRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_ST_EMIS.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_ST_EMSD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_ST_TRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_ST_URAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_ST_CDIST.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210702_20210708_02_T2/LC08_L2SP_198022_20210702_20210708_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.44086203,55.63699788],[8.35485955,55.07489976],[7.3588077,53.3448393],[4.44930501,53.91523869],[5.44086203,55.63699788]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-07-02T10:32:57.443477Z","platform":"landsat-8","proj:bbox":[212985.0,5918985.0,457215.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":50.17,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222021183LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":152.27289878,"view:sun_elevation":56.2016627,"landsat:cloud_cover_land":52.71,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20210625_02_T1","bbox":[5.403521686160524,51.96249537513645,9.107559709414637,54.21020462486355],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20210625_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_SR_B1.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_SR_B2.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_SR_B3.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_SR_B4.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_SR_B5.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_SR_B6.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_SR_B7.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_ST_QA.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_ST_B10.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_ST_DRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_ST_EMIS.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_ST_EMSD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_ST_TRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_ST_URAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_ST_CDIST.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210625_20210707_02_T1/LC08_L2SP_197023_20210625_20210707_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.30003011,54.20757779],[9.10564518,53.68469138],[8.20739388,51.96293471],[5.4062367,52.49430093],[6.30003011,54.20757779]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-06-25T10:27:09.403651Z","platform":"landsat-8","proj:bbox":[265185.0,5762385.0,507015.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":61.98,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021176LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":150.62207018,"view:sun_elevation":57.72041678,"landsat:cloud_cover_land":57.49,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20210625_02_T1","bbox":[6.0466145155525854,53.379005358216396,9.877897870879297,55.60092464178361],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20210625_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210625_20210707_02_T1/LC08_L2SP_197022_20210625_20210707_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.96783208,55.60072167],[9.87679457,55.08673855],[8.95385601,53.37952484],[6.04991603,53.90236691],[6.96783208,55.60072167]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-06-25T10:26:45.521084Z","platform":"landsat-8","proj:bbox":[313785.0,5918085.0,555315.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":40.27,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222021176LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":152.61293271,"view:sun_elevation":56.64935511,"landsat:cloud_cover_land":10.6,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20210616_02_T1","bbox":[3.981481604322082,51.98457522858104,7.600539383871594,54.18696477141896],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20210616_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210616_20210622_02_T1/LC08_L2SP_198023_20210616_20210622_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.70509301,54.1859136],[7.59629172,53.76392895],[6.8678902,51.98713906],[3.98238183,52.42009751],[4.70509301,54.1859136]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-06-16T10:33:17.967687Z","platform":"landsat-8","proj:bbox":[567285.0,5768385.0,800715.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.74,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232021167LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":151.39309328,"view:sun_elevation":57.84404147,"landsat:cloud_cover_land":1.24,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20210616_02_T1","bbox":[4.429244692257223,53.34402551445347,8.342657808711097,55.63984448554653],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20210616_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210616_20210622_02_T1/LC08_L2SP_198022_20210616_20210622_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.42513356,55.63750263],[8.34009645,55.07479164],[7.34323026,53.34447608],[4.4327705,53.91548331],[5.42513356,55.63750263]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-06-16T10:32:54.089355Z","platform":"landsat-8","proj:bbox":[211785.0,5919285.0,456315.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":29.95,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222021167LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":153.36794134,"view:sun_elevation":56.76023619,"landsat:cloud_cover_land":0.05,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20210609_02_T1","bbox":[5.394351687388682,51.9622353759474,9.098359707960347,54.2102146240526],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20210609_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_SR_B1.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_SR_B2.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_SR_B3.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_SR_B4.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_SR_B5.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_SR_B6.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_SR_B7.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_ST_QA.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_ST_B10.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_ST_DRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_ST_EMIS.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_ST_EMSD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_ST_TRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_ST_URAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_ST_CDIST.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210609_20210615_02_T1/LC08_L2SP_197023_20210609_20210615_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.29042329,54.20781179],[9.09642247,53.68447574],[8.19773076,51.96282612],[5.39619303,52.49463523],[6.29042329,54.20781179]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-06-09T10:27:04.779395Z","platform":"landsat-8","proj:bbox":[264585.0,5762385.0,506415.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":31.59,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021160LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":152.20193586,"view:sun_elevation":57.56912168,"landsat:cloud_cover_land":38.41,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20210609_02_T1","bbox":[6.036904516337663,53.37879535898416,9.868437886188714,55.603694641015835],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20210609_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_SR_B1.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_SR_B2.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_SR_B3.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_SR_B4.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_SR_B5.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_SR_B6.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_SR_B7.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_ST_QA.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_ST_B10.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_ST_DRAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_ST_EMIS.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_ST_EMSD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_ST_TRAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_ST_URAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_ST_CDIST.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210609_20210615_02_T1/LC08_L2SP_197022_20210609_20210615_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.95830407,55.60136809],[9.86787138,55.08695409],[8.94449126,53.37968724],[6.03995189,53.90296209],[6.95830407,55.60136809]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-06-09T10:26:40.888356Z","platform":"landsat-8","proj:bbox":[313185.0,5918085.0,554715.0,6162315.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":1.56,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222021160LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":154.13863525,"view:sun_elevation":56.47163569,"landsat:cloud_cover_land":1.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_196023_20210602_02_T1","bbox":[6.997611572757598,51.996725264366155,10.660959714868829,54.17453473563384],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_196023_20210602_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_SR_B1.TIF","proj:shape":[8061,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6004215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_SR_B2.TIF","proj:shape":[8061,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6004215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_SR_B3.TIF","proj:shape":[8061,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6004215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_SR_B4.TIF","proj:shape":[8061,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6004215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_SR_B5.TIF","proj:shape":[8061,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6004215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_SR_B6.TIF","proj:shape":[8061,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6004215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_SR_B7.TIF","proj:shape":[8061,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6004215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_ST_QA.TIF","proj:shape":[8061,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6004215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_ST_B10.TIF","proj:shape":[8061,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6004215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_ST_DRAD.TIF","proj:shape":[8061,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6004215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_ST_EMIS.TIF","proj:shape":[8061,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6004215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_ST_EMSD.TIF","proj:shape":[8061,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6004215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_ST_TRAD.TIF","proj:shape":[8061,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6004215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_ST_URAD.TIF","proj:shape":[8061,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6004215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_QA_PIXEL.TIF","proj:shape":[8061,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6004215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_ST_ATRAN.TIF","proj:shape":[8061,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6004215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_ST_CDIST.TIF","proj:shape":[8061,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6004215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_QA_RADSAT.TIF","proj:shape":[8061,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6004215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8061,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6004215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210602_20210608_02_T1/LC08_L2SP_196023_20210602_20210608_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[7.83312067,54.17189832],[10.65795444,53.69530535],[9.8209174,51.99766715],[7.00104769,52.4833237],[7.83312067,54.17189832]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-06-02T10:20:51.024212Z","platform":"landsat-8","proj:bbox":[369285.0,5762385.0,608415.0,6004215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":14.36,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81960232021153LGN00","landsat:wrs_path":"196","landsat:wrs_type":"2","view:sun_azimuth":153.09828409,"view:sun_elevation":56.96066217,"landsat:cloud_cover_land":15.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20210531_02_T1","bbox":[3.977101603372328,51.9847352284643,7.595959385090385,54.1870047715357],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20210531_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210531_20210608_02_T1/LC08_L2SP_198023_20210531_20210608_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.70165138,54.185626],[7.59314264,53.7634596],[6.86462457,51.98688552],[3.97881795,52.42002138],[4.70165138,54.185626]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-05-31T10:33:11.739651Z","platform":"landsat-8","proj:bbox":[566985.0,5768385.0,800415.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":30.33,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232021151LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":153.35737394,"view:sun_elevation":56.72739305,"landsat:cloud_cover_land":2.72,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20210531_02_T1","bbox":[4.424504693297678,53.343855514990395,8.338137807457704,55.6398144850096],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20210531_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210531_20210608_02_T1/LC08_L2SP_198022_20210531_20210608_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.42177153,55.63776978],[8.33734086,55.07481131],[7.340273,53.34451424],[4.42919633,53.91577784],[5.42177153,55.63776978]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-05-31T10:32:47.852847Z","platform":"landsat-8","proj:bbox":[211485.0,5919285.0,456015.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":20.66,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222021151LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":155.21514183,"view:sun_elevation":55.611906,"landsat:cloud_cover_land":2.26,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20210524_02_T1","bbox":[5.394351687194842,51.9622353759474,9.10295970820127,54.2102146240526],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20210524_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_SR_B1.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_SR_B2.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_SR_B3.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_SR_B4.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_SR_B5.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_SR_B6.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_SR_B7.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_ST_QA.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_ST_B10.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_ST_DRAD.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_ST_EMIS.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_ST_EMSD.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_ST_TRAD.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_ST_URAD.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_ST_CDIST.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210524_20210529_02_T1/LC08_L2SP_197023_20210524_20210529_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.29202573,54.20822722],[9.09842879,53.68478553],[8.1997661,51.96312276],[5.39782738,52.49504065],[6.29202573,54.20822722]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-05-24T10:26:57.306888Z","platform":"landsat-8","proj:bbox":[264585.0,5762385.0,506715.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":93.45,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021144LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":154.25733748,"view:sun_elevation":55.69855928,"landsat:cloud_cover_land":91.66,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20210524_02_T1","bbox":[6.036904516258918,53.37879535898416,9.873197886275857,55.60365464101584],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20210524_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210524_20210529_02_T1/LC08_L2SP_197022_20210524_20210529_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.95969127,55.60119851],[9.86969716,55.0866902],[8.94632991,53.37956914],[6.0413437,53.90293446],[6.95969127,55.60119851]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-05-24T10:26:33.424322Z","platform":"landsat-8","proj:bbox":[313185.0,5918085.0,555015.0,6162315.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":95.78,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222021144LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":156.03812019,"view:sun_elevation":54.56947982,"landsat:cloud_cover_land":83.66,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20210515_02_T2","bbox":[3.9814816048927923,51.98441522858104,7.605109383190971,54.18696477141896],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20210515_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_SR_B1.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_SR_B2.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_SR_B3.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_SR_B4.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_SR_B5.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_SR_B6.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_SR_B7.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_ST_QA.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_ST_B10.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_ST_DRAD.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_ST_EMIS.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_ST_EMSD.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_ST_TRAD.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_ST_URAD.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_ST_CDIST.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210515_20210525_02_T2/LC08_L2SP_198023_20210515_20210525_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.70869718,54.18589316],[7.60065197,53.7637041],[6.87232702,51.98685607],[3.98604875,52.42003125],[4.70869718,54.18589316]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-05-15T10:33:02.624535Z","platform":"landsat-8","proj:bbox":[567285.0,5768385.0,801015.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":93.61,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232021135LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":155.30993407,"view:sun_elevation":53.91968196,"landsat:cloud_cover_land":92.89,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20210515_02_T2","bbox":[4.4339846912893135,53.34418551389232,8.347167809962343,55.639874486107686],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20210515_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210515_20210525_02_T2/LC08_L2SP_198022_20210515_20210525_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.42880254,55.63748965],[8.34435174,55.07467382],[7.3476408,53.34463257],[4.43656663,53.91574521],[5.42880254,55.63748965]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-05-15T10:32:38.741967Z","platform":"landsat-8","proj:bbox":[212085.0,5919285.0,456615.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":95.22,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222021135LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":156.98110547,"view:sun_elevation":52.77503488,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20210508_02_T1","bbox":[5.408111685594104,51.9626153747205,9.112159710167795,54.2102046252795],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20210508_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_SR_B1.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_SR_B2.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_SR_B3.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_SR_B4.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_SR_B5.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_SR_B6.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_SR_B7.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_ST_QA.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_ST_B10.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_ST_DRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_ST_EMIS.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_ST_EMSD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_ST_TRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_ST_URAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_ST_CDIST.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210508_20210518_02_T1/LC08_L2SP_197023_20210508_20210518_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.3046375,54.20769871],[9.1112681,53.68464682],[8.21310853,51.96324433],[5.41092601,52.49477715],[6.3046375,54.20769871]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-05-08T10:26:46.807112Z","platform":"landsat-8","proj:bbox":[265485.0,5762385.0,507315.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021128LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":156.00927427,"view:sun_elevation":52.20580607,"landsat:cloud_cover_land":99.99,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20210508_02_T1","bbox":[6.051164515105447,53.379105357905765,9.887477887721806,55.60355464209424],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20210508_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210508_20210518_02_T1/LC08_L2SP_197022_20210508_20210518_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.97249348,55.60085751],[9.88272311,55.08673814],[8.95981747,53.37990821],[6.05458258,53.90289376],[6.97249348,55.60085751]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-05-08T10:26:22.920310Z","platform":"landsat-8","proj:bbox":[314085.0,5918085.0,555915.0,6162315.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":82.75,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222021128LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":157.59230945,"view:sun_elevation":51.05085602,"landsat:cloud_cover_land":67.84,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_196023_20210501_02_T1","bbox":[6.956411573270185,51.99608526640754,10.614919699288484,54.17246473359246],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_196023_20210501_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_SR_B1.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_SR_B2.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_SR_B3.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_SR_B4.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_SR_B5.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_SR_B6.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_SR_B7.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_ST_QA.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_ST_B10.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_ST_DRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_ST_EMIS.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_ST_EMSD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_ST_TRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_ST_URAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_QA_PIXEL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_ST_ATRAN.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_ST_CDIST.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_QA_RADSAT.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210501_20210508_02_T1/LC08_L2SP_196023_20210501_20210508_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[7.78929206,54.17209079],[10.61421107,53.69618801],[9.7790402,51.99723801],[6.95904294,52.48220367],[7.78929206,54.17209079]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-05-01T10:20:38.288061Z","platform":"landsat-8","proj:bbox":[366585.0,5762385.0,605415.0,6003915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":77.96,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81960232021121LGN00","landsat:wrs_path":"196","landsat:wrs_type":"2","view:sun_azimuth":156.52128513,"view:sun_elevation":50.22402014,"landsat:cloud_cover_land":79.22,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20210429_02_T2","bbox":[3.937721594688481,51.986195227431175,7.554799395695407,54.18734477256883],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20210429_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210429_20210508_02_T2/LC08_L2SP_198023_20210429_20210508_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.66054764,54.18464942],[7.55073735,53.76366117],[6.82423673,51.98772972],[3.93968365,52.41967544],[4.66054764,54.18464942]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-04-29T10:33:01.223225Z","platform":"landsat-8","proj:bbox":[564285.0,5768385.0,797715.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":98.43,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232021119LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":156.6707667,"view:sun_elevation":49.62222793,"landsat:cloud_cover_land":99.38,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20210429_02_T2","bbox":[4.381844702282087,53.34238552001556,8.29751779625237,55.639564479984436],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20210429_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210429_20210508_02_T2/LC08_L2SP_198022_20210429_20210508_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.37634067,55.63785725],[8.2936973,55.07557781],[7.29781094,53.34408786],[4.38490344,53.91465173],[5.37634067,55.63785725]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-04-29T10:32:37.349129Z","platform":"landsat-8","proj:bbox":[208785.0,5919285.0,453315.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":63.41,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222021119LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":158.13786317,"view:sun_elevation":48.45760951,"landsat:cloud_cover_land":84.65,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20210422_02_T1","bbox":[5.353091692864472,51.96108537965794,9.056959701176453,54.21024462034206],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20210422_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_SR_B1.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261885.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_SR_B2.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261885.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_SR_B3.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261885.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_SR_B4.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261885.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_SR_B5.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261885.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_SR_B6.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261885.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_SR_B7.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261885.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_ST_QA.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261885.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_ST_B10.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261885.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_ST_DRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261885.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_ST_EMIS.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261885.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_ST_EMSD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261885.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_ST_TRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261885.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_ST_URAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261885.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261885.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261885.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_ST_CDIST.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261885.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261885.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261885.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210422_20210430_02_T1/LC08_L2SP_197023_20210422_20210430_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.24928591,54.20801809],[9.05563347,53.68536832],[8.15870461,51.96255494],[5.35676249,52.49366203],[6.24928591,54.20801809]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-04-22T10:26:54.551824Z","platform":"landsat-8","proj:bbox":[261885.0,5762385.0,503715.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":64.47,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021112LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":157.11243228,"view:sun_elevation":47.37024926,"landsat:cloud_cover_land":72.9,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20210422_02_T1","bbox":[5.994144519975574,53.37783536226433,9.825587881675418,55.60398463773567],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20210422_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_SR_B1.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310485.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_SR_B2.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310485.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_SR_B3.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310485.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_SR_B4.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310485.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_SR_B5.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310485.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_SR_B6.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310485.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_SR_B7.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310485.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_ST_QA.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310485.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_ST_B10.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310485.0,0.0,-30.0,6162315.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_ST_DRAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310485.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_ST_EMIS.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310485.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_ST_EMSD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310485.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_ST_TRAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310485.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_ST_URAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310485.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310485.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310485.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_ST_CDIST.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310485.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310485.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310485.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210422_20210430_02_T1/LC08_L2SP_197022_20210422_20210430_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.913925,55.60135086],[9.82388731,55.08758723],[8.90219711,53.37911422],[5.99720459,53.90173286],[6.913925,55.60135086]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-04-22T10:26:30.673494Z","platform":"landsat-8","proj:bbox":[310485.0,5918085.0,552015.0,6162315.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":36.53,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222021112LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":158.49574619,"view:sun_elevation":46.19950519,"landsat:cloud_cover_land":90.46,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_196023_20210415_02_T1","bbox":[6.965601573148865,51.996225265932786,10.624109699488166,54.17234473406722],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_196023_20210415_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_SR_B1.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367185.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_SR_B2.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367185.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_SR_B3.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367185.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_SR_B4.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367185.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_SR_B5.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367185.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_SR_B6.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367185.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_SR_B7.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367185.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_ST_QA.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367185.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_ST_B10.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367185.0,0.0,-30.0,6003915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_ST_DRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367185.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_ST_EMIS.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367185.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_ST_EMSD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367185.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_ST_TRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367185.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_ST_URAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367185.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_QA_PIXEL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367185.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_ST_ATRAN.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367185.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_ST_CDIST.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367185.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_QA_RADSAT.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367185.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367185.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210415_20210424_02_T1/LC08_L2SP_196023_20210415_20210424_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[7.79697566,54.17184671],[10.62176843,53.69610986],[9.78662022,51.9973936],[6.96674209,52.48218734],[7.79697566,54.17184671]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-04-15T10:20:47.211041Z","platform":"landsat-8","proj:bbox":[367185.0,5762385.0,606015.0,6003915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":52.49,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81960232021105LGN00","landsat:wrs_path":"196","landsat:wrs_type":"2","view:sun_azimuth":157.44186949,"view:sun_elevation":44.93154667,"landsat:cloud_cover_land":57.37,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20210413_02_T1","bbox":[3.946471596647984,51.98586522765593,7.563949393329893,54.18727477234407],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20210413_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564885.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210413_20210423_02_T1/LC08_L2SP_198023_20210413_20210423_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.66981154,54.18495125],[7.5602165,53.76402639],[6.83377568,51.98783606],[3.949001,52.41971187],[4.66981154,54.18495125]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-04-13T10:33:09.697320Z","platform":"landsat-8","proj:bbox":[564885.0,5768385.0,798315.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":28.3,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232021103LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":157.52051418,"view:sun_elevation":44.20945476,"landsat:cloud_cover_land":38.41,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20210413_02_T2","bbox":[4.391324700320254,53.34270551888199,8.30653779877691,55.63962448111801],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20210413_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,209385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,209385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,209385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,209385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,209385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,209385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,209385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,209385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,209385.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,209385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,209385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,209385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,209385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,209385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,209385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,209385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,209385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,209385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,209385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210413_20210423_02_T2/LC08_L2SP_198022_20210413_20210423_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.38595773,55.63766833],[8.30285039,55.07560784],[7.307218,53.3442212],[4.39477594,53.91457466],[5.38595773,55.63766833]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-04-13T10:32:45.823225Z","platform":"landsat-8","proj:bbox":[209385.0,5919285.0,453915.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":21.22,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222021103LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":158.80172482,"view:sun_elevation":43.03365115,"landsat:cloud_cover_land":47.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20210406_02_T1","bbox":[5.371431690627938,51.96159537799664,9.070759703979554,54.21023462200336],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20210406_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_SR_B1.TIF","proj:shape":[8151,8051],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_SR_B2.TIF","proj:shape":[8151,8051],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_SR_B3.TIF","proj:shape":[8151,8051],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_SR_B4.TIF","proj:shape":[8151,8051],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_SR_B5.TIF","proj:shape":[8151,8051],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_SR_B6.TIF","proj:shape":[8151,8051],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_SR_B7.TIF","proj:shape":[8151,8051],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_ST_QA.TIF","proj:shape":[8151,8051],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_ST_B10.TIF","proj:shape":[8151,8051],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_ST_DRAD.TIF","proj:shape":[8151,8051],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_ST_EMIS.TIF","proj:shape":[8151,8051],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_ST_EMSD.TIF","proj:shape":[8151,8051],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_ST_TRAD.TIF","proj:shape":[8151,8051],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_ST_URAD.TIF","proj:shape":[8151,8051],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8051],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8051],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_ST_CDIST.TIF","proj:shape":[8151,8051],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8051],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8051],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210406_20210415_02_T1/LC08_L2SP_197023_20210406_20210415_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.26378643,54.20815836],[9.07005667,53.68586081],[8.17350534,51.96327386],[5.37164612,52.4940367],[6.26378643,54.20815836]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-04-06T10:27:01.535184Z","platform":"landsat-8","proj:bbox":[263085.0,5762385.0,504615.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":58.53,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021096LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":157.74651043,"view:sun_elevation":41.58633134,"landsat:cloud_cover_land":57.36,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20210406_02_T1","bbox":[6.008604518754812,53.37815536112048,9.839817866928342,55.60119463887952],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20210406_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210406_20210415_02_T1/LC08_L2SP_197022_20210406_20210415_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.92848975,55.60099353],[9.83810916,55.08755155],[8.91690383,53.37926088],[6.01224808,53.90155825],[6.92848975,55.60099353]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-04-06T10:26:37.665324Z","platform":"landsat-8","proj:bbox":[311385.0,5918085.0,552915.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":62.2,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222021096LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":158.95334999,"view:sun_elevation":40.40794946,"landsat:cloud_cover_land":63.13,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_196023_20210330_02_T1","bbox":[6.983971572894224,51.99650526501113,10.642479699789883,54.17209473498887],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_196023_20210330_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_SR_B1.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_SR_B2.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_SR_B3.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_SR_B4.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_SR_B5.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_SR_B6.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_SR_B7.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_ST_QA.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_ST_B10.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_ST_DRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_ST_EMIS.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_ST_EMSD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_ST_TRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_ST_URAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_QA_PIXEL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_ST_ATRAN.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_ST_CDIST.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_QA_RADSAT.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210330_20210409_02_T1/LC08_L2SP_196023_20210330_20210409_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[7.81570145,54.17153025],[10.64032065,53.69625047],[9.80570436,51.99773776],[6.98600264,52.48208839],[7.81570145,54.17153025]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-03-30T10:20:52.876745Z","platform":"landsat-8","proj:bbox":[368385.0,5762385.0,607215.0,6003915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":1.61,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81960232021089LGN00","landsat:wrs_path":"196","landsat:wrs_type":"2","view:sun_azimuth":157.91506478,"view:sun_elevation":38.86270018,"landsat:cloud_cover_land":1.69,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20210328_02_T2","bbox":[3.963981600455002,51.98522522811174,7.582239388600056,54.187124771888264],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20210328_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210328_20210402_02_T2/LC08_L2SP_198023_20210328_20210402_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.68898298,54.18477173],[7.57981714,53.76415708],[6.85376965,51.9873727],[3.96857532,52.41896882],[4.68898298,54.18477173]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-03-28T10:33:15.007283Z","platform":"landsat-8","proj:bbox":[566085.0,5768385.0,799515.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232021087LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":157.95939897,"view:sun_elevation":38.075687,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20210328_02_T2","bbox":[4.415024695622259,53.34353551611328,8.32459780454035,55.63973448388673],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20210328_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_SR_B1.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_SR_B2.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_SR_B3.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_SR_B4.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_SR_B5.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_SR_B6.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_SR_B7.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_ST_QA.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_ST_B10.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_ST_DRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_ST_EMIS.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_ST_EMSD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_ST_TRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_ST_URAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_ST_CDIST.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210328_20210402_02_T2/LC08_L2SP_198022_20210328_20210402_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.40591519,55.63725892],[8.32202678,55.07577385],[7.32716865,53.34478622],[4.41551348,53.91456703],[5.40591519,55.63725892]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-03-28T10:32:51.128952Z","platform":"landsat-8","proj:bbox":[210885.0,5919285.0,455115.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222021087LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":159.07800741,"view:sun_elevation":36.89445457,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20210321_02_T1","bbox":[5.389771688004634,51.96210537634529,9.09375970720381,54.21021462365471],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20210321_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_SR_B1.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_SR_B2.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_SR_B3.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_SR_B4.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_SR_B5.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_SR_B6.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_SR_B7.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_ST_QA.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_ST_B10.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_ST_DRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_ST_EMIS.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_ST_EMSD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_ST_TRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_ST_URAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_ST_CDIST.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,264285.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210321_20210401_02_T1/LC08_L2SP_197023_20210321_20210401_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.28570164,54.20768704],[9.09195797,53.68601763],[8.19601585,51.96362677],[5.39418166,52.49377039],[6.28570164,54.20768704]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-03-21T10:27:05.527061Z","platform":"landsat-8","proj:bbox":[264285.0,5762385.0,506115.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021080LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":158.10773366,"view:sun_elevation":35.27857314,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20210321_02_T1","bbox":[6.032364516751976,53.37868535929767,9.86361786939446,55.60103464070233],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20210321_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210321_20210401_02_T1/LC08_L2SP_197022_20210321_20210401_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.9505749,55.60049302],[9.86020136,55.0877002],[8.93969335,53.37976334],[6.03504864,53.90142366],[6.9505749,55.60049302]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-03-21T10:26:41.657202Z","platform":"landsat-8","proj:bbox":[312885.0,5918085.0,554415.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":77.57,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222021080LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":159.16163836,"view:sun_elevation":34.09606476,"landsat:cloud_cover_land":53.14,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20210312_02_T2","bbox":[3.9814816037498946,51.984735228581044,7.595959384622822,54.18696477141896],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20210312_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_SR_B1.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_SR_B2.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_SR_B3.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_SR_B4.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_SR_B5.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_SR_B6.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_SR_B7.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_ST_QA.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_ST_B10.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_ST_DRAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_ST_EMIS.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_ST_EMSD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_ST_TRAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_ST_URAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_ST_CDIST.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210312_20210317_02_T2/LC08_L2SP_198023_20210312_20210317_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.70361336,54.18526229],[7.59505461,53.7647815],[6.8691701,51.98762808],[3.98338747,52.41908946],[4.70361336,54.18526229]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-03-12T10:33:20.342250Z","platform":"landsat-8","proj:bbox":[567285.0,5768385.0,800415.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":69.09,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232021071LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":158.33446251,"view:sun_elevation":31.67548772,"landsat:cloud_cover_land":69.54,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20210312_02_T2","bbox":[4.429244692638562,53.34402551445347,8.338137808246302,55.63981448554653],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20210312_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_SR_B1.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_SR_B2.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_SR_B3.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_SR_B4.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_SR_B5.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_SR_B6.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_SR_B7.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_ST_QA.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_ST_B10.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_ST_DRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_ST_EMIS.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_ST_EMSD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_ST_TRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_ST_URAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_ST_CDIST.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210312_20210317_02_T2/LC08_L2SP_198022_20210312_20210317_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.42144166,55.6371597],[8.33694556,55.07603863],[7.34261319,53.34524385],[4.43157678,53.91465539],[5.42144166,55.6371597]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-03-12T10:32:56.463918Z","platform":"landsat-8","proj:bbox":[211785.0,5919285.0,456015.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":85.46,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222021071LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":159.31197449,"view:sun_elevation":30.4899118,"landsat:cloud_cover_land":99.98,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20210305_02_T1","bbox":[5.394591687584333,51.96223537588987,9.093749692804868,54.20752462411013],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20210305_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_SR_B1.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_SR_B2.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_SR_B3.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_SR_B4.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_SR_B5.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_SR_B6.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_SR_B7.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_ST_QA.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_ST_B10.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_ST_DRAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_ST_EMIS.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_ST_EMSD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_ST_TRAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_ST_URAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_ST_CDIST.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210305_20210312_02_T1/LC08_L2SP_197023_20210305_20210312_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.28676053,54.20727977],[9.0927355,53.68549056],[8.19666934,51.96314688],[5.39513866,52.4934028],[6.28676053,54.20727977]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-03-05T10:27:13.629030Z","platform":"landsat-8","proj:bbox":[264585.0,5762385.0,506115.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":7.8,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021064LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":158.56030249,"view:sun_elevation":28.91272884,"landsat:cloud_cover_land":8.26,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20210305_02_T1","bbox":[6.032364516751976,53.37868535929767,9.86361786939446,55.60103464070233],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20210305_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210305_20210312_02_T1/LC08_L2SP_197022_20210305_20210312_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.95194217,55.60045419],[9.86146562,55.08757272],[8.94073072,53.37968763],[6.03620122,53.90142539],[6.95194217,55.60045419]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-03-05T10:26:49.750699Z","platform":"landsat-8","proj:bbox":[312885.0,5918085.0,554415.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":7.51,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222021064LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":159.48235045,"view:sun_elevation":27.72429783,"landsat:cloud_cover_land":3.66,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_196023_20210226_02_T1","bbox":[6.997741572757597,51.9967252643309,10.660859699930992,54.1718447356691],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_196023_20210226_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_SR_B1.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_SR_B2.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_SR_B3.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_SR_B4.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_SR_B5.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_SR_B6.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_SR_B7.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_ST_QA.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_ST_B10.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_ST_DRAD.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_ST_EMIS.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_ST_EMSD.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_ST_TRAD.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_ST_URAD.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_QA_PIXEL.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_ST_ATRAN.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_ST_CDIST.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_QA_RADSAT.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/196/023/LC08_L2SP_196023_20210226_20210304_02_T1/LC08_L2SP_196023_20210226_20210304_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[7.83160718,54.17105282],[10.65622399,53.69592137],[9.82160921,51.99777517],[7.00195051,52.48197781],[7.83160718,54.17105282]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-02-26T10:21:06.310784Z","platform":"landsat-8","proj:bbox":[369285.0,5762385.0,608415.0,6003915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":12.79,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81960232021057LGN00","landsat:wrs_path":"196","landsat:wrs_type":"2","view:sun_azimuth":158.85493106,"view:sun_elevation":26.23365494,"landsat:cloud_cover_land":12.73,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20210224_02_T1","bbox":[3.977101603372328,51.9847352284643,7.595959385090385,54.1870047715357],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20210224_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210224_20210303_02_T1/LC08_L2SP_198023_20210224_20210303_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.70093118,54.18501657],[7.5923081,53.76419094],[6.86621495,51.98706251],[3.98050427,52.41886098],[4.70093118,54.18501657]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-02-24T10:33:28.805938Z","platform":"landsat-8","proj:bbox":[566985.0,5768385.0,800415.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":76.35,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232021055LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":158.95328266,"view:sun_elevation":25.49306713,"landsat:cloud_cover_land":76.21,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20210224_02_T2","bbox":[4.424504693297678,53.343855514990395,8.338137807457704,55.6398144850096],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20210224_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210224_20210303_02_T2/LC08_L2SP_198022_20210224_20210303_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.41893299,55.63724594],[8.33454728,55.07576253],[7.33976561,53.34492993],[4.42864777,53.91471242],[5.41893299,55.63724594]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-02-24T10:33:04.923371Z","platform":"landsat-8","proj:bbox":[211485.0,5919285.0,456015.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":92.1,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222021055LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":159.81035306,"view:sun_elevation":24.2993216,"landsat:cloud_cover_land":89.28,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20210217_02_T2","bbox":[5.394591687388682,51.96223537588987,9.098349693044886,54.20751462411013],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20210217_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210217_20210302_02_T2/LC08_L2SP_197023_20210217_20210302_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.28704993,54.20749388],[9.09331098,53.6855157],[8.19700063,51.96329528],[5.39519024,52.49375286],[6.28704993,54.20749388]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-02-17T10:27:20.610708Z","platform":"landsat-8","proj:bbox":[264585.0,5762385.0,506415.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":85.66,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021048LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":159.3551877,"view:sun_elevation":22.98054008,"landsat:cloud_cover_land":93.2,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20210217_02_T2","bbox":[6.032364516751976,53.37868535929767,9.86361786939446,55.60103464070233],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20210217_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312885.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210217_20210302_02_T2/LC08_L2SP_197022_20210217_20210302_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.95243356,55.60065304],[9.86225665,55.08753086],[8.94127667,53.37976703],[6.03645427,53.90175111],[6.95243356,55.60065304]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-02-17T10:26:56.732376Z","platform":"landsat-8","proj:bbox":[312885.0,5918085.0,554415.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":37.93,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222021048LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":160.16584759,"view:sun_elevation":21.78164861,"landsat:cloud_cover_land":64.65,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20210208_02_T2","bbox":[3.981481604322082,51.98457522858104,7.600539383871594,54.18696477141896],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20210208_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210208_20210302_02_T2/LC08_L2SP_198023_20210208_20210302_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.70644369,54.18525307],[7.59844408,53.76443091],[6.87217083,51.98735012],[3.98585049,52.41915771],[4.70644369,54.18525307]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-02-08T10:33:33.906832Z","platform":"landsat-8","proj:bbox":[567285.0,5768385.0,800715.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232021039LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":160.0215518,"view:sun_elevation":20.02256301,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20210208_02_T2","bbox":[4.434294691659278,53.344185513840486,8.342657793235558,55.637144486159514],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20210208_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_SR_B1.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_SR_B2.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_SR_B3.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_SR_B4.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_SR_B5.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_SR_B6.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_SR_B7.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_ST_QA.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_ST_B10.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_ST_DRAD.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_ST_EMIS.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_ST_EMSD.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_ST_TRAD.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_ST_URAD.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_QA_PIXEL.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_ST_ATRAN.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_ST_CDIST.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_QA_RADSAT.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210208_20210302_02_T2/LC08_L2SP_198022_20210208_20210302_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.42460202,55.63686428],[8.34032751,55.07536086],[7.34574375,53.34478296],[4.43450415,53.91458977],[5.42460202,55.63686428]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-02-08T10:33:10.032737Z","platform":"landsat-8","proj:bbox":[212085.0,5919285.0,456315.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":97.92,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222021039LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":160.77936175,"view:sun_elevation":18.81497199,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20210201_02_T2","bbox":[5.403761686354633,51.96249537507796,9.10294969426082,54.20751462492204],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20210201_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_SR_B1.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_SR_B2.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_SR_B3.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_SR_B4.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_SR_B5.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_SR_B6.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_SR_B7.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_ST_QA.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_ST_B10.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_ST_DRAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_ST_EMIS.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_ST_EMSD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_ST_TRAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_ST_URAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_QA_PIXEL.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_ST_ATRAN.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_ST_CDIST.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_QA_RADSAT.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210201_20210302_02_T2/LC08_L2SP_197023_20210201_20210302_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.29562666,54.20738866],[9.10234051,53.68545336],[8.2061166,51.96353495],[5.40385792,52.4939468],[6.29562666,54.20738866]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-02-01T10:27:24.407218Z","platform":"landsat-8","proj:bbox":[265185.0,5762385.0,506715.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":95.23,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021032LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":160.64394794,"view:sun_elevation":17.97739161,"landsat:cloud_cover_land":99.96,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20210201_02_T1","bbox":[6.04186451596509,53.378895358581055,9.87313787037457,55.60096464141895],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20210201_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/022/LC08_L2SP_197022_20210201_20210302_02_T1/LC08_L2SP_197022_20210201_20210302_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.96149433,55.60080103],[9.87182742,55.0877765],[8.9510276,53.38027913],[6.04570579,53.90216094],[6.96149433,55.60080103]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-02-01T10:27:00.524650Z","platform":"landsat-8","proj:bbox":[313485.0,5918085.0,555015.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":57.41,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222021032LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":161.36620787,"view:sun_elevation":16.76103245,"landsat:cloud_cover_land":82.6,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20210123_02_T1","bbox":[3.994601607248808,51.984085228934624,7.6142493803506905,54.186844771065374],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20210123_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/023/LC08_L2SP_198023_20210123_20210305_02_T1/LC08_L2SP_198023_20210123_20210305_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.71817042,54.18523425],[7.61106487,53.7643553],[6.88498488,51.98703999],[3.99776259,52.41891179],[4.71817042,54.18523425]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-01-23T10:33:35.980372Z","platform":"landsat-8","proj:bbox":[568185.0,5768385.0,801615.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":66.88,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232021023LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":161.5751412,"view:sun_elevation":15.74877182,"landsat:cloud_cover_land":61.59,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20210123_02_T2","bbox":[4.443774689284599,53.34451551274574,8.35619779613832,55.637224487254265],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20210123_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_SR_B1.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_SR_B2.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_SR_B3.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_SR_B4.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_SR_B5.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_SR_B6.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_SR_B7.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_ST_QA.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_ST_B10.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_ST_DRAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_ST_EMIS.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_ST_EMSD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_ST_TRAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_ST_URAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_QA_PIXEL.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_ST_ATRAN.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_ST_CDIST.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_QA_RADSAT.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/198/022/LC08_L2SP_198022_20210123_20210305_02_T2/LC08_L2SP_198022_20210123_20210305_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.43683842,55.63675743],[8.35242745,55.07541478],[7.35834803,53.34505586],[4.44723731,53.91469641],[5.43683842,55.63675743]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-01-23T10:33:12.102039Z","platform":"landsat-8","proj:bbox":[212685.0,5919285.0,457215.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":72.13,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222021023LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":162.25890288,"view:sun_elevation":14.52035953,"landsat:cloud_cover_land":19.55,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20210116_02_T2","bbox":[5.412931684981916,51.96274537424717,9.116749696004451,54.207504625752826],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20210116_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/197/023/LC08_L2SP_197023_20210116_20210306_02_T2/LC08_L2SP_197023_20210116_20210306_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.30683635,54.20715827],[9.1138496,53.68537252],[8.21790017,51.96361107],[5.41534674,52.49388403],[6.30683635,54.20715827]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-01-16T10:27:26.442803Z","platform":"landsat-8","proj:bbox":[265785.0,5762385.0,507615.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.53,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232021016LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":162.38329214,"view:sun_elevation":14.3632519,"landsat:cloud_cover_land":99.41,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20201129_02_T1","bbox":[5.403761686160524,51.96249537507796,9.107549694498877,54.20750462492204],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20201129_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201129_20210316_02_T1/LC08_L2SP_197023_20201129_20210316_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.29651249,54.20716076],[9.10253192,53.68483642],[8.20545563,51.96289629],[5.40387862,52.49369857],[6.29651249,54.20716076]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-11-29T10:27:37.386263Z","platform":"landsat-8","proj:bbox":[265185.0,5762385.0,507015.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":21.38,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232020334LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":167.61699631,"view:sun_elevation":14.47393774,"landsat:cloud_cover_land":22.12,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20201120_02_T1","bbox":[3.9946016066154524,51.98425522893462,7.609679381030936,54.186844771065374],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20201120_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_SR_B1.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_SR_B2.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_SR_B3.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_SR_B4.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_SR_B5.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_SR_B6.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_SR_B7.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_ST_QA.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_ST_B10.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_ST_DRAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_ST_EMIS.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_ST_EMSD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_ST_TRAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_ST_URAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_ST_CDIST.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201120_20210315_02_T1/LC08_L2SP_198023_20201120_20210315_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.71685429,54.18563078],[7.60885653,53.76450675],[6.88206933,51.98723873],[3.9957285,52.41934527],[4.71685429,54.18563078]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-11-20T10:33:46.234405Z","platform":"landsat-8","proj:bbox":[568185.0,5768385.0,801315.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":62.85,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232020325LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":168.02469552,"view:sun_elevation":16.29116191,"landsat:cloud_cover_land":60.37,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20201120_02_T1","bbox":[4.443774689284599,53.34451551274574,8.35619779613832,55.637224487254265],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20201120_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_SR_B1.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_SR_B2.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_SR_B3.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_SR_B4.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_SR_B5.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_SR_B6.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_SR_B7.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_ST_QA.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_ST_B10.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_ST_DRAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_ST_EMIS.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_ST_EMSD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_ST_TRAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_ST_URAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_QA_PIXEL.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_ST_ATRAN.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_ST_CDIST.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_QA_RADSAT.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201120_20210315_02_T1/LC08_L2SP_198022_20201120_20210315_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.43642419,55.63708394],[8.35098441,55.07550065],[7.35606367,53.34505614],[4.44598193,53.91495133],[5.43642419,55.63708394]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-11-20T10:33:22.356074Z","platform":"landsat-8","proj:bbox":[212685.0,5919285.0,457215.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":20.55,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222020325LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":168.67633446,"view:sun_elevation":14.98465471,"landsat:cloud_cover_land":5.32,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20201028_02_T1","bbox":[5.408341685594103,51.96261537467957,9.1121496952524,54.207504625320425],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20201028_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201028_20201106_02_T1/LC08_L2SP_197023_20201028_20201106_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.30506094,54.20737342],[9.11103427,53.68500071],[8.21389916,51.96324565],[5.41239879,52.49408724],[6.30506094,54.20737342]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-10-28T10:27:36.214453Z","platform":"landsat-8","proj:bbox":[265485.0,5762385.0,507315.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":37.2,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232020302LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":167.60898211,"view:sun_elevation":22.79364992,"landsat:cloud_cover_land":40.69,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20201028_02_T1","bbox":[6.051364515181943,53.379105357866756,9.882657871350139,55.60089464213325],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20201028_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201028_20201106_02_T1/LC08_L2SP_197022_20201028_20201106_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.97190816,55.60062908],[9.88140922,55.08719638],[8.95958784,53.37991477],[6.05512462,53.90220531],[6.97190816,55.60062908]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-10-28T10:27:12.331885Z","platform":"landsat-8","proj:bbox":[314085.0,5918085.0,555615.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":27.78,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222020302LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":168.3438965,"view:sun_elevation":21.49112416,"landsat:cloud_cover_land":27.92,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20201019_02_T2","bbox":[3.985851605270566,51.984415228698296,7.605109382723013,54.186924771301705],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20201019_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201019_20201105_02_T2/LC08_L2SP_198023_20201019_20201105_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.71195599,54.18530181],[7.60378407,53.76387979],[6.87647115,51.98676098],[3.99033658,52.41918082],[4.71195599,54.18530181]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-10-19T10:33:47.663885Z","platform":"landsat-8","proj:bbox":[567585.0,5768385.0,801015.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":92.88,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232020293LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":166.83940156,"view:sun_elevation":25.84582009,"landsat:cloud_cover_land":93.88,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20201019_02_T2","bbox":[4.439034690312866,53.344345513279244,8.351677794948868,55.637204486720755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20201019_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_SR_B1.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_SR_B2.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_SR_B3.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_SR_B4.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_SR_B5.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_SR_B6.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_SR_B7.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_ST_QA.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_ST_B10.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_ST_DRAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_ST_EMIS.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_ST_EMSD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_ST_TRAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_ST_URAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_QA_PIXEL.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_ST_ATRAN.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_ST_CDIST.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_QA_RADSAT.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201019_20201105_02_T2/LC08_L2SP_198022_20201019_20201105_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.43149587,55.63711206],[8.34641946,55.07508015],[7.35092712,53.34471103],[4.4405155,53.91504445],[5.43149587,55.63711206]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-10-19T10:33:23.781317Z","platform":"landsat-8","proj:bbox":[212385.0,5919285.0,456915.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":38.33,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222020293LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":167.62256632,"view:sun_elevation":24.55168466,"landsat:cloud_cover_land":26.14,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20201012_02_T2","bbox":[5.403761686160524,51.96249537507796,9.107549694498877,54.20750462492204],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20201012_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20201012_20201105_02_T2/LC08_L2SP_197023_20201012_20201105_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.29834443,54.20732902],[9.10468968,53.68465222],[8.20719295,51.96291045],[5.40531449,52.49405911],[6.29834443,54.20732902]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-10-12T10:27:36.673031Z","platform":"landsat-8","proj:bbox":[265185.0,5762385.0,507015.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":87.92,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232020286LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":166.01908799,"view:sun_elevation":28.34058434,"landsat:cloud_cover_land":86.3,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20201012_02_T2","bbox":[6.0466145155525854,53.379005358216396,9.877897870879297,55.60092464178361],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20201012_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20201012_20201105_02_T2/LC08_L2SP_197022_20201012_20201105_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.96520645,55.6004534],[9.87513521,55.08668469],[8.95298133,53.37948213],[6.04807478,53.9021184],[6.96520645,55.6004534]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-10-12T10:27:12.790465Z","platform":"landsat-8","proj:bbox":[313785.0,5918085.0,555315.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":89.48,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222020286LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":166.8473183,"view:sun_elevation":27.05567514,"landsat:cloud_cover_land":87.64,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20201003_02_T2","bbox":[3.985851605270566,51.984415228698296,7.605109382723013,54.186924771301705],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20201003_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20201003_20201015_02_T2/LC08_L2SP_198023_20201003_20201015_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.71109342,54.18531088],[7.60340204,53.76364479],[6.87586506,51.98668815],[3.9892515,52.41933454],[4.71109342,54.18531088]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-10-03T10:33:46.581126Z","platform":"landsat-8","proj:bbox":[567585.0,5768385.0,801015.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.97,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232020277LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":164.69753439,"view:sun_elevation":31.62908671,"landsat:cloud_cover_land":99.99,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20201003_02_T2","bbox":[4.438724690691195,53.34434551333413,8.347167810680137,55.63987448666587],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20201003_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_SR_B1.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_SR_B2.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_SR_B3.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_SR_B4.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_SR_B5.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_SR_B6.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_SR_B7.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_ST_QA.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_ST_B10.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_ST_DRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_ST_EMIS.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_ST_EMSD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_ST_TRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_ST_URAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_ST_CDIST.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20201003_20201015_02_T2/LC08_L2SP_198022_20201003_20201015_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.43079717,55.63716946],[8.34661642,55.07491321],[7.35075503,53.34478849],[4.43943585,53.91535769],[5.43079717,55.63716946]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-10-03T10:33:22.694322Z","platform":"landsat-8","proj:bbox":[212385.0,5919285.0,456615.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222020277LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":165.59387744,"view:sun_elevation":30.35939102,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20200926_02_T2","bbox":[5.403521686160524,51.96249537513645,9.107559709414637,54.21020462486355],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20200926_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_SR_B1.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_SR_B2.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_SR_B3.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_SR_B4.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_SR_B5.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_SR_B6.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_SR_B7.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_ST_QA.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_ST_B10.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_ST_DRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_ST_EMIS.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_ST_EMSD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_ST_TRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_ST_URAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_QA_PIXEL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_ST_ATRAN.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_ST_CDIST.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_QA_RADSAT.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200926_20201005_02_T2/LC08_L2SP_197023_20200926_20201005_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.29915797,54.20747906],[9.10605694,53.68466194],[8.2084496,51.96311925],[5.40599972,52.49440448],[6.29915797,54.20747906]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-09-26T10:27:34.430205Z","platform":"landsat-8","proj:bbox":[265185.0,5762385.0,507015.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":98.86,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232020270LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":163.48461951,"view:sun_elevation":34.21325719,"landsat:cloud_cover_land":99.65,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20200926_02_T2","bbox":[6.0466145155525854,53.379005358216396,9.877897870879297,55.60092464178361],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20200926_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200926_20201006_02_T2/LC08_L2SP_197022_20200926_20201006_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.96648524,55.60089426],[9.87678221,55.08698068],[8.95449979,53.37986198],[6.04921546,53.90264666],[6.96648524,55.60089426]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-09-26T10:27:10.543403Z","platform":"landsat-8","proj:bbox":[313785.0,5918085.0,555315.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":96.31,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222020270LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":164.44254347,"view:sun_elevation":32.9582753,"landsat:cloud_cover_land":99.99,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20200917_02_T1","bbox":[3.9902316068689774,51.98408522881632,7.614249380821119,54.186884771183685],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20200917_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_SR_B1.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_SR_B2.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_SR_B3.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_SR_B4.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_SR_B5.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_SR_B6.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_SR_B7.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_ST_QA.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_ST_B10.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_ST_DRAD.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_ST_EMIS.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_ST_EMSD.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_ST_TRAD.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_ST_URAD.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_ST_CDIST.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7791],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200917_20201005_02_T1/LC08_L2SP_198023_20200917_20201005_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.71663178,54.18557386],[7.60913347,53.76379098],[6.8815781,51.98665569],[3.99474602,52.41942872],[4.71663178,54.18557386]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-09-17T10:33:42.835887Z","platform":"landsat-8","proj:bbox":[567885.0,5768385.0,801615.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":23.56,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232020261LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":161.74571064,"view:sun_elevation":37.51182616,"landsat:cloud_cover_land":21.35,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20200917_02_T1","bbox":[4.443464689284599,53.34451551279889,8.356197812402153,55.63992448720111],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20200917_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200917_20201005_02_T1/LC08_L2SP_198022_20200917_20201005_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.43654976,55.63722372],[8.35213465,55.07497628],[7.35640436,53.34495478],[4.44530556,53.91551234],[5.43654976,55.63722372]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-09-17T10:33:18.949084Z","platform":"landsat-8","proj:bbox":[212685.0,5919285.0,457215.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":34.98,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222020261LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":162.79409659,"view:sun_elevation":36.27878286,"landsat:cloud_cover_land":34.5,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20200910_02_T1","bbox":[5.412931684981916,51.96274537424717,9.116749696004451,54.207504625752826],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20200910_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200910_20200919_02_T1/LC08_L2SP_197023_20200910_20200919_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.30631111,54.20719339],[9.11305145,53.68452196],[8.21566822,51.96303571],[5.41336927,52.4941954],[6.30631111,54.20719339]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-09-10T10:27:29.647455Z","platform":"landsat-8","proj:bbox":[265785.0,5762385.0,507615.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":60.23,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232020254LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":160.2815792,"view:sun_elevation":40.02508008,"landsat:cloud_cover_land":61.77,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20200910_02_T1","bbox":[6.056114514771244,53.37921535750327,9.887417871866452,55.60086464249673],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20200910_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200910_20200919_02_T1/LC08_L2SP_197022_20200910_20200919_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.97371703,55.60079109],[9.88399714,55.08703545],[8.96192031,53.38006483],[6.05664236,53.90269399],[6.97371703,55.60079109]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-09-10T10:27:05.756415Z","platform":"landsat-8","proj:bbox":[314385.0,5918085.0,555915.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":60.89,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222020254LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":161.40937002,"view:sun_elevation":38.81112022,"landsat:cloud_cover_land":59.64,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20200901_02_T1","bbox":[4.003351609167372,51.983765229178516,7.623399377974572,54.18676477082148],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20200901_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200901_20200906_02_T1/LC08_L2SP_198023_20200901_20200906_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.72597742,54.1855255],[7.61881802,53.76390146],[6.89133057,51.98651],[4.0041526,52.41913387],[4.72597742,54.1855255]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-09-01T10:33:36.857999Z","platform":"landsat-8","proj:bbox":[568785.0,5768385.0,802215.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":56.63,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232020245LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":158.32739439,"view:sun_elevation":43.13443142,"landsat:cloud_cover_land":62.55,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20200901_02_T1","bbox":[4.453264701540554,53.342145511566756,8.365267798632635,55.637284488433245],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20200901_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200901_20200906_02_T1/LC08_L2SP_198022_20200901_20200906_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.44659119,55.63676367],[8.36138431,55.07476536],[7.36608854,53.34485017],[4.45577339,53.91516351],[5.44659119,55.63676367]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-09-01T10:33:12.975431Z","platform":"landsat-8","proj:bbox":[213285.0,5918985.0,457815.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":3.04,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222020245LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":159.56722275,"view:sun_elevation":41.94777182,"landsat:cloud_cover_land":8.33,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20200825_02_T2","bbox":[5.422101683807313,51.96299537343794,9.125949697450826,54.20749462656206],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20200825_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200825_20200905_02_T2/LC08_L2SP_197023_20200825_20200905_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.31840798,54.20732195],[9.12481401,53.68499705],[8.22768138,51.96359365],[5.42570652,52.49440434],[6.31840798,54.20732195]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-08-25T10:27:22.725404Z","platform":"landsat-8","proj:bbox":[266385.0,5762385.0,508215.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.99,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232020238LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":156.797227,"view:sun_elevation":45.43419167,"landsat:cloud_cover_land":99.98,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20200825_02_T1","bbox":[6.065614514005511,53.379425356793384,9.896947872789193,55.60079464320661],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20200825_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200825_20200905_02_T1/LC08_L2SP_197022_20200825_20200905_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.98575362,55.60039533],[9.89569837,55.08698769],[8.97391048,53.38011556],[6.06895748,53.9024027],[6.98575362,55.60039533]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-08-25T10:26:58.842836Z","platform":"landsat-8","proj:bbox":[314985.0,5918085.0,556515.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.51,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222020238LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":158.13143826,"view:sun_elevation":44.26936534,"landsat:cloud_cover_land":99.15,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20200816_02_T1","bbox":[4.0165415990018865,51.98596522957272,7.637119374368009,54.18664477042728],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20200816_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_SR_B1.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_SR_B2.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_SR_B3.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_SR_B4.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_SR_B5.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_SR_B6.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_SR_B7.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_ST_QA.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_ST_B10.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569685.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_ST_DRAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_ST_EMIS.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_ST_EMSD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_ST_TRAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_ST_URAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_ST_ATRAN.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_ST_CDIST.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569685.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200816_20200920_02_T1/LC08_L2SP_198023_20200816_20200920_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.74002862,54.18593849],[7.6328746,53.76460676],[6.90568286,51.98657482],[4.01849683,52.41891749],[4.74002862,54.18593849]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-08-16T10:33:28.728377Z","platform":"landsat-8","proj:bbox":[569685.0,5768685.0,803115.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":60.77,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232020229LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":154.91849528,"view:sun_elevation":48.19707622,"landsat:cloud_cover_land":51.44,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20200816_02_T1","bbox":[4.467484698572503,53.342635509923355,8.378807802247074,55.637354490076646],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20200816_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200816_20200920_02_T1/LC08_L2SP_198022_20200816_20200920_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.46118345,55.63667258],[8.37503574,55.07514654],[7.38024246,53.34544939],[4.47086407,53.91528148],[5.46118345,55.63667258]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-08-16T10:33:04.845809Z","platform":"landsat-8","proj:bbox":[214185.0,5918985.0,458715.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":42.58,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222020229LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":156.38024365,"view:sun_elevation":47.06015101,"landsat:cloud_cover_land":7.83,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20200809_02_T1","bbox":[5.435851682026947,51.96337537223705,9.13974969963911,54.20747462776295],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20200809_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,267285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,267285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,267285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,267285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,267285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,267285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,267285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,267285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,267285.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,267285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,267285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,267285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,267285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,267285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,267285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,267285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,267285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,267285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,267285.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200809_20200917_02_T1/LC08_L2SP_197023_20200809_20200917_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.33041553,54.20706359],[9.1361761,53.68519855],[8.23931926,51.96389362],[5.43800262,52.49425181],[6.33041553,54.20706359]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-08-09T10:27:14.879231Z","platform":"landsat-8","proj:bbox":[267285.0,5762385.0,509115.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":58.97,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232020222LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":153.57379189,"view:sun_elevation":50.16933005,"landsat:cloud_cover_land":70.13,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20200731_02_T1","bbox":[4.0121116111386845,51.98343522941331,7.632549375524188,54.18668477058669],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20200731_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200731_20200908_02_T1/LC08_L2SP_198023_20200731_20200908_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.73575351,54.18566885],[7.6278025,53.76428838],[6.90030754,51.98645563],[4.01393164,52.4188324],[4.73575351,54.18566885]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-07-31T10:33:24.148044Z","platform":"landsat-8","proj:bbox":[569385.0,5768385.0,802815.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":13.69,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232020213LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":152.09467871,"view:sun_elevation":52.43828812,"landsat:cloud_cover_land":6.49,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20200731_02_T1","bbox":[4.462744699543365,53.342475510455834,8.374287801063161,55.637334489544166],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20200731_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200731_20200908_02_T1/LC08_L2SP_198022_20200731_20200908_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.45694234,55.63693779],[8.3703241,55.07532503],[7.3752027,53.34533944],[4.46631566,53.91527209],[5.45694234,55.63693779]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-07-31T10:33:00.261241Z","platform":"landsat-8","proj:bbox":[213885.0,5918985.0,458415.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":30.03,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222020213LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":153.78470431,"view:sun_elevation":51.34483791,"landsat:cloud_cover_land":59.26,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20200724_02_T1","bbox":[5.422101683807313,51.96299537343794,9.125949697450826,54.20749462656206],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20200724_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200724_20200911_02_T1/LC08_L2SP_197023_20200724_20200911_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.31840991,54.2073113],[9.12387632,53.68497772],[8.22638765,51.96343977],[5.42537579,52.49424941],[6.31840991,54.2073113]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-07-24T10:27:11.696136Z","platform":"landsat-8","proj:bbox":[266385.0,5762385.0,508215.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":60.8,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232020206LGN01","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":151.19778854,"view:sun_elevation":53.97452298,"landsat:cloud_cover_land":70.15,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20200724_02_T1","bbox":[6.065614514005511,53.379425356793384,9.896947872789193,55.60079464320661],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20200724_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200724_20200910_02_T1/LC08_L2SP_197022_20200724_20200910_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.98586594,55.60021361],[9.89486513,55.08680591],[8.97275728,53.37973927],[6.06877205,53.90202603],[6.98586594,55.60021361]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-07-24T10:26:47.817804Z","platform":"landsat-8","proj:bbox":[314985.0,5918085.0,556515.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":70.98,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222020206LGN01","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":152.97858469,"view:sun_elevation":52.89569325,"landsat:cloud_cover_land":74.3,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20200715_02_T1","bbox":[4.003351609167372,51.983765229178516,7.623399377974572,54.18676477082148],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20200715_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200715_20200912_02_T1/LC08_L2SP_198023_20200715_20200912_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.72679097,54.18555937],[7.61859117,53.76390256],[6.89076112,51.98632361],[4.00466128,52.41896955],[4.72679097,54.18555937]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-07-15T10:33:19.799410Z","platform":"landsat-8","proj:bbox":[568785.0,5768385.0,802215.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":54.75,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232020197LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":150.45385364,"view:sun_elevation":55.61657955,"landsat:cloud_cover_land":70.17,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20200715_02_T2","bbox":[4.453264701540554,53.342145511566756,8.365267798632635,55.637284488433245],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20200715_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200715_20200912_02_T2/LC08_L2SP_198022_20200715_20200912_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.44777373,55.63680468],[8.36149221,55.07483954],[7.36574381,53.34486304],[4.45652554,53.91513168],[5.44777373,55.63680468]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-07-15T10:32:55.916842Z","platform":"landsat-8","proj:bbox":[213285.0,5918985.0,457815.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":82.91,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222020197LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":152.33530008,"view:sun_elevation":54.54938837,"landsat:cloud_cover_land":99.04,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20200708_02_T2","bbox":[5.4175116844169375,51.96286537385122,9.121349696700676,54.20749462614878],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20200708_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200708_20200912_02_T2/LC08_L2SP_197023_20200708_20200912_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.31226489,54.20726957],[9.11792258,53.68469636],[8.22019333,51.96316013],[5.41900084,52.49420421],[6.31226489,54.20726957]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-07-08T10:27:06.478974Z","platform":"landsat-8","proj:bbox":[266085.0,5762385.0,507915.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":95.5,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232020190LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":150.21225647,"view:sun_elevation":56.60669633,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20200708_02_T1","bbox":[6.060864514414334,53.37931535715476,9.892177872321167,55.60082464284524],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20200708_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200708_20200912_02_T1/LC08_L2SP_197022_20200708_20200912_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.98002724,55.60064485],[9.88925402,55.08700871],[8.96691142,53.37999663],[6.06271203,53.90249773],[6.98002724,55.60064485]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-07-08T10:26:42.592171Z","platform":"landsat-8","proj:bbox":[314685.0,5918085.0,556215.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":48.59,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222020190LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":152.15288461,"view:sun_elevation":55.5429099,"landsat:cloud_cover_land":68.96,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20200629_02_T1","bbox":[3.998981608200543,51.983925229053455,7.6188293791279715,54.186804770946544],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20200629_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200629_20200823_02_T1/LC08_L2SP_198023_20200629_20200823_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.72398333,54.18590728],[7.61607223,53.76420388],[6.88811531,51.98684482],[4.00171515,52.41953613],[4.72398333,54.18590728]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-06-29T10:33:13.463501Z","platform":"landsat-8","proj:bbox":[568485.0,5768385.0,801915.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":90.95,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232020181LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":150.34731671,"view:sun_elevation":57.47220576,"landsat:cloud_cover_land":86.14,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20200629_02_T2","bbox":[4.4532647019072495,53.342145511566756,8.360747798175417,55.63725448843325],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20200629_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_SR_B1.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_SR_B2.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_SR_B3.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_SR_B4.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_SR_B5.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_SR_B6.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_SR_B7.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_ST_QA.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_ST_B10.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_ST_DRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_ST_EMIS.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_ST_EMSD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_ST_TRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_ST_URAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_ST_CDIST.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200629_20200823_02_T2/LC08_L2SP_198022_20200629_20200823_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.44465107,55.6369182],[8.35901875,55.07477568],[7.36315876,53.34487232],[4.45330084,53.91531217],[5.44465107,55.6369182]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-06-29T10:32:49.585170Z","platform":"landsat-8","proj:bbox":[213285.0,5918985.0,457515.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":86.49,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222020181LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":152.33158217,"view:sun_elevation":56.40614464,"landsat:cloud_cover_land":71.87,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20200622_02_T1","bbox":[5.417281684416938,51.962865373893166,9.121359711616376,54.21019462610683],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20200622_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_SR_B1.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_SR_B2.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_SR_B3.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_SR_B4.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_SR_B5.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_SR_B6.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_SR_B7.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_ST_QA.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_ST_B10.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_ST_DRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_ST_EMIS.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_ST_EMSD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_ST_TRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_ST_URAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_ST_CDIST.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200622_20200823_02_T1/LC08_L2SP_197023_20200622_20200823_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.31244504,54.20756699],[9.11879829,53.68486688],[8.22099321,51.96351073],[5.41911381,52.49469725],[6.31244504,54.20756699]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-06-22T10:26:59.270594Z","platform":"landsat-8","proj:bbox":[266085.0,5762385.0,507915.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":23.9,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232020174LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":150.77744441,"view:sun_elevation":57.80561749,"landsat:cloud_cover_land":29.82,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20200622_02_T1","bbox":[6.060864514414334,53.37931535715476,9.892177872321167,55.60082464284524],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20200622_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200622_20200823_02_T1/LC08_L2SP_197022_20200622_20200823_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.98016715,55.60070779],[9.88992875,55.08688877],[8.96752486,53.38000204],[6.0627976,53.90269174],[6.98016715,55.60070779]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-06-22T10:26:35.388026Z","platform":"landsat-8","proj:bbox":[314685.0,5918085.0,556215.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":3.13,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222020174LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":152.76865675,"view:sun_elevation":56.73197906,"landsat:cloud_cover_land":10.73,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20200613_02_T1","bbox":[4.003351609167372,51.983765229178516,7.623399377974572,54.18676477082148],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20200613_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200613_20200823_02_T1/LC08_L2SP_198023_20200613_20200823_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.72713691,54.18568418],[7.61997318,53.76392084],[6.89224995,51.98652604],[4.00510913,52.41929012],[4.72713691,54.18568418]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-06-13T10:33:05.145555Z","platform":"landsat-8","proj:bbox":[568785.0,5768385.0,802215.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":46.85,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232020165LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":151.65538863,"view:sun_elevation":57.76727274,"landsat:cloud_cover_land":42.01,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20200613_02_T1","bbox":[4.453264701540554,53.342145511566756,8.365267798632635,55.637284488433245],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20200613_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200613_20200824_02_T1/LC08_L2SP_198022_20200613_20200824_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.44810265,55.63676822],[8.36285766,55.07460728],[7.36721642,53.34477406],[4.45695638,53.91525211],[5.44810265,55.63676822]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-06-13T10:32:41.262987Z","platform":"landsat-8","proj:bbox":[213285.0,5918985.0,457815.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":77.09,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222020165LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":153.6185868,"view:sun_elevation":56.67908901,"landsat:cloud_cover_land":8.31,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20200606_02_T1","bbox":[5.422101696701656,51.960305373403266,9.130549697684303,54.20748462659673],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20200606_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_SR_B1.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_SR_B2.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_SR_B3.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_SR_B4.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_SR_B5.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_SR_B6.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_SR_B7.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_ST_QA.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_ST_B10.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_ST_DRAD.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_ST_EMIS.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_ST_EMSD.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_ST_TRAD.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_ST_URAD.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_ST_CDIST.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200606_20200824_02_T1/LC08_L2SP_197023_20200606_20200824_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.31955717,54.20698016],[9.12623642,53.68440077],[8.22877746,51.96313864],[5.42656571,52.49420982],[6.31955717,54.20698016]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-06-06T10:26:50.050740Z","platform":"landsat-8","proj:bbox":[266385.0,5762085.0,508515.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":50.0,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232020158LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":152.50018537,"view:sun_elevation":57.36055607,"landsat:cloud_cover_land":52.2,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20200606_02_T1","bbox":[6.065614528164711,53.37673535675908,9.901707872870938,55.60075464324092],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20200606_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200606_20200824_02_T1/LC08_L2SP_197022_20200606_20200824_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.98719857,55.59994595],[9.89749438,55.08629812],[8.97533548,53.37962727],[6.0700586,53.90214241],[6.98719857,55.59994595]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-06-06T10:26:26.168173Z","platform":"landsat-8","proj:bbox":[314985.0,5917785.0,556815.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":44.43,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222020158LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":154.41604784,"view:sun_elevation":56.2587706,"landsat:cloud_cover_land":57.33,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20200528_02_T1","bbox":[4.012171598047015,51.98612522944609,7.632549375524188,54.18668477055391],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20200528_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_SR_B1.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_SR_B2.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_SR_B3.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_SR_B4.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_SR_B5.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_SR_B6.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_SR_B7.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_ST_QA.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_ST_B10.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_ST_DRAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_ST_EMIS.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_ST_EMSD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_ST_TRAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_ST_URAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_ST_ATRAN.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_ST_CDIST.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200528_20200820_02_T1/LC08_L2SP_198023_20200528_20200820_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.73729876,54.18583691],[7.6305988,53.76423177],[6.90316628,51.98648207],[4.01555483,52.41909716],[4.73729876,54.18583691]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-05-28T10:32:54.889533Z","platform":"landsat-8","proj:bbox":[569385.0,5768685.0,802815.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":6.71,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232020149LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":153.66198676,"view:sun_elevation":56.35195197,"landsat:cloud_cover_land":3.99,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20200528_02_T1","bbox":[4.4674846989451265,53.342635509923355,8.374287801782343,55.63733449007665],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20200528_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_SR_B1.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_SR_B2.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_SR_B3.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_SR_B4.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_SR_B5.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_SR_B6.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_SR_B7.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_ST_QA.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_ST_B10.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_ST_DRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_ST_EMIS.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_ST_EMSD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_ST_TRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_ST_URAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_QA_PIXEL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_ST_ATRAN.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_ST_CDIST.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_QA_RADSAT.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,214185.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200528_20200820_02_T1/LC08_L2SP_198022_20200528_20200820_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.45841895,55.63682631],[8.37315865,55.07497135],[7.37808892,53.34544651],[4.4678462,53.91560803],[5.45841895,55.63682631]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-05-28T10:32:31.002728Z","platform":"landsat-8","proj:bbox":[214185.0,5918985.0,458415.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":14.79,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222020149LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":155.49199863,"view:sun_elevation":55.23185008,"landsat:cloud_cover_land":0.86,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20200521_02_T1","bbox":[5.422101683807313,51.96299537343794,9.125949697450826,54.20749462656206],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20200521_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200521_20200820_02_T1/LC08_L2SP_197023_20200521_20200820_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.3175882,54.20732],[9.12420575,53.68460022],[8.22652361,51.96338314],[5.42436277,52.49459051],[6.3175882,54.20732]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-05-21T10:26:42.960282Z","platform":"landsat-8","proj:bbox":[266385.0,5762385.0,508215.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":10.02,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232020142LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":154.54940894,"view:sun_elevation":55.19812741,"landsat:cloud_cover_land":6.04,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20200521_02_T1","bbox":[6.065614514005511,53.379425356793384,9.896947872789193,55.60079464320661],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20200521_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200521_20200820_02_T1/LC08_L2SP_197022_20200521_20200820_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.98526464,55.60029385],[9.8954574,55.08650159],[8.97317411,53.37977324],[6.06799007,53.90244282],[6.98526464,55.60029385]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-05-21T10:26:19.077715Z","platform":"landsat-8","proj:bbox":[314985.0,5918085.0,556515.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":51.45,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222020142LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":156.29857229,"view:sun_elevation":54.06473665,"landsat:cloud_cover_land":13.39,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20200512_02_T1","bbox":[3.994601607248808,51.984085228934624,7.6142493803506905,54.186844771065374],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20200512_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200512_20200820_02_T1/LC08_L2SP_198023_20200512_20200820_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.71835452,54.18569187],[7.61071337,53.76369513],[6.88256263,51.98657299],[3.99587171,52.41956889],[4.71835452,54.18569187]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-05-12T10:32:51.705695Z","platform":"landsat-8","proj:bbox":[568185.0,5768385.0,801615.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":68.05,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232020133LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":155.55212652,"view:sun_elevation":53.26942434,"landsat:cloud_cover_land":82.92,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20200512_02_T2","bbox":[4.443464703479412,53.34182551273804,8.356237812402153,55.63992448726196],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20200512_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_SR_B1.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_SR_B2.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_SR_B3.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_SR_B4.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_SR_B5.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_SR_B6.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_SR_B7.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_ST_QA.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_ST_B10.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_ST_DRAD.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_ST_EMIS.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_ST_EMSD.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_ST_TRAD.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_ST_URAD.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_QA_PIXEL.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_ST_ATRAN.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_ST_CDIST.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_QA_RADSAT.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200512_20200820_02_T2/LC08_L2SP_198022_20200512_20200820_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.43902165,55.6372504],[8.35416237,55.07475716],[7.35786571,53.34486522],[4.44719051,53.91566622],[5.43902165,55.6372504]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-05-12T10:32:27.818892Z","platform":"landsat-8","proj:bbox":[212685.0,5918985.0,457215.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":61.13,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222020133LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":157.18988911,"view:sun_elevation":52.12110778,"landsat:cloud_cover_land":94.69,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20200505_02_T1","bbox":[5.348511693487438,51.96095538005901,9.052359700465818,54.21024461994099],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20200505_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_SR_B1.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_SR_B2.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_SR_B3.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_SR_B4.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_SR_B5.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_SR_B6.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_SR_B7.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_ST_QA.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_ST_B10.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261585.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_ST_DRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_ST_EMIS.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_ST_EMSD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_ST_TRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_ST_URAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_ST_CDIST.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,261585.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200505_20200820_02_T1/LC08_L2SP_197023_20200505_20200820_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.24211293,54.20834273],[9.04840514,53.68558717],[8.1513486,51.96269751],[5.34946127,52.49390705],[6.24211293,54.20834273]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-05-05T10:26:41.978901Z","platform":"landsat-8","proj:bbox":[261585.0,5762385.0,503415.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":20.15,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232020126LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":156.12682233,"view:sun_elevation":51.43935527,"landsat:cloud_cover_land":22.95,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20200505_02_T1","bbox":[5.989394520397856,53.37772536262022,9.82082788115739,55.60402463737978],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20200505_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_SR_B1.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_SR_B2.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_SR_B3.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_SR_B4.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_SR_B5.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_SR_B6.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_SR_B7.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_ST_QA.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_ST_B10.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310185.0,0.0,-30.0,6162315.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_ST_DRAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_ST_EMIS.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_ST_EMSD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_ST_TRAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_ST_URAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_ST_CDIST.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310185.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200505_20200820_02_T1/LC08_L2SP_197022_20200505_20200820_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.9065246,55.60160373],[9.81642567,55.08772679],[8.89464555,53.379223],[5.98970639,53.90195615],[6.9065246,55.60160373]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-05-05T10:26:18.100570Z","platform":"landsat-8","proj:bbox":[310185.0,5918085.0,551715.0,6162315.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":8.54,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222020126LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":157.67281581,"view:sun_elevation":50.28217276,"landsat:cloud_cover_land":22.69,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_196023_20200428_02_T1","bbox":[6.956411573270185,51.99608526640754,10.614919699288484,54.17246473359246],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_196023_20200428_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_SR_B1.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_SR_B2.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_SR_B3.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_SR_B4.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_SR_B5.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_SR_B6.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_SR_B7.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_ST_QA.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_ST_B10.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_ST_DRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_ST_EMIS.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_ST_EMSD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_ST_TRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_ST_URAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_QA_PIXEL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_ST_ATRAN.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_ST_CDIST.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_QA_RADSAT.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,366585.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200428_20200820_02_T1/LC08_L2SP_196023_20200428_20200820_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[7.78771847,54.17177378],[10.61246147,53.69590382],[9.77725716,51.99702939],[6.95742537,52.48195188],[7.78771847,54.17177378]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-04-28T10:20:35.348485Z","platform":"landsat-8","proj:bbox":[366585.0,5762385.0,605415.0,6003915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":70.46,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81960232020119LGN00","landsat:wrs_path":"196","landsat:wrs_type":"2","view:sun_azimuth":156.68539324,"view:sun_elevation":49.38059718,"landsat:cloud_cover_land":67.82,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20200426_02_T1","bbox":[3.937721594688481,51.986195227431175,7.554799395695407,54.18734477256883],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20200426_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,564285.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200426_20200822_02_T1/LC08_L2SP_198023_20200426_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.6600205,54.18475182],[7.54997051,53.76384293],[6.82353773,51.98787681],[3.93920158,52.4197345],[4.6600205,54.18475182]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-04-26T10:32:58.072880Z","platform":"landsat-8","proj:bbox":[564285.0,5768385.0,797715.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":16.01,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232020117LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":156.82274813,"view:sun_elevation":48.75413089,"landsat:cloud_cover_land":13.6,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20200426_02_T2","bbox":[4.381844702282087,53.34238552001556,8.29751779625237,55.639564479984436],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20200426_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,208785.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200426_20200822_02_T2/LC08_L2SP_198022_20200426_20200822_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.37589502,55.63801393],[8.2930469,55.07581798],[7.29721472,53.34426116],[4.3845004,53.91474662],[5.37589502,55.63801393]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-04-26T10:32:34.198784Z","platform":"landsat-8","proj:bbox":[208785.0,5919285.0,453315.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":81.4,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222020117LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":158.2567388,"view:sun_elevation":47.58745662,"landsat:cloud_cover_land":99.2,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20200419_02_T1","bbox":[5.357681692241823,51.961215379219354,9.061559701939292,54.210234620780646],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20200419_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_SR_B1.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_SR_B2.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_SR_B3.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_SR_B4.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_SR_B5.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_SR_B6.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_SR_B7.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_ST_QA.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_ST_B10.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262185.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_ST_DRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_ST_EMIS.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_ST_EMSD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_ST_TRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_ST_URAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_ST_CDIST.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,262185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200419_20200822_02_T1/LC08_L2SP_197023_20200419_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.253232,54.20789044],[9.05930095,53.68544147],[8.16254821,51.96257238],[5.36088896,52.49349536],[6.253232,54.20789044]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-04-19T10:26:50.794264Z","platform":"landsat-8","proj:bbox":[262185.0,5762385.0,504015.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.34,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232020110LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":157.22769444,"view:sun_elevation":46.42496364,"landsat:cloud_cover_land":0.29,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20200419_02_T1","bbox":[5.998904519595353,53.37793536187819,9.830347882204954,55.60395463812181],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20200419_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_SR_B1.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310785.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_SR_B2.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310785.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_SR_B3.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310785.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_SR_B4.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310785.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_SR_B5.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310785.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_SR_B6.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310785.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_SR_B7.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310785.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_ST_QA.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310785.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_ST_B10.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310785.0,0.0,-30.0,6162315.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_ST_DRAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310785.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_ST_EMIS.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310785.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_ST_EMSD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310785.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_ST_TRAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310785.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_ST_URAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310785.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310785.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310785.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_ST_CDIST.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310785.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310785.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,310785.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200419_20200822_02_T1/LC08_L2SP_197022_20200419_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.91784414,55.60126693],[9.82745449,55.08768943],[8.905987,53.37924241],[6.0013321,53.90167068],[6.91784414,55.60126693]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-04-19T10:26:26.915931Z","platform":"landsat-8","proj:bbox":[310785.0,5918085.0,552315.0,6162315.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.86,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222020110LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":158.57933368,"view:sun_elevation":45.25269861,"landsat:cloud_cover_land":1.6,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_196023_20200412_02_T1","bbox":[6.970191573089468,51.99629526570692,10.628699699555805,54.17228473429308],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_196023_20200412_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_SR_B1.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367485.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_SR_B2.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367485.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_SR_B3.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367485.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_SR_B4.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367485.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_SR_B5.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367485.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_SR_B6.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367485.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_SR_B7.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367485.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_ST_QA.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367485.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_ST_B10.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367485.0,0.0,-30.0,6003915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_ST_DRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367485.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_ST_EMIS.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367485.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_ST_EMSD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367485.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_ST_TRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367485.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_ST_URAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367485.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367485.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367485.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_ST_CDIST.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367485.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367485.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,367485.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200412_20200822_02_T1/LC08_L2SP_196023_20200412_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[7.80282261,54.17143713],[10.62726859,53.69595655],[9.79245736,51.99720758],[6.97292431,52.48175091],[7.80282261,54.17143713]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-04-12T10:20:43.037256Z","platform":"landsat-8","proj:bbox":[367485.0,5762385.0,606315.0,6003915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":3.68,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81960232020103LGN00","landsat:wrs_path":"196","landsat:wrs_type":"2","view:sun_azimuth":157.52009803,"view:sun_elevation":43.92406538,"landsat:cloud_cover_land":2.79,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20200410_02_T1","bbox":[3.950851597592488,51.98570522776899,7.568519392187544,54.187234772231015],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20200410_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200410_20200822_02_T1/LC08_L2SP_198023_20200410_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.67567356,54.18459083],[7.56581415,53.76390018],[6.83968643,51.98749749],[3.95518676,52.4191448],[4.67567356,54.18459083]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-04-10T10:33:05.452603Z","platform":"landsat-8","proj:bbox":[565185.0,5768385.0,798615.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":46.98,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232020101LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":157.58828956,"view:sun_elevation":43.18701784,"landsat:cloud_cover_land":39.29,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20200410_02_T1","bbox":[4.40080469867644,53.34303551777821,8.311057800753707,55.639654482221786],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20200410_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_SR_B1.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_SR_B2.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_SR_B3.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_SR_B4.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_SR_B5.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_SR_B6.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_SR_B7.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_ST_QA.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_ST_B10.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_ST_DRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_ST_EMIS.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_ST_EMSD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_ST_TRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_ST_URAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_ST_CDIST.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200410_20200822_02_T1/LC08_L2SP_198022_20200410_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.39196353,55.63756436],[8.30837985,55.07587602],[7.31308191,53.34454936],[4.40111255,53.91452792],[5.39196353,55.63756436]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-04-10T10:32:41.574272Z","platform":"landsat-8","proj:bbox":[209985.0,5919285.0,454215.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":28.47,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222020101LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":158.84031279,"view:sun_elevation":42.01015173,"landsat:cloud_cover_land":7.38,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20200403_02_T1","bbox":[5.376021689809015,51.96172537757849,9.07995970498441,54.210224622421514],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20200403_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_SR_B1.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263385.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_SR_B2.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263385.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_SR_B3.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263385.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_SR_B4.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263385.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_SR_B5.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263385.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_SR_B6.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263385.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_SR_B7.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263385.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_ST_QA.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263385.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_ST_B10.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263385.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_ST_DRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263385.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_ST_EMIS.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263385.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_ST_EMSD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263385.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_ST_TRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263385.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_ST_URAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263385.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263385.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263385.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_ST_CDIST.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263385.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263385.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263385.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200403_20200822_02_T1/LC08_L2SP_197023_20200403_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.27199843,54.20750282],[9.07793344,53.68553818],[8.18166863,51.96290934],[5.38015628,52.49333632],[6.27199843,54.20750282]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-04-03T10:26:57.048200Z","platform":"landsat-8","proj:bbox":[263385.0,5762385.0,505215.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":75.65,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232020094LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":157.78764558,"view:sun_elevation":40.52092813,"landsat:cloud_cover_land":82.41,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20200403_02_T1","bbox":[6.018104517959405,53.378365360398014,9.84933786793291,55.60113463960199],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20200403_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200403_20200822_02_T1/LC08_L2SP_197022_20200403_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.93692826,55.60086903],[9.84621548,55.08772878],[8.92534621,53.37959182],[6.02102705,53.90157698],[6.93692826,55.60086903]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-04-03T10:26:33.169868Z","platform":"landsat-8","proj:bbox":[311985.0,5918085.0,553515.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":29.18,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222020094LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":158.96737004,"view:sun_elevation":39.34171286,"landsat:cloud_cover_land":36.68,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_196023_20200327_02_T1","bbox":[6.983971572894224,51.99650526501113,10.642479699789883,54.17209473498887],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_196023_20200327_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_SR_B1.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_SR_B2.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_SR_B3.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_SR_B4.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_SR_B5.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_SR_B6.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_SR_B7.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_ST_QA.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_ST_B10.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_ST_DRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_ST_EMIS.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_ST_EMSD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_ST_TRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_ST_URAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_ST_CDIST.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368385.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200327_20200822_02_T1/LC08_L2SP_196023_20200327_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[7.81511759,54.17134051],[10.63938927,53.69612788],[9.80476818,51.99759613],[6.98542706,52.48187294],[7.81511759,54.17134051]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-03-27T10:20:50.604885Z","platform":"landsat-8","proj:bbox":[368385.0,5762385.0,607215.0,6003915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.4,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81960232020087LGN00","landsat:wrs_path":"196","landsat:wrs_type":"2","view:sun_azimuth":157.94910625,"view:sun_elevation":37.76747019,"landsat:cloud_cover_land":0.19,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20200325_02_T1","bbox":[3.9639815998828354,51.98538522811174,7.577669389353421,54.187124771888264],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20200325_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_SR_B1.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_SR_B2.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_SR_B3.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_SR_B4.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_SR_B5.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_SR_B6.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_SR_B7.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_ST_QA.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_ST_B10.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_ST_DRAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_ST_EMIS.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_ST_EMSD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_ST_TRAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_ST_URAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_ST_CDIST.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200325_20200822_02_T1/LC08_L2SP_198023_20200325_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.68543903,54.18481294],[7.57601787,53.76418179],[6.84988841,51.98747358],[3.96496575,52.41906665],[4.68543903,54.18481294]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-03-25T10:33:13.452284Z","platform":"landsat-8","proj:bbox":[566085.0,5768385.0,799215.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":1.33,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232020085LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":157.99436412,"view:sun_elevation":36.97457036,"landsat:cloud_cover_land":2.41,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20200325_02_T1","bbox":[4.410284696665872,53.34336551665189,8.320087803283384,55.639704483348105],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20200325_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_SR_B1.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210585.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_SR_B2.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210585.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_SR_B3.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210585.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_SR_B4.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210585.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_SR_B5.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210585.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_SR_B6.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210585.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_SR_B7.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210585.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_ST_QA.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210585.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_ST_B10.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210585.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_ST_DRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210585.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_ST_EMIS.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210585.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_ST_EMSD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210585.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_ST_TRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210585.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_ST_URAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210585.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210585.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210585.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_ST_CDIST.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210585.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210585.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210585.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200325_20200822_02_T1/LC08_L2SP_198022_20200325_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.40233068,55.63717735],[8.31828459,55.0756842],[7.32324297,53.34454494],[4.41175037,53.91432102],[5.40233068,55.63717735]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-03-25T10:32:49.578190Z","platform":"landsat-8","proj:bbox":[210585.0,5919285.0,454815.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.03,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222020085LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":159.08716865,"view:sun_elevation":35.79319687,"landsat:cloud_cover_land":1.33,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20200318_02_T1","bbox":[5.3806016891907245,51.961855377179056,9.084559705743805,54.210224622820945],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20200318_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_SR_B1.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263685.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_SR_B2.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263685.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_SR_B3.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263685.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_SR_B4.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263685.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_SR_B5.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263685.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_SR_B6.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263685.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_SR_B7.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263685.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_ST_QA.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263685.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_ST_B10.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263685.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_ST_DRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263685.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_ST_EMIS.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263685.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_ST_EMSD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263685.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_ST_TRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263685.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_ST_URAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263685.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263685.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263685.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_ST_CDIST.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263685.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263685.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263685.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200318_20200822_02_T1/LC08_L2SP_197023_20200318_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.27361995,54.20773741],[9.07959449,53.68583043],[8.18323702,51.96327397],[5.38170967,52.49365012],[6.27361995,54.20773741]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-03-18T10:27:06.585508Z","platform":"landsat-8","proj:bbox":[263685.0,5762385.0,505515.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":91.24,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232020078LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":158.15460389,"view:sun_elevation":34.16858984,"landsat:cloud_cover_land":88.8,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20200318_02_T2","bbox":[6.018104517959405,53.378365360398014,9.84933786793291,55.60113463960199],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20200318_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200318_20200822_02_T2/LC08_L2SP_197022_20200318_20200822_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.93855934,55.60092085],[9.84785655,55.08776786],[8.92679305,53.37958968],[6.02249168,53.90159429],[6.93855934,55.60092085]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-03-18T10:26:42.711413Z","platform":"landsat-8","proj:bbox":[311985.0,5918085.0,553515.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222020078LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":159.18457073,"view:sun_elevation":32.98530914,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_196023_20200311_02_T1","bbox":[6.988561572811207,51.99658526478754,10.64706969988442,54.17203473521246],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_196023_20200311_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_SR_B1.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368685.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_SR_B2.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368685.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_SR_B3.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368685.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_SR_B4.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368685.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_SR_B5.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368685.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_SR_B6.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368685.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_SR_B7.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368685.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_ST_QA.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368685.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_ST_B10.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368685.0,0.0,-30.0,6003915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_ST_DRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368685.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_ST_EMIS.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368685.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_ST_EMSD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368685.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_ST_TRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368685.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_ST_URAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368685.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368685.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368685.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_ST_CDIST.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368685.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368685.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368685.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200311_20200822_02_T1/LC08_L2SP_196023_20200311_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[7.81873824,54.17146857],[10.64318394,53.69620009],[9.80852217,51.99774442],[6.98901574,52.48206866],[7.81873824,54.17146857]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-03-11T10:20:59.277998Z","platform":"landsat-8","proj:bbox":[368685.0,5762385.0,607515.0,6003915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":35.8,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81960232020071LGN00","landsat:wrs_path":"196","landsat:wrs_type":"2","view:sun_azimuth":158.33600409,"view:sun_elevation":31.36767956,"landsat:cloud_cover_land":39.26,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20200309_02_T1","bbox":[3.9683516008285893,51.98522522823217,7.5822393881361405,54.187084771767836],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20200309_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_SR_B1.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_SR_B2.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_SR_B3.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_SR_B4.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_SR_B5.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_SR_B6.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_SR_B7.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_ST_QA.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_ST_B10.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566385.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_ST_DRAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_ST_EMIS.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_ST_EMSD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_ST_TRAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_ST_URAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_ST_CDIST.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200309_20200822_02_T1/LC08_L2SP_198023_20200309_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.69003921,54.1849843],[7.58101181,53.76426233],[6.85472952,51.9875709],[3.96943344,52.41925466],[4.69003921,54.1849843]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-03-09T10:33:21.812042Z","platform":"landsat-8","proj:bbox":[566385.0,5768385.0,799515.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":42.66,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232020069LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":158.39723593,"view:sun_elevation":30.57830823,"landsat:cloud_cover_land":57.44,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20200309_02_T2","bbox":[4.415024695622259,53.34353551611328,8.32459780454035,55.63973448388673],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20200309_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_SR_B1.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_SR_B2.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_SR_B3.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_SR_B4.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_SR_B5.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_SR_B6.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_SR_B7.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_ST_QA.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_ST_B10.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_ST_DRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_ST_EMIS.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_ST_EMSD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_ST_TRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_ST_URAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_ST_CDIST.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,210885.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200309_20200822_02_T2/LC08_L2SP_198022_20200309_20200822_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.40721885,55.63749442],[8.32324132,55.075936],[7.32821305,53.34492109],[4.41666175,53.91477842],[5.40721885,55.63749442]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-03-09T10:32:57.933710Z","platform":"landsat-8","proj:bbox":[210885.0,5919285.0,455115.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":34.98,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222020069LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":159.35253467,"view:sun_elevation":29.39196039,"landsat:cloud_cover_land":72.16,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20200302_02_T1","bbox":[5.385421688573931,51.96198537670682,9.089159691533556,54.207524623293175],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20200302_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200302_20200822_02_T1/LC08_L2SP_197023_20200302_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.27877551,54.20741666],[9.08489559,53.68540705],[8.18856651,51.96298857],[5.38689501,52.49346363],[6.27877551,54.20741666]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-03-02T10:27:13.870216Z","platform":"landsat-8","proj:bbox":[263985.0,5762385.0,505815.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":93.79,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232020062LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":158.64700706,"view:sun_elevation":27.84361627,"landsat:cloud_cover_land":98.12,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20200302_02_T1","bbox":[6.027614517167225,53.37857535966316,9.858857868919378,55.60106464033684],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20200302_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312585.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312585.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312585.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312585.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312585.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312585.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312585.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312585.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312585.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312585.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312585.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312585.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312585.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312585.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312585.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312585.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312585.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312585.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312585.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200302_20200822_02_T1/LC08_L2SP_197022_20200302_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.94398824,55.60092727],[9.85368421,55.08779433],[8.93265618,53.37989245],[6.02795725,53.90186872],[6.94398824,55.60092727]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-03-02T10:26:49.987649Z","platform":"landsat-8","proj:bbox":[312585.0,5918085.0,554115.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":81.83,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222020062LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":159.54858979,"view:sun_elevation":26.65384868,"landsat:cloud_cover_land":92.51,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_196023_20200224_02_T2","bbox":[6.997741572679054,51.9967252643309,10.656259700015312,54.1719047356691],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_196023_20200224_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_SR_B1.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_SR_B2.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_SR_B3.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_SR_B4.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_SR_B5.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_SR_B6.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_SR_B7.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_ST_QA.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_ST_B10.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_ST_DRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_ST_EMIS.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_ST_EMSD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_ST_TRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_ST_URAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_QA_PIXEL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_ST_ATRAN.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_ST_CDIST.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_QA_RADSAT.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,369285.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/196/023/LC08_L2SP_196023_20200224_20200822_02_T2/LC08_L2SP_196023_20200224_20200822_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[7.82770596,54.17105611],[10.65262324,53.69587034],[9.81802456,51.9977575],[6.99805831,52.48200175],[7.82770596,54.17105611]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-02-24T10:21:05.479625Z","platform":"landsat-8","proj:bbox":[369285.0,5762385.0,608115.0,6003915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81960232020055LGN00","landsat:wrs_path":"196","landsat:wrs_type":"2","view:sun_azimuth":158.9781226,"view:sun_elevation":25.20825836,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20200222_02_T2","bbox":[3.977101603372328,51.9847352284643,7.595959385090385,54.1870047715357],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20200222_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200222_20200822_02_T2/LC08_L2SP_198023_20200222_20200822_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.69917319,54.18522994],[7.59088205,53.76447714],[6.86471619,51.98747562],[3.97867724,52.41920928],[4.69917319,54.18522994]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-02-22T10:33:27.691731Z","platform":"landsat-8","proj:bbox":[566985.0,5768385.0,800415.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":95.51,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232020053LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":159.0892635,"view:sun_elevation":24.48289458,"landsat:cloud_cover_land":97.82,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20200222_02_T2","bbox":[4.424504693297678,53.343855514990395,8.338137807457704,55.6398144850096],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20200222_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200222_20200822_02_T2/LC08_L2SP_198022_20200222_20200822_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.41689729,55.63732574],[8.33285934,55.07582005],[7.33819184,53.34506327],[4.42671398,53.91486626],[5.41689729,55.63732574]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-02-22T10:33:03.813399Z","platform":"landsat-8","proj:bbox":[211485.0,5919285.0,456015.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":46.53,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222020053LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":159.92742658,"view:sun_elevation":23.28757961,"landsat:cloud_cover_land":79.84,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20200215_02_T1","bbox":[5.394591687388682,51.96223537588987,9.098349693044886,54.20751462411013],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20200215_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,264585.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200215_20200823_02_T1/LC08_L2SP_197023_20200215_20200823_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.29037143,54.2070294],[9.09705668,53.68510927],[8.20095231,51.96297736],[5.39871563,52.49336645],[6.29037143,54.2070294]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-02-15T10:27:18.618518Z","platform":"landsat-8","proj:bbox":[264585.0,5762385.0,506415.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.94,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232020046LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":159.53236732,"view:sun_elevation":22.03696525,"landsat:cloud_cover_land":99.92,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20200215_02_T2","bbox":[6.037114516337663,53.378795358931825,9.86837786990161,55.60099464106817],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20200215_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313185.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200215_20200823_02_T2/LC08_L2SP_197022_20200215_20200823_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.95546962,55.60051214],[9.86573587,55.08747788],[8.94502497,53.3798209],[6.03977421,53.90171781],[6.95546962,55.60051214]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-02-15T10:26:54.735950Z","platform":"landsat-8","proj:bbox":[313185.0,5918085.0,554715.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222020046LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":160.32608009,"view:sun_elevation":20.83542551,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20200206_02_T2","bbox":[3.990291593129241,51.98694522884807,7.6096793815010955,54.18688477115193],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20200206_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_SR_B1.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_SR_B2.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_SR_B3.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_SR_B4.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_SR_B5.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_SR_B6.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_SR_B7.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_ST_QA.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_ST_B10.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_ST_DRAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_ST_EMIS.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_ST_EMSD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_ST_TRAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_ST_URAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_QA_PIXEL.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_ST_ATRAN.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_ST_CDIST.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_QA_RADSAT.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200206_20200823_02_T2/LC08_L2SP_198023_20200206_20200823_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.7140533,54.18532134],[7.60672768,53.76463159],[6.88082745,51.98732453],[3.99382645,52.41899983],[4.7140533,54.18532134]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-02-06T10:33:30.957258Z","platform":"landsat-8","proj:bbox":[567885.0,5768685.0,801315.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":84.56,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232020037LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":160.24403573,"view:sun_elevation":19.187054,"landsat:cloud_cover_land":85.23,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20200206_02_T2","bbox":[4.439034690312866,53.344345513279244,8.351677794948868,55.637204486720755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20200206_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_SR_B1.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_SR_B2.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_SR_B3.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_SR_B4.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_SR_B5.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_SR_B6.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_SR_B7.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_ST_QA.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_ST_B10.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_ST_DRAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_ST_EMIS.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_ST_EMSD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_ST_TRAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_ST_URAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_QA_PIXEL.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_ST_ATRAN.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_ST_CDIST.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_QA_RADSAT.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/022/LC08_L2SP_198022_20200206_20200823_02_T2/LC08_L2SP_198022_20200206_20200823_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.43249174,55.63692776],[8.34828202,55.07562562],[7.35427852,53.34510679],[4.44298338,53.91470823],[5.43249174,55.63692776]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-02-06T10:33:07.078928Z","platform":"landsat-8","proj:bbox":[212385.0,5919285.0,456915.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":93.06,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222020037LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":160.98725267,"view:sun_elevation":17.97626381,"landsat:cloud_cover_land":99.99,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20200130_02_T2","bbox":[5.40834168578753,51.96261537467957,9.107549695013711,54.207504625320425],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20200130_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_SR_B1.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_SR_B2.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_SR_B3.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_SR_B4.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_SR_B5.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_SR_B6.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_SR_B7.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_ST_QA.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_ST_B10.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_ST_DRAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_ST_EMIS.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_ST_EMSD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_ST_TRAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_ST_URAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_QA_PIXEL.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_ST_ATRAN.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_ST_CDIST.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_QA_RADSAT.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/023/LC08_L2SP_197023_20200130_20200823_02_T2/LC08_L2SP_197023_20200130_20200823_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.30001411,54.20735774],[9.10700008,53.68557275],[8.21109916,51.96373198],[5.4085584,52.49398771],[6.30001411,54.20735774]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-01-30T10:27:22.506799Z","platform":"landsat-8","proj:bbox":[265485.0,5762385.0,507015.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232020030LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":160.903874,"view:sun_elevation":17.24276786,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20200130_02_T2","bbox":[6.0466145155525854,53.379005358216396,9.877897870879297,55.60092464178361],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20200130_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/197/022/LC08_L2SP_197022_20200130_20200823_02_T2/LC08_L2SP_197022_20200130_20200823_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.96552922,55.60039592],[9.87609641,55.08748335],[8.9555203,53.38011582],[6.0499584,53.90188949],[6.96552922,55.60039592]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-01-30T10:26:58.628469Z","platform":"landsat-8","proj:bbox":[313785.0,5918085.0,555315.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222020030LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":161.61326593,"view:sun_elevation":16.02317278,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20200121_02_T1","bbox":[3.9946016066154524,51.98425522893462,7.609679381030936,54.186844771065374],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20200121_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_SR_B1.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_SR_B2.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_SR_B3.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_SR_B4.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_SR_B5.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_SR_B6.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_SR_B7.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_ST_QA.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_ST_B10.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_ST_DRAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_ST_EMIS.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_ST_EMSD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_ST_TRAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_ST_URAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_ST_CDIST.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/198/023/LC08_L2SP_198023_20200121_20200823_02_T1/LC08_L2SP_198023_20200121_20200823_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.71546504,54.18523302],[7.60846982,53.76433538],[6.88233954,51.98715145],[3.99499992,52.41904114],[4.71546504,54.18523302]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-01-21T10:33:36.328051Z","platform":"landsat-8","proj:bbox":[568185.0,5768385.0,801315.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":44.54,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232020021LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":161.88387422,"view:sun_elevation":15.16455798,"landsat:cloud_cover_land":35.73,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20191127_02_T2","bbox":[5.412931684981916,51.96274537424717,9.116749696004451,54.207504625752826],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20191127_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191127_20200825_02_T2/LC08_L2SP_197023_20191127_20200825_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.30785407,54.20732131],[9.11386602,53.68541147],[8.21730121,51.96362074],[5.41573864,52.49400228],[6.30785407,54.20732131]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-11-27T10:27:35.872357Z","platform":"landsat-8","proj:bbox":[265785.0,5762385.0,507615.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.93,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232019331LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":167.77978806,"view:sun_elevation":14.98121705,"landsat:cloud_cover_land":99.92,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20191118_02_T2","bbox":[3.994601607248808,51.984085228934624,7.6142493803506905,54.186844771065374],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20191118_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191118_20200825_02_T2/LC08_L2SP_198023_20191118_20200825_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.71853835,54.18522829],[7.61036144,53.7642863],[6.88371052,51.98680264],[3.99756894,52.41873742],[4.71853835,54.18522829]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-11-18T10:33:47.440986Z","platform":"landsat-8","proj:bbox":[568185.0,5768385.0,801615.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":81.41,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232019322LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":168.1008694,"view:sun_elevation":16.94549961,"landsat:cloud_cover_land":86.94,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20191118_02_T2","bbox":[4.443774689284599,53.34451551274574,8.35619779613832,55.637224487254265],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20191118_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_SR_B1.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_SR_B2.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_SR_B3.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_SR_B4.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_SR_B5.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_SR_B6.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_SR_B7.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_ST_QA.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_ST_B10.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_ST_DRAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_ST_EMIS.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_ST_EMSD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_ST_TRAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_ST_URAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_QA_PIXEL.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_ST_ATRAN.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_ST_CDIST.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_QA_RADSAT.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212685.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191118_20200825_02_T2/LC08_L2SP_198022_20191118_20200825_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.43823787,55.6371638],[8.3527138,55.07569892],[7.35794815,53.34524868],[4.44796612,53.91500564],[5.43823787,55.6371638]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-11-18T10:33:23.554183Z","platform":"landsat-8","proj:bbox":[212685.0,5919285.0,457215.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.62,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222019322LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":168.7598505,"view:sun_elevation":15.63765441,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20191111_02_T1","bbox":[5.408341685594103,51.96261537467957,9.1121496952524,54.207504625320425],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20191111_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191111_20200825_02_T1/LC08_L2SP_197023_20191111_20200825_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.3035181,54.20693558],[9.10946895,53.68479212],[8.21253586,51.96303681],[5.41105612,52.49365226],[6.3035181,54.20693558]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-11-11T10:27:38.428362Z","platform":"landsat-8","proj:bbox":[265485.0,5762385.0,507315.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":91.44,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232019315LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":168.13022158,"view:sun_elevation":18.77158122,"landsat:cloud_cover_land":90.41,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20191111_02_T1","bbox":[6.051364515181943,53.379105357866756,9.882657871350139,55.60089464213325],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20191111_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191111_20200825_02_T1/LC08_L2SP_197022_20191111_20200825_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.97009972,55.60031782],[9.87960145,55.08706136],[8.95799857,53.37966321],[6.05351731,53.90178337],[6.97009972,55.60031782]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-11-11T10:27:14.545794Z","platform":"landsat-8","proj:bbox":[314085.0,5918085.0,555615.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":65.98,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222019315LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":168.81071109,"view:sun_elevation":17.46356581,"landsat:cloud_cover_land":36.25,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20191102_02_T2","bbox":[3.985851605270566,51.984415228698296,7.605109382723013,54.186924771301705],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20191102_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191102_20200825_02_T2/LC08_L2SP_198023_20191102_20200825_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.70891125,54.18536569],[7.60064203,53.76406377],[6.87347196,51.98697093],[3.98742656,52.41925205],[4.70891125,54.18536569]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-11-02T10:33:50.722384Z","platform":"landsat-8","proj:bbox":[567585.0,5768385.0,801015.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":87.11,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232019306LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":167.86256508,"view:sun_elevation":21.43527595,"landsat:cloud_cover_land":89.01,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20191102_02_T2","bbox":[4.4339846912893135,53.34418551389232,8.347167809962343,55.639874486107686],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20191102_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191102_20200825_02_T2/LC08_L2SP_198022_20191102_20200825_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.42814624,55.63720672],[8.34338166,55.07529094],[7.34788085,53.34487664],[4.43713585,53.91508767],[5.42814624,55.63720672]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-11-02T10:33:26.839816Z","platform":"landsat-8","proj:bbox":[212085.0,5919285.0,456615.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":62.0,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222019306LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":168.57777004,"view:sun_elevation":20.13002096,"landsat:cloud_cover_land":30.06,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20191026_02_T1","bbox":[5.403521686160524,51.96249537513645,9.107559709414637,54.21020462486355],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20191026_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_SR_B1.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_SR_B2.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_SR_B3.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_SR_B4.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_SR_B5.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_SR_B6.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_SR_B7.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_ST_QA.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_ST_B10.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_ST_DRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_ST_EMIS.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_ST_EMSD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_ST_TRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_ST_URAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_ST_CDIST.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191026_20200825_02_T1/LC08_L2SP_197023_20191026_20200825_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.29705354,54.20748395],[9.10347954,53.68488804],[8.20608973,51.96311653],[5.40413017,52.4941827],[6.29705354,54.20748395]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-10-26T10:27:40.426869Z","platform":"landsat-8","proj:bbox":[265185.0,5762385.0,507015.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":77.35,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232019299LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":167.42409483,"view:sun_elevation":23.71128641,"landsat:cloud_cover_land":72.6,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20191026_02_T2","bbox":[6.0466145155525854,53.379005358216396,9.877897870879297,55.60092464178361],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20191026_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191026_20200825_02_T2/LC08_L2SP_197022_20191026_20200825_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.96386354,55.60072718],[9.87366455,55.08708869],[8.9516444,53.37984879],[6.04686278,53.90234485],[6.96386354,55.60072718]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-10-26T10:27:16.544302Z","platform":"landsat-8","proj:bbox":[313785.0,5918085.0,555315.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":98.53,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222019299LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":168.17261375,"view:sun_elevation":22.4107558,"landsat:cloud_cover_land":95.53,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20191017_02_T1","bbox":[3.985851605270566,51.984415228698296,7.605109382723013,54.186924771301705],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20191017_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191017_20200825_02_T1/LC08_L2SP_198023_20191017_20200825_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.70824608,54.18562096],[7.60039864,53.76403081],[6.87302868,51.9870035],[3.9865808,52.41957955],[4.70824608,54.18562096]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-10-17T10:33:51.077553Z","platform":"landsat-8","proj:bbox":[567585.0,5768385.0,801015.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":47.09,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232019290LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":166.55567262,"view:sun_elevation":26.82170587,"landsat:cloud_cover_land":62.45,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20191017_02_T2","bbox":[4.4339846912893135,53.34418551389232,8.347167809962343,55.639874486107686],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20191017_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191017_20200825_02_T2/LC08_L2SP_198022_20191017_20200825_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.42757439,55.63743706],[8.34322289,55.07527419],[7.34756524,53.34497047],[4.43643021,53.91543111],[5.42757439,55.63743706]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-10-17T10:33:27.194986Z","platform":"landsat-8","proj:bbox":[212085.0,5919285.0,456615.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":47.38,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222019290LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":167.35551171,"view:sun_elevation":25.53071085,"landsat:cloud_cover_land":2.24,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20191010_02_T2","bbox":[5.403761686160524,51.96249537507796,9.107549694498877,54.20750462492204],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20191010_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20191010_20200825_02_T2/LC08_L2SP_197023_20191010_20200825_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.29837137,54.2074753],[9.10498175,53.68478947],[8.20758844,51.96311443],[5.40543623,52.49427192],[6.29837137,54.2074753]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-10-10T10:27:39.541515Z","platform":"landsat-8","proj:bbox":[265185.0,5762385.0,507015.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":59.81,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232019283LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":165.65938734,"view:sun_elevation":29.34325127,"landsat:cloud_cover_land":60.41,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20191010_02_T1","bbox":[6.0466145155525854,53.379005358216396,9.877897870879297,55.60092464178361],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20191010_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20191010_20200825_02_T1/LC08_L2SP_197022_20191010_20200825_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.9652676,55.60059335],[9.87544061,55.08680659],[8.95339743,53.37960879],[6.04824527,53.9022658],[6.9652676,55.60059335]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-10-10T10:27:15.658947Z","platform":"landsat-8","proj:bbox":[313785.0,5918085.0,555315.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":31.14,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222019283LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":166.50688469,"view:sun_elevation":28.06248269,"landsat:cloud_cover_land":33.46,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20191001_02_T1","bbox":[3.9902316062359455,51.984255228816316,7.6096793815010955,54.186884771183685],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20191001_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20191001_20200825_02_T1/LC08_L2SP_198023_20191001_20200825_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.71361091,54.18533363],[7.606146,53.76377418],[6.87882357,51.98671678],[3.99196882,52.41926387],[4.71361091,54.18533363]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-10-01T10:33:48.752820Z","platform":"landsat-8","proj:bbox":[567885.0,5768385.0,801315.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":95.5,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232019274LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":164.25503863,"view:sun_elevation":32.64969486,"landsat:cloud_cover_land":96.08,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20191001_02_T2","bbox":[4.438724690312866,53.34434551333413,8.351677811153117,55.63989448666587],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20191001_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20191001_20200825_02_T2/LC08_L2SP_198022_20191001_20200825_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.43325948,55.63719069],[8.34898032,55.07505891],[7.35344724,53.34491644],[4.44222196,53.91534707],[5.43325948,55.63719069]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-10-01T10:33:24.866017Z","platform":"landsat-8","proj:bbox":[212385.0,5919285.0,456915.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.98,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222019274LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":165.1743786,"view:sun_elevation":31.38529098,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20190924_02_T1","bbox":[5.412691684981916,51.962745374306635,9.116759710918775,54.21019462569336],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20190924_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_SR_B1.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_SR_B2.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_SR_B3.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_SR_B4.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_SR_B5.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_SR_B6.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_SR_B7.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_ST_QA.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_ST_B10.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_ST_DRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_ST_EMIS.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_ST_EMSD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_ST_TRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_ST_URAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_ST_CDIST.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265785.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190924_20200826_02_T1/LC08_L2SP_197023_20190924_20200826_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.30601445,54.20750091],[9.11296114,53.68491005],[8.21572915,51.96347125],[5.41322728,52.49454611],[6.30601445,54.20750091]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-09-24T10:27:36.102949Z","platform":"landsat-8","proj:bbox":[265785.0,5762385.0,507615.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":72.72,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232019267LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":162.99529426,"view:sun_elevation":35.23507173,"landsat:cloud_cover_land":75.16,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20190924_02_T1","bbox":[6.056114514771244,53.37921535750327,9.887417871866452,55.60086464249673],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20190924_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314385.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190924_20200826_02_T1/LC08_L2SP_197022_20190924_20200826_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.973122,55.60066132],[9.88345304,55.08706236],[8.9615985,53.38002775],[6.05627302,53.90249875],[6.973122,55.60066132]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-09-24T10:27:12.220381Z","platform":"landsat-8","proj:bbox":[314385.0,5918085.0,555915.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":58.08,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222019267LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":163.97900657,"view:sun_elevation":33.98631328,"landsat:cloud_cover_land":72.69,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20190915_02_T1","bbox":[4.003351609167372,51.983765229178516,7.623399377974572,54.18676477082148],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20190915_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190915_20200826_02_T1/LC08_L2SP_198023_20190915_20200826_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.72536301,54.18553904],[7.61831526,53.76404441],[6.89111848,51.98655426],[4.00383481,52.4190462],[4.72536301,54.18553904]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-09-15T10:33:43.993336Z","platform":"landsat-8","proj:bbox":[568785.0,5768385.0,802215.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":77.83,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232019258LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":161.20186051,"view:sun_elevation":38.51300689,"landsat:cloud_cover_land":67.06,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20190915_02_T2","bbox":[4.453264687344524,53.34483551160399,8.365227798632635,55.63728448839601],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20190915_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_SR_B1.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_SR_B2.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_SR_B3.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_SR_B4.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_SR_B5.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_SR_B6.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_SR_B7.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_ST_QA.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_ST_B10.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_ST_DRAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_ST_EMIS.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_ST_EMSD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_ST_TRAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_ST_URAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_QA_PIXEL.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_ST_ATRAN.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_ST_CDIST.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_QA_RADSAT.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,213285.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190915_20200826_02_T2/LC08_L2SP_198022_20190915_20200826_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.44574631,55.63703021],[8.36068256,55.07516849],[7.36569768,53.34515547],[4.45524555,53.91533144],[5.44574631,55.63703021]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-09-15T10:33:20.106532Z","platform":"landsat-8","proj:bbox":[213285.0,5919285.0,457815.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":80.79,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222019258LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":162.28007403,"view:sun_elevation":37.28696319,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20190908_02_T1","bbox":[5.426681683196876,51.96312537304317,9.130549698198585,54.20748462695683],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20190908_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266685.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190908_20200826_02_T1/LC08_L2SP_197023_20190908_20200826_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.31919801,54.20694732],[9.12584099,53.68475282],[8.22897217,51.96342247],[5.42676735,52.49410192],[6.31919801,54.20694732]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-09-08T10:27:30.395093Z","platform":"landsat-8","proj:bbox":[266685.0,5762385.0,508515.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":62.95,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232019251LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":159.71051383,"view:sun_elevation":40.99722112,"landsat:cloud_cover_land":69.9,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20190908_02_T1","bbox":[6.0656145139310915,53.379425356793384,9.901707872870938,55.60075464320661],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20190908_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_SR_B1.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_SR_B2.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_SR_B3.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_SR_B4.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_SR_B5.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_SR_B6.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_SR_B7.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_ST_QA.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_ST_B10.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_ST_DRAD.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_ST_EMIS.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_ST_EMSD.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_ST_TRAD.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_ST_URAD.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_ST_CDIST.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190908_20200826_02_T1/LC08_L2SP_197022_20190908_20200826_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.98638451,55.59998823],[9.89649456,55.08670801],[8.97496308,53.37989539],[6.06984024,53.90204352],[6.98638451,55.59998823]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-09-08T10:27:06.512526Z","platform":"landsat-8","proj:bbox":[314985.0,5918085.0,556815.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":20.36,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222019251LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":160.87073084,"view:sun_elevation":39.79137261,"landsat:cloud_cover_land":29.9,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20190830_02_T1","bbox":[4.007791597092856,51.98628522932553,7.627969376749888,54.18672477067447],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20190830_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_SR_B1.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_SR_B2.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_SR_B3.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_SR_B4.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_SR_B5.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_SR_B6.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_SR_B7.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_ST_QA.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_ST_B10.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_ST_DRAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_ST_EMIS.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_ST_EMSD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_ST_TRAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_ST_URAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_ST_ATRAN.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_ST_CDIST.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190830_20200826_02_T1/LC08_L2SP_198023_20190830_20200826_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.73321659,54.18597673],[7.62584222,53.76460408],[6.898701,51.98684605],[4.01173233,52.4192184],[4.73321659,54.18597673]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-08-30T10:33:39.090822Z","platform":"landsat-8","proj:bbox":[569085.0,5768685.0,802515.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":52.57,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232019242LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":157.75224914,"view:sun_elevation":44.05954081,"landsat:cloud_cover_land":27.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20190830_02_T1","bbox":[4.462744685711713,53.34516551051392,8.369737800608497,55.63730448948608],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20190830_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_SR_B1.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_SR_B2.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_SR_B3.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_SR_B4.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_SR_B5.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_SR_B6.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_SR_B7.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_ST_QA.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_ST_B10.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_ST_DRAD.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_ST_EMIS.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_ST_EMSD.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_ST_TRAD.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_ST_URAD.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_QA_PIXEL.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_ST_ATRAN.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_ST_CDIST.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_QA_RADSAT.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8221,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190830_20200826_02_T1/LC08_L2SP_198022_20190830_20200826_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.4538173,55.63694674],[8.36815922,55.07532976],[7.37326169,53.34544435],[4.46340537,53.91536527],[5.4538173,55.63694674]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-08-30T10:33:15.208254Z","platform":"landsat-8","proj:bbox":[213885.0,5919285.0,458115.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":79.85,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222019242LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":159.02808547,"view:sun_elevation":42.88097642,"landsat:cloud_cover_land":4.33,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20190823_02_T1","bbox":[5.422101683807313,51.96299537343794,9.125949697450826,54.20749462656206],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20190823_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190823_20200826_02_T1/LC08_L2SP_197023_20190823_20200826_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.31873375,54.20705345],[9.12478545,53.68487752],[8.22776691,51.96335586],[5.42615428,52.49400911],[6.31873375,54.20705345]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-08-23T10:27:26.823002Z","platform":"landsat-8","proj:bbox":[266385.0,5762385.0,508215.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":21.92,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232019235LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":156.24073925,"view:sun_elevation":46.31277514,"landsat:cloud_cover_land":23.14,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20190823_02_T1","bbox":[6.065614514005511,53.379425356793384,9.896947872789193,55.60079464320661],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20190823_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190823_20200826_02_T1/LC08_L2SP_197022_20190823_20200826_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.98603877,55.60012767],[9.89559881,55.08686295],[8.97387702,53.3799314],[6.06931102,53.90206087],[6.98603877,55.60012767]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-08-23T10:27:02.940436Z","platform":"landsat-8","proj:bbox":[314985.0,5918085.0,556515.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":12.05,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222019235LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":157.61283465,"view:sun_elevation":45.15604169,"landsat:cloud_cover_land":22.53,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20190814_02_T1","bbox":[4.007731610183679,51.983595229292916,7.627969376749888,54.18672477070709],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20190814_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190814_20200827_02_T1/LC08_L2SP_198023_20190814_20200827_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.73173067,54.18572623],[7.62397495,53.76431158],[6.89659432,51.98664684],[4.01002002,52.41906544],[4.73173067,54.18572623]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-08-14T10:33:35.256309Z","platform":"landsat-8","proj:bbox":[569085.0,5768385.0,802515.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":64.79,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232019226LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":154.40446629,"view:sun_elevation":48.99835569,"landsat:cloud_cover_land":46.01,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20190814_02_T2","bbox":[4.458004700567867,53.34230551101095,8.369777799818763,55.63730448898905],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20190814_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213585.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213585.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213585.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213585.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213585.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213585.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213585.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213585.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213585.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213585.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213585.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213585.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213585.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213585.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213585.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213585.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213585.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213585.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213585.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190814_20200827_02_T2/LC08_L2SP_198022_20190814_20200827_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.45241084,55.63687959],[8.36630779,55.07518551],[7.37117848,53.34519625],[4.46176354,53.91520377],[5.45241084,55.63687959]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-08-14T10:33:11.373742Z","platform":"landsat-8","proj:bbox":[213585.0,5918985.0,458115.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":26.4,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222019226LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":155.9054282,"view:sun_elevation":47.86917026,"landsat:cloud_cover_land":37.91,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20190807_02_T1","bbox":[5.422101683807313,51.96299537343794,9.125949697450826,54.20749462656206],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20190807_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190807_20200827_02_T1/LC08_L2SP_197023_20190807_20200827_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.3192906,54.20722441],[9.12503697,53.68505828],[8.22788232,51.96351788],[5.42658854,52.49417447],[6.3192906,54.20722441]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-08-07T10:27:22.154328Z","platform":"landsat-8","proj:bbox":[266385.0,5762385.0,508215.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":41.12,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232019219LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":153.1175219,"view:sun_elevation":50.90264552,"landsat:cloud_cover_land":44.37,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20190807_02_T2","bbox":[6.065614514005511,53.379425356793384,9.896947872789193,55.60079464320661],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20190807_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190807_20200827_02_T2/LC08_L2SP_197022_20190807_20200827_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.98663422,55.60040992],[9.89595633,55.08714109],[8.97415617,53.38007943],[6.06984316,53.90222316],[6.98663422,55.60040992]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-08-07T10:26:58.271760Z","platform":"landsat-8","proj:bbox":[314985.0,5918085.0,556515.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":54.97,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222019219LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":154.71916131,"view:sun_elevation":49.79327392,"landsat:cloud_cover_land":65.4,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20190729_02_T1","bbox":[4.012111610568263,51.98359522941331,7.627969376273575,54.18668477058669],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20190729_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_SR_B1.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_SR_B2.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_SR_B3.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_SR_B4.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_SR_B5.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_SR_B6.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_SR_B7.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_ST_QA.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_ST_B10.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_ST_DRAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_ST_EMIS.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_ST_EMSD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_ST_TRAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_ST_URAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_ST_CDIST.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,569385.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190729_20200827_02_T1/LC08_L2SP_198023_20190729_20200827_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.73427061,54.185583],[7.62663833,53.76427426],[6.89923145,51.98655567],[4.01254355,52.41885903],[4.73427061,54.185583]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-07-29T10:33:29.465310Z","platform":"landsat-8","proj:bbox":[569385.0,5768385.0,802515.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":60.35,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232019210LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":151.75397157,"view:sun_elevation":53.07629445,"landsat:cloud_cover_land":59.95,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20190729_02_T2","bbox":[4.462744699543365,53.342475510455834,8.374287801063161,55.637334489544166],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20190729_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190729_20200827_02_T2/LC08_L2SP_198022_20190729_20200827_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.45549049,55.63693031],[8.3691137,55.0753063],[7.3740282,53.34541588],[4.46489804,53.91534887],[5.45549049,55.63693031]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-07-29T10:33:05.578508Z","platform":"landsat-8","proj:bbox":[213885.0,5918985.0,458415.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":92.96,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222019210LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":153.48018156,"view:sun_elevation":51.98822131,"landsat:cloud_cover_land":99.72,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20190722_02_T1","bbox":[5.4312716828238115,51.9632453726308,9.13054969865921,54.2074846273692],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20190722_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_SR_B1.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,266985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_SR_B2.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,266985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_SR_B3.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,266985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_SR_B4.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,266985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_SR_B5.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,266985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_SR_B6.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,266985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_SR_B7.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,266985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_ST_QA.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,266985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_ST_B10.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,266985.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_ST_DRAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,266985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_ST_EMIS.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,266985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_ST_EMSD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,266985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_ST_TRAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,266985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_ST_URAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,266985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,266985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,266985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_ST_CDIST.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,266985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,266985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,266985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190722_20200827_02_T1/LC08_L2SP_197023_20190722_20200827_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.32422455,54.20698539],[9.13007212,53.68489787],[8.23304709,51.96354389],[5.43166649,52.49411925],[6.32422455,54.20698539]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-07-22T10:27:15.512064Z","platform":"landsat-8","proj:bbox":[266985.0,5762385.0,508515.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":94.78,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232019203LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":150.96264212,"view:sun_elevation":54.52707205,"landsat:cloud_cover_land":94.42,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20190722_02_T2","bbox":[6.0703645136382836,53.37952535644508,9.90170787328794,55.60075464355492],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20190722_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,315285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190722_20200827_02_T2/LC08_L2SP_197022_20190722_20200827_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.99163716,55.60013429],[9.90103244,55.08695761],[8.97932575,53.38003449],[6.07494711,53.90207839],[6.99163716,55.60013429]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-07-22T10:26:51.629496Z","platform":"landsat-8","proj:bbox":[315285.0,5918085.0,556815.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222019203LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":152.77589753,"view:sun_elevation":53.45173044,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20190713_02_T2","bbox":[4.007791597092856,51.98628522932553,7.627969376749888,54.18672477067447],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20190713_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_SR_B1.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_SR_B2.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_SR_B3.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_SR_B4.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_SR_B5.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_SR_B6.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_SR_B7.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_ST_QA.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_ST_B10.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_ST_DRAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_ST_EMIS.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_ST_EMSD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_ST_TRAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_ST_URAD.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_QA_PIXEL.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_ST_ATRAN.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_ST_CDIST.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_QA_RADSAT.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7871,7781],"proj:transform":[30.0,0.0,569085.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190713_20200827_02_T2/LC08_L2SP_198023_20190713_20200827_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.73383272,54.18604292],[7.62603759,53.76457986],[6.89858791,51.98674616],[4.01206992,52.41921059],[4.73383272,54.18604292]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-07-13T10:33:23.885744Z","platform":"landsat-8","proj:bbox":[569085.0,5768685.0,802515.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":88.11,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232019194LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":150.36348784,"view:sun_elevation":56.04409982,"landsat:cloud_cover_land":89.8,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20190713_02_T2","bbox":[4.462744699907138,53.342475510455834,8.369777800608498,55.637304489544164],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20190713_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_SR_B1.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_SR_B2.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_SR_B3.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_SR_B4.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_SR_B5.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_SR_B6.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_SR_B7.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_ST_QA.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_ST_B10.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_ST_DRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_ST_EMIS.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_ST_EMSD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_ST_TRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_ST_URAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_ST_CDIST.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,213885.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190713_20200827_02_T2/LC08_L2SP_198022_20190713_20200827_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.4545918,55.6367598],[8.36850572,55.07505823],[7.37326465,53.34523315],[4.46385384,53.91524265],[5.4545918,55.6367598]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-07-13T10:33:00.007412Z","platform":"landsat-8","proj:bbox":[213885.0,5918985.0,458115.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":90.18,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222019194LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":152.26917756,"view:sun_elevation":54.97842458,"landsat:cloud_cover_land":80.01,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20190706_02_T2","bbox":[5.4175116844169375,51.96286537385122,9.121349696700676,54.20749462614878],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20190706_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266085.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190706_20200827_02_T2/LC08_L2SP_197023_20190706_20200827_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.31355502,54.20730086],[9.11953466,53.68479601],[8.22203048,51.96325239],[5.420523,52.49423408],[6.31355502,54.20730086]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-07-06T10:27:11.956781Z","platform":"landsat-8","proj:bbox":[266085.0,5762385.0,507915.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.96,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232019187LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":150.2440269,"view:sun_elevation":56.92930176,"landsat:cloud_cover_land":99.95,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20190706_02_T2","bbox":[6.060864514414334,53.37931535715476,9.892177872321167,55.60082464284524],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20190706_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,314685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190706_20200827_02_T2/LC08_L2SP_197022_20190706_20200827_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.98113516,55.60058535],[9.89066267,55.08699521],[8.96847516,53.38003886],[6.06396795,53.90248833],[6.98113516,55.60058535]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-07-06T10:26:48.069978Z","platform":"landsat-8","proj:bbox":[314685.0,5918085.0,556215.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":89.94,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222019187LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":152.2012801,"view:sun_elevation":55.86477819,"landsat:cloud_cover_land":99.95,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20190627_02_T1","bbox":[3.994601607248808,51.984085228934624,7.6142493803506905,54.186844771065374],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20190627_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568185.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190627_20200827_02_T1/LC08_L2SP_198023_20190627_20200827_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.72017999,54.18599982],[7.61228943,53.76417974],[6.88438016,51.98701259],[3.99796106,52.41981896],[4.72017999,54.18599982]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-06-27T10:33:20.690518Z","platform":"landsat-8","proj:bbox":[568185.0,5768385.0,801615.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":88.92,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232019178LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":150.54072596,"view:sun_elevation":57.6492538,"landsat:cloud_cover_land":78.13,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20190627_02_T2","bbox":[4.448514702881004,53.34198551212551,8.356237796927532,55.63722448787449],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20190627_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_SR_B1.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_SR_B2.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_SR_B3.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_SR_B4.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_SR_B5.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_SR_B6.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_SR_B7.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_ST_QA.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_ST_B10.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_ST_DRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_ST_EMIS.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_ST_EMSD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_ST_TRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_ST_URAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_ST_CDIST.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190627_20200827_02_T2/LC08_L2SP_198022_20190627_20200827_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.44062523,55.63708468],[8.35539686,55.07483539],[7.35942699,53.34491011],[4.4491595,53.91546478],[5.44062523,55.63708468]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-06-27T10:32:56.812187Z","platform":"landsat-8","proj:bbox":[212985.0,5918985.0,457215.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.55,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222019178LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":152.52941139,"view:sun_elevation":56.57983712,"landsat:cloud_cover_land":94.51,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20190620_02_T1","bbox":[5.408111685594104,51.9626153747205,9.112159710167795,54.2102046252795],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20190620_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_SR_B1.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_SR_B2.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_SR_B3.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_SR_B4.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_SR_B5.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_SR_B6.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_SR_B7.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_ST_QA.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_ST_B10.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_ST_DRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_ST_EMIS.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_ST_EMSD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_ST_TRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_ST_URAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_ST_CDIST.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190620_20200827_02_T1/LC08_L2SP_197023_20190620_20200827_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.30338465,54.20759752],[9.10979754,53.68468151],[8.21182441,51.96318401],[5.40987447,52.49457483],[6.30338465,54.20759752]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-06-20T10:27:07.868053Z","platform":"landsat-8","proj:bbox":[265485.0,5762385.0,507315.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":91.1,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232019171LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":151.06547992,"view:sun_elevation":57.8593279,"landsat:cloud_cover_land":90.43,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20190620_02_T2","bbox":[6.051164515181942,53.379105357905765,9.882717887637343,55.60359464209424],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20190620_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_SR_B1.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_SR_B2.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_SR_B3.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_SR_B4.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_SR_B5.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_SR_B6.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_SR_B7.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_ST_QA.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_ST_B10.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_ST_DRAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_ST_EMIS.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_ST_EMSD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_ST_TRAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_ST_URAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_QA_PIXEL.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_ST_ATRAN.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_ST_CDIST.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_QA_RADSAT.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162315.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190620_20200827_02_T2/LC08_L2SP_197022_20190620_20200827_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.97098315,55.60090299],[9.88098957,55.08689883],[8.95831309,53.3798845],[6.05331576,53.9027565],[6.97098315,55.60090299]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-06-20T10:26:43.981249Z","platform":"landsat-8","proj:bbox":[314085.0,5918085.0,555615.0,6162315.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":95.8,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222019171LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":153.05136432,"view:sun_elevation":56.78059584,"landsat:cloud_cover_land":98.77,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20190611_02_T1","bbox":[3.9902316062359455,51.984255228816316,7.6096793815010955,54.186884771183685],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20190611_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190611_20200828_02_T1/LC08_L2SP_198023_20190611_20200828_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.71358847,54.18539933],[7.6058014,53.76342163],[6.87764611,51.98646075],[3.9911262,52.41941965],[4.71358847,54.18539933]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-06-11T10:33:15.500730Z","platform":"landsat-8","proj:bbox":[567885.0,5768385.0,801315.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":89.8,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232019162LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":152.02484102,"view:sun_elevation":57.6551225,"landsat:cloud_cover_land":84.44,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20190611_02_T2","bbox":[4.438724704516819,53.34165551329487,8.351727811153117,55.63989448670514],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20190611_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_SR_B1.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_SR_B2.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_SR_B3.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_SR_B4.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_SR_B5.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_SR_B6.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_SR_B7.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_ST_QA.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_ST_B10.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_ST_DRAD.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_ST_EMIS.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_ST_EMSD.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_ST_TRAD.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_ST_URAD.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_QA_PIXEL.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_ST_ATRAN.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_ST_CDIST.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_QA_RADSAT.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8241,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190611_20200828_02_T2/LC08_L2SP_198022_20190611_20200828_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.43402159,55.63720247],[8.34936718,55.0746605],[7.35304947,53.34464491],[4.4421916,53.91548684],[5.43402159,55.63720247]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-06-11T10:32:51.613925Z","platform":"landsat-8","proj:bbox":[212385.0,5918985.0,456915.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.99,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222019162LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":153.97110032,"view:sun_elevation":56.56078208,"landsat:cloud_cover_land":99.98,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20190604_02_T1","bbox":[5.403521686160524,51.96249537513645,9.107559709414637,54.21020462486355],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20190604_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_SR_B1.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_SR_B2.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_SR_B3.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_SR_B4.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_SR_B5.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_SR_B6.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_SR_B7.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_ST_QA.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_ST_B10.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_ST_DRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_ST_EMIS.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_ST_EMSD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_ST_TRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_ST_URAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_ST_CDIST.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190604_20200828_02_T1/LC08_L2SP_197023_20190604_20200828_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.30038387,54.20758012],[9.10693925,53.68449211],[8.20875265,51.96297966],[5.40665224,52.49454356],[6.30038387,54.20758012]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-06-04T10:27:01.771867Z","platform":"landsat-8","proj:bbox":[265185.0,5762385.0,507015.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":35.42,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232019155LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":152.90901635,"view:sun_elevation":57.11775322,"landsat:cloud_cover_land":37.19,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20190604_02_T1","bbox":[6.0466145154754445,53.379005358216396,9.882657870978466,55.600894641783604],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20190604_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_SR_B1.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_SR_B2.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_SR_B3.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_SR_B4.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_SR_B5.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_SR_B6.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_SR_B7.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_ST_QA.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_ST_B10.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_ST_DRAD.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_ST_EMIS.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_ST_EMSD.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_ST_TRAD.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_ST_URAD.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_ST_CDIST.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,313785.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190604_20200828_02_T1/LC08_L2SP_197022_20190604_20200828_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.96821746,55.60085117],[9.87815836,55.08667081],[8.95538639,53.37967108],[6.05045201,53.90271572],[6.96821746,55.60085117]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-06-04T10:26:37.885064Z","platform":"landsat-8","proj:bbox":[313785.0,5918085.0,555615.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":57.12,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222019155LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":154.80017224,"view:sun_elevation":56.00934205,"landsat:cloud_cover_land":30.52,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20190526_02_T2","bbox":[3.9902316062359455,51.984255228816316,7.6096793815010955,54.186884771183685],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20190526_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567885.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190526_20200828_02_T2/LC08_L2SP_198023_20190526_20200828_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.71468049,54.18593564],[7.60691215,53.76395042],[6.87877766,51.98692537],[3.99221367,52.41991106],[4.71468049,54.18593564]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-05-26T10:33:08.151618Z","platform":"landsat-8","proj:bbox":[567885.0,5768385.0,801315.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":93.92,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232019146LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":154.0812864,"view:sun_elevation":55.94437841,"landsat:cloud_cover_land":94.5,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20190526_02_T2","bbox":[4.438724690312866,53.34434551333413,8.351677811153117,55.63989448666587],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20190526_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212385.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190526_20200828_02_T2/LC08_L2SP_198022_20190526_20200828_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.43505274,55.63738425],[8.35034705,55.07483241],[7.35402775,53.34476507],[4.44320616,53.91562278],[5.43505274,55.63738425]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-05-26T10:32:44.269051Z","platform":"landsat-8","proj:bbox":[212385.0,5919285.0,456915.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.3,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222019146LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":155.87875632,"view:sun_elevation":54.81793235,"landsat:cloud_cover_land":99.97,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20190519_02_T1","bbox":[5.408111685402219,51.9626153747205,9.116759710404256,54.2101946252795],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20190519_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_SR_B1.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_SR_B2.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_SR_B3.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_SR_B4.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_SR_B5.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_SR_B6.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_SR_B7.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_ST_QA.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_ST_B10.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_ST_DRAD.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_ST_EMIS.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_ST_EMSD.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_ST_TRAD.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_ST_URAD.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_ST_CDIST.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8071],"proj:transform":[30.0,0.0,265485.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190519_20200828_02_T1/LC08_L2SP_197023_20190519_20200828_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.30580325,54.20754934],[9.1121728,53.68463358],[8.21413094,51.9631552],[5.41220668,52.49455565],[6.30580325,54.20754934]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-05-19T10:26:53.444924Z","platform":"landsat-8","proj:bbox":[265485.0,5762385.0,507615.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":60.36,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232019139LGN01","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":154.93372913,"view:sun_elevation":54.66770237,"landsat:cloud_cover_land":50.42,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20190519_02_T1","bbox":[6.051364515105448,53.379105357866756,9.887417871448532,55.600864642133246],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20190519_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_SR_B1.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_SR_B2.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_SR_B3.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_SR_B4.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_SR_B5.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_SR_B6.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_SR_B7.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_ST_QA.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_ST_B10.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_ST_DRAD.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_ST_EMIS.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_ST_EMSD.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_ST_TRAD.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_ST_URAD.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_ST_CDIST.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314085.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190519_20200828_02_T1/LC08_L2SP_197022_20190519_20200828_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.97359952,55.60061168],[9.88337065,55.08662515],[8.96062448,53.37961246],[6.05584844,53.90247025],[6.97359952,55.60061168]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-05-19T10:26:29.562356Z","platform":"landsat-8","proj:bbox":[314085.0,5918085.0,555915.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":77.58,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222019139LGN01","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":156.64800374,"view:sun_elevation":53.52852042,"landsat:cloud_cover_land":49.28,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20190510_02_T1","bbox":[3.998981608200543,51.983925229053455,7.6188293791279715,54.186804770946544],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20190510_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,568485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190510_20200828_02_T1/LC08_L2SP_198023_20190510_20200828_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.72328365,54.18553135],[7.61553114,53.76374305],[6.88766571,51.98642357],[4.00107742,52.41920726],[4.72328365,54.18553135]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-05-10T10:32:58.554047Z","platform":"landsat-8","proj:bbox":[568485.0,5768385.0,801915.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":45.23,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232019130LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":155.87473821,"view:sun_elevation":52.59390783,"landsat:cloud_cover_land":69.41,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20190510_02_T1","bbox":[4.448514702504964,53.34198551212551,8.360747797387056,55.63725448787449],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20190510_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,212985.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190510_20200828_02_T1/LC08_L2SP_198022_20190510_20200828_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.44424928,55.6370784],[8.35873383,55.07482857],[7.36286502,53.34486379],[4.45284428,53.91542421],[5.44424928,55.6370784]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-05-10T10:32:34.667245Z","platform":"landsat-8","proj:bbox":[212985.0,5918985.0,457515.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":45.89,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222019130LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":157.47640167,"view:sun_elevation":51.44076508,"landsat:cloud_cover_land":52.49,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20190503_02_T1","bbox":[5.422101683807313,51.96299537343794,9.125949697450826,54.20749462656206],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20190503_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,266385.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190503_20200828_02_T1/LC08_L2SP_197023_20190503_20200828_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.31942541,54.2072644],[9.12533501,53.68472766],[8.22773636,51.96330069],[5.42627148,52.49433031],[6.31942541,54.2072644]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-05-03T10:26:42.890788Z","platform":"landsat-8","proj:bbox":[266385.0,5762385.0,508215.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":81.03,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232019123LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":156.47044508,"view:sun_elevation":50.67304972,"landsat:cloud_cover_land":83.6,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20190503_02_T1","bbox":[6.0656145139310915,53.379425356793384,9.901707872870938,55.60075464320661],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20190503_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_SR_B1.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_SR_B2.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_SR_B3.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_SR_B4.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_SR_B5.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_SR_B6.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_SR_B7.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_ST_QA.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_ST_B10.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_ST_DRAD.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_ST_EMIS.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_ST_EMSD.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_ST_TRAD.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_ST_URAD.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_ST_CDIST.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8061],"proj:transform":[30.0,0.0,314985.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190503_20200829_02_T1/LC08_L2SP_197022_20190503_20200829_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.9874196,55.60051799],[9.89685109,55.08689339],[8.97446736,53.38006091],[6.07003422,53.90256174],[6.9874196,55.60051799]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-05-03T10:26:19.003984Z","platform":"landsat-8","proj:bbox":[314985.0,5918085.0,556815.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":74.38,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222019123LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":157.98441873,"view:sun_elevation":49.51156097,"landsat:cloud_cover_land":67.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20190424_02_T1","bbox":[3.95523159797779,51.9857052278828,7.568519391727436,54.18719477211721],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20190424_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_SR_B1.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,565485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_SR_B2.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,565485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_SR_B3.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,565485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_SR_B4.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,565485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_SR_B5.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,565485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_SR_B6.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,565485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_SR_B7.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,565485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_ST_QA.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,565485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_ST_B10.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,565485.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_ST_DRAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,565485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_ST_EMIS.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,565485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_ST_EMSD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,565485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_ST_TRAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,565485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_ST_URAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,565485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,565485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,565485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_ST_CDIST.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,565485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,565485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,565485.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190424_20200829_02_T1/LC08_L2SP_198023_20190424_20200829_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.6764187,54.18449312],[7.56665665,53.76369415],[6.84019905,51.9873505],[3.95560647,52.41910778],[4.6764187,54.18449312]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-04-24T10:32:51.072389Z","platform":"landsat-8","proj:bbox":[565485.0,5768385.0,798615.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":29.12,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232019114LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":156.96857489,"view:sun_elevation":47.85463629,"landsat:cloud_cover_land":25.14,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20190424_02_T2","bbox":[4.40080469867644,53.34303551777821,8.311057800753707,55.639654482221786],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20190424_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_SR_B1.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_SR_B2.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_SR_B3.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_SR_B4.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_SR_B5.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_SR_B6.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_SR_B7.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_ST_QA.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_ST_B10.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_ST_DRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_ST_EMIS.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_ST_EMSD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_ST_TRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_ST_URAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_ST_CDIST.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,209985.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190424_20200828_02_T2/LC08_L2SP_198022_20190424_20200828_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.3931522,55.63772436],[8.30946056,55.07590892],[7.31395645,53.34461492],[4.4021099,53.91472953],[5.3931522,55.63772436]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-04-24T10:32:27.189822Z","platform":"landsat-8","proj:bbox":[209985.0,5919285.0,454215.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":84.1,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222019114LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":158.37103824,"view:sun_elevation":46.68575356,"landsat:cloud_cover_land":99.92,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20190417_02_T1","bbox":[5.371431690428083,51.96159537799664,9.07535970422572,54.21023462200336],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20190417_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_SR_B1.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_SR_B2.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_SR_B3.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_SR_B4.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_SR_B5.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_SR_B6.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_SR_B7.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_ST_QA.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_ST_B10.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_ST_DRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_ST_EMIS.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_ST_EMSD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_ST_TRAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_ST_URAD.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_QA_PIXEL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_ST_ATRAN.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_ST_CDIST.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_QA_RADSAT.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8151,8061],"proj:transform":[30.0,0.0,263085.0,0.0,-30.0,6006915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190417_20200828_02_T1/LC08_L2SP_197023_20190417_20200828_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.26699949,54.20799612],[9.07287421,53.68571758],[8.17615456,51.96302829],[5.37471299,52.49378041],[6.26699949,54.20799612]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-04-17T10:26:43.542400Z","platform":"landsat-8","proj:bbox":[263085.0,5762385.0,504915.0,6006915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":15.05,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232019107LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":157.31876942,"view:sun_elevation":45.45313026,"landsat:cloud_cover_land":17.96,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20190417_02_T1","bbox":[6.013354518377141,53.37825536075149,9.844577867407592,55.601164639248516],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20190417_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,311685.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190417_20200829_02_T1/LC08_L2SP_197022_20190417_20200829_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.93206519,55.60105335],[9.8413061,55.08766623],[8.91993272,53.37944134],[6.01567385,53.90168257],[6.93206519,55.60105335]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-04-17T10:26:19.668305Z","platform":"landsat-8","proj:bbox":[311685.0,5918085.0,553215.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.36,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222019107LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":158.63990403,"view:sun_elevation":44.28004198,"landsat:cloud_cover_land":0.53,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_196023_20190410_02_T1","bbox":[6.979371572951282,51.996435265255975,10.63788969972511,54.172154734744026],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_196023_20190410_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_SR_B1.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368085.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_SR_B2.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368085.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_SR_B3.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368085.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_SR_B4.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368085.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_SR_B5.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368085.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_SR_B6.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368085.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_SR_B7.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368085.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_ST_QA.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368085.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_ST_B10.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368085.0,0.0,-30.0,6003915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_ST_DRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368085.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_ST_EMIS.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368085.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_ST_EMSD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368085.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_ST_TRAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368085.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_ST_URAD.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368085.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_QA_PIXEL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368085.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_ST_ATRAN.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368085.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_ST_CDIST.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368085.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_QA_RADSAT.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368085.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8051,7961],"proj:transform":[30.0,0.0,368085.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190410_20200828_02_T1/LC08_L2SP_196023_20190410_20200828_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[7.81256016,54.1715306],[10.6369868,53.69606771],[9.80204864,51.99748922],[6.98256116,52.48201275],[7.81256016,54.1715306]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-04-10T10:20:35.542164Z","platform":"landsat-8","proj:bbox":[368085.0,5762385.0,606915.0,6003915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":17.33,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81960232019100LGN00","landsat:wrs_path":"196","landsat:wrs_type":"2","view:sun_azimuth":157.57122864,"view:sun_elevation":42.89359439,"landsat:cloud_cover_land":18.6,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20190408_02_T1","bbox":[3.95960159949545,51.98538522799689,7.577669389831676,54.187154772003105],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20190408_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565785.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,565785.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190408_20200829_02_T1/LC08_L2SP_198023_20190408_20200829_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.6838988,54.1850964],[7.57444062,53.76426804],[6.84814049,51.98761409],[3.96325708,52.41941297],[4.6838988,54.1850964]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-04-08T10:32:57.870245Z","platform":"landsat-8","proj:bbox":[565785.0,5768385.0,799215.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":9.5,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232019098LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":157.63222125,"view:sun_elevation":42.14231972,"landsat:cloud_cover_land":5.52,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20190408_02_T2","bbox":[4.4055446972628465,53.343205517216,8.320087802495564,55.639704482784],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20190408_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_SR_B1.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,210285.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_SR_B2.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,210285.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_SR_B3.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,210285.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_SR_B4.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,210285.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_SR_B5.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,210285.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_SR_B6.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,210285.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_SR_B7.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,210285.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_ST_QA.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,210285.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_ST_B10.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,210285.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_ST_DRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,210285.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_ST_EMIS.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,210285.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_ST_EMSD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,210285.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_ST_TRAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,210285.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_ST_URAD.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,210285.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,210285.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,210285.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_ST_CDIST.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,210285.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,210285.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8151],"proj:transform":[30.0,0.0,210285.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190408_20200829_02_T2/LC08_L2SP_198022_20190408_20200829_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.40083729,55.63753894],[8.31693289,55.07579831],[7.32166209,53.34460201],[4.41003585,53.91463734],[5.40083729,55.63753894]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-04-08T10:32:33.996150Z","platform":"landsat-8","proj:bbox":[210285.0,5919285.0,454815.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":7.16,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222019098LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":158.8560319,"view:sun_elevation":40.96534805,"landsat:cloud_cover_land":17.98,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20190401_02_T1","bbox":[5.385421688573931,51.96198537670682,9.089159691533556,54.207524623293175],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20190401_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_SR_B1.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_SR_B2.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_SR_B3.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_SR_B4.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_SR_B5.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_SR_B6.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_SR_B7.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_ST_QA.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_ST_B10.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_ST_DRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_ST_EMIS.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_ST_EMSD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_ST_TRAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_ST_URAD.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_QA_PIXEL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_ST_ATRAN.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_ST_CDIST.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_QA_RADSAT.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8141,8061],"proj:transform":[30.0,0.0,263985.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190401_20200829_02_T1/LC08_L2SP_197023_20190401_20200829_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.2780903,54.20742852],[9.08411223,53.68532179],[8.1876521,51.96297431],[5.38607586,52.49354326],[6.2780903,54.20742852]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-04-01T10:26:49.157998Z","platform":"landsat-8","proj:bbox":[263985.0,5762385.0,505815.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.67,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232019091LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":157.81559251,"view:sun_elevation":39.43671308,"landsat:cloud_cover_land":0.65,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20190401_02_T1","bbox":[6.022854517542091,53.37847536003133,9.85409786839663,55.60109463996867],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20190401_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312285.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,312285.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190401_20200829_02_T1/LC08_L2SP_197022_20190401_20200829_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.9432097,55.60066288],[9.85279215,55.08743472],[8.93172059,53.3794222],[6.02713882,53.90150526],[6.9432097,55.60066288]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-04-01T10:26:25.279667Z","platform":"landsat-8","proj:bbox":[312285.0,5918085.0,553815.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":10.18,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222019091LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":158.968896,"view:sun_elevation":38.25743062,"landsat:cloud_cover_land":32.03,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_196023_20190325_02_T1","bbox":[6.993151572811933,51.99665526456387,10.656259699869127,54.17190473543613],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_196023_20190325_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_SR_B1.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_SR_B2.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_SR_B3.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_SR_B4.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_SR_B5.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_SR_B6.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_SR_B7.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_ST_QA.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_ST_B10.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_ST_DRAD.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_ST_EMIS.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_ST_EMSD.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_ST_TRAD.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_ST_URAD.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_QA_PIXEL.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_ST_ATRAN.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_ST_CDIST.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_QA_RADSAT.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[8051,7971],"proj:transform":[30.0,0.0,368985.0,0.0,-30.0,6003915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/196/023/LC08_L2SP_196023_20190325_20200829_02_T1/LC08_L2SP_196023_20190325_20200829_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[7.82721195,54.17137998],[10.65198671,53.69621595],[9.81749773,51.99794945],[6.99767006,52.48217948],[7.82721195,54.17137998]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-03-25T10:20:39.971254Z","platform":"landsat-8","proj:bbox":[368985.0,5762385.0,608115.0,6003915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":60.76,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81960232019084LGN00","landsat:wrs_path":"196","landsat:wrs_type":"2","view:sun_azimuth":157.96535969,"view:sun_elevation":36.65938008,"landsat:cloud_cover_land":62.57,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20190323_02_T2","bbox":[3.977101602800896,51.9848952284643,7.5913893857719215,54.1870047715357],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20190323_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_SR_B1.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_SR_B2.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_SR_B3.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_SR_B4.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_SR_B5.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_SR_B6.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_SR_B7.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_ST_QA.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_ST_B10.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_ST_DRAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_ST_EMIS.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_ST_EMSD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_ST_TRAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_ST_URAD.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_ST_CDIST.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7771],"proj:transform":[30.0,0.0,566985.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190323_20200829_02_T2/LC08_L2SP_198023_20190323_20200829_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.69857874,54.18472176],[7.59020895,53.7640914],[6.86412937,51.98719304],[3.97816779,52.41879599],[4.69857874,54.18472176]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-03-23T10:33:01.998693Z","platform":"landsat-8","proj:bbox":[566985.0,5768385.0,800115.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":96.13,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232019082LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":158.00750878,"view:sun_elevation":35.86308346,"landsat:cloud_cover_land":98.92,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20190323_02_T2","bbox":[4.424504693669718,53.343855514990395,8.333627806981664,55.6397944850096],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20190323_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_SR_B1.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_SR_B2.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_SR_B3.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_SR_B4.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_SR_B5.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_SR_B6.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_SR_B7.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_ST_QA.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_ST_B10.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_ST_DRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_ST_EMIS.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_ST_EMSD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_ST_TRAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_ST_URAD.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_QA_PIXEL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_ST_ATRAN.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_ST_CDIST.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_QA_RADSAT.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8231,8141],"proj:transform":[30.0,0.0,211485.0,0.0,-30.0,6166215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190323_20200829_02_T2/LC08_L2SP_198022_20190323_20200829_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.41635647,55.63712463],[8.33239439,55.07571711],[7.33774264,53.34494483],[4.42618465,53.91464178],[5.41635647,55.63712463]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-03-23T10:32:38.116127Z","platform":"landsat-8","proj:bbox":[211485.0,5919285.0,455715.0,6166215.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":50.64,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222019082LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":159.07631646,"view:sun_elevation":34.6814457,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197023_20190316_02_T2","bbox":[5.403761686354633,51.96249537507796,9.10294969426082,54.20751462492204],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197023_20190316_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_SR_B1.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_SR_B2.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_SR_B3.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_SR_B4.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_SR_B5.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_SR_B6.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_SR_B7.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_ST_QA.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_ST_B10.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_ST_DRAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_ST_EMIS.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_ST_EMSD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_ST_TRAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_ST_URAD.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_QA_PIXEL.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_ST_ATRAN.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_ST_CDIST.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_QA_RADSAT.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8141,8051],"proj:transform":[30.0,0.0,265185.0,0.0,-30.0,6006615.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/023/LC08_L2SP_197023_20190316_20200829_02_T2/LC08_L2SP_197023_20190316_20200829_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.29575324,54.20703074],[9.10225511,53.68533487],[8.20636856,51.96327542],[5.40431446,52.49344967],[6.29575324,54.20703074]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-03-16T10:26:52.211019Z","platform":"landsat-8","proj:bbox":[265185.0,5762385.0,506715.0,6006615.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81970232019075LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":158.16728913,"view:sun_elevation":33.05420426,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_197022_20190316_02_T2","bbox":[6.04186451596509,53.378895358581055,9.87313787037457,55.60096464141895],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_197022_20190316_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_SR_B1.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_SR_B2.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_SR_B3.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_SR_B4.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_SR_B5.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_SR_B6.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_SR_B7.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_ST_QA.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_ST_B10.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_ST_DRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_ST_EMIS.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_ST_EMSD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_ST_TRAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_ST_URAD.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_QA_PIXEL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_ST_ATRAN.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_ST_CDIST.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_QA_RADSAT.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8131,8051],"proj:transform":[30.0,0.0,313485.0,0.0,-30.0,6162015.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/197/022/LC08_L2SP_197022_20190316_20200829_02_T2/LC08_L2SP_197022_20190316_20200829_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[6.96124909,55.6004039],[9.87131584,55.08756444],[8.95077164,53.37997053],[6.04570501,53.90166997],[6.96124909,55.6004039]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-03-16T10:26:28.328451Z","platform":"landsat-8","proj:bbox":[313485.0,5918085.0,555015.0,6162015.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81970222019075LGN00","landsat:wrs_path":"197","landsat:wrs_type":"2","view:sun_azimuth":159.17486184,"view:sun_elevation":31.87074807,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198023_20190307_02_T1","bbox":[3.985851605270566,51.984415228698296,7.605109382723013,54.186924771301705],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198023_20190307_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_SR_B1.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_SR_B2.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_SR_B3.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_SR_B4.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_SR_B5.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_SR_B6.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_SR_B7.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_ST_QA.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_ST_B10.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_ST_DRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_ST_EMIS.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_ST_EMSD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_ST_TRAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_ST_URAD.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_ST_CDIST.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7781],"proj:transform":[30.0,0.0,567585.0,0.0,-30.0,6004815.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/023/LC08_L2SP_198023_20190307_20200829_02_T1/LC08_L2SP_198023_20190307_20200829_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[4.71004306,54.18505441],[7.6022886,53.76441352],[6.87629652,51.98722322],[3.98972118,52.41883812],[4.71004306,54.18505441]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-03-07T10:33:06.247957Z","platform":"landsat-8","proj:bbox":[567585.0,5768385.0,801015.0,6004815.0],"proj:epsg":32631,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":64.87,"view:off_nadir":0,"landsat:wrs_row":"023","landsat:scene_id":"LC81980232019066LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":158.43282977,"view:sun_elevation":29.48160285,"landsat:cloud_cover_land":63.59,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_198022_20190307_02_T2","bbox":[4.434294691289313,53.344185513840486,8.34716779369895,55.637174486159516],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_198022_20190307_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_SR_B1.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_SR_B2.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_SR_B3.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_SR_B4.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_SR_B5.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_SR_B6.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_SR_B7.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_ST_QA.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_ST_B10.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_ST_DRAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_ST_EMIS.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_ST_EMSD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_ST_TRAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_ST_URAD.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_QA_PIXEL.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_ST_ATRAN.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_ST_CDIST.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_QA_RADSAT.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[8221,8151],"proj:transform":[30.0,0.0,212085.0,0.0,-30.0,6165915.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/198/022/LC08_L2SP_198022_20190307_20200829_02_T2/LC08_L2SP_198022_20190307_20200829_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[5.42808219,55.63688096],[8.34370615,55.07556298],[7.34954638,53.34488495],[4.43840978,53.91450463],[5.42808219,55.63688096]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-03-07T10:32:42.369627Z","platform":"landsat-8","proj:bbox":[212085.0,5919285.0,456615.0,6165915.0],"proj:epsg":32632,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.96,"view:off_nadir":0,"landsat:wrs_row":"022","landsat:scene_id":"LC81980222019066LGN00","landsat:wrs_path":"198","landsat:wrs_type":"2","view:sun_azimuth":159.36726421,"view:sun_elevation":28.29507829,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"collections":["landsat-8-c2-l2"],"intersects":{"type":"Polygon","coordinates":[[[6.42425537109375,53.174765470134616],[7.344360351562499,53.174765470134616],[7.344360351562499,53.67393435835391],[6.42425537109375,53.67393435835391],[6.42425537109375,53.174765470134616]]]},"token":"next:landsat-8-c2-l2:LC08_L2SP_198022_20190307_02_T2"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '109300' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:49:54 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T124952Z-167d46d96d8znrdrhC1DEN4cgc00000006900000000028a0 status: code: 200 message: OK version: 1 TestCLISearch.test_intersects[inprocess-sample-item.json].yaml000066400000000000000000166066001503646565400353260ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_cliinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#query"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3362' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:49:55 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T124955Z-167d46d96d8bvmllhC1DENt02w0000000s2g000000001d15 status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#query"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3362' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:49:56 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T124955Z-167d46d96d8chv8thC1DENzves0000000sp0000000003ts1 status: code: 200 message: OK - request: body: '{"collections": ["landsat-8-c2-l2"], "intersects": {"type": "Polygon", "coordinates": [[[-122.308150179, 37.488035566], [-122.597502109, 37.538869539], [-122.576687533, 37.613537207], [-122.2880486, 37.562818007], [-122.308150179, 37.488035566]]]}}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '248' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"LC08_L2SP_045034_20220315_02_T2","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20220315_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220315_20220322_02_T2/LC08_L2SP_045034_20220315_20220322_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.4846981,38.534156],[-122.3567825,38.1246147],[-122.894202,36.3926468],[-125.0195347,36.8095158],[-124.4846981,38.534156]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-03-15T18:52:11.293246Z","platform":"landsat-8","proj:bbox":[323685.0,4028985.0,556215.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.14,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342022074LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":146.54364943,"view:sun_elevation":45.28146422,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20220308_02_T1","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20220308_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_SR_B1.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_SR_B2.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_SR_B3.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_SR_B4.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_SR_B5.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_SR_B6.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_SR_B7.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_ST_QA.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_ST_B10.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_ST_DRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_ST_EMIS.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_ST_EMSD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_ST_TRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_ST_URAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_ST_CDIST.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220308_20220315_02_T1/LC08_L2SP_044034_20220308_20220315_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.9405132,38.525618],[-120.8044728,38.1435561],[-121.306132,36.4009683],[-123.4391112,36.7914378],[-122.9405132,38.525618]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-03-08T18:46:04.000250Z","platform":"landsat-8","proj:bbox":[461685.0,4030485.0,691515.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.04,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342022067LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":147.6309589,"view:sun_elevation":42.60166128,"landsat:cloud_cover_land":0.06,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20220220_02_T1","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20220220_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_SR_B1.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_SR_B2.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_SR_B3.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_SR_B4.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_SR_B5.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_SR_B6.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_SR_B7.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_ST_QA.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_ST_B10.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_ST_DRAD.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_ST_EMIS.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_ST_EMSD.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_ST_TRAD.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_ST_URAD.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_QA_PIXEL.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_ST_ATRAN.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_ST_CDIST.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_QA_RADSAT.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220220_20220301_02_T1/LC08_L2SP_044034_20220220_20220301_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.9197347,38.5254164],[-120.783789,38.1435242],[-121.2851611,36.4004229],[-123.4180333,36.7907355],[-122.9197347,38.5254164]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-02-20T18:46:06.480474Z","platform":"landsat-8","proj:bbox":[463485.0,4030485.0,693315.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":87.78,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342022051LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":150.06097159,"view:sun_elevation":36.80539123,"landsat:cloud_cover_land":80.93,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20220211_02_T1","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20220211_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220211_20220222_02_T1/LC08_L2SP_045034_20220211_20220222_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.4655017,38.5336469],[-122.3377068,38.1243264],[-122.8749766,36.3925704],[-125.0001691,36.8092333],[-124.4655017,38.5336469]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-02-11T18:52:21.582420Z","platform":"landsat-8","proj:bbox":[325485.0,4028985.0,558015.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":7.45,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342022042LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":151.44683008,"view:sun_elevation":33.8979764,"landsat:cloud_cover_land":0.19,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20220204_02_T1","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20220204_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_SR_B1.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_SR_B2.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_SR_B3.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_SR_B4.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_SR_B5.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_SR_B6.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_SR_B7.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_ST_QA.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_ST_B10.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_ST_DRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_ST_EMIS.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_ST_EMSD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_ST_TRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_ST_URAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_ST_CDIST.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220204_20220212_02_T1/LC08_L2SP_044034_20220204_20220212_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.9196556,38.5256318],[-120.7835849,38.1436666],[-121.2850724,36.4006057],[-123.4180584,36.791],[-122.9196556,38.5256318]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-02-04T18:46:12.696817Z","platform":"landsat-8","proj:bbox":[463485.0,4030485.0,693315.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.42,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342022035LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":152.55216849,"view:sun_elevation":31.88067319,"landsat:cloud_cover_land":0.66,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20220126_02_T1","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20220126_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/045/034/LC08_L2SP_045034_20220126_20220204_02_T1/LC08_L2SP_045034_20220126_20220204_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.4542477,38.5333786],[-122.3261597,38.1241262],[-122.8632962,36.3926397],[-124.9887682,36.8092263],[-124.4542477,38.5333786]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-01-26T18:52:24.249465Z","platform":"landsat-8","proj:bbox":[326385.0,4028985.0,558915.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":10.94,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342022026LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":154.00585957,"view:sun_elevation":29.67503942,"landsat:cloud_cover_land":0.06,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20220119_02_T1","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20220119_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220119_20220127_02_T1/LC08_L2SP_044034_20220119_20220127_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.9144452,38.5256326],[-120.7780978,38.1435376],[-121.2796542,36.4005131],[-123.4129055,36.7910317],[-122.9144452,38.5256326]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-01-19T18:46:16.631259Z","platform":"landsat-8","proj:bbox":[463785.0,4030485.0,693915.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":21.3,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342022019LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":155.14184692,"view:sun_elevation":28.29579048,"landsat:cloud_cover_land":21.5,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20220103_02_T1","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20220103_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/044/034/LC08_L2SP_044034_20220103_20220113_02_T1/LC08_L2SP_044034_20220103_20220113_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.9104874,38.5255921],[-120.7737829,38.1433211],[-121.2753457,36.4003197],[-123.4089605,36.791004],[-122.9104874,38.5255921]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-01-03T18:46:19.542715Z","platform":"landsat-8","proj:bbox":[464085.0,4030485.0,694215.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342022003LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":157.65672113,"view:sun_elevation":26.39705378,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20211225_02_T2","bbox":[-124.99494721,36.39029488,-122.33090798,38.53523512],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20211225_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211225_20211230_02_T2/LC08_L2SP_045034_20211225_20211230_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.4598818,38.5334324],[-122.33141,38.1238853],[-122.8688615,36.3924581],[-124.994727,36.8093466],[-124.4598818,38.5334324]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-12-25T18:52:32.901222Z","platform":"landsat-8","proj:bbox":[326085.0,4028985.0,558315.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":22.91,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021359LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":158.92820678,"view:sun_elevation":26.14343216,"landsat:cloud_cover_land":62.73,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20211218_02_T1","bbox":[-123.41891723,36.40003485,-120.77947801,38.52828515],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20211218_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211218_20211223_02_T1/LC08_L2SP_044034_20211218_20211223_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.9190148,38.5258229],[-120.7823665,38.1434079],[-121.2842712,36.400628],[-123.4178407,36.7914566],[-122.9190148,38.5258229]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-12-18T18:46:24.610098Z","platform":"landsat-8","proj:bbox":[463485.0,4030485.0,693615.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":28.15,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021352LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":159.7909576,"view:sun_elevation":26.35499108,"landsat:cloud_cover_land":43.16,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20211209_02_T1","bbox":[-125.00525721,36.39012488,-122.33779798,38.53527512],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20211209_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211209_20211215_02_T1/LC08_L2SP_045034_20211209_20211215_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.4668433,38.5335199],[-122.338446,38.1237176],[-122.876089,36.3921959],[-125.0018894,36.8093376],[-124.4668433,38.5335199]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-12-09T18:52:36.982319Z","platform":"landsat-8","proj:bbox":[325185.0,4028985.0,557715.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":26.98,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021343LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":160.67671057,"view:sun_elevation":27.13663866,"landsat:cloud_cover_land":0.03,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20211202_02_T1","bbox":[-123.41891723,36.40003485,-120.77947801,38.52828515],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20211202_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211202_20211209_02_T1/LC08_L2SP_044034_20211202_20211209_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.9181826,38.5257241],[-120.7817325,38.1432979],[-121.2836871,36.4003604],[-123.417066,36.7912171],[-122.9181826,38.5257241]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-12-02T18:46:26.526513Z","platform":"landsat-8","proj:bbox":[463485.0,4030485.0,693615.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":42.34,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021336LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":161.16323411,"view:sun_elevation":28.12199273,"landsat:cloud_cover_land":30.26,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20211123_02_T1","bbox":[-124.99494721,36.39029488,-122.32746798,38.53521512],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20211123_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211123_20211201_02_T1/LC08_L2SP_045034_20211123_20211201_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.456947,38.5335395],[-122.3287941,38.1239174],[-122.866323,36.3924246],[-124.9918846,36.809401],[-124.456947,38.5335395]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-11-23T18:52:36.441519Z","platform":"landsat-8","proj:bbox":[326085.0,4028985.0,558615.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":14.89,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021327LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":161.46117286,"view:sun_elevation":29.82231035,"landsat:cloud_cover_land":8.46,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20211116_02_T1","bbox":[-123.40857723,36.39715485,-120.76924801,38.52561515],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20211116_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211116_20211125_02_T1/LC08_L2SP_044034_20211116_20211125_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.9065938,38.5255168],[-120.7707448,38.1432294],[-121.272523,36.3999789],[-123.4052934,36.7907014],[-122.9065938,38.5255168]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-11-16T18:46:24.981801Z","platform":"landsat-8","proj:bbox":[464385.0,4030185.0,694515.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":50.87,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021320LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":161.41184189,"view:sun_elevation":31.44454161,"landsat:cloud_cover_land":58.15,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20211107_02_T1","bbox":[-125.00181721,36.39018488,-122.33779798,38.53527512],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20211107_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211107_20211117_02_T1/LC08_L2SP_045034_20211107_20211117_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.4658716,38.5340198],[-122.3383587,38.12423],[-122.8762457,36.3925366],[-125.0011604,36.8096734],[-124.4658716,38.5340198]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-11-07T18:52:39.488507Z","platform":"landsat-8","proj:bbox":[325485.0,4028985.0,557715.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":6.37,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021311LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":160.95283263,"view:sun_elevation":33.84971915,"landsat:cloud_cover_land":0.05,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20211031_02_T1","bbox":[-123.42924723,36.39751485,-120.78978801,38.52824515],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20211031_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211031_20211109_02_T1/LC08_L2SP_044034_20211031_20211109_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.9275492,38.5255348],[-120.7919143,38.1429254],[-121.2943058,36.4000938],[-123.4268663,36.7911071],[-122.9275492,38.5255348]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-10-31T18:46:30.358377Z","platform":"landsat-8","proj:bbox":[462585.0,4030185.0,692715.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":39.04,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021304LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":160.27129933,"view:sun_elevation":35.92565317,"landsat:cloud_cover_land":43.01,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20211022_02_T1","bbox":[-125.01213721,36.39001488,-122.34467798,38.53531512],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20211022_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211022_20211103_02_T1/LC08_L2SP_045034_20211022_20211103_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.4742553,38.5338176],[-122.3468019,38.1237986],[-122.8850104,36.3919966],[-125.0098635,36.809346],[-124.4742553,38.5338176]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-10-22T18:52:41.617270Z","platform":"landsat-8","proj:bbox":[324585.0,4028985.0,557115.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":23.71,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021295LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":158.95412636,"view:sun_elevation":38.77567906,"landsat:cloud_cover_land":54.71,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20211015_02_T1","bbox":[-123.42924723,36.39751485,-120.78978801,38.52824515],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20211015_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20211015_20211025_02_T1/LC08_L2SP_044034_20211015_20211025_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.9289438,38.5258051],[-120.7932256,38.1430854],[-121.2957303,36.4003725],[-123.4283614,36.7914956],[-122.9289438,38.5258051]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-10-15T18:46:30.175083Z","platform":"landsat-8","proj:bbox":[462585.0,4030185.0,692715.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.11,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021288LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":157.57885334,"view:sun_elevation":41.08775099,"landsat:cloud_cover_land":0.16,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20211006_02_T1","bbox":[-125.00525721,36.39012488,-122.33779798,38.53527512],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20211006_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20211006_20211013_02_T1/LC08_L2SP_045034_20211006_20211013_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.4672156,38.5340039],[-122.3394633,38.1239294],[-122.877589,36.3922738],[-125.0027275,36.8096882],[-124.4672156,38.5340039]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-10-06T18:52:39.015349Z","platform":"landsat-8","proj:bbox":[325185.0,4028985.0,557715.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":29.96,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021279LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":155.37476075,"view:sun_elevation":44.11407032,"landsat:cloud_cover_land":7.56,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20210929_02_T1","bbox":[-123.41891723,36.40003485,-120.77947801,38.52828515],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20210929_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210929_20211013_02_T1/LC08_L2SP_044034_20210929_20211013_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.9165967,38.52599],[-120.7804219,38.1432899],[-121.2826835,36.4003386],[-123.4157623,36.7914618],[-122.9165967,38.52599]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-09-29T18:46:25.684426Z","platform":"landsat-8","proj:bbox":[463485.0,4030485.0,693615.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.1,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021272LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":153.32184326,"view:sun_elevation":46.465222,"landsat:cloud_cover_land":0.08,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20210920_02_T1","bbox":[-124.98806721,36.39039488,-122.32058798,38.53517512],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20210920_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210920_20210925_02_T1/LC08_L2SP_045034_20210920_20210925_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.4520934,38.5339345],[-122.3238725,38.1240824],[-122.8617757,36.3928554],[-124.9873846,36.8100443],[-124.4520934,38.5339345]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-09-20T18:52:33.284110Z","platform":"landsat-8","proj:bbox":[326685.0,4028985.0,559215.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.01,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021263LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":150.28239076,"view:sun_elevation":49.41708141,"landsat:cloud_cover_land":0.12,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20210913_02_T1","bbox":[-123.41203723,36.39991485,-120.77259801,38.52830515],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20210913_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210913_20210924_02_T1/LC08_L2SP_044034_20210913_20210924_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.910092,38.5260059],[-120.7735775,38.1432782],[-121.2757371,36.4003532],[-123.4091561,36.791502],[-122.910092,38.5260059]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-09-13T18:46:21.546412Z","platform":"landsat-8","proj:bbox":[464085.0,4030485.0,694215.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":17.13,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021256LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":147.63186404,"view:sun_elevation":51.62722465,"landsat:cloud_cover_land":1.81,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20210904_02_T1","bbox":[-124.99150720841546,36.3903448774581,-122.3240279790607,38.5351951225419],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20210904_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210904_20210910_02_T1/LC08_L2SP_045034_20210904_20210910_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.4532688,38.53380493],[-122.32485621,38.12380656],[-122.86285597,36.39255006],[-124.98865827,36.80989771],[-124.4532688,38.53380493]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-09-04T18:52:30.298260Z","platform":"landsat-8","proj:bbox":[326385.0,4028985.0,558915.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":95.2,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021247LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":143.94328432,"view:sun_elevation":54.314435,"landsat:cloud_cover_land":8.9,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20210828_02_T1","bbox":[-123.40859722505549,36.39715484972348,-120.76915800618187,38.52832515027652],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20210828_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210828_20210901_02_T1/LC08_L2SP_044034_20210828_20210901_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90711026,38.52582557],[-120.77051118,38.14306458],[-121.27264052,36.40005827],[-123.40615786,36.79125028],[-122.90711026,38.52582557]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-08-28T18:46:17.184319Z","platform":"landsat-8","proj:bbox":[464385.0,4030185.0,694515.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":1.51,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021240LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":140.90555269,"view:sun_elevation":56.26037385,"landsat:cloud_cover_land":0.35,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20210819_02_T1","bbox":[-124.98806720848447,36.390394877364265,-122.32058797896623,38.535175122635735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20210819_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210819_20210827_02_T1/LC08_L2SP_045034_20210819_20210827_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45147853,38.53380522],[-122.32315834,38.12379395],[-122.86118174,36.39258025],[-124.98690628,36.80993521],[-124.45147853,38.53380522]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-08-19T18:52:25.585014Z","platform":"landsat-8","proj:bbox":[326685.0,4028985.0,559215.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":85.95,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021231LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":136.91112327,"view:sun_elevation":58.54732773,"landsat:cloud_cover_land":16.94,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20210812_02_T1","bbox":[-123.40859722505549,36.39715484972348,-120.76915800618187,38.52832515027652],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20210812_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210812_20210819_02_T1/LC08_L2SP_044034_20210812_20210819_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90748512,38.52597082],[-120.77112053,38.14318928],[-121.27341363,36.40015524],[-123.40669922,36.79137001],[-122.90748512,38.52597082]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-08-12T18:46:12.683756Z","platform":"landsat-8","proj:bbox":[464385.0,4030185.0,694515.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":42.51,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021224LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":133.83262652,"view:sun_elevation":60.15642794,"landsat:cloud_cover_land":17.51,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20210803_02_T1","bbox":[-124.98806720848447,36.390394877364265,-122.32058797896623,38.535175122635735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20210803_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210803_20210811_02_T1/LC08_L2SP_045034_20210803_20210811_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45024798,38.53374797],[-122.32225507,38.12378691],[-122.86036905,36.39252286],[-124.98577225,36.80983616],[-124.45024798,38.53374797]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-08-03T18:52:20.085996Z","platform":"landsat-8","proj:bbox":[326685.0,4028985.0,559215.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":97.17,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021215LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":130.09216707,"view:sun_elevation":61.99788911,"landsat:cloud_cover_land":26.12,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20210727_02_T1","bbox":[-123.40514723073743,36.39979484973156,-120.76571800631922,38.52833515026843],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20210727_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210727_20210804_02_T1/LC08_L2SP_044034_20210727_20210804_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90302616,38.52605954],[-120.76698724,38.14333635],[-121.2692835,36.4001433],[-123.40224501,36.79130626],[-122.90302616,38.52605954]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-07-27T18:46:06.066013Z","platform":"landsat-8","proj:bbox":[464685.0,4030485.0,694815.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":39.83,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021208LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":127.46858719,"view:sun_elevation":63.25152725,"landsat:cloud_cover_land":23.14,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20210718_02_T1","bbox":[-124.97774720872776,36.39056487706353,-122.31025797868423,38.53511512293647],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20210718_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210718_20210729_02_T1/LC08_L2SP_045034_20210718_20210729_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44097341,38.53368439],[-122.31326429,38.12398768],[-122.85118579,36.3927588],[-124.97629745,36.80981084],[-124.44097341,38.53368439]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-07-18T18:52:11.892871Z","platform":"landsat-8","proj:bbox":[327585.0,4028985.0,560115.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":52.81,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021199LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":124.65657771,"view:sun_elevation":64.63120128,"landsat:cloud_cover_land":9.24,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20210711_02_T1","bbox":[-123.40170723063167,36.399734849712395,-120.76228800643665,38.528345150287606],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20210711_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210711_20210720_02_T1/LC08_L2SP_044034_20210711_20210720_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90037424,38.52637642],[-120.76478864,38.14372397],[-121.26707207,36.40029321],[-123.39957451,36.79137937],[-122.90037424,38.52637642]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-07-11T18:45:59.263065Z","platform":"landsat-8","proj:bbox":[464985.0,4030485.0,695115.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":35.89,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021192LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":123.03613687,"view:sun_elevation":65.52677373,"landsat:cloud_cover_land":4.77,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20210702_02_T1","bbox":[-124.99494720834626,36.390294877562646,-122.32746797915543,38.53521512243736],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20210702_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210702_20210712_02_T1/LC08_L2SP_045034_20210702_20210712_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45806276,38.5339756],[-122.33068528,38.12392621],[-122.86903539,36.39242423],[-124.99380772,36.80981166],[-124.45806276,38.5339756]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-07-02T18:52:09.474543Z","platform":"landsat-8","proj:bbox":[326085.0,4028985.0,558615.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":97.42,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021183LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":121.83035278,"view:sun_elevation":66.43147478,"landsat:cloud_cover_land":32.76,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20210625_02_T1","bbox":[-123.4223572254722,36.3973948498044,-120.78291800567929,38.528275150195604],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20210625_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210625_20210707_02_T1/LC08_L2SP_044034_20210625_20210707_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.92153338,38.52614249],[-120.7859411,38.14314266],[-121.2887489,36.40030259],[-123.42125217,36.79171571],[-122.92153338,38.52614249]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-06-25T18:45:57.581807Z","platform":"landsat-8","proj:bbox":[463185.0,4030185.0,693315.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":39.63,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021176LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":121.63661329,"view:sun_elevation":66.92242073,"landsat:cloud_cover_land":8.15,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20210616_02_T1","bbox":[-125.0121372079436,36.390014878065585,-122.34467797961499,38.53531512193441],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20210616_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210616_20210622_02_T1/LC08_L2SP_045034_20210616_20210622_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.47386709,38.53417278],[-122.34631078,38.12370757],[-122.88498726,36.39203614],[-125.00993665,36.8098302],[-124.47386709,38.53417278]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-06-16T18:52:06.192431Z","platform":"landsat-8","proj:bbox":[324585.0,4028985.0,557115.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":26.9,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021167LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":122.36893706,"view:sun_elevation":67.24275845,"landsat:cloud_cover_land":0.91,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20210609_02_T1","bbox":[-123.43268722578516,36.39757484986976,-120.79322800531558,38.528235150130236],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20210609_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210609_20210615_02_T1/LC08_L2SP_044034_20210609_20210615_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.93185194,38.52609019],[-120.79595043,38.1428456],[-121.29905356,36.40034178],[-123.43186497,36.79198413],[-122.93185194,38.52609019]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-06-09T18:45:53.029526Z","platform":"landsat-8","proj:bbox":[462285.0,4030185.0,692415.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":4.27,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021160LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":123.65998001,"view:sun_elevation":67.21806998,"landsat:cloud_cover_land":4.38,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20210531_02_T1","bbox":[-125.01557720787322,36.38996487816056,-122.34811797971119,38.53533512183944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20210531_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210531_20210608_02_T1/LC08_L2SP_045034_20210531_20210608_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.4780881,38.53426365],[-122.35014329,38.12360215],[-122.88892855,36.39201156],[-125.01426858,36.81000026],[-124.4780881,38.53426365]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-05-31T18:52:00.032101Z","platform":"landsat-8","proj:bbox":[324285.0,4028985.0,556815.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":2.5,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021151LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":126.04894269,"view:sun_elevation":66.77929438,"landsat:cloud_cover_land":0.52,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20210524_02_T1","bbox":[-123.43268722578516,36.39757484986976,-120.79322800531558,38.528235150130236],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20210524_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210524_20210529_02_T1/LC08_L2SP_044034_20210524_20210529_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.93144221,38.52593636],[-120.79518053,38.1425983],[-121.29823791,36.4001854],[-123.4314152,36.79193363],[-122.93144221,38.52593636]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-05-24T18:45:45.637481Z","platform":"landsat-8","proj:bbox":[462285.0,4030185.0,692415.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":32.06,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021144LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":128.29043946,"view:sun_elevation":66.09154266,"landsat:cloud_cover_land":4.6,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20210515_02_T1","bbox":[-125.00869720802997,36.39007487796052,-122.34123797951904,38.53529512203948],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20210515_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210515_20210525_02_T1/LC08_L2SP_045034_20210515_20210525_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.47196504,38.53444618],[-122.34372867,38.12384619],[-122.88240527,36.39244991],[-125.00803765,36.81038021],[-124.47196504,38.53444618]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-05-15T18:51:50.988961Z","platform":"landsat-8","proj:bbox":[324885.0,4028985.0,557415.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":98.16,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021135LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":131.38452398,"view:sun_elevation":64.74492538,"landsat:cloud_cover_land":50.12,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20210508_02_T1","bbox":[-123.42235723118557,36.400034849836445,-120.77947800578248,38.52827515016356],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20210508_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_SR_B1.TIF","proj:shape":[7801,7681],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_SR_B2.TIF","proj:shape":[7801,7681],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_SR_B3.TIF","proj:shape":[7801,7681],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_SR_B4.TIF","proj:shape":[7801,7681],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_SR_B5.TIF","proj:shape":[7801,7681],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_SR_B6.TIF","proj:shape":[7801,7681],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_SR_B7.TIF","proj:shape":[7801,7681],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_ST_QA.TIF","proj:shape":[7801,7681],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_ST_B10.TIF","proj:shape":[7801,7681],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_ST_DRAD.TIF","proj:shape":[7801,7681],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_ST_EMIS.TIF","proj:shape":[7801,7681],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_ST_EMSD.TIF","proj:shape":[7801,7681],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_ST_TRAD.TIF","proj:shape":[7801,7681],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_ST_URAD.TIF","proj:shape":[7801,7681],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7681],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7681],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_ST_CDIST.TIF","proj:shape":[7801,7681],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7681],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7681],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210508_20210518_02_T1/LC08_L2SP_044034_20210508_20210518_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91945709,38.52632298],[-120.78298807,38.14307375],[-121.28579813,36.40041665],[-123.41919073,36.79208753],[-122.91945709,38.52632298]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-05-08T18:45:35.196995Z","platform":"landsat-8","proj:bbox":[463185.0,4030485.0,693615.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.07,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021128LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":133.78266794,"view:sun_elevation":63.34129927,"landsat:cloud_cover_land":0.09,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20210429_02_T1","bbox":[-125.03277720746443,36.38968487867964,-122.36532798020166,38.535425121320365],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20210429_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210429_20210508_02_T1/LC08_L2SP_045034_20210429_20210508_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.49681173,38.5341821],[-122.36861839,38.12455899],[-122.90593969,36.3924886],[-125.03155078,36.80942965],[-124.49681173,38.5341821]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-04-29T18:51:49.075107Z","platform":"landsat-8","proj:bbox":[322785.0,4028985.0,555315.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":35.25,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021119LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":136.64416345,"view:sun_elevation":61.10803821,"landsat:cloud_cover_land":21.99,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20210422_02_T1","bbox":[-123.44989723208668,36.40057485001357,-120.81041800468927,38.52816514998643],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20210422_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210422_20210430_02_T1/LC08_L2SP_044034_20210422_20210430_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.94941029,38.52558613],[-120.81305091,38.14349458],[-121.31465491,36.40111933],[-123.44795554,36.7916008],[-122.94941029,38.52558613]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-04-22T18:45:42.429117Z","platform":"landsat-8","proj:bbox":[460785.0,4030485.0,690915.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":59.02,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021112LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":138.69206486,"view:sun_elevation":59.08944179,"landsat:cloud_cover_land":35.63,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20210413_02_T1","bbox":[-125.0258972076233,36.38979487846709,-122.35844798000709,38.535385121532904],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20210413_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210413_20210423_02_T1/LC08_L2SP_045034_20210413_20210423_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.48913744,38.53384279],[-122.36098515,38.12432477],[-122.89822582,36.39228486],[-125.02379984,36.80913738],[-124.48913744,38.53384279]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-04-13T18:51:57.629683Z","platform":"landsat-8","proj:bbox":[323385.0,4028985.0,555915.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":3.43,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021103LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":140.99896096,"view:sun_elevation":56.17690293,"landsat:cloud_cover_land":1.83,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20210406_02_T1","bbox":[-123.43612723175376,36.40039484992246,-120.80010800509717,38.52822515007754],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20210406_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_SR_B1.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_SR_B2.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_SR_B3.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_SR_B4.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_SR_B5.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_SR_B6.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_SR_B7.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_ST_QA.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_ST_B10.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_ST_DRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_ST_EMIS.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_ST_EMSD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_ST_TRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_ST_URAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_ST_CDIST.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210406_20210415_02_T1/LC08_L2SP_044034_20210406_20210415_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.93690793,38.52556473],[-120.80065984,38.14359071],[-121.30204591,36.40096435],[-123.43523537,36.7913407],[-122.93690793,38.52556473]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-04-06T18:45:49.488703Z","platform":"landsat-8","proj:bbox":[461985.0,4030485.0,691815.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":35.31,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021096LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":142.56370831,"view:sun_elevation":53.71273556,"landsat:cloud_cover_land":9.03,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20210328_02_T1","bbox":[-125.00869720802997,36.39007487796052,-122.34123797951904,38.53529512203948],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20210328_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210328_20210402_02_T1/LC08_L2SP_045034_20210328_20210402_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.47110997,38.53366198],[-122.34314683,38.12449842],[-122.88015794,36.39268231],[-125.00554321,36.80917659],[-124.47110997,38.53366198]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-03-28T18:52:02.994684Z","platform":"landsat-8","proj:bbox":[324885.0,4028985.0,557415.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":96.45,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021087LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":144.31531158,"view:sun_elevation":50.37180361,"landsat:cloud_cover_land":15.35,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20210321_02_T1","bbox":[-123.41547723113077,36.40003484979436,-120.7794780058487,38.52829515020564],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20210321_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_SR_B1.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_SR_B2.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_SR_B3.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_SR_B4.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_SR_B5.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_SR_B6.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_SR_B7.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_ST_QA.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_ST_B10.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_ST_DRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_ST_EMIS.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_ST_EMSD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_ST_TRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_ST_URAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_ST_CDIST.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210321_20210401_02_T1/LC08_L2SP_044034_20210321_20210401_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91629209,38.5256971],[-120.7802337,38.14400208],[-121.28131723,36.40090506],[-123.41431177,36.7910154],[-122.91629209,38.5256971]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-03-21T18:45:53.544121Z","platform":"landsat-8","proj:bbox":[463785.0,4030485.0,693615.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.03,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021080LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":145.53353762,"view:sun_elevation":47.69025237,"landsat:cloud_cover_land":0.04,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20210312_02_T1","bbox":[-124.99150720840387,36.3903448774581,-122.32746797907559,38.5352151225419],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20210312_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210312_20210317_02_T1/LC08_L2SP_045034_20210312_20210317_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.4569133,38.53329913],[-122.32915743,38.12438283],[-122.86598018,36.39268399],[-124.99114316,36.80893553],[-124.4569133,38.53329913]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-03-12T18:52:08.202582Z","platform":"landsat-8","proj:bbox":[326385.0,4028985.0,558615.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":34.63,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021071LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":146.98438157,"view:sun_elevation":44.22498905,"landsat:cloud_cover_land":0.1,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20210305_02_T1","bbox":[-123.41545723113076,36.400034849762186,-120.7795580122741,38.52559515023782],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20210305_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_SR_B1.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_SR_B2.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_SR_B3.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_SR_B4.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_SR_B5.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_SR_B6.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_SR_B7.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_ST_QA.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_ST_B10.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_ST_DRAD.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_ST_EMIS.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_ST_EMSD.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_ST_TRAD.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_ST_URAD.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_QA_PIXEL.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_ST_ATRAN.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_ST_CDIST.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_QA_RADSAT.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210305_20210312_02_T1/LC08_L2SP_044034_20210305_20210312_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91644777,38.525381],[-120.78064906,38.14362733],[-121.28182262,36.40044169],[-123.41454512,36.79060674],[-122.91644777,38.525381]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-03-05T18:46:01.506287Z","platform":"landsat-8","proj:bbox":[463785.0,4030485.0,693615.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":8.66,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021064LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":148.05947221,"view:sun_elevation":41.56627163,"landsat:cloud_cover_land":7.43,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20210224_02_T1","bbox":[-124.99837720826076,36.39023487765625,-122.33090797923263,38.53523512234375],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20210224_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210224_20210304_02_T1/LC08_L2SP_045034_20210224_20210304_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46177218,38.53348566],[-122.33395401,38.1242901],[-122.8710949,36.39258814],[-124.99630996,36.80912432],[-124.46177218,38.53348566]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-02-24T18:52:16.738245Z","platform":"landsat-8","proj:bbox":[325785.0,4028985.0,558315.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.01,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021055LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":149.41562568,"view:sun_elevation":38.2828123,"landsat:cloud_cover_land":0.12,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20210217_02_T1","bbox":[-123.41891723115818,36.400034849816436,-120.77947800581553,38.528285150183564],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20210217_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210217_20210302_02_T1/LC08_L2SP_044034_20210217_20210302_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.9181166,38.5257245],[-120.78204655,38.14378693],[-121.28344691,36.4007232],[-123.41643439,36.79107878],[-122.9181166,38.5257245]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-02-17T18:46:08.572662Z","platform":"landsat-8","proj:bbox":[463485.0,4030485.0,693615.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":6.05,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021048LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":150.47832578,"view:sun_elevation":35.88192225,"landsat:cloud_cover_land":8.7,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20210208_02_T1","bbox":[-124.99494720834626,36.390294877562646,-122.32746797915543,38.53521512243736],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20210208_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210208_20210302_02_T1/LC08_L2SP_045034_20210208_20210302_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45830859,38.53374134],[-122.33019666,38.1244634],[-122.86734557,36.39288482],[-124.9928494,36.80950757],[-124.45830859,38.53374134]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-02-08T18:52:21.919608Z","platform":"landsat-8","proj:bbox":[326085.0,4028985.0,558615.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":88.22,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021039LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":151.88082305,"view:sun_elevation":33.07709731,"landsat:cloud_cover_land":26.03,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20210201_02_T1","bbox":[-123.41201723094818,36.39991484974249,-120.77267801249408,38.52560515025751],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20210201_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_SR_B1.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_SR_B2.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_SR_B3.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_SR_B4.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_SR_B5.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_SR_B6.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_SR_B7.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_ST_QA.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_ST_B10.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_ST_DRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_ST_EMIS.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_ST_EMSD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_ST_TRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_ST_URAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_QA_PIXEL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_ST_ATRAN.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_ST_CDIST.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_QA_RADSAT.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210201_20210302_02_T1/LC08_L2SP_044034_20210201_20210302_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91188354,38.52548327],[-120.775567,38.14349341],[-121.27689862,36.40034513],[-123.41011783,36.79076588],[-122.91188354,38.52548327]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-02-01T18:46:12.449613Z","platform":"landsat-8","proj:bbox":[464085.0,4030485.0,694215.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":34.75,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021032LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":152.99309924,"view:sun_elevation":31.15726497,"landsat:cloud_cover_land":25.31,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20210123_02_T1","bbox":[-124.98462720856924,36.390454877260474,-122.317147978872,38.53515512273953],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20210123_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210123_20210305_02_T1/LC08_L2SP_045034_20210123_20210305_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44776799,38.5336215],[-122.31931344,38.12442171],[-122.8563614,36.39310581],[-124.98220357,36.80965319],[-124.44776799,38.5336215]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-01-23T18:52:24.069366Z","platform":"landsat-8","proj:bbox":[326985.0,4028985.0,559515.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":30.15,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021023LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":154.44614036,"view:sun_elevation":29.09450497,"landsat:cloud_cover_land":0.06,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20210116_02_T1","bbox":[-123.40170723063167,36.399734849712395,-120.76228800643665,38.528345150287606],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20210116_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/044/034/LC08_L2SP_044034_20210116_20210306_02_T1/LC08_L2SP_044034_20210116_20210306_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90157945,38.52568097],[-120.76498378,38.14369799],[-121.26625682,36.40043865],[-123.39975721,36.79084212],[-122.90157945,38.52568097]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-01-16T18:46:14.353888Z","platform":"landsat-8","proj:bbox":[464985.0,4030485.0,695115.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":26.03,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342021016LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":155.58007416,"view:sun_elevation":27.84012925,"landsat:cloud_cover_land":4.9,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20210107_02_T1","bbox":[-124.99150720840387,36.3903448774581,-122.32746797907559,38.5352151225419],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20210107_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/045/034/LC08_L2SP_045034_20210107_20210307_02_T1/LC08_L2SP_045034_20210107_20210307_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45632792,38.53334954],[-122.32785241,38.12388572],[-122.86518269,36.39250029],[-124.99105088,36.80931138],[-124.45632792,38.53334954]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-01-07T18:52:29.632605Z","platform":"landsat-8","proj:bbox":[326385.0,4028985.0,558615.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":51.46,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342021007LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":157.00794845,"view:sun_elevation":26.72342806,"landsat:cloud_cover_land":81.3,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20201231_02_T1","bbox":[-123.41891723115818,36.400034849816436,-120.77947800581553,38.528285150183564],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20201231_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201231_20210308_02_T1/LC08_L2SP_044034_20201231_20210308_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91776382,38.52589545],[-120.78117551,38.143538],[-121.28292246,36.4006879],[-123.41643546,36.79146567],[-122.91776382,38.52589545]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-12-31T18:46:21.637001Z","platform":"landsat-8","proj:bbox":[463485.0,4030485.0,693615.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":11.16,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020366LGN01","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":158.057127,"view:sun_elevation":26.25532211,"landsat:cloud_cover_land":17.31,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20201222_02_T1","bbox":[-125.00525720809995,36.39012487785525,-122.33779797942334,38.535275122144746],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20201222_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201222_20210310_02_T1/LC08_L2SP_045034_20201222_20210310_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46795954,38.5340014],[-122.3396665,38.12416332],[-122.87738911,36.39262012],[-125.00309188,36.8097926],[-124.46795954,38.5340014]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-12-22T18:52:35.031526Z","platform":"landsat-8","proj:bbox":[325185.0,4028985.0,557715.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.01,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020357LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":159.27393684,"view:sun_elevation":26.18192046,"landsat:cloud_cover_land":0.16,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20201215_02_T1","bbox":[-123.42579723136413,36.40015484985637,-120.78634800556698,38.52825515014363],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20201215_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201215_20210314_02_T1/LC08_L2SP_044034_20201215_20210314_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.92376326,38.52595679],[-120.78739427,38.14344628],[-121.28939102,36.40072979],[-123.42269,36.79165815],[-122.92376326,38.52595679]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-12-15T18:46:25.443966Z","platform":"landsat-8","proj:bbox":[462885.0,4030485.0,693015.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":41.42,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020350LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":160.08537413,"view:sun_elevation":26.53363021,"landsat:cloud_cover_land":47.22,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20201206_02_T1","bbox":[-125.00525720809995,36.39012487785525,-122.33779797942334,38.535275122144746],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20201206_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201206_20210313_02_T1/LC08_L2SP_045034_20201206_20210313_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46799628,38.53392922],[-122.33999651,38.12408492],[-122.87778413,36.39246117],[-125.00319791,36.80964694],[-124.46799628,38.53392922]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-12-06T18:52:36.804926Z","platform":"landsat-8","proj:bbox":[325185.0,4028985.0,557715.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":19.8,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020341LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":160.88741718,"view:sun_elevation":27.48665103,"landsat:cloud_cover_land":3.96,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20201129_02_T1","bbox":[-123.41891723115818,36.400034849816436,-120.77947800581553,38.528285150183564],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20201129_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201129_20210316_02_T1/LC08_L2SP_044034_20201129_20210316_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91746882,38.52600782],[-120.78140365,38.14357673],[-121.28338211,36.40064337],[-123.41637755,36.7914972],[-122.91746882,38.52600782]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-11-29T18:46:25.526116Z","platform":"landsat-8","proj:bbox":[463485.0,4030485.0,693615.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.57,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020334LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":161.28718133,"view:sun_elevation":28.59155017,"landsat:cloud_cover_land":0.81,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20201120_02_T1","bbox":[-124.99150720841546,36.3903448774581,-122.3240279790607,38.5351951225419],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20201120_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201120_20210315_02_T1/LC08_L2SP_045034_20201120_20210315_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45386261,38.5336822],[-122.32603946,38.12414916],[-122.86360612,36.39269469],[-124.98883147,36.80957085],[-124.45386261,38.5336822]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-11-20T18:52:34.433581Z","platform":"landsat-8","proj:bbox":[326385.0,4028985.0,558915.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":3.69,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020325LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":161.46157767,"view:sun_elevation":30.4291206,"landsat:cloud_cover_land":0.04,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20201028_02_T1","bbox":[-123.41203723094817,36.39991484977468,-120.77259800606869,38.52830515022532],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20201028_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201028_20201106_02_T1/LC08_L2SP_044034_20201028_20201106_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91061889,38.52585685],[-120.77480191,38.14339278],[-121.27684781,36.40020894],[-123.40957081,36.79109639],[-122.91061889,38.52585685]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-10-28T18:46:24.273819Z","platform":"landsat-8","proj:bbox":[464085.0,4030485.0,694215.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":3.0,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020302LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":159.90813855,"view:sun_elevation":36.77687788,"landsat:cloud_cover_land":0.16,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20201019_02_T1","bbox":[-124.99837720826076,36.39023487765625,-122.33090797923263,38.53523512234375],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20201019_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201019_20201105_02_T1/LC08_L2SP_045034_20201019_20201105_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46113524,38.53354959],[-122.33330612,38.12369418],[-122.87126182,36.39218836],[-124.99647434,36.80937906],[-124.46113524,38.53354959]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-10-19T18:52:35.765579Z","platform":"landsat-8","proj:bbox":[325785.0,4028985.0,558315.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":35.2,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020293LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":158.43495712,"view:sun_elevation":39.67598527,"landsat:cloud_cover_land":3.37,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20201012_02_T1","bbox":[-123.41891722536744,36.39733484978442,-120.77947800581553,38.528285150215574],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20201012_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20201012_20201105_02_T1/LC08_L2SP_044034_20201012_20201105_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91838785,38.52565061],[-120.78224967,38.14293043],[-121.28457398,36.40004778],[-123.41760697,36.79117955],[-122.91838785,38.52565061]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-10-12T18:46:24.804399Z","platform":"landsat-8","proj:bbox":[463485.0,4030185.0,693615.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.07,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020286LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":156.94384967,"view:sun_elevation":42.01143173,"landsat:cloud_cover_land":0.1,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20201003_02_T1","bbox":[-125.00181720819123,36.39018487775056,-122.3343579793279,38.53525512224944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20201003_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20201003_20201015_02_T1/LC08_L2SP_045034_20201003_20201015_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46340477,38.53412401],[-122.33519804,38.12404223],[-122.87325006,36.39254991],[-124.99884592,36.80996923],[-124.46340477,38.53412401]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-10-03T18:52:34.746367Z","platform":"landsat-8","proj:bbox":[325485.0,4028985.0,558015.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":87.9,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020277LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":154.58495978,"view:sun_elevation":45.03881559,"landsat:cloud_cover_land":4.47,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20200926_02_T1","bbox":[-123.41891723115818,36.400034849816436,-120.77947800581553,38.528285150183564],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20200926_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200926_20201008_02_T1/LC08_L2SP_044034_20200926_20201008_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.9186337,38.52601645],[-120.78211461,38.143137],[-121.28450033,36.40032173],[-123.41792482,36.79162373],[-122.9186337,38.52601645]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-09-26T18:46:22.629307Z","platform":"landsat-8","proj:bbox":[463485.0,4030485.0,693615.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":21.49,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020270LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":152.41511709,"view:sun_elevation":47.37389739,"landsat:cloud_cover_land":0.85,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20200917_02_T1","bbox":[-124.99837720826076,36.39023487765625,-122.33090797923263,38.53523512234375],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20200917_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200917_20201005_02_T1/LC08_L2SP_045034_20200917_20201005_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45976921,38.53378789],[-122.33133327,38.12366626],[-122.86945293,36.39233501],[-124.99528191,36.80979881],[-124.45976921,38.53378789]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-09-17T18:52:31.073092Z","platform":"landsat-8","proj:bbox":[325785.0,4028985.0,558315.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":65.88,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020261LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":149.24574729,"view:sun_elevation":50.29350035,"landsat:cloud_cover_land":22.67,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20200910_02_T1","bbox":[-123.41547722518504,36.39721484976461,-120.77259800603525,38.528295150235394],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20200910_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_SR_B1.TIF","proj:shape":[7811,7681],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_SR_B2.TIF","proj:shape":[7811,7681],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_SR_B3.TIF","proj:shape":[7811,7681],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_SR_B4.TIF","proj:shape":[7811,7681],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_SR_B5.TIF","proj:shape":[7811,7681],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_SR_B6.TIF","proj:shape":[7811,7681],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_SR_B7.TIF","proj:shape":[7811,7681],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_ST_QA.TIF","proj:shape":[7811,7681],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_ST_B10.TIF","proj:shape":[7811,7681],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_ST_DRAD.TIF","proj:shape":[7811,7681],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_ST_EMIS.TIF","proj:shape":[7811,7681],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_ST_EMSD.TIF","proj:shape":[7811,7681],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_ST_TRAD.TIF","proj:shape":[7811,7681],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_ST_URAD.TIF","proj:shape":[7811,7681],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7681],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7681],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_ST_CDIST.TIF","proj:shape":[7811,7681],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7681],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7681],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200910_20200919_02_T1/LC08_L2SP_044034_20200910_20200919_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91287997,38.52595772],[-120.77626323,38.14309701],[-121.27853439,36.40019169],[-123.41207147,36.7914765],[-122.91287997,38.52595772]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-09-10T18:46:17.893162Z","platform":"landsat-8","proj:bbox":[463785.0,4030185.0,694215.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":93.71,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020254LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":146.51208605,"view:sun_elevation":52.46661269,"landsat:cloud_cover_land":90.21,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20200901_02_T1","bbox":[-124.98806720848447,36.390394877364265,-122.32058797896623,38.535175122635735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20200901_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200901_20200906_02_T1/LC08_L2SP_045034_20200901_20200906_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45130815,38.53341942],[-122.32293563,38.12342719],[-122.86095131,36.39224914],[-124.98673434,36.80959017],[-124.45130815,38.53341942]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-09-01T18:52:25.141852Z","platform":"landsat-8","proj:bbox":[326685.0,4028985.0,559215.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":97.51,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020245LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":142.73385584,"view:sun_elevation":55.08780554,"landsat:cloud_cover_land":50.27,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20200825_02_T1","bbox":[-123.40170722484429,36.397034849680686,-120.76228800643665,38.52834515031932],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20200825_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200825_20200905_02_T1/LC08_L2SP_044034_20200825_20200905_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90205706,38.52582891],[-120.7656463,38.14309376],[-121.26779733,36.39997683],[-123.40113237,36.79114334],[-122.90205706,38.52582891]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-08-25T18:46:11.021925Z","platform":"landsat-8","proj:bbox":[464985.0,4030185.0,695115.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":39.48,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020238LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":139.65486311,"view:sun_elevation":56.97590005,"landsat:cloud_cover_land":9.82,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20200816_02_T2","bbox":[-124.974307208796,36.390614876960065,-122.3068179786084,38.53509512303993],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20200816_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200816_20210330_02_T2/LC08_L2SP_045034_20200816_20210330_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.43793499,38.5333985],[-122.30987773,38.12370623],[-122.84774666,36.39262376],[-124.97321302,36.80967113],[-124.43793499,38.5333985]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-08-16T18:52:17.050367Z","platform":"landsat-8","proj:bbox":[327885.0,4028985.0,560415.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":34.26,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020229LGN01","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":135.66268083,"view:sun_elevation":59.19021813,"landsat:cloud_cover_land":77.48,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20200809_02_T1","bbox":[-123.39138723031662,36.39955484965384,-120.75196800683028,38.52837515034616],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20200809_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465885.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200809_20200917_02_T1/LC08_L2SP_044034_20200809_20200917_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.89049298,38.52627323],[-120.75460736,38.14376291],[-121.25660339,36.40018333],[-123.38941416,36.79113591],[-122.89049298,38.52627323]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-08-09T18:46:03.031765Z","platform":"landsat-8","proj:bbox":[465885.0,4030485.0,696015.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":33.04,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020222LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":132.62498854,"view:sun_elevation":60.7375086,"landsat:cloud_cover_land":1.89,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20200731_02_T1","bbox":[-124.97774720871674,36.39056487706353,-122.31370797869847,38.53513512293647],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20200731_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200731_20200908_02_T1/LC08_L2SP_045034_20200731_20200908_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44231398,38.53374819],[-122.31479273,38.12402449],[-122.85280575,36.39275518],[-124.97773119,36.80982847],[-124.44231398,38.53374819]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-07-31T18:52:12.330232Z","platform":"landsat-8","proj:bbox":[327585.0,4028985.0,559815.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":85.52,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020213LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":128.98635432,"view:sun_elevation":62.4943615,"landsat:cloud_cover_land":34.57,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20200724_02_T1","bbox":[-123.40514723073743,36.39979484973156,-120.76571800631922,38.52833515026843],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20200724_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200724_20200911_02_T1/LC08_L2SP_044034_20200724_20200911_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90315354,38.52620186],[-120.76756142,38.1435162],[-121.26989328,36.4002182],[-123.40240946,36.79132821],[-122.90315354,38.52620186]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-07-24T18:45:59.891059Z","platform":"landsat-8","proj:bbox":[464685.0,4030485.0,694815.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":38.22,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020206LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":126.49388892,"view:sun_elevation":63.68539646,"landsat:cloud_cover_land":8.47,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20200715_02_T1","bbox":[-124.98806720847297,36.390394877364265,-122.32402797898094,38.535195122635734],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20200715_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200715_20200912_02_T1/LC08_L2SP_045034_20200715_20200912_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45186858,38.53377838],[-122.32446528,38.12383935],[-122.86273899,36.39242442],[-124.98753784,36.80970583],[-124.45186858,38.53377838]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-07-15T18:52:08.023977Z","platform":"landsat-8","proj:bbox":[326685.0,4028985.0,558915.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":96.49,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020197LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":123.92131768,"view:sun_elevation":64.98906449,"landsat:cloud_cover_land":26.17,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20200708_02_T1","bbox":[-123.41203722516076,36.39721484974287,-120.77259800606869,38.52830515025713],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20200708_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200708_20200912_02_T1/LC08_L2SP_044034_20200708_20200912_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90987356,38.52597277],[-120.77421829,38.14314227],[-121.27674568,36.40005637],[-123.409307,36.79131176],[-122.90987356,38.52597277]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-07-08T18:45:54.720495Z","platform":"landsat-8","proj:bbox":[464085.0,4030185.0,694215.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":24.9,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020190LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":122.52034684,"view:sun_elevation":65.81797385,"landsat:cloud_cover_land":1.62,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20200629_02_T1","bbox":[-124.99150720841546,36.3903448774581,-122.3240279790607,38.5351951225419],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20200629_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200629_20200823_02_T1/LC08_L2SP_045034_20200629_20200823_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.4553851,38.53353463],[-122.3277049,38.12346204],[-122.866066,36.39209791],[-124.99112782,36.80951718],[-124.4553851,38.53353463]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-06-29T18:52:01.747370Z","platform":"landsat-8","proj:bbox":[326385.0,4028985.0,558915.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":7.11,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020181LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":121.62828736,"view:sun_elevation":66.62794459,"landsat:cloud_cover_land":2.61,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20200622_02_T1","bbox":[-123.41203723094817,36.39991484977468,-120.77259800606869,38.52830515022532],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20200622_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200622_20200823_02_T1/LC08_L2SP_044034_20200622_20200823_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91035083,38.52621036],[-120.77429888,38.14324865],[-121.27688394,36.40028576],[-123.40983971,36.79166838],[-122.91035083,38.52621036]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-06-22T18:45:47.571396Z","platform":"landsat-8","proj:bbox":[464085.0,4030485.0,694215.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":35.14,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020174LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":121.70293886,"view:sun_elevation":67.04064202,"landsat:cloud_cover_land":4.02,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20200613_02_T1","bbox":[-124.98806720848447,36.390394877364265,-122.32058797896623,38.535175122635735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20200613_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200613_20200823_02_T1/LC08_L2SP_045034_20200613_20200823_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45207056,38.53366003],[-122.32392515,38.1235691],[-122.8622006,36.39235599],[-124.98773413,36.80978984],[-124.45207056,38.53366003]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-06-13T18:51:53.475989Z","platform":"landsat-8","proj:bbox":[326685.0,4028985.0,559215.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":13.41,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020165LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":122.76889912,"view:sun_elevation":67.24634981,"landsat:cloud_cover_land":0.82,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20200606_02_T1","bbox":[-123.40514722495003,36.397094849699826,-120.76571800631922,38.52833515030017],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20200606_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200606_20200824_02_T1/LC08_L2SP_044034_20200606_20200824_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90371211,38.52580596],[-120.76727174,38.14284591],[-121.26970248,36.3998461],[-123.40304785,36.79123567],[-122.90371211,38.52580596]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-06-06T18:45:38.406559Z","platform":"landsat-8","proj:bbox":[464685.0,4030185.0,694815.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":6.58,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020158LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":124.26609583,"view:sun_elevation":67.11428752,"landsat:cloud_cover_land":7.98,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20200528_02_T1","bbox":[-124.97774720872776,36.39056487706353,-122.31025797868423,38.53511512293647],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20200528_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200528_20200820_02_T1/LC08_L2SP_045034_20200528_20200820_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44148751,38.53373152],[-122.31301423,38.12378222],[-122.85098994,36.39272412],[-124.97685271,36.81003152],[-124.44148751,38.53373152]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-05-28T18:51:43.063194Z","platform":"landsat-8","proj:bbox":[327585.0,4028985.0,560115.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":91.2,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020149LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":126.84484403,"view:sun_elevation":66.5240899,"landsat:cloud_cover_land":18.14,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20200521_02_T1","bbox":[-123.40859722505549,36.39715484972348,-120.76915800618187,38.52832515027652],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20200521_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200521_20200820_02_T1/LC08_L2SP_044034_20200521_20200820_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90607702,38.52604394],[-120.76953418,38.14299509],[-121.27204284,36.40002639],[-123.405501,36.79150699],[-122.90607702,38.52604394]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-05-21T18:45:31.163589Z","platform":"landsat-8","proj:bbox":[464385.0,4030185.0,694515.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":20.02,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020142LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":129.17511104,"view:sun_elevation":65.71491131,"landsat:cloud_cover_land":0.91,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20200512_02_T1","bbox":[-124.99837720826076,36.39023487765625,-122.33090797923263,38.53523512234375],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20200512_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200512_20200820_02_T1/LC08_L2SP_045034_20200512_20200820_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46165155,38.53400552],[-122.33340926,38.12360688],[-122.87192533,36.39231701],[-124.99757906,36.81006067],[-124.46165155,38.53400552]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-05-12T18:51:39.930174Z","platform":"landsat-8","proj:bbox":[325785.0,4028985.0,558315.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":74.73,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020133LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":132.28551715,"view:sun_elevation":64.20992024,"landsat:cloud_cover_land":89.27,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20200505_02_T1","bbox":[-123.45675722650124,36.39799484999472,-120.81737801089056,38.525435150005286],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20200505_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460185.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460185.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460185.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460185.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460185.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460185.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460185.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460185.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460185.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460185.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460185.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460185.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460185.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460185.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460185.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460185.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460185.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460185.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,460185.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200505_20200820_02_T1/LC08_L2SP_044034_20200505_20200820_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.9557184,38.52512188],[-120.81942324,38.14300395],[-121.32102007,36.40074485],[-123.45425626,36.79126588],[-122.9557184,38.52512188]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-05-05T18:45:29.834895Z","platform":"landsat-8","proj:bbox":[460185.0,4030185.0,690315.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":27.52,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020126LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":134.59469797,"view:sun_elevation":62.6748914,"landsat:cloud_cover_land":1.3,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20200426_02_T1","bbox":[-125.03277720746443,36.38968487867964,-122.36532798020166,38.535425121320365],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20200426_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200426_20200822_02_T1/LC08_L2SP_045034_20200426_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.49691755,38.53379979],[-122.36879376,38.12425108],[-122.90606909,36.39215472],[-125.03162433,36.80902212],[-124.49691755,38.53379979]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-04-26T18:51:45.958498Z","platform":"landsat-8","proj:bbox":[322785.0,4028985.0,555315.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":58.17,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020117LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":137.4350321,"view:sun_elevation":60.32935802,"landsat:cloud_cover_land":16.33,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20200419_02_T1","bbox":[-123.44643722619605,36.397814849928054,-120.80706801124907,38.52547515007195],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20200419_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461085.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200419_20200822_02_T1/LC08_L2SP_044034_20200419_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.94546609,38.52526895],[-120.80932161,38.14328338],[-121.31081216,36.40074983],[-123.44389666,36.79114098],[-122.94546609,38.52526895]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-04-19T18:45:38.696851Z","platform":"landsat-8","proj:bbox":[461085.0,4030185.0,691215.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":61.23,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020110LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":139.40725467,"view:sun_elevation":58.22092656,"landsat:cloud_cover_land":51.71,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20200410_02_T1","bbox":[-125.01901720778645,36.389904878265995,-122.35156797981351,38.535345121734004],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20200410_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200410_20200822_02_T1/LC08_L2SP_045034_20200410_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.48222037,38.53369848],[-122.35436083,38.12445827],[-122.89139355,36.39242153],[-125.01667914,36.80899696],[-124.48222037,38.53369848]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-04-10T18:51:53.380538Z","platform":"landsat-8","proj:bbox":[323985.0,4028985.0,556515.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":60.2,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020101LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":141.60658545,"view:sun_elevation":55.21467649,"landsat:cloud_cover_land":45.11,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20200403_02_T1","bbox":[-123.42922723146835,36.400214849849185,-120.78987801185669,38.52554515015082],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20200403_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_SR_B1.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_SR_B2.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_SR_B3.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_SR_B4.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_SR_B5.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_SR_B6.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_SR_B7.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_ST_QA.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_ST_B10.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_ST_DRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_ST_EMIS.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_ST_EMSD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_ST_TRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_ST_URAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_ST_CDIST.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200403_20200822_02_T1/LC08_L2SP_044034_20200403_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.92806295,38.52540649],[-120.79221786,38.14364451],[-121.29340769,36.40064211],[-123.42619101,36.7908197],[-122.92806295,38.52540649]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-04-03T18:45:44.997313Z","platform":"landsat-8","proj:bbox":[462585.0,4030485.0,692715.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.47,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020094LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":143.09399826,"view:sun_elevation":52.69699183,"landsat:cloud_cover_land":0.11,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20200325_02_T1","bbox":[-125.00869720801755,36.39007487796052,-122.34467797953484,38.53531512203948],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20200325_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200325_20200822_02_T1/LC08_L2SP_045034_20200325_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.47328904,38.53380046],[-122.34563101,38.12467321],[-122.88264784,36.39270743],[-125.00771873,36.80916526],[-124.47328904,38.53380046]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-03-25T18:52:01.303967Z","platform":"landsat-8","proj:bbox":[324885.0,4028985.0,557115.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":19.4,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020085LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":144.78233984,"view:sun_elevation":49.31334081,"landsat:cloud_cover_land":35.64,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20200318_02_T1","bbox":[-123.42579723144144,36.400214849856376,-120.78978800546382,38.52825515014363],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20200318_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_SR_B1.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_SR_B2.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_SR_B3.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_SR_B4.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_SR_B5.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_SR_B6.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_SR_B7.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_ST_QA.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_ST_B10.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_ST_DRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_ST_EMIS.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_ST_EMSD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_ST_TRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_ST_URAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_ST_CDIST.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200318_20200822_02_T1/LC08_L2SP_044034_20200318_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.92750394,38.52555239],[-120.79167711,38.14367968],[-121.29302722,36.40065698],[-123.42577848,36.79094029],[-122.92750394,38.52555239]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-03-18T18:45:54.466844Z","platform":"landsat-8","proj:bbox":[462885.0,4030485.0,692715.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":92.51,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020078LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":145.9718195,"view:sun_elevation":46.62045031,"landsat:cloud_cover_land":92.54,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20200309_02_T1","bbox":[-125.00869720802997,36.39007487796052,-122.34123797951904,38.53529512203948],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20200309_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200309_20200822_02_T1/LC08_L2SP_045034_20200309_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.47075753,38.53357895],[-122.34304728,38.12436118],[-122.88018307,36.39246723],[-125.00529297,36.80901313],[-124.47075753,38.53357895]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-03-09T18:52:09.731481Z","platform":"landsat-8","proj:bbox":[324885.0,4028985.0,557415.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":66.06,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020069LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":147.39063938,"view:sun_elevation":43.16541732,"landsat:cloud_cover_land":3.76,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20200302_02_T1","bbox":[-123.42578722557658,36.39745484979685,-120.7864380119924,38.52555515020315],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20200302_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200302_20200822_02_T1/LC08_L2SP_044034_20200302_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.92434065,38.5252039],[-120.78846131,38.14332131],[-121.28982462,36.4003674],[-123.42261961,36.79066437],[-122.92434065,38.5252039]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-03-02T18:46:01.810812Z","platform":"landsat-8","proj:bbox":[462885.0,4030185.0,693015.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.55,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020062LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":148.45451191,"view:sun_elevation":40.53514017,"landsat:cloud_cover_land":0.85,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20200222_02_T1","bbox":[-124.99837720824885,36.39023487765625,-122.33435797924795,38.53525512234375],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20200222_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200222_20200822_02_T1/LC08_L2SP_045034_20200222_20200822_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46326975,38.53334081],[-122.33524108,38.12411124],[-122.87235119,36.39250056],[-124.99776996,36.80905883],[-124.46326975,38.53334081]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-02-22T18:52:15.683208Z","platform":"landsat-8","proj:bbox":[325785.0,4028985.0,558015.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":77.28,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020053LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":149.82006876,"view:sun_elevation":37.31445271,"landsat:cloud_cover_land":5.4,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20200215_02_T1","bbox":[-123.41547723105337,36.399974849794354,-120.77603800593198,38.52829515020564],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20200215_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200215_20200823_02_T1/LC08_L2SP_044034_20200215_20200823_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91440259,38.52558836],[-120.7780407,38.1436607],[-121.27927964,36.40054298],[-123.4125499,36.79089328],[-122.91440259,38.52558836]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-02-15T18:46:06.622682Z","platform":"landsat-8","proj:bbox":[463785.0,4030485.0,693915.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":11.18,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020046LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":150.89485366,"view:sun_elevation":34.9827108,"landsat:cloud_cover_land":15.45,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20200206_02_T1","bbox":[-124.98462720855797,36.390454877260474,-122.32058797888654,38.53517512273953],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20200206_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200206_20200823_02_T1/LC08_L2SP_045034_20200206_20200823_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44985732,38.53317353],[-122.32143634,38.12405333],[-122.85837049,36.39271384],[-124.98418464,36.80917419],[-124.44985732,38.53317353]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-02-06T18:52:19.016461Z","platform":"landsat-8","proj:bbox":[326985.0,4028985.0,559215.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":23.03,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020037LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":152.30437308,"view:sun_elevation":32.28878389,"landsat:cloud_cover_land":0.11,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20200130_02_T1","bbox":[-123.4051472308149,36.39985484973157,-120.76915800621573,38.52833515026843],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20200130_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_SR_B1.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_SR_B2.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_SR_B3.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_SR_B4.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_SR_B5.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_SR_B6.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_SR_B7.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_ST_QA.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_ST_B10.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_ST_DRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_ST_EMIS.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_ST_EMSD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_ST_TRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_ST_URAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_ST_CDIST.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200130_20200823_02_T1/LC08_L2SP_044034_20200130_20200823_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90629577,38.52562659],[-120.76966827,38.14370748],[-121.27080449,36.40055668],[-123.40433574,36.79089797],[-122.90629577,38.52562659]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-01-30T18:46:10.468614Z","platform":"landsat-8","proj:bbox":[464685.0,4030485.0,694515.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":75.31,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020030LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":153.42571948,"view:sun_elevation":30.47153797,"landsat:cloud_cover_land":71.15,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20200121_02_T2","bbox":[-124.98806720848447,36.390394877364265,-122.32058797896623,38.535175122635735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20200121_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200121_20200823_02_T2/LC08_L2SP_045034_20200121_20200823_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45019215,38.53331451],[-122.32165027,38.12409329],[-122.85870477,36.39273908],[-124.98463546,36.80930797],[-124.45019215,38.53331451]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-01-21T18:52:24.336427Z","platform":"landsat-8","proj:bbox":[326685.0,4028985.0,559215.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":92.89,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020021LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":154.89148693,"view:sun_elevation":28.56204696,"landsat:cloud_cover_land":99.97,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20200114_02_T1","bbox":[-123.4051472308149,36.39985484973157,-120.76915800621573,38.52833515026843],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20200114_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_SR_B1.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_SR_B2.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_SR_B3.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_SR_B4.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_SR_B5.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_SR_B6.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_SR_B7.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_ST_QA.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_ST_B10.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_ST_DRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_ST_EMIS.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_ST_EMSD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_ST_TRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_ST_URAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_ST_CDIST.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/044/034/LC08_L2SP_044034_20200114_20200823_02_T1/LC08_L2SP_044034_20200114_20200823_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90653136,38.52571975],[-120.76986832,38.14366794],[-121.27117841,36.40052577],[-123.40476176,36.7910065],[-122.90653136,38.52571975]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-01-14T18:46:15.356835Z","platform":"landsat-8","proj:bbox":[464685.0,4030485.0,694515.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":31.88,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342020014LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":156.02132053,"view:sun_elevation":27.43713541,"landsat:cloud_cover_land":35.85,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20200105_02_T1","bbox":[-124.98462720856924,36.390454877260474,-122.317147978872,38.53515512273953],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20200105_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/045/034/LC08_L2SP_045034_20200105_20200823_02_T1/LC08_L2SP_045034_20200105_20200823_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44737602,38.53352744],[-122.31888996,38.12428052],[-122.85595229,36.39296788],[-124.98183515,36.80956688],[-124.44737602,38.53352744]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-01-05T18:52:27.772426Z","platform":"landsat-8","proj:bbox":[326985.0,4028985.0,559515.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":23.5,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342020005LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":157.42459851,"view:sun_elevation":26.49556866,"landsat:cloud_cover_land":0.04,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20191229_02_T1","bbox":[-123.40513722495004,36.39709484966966,-120.76580801274822,38.52562515033034],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20191229_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191229_20200824_02_T1/LC08_L2SP_044034_20191229_20200824_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90461372,38.52538817],[-120.76818355,38.14331386],[-121.26956079,36.40005169],[-123.40291584,36.79055786],[-122.90461372,38.52538817]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-12-29T18:46:18.720976Z","platform":"landsat-8","proj:bbox":[464685.0,4030185.0,694815.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":95.93,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019363LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":158.44630007,"view:sun_elevation":26.17022829,"landsat:cloud_cover_land":94.53,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20191213_02_T2","bbox":[-123.4085772308429,36.39985484972077,-120.76924801261103,38.525615150279236],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20191213_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_SR_B1.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_SR_B2.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_SR_B3.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_SR_B4.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_SR_B5.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_SR_B6.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_SR_B7.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_ST_QA.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_ST_B10.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_ST_DRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_ST_EMIS.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_ST_EMSD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_ST_TRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_ST_URAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_QA_PIXEL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_ST_ATRAN.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_ST_CDIST.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_QA_RADSAT.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191213_20201022_02_T2/LC08_L2SP_044034_20191213_20201022_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90859851,38.52558254],[-120.77245287,38.14339612],[-121.27405733,36.40015387],[-123.40712211,36.79076921],[-122.90859851,38.52558254]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-12-13T18:46:22.735412Z","platform":"landsat-8","proj:bbox":[464385.0,4030485.0,694515.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":90.13,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019347LGN01","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":160.36641047,"view:sun_elevation":26.76972307,"landsat:cloud_cover_land":93.08,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20191204_02_T2","bbox":[-124.98806720847297,36.390394877364265,-122.32402797898094,38.535195122635734],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20191204_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191204_20200825_02_T2/LC08_L2SP_045034_20191204_20200825_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45313427,38.53373548],[-122.32525056,38.12435631],[-122.86266133,36.39291598],[-124.98795687,36.80963638],[-124.45313427,38.53373548]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-12-04T18:52:34.558112Z","platform":"landsat-8","proj:bbox":[326685.0,4028985.0,558915.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":95.7,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019338LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":161.07260063,"view:sun_elevation":27.88620234,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20191127_02_T1","bbox":[-123.40514723073743,36.39979484973156,-120.76571800631922,38.52833515026843],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20191127_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191127_20200825_02_T1/LC08_L2SP_044034_20191127_20200825_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90509509,38.52579982],[-120.76913296,38.14363775],[-121.27079746,36.40028121],[-123.4036766,36.79087036],[-122.90509509,38.52579982]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-11-27T18:46:23.969642Z","platform":"landsat-8","proj:bbox":[464685.0,4030485.0,694815.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":76.6,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019331LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":161.39034651,"view:sun_elevation":29.11062422,"landsat:cloud_cover_land":80.46,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20191118_02_T1","bbox":[-124.98806720848447,36.390394877364265,-122.32058797896623,38.535175122635735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20191118_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191118_20200825_02_T1/LC08_L2SP_045034_20191118_20200825_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45038332,38.53371209],[-122.32271484,38.12433293],[-122.86017992,36.39287512],[-124.9852401,36.8095929],[-124.45038332,38.53371209]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-11-18T18:52:35.423911Z","platform":"landsat-8","proj:bbox":[326685.0,4028985.0,559215.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":27.04,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019322LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":161.44627991,"view:sun_elevation":31.08239245,"landsat:cloud_cover_land":0.24,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20191111_02_T1","bbox":[-123.41203723094817,36.39991484977468,-120.77259800606869,38.52830515022532],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20191111_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191111_20200825_02_T1/LC08_L2SP_044034_20191111_20200825_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91013247,38.52604106],[-120.77428154,38.14370186],[-121.27619939,36.40046669],[-123.408954,36.79123379],[-122.91013247,38.52604106]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-11-11T18:46:26.445154Z","platform":"landsat-8","proj:bbox":[464085.0,4030485.0,694215.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":26.65,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019315LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":161.1889996,"view:sun_elevation":32.88366168,"landsat:cloud_cover_land":17.45,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20191102_02_T1","bbox":[-124.99837720826076,36.39023487765625,-122.33090797923263,38.53523512234375],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20191102_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191102_20200825_02_T1/LC08_L2SP_045034_20191102_20200825_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46177211,38.53382228],[-122.33398326,38.12409884],[-122.87178368,36.3925443],[-124.99695557,36.80959672],[-124.46177211,38.53382228]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-11-02T18:52:38.781505Z","platform":"landsat-8","proj:bbox":[325785.0,4028985.0,558315.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":3.24,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019306LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":160.44067924,"view:sun_elevation":35.47287427,"landsat:cloud_cover_land":0.15,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20191026_02_T1","bbox":[-123.41891722536744,36.39733484978442,-120.77947800581553,38.528285150215574],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20191026_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191026_20200825_02_T1/LC08_L2SP_044034_20191026_20200825_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91807101,38.52576031],[-120.78200723,38.1431622],[-121.28418829,36.40020361],[-123.4171586,36.7912164],[-122.91807101,38.52576031]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-10-26T18:46:28.524116Z","platform":"landsat-8","proj:bbox":[463485.0,4030185.0,693615.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":5.79,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019299LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":159.52702605,"view:sun_elevation":37.65577629,"landsat:cloud_cover_land":9.03,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20191017_02_T1","bbox":[-125.00181720819123,36.39018487775056,-122.3343579793279,38.53525512224944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20191017_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191017_20200825_02_T1/LC08_L2SP_045034_20191017_20200825_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46426953,38.53395177],[-122.33617822,38.12402462],[-122.87409363,36.3925179],[-124.9995759,36.80977335],[-124.46426953,38.53395177]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-10-17T18:52:39.212929Z","platform":"landsat-8","proj:bbox":[325485.0,4028985.0,558015.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":12.92,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019290LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":157.90375683,"view:sun_elevation":40.59639388,"landsat:cloud_cover_land":0.07,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20191010_02_T1","bbox":[-123.41891722536744,36.39733484978442,-120.77947800581553,38.528285150215574],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20191010_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20191010_20200825_02_T1/LC08_L2SP_044034_20191010_20200825_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.9179932,38.52585179],[-120.78158499,38.1431192],[-121.2838425,36.40025695],[-123.4171562,36.79140297],[-122.9179932,38.52585179]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-10-10T18:46:27.706524Z","platform":"landsat-8","proj:bbox":[463485.0,4030185.0,693615.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":2.83,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019283LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":156.29081323,"view:sun_elevation":42.94353051,"landsat:cloud_cover_land":0.23,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20191001_02_T1","bbox":[-124.99837720826076,36.39023487765625,-122.33090797923263,38.53523512234375],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20191001_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20191001_20200825_02_T1/LC08_L2SP_045034_20191001_20200825_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.4602542,38.53349393],[-122.33187413,38.12353634],[-122.86976732,36.39217444],[-124.99554126,36.80947426],[-124.4602542,38.53349393]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-10-01T18:52:36.951696Z","platform":"landsat-8","proj:bbox":[325785.0,4028985.0,558315.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":2.64,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019274LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":153.78491339,"view:sun_elevation":45.96964149,"landsat:cloud_cover_land":0.07,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20190924_02_T1","bbox":[-123.41203722516076,36.39721484974287,-120.77259800606869,38.52830515025713],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20190924_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190924_20200826_02_T1/LC08_L2SP_044034_20190924_20200826_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91163993,38.52558923],[-120.7750649,38.14284842],[-121.27725341,36.4000428],[-123.41074571,36.79120537],[-122.91163993,38.52558923]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-09-24T18:46:24.331481Z","platform":"landsat-8","proj:bbox":[464085.0,4030185.0,694215.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.03,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019267LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":151.51519275,"view:sun_elevation":48.29130743,"landsat:cloud_cover_land":0.03,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20190915_02_T1","bbox":[-124.98806720848447,36.390394877364265,-122.32058797896623,38.535175122635735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20190915_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190915_20200826_02_T1/LC08_L2SP_045034_20190915_20200826_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44960905,38.53380942],[-122.32119882,38.1240027],[-122.85899306,36.39278004],[-124.98480566,36.80993223],[-124.44960905,38.53380942]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-09-15T18:52:32.238788Z","platform":"landsat-8","proj:bbox":[326685.0,4028985.0,559215.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":5.25,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019258LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":148.22339136,"view:sun_elevation":51.16992012,"landsat:cloud_cover_land":4.58,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20190908_02_T1","bbox":[-123.40170722484429,36.397034849680686,-120.76228800643665,38.52834515031932],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20190908_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190908_20200826_02_T1/LC08_L2SP_044034_20190908_20200826_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.89964007,38.52572152],[-120.76314676,38.14311457],[-121.26513429,36.39996508],[-123.39854779,36.79101508],[-122.89964007,38.52572152]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-09-08T18:46:18.661711Z","platform":"landsat-8","proj:bbox":[464985.0,4030185.0,695115.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":7.64,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019251LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":145.40842068,"view:sun_elevation":53.29958405,"landsat:cloud_cover_land":4.41,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20190830_02_T1","bbox":[-124.98118720864342,36.39050487715648,-122.31370797877803,38.53513512284351],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20190830_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190830_20200826_02_T1/LC08_L2SP_045034_20190830_20200826_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44298687,38.53327821],[-122.31487446,38.12358659],[-122.85265992,36.39239215],[-124.9781728,36.80943065],[-124.44298687,38.53327821]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-08-30T18:52:27.281193Z","platform":"landsat-8","proj:bbox":[327285.0,4028985.0,559815.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":41.31,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019242LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":141.56530711,"view:sun_elevation":55.85972455,"landsat:cloud_cover_land":22.36,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20190823_02_T1","bbox":[-123.40170722484429,36.397034849680686,-120.76228800643665,38.52834515031932],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20190823_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190823_20200826_02_T1/LC08_L2SP_044034_20190823_20200826_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.9005545,38.52586297],[-120.76445654,38.14326004],[-121.26652417,36.40002649],[-123.39954828,36.79106429],[-122.9005545,38.52586297]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-08-23T18:46:15.013369Z","platform":"landsat-8","proj:bbox":[464985.0,4030185.0,695115.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":36.2,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019235LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":138.46829654,"view:sun_elevation":57.69490665,"landsat:cloud_cover_land":6.82,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20190814_02_T1","bbox":[-124.98118720864342,36.39050487715648,-122.31370797877803,38.53513512284351],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20190814_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190814_20200827_02_T1/LC08_L2SP_045034_20190814_20200827_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44523188,38.53379753],[-122.31744252,38.12406821],[-122.85539394,36.39280762],[-124.98058741,36.80988694],[-124.44523188,38.53379753]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-08-14T18:52:23.472078Z","platform":"landsat-8","proj:bbox":[327285.0,4028985.0,559815.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":23.56,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019226LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":134.48973712,"view:sun_elevation":59.82993092,"landsat:cloud_cover_land":0.09,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20190807_02_T1","bbox":[-123.40170722484429,36.397034849680686,-120.76228800643665,38.52834515031932],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20190807_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190807_20200827_02_T1/LC08_L2SP_044034_20190807_20200827_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90090768,38.52582251],[-120.76505968,38.14320418],[-121.26726913,36.39993239],[-123.40003849,36.79098445],[-122.90090768,38.52582251]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-08-07T18:46:10.387074Z","platform":"landsat-8","proj:bbox":[464985.0,4030185.0,695115.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":18.68,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019219LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":131.50444777,"view:sun_elevation":61.31582171,"landsat:cloud_cover_land":9.71,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20190729_02_T1","bbox":[-124.98118720864342,36.39050487715648,-122.31370797877803,38.53513512284351],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20190729_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190729_20200827_02_T1/LC08_L2SP_045034_20190729_20200827_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.4431693,38.5337865],[-122.31554179,38.12405677],[-122.85352919,36.39276229],[-124.97855272,36.80983916],[-124.4431693,38.5337865]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-07-29T18:52:17.719210Z","platform":"landsat-8","proj:bbox":[327285.0,4028985.0,559815.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":6.51,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019210LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":128.00749856,"view:sun_elevation":62.99931432,"landsat:cloud_cover_land":13.29,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20190722_02_T1","bbox":[-123.39826723052582,36.399674849691245,-120.75884800657437,38.528355150308755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20190722_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190722_20200827_02_T1/LC08_L2SP_044034_20190722_20200827_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.8966818,38.52592746],[-120.7608794,38.14335216],[-121.26296153,36.3999569],[-123.395674,36.79097207],[-122.8966818,38.52592746]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-07-22T18:46:03.782892Z","platform":"landsat-8","proj:bbox":[465285.0,4030485.0,695415.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":34.37,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019203LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":125.66876047,"view:sun_elevation":64.13107204,"landsat:cloud_cover_land":3.19,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20190713_02_T1","bbox":[-124.98118720864342,36.39050487715648,-122.31370797877803,38.53513512284351],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20190713_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190713_20200827_02_T1/LC08_L2SP_045034_20190713_20200827_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.4441585,38.53347216],[-122.31656643,38.12372923],[-122.85460293,36.39238989],[-124.97957899,36.80948607],[-124.4441585,38.53347216]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-07-13T18:52:12.054966Z","platform":"landsat-8","proj:bbox":[327285.0,4028985.0,559815.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":96.23,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019194LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":123.34302152,"view:sun_elevation":65.35168951,"landsat:cloud_cover_land":14.49,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20190706_02_T1","bbox":[-123.40859722505549,36.39715484972348,-120.76915800618187,38.52832515027652],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20190706_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190706_20200829_02_T1/LC08_L2SP_044034_20190706_20200829_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90724661,38.5258106],[-120.77135648,38.14302336],[-121.27379432,36.39992753],[-123.40659109,36.79112935],[-122.90724661,38.5258106]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-07-06T18:46:00.138672Z","platform":"landsat-8","proj:bbox":[464385.0,4030185.0,694515.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":7.05,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019187LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":122.1771397,"view:sun_elevation":66.11555751,"landsat:cloud_cover_land":3.38,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20190627_02_T1","bbox":[-124.99494720834626,36.390294877562646,-122.32746797915543,38.53521512243736],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20190627_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190627_20200827_02_T1/LC08_L2SP_045034_20190627_20200827_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45835169,38.53402237],[-122.33046964,38.12386241],[-122.86884535,36.39250186],[-124.99411746,36.81000098],[-124.45835169,38.53402237]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-06-27T18:52:08.906307Z","platform":"landsat-8","proj:bbox":[326085.0,4028985.0,558615.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":61.66,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019178LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":121.63317527,"view:sun_elevation":66.83715536,"landsat:cloud_cover_land":97.23,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20190620_02_T1","bbox":[-123.41891722536744,36.39733484978442,-120.77947800581553,38.528285150215574],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20190620_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190620_20200827_02_T1/LC08_L2SP_044034_20190620_20200827_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91820108,38.52589311],[-120.78205201,38.14286343],[-121.28468903,36.40008573],[-123.41774874,36.7915377],[-122.91820108,38.52589311]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-06-20T18:45:56.100776Z","platform":"landsat-8","proj:bbox":[463485.0,4030185.0,693615.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":41.59,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019171LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":121.97152467,"view:sun_elevation":67.16670319,"landsat:cloud_cover_land":21.15,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20190611_02_T1","bbox":[-125.00181720819123,36.39018487775056,-122.3343579793279,38.53525512224944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20190611_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190611_20200828_02_T1/LC08_L2SP_045034_20190611_20200828_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46541293,38.53384216],[-122.3372894,38.12347862],[-122.87579397,36.39210939],[-125.00131115,36.80980286],[-124.46541293,38.53384216]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-06-11T18:52:03.763110Z","platform":"landsat-8","proj:bbox":[325485.0,4028985.0,558015.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.34,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019162LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":123.34565204,"view:sun_elevation":67.24690767,"landsat:cloud_cover_land":0.4,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20190604_02_T1","bbox":[-123.4223572254722,36.3973948498044,-120.78291800567929,38.528275150195604],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20190604_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190604_20200828_02_T1/LC08_L2SP_044034_20190604_20200828_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.92189239,38.52584107],[-120.78548875,38.14265133],[-121.28827408,36.39997899],[-123.42159543,36.79159094],[-122.92189239,38.52584107]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-06-04T18:45:50.059642Z","platform":"landsat-8","proj:bbox":[463185.0,4030185.0,693315.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":12.68,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019155LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":125.04938117,"view:sun_elevation":67.00762741,"landsat:cloud_cover_land":1.09,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20190526_02_T2","bbox":[-125.00181720819123,36.39018487775056,-122.3343579793279,38.53525512224944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20190526_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190526_20200828_02_T2/LC08_L2SP_045034_20190526_20200828_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46501126,38.53377957],[-122.33678609,38.12336341],[-122.87528082,36.39199428],[-125.00091402,36.80975401],[-124.46501126,38.53377957]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-05-26T18:51:56.473266Z","platform":"landsat-8","proj:bbox":[325485.0,4028985.0,558015.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":79.37,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019146LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":127.80974036,"view:sun_elevation":66.26742025,"landsat:cloud_cover_land":99.97,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20190519_02_T1","bbox":[-123.41891722536744,36.39733484978442,-120.77947800581553,38.528285150215574],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20190519_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190519_20200828_02_T1/LC08_L2SP_044034_20190519_20200828_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91749701,38.52608254],[-120.78114099,38.14295186],[-121.28387901,36.40019079],[-123.4171584,36.79174134],[-122.91749701,38.52608254]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-05-19T18:45:41.775075Z","platform":"landsat-8","proj:bbox":[463485.0,4030185.0,693615.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":64.94,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019139LGN01","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":130.19223643,"view:sun_elevation":65.33159846,"landsat:cloud_cover_land":77.06,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20190510_02_T1","bbox":[-124.99494720834626,36.390294877562646,-122.32746797915543,38.53521512243736],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20190510_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190510_20200828_02_T1/LC08_L2SP_045034_20190510_20200828_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45646784,38.53369584],[-122.32841103,38.12348744],[-122.86677222,36.39217059],[-124.9922384,36.80972539],[-124.45646784,38.53369584]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-05-10T18:51:46.913785Z","platform":"landsat-8","proj:bbox":[326085.0,4028985.0,558615.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":96.34,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019130LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":133.28577027,"view:sun_elevation":63.66734108,"landsat:cloud_cover_land":34.21,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20190503_02_T1","bbox":[-123.40514722495003,36.397094849699826,-120.76571800631922,38.52833515030017],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20190503_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190503_20200829_02_T1/LC08_L2SP_044034_20190503_20200829_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90442168,38.52603597],[-120.76835975,38.14307763],[-121.270916,36.40000267],[-123.40390475,36.79138876],[-122.90442168,38.52603597]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-05-03T18:45:31.153054Z","platform":"landsat-8","proj:bbox":[464685.0,4030185.0,694815.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":10.16,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019123LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":135.58275591,"view:sun_elevation":62.02935494,"landsat:cloud_cover_land":2.98,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20190424_02_T1","bbox":[-125.01901720778645,36.389904878265995,-122.35156797981351,38.535345121734004],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20190424_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190424_20200829_02_T1/LC08_L2SP_045034_20190424_20200829_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.48274781,38.53390294],[-122.35501931,38.12456614],[-122.89229036,36.39256745],[-125.01743695,36.80922773],[-124.48274781,38.53390294]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-04-24T18:51:38.957672Z","platform":"landsat-8","proj:bbox":[323985.0,4028985.0,556515.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.01,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019114LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":138.20461825,"view:sun_elevation":59.51401027,"landsat:cloud_cover_land":0.2,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20190417_02_T1","bbox":[-123.43610723167656,36.4003348498903,-120.79674801160971,38.5255151501097],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20190417_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_SR_B1.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_SR_B2.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_SR_B3.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_SR_B4.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_SR_B5.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_SR_B6.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_SR_B7.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_ST_QA.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_ST_B10.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_ST_DRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_ST_EMIS.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_ST_EMSD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_ST_TRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_ST_URAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_QA_PIXEL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_ST_ATRAN.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_ST_CDIST.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_QA_RADSAT.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190417_20200829_02_T1/LC08_L2SP_044034_20190417_20200829_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.93519141,38.5254286],[-120.79942091,38.14344059],[-121.30093943,36.40066544],[-123.43364325,36.79105798],[-122.93519141,38.5254286]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-04-17T18:45:31.461574Z","platform":"landsat-8","proj:bbox":[461985.0,4030485.0,692115.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":15.9,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019107LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":140.0735204,"view:sun_elevation":57.31704186,"landsat:cloud_cover_land":0.34,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20190408_02_T2","bbox":[-125.012137207931,36.390014878065585,-122.34811797963098,38.535335121934416],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20190408_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190408_20200829_02_T2/LC08_L2SP_045034_20190408_20200829_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.47677598,38.53366102],[-122.34901941,38.1243543],[-122.88626573,36.39244205],[-125.01142956,36.80907256],[-124.47677598,38.53366102]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-04-08T18:51:45.827554Z","platform":"landsat-8","proj:bbox":[324585.0,4028985.0,556815.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":92.12,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019098LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":142.16204491,"view:sun_elevation":54.22208177,"landsat:cloud_cover_land":98.07,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20190401_02_T1","bbox":[-123.42579723136413,36.40015484985637,-120.78634800556698,38.52825515014363],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20190401_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190401_20200829_02_T1/LC08_L2SP_044034_20190401_20200829_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.92529078,38.52573522],[-120.78932497,38.14378909],[-121.2907703,36.40082576],[-123.42365644,36.79117887],[-122.92529078,38.52573522]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-04-01T18:45:37.132260Z","platform":"landsat-8","proj:bbox":[462885.0,4030485.0,693015.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019091LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":143.58759124,"view:sun_elevation":51.65640617,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20190323_02_T1","bbox":[-124.99837720824885,36.39023487765625,-122.33435797924795,38.53525512234375],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20190323_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190323_20200829_02_T1/LC08_L2SP_045034_20190323_20200829_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46280157,38.53349554],[-122.33484471,38.12439951],[-122.87183791,36.39273307],[-124.99718985,36.80915984],[-124.46280157,38.53349554]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-03-23T18:51:50.006796Z","platform":"landsat-8","proj:bbox":[325785.0,4028985.0,558015.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":6.93,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019082LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":145.20472788,"view:sun_elevation":48.23702745,"landsat:cloud_cover_land":8.56,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20190316_02_T1","bbox":[-123.40859723092044,36.39991484975308,-120.77259800609855,38.52832515024692],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20190316_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_SR_B1.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_SR_B2.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_SR_B3.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_SR_B4.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_SR_B5.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_SR_B6.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_SR_B7.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_ST_QA.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_ST_B10.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_ST_DRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_ST_EMIS.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_ST_EMSD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_ST_TRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_ST_URAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_ST_CDIST.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190316_20200829_02_T1/LC08_L2SP_044034_20190316_20200829_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.9092398,38.52570241],[-120.77302753,38.14386085],[-121.27417895,36.40058521],[-123.40730481,36.79085309],[-122.9092398,38.52570241]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-03-16T18:45:40.244574Z","platform":"landsat-8","proj:bbox":[464385.0,4030485.0,694215.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":5.21,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019075LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":146.35264631,"view:sun_elevation":45.53638387,"landsat:cloud_cover_land":0.05,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20190307_02_T1","bbox":[-124.98806720847297,36.390394877364265,-122.32402797898094,38.535195122635734],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20190307_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190307_20200829_02_T1/LC08_L2SP_045034_20190307_20200829_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45316429,38.53318158],[-122.32495736,38.12410243],[-122.86188238,36.39259009],[-124.98747929,36.80900901],[-124.45316429,38.53318158]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-03-07T18:51:54.205176Z","platform":"landsat-8","proj:bbox":[326685.0,4028985.0,558915.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":96.85,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019066LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":147.74846839,"view:sun_elevation":42.09843007,"landsat:cloud_cover_land":99.74,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20190228_02_T1","bbox":[-123.4085772308429,36.39985484972077,-120.76924801261103,38.525615150279236],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20190228_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_SR_B1.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_SR_B2.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_SR_B3.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_SR_B4.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_SR_B5.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_SR_B6.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_SR_B7.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_ST_QA.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_ST_B10.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_ST_DRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_ST_EMIS.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_ST_EMSD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_ST_TRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_ST_URAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_QA_PIXEL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_ST_ATRAN.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_ST_CDIST.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_QA_RADSAT.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190228_20200829_02_T1/LC08_L2SP_044034_20190228_20200829_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90803747,38.52538417],[-120.77168429,38.1434498],[-121.27294637,36.4002471],[-123.4062105,36.79060421],[-122.90803747,38.52538417]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-02-28T18:45:45.837095Z","platform":"landsat-8","proj:bbox":[464385.0,4030485.0,694515.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":61.12,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019059LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":148.81041807,"view:sun_elevation":39.50316214,"landsat:cloud_cover_land":76.99,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20190219_02_T1","bbox":[-124.98806720848447,36.390394877364265,-122.32058797896623,38.535175122635735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20190219_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190219_20200829_02_T1/LC08_L2SP_045034_20190219_20200829_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45142429,38.533161],[-122.32302823,38.12396797],[-122.86007441,36.392617],[-124.98586375,36.8091503],[-124.45142429,38.533161]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-02-19T18:51:59.120038Z","platform":"landsat-8","proj:bbox":[326685.0,4028985.0,559215.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":23.8,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019050LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":150.17056821,"view:sun_elevation":36.35134176,"landsat:cloud_cover_land":0.02,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20190212_02_T2","bbox":[-123.40514723073743,36.39979484973156,-120.76571800631922,38.52833515026843],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20190212_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190212_20200829_02_T2/LC08_L2SP_044034_20190212_20200829_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90519088,38.52569546],[-120.76858724,38.14368413],[-121.26986461,36.40043132],[-123.40338263,36.79088043],[-122.90519088,38.52569546]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-02-12T18:45:49.642536Z","platform":"landsat-8","proj:bbox":[464685.0,4030485.0,694815.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019043LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":151.24695418,"view:sun_elevation":34.09258475,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20190203_02_T2","bbox":[-124.98118720864342,36.39050487715648,-122.31370797877803,38.53513512284351],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20190203_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190203_20200829_02_T2/LC08_L2SP_045034_20190203_20200829_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44406976,38.53324121],[-122.31564118,38.12409631],[-122.8526959,36.392835],[-124.97852269,36.80933262],[-124.44406976,38.53324121]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-02-03T18:52:01.485876Z","platform":"landsat-8","proj:bbox":[327285.0,4028985.0,559815.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":77.25,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019034LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":152.67056391,"view:sun_elevation":31.51654729,"landsat:cloud_cover_land":99.72,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20190127_02_T1","bbox":[-123.39826723052582,36.399674849691245,-120.75884800657437,38.528355150308755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20190127_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190127_20200830_02_T1/LC08_L2SP_044034_20190127_20200830_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.898842,38.52583978],[-120.76239347,38.14384589],[-121.26368882,36.40048399],[-123.39705797,36.79091706],[-122.898842,38.52583978]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-01-27T18:45:51.704564Z","platform":"landsat-8","proj:bbox":[465285.0,4030485.0,695415.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":44.14,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019027LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":153.79857021,"view:sun_elevation":29.80792823,"landsat:cloud_cover_land":43.76,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20190118_02_T2","bbox":[-124.98118720862674,36.39050487715648,-122.31714797879238,38.53515512284352],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20190118_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190118_20200829_02_T2/LC08_L2SP_045034_20190118_20200829_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44572594,38.53362027],[-122.31752168,38.1243631],[-122.85475237,36.39307779],[-124.98035889,36.80968065],[-124.44572594,38.53362027]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-01-18T18:52:04.866734Z","platform":"landsat-8","proj:bbox":[327285.0,4028985.0,559515.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":88.66,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019018LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":155.25475968,"view:sun_elevation":28.05297568,"landsat:cloud_cover_land":99.99,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20190111_02_T1","bbox":[-123.4051472308149,36.39985484973157,-120.76915800621573,38.52833515026843],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20190111_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_SR_B1.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_SR_B2.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_SR_B3.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_SR_B4.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_SR_B5.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_SR_B6.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_SR_B7.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_ST_QA.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_ST_B10.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_ST_DRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_ST_EMIS.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_ST_EMSD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_ST_TRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_ST_URAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_ST_CDIST.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/044/034/LC08_L2SP_044034_20190111_20200830_02_T1/LC08_L2SP_044034_20190111_20200830_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90581255,38.52577588],[-120.76951191,38.14358097],[-121.27106935,36.40029831],[-123.40428944,36.79093204],[-122.90581255,38.52577588]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-01-11T18:45:55.657799Z","platform":"landsat-8","proj:bbox":[464685.0,4030485.0,694515.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":92.37,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342019011LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":156.37128645,"view:sun_elevation":27.05994474,"landsat:cloud_cover_land":88.3,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20190102_02_T1","bbox":[-124.98806720848447,36.390394877364265,-122.32058797896623,38.535175122635735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20190102_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/045/034/LC08_L2SP_045034_20190102_20200829_02_T1/LC08_L2SP_045034_20190102_20200829_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45042202,38.53344391],[-122.32242518,38.12394815],[-122.85987571,36.39253053],[-124.98527782,36.80937123],[-124.45042202,38.53344391]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-01-02T18:52:07.787079Z","platform":"landsat-8","proj:bbox":[326685.0,4028985.0,559215.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":4.01,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342019002LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":157.74974265,"view:sun_elevation":26.29904026,"landsat:cloud_cover_land":0.23,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20181226_02_T1","bbox":[-123.40859723084289,36.39985484975308,-120.76915800618187,38.52832515024692],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20181226_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181226_20200830_02_T1/LC08_L2SP_044034_20181226_20200830_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90709831,38.52580473],[-120.77099778,38.14360361],[-121.27268284,36.40031904],[-123.40570987,36.79096233],[-122.90709831,38.52580473]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-12-26T18:45:57.384338Z","platform":"landsat-8","proj:bbox":[464385.0,4030485.0,694515.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":33.51,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018360LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":158.73214395,"view:sun_elevation":26.1146756,"landsat:cloud_cover_land":34.29,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20181217_02_T1","bbox":[-124.98462720856924,36.390454877260474,-122.317147978872,38.53515512273953],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20181217_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181217_20200830_02_T1/LC08_L2SP_045034_20181217_20200830_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44802744,38.53360115],[-122.32011123,38.12415169],[-122.85761151,36.39277185],[-124.98292351,36.80957835],[-124.44802744,38.53360115]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-12-17T18:52:07.894730Z","platform":"landsat-8","proj:bbox":[326985.0,4028985.0,559515.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":9.4,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018351LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":159.82641228,"view:sun_elevation":26.4036154,"landsat:cloud_cover_land":20.73,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20181210_02_T1","bbox":[-123.40513723073744,36.3997948497014,-120.76580801274822,38.525625150298595],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20181210_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_SR_B1.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_SR_B2.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_SR_B3.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_SR_B4.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_SR_B5.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_SR_B6.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_SR_B7.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_ST_QA.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_ST_B10.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_ST_DRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_ST_EMIS.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_ST_EMSD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_ST_TRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_ST_URAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_QA_PIXEL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_ST_ATRAN.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_ST_CDIST.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_QA_RADSAT.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181210_20200830_02_T1/LC08_L2SP_044034_20181210_20200830_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90538544,38.52549209],[-120.76950004,38.1432802],[-121.27132603,36.40006956],[-123.404123,36.79069836],[-122.90538544,38.52549209]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-12-10T18:45:57.533702Z","platform":"landsat-8","proj:bbox":[464685.0,4030485.0,694815.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":74.58,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018344LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":160.50889131,"view:sun_elevation":27.02696481,"landsat:cloud_cover_land":82.7,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20181201_02_T1","bbox":[-124.99494720833447,36.390294877562646,-122.3309079791705,38.535235122437356],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20181201_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181201_20200830_02_T1/LC08_L2SP_045034_20181201_20200830_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45912056,38.5337103],[-122.33125755,38.12389497],[-122.86908331,36.39238372],[-124.99433678,36.80954889],[-124.45912056,38.5337103]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-12-01T18:52:10.387800Z","platform":"landsat-8","proj:bbox":[326085.0,4028985.0,558315.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":29.39,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018335LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":161.11360025,"view:sun_elevation":28.30636647,"landsat:cloud_cover_land":20.52,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20181124_02_T1","bbox":[-123.41891723115818,36.400034849816436,-120.77947800581553,38.528285150183564],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20181124_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181124_20200830_02_T1/LC08_L2SP_044034_20181124_20200830_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91927892,38.52600521],[-120.78315704,38.14336603],[-121.28538968,36.40047915],[-123.41841778,36.79152961],[-122.91927892,38.52600521]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-11-24T18:46:00.552708Z","platform":"landsat-8","proj:bbox":[463485.0,4030485.0,693615.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":46.33,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018328LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":161.33161807,"view:sun_elevation":29.64048771,"landsat:cloud_cover_land":66.6,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20181115_02_T1","bbox":[-125.00525720809995,36.39012487785525,-122.33779797942334,38.535275122144746],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20181115_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181115_20200830_02_T1/LC08_L2SP_045034_20181115_20200830_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46933131,38.5338399],[-122.34130942,38.12372332],[-122.87939388,36.39213959],[-125.00480875,36.80959434],[-124.46933131,38.5338399]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-11-15T18:52:11.759082Z","platform":"landsat-8","proj:bbox":[325185.0,4028985.0,557715.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":47.96,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018319LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":161.24369954,"view:sun_elevation":31.7336155,"landsat:cloud_cover_land":1.28,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20181108_02_T1","bbox":[-123.42579722557659,36.397454849826694,-120.78634800556698,38.52825515017331],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20181108_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181108_20200830_02_T1/LC08_L2SP_044034_20181108_20200830_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.92510426,38.52592719],[-120.78883446,38.1430961],[-121.29129711,36.40041263],[-123.42447576,36.79165907],[-122.92510426,38.52592719]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-11-08T18:46:00.627833Z","platform":"landsat-8","proj:bbox":[462885.0,4030185.0,693015.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.07,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018312LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":160.87174065,"view:sun_elevation":33.61498533,"landsat:cloud_cover_land":0.1,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20181030_02_T1","bbox":[-125.00869720802997,36.39007487796052,-122.34123797951904,38.53529512203948],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20181030_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181030_20200830_02_T1/LC08_L2SP_045034_20181030_20200830_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.47035612,38.53405107],[-122.3421824,38.1238084],[-122.8803769,36.39228804],[-125.0059473,36.80986013],[-124.47035612,38.53405107]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-10-30T18:52:10.148425Z","platform":"landsat-8","proj:bbox":[324885.0,4028985.0,557415.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":1.7,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018303LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":159.96781384,"view:sun_elevation":36.28296625,"landsat:cloud_cover_land":0.11,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20181023_02_T1","bbox":[-123.4223572254722,36.3973948498044,-120.78291800567929,38.528275150195604],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20181023_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181023_20200830_02_T1/LC08_L2SP_044034_20181023_20200830_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.9220624,38.52597348],[-120.78566023,38.14305893],[-121.28815745,36.40032685],[-123.42147334,36.79166067],[-122.9220624,38.52597348]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-10-23T18:45:57.733372Z","platform":"landsat-8","proj:bbox":[463185.0,4030185.0,693315.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":68.58,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018296LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":158.92119752,"view:sun_elevation":38.50377496,"landsat:cloud_cover_land":59.99,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20181014_02_T1","bbox":[-125.00181720819123,36.39018487775056,-122.3343579793279,38.53525512224944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20181014_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20181014_20200830_02_T1/LC08_L2SP_045034_20181014_20200830_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46326827,38.5336531],[-122.3350436,38.12351099],[-122.87318863,36.39211306],[-124.99881397,36.80958812],[-124.46326827,38.5336531]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-10-14T18:52:05.729533Z","platform":"landsat-8","proj:bbox":[325485.0,4028985.0,558015.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":60.61,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018287LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":157.12642486,"view:sun_elevation":41.47203692,"landsat:cloud_cover_land":2.58,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20181007_02_T1","bbox":[-123.41203722516076,36.39721484974287,-120.77259800606869,38.52830515025713],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20181007_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20181007_20200830_02_T1/LC08_L2SP_044034_20181007_20200830_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91183233,38.52587494],[-120.7754916,38.14303911],[-121.2778016,36.40008743],[-123.41106509,36.7913611],[-122.91183233,38.52587494]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-10-07T18:45:52.099540Z","platform":"landsat-8","proj:bbox":[464085.0,4030185.0,694215.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.13,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018280LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":155.38953524,"view:sun_elevation":43.82626863,"landsat:cloud_cover_land":0.19,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20180928_02_T1","bbox":[-124.98462720856924,36.390454877260474,-122.317147978872,38.53515512273953],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20180928_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180928_20200830_02_T1/LC08_L2SP_045034_20180928_20200830_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44816937,38.53386455],[-122.32003201,38.12403512],[-122.85792173,36.39282788],[-124.98346152,36.81000006],[-124.44816937,38.53386455]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-09-28T18:51:58.557767Z","platform":"landsat-8","proj:bbox":[326985.0,4028985.0,559515.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":86.34,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018271LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":152.72405273,"view:sun_elevation":46.83560324,"landsat:cloud_cover_land":59.76,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20180921_02_T1","bbox":[-123.39482723041978,36.399614849672396,-120.75540800671232,38.5283651503276],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20180921_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180921_20200830_02_T1/LC08_L2SP_044034_20180921_20200830_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.89482209,38.52625515],[-120.7586103,38.1436186],[-121.26067944,36.40021263],[-123.39381138,36.79129271],[-122.89482209,38.52625515]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-09-21T18:45:43.801695Z","platform":"landsat-8","proj:bbox":[465585.0,4030485.0,695715.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":31.6,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018264LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":150.33296381,"view:sun_elevation":49.12600673,"landsat:cloud_cover_land":2.06,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20180912_02_T1","bbox":[-124.97774720871674,36.39056487706353,-122.31370797869847,38.53513512293647],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20180912_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180912_20200830_02_T1/LC08_L2SP_045034_20180912_20200830_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44195459,38.53341137],[-122.31415422,38.12372038],[-122.85203012,36.39251042],[-124.97723278,36.80954675],[-124.44195459,38.53341137]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-09-12T18:51:52.311114Z","platform":"landsat-8","proj:bbox":[327585.0,4028985.0,559815.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":41.72,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018255LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":146.9079117,"view:sun_elevation":51.95288771,"landsat:cloud_cover_land":38.9,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20180905_02_T1","bbox":[-123.40170722484429,36.397034849680686,-120.76228800643665,38.52834515031932],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20180905_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180905_20200831_02_T1/LC08_L2SP_044034_20180905_20200831_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.89914837,38.52592671],[-120.76329538,38.14322179],[-121.2655489,36.39989222],[-123.39831514,36.79103369],[-122.89914837,38.52592671]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-09-05T18:45:39.495392Z","platform":"landsat-8","proj:bbox":[464985.0,4030185.0,695115.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":44.96,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018248LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":144.01707535,"view:sun_elevation":54.03408077,"landsat:cloud_cover_land":17.45,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20180827_02_T1","bbox":[-124.98118720864342,36.39050487715648,-122.31370797877803,38.53513512284351],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20180827_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180827_20200831_02_T1/LC08_L2SP_045034_20180827_20200831_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44459602,38.53344183],[-122.31689367,38.12360973],[-122.85495922,36.39233603],[-124.98005672,36.80952213],[-124.44459602,38.53344183]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-08-27T18:51:47.187063Z","platform":"landsat-8","proj:bbox":[327285.0,4028985.0,559815.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":96.79,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018239LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":140.09992745,"view:sun_elevation":56.51555582,"landsat:cloud_cover_land":77.6,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20180820_02_T1","bbox":[-123.40170723063167,36.399734849712395,-120.76228800643665,38.528345150287606],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20180820_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180820_20200831_02_T1/LC08_L2SP_044034_20180820_20200831_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.89945483,38.52614671],[-120.76357102,38.14336415],[-121.26594531,36.40007782],[-123.39873754,36.79129624],[-122.89945483,38.52614671]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-08-20T18:45:33.316602Z","platform":"landsat-8","proj:bbox":[464985.0,4030485.0,695115.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":42.19,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018232LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":136.97682672,"view:sun_elevation":58.28300176,"landsat:cloud_cover_land":13.74,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20180811_02_T1","bbox":[-124.97774720872776,36.39056487706353,-122.31025797868423,38.53511512293647],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20180811_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180811_20200831_02_T1/LC08_L2SP_045034_20180811_20200831_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44140706,38.53342008],[-122.31357093,38.12358728],[-122.85165875,36.3924218],[-124.97688034,36.80960269],[-124.44140706,38.53342008]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-08-11T18:51:39.620065Z","platform":"landsat-8","proj:bbox":[327585.0,4028985.0,560115.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.08,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018223LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":133.02606095,"view:sun_elevation":60.33439973,"landsat:cloud_cover_land":0.54,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20180804_02_T1","bbox":[-123.39482722461419,36.396904849640755,-120.75540800671232,38.52836515035924],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20180804_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180804_20200831_02_T1/LC08_L2SP_044034_20180804_20200831_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.89435516,38.52587941],[-120.75824865,38.14312478],[-121.26051786,36.39971567],[-123.39353021,36.79090922],[-122.89435516,38.52587941]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-08-04T18:45:24.784387Z","platform":"landsat-8","proj:bbox":[465585.0,4030185.0,695715.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":29.31,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018216LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":130.11147618,"view:sun_elevation":61.75451409,"landsat:cloud_cover_land":1.85,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20180726_02_T1","bbox":[-124.97086720886412,36.390664876856626,-122.30337797851514,38.53507512314337],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20180726_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328185.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180726_20200831_02_T1/LC08_L2SP_045034_20180726_20200831_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.43275536,38.5334986],[-122.30463987,38.12374472],[-122.84257458,36.39274603],[-124.96807469,36.809854],[-124.43275536,38.5334986]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-07-26T18:51:29.872216Z","platform":"landsat-8","proj:bbox":[328185.0,4028985.0,560715.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":97.01,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018207LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":126.7550032,"view:sun_elevation":63.34785571,"landsat:cloud_cover_land":24.77,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20180719_02_T1","bbox":[-123.39482723041978,36.399614849672396,-120.75540800671232,38.5283651503276],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20180719_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180719_20200831_02_T1/LC08_L2SP_044034_20180719_20200831_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.89312368,38.52615011],[-120.75682017,38.14333264],[-121.25908858,36.39998592],[-123.39229552,36.79123923],[-122.89312368,38.52615011]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-07-19T18:45:16.612126Z","platform":"landsat-8","proj:bbox":[465585.0,4030485.0,695715.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":36.42,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018200LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":124.57571743,"view:sun_elevation":64.41085572,"landsat:cloud_cover_land":6.16,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20180710_02_T1","bbox":[-124.97774720872776,36.39056487706353,-122.31025797868423,38.53511512293647],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20180710_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180710_20200831_02_T1/LC08_L2SP_045034_20180710_20200831_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44139599,38.53358044],[-122.31316435,38.12357996],[-122.85136592,36.39254813],[-124.97697923,36.80989782],[-124.44139599,38.53358044]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-07-10T18:51:23.657712Z","platform":"landsat-8","proj:bbox":[327585.0,4028985.0,560115.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.57,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018191LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":122.5218656,"view:sun_elevation":65.54794617,"landsat:cloud_cover_land":0.81,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20180703_02_T1","bbox":[-123.40170723063167,36.399734849712395,-120.76228800643665,38.528345150287606],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20180703_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180703_20200831_02_T1/LC08_L2SP_044034_20180703_20200831_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.89910289,38.52620967],[-120.76270244,38.14328127],[-121.26511953,36.40018631],[-123.39842456,36.79154732],[-122.89910289,38.52620967]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-07-03T18:45:09.411330Z","platform":"landsat-8","proj:bbox":[464985.0,4030485.0,695115.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":35.74,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018184LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":121.59730414,"view:sun_elevation":66.2407398,"landsat:cloud_cover_land":18.26,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20180624_02_T1","bbox":[-124.98118720864342,36.39050487715648,-122.31370797877803,38.53513512284351],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20180624_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180624_20200831_02_T1/LC08_L2SP_045034_20180624_20200831_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44258195,38.53375842],[-122.31434702,38.12367731],[-122.85257742,36.39257332],[-124.97820903,36.81001349],[-124.44258195,38.53375842]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-06-24T18:51:15.194284Z","platform":"landsat-8","proj:bbox":[327285.0,4028985.0,559815.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":88.52,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018175LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":121.37073075,"view:sun_elevation":66.85734023,"landsat:cloud_cover_land":37.55,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20180617_02_T1","bbox":[-123.39826723052582,36.399674849691245,-120.75884800657437,38.528355150308755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20180617_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180617_20200831_02_T1/LC08_L2SP_044034_20180617_20200831_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.89660675,38.52621734],[-120.76022581,38.14328019],[-121.26259556,36.400005],[-123.39589179,36.79137841],[-122.89660675,38.52621734]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-06-17T18:44:59.906310Z","platform":"landsat-8","proj:bbox":[465285.0,4030485.0,695415.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":52.18,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018168LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":121.95905668,"view:sun_elevation":67.09744516,"landsat:cloud_cover_land":29.29,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20180608_02_T1","bbox":[-124.974307208796,36.390614876960065,-122.3068179786084,38.53509512303993],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20180608_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180608_20200831_02_T1/LC08_L2SP_045034_20180608_20200831_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.43551842,38.5335406],[-122.30739987,38.12364388],[-122.84545521,36.39259998],[-124.97097626,36.80986099],[-124.43551842,38.5335406]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-06-08T18:51:04.271480Z","platform":"landsat-8","proj:bbox":[327885.0,4028985.0,560415.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":67.88,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018159LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":123.62590028,"view:sun_elevation":67.05114887,"landsat:cloud_cover_land":13.79,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20180601_02_T1","bbox":[-123.40170723070928,36.39979484971239,-120.76571800635317,38.528345150287606],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20180601_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_SR_B1.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_SR_B2.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_SR_B3.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_SR_B4.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_SR_B5.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_SR_B6.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_SR_B7.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_ST_QA.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_ST_B10.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_ST_DRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_ST_EMIS.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_ST_EMSD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_ST_TRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_ST_URAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_ST_CDIST.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,464985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180601_20200831_02_T1/LC08_L2SP_044034_20180601_20200831_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90188422,38.52626617],[-120.76615832,38.14334358],[-121.26878193,36.40013537],[-123.40143042,36.7914832],[-122.90188422,38.52626617]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-06-01T18:44:51.919955Z","platform":"landsat-8","proj:bbox":[464985.0,4030485.0,694815.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.09,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018152LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":125.49034443,"view:sun_elevation":66.69809212,"landsat:cloud_cover_land":0.13,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20180523_02_T2","bbox":[-125.02933720755208,36.38974487857347,-122.36188798010424,38.53540512142653],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20180523_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180523_20200901_02_T2/LC08_L2SP_045034_20180523_20200901_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.49224825,38.53363801],[-122.36454397,38.12436364],[-122.90163071,36.3921149],[-125.02675568,36.80871505],[-124.49224825,38.53363801]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-05-23T18:51:09.828326Z","platform":"landsat-8","proj:bbox":[323085.0,4028985.0,555615.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":80.88,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018143LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":128.37313901,"view:sun_elevation":65.80506473,"landsat:cloud_cover_land":97.03,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20180516_02_T1","bbox":[-123.44987723208668,36.400574849981595,-120.8104980111345,38.5254651500184],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20180516_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_SR_B1.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_SR_B2.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_SR_B3.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_SR_B4.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_SR_B5.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_SR_B6.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_SR_B7.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_ST_QA.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_ST_B10.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_ST_DRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_ST_EMIS.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_ST_EMSD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_ST_TRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_ST_URAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_QA_PIXEL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_ST_ATRAN.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_ST_CDIST.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_QA_RADSAT.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,460785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180516_20200901_02_T1/LC08_L2SP_044034_20180516_20200901_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.94865452,38.52543537],[-120.81281494,38.14359951],[-121.31420631,36.40106045],[-123.44698507,36.79129553],[-122.94865452,38.52543537]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-05-16T18:45:04.534583Z","platform":"landsat-8","proj:bbox":[460785.0,4030485.0,690915.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":55.0,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018136LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":130.85380666,"view:sun_elevation":64.77070223,"landsat:cloud_cover_land":60.46,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20180507_02_T1","bbox":[-125.02589720761007,36.38979487846709,-122.3618879800238,38.535405121532904],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20180507_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180507_20200901_02_T1/LC08_L2SP_045034_20180507_20200901_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.49122753,38.53408684],[-122.3634175,38.12482291],[-122.90052468,36.39268495],[-125.02575447,36.80926628],[-124.49122753,38.53408684]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-05-07T18:51:21.600608Z","platform":"landsat-8","proj:bbox":[323385.0,4028985.0,555615.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":19.35,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018127LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":134.00362414,"view:sun_elevation":62.98385558,"landsat:cloud_cover_land":0.06,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20180430_02_T1","bbox":[-123.44299723188382,36.400454849936885,-120.80362801135975,38.525495150063115],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20180430_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_SR_B1.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_SR_B2.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_SR_B3.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_SR_B4.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_SR_B5.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_SR_B6.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_SR_B7.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_ST_QA.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_ST_B10.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461385.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_ST_DRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_ST_EMIS.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_ST_EMSD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_ST_TRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_ST_URAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_QA_PIXEL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_ST_ATRAN.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_ST_CDIST.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_QA_RADSAT.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,461385.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180430_20200901_02_T1/LC08_L2SP_044034_20180430_20200901_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.94258045,38.52535809],[-120.80660927,38.14352829],[-121.30790087,36.40082858],[-123.44079735,36.79105525],[-122.94258045,38.52535809]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-04-30T18:45:15.022819Z","platform":"landsat-8","proj:bbox":[461385.0,4030485.0,691515.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":54.24,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018120LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":136.28776328,"view:sun_elevation":61.25571205,"landsat:cloud_cover_land":72.82,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20180421_02_T1","bbox":[-125.01557720786055,36.38996487816056,-122.35156797973325,38.535345121839434],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20180421_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180421_20200901_02_T1/LC08_L2SP_045034_20180421_20200901_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.480285,38.53357379],[-122.35224747,38.12447051],[-122.88915474,36.39249703],[-125.01460409,36.80893204],[-124.480285,38.53357379]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-04-21T18:51:30.534124Z","platform":"landsat-8","proj:bbox":[324285.0,4028985.0,556515.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.06,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018111LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":138.91456739,"view:sun_elevation":58.65519974,"landsat:cloud_cover_land":0.19,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20180414_02_T1","bbox":[-123.43266723157255,36.40027484986972,-120.79330801174102,38.52553515013028],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20180414_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_SR_B1.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_SR_B2.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_SR_B3.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_SR_B4.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_SR_B5.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_SR_B6.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_SR_B7.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_ST_QA.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_ST_B10.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_ST_DRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_ST_EMIS.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_ST_EMSD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_ST_TRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_ST_URAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_QA_PIXEL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_ST_ATRAN.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_ST_CDIST.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_QA_RADSAT.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180414_20200901_02_T1/LC08_L2SP_044034_20180414_20200901_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.93209549,38.52524218],[-120.79594006,38.14343431],[-121.29711451,36.40059522],[-123.43019265,36.79081079],[-122.93209549,38.52524218]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-04-14T18:45:23.960441Z","platform":"landsat-8","proj:bbox":[462285.0,4030485.0,692415.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.06,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018104LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":140.71345622,"view:sun_elevation":56.38203379,"landsat:cloud_cover_land":0.08,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20180405_02_T2","bbox":[-125.0121372079436,36.390014878065585,-122.34467797961499,38.53531512193441],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20180405_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180405_20200901_02_T2/LC08_L2SP_045034_20180405_20200901_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.47476576,38.53353267],[-122.34656688,38.12441293],[-122.88340824,36.39254446],[-125.0090142,36.80899334],[-124.47476576,38.53353267]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-04-05T18:51:40.068838Z","platform":"landsat-8","proj:bbox":[324585.0,4028985.0,557115.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018095LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":142.71752454,"view:sun_elevation":53.21380603,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20180329_02_T1","bbox":[-123.42579723136413,36.40015484985637,-120.78634800556698,38.52825515014363],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20180329_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180329_20200901_02_T1/LC08_L2SP_044034_20180329_20200901_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.92470995,38.52555452],[-120.78832926,38.14377172],[-121.2894311,36.40086089],[-123.42274209,36.79105165],[-122.92470995,38.52555452]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-03-29T18:45:32.788286Z","platform":"landsat-8","proj:bbox":[462885.0,4030485.0,693015.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.07,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018088LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":144.08207138,"view:sun_elevation":50.60986732,"landsat:cloud_cover_land":0.11,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20180320_02_T2","bbox":[-124.99837720824885,36.39023487765625,-122.33435797924795,38.53525512234375],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20180320_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180320_20200901_02_T2/LC08_L2SP_045034_20180320_20200901_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46353534,38.533471],[-122.33522062,38.12449101],[-122.87192662,36.39284751],[-124.99764859,36.80916357],[-124.46353534,38.533471]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-03-20T18:51:47.393569Z","platform":"landsat-8","proj:bbox":[325785.0,4028985.0,558015.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018079LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":145.65196295,"view:sun_elevation":47.1679474,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20180313_02_T2","bbox":[-123.4120172310257,36.399974849742485,-120.77611801239071,38.52560515025751],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20180313_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_SR_B1.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_SR_B2.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_SR_B3.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_SR_B4.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_SR_B5.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_SR_B6.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_SR_B7.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_ST_QA.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_ST_B10.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_ST_DRAD.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_ST_EMIS.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_ST_EMSD.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_ST_TRAD.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_ST_URAD.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_QA_PIXEL.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_ST_ATRAN.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_ST_CDIST.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_QA_RADSAT.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180313_20200901_02_T2/LC08_L2SP_044034_20180313_20200901_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91289636,38.52527863],[-120.77661102,38.14359951],[-121.27756812,36.40043926],[-123.41077944,36.7905379],[-122.91289636,38.52527863]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-03-13T18:45:39.558494Z","platform":"landsat-8","proj:bbox":[464085.0,4030485.0,693915.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":91.21,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018072LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":146.78604767,"view:sun_elevation":44.47176076,"landsat:cloud_cover_land":99.35,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20180304_02_T1","bbox":[-124.99837720826076,36.39023487765625,-122.33090797923263,38.53523512234375],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20180304_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180304_20200902_02_T1/LC08_L2SP_045034_20180304_20200902_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46103344,38.53316245],[-122.33286823,38.12415998],[-122.86968728,36.39249526],[-124.99525333,36.80883434],[-124.46103344,38.53316245]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-03-04T18:51:55.837178Z","platform":"landsat-8","proj:bbox":[325785.0,4028985.0,558315.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":3.37,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018063LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":148.16983181,"view:sun_elevation":41.06425961,"landsat:cloud_cover_land":17.66,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20180225_02_T1","bbox":[-123.41545723105337,36.39997484976218,-120.77611801235737,38.52559515023782],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20180225_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_SR_B1.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_SR_B2.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_SR_B3.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_SR_B4.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_SR_B5.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_SR_B6.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_SR_B7.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_ST_QA.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_ST_B10.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_ST_DRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_ST_EMIS.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_ST_EMSD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_ST_TRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_ST_URAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_QA_PIXEL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_ST_ATRAN.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_ST_CDIST.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_QA_RADSAT.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180225_20200902_02_T1/LC08_L2SP_044034_20180225_20200902_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91556763,38.52545213],[-120.77942493,38.14362299],[-121.28060254,36.40050627],[-123.4136749,36.79075435],[-122.91556763,38.52545213]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-02-25T18:45:48.662782Z","platform":"landsat-8","proj:bbox":[463785.0,4030485.0,693915.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.03,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018056LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":149.2297003,"view:sun_elevation":38.51247611,"landsat:cloud_cover_land":0.05,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20180216_02_T1","bbox":[-124.99494720834626,36.390294877562646,-122.32746797915543,38.53521512243736],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20180216_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180216_20200902_02_T1/LC08_L2SP_045034_20180216_20200902_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45930401,38.53363436],[-122.33125142,38.12453072],[-122.86824518,36.39290492],[-124.99370226,36.80935221],[-124.45930401,38.53363436]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-02-16T18:52:03.431096Z","platform":"landsat-8","proj:bbox":[326085.0,4028985.0,558615.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.58,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018047LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":150.60517352,"view:sun_elevation":35.44231054,"landsat:cloud_cover_land":0.09,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20180209_02_T1","bbox":[-123.41203723094817,36.39991484977468,-120.77259800606869,38.52830515022532],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20180209_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180209_20200902_02_T1/LC08_L2SP_044034_20180209_20200902_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91166067,38.52578995],[-120.77548624,38.14394108],[-121.27670551,36.40070301],[-123.40980161,36.79097472],[-122.91166067,38.52578995]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-02-09T18:45:55.013088Z","platform":"landsat-8","proj:bbox":[464085.0,4030485.0,694215.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.41,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018040LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":151.70010172,"view:sun_elevation":33.26714643,"landsat:cloud_cover_land":0.61,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20180131_02_T1","bbox":[-124.98806720847297,36.390394877364265,-122.32402797898094,38.535195122635734],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20180131_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180131_20200902_02_T1/LC08_L2SP_045034_20180131_20200902_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.4527229,38.53362268],[-122.32478892,38.12455626],[-122.86176689,36.392998],[-124.98710372,36.80941458],[-124.4527229,38.53362268]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-01-31T18:52:08.617499Z","platform":"landsat-8","proj:bbox":[326685.0,4028985.0,558915.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.01,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018031LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":153.13418167,"view:sun_elevation":30.81794516,"landsat:cloud_cover_land":0.12,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20180124_02_T1","bbox":[-123.41889722536743,36.39733484975226,-120.77955801224093,38.525585150247736],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20180124_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180124_20200902_02_T1/LC08_L2SP_044034_20180124_20200902_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91815163,38.52534915],[-120.78215592,38.14327232],[-121.28358094,36.40023891],[-123.41649083,36.79072787],[-122.91815163,38.52534915]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-01-24T18:46:02.445770Z","platform":"landsat-8","proj:bbox":[463485.0,4030185.0,693615.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":92.85,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018024LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":154.26710173,"view:sun_elevation":29.22391647,"landsat:cloud_cover_land":90.17,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20180115_02_T1","bbox":[-125.00869720802997,36.39007487796052,-122.34123797951904,38.53529512203948],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20180115_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/045/034/LC08_L2SP_045034_20180115_20200902_02_T1/LC08_L2SP_045034_20180115_20200902_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.47064939,38.53366976],[-122.3427444,38.1240516],[-122.88025062,36.39228372],[-125.0055558,36.80924021],[-124.47064939,38.53366976]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-01-15T18:52:18.414407Z","platform":"landsat-8","proj:bbox":[324885.0,4028985.0,557415.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":98.43,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342018015LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":155.73026076,"view:sun_elevation":27.63313601,"landsat:cloud_cover_land":98.3,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20180108_02_T2","bbox":[-123.43268723157254,36.40027484990179,-120.79322800531558,38.52823515009821],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20180108_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/044/034/LC08_L2SP_044034_20180108_20200902_02_T2/LC08_L2SP_044034_20180108_20200902_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.93266732,38.5257846],[-120.79649225,38.14344314],[-121.29840776,36.40078373],[-123.43149601,36.79152279],[-122.93266732,38.5257846]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-01-08T18:46:10.916791Z","platform":"landsat-8","proj:bbox":[462285.0,4030485.0,692415.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342018008LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":156.84068256,"view:sun_elevation":26.77665174,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20171230_02_T1","bbox":[-125.01901720778645,36.389904878265995,-122.35156797981351,38.535345121734004],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20171230_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171230_20200902_02_T1/LC08_L2SP_045034_20171230_20200902_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.48032633,38.53412152],[-122.3523139,38.12416459],[-122.89019674,36.39233376],[-125.0156081,36.80961934],[-124.48032633,38.53412152]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-12-30T18:52:25.188223Z","platform":"landsat-8","proj:bbox":[323985.0,4028985.0,556515.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":76.1,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017364LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":158.18582141,"view:sun_elevation":26.19535428,"landsat:cloud_cover_land":99.96,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20171223_02_T1","bbox":[-123.43956722598924,36.3976948499133,-120.80010800506912,38.5282051500867],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20171223_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171223_20200902_02_T1/LC08_L2SP_044034_20171223_20200902_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.93908131,38.52567796],[-120.80279882,38.14310816],[-121.30494028,36.4006623],[-123.43814331,36.79163389],[-122.93908131,38.52567796]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-12-23T18:46:16.352982Z","platform":"landsat-8","proj:bbox":[461685.0,4030185.0,691815.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":68.54,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017357LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":159.13166877,"view:sun_elevation":26.15337922,"landsat:cloud_cover_land":75.93,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20171214_02_T1","bbox":[-125.00525720809995,36.39012487785525,-122.33779797942334,38.535275122144746],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20171214_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171214_20200902_02_T1/LC08_L2SP_045034_20171214_20200902_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46898445,38.53367472],[-122.34068778,38.12383451],[-122.87836789,36.39225484],[-125.00406771,36.80943873],[-124.46898445,38.53367472]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-12-14T18:52:25.824519Z","platform":"landsat-8","proj:bbox":[325185.0,4028985.0,557715.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":31.47,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017348LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":160.16858124,"view:sun_elevation":26.62402529,"landsat:cloud_cover_land":0.28,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20171207_02_T1","bbox":[-123.41545722526247,36.39727484973243,-120.77611801235737,38.52559515026757],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20171207_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171207_20200902_02_T1/LC08_L2SP_044034_20171207_20200902_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91447218,38.52545355],[-120.77817035,38.14321772],[-121.2798401,36.40015799],[-123.41306205,36.79082542],[-122.91447218,38.52545355]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-12-07T18:46:13.485374Z","platform":"landsat-8","proj:bbox":[463785.0,4030185.0,693915.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.24,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017341LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":160.78650862,"view:sun_elevation":27.37906261,"landsat:cloud_cover_land":0.37,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20171128_02_T1","bbox":[-124.99150720841546,36.3903448774581,-122.3240279790607,38.5351951225419],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20171128_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171128_20200902_02_T1/LC08_L2SP_045034_20171128_20200902_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45373423,38.53376674],[-122.32573896,38.12429512],[-122.86317239,36.39279792],[-124.98856902,36.80962152],[-124.45373423,38.53376674]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-11-28T18:52:24.600081Z","platform":"landsat-8","proj:bbox":[326385.0,4028985.0,558915.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":37.63,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017332LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":161.28791592,"view:sun_elevation":28.81212996,"landsat:cloud_cover_land":2.37,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20171121_02_T1","bbox":[-123.41891723123564,36.40009484981643,-120.78291800571225,38.528285150183564],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20171121_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_SR_B1.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_SR_B2.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_SR_B3.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_SR_B4.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_SR_B5.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_SR_B6.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_SR_B7.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_ST_QA.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_ST_B10.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_ST_DRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_ST_EMIS.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_ST_EMSD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_ST_TRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_ST_URAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_ST_CDIST.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171121_20200902_02_T1/LC08_L2SP_044034_20171121_20200902_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.919893,38.52572395],[-120.78383785,38.14334961],[-121.28579091,36.40044492],[-123.41876629,36.79123619],[-122.919893,38.52572395]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-11-21T18:46:17.175752Z","platform":"landsat-8","proj:bbox":[463485.0,4030485.0,693315.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":31.86,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017325LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":161.41892683,"view:sun_elevation":30.25582806,"landsat:cloud_cover_land":45.84,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20171112_02_T1","bbox":[-125.0121372079436,36.390014878065585,-122.34467797961499,38.53531512193441],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20171112_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171112_20200902_02_T1/LC08_L2SP_045034_20171112_20200902_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.47447244,38.53381261],[-122.34670202,38.12387351],[-122.88472648,36.3921243],[-125.00990644,36.80939483],[-124.47447244,38.53381261]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-11-12T18:52:31.134707Z","platform":"landsat-8","proj:bbox":[324585.0,4028985.0,557115.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":9.46,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017316LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":161.21344501,"view:sun_elevation":32.47044479,"landsat:cloud_cover_land":2.43,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20171105_02_T1","bbox":[-123.43612722588544,36.3976348498926,-120.79666800518032,38.5282251501074],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20171105_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171105_20200902_02_T1/LC08_L2SP_044034_20171105_20200902_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.93450107,38.52552517],[-120.79856754,38.14284779],[-121.300968,36.40028059],[-123.4338268,36.79136757],[-122.93450107,38.52552517]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-11-05T18:46:21.961004Z","platform":"landsat-8","proj:bbox":[461985.0,4030185.0,692115.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":8.6,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017309LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":160.73528141,"view:sun_elevation":34.42585574,"landsat:cloud_cover_land":7.62,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20171027_02_T1","bbox":[-125.01901720778645,36.389904878265995,-122.35156797981351,38.535345121734004],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20171027_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171027_20200902_02_T1/LC08_L2SP_045034_20171027_20200902_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.48279259,38.53394732],[-122.35503996,38.12376875],[-122.89329692,36.39194399],[-125.01845481,36.80945001],[-124.48279259,38.53394732]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-10-27T18:52:33.750597Z","platform":"landsat-8","proj:bbox":[323985.0,4028985.0,556515.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":94.57,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017300LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":159.68866581,"view:sun_elevation":37.16585953,"landsat:cloud_cover_land":4.53,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20171020_02_T1","bbox":[-123.43612722588544,36.3976348498926,-120.79666800518032,38.5282251501074],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20171020_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,461985.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171020_20200902_02_T1/LC08_L2SP_044034_20171020_20200902_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.93641101,38.52552285],[-120.80042659,38.14271185],[-121.30299605,36.40019571],[-123.43589871,36.79140299],[-122.93641101,38.52552285]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-10-20T18:46:22.848948Z","platform":"landsat-8","proj:bbox":[461985.0,4030185.0,692115.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":77.57,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017293LGN01","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":158.53543137,"view:sun_elevation":39.42913111,"landsat:cloud_cover_land":79.42,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20171011_02_T1","bbox":[-125.01557720787322,36.38996487816056,-122.34811797971119,38.53533512183944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20171011_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20171011_20200903_02_T1/LC08_L2SP_045034_20171011_20200903_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.47834902,38.53390035],[-122.35046068,38.12373851],[-122.88866116,36.3919982],[-125.01395108,36.80948834],[-124.47834902,38.53390035]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-10-11T18:52:32.478493Z","platform":"landsat-8","proj:bbox":[324285.0,4028985.0,556815.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":4.64,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017284LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":156.60516126,"view:sun_elevation":42.42822534,"landsat:cloud_cover_land":1.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20171004_02_T1","bbox":[-123.42924722568097,36.39751484984929,-120.78978800543115,38.52824515015071],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20171004_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20171004_20200903_02_T1/LC08_L2SP_044034_20171004_20200903_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.92683439,38.52558142],[-120.79066954,38.14278854],[-121.29310671,36.40012478],[-123.42618331,36.79133028],[-122.92683439,38.52558142]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-10-04T18:46:19.975293Z","platform":"landsat-8","proj:bbox":[462585.0,4030185.0,692715.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":4.25,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017277LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":154.75850249,"view:sun_elevation":44.78642947,"landsat:cloud_cover_land":0.11,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20170925_02_T1","bbox":[-124.99837720826076,36.39023487765625,-122.33090797923263,38.53523512234375],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20170925_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325785.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170925_20200903_02_T1/LC08_L2SP_045034_20170925_20200903_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46225732,38.5336252],[-122.33412352,38.12371744],[-122.87206302,36.39228514],[-124.99758906,36.80953471],[-124.46225732,38.5336252]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-09-25T18:52:27.499562Z","platform":"landsat-8","proj:bbox":[325785.0,4028985.0,558315.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":3.19,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017268LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":151.96304772,"view:sun_elevation":47.78391551,"landsat:cloud_cover_land":0.1,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20170918_02_T1","bbox":[-123.40514723073743,36.39979484973156,-120.76571800631922,38.52833515026843],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20170918_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170918_20200903_02_T1/LC08_L2SP_044034_20170918_20200903_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90580198,38.52592402],[-120.76942553,38.14330731],[-121.27147959,36.40022933],[-123.4047672,36.79128058],[-122.90580198,38.52592402]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-09-18T18:46:13.277155Z","platform":"landsat-8","proj:bbox":[464685.0,4030485.0,694815.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":48.51,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017261LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":149.49024396,"view:sun_elevation":50.05613022,"landsat:cloud_cover_land":25.4,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20170909_02_T1","bbox":[-124.98462720856924,36.390454877260474,-122.317147978872,38.53515512273953],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20170909_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170909_20200903_02_T1/LC08_L2SP_045034_20170909_20200903_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44889253,38.53337834],[-122.3206347,38.12368122],[-122.85834622,36.39242147],[-124.98399647,36.80946436],[-124.44889253,38.53337834]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-09-09T18:52:22.180406Z","platform":"landsat-8","proj:bbox":[326985.0,4028985.0,559515.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":73.47,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017252LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":145.97349107,"view:sun_elevation":52.84135527,"landsat:cloud_cover_land":34.15,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20170902_02_T1","bbox":[-123.40859723084289,36.39985484975308,-120.76915800618187,38.52832515024692],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20170902_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170902_20200903_02_T1/LC08_L2SP_044034_20170902_20200903_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90828543,38.52614124],[-120.77190563,38.14341865],[-121.27408684,36.40038843],[-123.40738533,36.79152989],[-122.90828543,38.52614124]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-09-02T18:46:11.153690Z","platform":"landsat-8","proj:bbox":[464385.0,4030485.0,694515.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":3.56,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017245LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":143.02699716,"view:sun_elevation":54.87760466,"landsat:cloud_cover_land":0.12,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20170824_02_T1","bbox":[-124.99494720834626,36.390294877562646,-122.32746797915543,38.53521512243736],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20170824_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170824_20200903_02_T1/LC08_L2SP_045034_20170824_20200903_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45618904,38.5337149],[-122.32800278,38.12377415],[-122.86600283,36.39241338],[-124.99159181,36.80970225],[-124.45618904,38.5337149]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-08-24T18:52:20.743634Z","platform":"landsat-8","proj:bbox":[326085.0,4028985.0,558615.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":88.15,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017236LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":139.08031068,"view:sun_elevation":57.29868791,"landsat:cloud_cover_land":34.74,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20170817_02_T1","bbox":[-123.41203723094817,36.39991484977468,-120.77259800606869,38.52830515022532],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20170817_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170817_20200903_02_T1/LC08_L2SP_044034_20170817_20200903_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91170057,38.52598335],[-120.7754395,38.14317311],[-121.27774357,36.40023097],[-123.41092795,36.79146513],[-122.91170057,38.52598335]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-08-17T18:46:08.293574Z","platform":"landsat-8","proj:bbox":[464085.0,4030485.0,694215.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":34.37,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017229LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":135.9747644,"view:sun_elevation":59.01824289,"landsat:cloud_cover_land":4.47,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20170808_02_T1","bbox":[-124.99150720841546,36.3903448774581,-122.3240279790607,38.5351951225419],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20170808_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170808_20200903_02_T1/LC08_L2SP_045034_20170808_20200903_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45477988,38.53389232],[-122.32679281,38.12394103],[-122.864887,36.39260519],[-124.99027819,36.80990477],[-124.45477988,38.53389232]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-08-08T18:52:16.334199Z","platform":"landsat-8","proj:bbox":[326385.0,4028985.0,558915.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":98.04,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017220LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":132.08714402,"view:sun_elevation":60.99879862,"landsat:cloud_cover_land":49.45,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20170801_02_T1","bbox":[-123.40859723084289,36.39985484975308,-120.76915800618187,38.52832515024692],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20170801_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170801_20200903_02_T1/LC08_L2SP_044034_20170801_20200903_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90763836,38.5259689],[-120.7715789,38.14323086],[-121.27384192,36.40014481],[-123.40682406,36.79131597],[-122.90763836,38.5259689]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-08-01T18:46:02.800724Z","platform":"landsat-8","proj:bbox":[464385.0,4030485.0,694515.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":29.93,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017213LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":129.26373446,"view:sun_elevation":62.36199943,"landsat:cloud_cover_land":1.21,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20170723_02_T1","bbox":[-124.98462720856924,36.390454877260474,-122.317147978872,38.53515512273953],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20170723_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170723_20200903_02_T1/LC08_L2SP_045034_20170723_20200903_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44687109,38.53336019],[-122.3190487,38.12359891],[-122.85702668,36.39229617],[-124.98224891,36.8094065],[-124.44687109,38.53336019]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-07-23T18:52:09.533708Z","platform":"landsat-8","proj:bbox":[326985.0,4028985.0,559515.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":94.78,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017204LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":126.09504306,"view:sun_elevation":63.88827307,"landsat:cloud_cover_land":7.96,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20170716_02_T1","bbox":[-123.39826722473845,36.39697484966169,-120.75884800657437,38.52835515033831],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20170716_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170716_20200903_02_T1/LC08_L2SP_044034_20170716_20200903_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.89711425,38.52589475],[-120.76117643,38.14332543],[-121.26326093,36.39994614],[-123.39611201,36.79095086],[-122.89711425,38.52589475]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-07-16T18:45:54.988467Z","platform":"landsat-8","proj:bbox":[465285.0,4030185.0,695415.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.37,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017197LGN01","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":124.11113998,"view:sun_elevation":64.89812239,"landsat:cloud_cover_land":0.55,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20170707_02_T1","bbox":[-124.98118720864342,36.39050487715648,-122.31370797877803,38.53513512284351],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20170707_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,327285.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170707_20201016_02_T1/LC08_L2SP_045034_20170707_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44419316,38.5334659],[-122.31665266,38.12378678],[-122.8546339,36.39243627],[-124.9795763,36.80947219],[-124.44419316,38.5334659]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-07-07T18:52:03.356517Z","platform":"landsat-8","proj:bbox":[327285.0,4028985.0,559815.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":2.97,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017188LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":122.34770911,"view:sun_elevation":65.95569994,"landsat:cloud_cover_land":1.61,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20170630_02_T1","bbox":[-123.40859723084289,36.39985484975308,-120.76915800618187,38.52832515024692],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20170630_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170630_20200903_02_T1/LC08_L2SP_044034_20170630_20200903_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90592753,38.52627228],[-120.77020549,38.14356889],[-121.2725418,36.40032157],[-123.40517731,36.79145607],[-122.90592753,38.52627228]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-06-30T18:45:51.335943Z","platform":"landsat-8","proj:bbox":[464385.0,4030485.0,694515.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":38.77,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017181LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":121.68365552,"view:sun_elevation":66.58124965,"landsat:cloud_cover_land":8.56,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20170621_02_T1","bbox":[-124.99150720840387,36.3903448774581,-122.32746797907559,38.5352151225419],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20170621_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170621_20200903_02_T1/LC08_L2SP_045034_20170621_20200903_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45565593,38.53360272],[-122.32799964,38.12360527],[-122.86630022,36.39220414],[-124.99134969,36.8095402],[-124.45565593,38.53360272]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-06-21T18:51:59.965503Z","platform":"landsat-8","proj:bbox":[326385.0,4028985.0,558615.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":31.81,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017172LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":121.82045031,"view:sun_elevation":67.10380173,"landsat:cloud_cover_land":5.14,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20170614_02_T1","bbox":[-123.41547723105337,36.399974849794354,-120.77603800593198,38.52829515020564],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20170614_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463785.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170614_20200903_02_T1/LC08_L2SP_044034_20170614_20200903_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91404635,38.52612589],[-120.77813971,38.14323517],[-121.28064806,36.40027632],[-123.41346429,36.79158759],[-122.91404635,38.52612589]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-06-14T18:45:46.873022Z","platform":"landsat-8","proj:bbox":[463785.0,4030485.0,693915.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.09,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017165LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":122.67840712,"view:sun_elevation":67.25507434,"landsat:cloud_cover_land":0.11,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20170605_02_T1","bbox":[-124.99494720834626,36.390294877562646,-122.32746797915543,38.53521512243736],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20170605_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170605_20200903_02_T1/LC08_L2SP_045034_20170605_20200903_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45769401,38.53407062],[-122.32977856,38.12391904],[-122.86814095,36.39255502],[-124.99344285,36.81004838],[-124.45769401,38.53407062]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-06-05T18:51:54.000581Z","platform":"landsat-8","proj:bbox":[326085.0,4028985.0,558615.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":11.15,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017156LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":124.62925047,"view:sun_elevation":67.07233329,"landsat:cloud_cover_land":1.71,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20170529_02_T1","bbox":[-123.41203722516076,36.39721484974287,-120.77259800606869,38.52830515025713],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20170529_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464085.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170529_20200903_02_T1/LC08_L2SP_044034_20170529_20200903_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91211588,38.52604453],[-120.77585749,38.14309277],[-121.2783527,36.40010596],[-123.41151887,36.79148496],[-122.91211588,38.52604453]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-05-29T18:45:39.760883Z","platform":"landsat-8","proj:bbox":[464085.0,4030185.0,694215.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":61.78,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017149LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":126.66097941,"view:sun_elevation":66.60278486,"landsat:cloud_cover_land":40.69,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20170520_02_T1","bbox":[-124.98806720848447,36.390394877364265,-122.32058797896623,38.535175122635735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20170520_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170520_20200904_02_T1/LC08_L2SP_045034_20170520_20200904_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.4501868,38.53385041],[-122.32194115,38.1238082],[-122.8601218,36.39261081],[-124.98575795,36.80999878],[-124.4501868,38.53385041]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-05-20T18:51:45.202484Z","platform":"landsat-8","proj:bbox":[326685.0,4028985.0,559215.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":72.02,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017140LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":129.66253361,"view:sun_elevation":65.54841524,"landsat:cloud_cover_land":3.65,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20170513_02_T1","bbox":[-123.39826722473845,36.39697484966169,-120.75884800657437,38.52835515033831],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20170513_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,465285.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170513_20200904_02_T1/LC08_L2SP_044034_20170513_20200904_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.89896086,38.52581288],[-120.76250725,38.14297605],[-121.26480072,36.39983419],[-123.39817,36.79109731],[-122.89896086,38.52581288]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-05-13T18:45:29.533057Z","platform":"landsat-8","proj:bbox":[465285.0,4030185.0,695415.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.5,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017133LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":132.08644562,"view:sun_elevation":64.36398287,"landsat:cloud_cover_land":0.75,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20170504_02_T1","bbox":[-124.96742720894773,36.390724876764175,-122.29993797842214,38.53505512323583],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20170504_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328485.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,328485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170504_20200904_02_T1/LC08_L2SP_045034_20170504_20200904_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.43073179,38.53348261],[-122.30235958,38.12378254],[-122.84014868,36.39292544],[-124.96591681,36.80997976],[-124.43073179,38.53348261]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-05-04T18:51:33.321517Z","platform":"landsat-8","proj:bbox":[328485.0,4028985.0,561015.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":87.69,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017124LGN01","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":135.09004354,"view:sun_elevation":62.39288404,"landsat:cloud_cover_land":17.18,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20170427_02_T1","bbox":[-123.40514722495003,36.397094849699826,-120.76571800631922,38.52833515030017],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20170427_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170427_20200904_02_T1/LC08_L2SP_044034_20170427_20200904_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90421958,38.52583262],[-120.76827874,38.14296817],[-121.27081105,36.39985876],[-123.40367233,36.79115129],[-122.90421958,38.52583262]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-04-27T18:45:23.348096Z","platform":"landsat-8","proj:bbox":[464685.0,4030185.0,694815.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":9.82,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017117LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":137.23892738,"view:sun_elevation":60.53619015,"landsat:cloud_cover_land":8.86,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20170418_02_T1","bbox":[-125.02245720771043,36.389854878372006,-122.35500797991017,38.53536512162799],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20170418_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170418_20200904_02_T1/LC08_L2SP_045034_20170418_20200904_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.48518159,38.5336697],[-122.35717251,38.12438427],[-122.89420361,36.39231581],[-125.0196314,36.8089302],[-124.48518159,38.5336697]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-04-18T18:51:40.726545Z","platform":"landsat-8","proj:bbox":[323685.0,4028985.0,556215.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":19.28,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017108LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":139.70203876,"view:sun_elevation":57.8002319,"landsat:cloud_cover_land":39.05,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20170411_02_T2","bbox":[-123.43954722598923,36.39769484988126,-120.80018801149458,38.52550515011874],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20170411_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,461685.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170411_20200904_02_T2/LC08_L2SP_044034_20170411_20200904_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.93790154,38.52515788],[-120.80180394,38.14330797],[-121.30312708,36.4006481],[-123.43615543,36.79090054],[-122.93790154,38.52515788]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-04-11T18:45:34.139371Z","platform":"landsat-8","proj:bbox":[461685.0,4030185.0,691815.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":97.97,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017101LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":141.40587056,"view:sun_elevation":55.45218368,"landsat:cloud_cover_land":98.12,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20170402_02_T1","bbox":[-125.012137207931,36.390014878065585,-122.34811797963098,38.535335121934416],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20170402_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170402_20200904_02_T1/LC08_L2SP_045034_20170402_20200904_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.47764097,38.53350975],[-122.34962362,38.12433064],[-122.88662029,36.39246708],[-125.01205142,36.80897452],[-124.47764097,38.53350975]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-04-02T18:51:49.440140Z","platform":"landsat-8","proj:bbox":[324585.0,4028985.0,556815.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":24.76,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017092LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":143.31000553,"view:sun_elevation":52.21368468,"landsat:cloud_cover_land":1.13,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20170326_02_T1","bbox":[-123.42578723136413,36.40015484982653,-120.7864380119924,38.52555515017347],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20170326_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_SR_B1.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_SR_B2.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_SR_B3.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_SR_B4.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_SR_B5.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_SR_B6.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_SR_B7.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_ST_QA.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_ST_B10.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_ST_DRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_ST_EMIS.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_ST_EMSD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_ST_TRAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_ST_URAD.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_QA_PIXEL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_ST_ATRAN.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_ST_CDIST.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_QA_RADSAT.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7791,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170326_20200904_02_T1/LC08_L2SP_044034_20170326_20200904_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.92516361,38.52543173],[-120.7890551,38.14363983],[-121.29020865,36.40063069],[-123.42324759,36.79084274],[-122.92516361,38.52543173]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-03-26T18:45:41.320462Z","platform":"landsat-8","proj:bbox":[462885.0,4030485.0,693015.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":80.85,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017085LGN01","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":144.62381915,"view:sun_elevation":49.57663585,"landsat:cloud_cover_land":83.67,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20170317_02_T1","bbox":[-125.00525720808774,36.39012487785525,-122.34123797943896,38.535295122144746],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20170317_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170317_20200904_02_T1/LC08_L2SP_045034_20170317_20200904_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.47021084,38.53386101],[-122.34229793,38.12478135],[-122.87922838,36.39292496],[-125.00454845,36.80933206],[-124.47021084,38.53386101]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-03-17T18:51:57.278520Z","platform":"landsat-8","proj:bbox":[325185.0,4028985.0,557415.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.06,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017076LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":146.14485288,"view:sun_elevation":46.11826728,"landsat:cloud_cover_land":0.07,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20170310_02_T1","bbox":[-123.42578723144143,36.40021484982653,-120.78987801188924,38.52555515017347],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20170310_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_SR_B1.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_SR_B2.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_SR_B3.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_SR_B4.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_SR_B5.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_SR_B6.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_SR_B7.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_ST_QA.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_ST_B10.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_ST_DRAD.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_ST_EMIS.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_ST_EMSD.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_ST_TRAD.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_ST_URAD.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_QA_PIXEL.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_ST_ATRAN.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_ST_CDIST.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_QA_RADSAT.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7791,7661],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170310_20200904_02_T1/LC08_L2SP_044034_20170310_20200904_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.92665603,38.52552271],[-120.79066548,38.14357375],[-121.29198565,36.40064016],[-123.4248972,36.79100262],[-122.92665603,38.52552271]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-03-10T18:45:50.951129Z","platform":"landsat-8","proj:bbox":[462885.0,4030485.0,692715.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":96.79,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017069LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":147.24832123,"view:sun_elevation":43.42911001,"landsat:cloud_cover_land":99.18,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20170301_02_T1","bbox":[-125.00869720801755,36.39007487796052,-122.34467797953484,38.53531512203948],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20170301_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_SR_B1.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_SR_B2.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_SR_B3.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_SR_B4.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_SR_B5.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_SR_B6.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_SR_B7.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_ST_QA.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_ST_B10.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_ST_DRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_ST_EMIS.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_ST_EMSD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_ST_TRAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_ST_URAD.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_ST_CDIST.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7741],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170301_20200905_02_T1/LC08_L2SP_045034_20170301_20200905_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.47349921,38.53363627],[-122.34550728,38.12437184],[-122.88268177,36.39259343],[-125.00807989,36.8091896],[-124.47349921,38.53363627]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-03-01T18:52:06.621871Z","platform":"landsat-8","proj:bbox":[324885.0,4028985.0,557115.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":4.56,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017060LGN00","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":148.61757592,"view:sun_elevation":40.05745251,"landsat:cloud_cover_land":0.04,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20170222_02_T1","bbox":[-123.42579723136413,36.40015484985637,-120.78634800556698,38.52825515014363],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20170222_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170222_20200905_02_T1/LC08_L2SP_044034_20170222_20200905_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.9252523,38.52554227],[-120.78906723,38.14358906],[-121.2905288,36.4006853],[-123.42363808,36.79105104],[-122.9252523,38.52554227]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-02-22T18:45:58.693660Z","platform":"landsat-8","proj:bbox":[462885.0,4030485.0,693015.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":58.42,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017053LGN00","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":149.68316503,"view:sun_elevation":37.55491796,"landsat:cloud_cover_land":50.47,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20170213_02_T1","bbox":[-125.00181720819123,36.39018487775056,-122.3343579793279,38.53525512224944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20170213_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170213_20200905_02_T1/LC08_L2SP_045034_20170213_20200905_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46562886,38.53345708],[-122.33752152,38.12422147],[-122.87464635,36.39261861],[-125.00014694,36.80918051],[-124.46562886,38.53345708]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-02-13T18:52:12.246840Z","platform":"landsat-8","proj:bbox":[325485.0,4028985.0,558015.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":96.34,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017044LGN01","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":151.06289368,"view:sun_elevation":34.57179604,"landsat:cloud_cover_land":99.96,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20170206_02_T1","bbox":[-123.41891723115818,36.400034849816436,-120.77947800581553,38.528285150183564],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20170206_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170206_20200905_02_T1/LC08_L2SP_044034_20170206_20200905_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91905509,38.52556571],[-120.78277414,38.14357132],[-121.28417592,36.40053922],[-123.4173669,36.79094764],[-122.91905509,38.52556571]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-02-06T18:46:04.107736Z","platform":"landsat-8","proj:bbox":[463485.0,4030485.0,693615.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017037LGN01","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":152.16148151,"view:sun_elevation":32.48231349,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20170128_02_T1","bbox":[-125.00869720802997,36.39007487796052,-122.34123797951904,38.53529512203948],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20170128_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170128_20200905_02_T1/LC08_L2SP_045034_20170128_20200905_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.47055982,38.53373121],[-122.3424045,38.12418992],[-122.87980208,36.39247879],[-125.005351,36.80935724],[-124.47055982,38.53373121]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-01-28T18:52:19.822199Z","platform":"landsat-8","proj:bbox":[324885.0,4028985.0,557415.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":5.11,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017028LGN01","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":153.6069472,"view:sun_elevation":30.16547365,"landsat:cloud_cover_land":34.26,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20170121_02_T1","bbox":[-123.42924723146834,36.40021484988129,-120.78978800543115,38.528245150118714],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20170121_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170121_20200905_02_T1/LC08_L2SP_044034_20170121_20200905_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.92861648,38.52569243],[-120.79224205,38.14342848],[-121.29399216,36.40061451],[-123.42729205,36.79129051],[-122.92861648,38.52569243]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-01-21T18:46:12.014079Z","platform":"landsat-8","proj:bbox":[462585.0,4030485.0,692715.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":67.57,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017021LGN01","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":154.7475038,"view:sun_elevation":28.68952958,"landsat:cloud_cover_land":63.22,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20170112_02_T2","bbox":[-125.0121372079436,36.390014878065585,-122.34467797961499,38.53531512193441],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20170112_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/045/034/LC08_L2SP_045034_20170112_20200905_02_T2/LC08_L2SP_045034_20170112_20200905_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.47394959,38.53365877],[-122.34578387,38.12395745],[-122.88339465,36.39228063],[-125.00896999,36.80930863],[-124.47394959,38.53365877]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-01-12T18:52:25.827940Z","platform":"landsat-8","proj:bbox":[324585.0,4028985.0,557115.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":8.52,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342017012LGN01","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":156.19742606,"view:sun_elevation":27.26338487,"landsat:cloud_cover_land":51.31,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20170105_02_T1","bbox":[-123.42922722568098,36.397514849817185,-120.78987801185669,38.525545150182815],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20170105_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/044/034/LC08_L2SP_044034_20170105_20200905_02_T1/LC08_L2SP_044034_20170105_20200905_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.92924234,38.52531002],[-120.79297136,38.14298829],[-121.29481886,36.40022623],[-123.42801401,36.79096667],[-122.92924234,38.52531002]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-01-05T18:46:16.639547Z","platform":"landsat-8","proj:bbox":[462585.0,4030185.0,692715.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":8.34,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342017005LGN01","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":157.28745458,"view:sun_elevation":26.54361886,"landsat:cloud_cover_land":9.72,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20161227_02_T1","bbox":[-125.00525720809995,36.39012487785525,-122.33779797942334,38.535275122144746],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20161227_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161227_20200905_02_T1/LC08_L2SP_045034_20161227_20200905_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46823365,38.53369006],[-122.34006251,38.1239796],[-122.8776514,36.39236836],[-125.00322436,36.80942228],[-124.46823365,38.53369006]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-12-27T18:52:29.598605Z","platform":"landsat-8","proj:bbox":[325185.0,4028985.0,557715.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":4.59,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342016362LGN01","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":158.59903101,"view:sun_elevation":26.14487657,"landsat:cloud_cover_land":33.29,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20161220_02_T1","bbox":[-123.41891723115818,36.400034849816436,-120.77947800581553,38.528285150183564],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20161220_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463485.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161220_20200905_02_T1/LC08_L2SP_044034_20161220_20200905_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.91949261,38.52558694],[-120.78319076,38.14333391],[-121.28492924,36.40034994],[-123.41815672,36.7910193],[-122.91949261,38.52558694]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-12-20T18:46:18.861047Z","platform":"landsat-8","proj:bbox":[463485.0,4030485.0,693615.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":4.34,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342016355LGN01","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":159.50266541,"view:sun_elevation":26.24442427,"landsat:cloud_cover_land":6.55,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20161211_02_T1","bbox":[-125.00525720809995,36.39012487785525,-122.33779797942334,38.535275122144746],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20161211_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325185.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161211_20200905_02_T1/LC08_L2SP_045034_20161211_20200905_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46946153,38.53377168],[-122.34155543,38.12401091],[-122.87934035,36.39238368],[-125.00464807,36.80947712],[-124.46946153,38.53377168]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-12-11T18:52:32.990101Z","platform":"landsat-8","proj:bbox":[325185.0,4028985.0,557715.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":94.67,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342016346LGN02","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":160.45801771,"view:sun_elevation":26.88810461,"landsat:cloud_cover_land":99.65,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20161204_02_T1","bbox":[-123.4292472315457,36.400274849881285,-120.79322800534797,38.528245150118714],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20161204_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_SR_B1.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_SR_B2.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_SR_B3.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_SR_B4.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_SR_B5.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_SR_B6.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_SR_B7.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_ST_QA.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_ST_B10.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_ST_DRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_ST_EMIS.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_ST_EMSD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_ST_TRAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_ST_URAD.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_ST_CDIST.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7661],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161204_20200905_02_T1/LC08_L2SP_044034_20161204_20200905_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.92967843,38.52570212],[-120.79360648,38.14325527],[-121.29570617,36.40055108],[-123.42870294,36.79140269],[-122.92967843,38.52570212]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-12-04T18:46:23.984447Z","platform":"landsat-8","proj:bbox":[462585.0,4030485.0,692415.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":26.02,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342016339LGN01","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":161.00120873,"view:sun_elevation":27.77123417,"landsat:cloud_cover_land":17.23,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20161125_02_T1","bbox":[-125.0121372079436,36.390014878065585,-122.34467797961499,38.53531512193441],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20161125_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324585.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161125_20200905_02_T1/LC08_L2SP_045034_20161125_20200905_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.4734209,38.53371796],[-122.34554892,38.12382049],[-122.88352803,36.39213686],[-125.00879944,36.80936281],[-124.4734209,38.53371796]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-11-25T18:52:35.982235Z","platform":"landsat-8","proj:bbox":[324585.0,4028985.0,557115.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.02,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342016330LGN01","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":161.39821219,"view:sun_elevation":29.35733771,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20161118_02_T1","bbox":[-123.42922722568098,36.397514849817185,-120.78987801185669,38.525545150182815],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20161118_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,462585.0,0.0,-30.0,4264215.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161118_20200905_02_T1/LC08_L2SP_044034_20161118_20200905_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.92750349,38.52546244],[-120.79153113,38.14296109],[-121.29364736,36.40024839],[-123.42654364,36.7911569],[-122.92750349,38.52546244]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-11-18T18:46:25.151059Z","platform":"landsat-8","proj:bbox":[462585.0,4030185.0,692715.0,4264215.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.08,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342016323LGN01","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":161.43086537,"view:sun_elevation":30.90233853,"landsat:cloud_cover_land":0.1,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20161109_02_T1","bbox":[-125.00181720819123,36.39018487775056,-122.3343579793279,38.53525512224944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20161109_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,325485.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161109_20200905_02_T1/LC08_L2SP_045034_20161109_20200905_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.46537387,38.5340192],[-122.3374269,38.12419134],[-122.87524975,36.39259189],[-125.00059376,36.80975664],[-124.46537387,38.5340192]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-11-09T18:52:35.132519Z","platform":"landsat-8","proj:bbox":[325485.0,4028985.0,558015.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":35.29,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342016314LGN01","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":161.08422815,"view:sun_elevation":33.224112,"landsat:cloud_cover_land":0.47,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20161102_02_T1","bbox":[-123.42579722557659,36.397454849826694,-120.78634800556698,38.52825515017331],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20161102_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,462885.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161102_20200905_02_T1/LC08_L2SP_044034_20161102_20200905_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.9244662,38.5257108],[-120.78829148,38.14312826],[-121.29048276,36.40033214],[-123.42356694,36.79132952],[-122.9244662,38.5257108]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-11-02T18:46:25.504552Z","platform":"landsat-8","proj:bbox":[462885.0,4030185.0,693015.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.12,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342016307LGN01","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":160.49390966,"view:sun_elevation":35.24902254,"landsat:cloud_cover_land":0.19,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20161024_02_T2","bbox":[-125.00869720802997,36.39007487796052,-122.34123797951904,38.53529512203948],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20161024_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,324885.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161024_20200905_02_T2/LC08_L2SP_045034_20161024_20200905_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.47016483,38.53400521],[-122.34209988,38.12401196],[-122.88010858,36.39238976],[-125.00557379,36.80972564],[-124.47016483,38.53400521]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-10-24T18:52:36.537646Z","platform":"landsat-8","proj:bbox":[324885.0,4028985.0,557415.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.91,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342016298LGN01","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":159.30320926,"view:sun_elevation":38.05566076,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20161017_02_T1","bbox":[-123.42235723126298,36.40009484983644,-120.78291800567929,38.52827515016356],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20161017_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,463185.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161017_20200905_02_T1/LC08_L2SP_044034_20161017_20200905_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.92208035,38.52596782],[-120.78577694,38.1432793],[-121.28801239,36.40053221],[-123.42122972,36.7916311],[-122.92208035,38.52596782]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-10-17T18:46:24.936663Z","platform":"landsat-8","proj:bbox":[463185.0,4030485.0,693315.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":11.8,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342016291LGN01","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":158.02774888,"view:sun_elevation":40.34872797,"landsat:cloud_cover_land":18.11,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20161008_02_T1","bbox":[-124.99494720834626,36.390294877562646,-122.32746797915543,38.53521512243736],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20161008_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326085.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20161008_20200906_02_T1/LC08_L2SP_045034_20161008_20200906_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45920772,38.53388634],[-122.33096855,38.12407173],[-122.86876414,36.39264697],[-124.9943957,36.80980438],[-124.45920772,38.53388634]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-10-08T18:52:33.246535Z","platform":"landsat-8","proj:bbox":[326085.0,4028985.0,558615.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":63.88,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342016282LGN01","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":155.94074806,"view:sun_elevation":43.36348857,"landsat:cloud_cover_land":0.36,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20161001_02_T1","bbox":[-123.40514723073743,36.39979484973156,-120.76571800631922,38.52833515026843],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20161001_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464685.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20161001_20200906_02_T1/LC08_L2SP_044034_20161001_20200906_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90302348,38.52592583],[-120.76660518,38.14344416],[-121.268496,36.40023928],[-123.40182709,36.79115519],[-122.90302348,38.52592583]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-10-01T18:46:19.392770Z","platform":"landsat-8","proj:bbox":[464685.0,4030485.0,694815.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.93,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342016275LGN01","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":153.98274986,"view:sun_elevation":45.72152013,"landsat:cloud_cover_land":0.05,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20160922_02_T1","bbox":[-124.98806720848447,36.390394877364265,-122.32058797896623,38.535175122635735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20160922_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326685.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160922_20200906_02_T1/LC08_L2SP_045034_20160922_20200906_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.45079493,38.53338753],[-122.32270436,38.12372785],[-122.8604257,36.39244331],[-124.98591578,36.80944681],[-124.45079493,38.53338753]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-09-22T18:52:29.668515Z","platform":"landsat-8","proj:bbox":[326685.0,4028985.0,559215.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":10.14,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342016266LGN02","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":151.05333435,"view:sun_elevation":48.69879472,"landsat:cloud_cover_land":2.65,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20160915_02_T1","bbox":[-123.40859722505549,36.39715484972348,-120.76915800618187,38.52832515027652],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20160915_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_SR_B1.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_SR_B2.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_SR_B3.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_SR_B4.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_SR_B5.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_SR_B6.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_SR_B7.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_ST_QA.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_ST_B10.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_ST_DRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_ST_EMIS.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_ST_EMSD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_ST_TRAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_ST_URAD.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_QA_PIXEL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_ST_ATRAN.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_ST_CDIST.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_QA_RADSAT.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7811,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160915_20200906_02_T1/LC08_L2SP_044034_20160915_20200906_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90827635,38.52561782],[-120.77206357,38.14298053],[-121.27423526,36.39999353],[-123.40736108,36.79105749],[-122.90827635,38.52561782]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-09-15T18:46:18.686738Z","platform":"landsat-8","proj:bbox":[464385.0,4030185.0,694515.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":30.19,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342016259LGN01","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":148.48041982,"view:sun_elevation":50.93766185,"landsat:cloud_cover_land":3.19,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20160906_02_T1","bbox":[-124.99150720841546,36.3903448774581,-122.3240279790607,38.5351951225419],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20160906_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326385.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160906_20200906_02_T1/LC08_L2SP_045034_20160906_20200906_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.454961,38.53366443],[-122.32691551,38.12383642],[-122.86484084,36.39248713],[-124.99028571,36.80965601],[-124.454961,38.53366443]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-09-06T18:52:28.161545Z","platform":"landsat-8","proj:bbox":[326385.0,4028985.0,558915.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":7.73,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342016250LGN01","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":144.86151747,"view:sun_elevation":53.66779678,"landsat:cloud_cover_land":0.15,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_044034_20160830_02_T1","bbox":[-123.40859723084289,36.39985484975308,-120.76915800618187,38.52832515024692],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_044034_20160830_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_SR_B1.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_SR_B2.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_SR_B3.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_SR_B4.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_SR_B5.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_SR_B6.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_SR_B7.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_ST_QA.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_ST_B10.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_ST_DRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_ST_EMIS.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_ST_EMSD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_ST_TRAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_ST_URAD.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_QA_PIXEL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_ST_ATRAN.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_ST_CDIST.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_QA_RADSAT.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7801,7671],"proj:transform":[30.0,0.0,464385.0,0.0,-30.0,4264515.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/044/034/LC08_L2SP_044034_20160830_20200906_02_T1/LC08_L2SP_044034_20160830_20200906_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-122.90720909,38.52603932],[-120.77103845,38.14334845],[-121.273259,36.40029404],[-123.40634578,36.79140729],[-122.90720909,38.52603932]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-08-30T18:46:15.387743Z","platform":"landsat-8","proj:bbox":[464385.0,4030485.0,694515.0,4264515.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.45,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80440342016243LGN01","landsat:wrs_path":"044","landsat:wrs_type":"2","view:sun_azimuth":141.86681005,"view:sun_elevation":55.65761944,"landsat:cloud_cover_land":0.24,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SP_045034_20160821_02_T1","bbox":[-124.98462720856924,36.390454877260474,-122.317147978872,38.53515512273953],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SP_045034_20160821_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_SR_B1.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_SR_B2.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_SR_B3.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_SR_B4.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_SR_B5.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_SR_B6.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_SR_B7.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"ST_QA":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_ST_QA.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_ST_B10.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"ST_DRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_ST_DRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_ST_EMIS.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_ST_EMSD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_ST_TRAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_ST_URAD.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_QA_PIXEL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"ST_ATRAN":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_ST_ATRAN.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_ST_CDIST.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_QA_RADSAT.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7881,7751],"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,4265415.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/045/034/LC08_L2SP_045034_20160821_20200906_02_T1/LC08_L2SP_045034_20160821_20200906_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-124.44648199,38.53337832],[-122.31846598,38.12367247],[-122.85628139,36.39241772],[-124.98169414,36.80946944],[-124.44648199,38.53337832]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-08-21T18:52:22.630466Z","platform":"landsat-8","proj:bbox":[326985.0,4028985.0,559515.0,4265415.0],"proj:epsg":32610,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":95.57,"view:off_nadir":0,"landsat:wrs_row":"034","landsat:scene_id":"LC80450342016234LGN01","landsat:wrs_path":"045","landsat:wrs_type":"2","view:sun_azimuth":137.88981134,"view:sun_elevation":58.00711648,"landsat:cloud_cover_land":22.5,"landsat:processing_level":"L2SP","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"collections":["landsat-8-c2-l2"],"intersects":{"type":"Polygon","coordinates":[[[-122.308150179,37.488035566],[-122.597502109,37.538869539],[-122.576687533,37.613537207],[-122.2880486,37.562818007],[-122.308150179,37.488035566]]]},"token":"next:landsat-8-c2-l2:LC08_L2SP_045034_20160821_02_T1"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '99067' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:49:58 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T124956Z-167d46d96d8d8pnqhC1DENb5b40000000s9g0000000008aw status: code: 200 message: OK version: 1 TestCLISearch.test_intersects_despite_warning[inprocess].yaml000066400000000000000000115564511503646565400354100ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_cliinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#query"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3362' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:49:59 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T124959Z-167d46d96d8d8pnqhC1DENb5b40000000s7g000000001z1k status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#query"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3362' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:00 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T124959Z-167d46d96d85clfkhC1DEN7rkg0000000sn00000000044qq status: code: 200 message: OK - request: body: '{"collections": ["landsat-8-c2-l2"], "intersects": {"type": "Polygon", "coordinates": [[[-177.0002548, -45.2413329], [-176.7533258, -45.2410666], [-176.4223072, -44.2514167], [-177.0002505, -44.2528774], [-177.0002548, -45.2413329]]]}}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '235' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"LC08_L2SR_066091_20220318_02_T1","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20220318_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220318_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220318_20220329_02_T1/LC08_L2SR_066091_20220318_20220329_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220318_20220329_02_T1/LC08_L2SR_066091_20220318_20220329_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220318_20220329_02_T1/LC08_L2SR_066091_20220318_20220329_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220318_20220329_02_T1/LC08_L2SR_066091_20220318_20220329_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220318_20220329_02_T1/LC08_L2SR_066091_20220318_20220329_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220318_20220329_02_T1/LC08_L2SR_066091_20220318_20220329_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220318_20220329_02_T1/LC08_L2SR_066091_20220318_20220329_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220318_20220329_02_T1/LC08_L2SR_066091_20220318_20220329_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220318_20220329_02_T1/LC08_L2SR_066091_20220318_20220329_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220318_20220329_02_T1/LC08_L2SR_066091_20220318_20220329_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220318_20220329_02_T1/LC08_L2SR_066091_20220318_20220329_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220318_20220329_02_T1/LC08_L2SR_066091_20220318_20220329_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220318_20220329_02_T1/LC08_L2SR_066091_20220318_20220329_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220318_20220329_02_T1/LC08_L2SR_066091_20220318_20220329_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220318_20220329_02_T1/LC08_L2SR_066091_20220318_20220329_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220318_20220329_02_T1/LC08_L2SR_066091_20220318_20220329_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"},"ST_QA":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"ST_DRAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"ST_ATRAN":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"}},"geometry":{"type":"Polygon","coordinates":[[[-177.0851775,-43.5192562],[-174.6726541,-43.9714928],[-175.3102112,-45.6827285],[-177.7249794,-45.2321432],[-177.0851775,-43.5192562]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-03-18T21:24:39.780791Z","platform":"landsat-8","proj:bbox":[443385.0,-5059215.0,681615.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":76.16,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912022077LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":47.49244101,"view:sun_elevation":35.22465754,"landsat:cloud_cover_land":81.24,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20220309_02_T1","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20220309_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220309_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220309_20220315_02_T1/LC08_L2SR_067091_20220309_20220315_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220309_20220315_02_T1/LC08_L2SR_067091_20220309_20220315_02_T1_SR_B1.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220309_20220315_02_T1/LC08_L2SR_067091_20220309_20220315_02_T1_SR_B2.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220309_20220315_02_T1/LC08_L2SR_067091_20220309_20220315_02_T1_SR_B3.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220309_20220315_02_T1/LC08_L2SR_067091_20220309_20220315_02_T1_SR_B4.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220309_20220315_02_T1/LC08_L2SR_067091_20220309_20220315_02_T1_SR_B5.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220309_20220315_02_T1/LC08_L2SR_067091_20220309_20220315_02_T1_SR_B6.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220309_20220315_02_T1/LC08_L2SR_067091_20220309_20220315_02_T1_SR_B7.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220309_20220315_02_T1/LC08_L2SR_067091_20220309_20220315_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220309_20220315_02_T1/LC08_L2SR_067091_20220309_20220315_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220309_20220315_02_T1/LC08_L2SR_067091_20220309_20220315_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220309_20220315_02_T1/LC08_L2SR_067091_20220309_20220315_02_T1_QA_PIXEL.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220309_20220315_02_T1/LC08_L2SR_067091_20220309_20220315_02_T1_QA_RADSAT.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220309_20220315_02_T1/LC08_L2SR_067091_20220309_20220315_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220309_20220315_02_T1/LC08_L2SR_067091_20220309_20220315_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220309_20220315_02_T1/LC08_L2SR_067091_20220309_20220315_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"},"ST_QA":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"ST_DRAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"ST_ATRAN":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"}},"geometry":{"type":"Polygon","coordinates":[[[-178.6907987,-43.5316587],[-176.2675006,-43.9517683],[-176.8586319,-45.6703221],[-179.2848355,-45.2528109],[-178.6907987,-43.5316587]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-03-09T21:30:55.798074Z","platform":"landsat-8","proj:bbox":[321885.0,-5057715.0,557115.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":65.15,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912022068LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":50.49926375,"view:sun_elevation":37.89096352,"landsat:cloud_cover_land":37.01,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20220221_02_T1","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20220221_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220221_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220221_20220301_02_T1/LC08_L2SR_067091_20220221_20220301_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220221_20220301_02_T1/LC08_L2SR_067091_20220221_20220301_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220221_20220301_02_T1/LC08_L2SR_067091_20220221_20220301_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220221_20220301_02_T1/LC08_L2SR_067091_20220221_20220301_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220221_20220301_02_T1/LC08_L2SR_067091_20220221_20220301_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220221_20220301_02_T1/LC08_L2SR_067091_20220221_20220301_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220221_20220301_02_T1/LC08_L2SR_067091_20220221_20220301_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220221_20220301_02_T1/LC08_L2SR_067091_20220221_20220301_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220221_20220301_02_T1/LC08_L2SR_067091_20220221_20220301_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220221_20220301_02_T1/LC08_L2SR_067091_20220221_20220301_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220221_20220301_02_T1/LC08_L2SR_067091_20220221_20220301_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220221_20220301_02_T1/LC08_L2SR_067091_20220221_20220301_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220221_20220301_02_T1/LC08_L2SR_067091_20220221_20220301_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220221_20220301_02_T1/LC08_L2SR_067091_20220221_20220301_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220221_20220301_02_T1/LC08_L2SR_067091_20220221_20220301_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220221_20220301_02_T1/LC08_L2SR_067091_20220221_20220301_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"},"ST_QA":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"ST_DRAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"ST_ATRAN":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"}},"geometry":{"type":"Polygon","coordinates":[[[-178.6764169,-43.5315121],[-176.2533538,-43.9519398],[-176.845084,-45.670127],[-179.2710394,-45.2522858],[-178.6764169,-43.5315121]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-02-21T21:30:58.718977Z","platform":"landsat-8","proj:bbox":[322785.0,-5057715.0,558315.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":0.61,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912022052LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":55.87312275,"view:sun_elevation":42.44216914,"landsat:cloud_cover_land":26.69,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20220214_02_T2","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20220214_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220214_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220214_20220222_02_T2/LC08_L2SR_066091_20220214_20220222_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220214_20220222_02_T2/LC08_L2SR_066091_20220214_20220222_02_T2_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220214_20220222_02_T2/LC08_L2SR_066091_20220214_20220222_02_T2_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220214_20220222_02_T2/LC08_L2SR_066091_20220214_20220222_02_T2_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220214_20220222_02_T2/LC08_L2SR_066091_20220214_20220222_02_T2_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220214_20220222_02_T2/LC08_L2SR_066091_20220214_20220222_02_T2_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220214_20220222_02_T2/LC08_L2SR_066091_20220214_20220222_02_T2_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220214_20220222_02_T2/LC08_L2SR_066091_20220214_20220222_02_T2_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220214_20220222_02_T2/LC08_L2SR_066091_20220214_20220222_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220214_20220222_02_T2/LC08_L2SR_066091_20220214_20220222_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220214_20220222_02_T2/LC08_L2SR_066091_20220214_20220222_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220214_20220222_02_T2/LC08_L2SR_066091_20220214_20220222_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220214_20220222_02_T2/LC08_L2SR_066091_20220214_20220222_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220214_20220222_02_T2/LC08_L2SR_066091_20220214_20220222_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220214_20220222_02_T2/LC08_L2SR_066091_20220214_20220222_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220214_20220222_02_T2/LC08_L2SR_066091_20220214_20220222_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"},"ST_QA":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"ST_DRAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"ST_ATRAN":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"}},"geometry":{"type":"Polygon","coordinates":[[[-177.0778753,-43.5192546],[-174.6659791,-43.9718389],[-175.3041639,-45.6832156],[-177.7183104,-45.2322734],[-177.0778753,-43.5192546]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-02-14T21:24:50.798715Z","platform":"landsat-8","proj:bbox":[443985.0,-5059215.0,681915.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":86.57,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912022045LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":58.09777831,"view:sun_elevation":44.32062007,"landsat:cloud_cover_land":98.5,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20220205_02_T2","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20220205_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220205_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220205_20220212_02_T2/LC08_L2SR_067091_20220205_20220212_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220205_20220212_02_T2/LC08_L2SR_067091_20220205_20220212_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220205_20220212_02_T2/LC08_L2SR_067091_20220205_20220212_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220205_20220212_02_T2/LC08_L2SR_067091_20220205_20220212_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220205_20220212_02_T2/LC08_L2SR_067091_20220205_20220212_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220205_20220212_02_T2/LC08_L2SR_067091_20220205_20220212_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220205_20220212_02_T2/LC08_L2SR_067091_20220205_20220212_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220205_20220212_02_T2/LC08_L2SR_067091_20220205_20220212_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220205_20220212_02_T2/LC08_L2SR_067091_20220205_20220212_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220205_20220212_02_T2/LC08_L2SR_067091_20220205_20220212_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220205_20220212_02_T2/LC08_L2SR_067091_20220205_20220212_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220205_20220212_02_T2/LC08_L2SR_067091_20220205_20220212_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220205_20220212_02_T2/LC08_L2SR_067091_20220205_20220212_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220205_20220212_02_T2/LC08_L2SR_067091_20220205_20220212_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220205_20220212_02_T2/LC08_L2SR_067091_20220205_20220212_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220205_20220212_02_T2/LC08_L2SR_067091_20220205_20220212_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"},"ST_QA":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"ST_DRAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"ST_ATRAN":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"}},"geometry":{"type":"Polygon","coordinates":[[[-178.6804143,-43.5313664],[-176.2578179,-43.9517817],[-176.8496473,-45.6701246],[-179.2751338,-45.2522967],[-178.6804143,-43.5313664]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-02-05T21:31:04.693754Z","platform":"landsat-8","proj:bbox":[322485.0,-5057715.0,558015.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912022036LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":60.69185987,"view:sun_elevation":46.61331433,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20220129_02_T1","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20220129_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220129_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220129_20220204_02_T1/LC08_L2SR_066091_20220129_20220204_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220129_20220204_02_T1/LC08_L2SR_066091_20220129_20220204_02_T1_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220129_20220204_02_T1/LC08_L2SR_066091_20220129_20220204_02_T1_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220129_20220204_02_T1/LC08_L2SR_066091_20220129_20220204_02_T1_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220129_20220204_02_T1/LC08_L2SR_066091_20220129_20220204_02_T1_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220129_20220204_02_T1/LC08_L2SR_066091_20220129_20220204_02_T1_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220129_20220204_02_T1/LC08_L2SR_066091_20220129_20220204_02_T1_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220129_20220204_02_T1/LC08_L2SR_066091_20220129_20220204_02_T1_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220129_20220204_02_T1/LC08_L2SR_066091_20220129_20220204_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220129_20220204_02_T1/LC08_L2SR_066091_20220129_20220204_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220129_20220204_02_T1/LC08_L2SR_066091_20220129_20220204_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220129_20220204_02_T1/LC08_L2SR_066091_20220129_20220204_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220129_20220204_02_T1/LC08_L2SR_066091_20220129_20220204_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220129_20220204_02_T1/LC08_L2SR_066091_20220129_20220204_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220129_20220204_02_T1/LC08_L2SR_066091_20220129_20220204_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220129_20220204_02_T1/LC08_L2SR_066091_20220129_20220204_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"},"ST_QA":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"ST_DRAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"ST_ATRAN":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"}},"geometry":{"type":"Polygon","coordinates":[[[-177.0741952,-43.5186398],[-174.6624806,-43.9714217],[-175.3010053,-45.6827709],[-177.7149692,-45.2316358],[-177.0741952,-43.5186398]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-01-29T21:24:54.477787Z","platform":"landsat-8","proj:bbox":[444285.0,-5059215.0,682215.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":25.53,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912022029LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":62.42156169,"view:sun_elevation":48.28781865,"landsat:cloud_cover_land":8.92,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20220120_02_T1","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20220120_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220120_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220120_20220127_02_T1/LC08_L2SR_067091_20220120_20220127_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220120_20220127_02_T1/LC08_L2SR_067091_20220120_20220127_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220120_20220127_02_T1/LC08_L2SR_067091_20220120_20220127_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220120_20220127_02_T1/LC08_L2SR_067091_20220120_20220127_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220120_20220127_02_T1/LC08_L2SR_067091_20220120_20220127_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220120_20220127_02_T1/LC08_L2SR_067091_20220120_20220127_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220120_20220127_02_T1/LC08_L2SR_067091_20220120_20220127_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220120_20220127_02_T1/LC08_L2SR_067091_20220120_20220127_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220120_20220127_02_T1/LC08_L2SR_067091_20220120_20220127_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220120_20220127_02_T1/LC08_L2SR_067091_20220120_20220127_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220120_20220127_02_T1/LC08_L2SR_067091_20220120_20220127_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220120_20220127_02_T1/LC08_L2SR_067091_20220120_20220127_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220120_20220127_02_T1/LC08_L2SR_067091_20220120_20220127_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220120_20220127_02_T1/LC08_L2SR_067091_20220120_20220127_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220120_20220127_02_T1/LC08_L2SR_067091_20220120_20220127_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220120_20220127_02_T1/LC08_L2SR_067091_20220120_20220127_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"},"ST_QA":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"ST_DRAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"ST_ATRAN":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"}},"geometry":{"type":"Polygon","coordinates":[[[-178.680307,-43.5314542],[-176.2578297,-43.9519661],[-176.8498778,-45.6703016],[-179.2752359,-45.252383],[-178.680307,-43.5314542]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-01-20T21:31:08.428947Z","platform":"landsat-8","proj:bbox":[322485.0,-5058015.0,558015.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":40.17,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912022020LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":64.15282693,"view:sun_elevation":50.2652007,"landsat:cloud_cover_land":27.16,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20220113_02_T1","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20220113_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220113_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220113_20220123_02_T1/LC08_L2SR_066091_20220113_20220123_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220113_20220123_02_T1/LC08_L2SR_066091_20220113_20220123_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220113_20220123_02_T1/LC08_L2SR_066091_20220113_20220123_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220113_20220123_02_T1/LC08_L2SR_066091_20220113_20220123_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220113_20220123_02_T1/LC08_L2SR_066091_20220113_20220123_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220113_20220123_02_T1/LC08_L2SR_066091_20220113_20220123_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220113_20220123_02_T1/LC08_L2SR_066091_20220113_20220123_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220113_20220123_02_T1/LC08_L2SR_066091_20220113_20220123_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220113_20220123_02_T1/LC08_L2SR_066091_20220113_20220123_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220113_20220123_02_T1/LC08_L2SR_066091_20220113_20220123_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220113_20220123_02_T1/LC08_L2SR_066091_20220113_20220123_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220113_20220123_02_T1/LC08_L2SR_066091_20220113_20220123_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220113_20220123_02_T1/LC08_L2SR_066091_20220113_20220123_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220113_20220123_02_T1/LC08_L2SR_066091_20220113_20220123_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220113_20220123_02_T1/LC08_L2SR_066091_20220113_20220123_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/066/091/LC08_L2SR_066091_20220113_20220123_02_T1/LC08_L2SR_066091_20220113_20220123_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"},"ST_QA":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"ST_DRAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"ST_ATRAN":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"}},"geometry":{"type":"Polygon","coordinates":[[[-177.0827258,-43.5189395],[-174.6710155,-43.9715682],[-175.3094525,-45.682833],[-177.7233968,-45.2318469],[-177.0827258,-43.5189395]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-01-13T21:24:59.790013Z","platform":"landsat-8","proj:bbox":[443385.0,-5059215.0,681615.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":87.8,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912022013LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":65.04333282,"view:sun_elevation":51.64327571,"landsat:cloud_cover_land":95.16,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20220104_02_T2","type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20220104_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220104_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220104_20220113_02_T2/LC08_L2SR_067091_20220104_20220113_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220104_20220113_02_T2/LC08_L2SR_067091_20220104_20220113_02_T2_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220104_20220113_02_T2/LC08_L2SR_067091_20220104_20220113_02_T2_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220104_20220113_02_T2/LC08_L2SR_067091_20220104_20220113_02_T2_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220104_20220113_02_T2/LC08_L2SR_067091_20220104_20220113_02_T2_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220104_20220113_02_T2/LC08_L2SR_067091_20220104_20220113_02_T2_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220104_20220113_02_T2/LC08_L2SR_067091_20220104_20220113_02_T2_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220104_20220113_02_T2/LC08_L2SR_067091_20220104_20220113_02_T2_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220104_20220113_02_T2/LC08_L2SR_067091_20220104_20220113_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220104_20220113_02_T2/LC08_L2SR_067091_20220104_20220113_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220104_20220113_02_T2/LC08_L2SR_067091_20220104_20220113_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220104_20220113_02_T2/LC08_L2SR_067091_20220104_20220113_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220104_20220113_02_T2/LC08_L2SR_067091_20220104_20220113_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220104_20220113_02_T2/LC08_L2SR_067091_20220104_20220113_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220104_20220113_02_T2/LC08_L2SR_067091_20220104_20220113_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2022/067/091/LC08_L2SR_067091_20220104_20220113_02_T2/LC08_L2SR_067091_20220104_20220113_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"},"ST_QA":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product"},"ST_B10":{"gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band (B10)","eo:bands":[{"gsd":100.0,"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}],"description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product"},"ST_DRAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"}],"description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product"},"ST_EMIS":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","eo:bands":[{"gsd":30,"name":"ST_EMIS","description":"emissivity"}],"description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product"},"ST_EMSD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","eo:bands":[{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product"},"ST_TRAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","eo:bands":[{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"}],"description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product"},"ST_URAD":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","eo:bands":[{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"}],"description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product"},"ST_ATRAN":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","eo:bands":[{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"}],"description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product"},"ST_CDIST":{"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","eo:bands":[{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"}],"description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product"}},"geometry":{"type":"Polygon","coordinates":[[[-178.6820956,-43.5312864],[-176.2594292,-43.9519382],[-176.8515392,-45.6702162],[-179.2770827,-45.2521548],[-178.6820956,-43.5312864]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2022-01-04T21:31:11.776624Z","platform":"landsat-8","proj:bbox":[322485.0,-5057715.0,557715.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":95.75,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912022004LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":65.49624014,"view:sun_elevation":53.16738632,"landsat:cloud_cover_land":99.95,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20211228_02_T2","bbox":[-177.72317251,-45.68419498,-174.66865445,-43.51702502],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20211228_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211228_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211228_20220105_02_T2/LC08_L2SR_066091_20211228_20220105_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211228_20220105_02_T2/LC08_L2SR_066091_20211228_20220105_02_T2_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211228_20220105_02_T2/LC08_L2SR_066091_20211228_20220105_02_T2_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211228_20220105_02_T2/LC08_L2SR_066091_20211228_20220105_02_T2_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211228_20220105_02_T2/LC08_L2SR_066091_20211228_20220105_02_T2_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211228_20220105_02_T2/LC08_L2SR_066091_20211228_20220105_02_T2_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211228_20220105_02_T2/LC08_L2SR_066091_20211228_20220105_02_T2_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211228_20220105_02_T2/LC08_L2SR_066091_20211228_20220105_02_T2_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211228_20220105_02_T2/LC08_L2SR_066091_20211228_20220105_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211228_20220105_02_T2/LC08_L2SR_066091_20211228_20220105_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211228_20220105_02_T2/LC08_L2SR_066091_20211228_20220105_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211228_20220105_02_T2/LC08_L2SR_066091_20211228_20220105_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211228_20220105_02_T2/LC08_L2SR_066091_20211228_20220105_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211228_20220105_02_T2/LC08_L2SR_066091_20211228_20220105_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211228_20220105_02_T2/LC08_L2SR_066091_20211228_20220105_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211228_20220105_02_T2/LC08_L2SR_066091_20211228_20220105_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.0813971,-43.5191863],[-174.6695834,-43.9719938],[-175.3081739,-45.6831961],[-177.7222139,-45.2320431],[-177.0813971,-43.5191863]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-12-28T21:25:01.985498Z","platform":"landsat-8","proj:bbox":[443685.0,-5059215.0,681615.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":98.86,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021362LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":65.27244558,"view:sun_elevation":54.11938502,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20211212_02_T2","bbox":[-177.73858251,-45.68410498,-174.68404445,-43.51731502],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20211212_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211212_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211212_20211222_02_T2/LC08_L2SR_066091_20211212_20211222_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211212_20211222_02_T2/LC08_L2SR_066091_20211212_20211222_02_T2_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211212_20211222_02_T2/LC08_L2SR_066091_20211212_20211222_02_T2_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211212_20211222_02_T2/LC08_L2SR_066091_20211212_20211222_02_T2_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211212_20211222_02_T2/LC08_L2SR_066091_20211212_20211222_02_T2_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211212_20211222_02_T2/LC08_L2SR_066091_20211212_20211222_02_T2_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211212_20211222_02_T2/LC08_L2SR_066091_20211212_20211222_02_T2_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211212_20211222_02_T2/LC08_L2SR_066091_20211212_20211222_02_T2_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211212_20211222_02_T2/LC08_L2SR_066091_20211212_20211222_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211212_20211222_02_T2/LC08_L2SR_066091_20211212_20211222_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211212_20211222_02_T2/LC08_L2SR_066091_20211212_20211222_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211212_20211222_02_T2/LC08_L2SR_066091_20211212_20211222_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211212_20211222_02_T2/LC08_L2SR_066091_20211212_20211222_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211212_20211222_02_T2/LC08_L2SR_066091_20211212_20211222_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211212_20211222_02_T2/LC08_L2SR_066091_20211212_20211222_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211212_20211222_02_T2/LC08_L2SR_066091_20211212_20211222_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.0973125,-43.5195309],[-174.6849285,-43.9721189],[-175.3231241,-45.682976],[-177.7377471,-45.2320449],[-177.0973125,-43.5195309]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-12-12T21:25:07.286341Z","platform":"landsat-8","proj:bbox":[442485.0,-5059215.0,680415.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.63,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021346LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":62.91340131,"view:sun_elevation":55.30883348,"landsat:cloud_cover_land":92.7,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20211203_02_T2","bbox":[-179.29756248,-45.67338493,-176.27440441,-43.53115507],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20211203_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211203_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211203_20211209_02_T2/LC08_L2SR_067091_20211203_20211209_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211203_20211209_02_T2/LC08_L2SR_067091_20211203_20211209_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211203_20211209_02_T2/LC08_L2SR_067091_20211203_20211209_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211203_20211209_02_T2/LC08_L2SR_067091_20211203_20211209_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211203_20211209_02_T2/LC08_L2SR_067091_20211203_20211209_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211203_20211209_02_T2/LC08_L2SR_067091_20211203_20211209_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211203_20211209_02_T2/LC08_L2SR_067091_20211203_20211209_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211203_20211209_02_T2/LC08_L2SR_067091_20211203_20211209_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211203_20211209_02_T2/LC08_L2SR_067091_20211203_20211209_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211203_20211209_02_T2/LC08_L2SR_067091_20211203_20211209_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211203_20211209_02_T2/LC08_L2SR_067091_20211203_20211209_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211203_20211209_02_T2/LC08_L2SR_067091_20211203_20211209_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211203_20211209_02_T2/LC08_L2SR_067091_20211203_20211209_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211203_20211209_02_T2/LC08_L2SR_067091_20211203_20211209_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211203_20211209_02_T2/LC08_L2SR_067091_20211203_20211209_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211203_20211209_02_T2/LC08_L2SR_067091_20211203_20211209_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.6993161,-43.531169],[-176.2759022,-43.9518928],[-176.8678149,-45.6704964],[-179.2941069,-45.2523736],[-178.6993161,-43.531169]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-12-03T21:31:18.874837Z","platform":"landsat-8","proj:bbox":[320985.0,-5058015.0,556515.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":88.94,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021337LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":60.63867721,"view:sun_elevation":55.25760774,"landsat:cloud_cover_land":99.86,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20211126_02_T2","bbox":[-177.73473251,-45.68412498,-174.68020445,-43.51724502],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20211126_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211126_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211126_20211201_02_T2/LC08_L2SR_066091_20211126_20211201_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211126_20211201_02_T2/LC08_L2SR_066091_20211126_20211201_02_T2_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211126_20211201_02_T2/LC08_L2SR_066091_20211126_20211201_02_T2_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211126_20211201_02_T2/LC08_L2SR_066091_20211126_20211201_02_T2_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211126_20211201_02_T2/LC08_L2SR_066091_20211126_20211201_02_T2_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211126_20211201_02_T2/LC08_L2SR_066091_20211126_20211201_02_T2_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211126_20211201_02_T2/LC08_L2SR_066091_20211126_20211201_02_T2_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211126_20211201_02_T2/LC08_L2SR_066091_20211126_20211201_02_T2_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211126_20211201_02_T2/LC08_L2SR_066091_20211126_20211201_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211126_20211201_02_T2/LC08_L2SR_066091_20211126_20211201_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211126_20211201_02_T2/LC08_L2SR_066091_20211126_20211201_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211126_20211201_02_T2/LC08_L2SR_066091_20211126_20211201_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211126_20211201_02_T2/LC08_L2SR_066091_20211126_20211201_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211126_20211201_02_T2/LC08_L2SR_066091_20211126_20211201_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211126_20211201_02_T2/LC08_L2SR_066091_20211126_20211201_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211126_20211201_02_T2/LC08_L2SR_066091_20211126_20211201_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.0937158,-43.5190857],[-174.681111,-43.9718596],[-175.319429,-45.6827153],[-177.734275,-45.2315951],[-177.0937158,-43.5190857]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-11-26T21:25:07.614036Z","platform":"landsat-8","proj:bbox":[442785.0,-5059215.0,680715.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":97.58,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021330LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":58.56848796,"view:sun_elevation":54.81180901,"landsat:cloud_cover_land":99.47,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20211117_02_T2","bbox":[-179.28602248,-45.67330493,-176.26284441,-43.52866507],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20211117_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211117_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211117_20211125_02_T2/LC08_L2SR_067091_20211117_20211125_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211117_20211125_02_T2/LC08_L2SR_067091_20211117_20211125_02_T2_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211117_20211125_02_T2/LC08_L2SR_067091_20211117_20211125_02_T2_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211117_20211125_02_T2/LC08_L2SR_067091_20211117_20211125_02_T2_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211117_20211125_02_T2/LC08_L2SR_067091_20211117_20211125_02_T2_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211117_20211125_02_T2/LC08_L2SR_067091_20211117_20211125_02_T2_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211117_20211125_02_T2/LC08_L2SR_067091_20211117_20211125_02_T2_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211117_20211125_02_T2/LC08_L2SR_067091_20211117_20211125_02_T2_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211117_20211125_02_T2/LC08_L2SR_067091_20211117_20211125_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211117_20211125_02_T2/LC08_L2SR_067091_20211117_20211125_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211117_20211125_02_T2/LC08_L2SR_067091_20211117_20211125_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211117_20211125_02_T2/LC08_L2SR_067091_20211117_20211125_02_T2_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211117_20211125_02_T2/LC08_L2SR_067091_20211117_20211125_02_T2_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211117_20211125_02_T2/LC08_L2SR_067091_20211117_20211125_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211117_20211125_02_T2/LC08_L2SR_067091_20211117_20211125_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211117_20211125_02_T2/LC08_L2SR_067091_20211117_20211125_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.6879766,-43.5312824],[-176.264684,-43.9522506],[-176.8570373,-45.670515],[-179.2832302,-45.2521418],[-178.6879766,-43.5312824]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-11-17T21:31:16.754072Z","platform":"landsat-8","proj:bbox":[321885.0,-5058015.0,557415.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":67.61,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021321LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":55.74946375,"view:sun_elevation":53.7005932,"landsat:cloud_cover_land":93.24,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20211110_02_T2","bbox":[-177.74243251,-45.68407498,-174.68404445,-43.51731502],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20211110_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211110_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211110_20211117_02_T2/LC08_L2SR_066091_20211110_20211117_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211110_20211117_02_T2/LC08_L2SR_066091_20211110_20211117_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211110_20211117_02_T2/LC08_L2SR_066091_20211110_20211117_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211110_20211117_02_T2/LC08_L2SR_066091_20211110_20211117_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211110_20211117_02_T2/LC08_L2SR_066091_20211110_20211117_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211110_20211117_02_T2/LC08_L2SR_066091_20211110_20211117_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211110_20211117_02_T2/LC08_L2SR_066091_20211110_20211117_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211110_20211117_02_T2/LC08_L2SR_066091_20211110_20211117_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211110_20211117_02_T2/LC08_L2SR_066091_20211110_20211117_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211110_20211117_02_T2/LC08_L2SR_066091_20211110_20211117_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211110_20211117_02_T2/LC08_L2SR_066091_20211110_20211117_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211110_20211117_02_T2/LC08_L2SR_066091_20211110_20211117_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211110_20211117_02_T2/LC08_L2SR_066091_20211110_20211117_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211110_20211117_02_T2/LC08_L2SR_066091_20211110_20211117_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211110_20211117_02_T2/LC08_L2SR_066091_20211110_20211117_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211110_20211117_02_T2/LC08_L2SR_066091_20211110_20211117_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.0987911,-43.5192917],[-174.6864393,-43.9719642],[-175.3247631,-45.6827695],[-177.7393756,-45.2317531],[-177.0987911,-43.5192917]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-11-10T21:25:09.017465Z","platform":"landsat-8","proj:bbox":[442185.0,-5059215.0,680415.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":79.98,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021314LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":53.5646006,"view:sun_elevation":52.4298705,"landsat:cloud_cover_land":96.21,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20211101_02_T1","bbox":[-179.30910248,-45.67347493,-176.28980441,-43.53093507],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20211101_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211101_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211101_20211109_02_T1/LC08_L2SR_067091_20211101_20211109_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211101_20211109_02_T1/LC08_L2SR_067091_20211101_20211109_02_T1_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211101_20211109_02_T1/LC08_L2SR_067091_20211101_20211109_02_T1_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211101_20211109_02_T1/LC08_L2SR_067091_20211101_20211109_02_T1_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211101_20211109_02_T1/LC08_L2SR_067091_20211101_20211109_02_T1_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211101_20211109_02_T1/LC08_L2SR_067091_20211101_20211109_02_T1_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211101_20211109_02_T1/LC08_L2SR_067091_20211101_20211109_02_T1_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211101_20211109_02_T1/LC08_L2SR_067091_20211101_20211109_02_T1_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211101_20211109_02_T1/LC08_L2SR_067091_20211101_20211109_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211101_20211109_02_T1/LC08_L2SR_067091_20211101_20211109_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211101_20211109_02_T1/LC08_L2SR_067091_20211101_20211109_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211101_20211109_02_T1/LC08_L2SR_067091_20211101_20211109_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211101_20211109_02_T1/LC08_L2SR_067091_20211101_20211109_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211101_20211109_02_T1/LC08_L2SR_067091_20211101_20211109_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211101_20211109_02_T1/LC08_L2SR_067091_20211101_20211109_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211101_20211109_02_T1/LC08_L2SR_067091_20211101_20211109_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.7141784,-43.5309722],[-176.2911036,-43.9515561],[-176.8828223,-45.6705004],[-179.3088146,-45.2525246],[-178.7141784,-43.5309722]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-11-01T21:31:22.452570Z","platform":"landsat-8","proj:bbox":[320085.0,-5058015.0,555315.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":25.43,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021305LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":50.92575111,"view:sun_elevation":50.3179798,"landsat:cloud_cover_land":23.47,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20211025_02_T2","bbox":[-177.75784251,-45.68397498,-174.69943445,-43.51760502],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20211025_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211025_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211025_20211103_02_T2/LC08_L2SR_066091_20211025_20211103_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211025_20211103_02_T2/LC08_L2SR_066091_20211025_20211103_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211025_20211103_02_T2/LC08_L2SR_066091_20211025_20211103_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211025_20211103_02_T2/LC08_L2SR_066091_20211025_20211103_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211025_20211103_02_T2/LC08_L2SR_066091_20211025_20211103_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211025_20211103_02_T2/LC08_L2SR_066091_20211025_20211103_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211025_20211103_02_T2/LC08_L2SR_066091_20211025_20211103_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211025_20211103_02_T2/LC08_L2SR_066091_20211025_20211103_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211025_20211103_02_T2/LC08_L2SR_066091_20211025_20211103_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211025_20211103_02_T2/LC08_L2SR_066091_20211025_20211103_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211025_20211103_02_T2/LC08_L2SR_066091_20211025_20211103_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211025_20211103_02_T2/LC08_L2SR_066091_20211025_20211103_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211025_20211103_02_T2/LC08_L2SR_066091_20211025_20211103_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211025_20211103_02_T2/LC08_L2SR_066091_20211025_20211103_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211025_20211103_02_T2/LC08_L2SR_066091_20211025_20211103_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20211025_20211103_02_T2/LC08_L2SR_066091_20211025_20211103_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.114924,-43.5195896],[-174.7028405,-43.9718137],[-175.3407876,-45.6825116],[-177.7551422,-45.2319468],[-177.114924,-43.5195896]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-10-25T21:25:12.264020Z","platform":"landsat-8","proj:bbox":[440985.0,-5059215.0,679215.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":91.92,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021298LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":49.07170524,"view:sun_elevation":48.34644425,"landsat:cloud_cover_land":93.25,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20211016_02_T2","bbox":[-179.31679248,-45.67350493,-176.29366441,-43.53079507],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20211016_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211016_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211016_20211026_02_T2/LC08_L2SR_067091_20211016_20211026_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211016_20211026_02_T2/LC08_L2SR_067091_20211016_20211026_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211016_20211026_02_T2/LC08_L2SR_067091_20211016_20211026_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211016_20211026_02_T2/LC08_L2SR_067091_20211016_20211026_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211016_20211026_02_T2/LC08_L2SR_067091_20211016_20211026_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211016_20211026_02_T2/LC08_L2SR_067091_20211016_20211026_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211016_20211026_02_T2/LC08_L2SR_067091_20211016_20211026_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211016_20211026_02_T2/LC08_L2SR_067091_20211016_20211026_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211016_20211026_02_T2/LC08_L2SR_067091_20211016_20211026_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211016_20211026_02_T2/LC08_L2SR_067091_20211016_20211026_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211016_20211026_02_T2/LC08_L2SR_067091_20211016_20211026_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211016_20211026_02_T2/LC08_L2SR_067091_20211016_20211026_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211016_20211026_02_T2/LC08_L2SR_067091_20211016_20211026_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211016_20211026_02_T2/LC08_L2SR_067091_20211016_20211026_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211016_20211026_02_T2/LC08_L2SR_067091_20211016_20211026_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20211016_20211026_02_T2/LC08_L2SR_067091_20211016_20211026_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.7198911,-43.5308955],[-176.2971733,-43.9513701],[-176.8888062,-45.6705738],[-179.314446,-45.2527203],[-178.7198911,-43.5308955]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-10-16T21:31:22.586836Z","platform":"landsat-8","proj:bbox":[319485.0,-5058015.0,555015.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.92,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021289LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":46.99632557,"view:sun_elevation":45.4682284,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20210930_02_T2","bbox":[-179.30910248,-45.67345493,-176.28595441,-43.53093507],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20210930_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210930_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210930_20211013_02_T2/LC08_L2SR_067091_20210930_20211013_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210930_20211013_02_T2/LC08_L2SR_067091_20210930_20211013_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210930_20211013_02_T2/LC08_L2SR_067091_20210930_20211013_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210930_20211013_02_T2/LC08_L2SR_067091_20210930_20211013_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210930_20211013_02_T2/LC08_L2SR_067091_20210930_20211013_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210930_20211013_02_T2/LC08_L2SR_067091_20210930_20211013_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210930_20211013_02_T2/LC08_L2SR_067091_20210930_20211013_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210930_20211013_02_T2/LC08_L2SR_067091_20210930_20211013_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210930_20211013_02_T2/LC08_L2SR_067091_20210930_20211013_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210930_20211013_02_T2/LC08_L2SR_067091_20210930_20211013_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210930_20211013_02_T2/LC08_L2SR_067091_20210930_20211013_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210930_20211013_02_T2/LC08_L2SR_067091_20210930_20211013_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210930_20211013_02_T2/LC08_L2SR_067091_20210930_20211013_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210930_20211013_02_T2/LC08_L2SR_067091_20210930_20211013_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210930_20211013_02_T2/LC08_L2SR_067091_20210930_20211013_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210930_20211013_02_T2/LC08_L2SR_067091_20210930_20211013_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.7108596,-43.5309361],[-176.2883105,-43.9516194],[-176.8803446,-45.6706207],[-179.3057907,-45.2525471],[-178.7108596,-43.5309361]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-09-30T21:31:18.417974Z","platform":"landsat-8","proj:bbox":[320085.0,-5058015.0,555615.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":35.93,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021273LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":44.05161679,"view:sun_elevation":39.69777897,"landsat:cloud_cover_land":48.82,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20210914_02_T2","bbox":[-179.30525248,-45.67343493,-176.28210441,-43.52830507],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20210914_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210914_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210914_20210924_02_T2/LC08_L2SR_067091_20210914_20210924_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210914_20210924_02_T2/LC08_L2SR_067091_20210914_20210924_02_T2_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210914_20210924_02_T2/LC08_L2SR_067091_20210914_20210924_02_T2_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210914_20210924_02_T2/LC08_L2SR_067091_20210914_20210924_02_T2_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210914_20210924_02_T2/LC08_L2SR_067091_20210914_20210924_02_T2_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210914_20210924_02_T2/LC08_L2SR_067091_20210914_20210924_02_T2_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210914_20210924_02_T2/LC08_L2SR_067091_20210914_20210924_02_T2_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210914_20210924_02_T2/LC08_L2SR_067091_20210914_20210924_02_T2_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210914_20210924_02_T2/LC08_L2SR_067091_20210914_20210924_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210914_20210924_02_T2/LC08_L2SR_067091_20210914_20210924_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210914_20210924_02_T2/LC08_L2SR_067091_20210914_20210924_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210914_20210924_02_T2/LC08_L2SR_067091_20210914_20210924_02_T2_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210914_20210924_02_T2/LC08_L2SR_067091_20210914_20210924_02_T2_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210914_20210924_02_T2/LC08_L2SR_067091_20210914_20210924_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210914_20210924_02_T2/LC08_L2SR_067091_20210914_20210924_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210914_20210924_02_T2/LC08_L2SR_067091_20210914_20210924_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.7065934,-43.5310144],[-176.2838268,-43.9518917],[-176.8761102,-45.6706823],[-179.3017635,-45.2524133],[-178.7065934,-43.5310144]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-09-14T21:31:14.072402Z","platform":"landsat-8","proj:bbox":[320385.0,-5058015.0,555915.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":46.42,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021257LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":41.82852637,"view:sun_elevation":33.58438274,"landsat:cloud_cover_land":94.46,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20210907_02_T2","bbox":[-177.7501425133711,-45.684024978641446,-174.6917444467325,-43.517465021358554],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20210907_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210907_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210907_20210916_02_T2/LC08_L2SR_066091_20210907_20210916_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210907_20210916_02_T2/LC08_L2SR_066091_20210907_20210916_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210907_20210916_02_T2/LC08_L2SR_066091_20210907_20210916_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210907_20210916_02_T2/LC08_L2SR_066091_20210907_20210916_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210907_20210916_02_T2/LC08_L2SR_066091_20210907_20210916_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210907_20210916_02_T2/LC08_L2SR_066091_20210907_20210916_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210907_20210916_02_T2/LC08_L2SR_066091_20210907_20210916_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210907_20210916_02_T2/LC08_L2SR_066091_20210907_20210916_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210907_20210916_02_T2/LC08_L2SR_066091_20210907_20210916_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210907_20210916_02_T2/LC08_L2SR_066091_20210907_20210916_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210907_20210916_02_T2/LC08_L2SR_066091_20210907_20210916_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210907_20210916_02_T2/LC08_L2SR_066091_20210907_20210916_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210907_20210916_02_T2/LC08_L2SR_066091_20210907_20210916_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210907_20210916_02_T2/LC08_L2SR_066091_20210907_20210916_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210907_20210916_02_T2/LC08_L2SR_066091_20210907_20210916_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210907_20210916_02_T2/LC08_L2SR_066091_20210907_20210916_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10655328,-43.51947866],[-174.69446389,-43.97228344],[-175.33310402,-45.68292061],[-177.74743474,-45.23178348],[-177.10655328,-43.51947866]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-09-07T21:25:01.889515Z","platform":"landsat-8","proj:bbox":[441585.0,-5059215.0,679815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":92.48,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021250LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":40.98622012,"view:sun_elevation":30.94170178,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20210829_02_T1","bbox":[-179.3052524761981,-45.67343493264293,-176.28210440548102,-43.53100506735707],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20210829_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210829_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210829_20210909_02_T1/LC08_L2SR_067091_20210829_20210909_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210829_20210909_02_T1/LC08_L2SR_067091_20210829_20210909_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210829_20210909_02_T1/LC08_L2SR_067091_20210829_20210909_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210829_20210909_02_T1/LC08_L2SR_067091_20210829_20210909_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210829_20210909_02_T1/LC08_L2SR_067091_20210829_20210909_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210829_20210909_02_T1/LC08_L2SR_067091_20210829_20210909_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210829_20210909_02_T1/LC08_L2SR_067091_20210829_20210909_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210829_20210909_02_T1/LC08_L2SR_067091_20210829_20210909_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210829_20210909_02_T1/LC08_L2SR_067091_20210829_20210909_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210829_20210909_02_T1/LC08_L2SR_067091_20210829_20210909_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210829_20210909_02_T1/LC08_L2SR_067091_20210829_20210909_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210829_20210909_02_T1/LC08_L2SR_067091_20210829_20210909_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210829_20210909_02_T1/LC08_L2SR_067091_20210829_20210909_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210829_20210909_02_T1/LC08_L2SR_067091_20210829_20210909_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210829_20210909_02_T1/LC08_L2SR_067091_20210829_20210909_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210829_20210909_02_T1/LC08_L2SR_067091_20210829_20210909_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70739901,-43.53104094],[-176.2841752,-43.95205935],[-176.87648517,-45.67075425],[-179.30260245,-45.2523504],[-178.70739901,-43.53104094]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-08-29T21:31:09.972912Z","platform":"landsat-8","proj:bbox":[320385.0,-5058015.0,555915.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":58.07,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021241LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":39.96785066,"view:sun_elevation":27.67445419,"landsat:cloud_cover_land":62.48,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20210822_02_T1","bbox":[-177.7501425133711,-45.684024978641446,-174.6917444467325,-43.517465021358554],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20210822_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210822_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210822_20210831_02_T1/LC08_L2SR_066091_20210822_20210831_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210822_20210831_02_T1/LC08_L2SR_066091_20210822_20210831_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210822_20210831_02_T1/LC08_L2SR_066091_20210822_20210831_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210822_20210831_02_T1/LC08_L2SR_066091_20210822_20210831_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210822_20210831_02_T1/LC08_L2SR_066091_20210822_20210831_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210822_20210831_02_T1/LC08_L2SR_066091_20210822_20210831_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210822_20210831_02_T1/LC08_L2SR_066091_20210822_20210831_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210822_20210831_02_T1/LC08_L2SR_066091_20210822_20210831_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210822_20210831_02_T1/LC08_L2SR_066091_20210822_20210831_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210822_20210831_02_T1/LC08_L2SR_066091_20210822_20210831_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210822_20210831_02_T1/LC08_L2SR_066091_20210822_20210831_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210822_20210831_02_T1/LC08_L2SR_066091_20210822_20210831_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210822_20210831_02_T1/LC08_L2SR_066091_20210822_20210831_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210822_20210831_02_T1/LC08_L2SR_066091_20210822_20210831_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210822_20210831_02_T1/LC08_L2SR_066091_20210822_20210831_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210822_20210831_02_T1/LC08_L2SR_066091_20210822_20210831_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10778756,-43.51900394],[-174.69531252,-43.97194603],[-175.33399745,-45.68253144],[-177.74871413,-45.23124599],[-177.10778756,-43.51900394]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-08-22T21:24:57.146441Z","platform":"landsat-8","proj:bbox":[441585.0,-5059215.0,679815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":70.51,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021234LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":39.20758437,"view:sun_elevation":25.27808317,"landsat:cloud_cover_land":84.85,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20210813_02_T1","bbox":[-179.30910247600508,-45.67345493250352,-176.2859544139137,-43.52823506749648],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20210813_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210813_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210813_20210819_02_T1/LC08_L2SR_067091_20210813_20210819_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210813_20210819_02_T1/LC08_L2SR_067091_20210813_20210819_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210813_20210819_02_T1/LC08_L2SR_067091_20210813_20210819_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210813_20210819_02_T1/LC08_L2SR_067091_20210813_20210819_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210813_20210819_02_T1/LC08_L2SR_067091_20210813_20210819_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210813_20210819_02_T1/LC08_L2SR_067091_20210813_20210819_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210813_20210819_02_T1/LC08_L2SR_067091_20210813_20210819_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210813_20210819_02_T1/LC08_L2SR_067091_20210813_20210819_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210813_20210819_02_T1/LC08_L2SR_067091_20210813_20210819_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210813_20210819_02_T1/LC08_L2SR_067091_20210813_20210819_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210813_20210819_02_T1/LC08_L2SR_067091_20210813_20210819_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210813_20210819_02_T1/LC08_L2SR_067091_20210813_20210819_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210813_20210819_02_T1/LC08_L2SR_067091_20210813_20210819_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210813_20210819_02_T1/LC08_L2SR_067091_20210813_20210819_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210813_20210819_02_T1/LC08_L2SR_067091_20210813_20210819_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210813_20210819_02_T1/LC08_L2SR_067091_20210813_20210819_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71047573,-43.53079153],[-176.28694628,-43.95187035],[-176.87918364,-45.67057487],[-179.30561556,-45.25210644],[-178.71047573,-43.53079153]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-08-13T21:31:05.442523Z","platform":"landsat-8","proj:bbox":[320085.0,-5058015.0,555615.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":90.82,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021225LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":38.24315052,"view:sun_elevation":22.45573625,"landsat:cloud_cover_land":93.07,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20210806_02_T1","bbox":[-177.7539925135611,-45.68400497858505,-174.69559444658577,-43.51753502141495],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20210806_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210806_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210806_20210811_02_T1/LC08_L2SR_066091_20210806_20210811_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210806_20210811_02_T1/LC08_L2SR_066091_20210806_20210811_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210806_20210811_02_T1/LC08_L2SR_066091_20210806_20210811_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210806_20210811_02_T1/LC08_L2SR_066091_20210806_20210811_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210806_20210811_02_T1/LC08_L2SR_066091_20210806_20210811_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210806_20210811_02_T1/LC08_L2SR_066091_20210806_20210811_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210806_20210811_02_T1/LC08_L2SR_066091_20210806_20210811_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210806_20210811_02_T1/LC08_L2SR_066091_20210806_20210811_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210806_20210811_02_T1/LC08_L2SR_066091_20210806_20210811_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210806_20210811_02_T1/LC08_L2SR_066091_20210806_20210811_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210806_20210811_02_T1/LC08_L2SR_066091_20210806_20210811_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210806_20210811_02_T1/LC08_L2SR_066091_20210806_20210811_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210806_20210811_02_T1/LC08_L2SR_066091_20210806_20210811_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210806_20210811_02_T1/LC08_L2SR_066091_20210806_20210811_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210806_20210811_02_T1/LC08_L2SR_066091_20210806_20210811_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210806_20210811_02_T1/LC08_L2SR_066091_20210806_20210811_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.11110383,-43.51884916],[-174.69835016,-43.97181754],[-175.33701545,-45.68229853],[-177.75202783,-45.23099444],[-177.11110383,-43.51884916]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-08-06T21:24:52.134258Z","platform":"landsat-8","proj:bbox":[441285.0,-5059215.0,679515.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":48.08,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021218LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":37.49822235,"view:sun_elevation":20.49851167,"landsat:cloud_cover_land":31.04,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20210728_02_T1","bbox":[-179.3052524761981,-45.673434932678695,-176.28210441376436,-43.528305067321305],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20210728_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210728_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210728_20210804_02_T1/LC08_L2SR_067091_20210728_20210804_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210728_20210804_02_T1/LC08_L2SR_067091_20210728_20210804_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210728_20210804_02_T1/LC08_L2SR_067091_20210728_20210804_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210728_20210804_02_T1/LC08_L2SR_067091_20210728_20210804_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210728_20210804_02_T1/LC08_L2SR_067091_20210728_20210804_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210728_20210804_02_T1/LC08_L2SR_067091_20210728_20210804_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210728_20210804_02_T1/LC08_L2SR_067091_20210728_20210804_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210728_20210804_02_T1/LC08_L2SR_067091_20210728_20210804_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210728_20210804_02_T1/LC08_L2SR_067091_20210728_20210804_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210728_20210804_02_T1/LC08_L2SR_067091_20210728_20210804_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210728_20210804_02_T1/LC08_L2SR_067091_20210728_20210804_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210728_20210804_02_T1/LC08_L2SR_067091_20210728_20210804_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210728_20210804_02_T1/LC08_L2SR_067091_20210728_20210804_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210728_20210804_02_T1/LC08_L2SR_067091_20210728_20210804_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210728_20210804_02_T1/LC08_L2SR_067091_20210728_20210804_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210728_20210804_02_T1/LC08_L2SR_067091_20210728_20210804_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70880743,-43.53092481],[-176.28520828,-43.95209895],[-176.8776468,-45.67061258],[-179.30415724,-45.25204211],[-178.70880743,-43.53092481]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-07-28T21:30:58.994236Z","platform":"landsat-8","proj:bbox":[320385.0,-5058015.0,555915.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":50.6,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021209LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":36.55266932,"view:sun_elevation":18.34720088,"landsat:cloud_cover_land":12.27,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20210721_02_T2","bbox":[-177.7501425133711,-45.684024978641446,-174.6917444467325,-43.517465021358554],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20210721_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210721_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210721_20210729_02_T2/LC08_L2SR_066091_20210721_20210729_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210721_20210729_02_T2/LC08_L2SR_066091_20210721_20210729_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210721_20210729_02_T2/LC08_L2SR_066091_20210721_20210729_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210721_20210729_02_T2/LC08_L2SR_066091_20210721_20210729_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210721_20210729_02_T2/LC08_L2SR_066091_20210721_20210729_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210721_20210729_02_T2/LC08_L2SR_066091_20210721_20210729_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210721_20210729_02_T2/LC08_L2SR_066091_20210721_20210729_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210721_20210729_02_T2/LC08_L2SR_066091_20210721_20210729_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210721_20210729_02_T2/LC08_L2SR_066091_20210721_20210729_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210721_20210729_02_T2/LC08_L2SR_066091_20210721_20210729_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210721_20210729_02_T2/LC08_L2SR_066091_20210721_20210729_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210721_20210729_02_T2/LC08_L2SR_066091_20210721_20210729_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210721_20210729_02_T2/LC08_L2SR_066091_20210721_20210729_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210721_20210729_02_T2/LC08_L2SR_066091_20210721_20210729_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210721_20210729_02_T2/LC08_L2SR_066091_20210721_20210729_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210721_20210729_02_T2/LC08_L2SR_066091_20210721_20210729_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10524283,-43.51937973],[-174.69266262,-43.97252448],[-175.331572,-45.68302456],[-177.74642545,-45.23153393],[-177.10524283,-43.51937973]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-07-21T21:24:44.474525Z","platform":"landsat-8","proj:bbox":[441585.0,-5059215.0,679815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021202LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":35.84542086,"view:sun_elevation":16.98144726,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20210712_02_T1","bbox":[-179.3014124763826,-45.67340493284042,-176.2782544135993,-43.52838506715958],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20210712_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210712_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210712_20210721_02_T1/LC08_L2SR_067091_20210712_20210721_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210712_20210721_02_T1/LC08_L2SR_067091_20210712_20210721_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210712_20210721_02_T1/LC08_L2SR_067091_20210712_20210721_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210712_20210721_02_T1/LC08_L2SR_067091_20210712_20210721_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210712_20210721_02_T1/LC08_L2SR_067091_20210712_20210721_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210712_20210721_02_T1/LC08_L2SR_067091_20210712_20210721_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210712_20210721_02_T1/LC08_L2SR_067091_20210712_20210721_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210712_20210721_02_T1/LC08_L2SR_067091_20210712_20210721_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210712_20210721_02_T1/LC08_L2SR_067091_20210712_20210721_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210712_20210721_02_T1/LC08_L2SR_067091_20210712_20210721_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210712_20210721_02_T1/LC08_L2SR_067091_20210712_20210721_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210712_20210721_02_T1/LC08_L2SR_067091_20210712_20210721_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210712_20210721_02_T1/LC08_L2SR_067091_20210712_20210721_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210712_20210721_02_T1/LC08_L2SR_067091_20210712_20210721_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210712_20210721_02_T1/LC08_L2SR_067091_20210712_20210721_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210712_20210721_02_T1/LC08_L2SR_067091_20210712_20210721_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70549883,-43.5306527],[-176.28239267,-43.95182513],[-176.87497291,-45.6704266],[-179.30098323,-45.25185553],[-178.70549883,-43.5306527]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-07-12T21:30:51.610757Z","platform":"landsat-8","proj:bbox":[320685.0,-5058015.0,556215.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":28.99,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021193LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":34.98662507,"view:sun_elevation":15.66378849,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20210705_02_T2","bbox":[-177.7578425138709,-45.68397497852859,-174.70328444632852,-43.517675021471405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20210705_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210705_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210705_20210713_02_T2/LC08_L2SR_066091_20210705_20210713_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210705_20210713_02_T2/LC08_L2SR_066091_20210705_20210713_02_T2_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210705_20210713_02_T2/LC08_L2SR_066091_20210705_20210713_02_T2_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210705_20210713_02_T2/LC08_L2SR_066091_20210705_20210713_02_T2_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210705_20210713_02_T2/LC08_L2SR_066091_20210705_20210713_02_T2_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210705_20210713_02_T2/LC08_L2SR_066091_20210705_20210713_02_T2_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210705_20210713_02_T2/LC08_L2SR_066091_20210705_20210713_02_T2_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210705_20210713_02_T2/LC08_L2SR_066091_20210705_20210713_02_T2_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210705_20210713_02_T2/LC08_L2SR_066091_20210705_20210713_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210705_20210713_02_T2/LC08_L2SR_066091_20210705_20210713_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210705_20210713_02_T2/LC08_L2SR_066091_20210705_20210713_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210705_20210713_02_T2/LC08_L2SR_066091_20210705_20210713_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210705_20210713_02_T2/LC08_L2SR_066091_20210705_20210713_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210705_20210713_02_T2/LC08_L2SR_066091_20210705_20210713_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210705_20210713_02_T2/LC08_L2SR_066091_20210705_20210713_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210705_20210713_02_T2/LC08_L2SR_066091_20210705_20210713_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.11634438,-43.51949732],[-174.70422894,-43.97226219],[-175.34286645,-45.68276193],[-177.75725795,-45.23165701],[-177.11634438,-43.51949732]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-07-05T21:24:40.476269Z","platform":"landsat-8","proj:bbox":[440985.0,-5059215.0,678915.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":94.7,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021186LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":34.38778629,"view:sun_elevation":14.99045294,"landsat:cloud_cover_land":99.87,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20210626_02_T2","bbox":[-179.32449247523212,-45.67357493177655,-176.30521440627894,-43.53064506822345],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20210626_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210626_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210626_20210707_02_T2/LC08_L2SR_067091_20210626_20210707_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210626_20210707_02_T2/LC08_L2SR_067091_20210626_20210707_02_T2_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,318885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210626_20210707_02_T2/LC08_L2SR_067091_20210626_20210707_02_T2_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,318885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210626_20210707_02_T2/LC08_L2SR_067091_20210626_20210707_02_T2_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,318885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210626_20210707_02_T2/LC08_L2SR_067091_20210626_20210707_02_T2_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,318885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210626_20210707_02_T2/LC08_L2SR_067091_20210626_20210707_02_T2_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,318885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210626_20210707_02_T2/LC08_L2SR_067091_20210626_20210707_02_T2_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,318885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210626_20210707_02_T2/LC08_L2SR_067091_20210626_20210707_02_T2_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,318885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210626_20210707_02_T2/LC08_L2SR_067091_20210626_20210707_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210626_20210707_02_T2/LC08_L2SR_067091_20210626_20210707_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210626_20210707_02_T2/LC08_L2SR_067091_20210626_20210707_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210626_20210707_02_T2/LC08_L2SR_067091_20210626_20210707_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,318885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210626_20210707_02_T2/LC08_L2SR_067091_20210626_20210707_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,318885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210626_20210707_02_T2/LC08_L2SR_067091_20210626_20210707_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210626_20210707_02_T2/LC08_L2SR_067091_20210626_20210707_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,318885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210626_20210707_02_T2/LC08_L2SR_067091_20210626_20210707_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.72898904,-43.53108595],[-176.30614204,-43.95187193],[-176.89812706,-45.67113099],[-179.323897,-45.25296478],[-178.72898904,-43.53108595]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-06-26T21:30:50.107437Z","platform":"landsat-8","proj:bbox":[318885.0,-5058015.0,554115.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":28.5,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021177LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":33.75240833,"view:sun_elevation":14.58875586,"landsat:cloud_cover_land":99.49,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20210619_02_T2","bbox":[-177.77710251460664,-45.68384497824547,-174.71867444571234,-43.51796502175453],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20210619_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210619_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210619_20210629_02_T2/LC08_L2SR_066091_20210619_20210629_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210619_20210629_02_T2/LC08_L2SR_066091_20210619_20210629_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210619_20210629_02_T2/LC08_L2SR_066091_20210619_20210629_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210619_20210629_02_T2/LC08_L2SR_066091_20210619_20210629_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210619_20210629_02_T2/LC08_L2SR_066091_20210619_20210629_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210619_20210629_02_T2/LC08_L2SR_066091_20210619_20210629_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210619_20210629_02_T2/LC08_L2SR_066091_20210619_20210629_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210619_20210629_02_T2/LC08_L2SR_066091_20210619_20210629_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210619_20210629_02_T2/LC08_L2SR_066091_20210619_20210629_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210619_20210629_02_T2/LC08_L2SR_066091_20210619_20210629_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210619_20210629_02_T2/LC08_L2SR_066091_20210619_20210629_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210619_20210629_02_T2/LC08_L2SR_066091_20210619_20210629_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210619_20210629_02_T2/LC08_L2SR_066091_20210619_20210629_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210619_20210629_02_T2/LC08_L2SR_066091_20210619_20210629_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210619_20210629_02_T2/LC08_L2SR_066091_20210619_20210629_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210619_20210629_02_T2/LC08_L2SR_066091_20210619_20210629_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.13403994,-43.51945207],[-174.72209803,-43.97171831],[-175.36025549,-45.68199182],[-177.77447979,-45.23140646],[-177.13403994,-43.51945207]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-06-19T21:24:37.715009Z","platform":"landsat-8","proj:bbox":[439485.0,-5059215.0,677715.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":51.59,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021170LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":33.39590295,"view:sun_elevation":14.63290551,"landsat:cloud_cover_land":99.99,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20210610_02_T1","bbox":[-179.33988247452157,-45.67364493108093,-176.31676440687116,-43.53035506891907],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20210610_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210610_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210610_20210621_02_T1/LC08_L2SR_067091_20210610_20210621_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210610_20210621_02_T1/LC08_L2SR_067091_20210610_20210621_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,317685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210610_20210621_02_T1/LC08_L2SR_067091_20210610_20210621_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,317685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210610_20210621_02_T1/LC08_L2SR_067091_20210610_20210621_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,317685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210610_20210621_02_T1/LC08_L2SR_067091_20210610_20210621_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,317685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210610_20210621_02_T1/LC08_L2SR_067091_20210610_20210621_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,317685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210610_20210621_02_T1/LC08_L2SR_067091_20210610_20210621_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,317685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210610_20210621_02_T1/LC08_L2SR_067091_20210610_20210621_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,317685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210610_20210621_02_T1/LC08_L2SR_067091_20210610_20210621_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210610_20210621_02_T1/LC08_L2SR_067091_20210610_20210621_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210610_20210621_02_T1/LC08_L2SR_067091_20210610_20210621_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210610_20210621_02_T1/LC08_L2SR_067091_20210610_20210621_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,317685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210610_20210621_02_T1/LC08_L2SR_067091_20210610_20210621_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,317685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210610_20210621_02_T1/LC08_L2SR_067091_20210610_20210621_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210610_20210621_02_T1/LC08_L2SR_067091_20210610_20210621_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,317685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210610_20210621_02_T1/LC08_L2SR_067091_20210610_20210621_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.74230439,-43.53074824],[-176.31950404,-43.95136041],[-176.91109358,-45.67104906],[-179.33680896,-45.25307466],[-178.74230439,-43.53074824]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-06-10T21:30:45.775352Z","platform":"landsat-8","proj:bbox":[317685.0,-5058015.0,553215.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":35.73,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021161LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":33.1543417,"view:sun_elevation":15.13567208,"landsat:cloud_cover_land":9.76,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20210603_02_T1","bbox":[-177.78481251497152,-45.68379497812414,-174.72637444542406,-43.51810502187586],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20210603_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210603_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210603_20210614_02_T1/LC08_L2SR_066091_20210603_20210614_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210603_20210614_02_T1/LC08_L2SR_066091_20210603_20210614_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,438885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210603_20210614_02_T1/LC08_L2SR_066091_20210603_20210614_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,438885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210603_20210614_02_T1/LC08_L2SR_066091_20210603_20210614_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,438885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210603_20210614_02_T1/LC08_L2SR_066091_20210603_20210614_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,438885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210603_20210614_02_T1/LC08_L2SR_066091_20210603_20210614_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,438885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210603_20210614_02_T1/LC08_L2SR_066091_20210603_20210614_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,438885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210603_20210614_02_T1/LC08_L2SR_066091_20210603_20210614_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,438885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210603_20210614_02_T1/LC08_L2SR_066091_20210603_20210614_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210603_20210614_02_T1/LC08_L2SR_066091_20210603_20210614_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210603_20210614_02_T1/LC08_L2SR_066091_20210603_20210614_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210603_20210614_02_T1/LC08_L2SR_066091_20210603_20210614_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,438885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210603_20210614_02_T1/LC08_L2SR_066091_20210603_20210614_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,438885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210603_20210614_02_T1/LC08_L2SR_066091_20210603_20210614_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210603_20210614_02_T1/LC08_L2SR_066091_20210603_20210614_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,438885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210603_20210614_02_T1/LC08_L2SR_066091_20210603_20210614_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.14150521,-43.5194417],[-174.72948932,-43.97153247],[-175.36747439,-45.68172509],[-177.78176724,-45.23130707],[-177.14150521,-43.5194417]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-06-03T21:24:32.147069Z","platform":"landsat-8","proj:bbox":[438885.0,-5059215.0,677115.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":39.43,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021154LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":33.16649121,"view:sun_elevation":15.8554787,"landsat:cloud_cover_land":45.02,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20210525_02_T1","bbox":[-179.33988247448153,-45.67366493108093,-176.32062440690348,-43.53035506891907],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20210525_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210525_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210525_20210529_02_T1/LC08_L2SR_067091_20210525_20210529_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210525_20210529_02_T1/LC08_L2SR_067091_20210525_20210529_02_T1_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,317685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210525_20210529_02_T1/LC08_L2SR_067091_20210525_20210529_02_T1_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,317685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210525_20210529_02_T1/LC08_L2SR_067091_20210525_20210529_02_T1_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,317685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210525_20210529_02_T1/LC08_L2SR_067091_20210525_20210529_02_T1_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,317685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210525_20210529_02_T1/LC08_L2SR_067091_20210525_20210529_02_T1_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,317685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210525_20210529_02_T1/LC08_L2SR_067091_20210525_20210529_02_T1_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,317685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210525_20210529_02_T1/LC08_L2SR_067091_20210525_20210529_02_T1_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,317685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210525_20210529_02_T1/LC08_L2SR_067091_20210525_20210529_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210525_20210529_02_T1/LC08_L2SR_067091_20210525_20210529_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210525_20210529_02_T1/LC08_L2SR_067091_20210525_20210529_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210525_20210529_02_T1/LC08_L2SR_067091_20210525_20210529_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,317685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210525_20210529_02_T1/LC08_L2SR_067091_20210525_20210529_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,317685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210525_20210529_02_T1/LC08_L2SR_067091_20210525_20210529_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210525_20210529_02_T1/LC08_L2SR_067091_20210525_20210529_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,317685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210525_20210529_02_T1/LC08_L2SR_067091_20210525_20210529_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.74430057,-43.53062167],[-176.32129645,-43.95126203],[-176.9128948,-45.67092609],[-179.33880323,-45.25292106],[-178.74430057,-43.53062167]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-05-25T21:30:38.620406Z","platform":"landsat-8","proj:bbox":[317685.0,-5058015.0,552915.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":36.86,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021145LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":33.48328663,"view:sun_elevation":17.15945739,"landsat:cloud_cover_land":17.37,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20210518_02_T1","bbox":[-177.780962514785,-45.68381497818289,-174.72252444556804,-43.51803502181711],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20210518_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210518_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210518_20210528_02_T1/LC08_L2SR_066091_20210518_20210528_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210518_20210528_02_T1/LC08_L2SR_066091_20210518_20210528_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210518_20210528_02_T1/LC08_L2SR_066091_20210518_20210528_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210518_20210528_02_T1/LC08_L2SR_066091_20210518_20210528_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210518_20210528_02_T1/LC08_L2SR_066091_20210518_20210528_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210518_20210528_02_T1/LC08_L2SR_066091_20210518_20210528_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210518_20210528_02_T1/LC08_L2SR_066091_20210518_20210528_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210518_20210528_02_T1/LC08_L2SR_066091_20210518_20210528_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210518_20210528_02_T1/LC08_L2SR_066091_20210518_20210528_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210518_20210528_02_T1/LC08_L2SR_066091_20210518_20210528_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210518_20210528_02_T1/LC08_L2SR_066091_20210518_20210528_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210518_20210528_02_T1/LC08_L2SR_066091_20210518_20210528_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210518_20210528_02_T1/LC08_L2SR_066091_20210518_20210528_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210518_20210528_02_T1/LC08_L2SR_066091_20210518_20210528_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210518_20210528_02_T1/LC08_L2SR_066091_20210518_20210528_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210518_20210528_02_T1/LC08_L2SR_066091_20210518_20210528_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.13845727,-43.5197284],[-174.72610369,-43.97197671],[-175.36415238,-45.68217484],[-177.77876228,-45.23159649],[-177.13845727,-43.5197284]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-05-18T21:24:23.751735Z","platform":"landsat-8","proj:bbox":[439185.0,-5059215.0,677415.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":39.26,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021138LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":33.97855387,"view:sun_elevation":18.44247025,"landsat:cloud_cover_land":10.19,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20210509_02_T2","bbox":[-179.3321824748798,-45.67359493143581,-176.30906440657415,-43.53049506856419],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20210509_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210509_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210509_20210518_02_T2/LC08_L2SR_067091_20210509_20210518_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210509_20210518_02_T2/LC08_L2SR_067091_20210509_20210518_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210509_20210518_02_T2/LC08_L2SR_067091_20210509_20210518_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210509_20210518_02_T2/LC08_L2SR_067091_20210509_20210518_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210509_20210518_02_T2/LC08_L2SR_067091_20210509_20210518_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210509_20210518_02_T2/LC08_L2SR_067091_20210509_20210518_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210509_20210518_02_T2/LC08_L2SR_067091_20210509_20210518_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210509_20210518_02_T2/LC08_L2SR_067091_20210509_20210518_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210509_20210518_02_T2/LC08_L2SR_067091_20210509_20210518_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210509_20210518_02_T2/LC08_L2SR_067091_20210509_20210518_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210509_20210518_02_T2/LC08_L2SR_067091_20210509_20210518_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210509_20210518_02_T2/LC08_L2SR_067091_20210509_20210518_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210509_20210518_02_T2/LC08_L2SR_067091_20210509_20210518_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210509_20210518_02_T2/LC08_L2SR_067091_20210509_20210518_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210509_20210518_02_T2/LC08_L2SR_067091_20210509_20210518_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210509_20210518_02_T2/LC08_L2SR_067091_20210509_20210518_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.73454027,-43.53072142],[-176.31116882,-43.95164878],[-176.90309057,-45.67095495],[-179.32936198,-45.25265699],[-178.73454027,-43.53072142]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-05-09T21:30:28.446753Z","platform":"landsat-8","proj:bbox":[318285.0,-5058015.0,553815.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":87.87,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021129LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":34.9552258,"view:sun_elevation":20.38619848,"landsat:cloud_cover_land":99.99,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20210502_02_T2","bbox":[-177.72703251242802,-45.68417497896924,-174.67250444750982,-43.517105021030765],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20210502_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210502_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210502_20210508_02_T2/LC08_L2SR_066091_20210502_20210508_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210502_20210508_02_T2/LC08_L2SR_066091_20210502_20210508_02_T2_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210502_20210508_02_T2/LC08_L2SR_066091_20210502_20210508_02_T2_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210502_20210508_02_T2/LC08_L2SR_066091_20210502_20210508_02_T2_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210502_20210508_02_T2/LC08_L2SR_066091_20210502_20210508_02_T2_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210502_20210508_02_T2/LC08_L2SR_066091_20210502_20210508_02_T2_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210502_20210508_02_T2/LC08_L2SR_066091_20210502_20210508_02_T2_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210502_20210508_02_T2/LC08_L2SR_066091_20210502_20210508_02_T2_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210502_20210508_02_T2/LC08_L2SR_066091_20210502_20210508_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210502_20210508_02_T2/LC08_L2SR_066091_20210502_20210508_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210502_20210508_02_T2/LC08_L2SR_066091_20210502_20210508_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210502_20210508_02_T2/LC08_L2SR_066091_20210502_20210508_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210502_20210508_02_T2/LC08_L2SR_066091_20210502_20210508_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210502_20210508_02_T2/LC08_L2SR_066091_20210502_20210508_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210502_20210508_02_T2/LC08_L2SR_066091_20210502_20210508_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210502_20210508_02_T2/LC08_L2SR_066091_20210502_20210508_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.08696398,-43.51963539],[-174.67454196,-43.97152428],[-175.31171958,-45.68281718],[-177.72638318,-45.23257441],[-177.08696398,-43.51963539]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-05-02T21:24:17.597883Z","platform":"landsat-8","proj:bbox":[443385.0,-5059215.0,681315.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":53.91,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021122LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":35.93026745,"view:sun_elevation":22.11532556,"landsat:cloud_cover_land":77.25,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20210423_02_T1","bbox":[-179.2859124678253,-45.67063493352654,-176.2667344047518,-43.531365066473455],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20210423_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210423_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210423_20210501_02_T1/LC08_L2SR_067091_20210423_20210501_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210423_20210501_02_T1/LC08_L2SR_067091_20210423_20210501_02_T1_SR_B1.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210423_20210501_02_T1/LC08_L2SR_067091_20210423_20210501_02_T1_SR_B2.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210423_20210501_02_T1/LC08_L2SR_067091_20210423_20210501_02_T1_SR_B3.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210423_20210501_02_T1/LC08_L2SR_067091_20210423_20210501_02_T1_SR_B4.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210423_20210501_02_T1/LC08_L2SR_067091_20210423_20210501_02_T1_SR_B5.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210423_20210501_02_T1/LC08_L2SR_067091_20210423_20210501_02_T1_SR_B6.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210423_20210501_02_T1/LC08_L2SR_067091_20210423_20210501_02_T1_SR_B7.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210423_20210501_02_T1/LC08_L2SR_067091_20210423_20210501_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210423_20210501_02_T1/LC08_L2SR_067091_20210423_20210501_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210423_20210501_02_T1/LC08_L2SR_067091_20210423_20210501_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210423_20210501_02_T1/LC08_L2SR_067091_20210423_20210501_02_T1_QA_PIXEL.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210423_20210501_02_T1/LC08_L2SR_067091_20210423_20210501_02_T1_QA_RADSAT.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210423_20210501_02_T1/LC08_L2SR_067091_20210423_20210501_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210423_20210501_02_T1/LC08_L2SR_067091_20210423_20210501_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210423_20210501_02_T1/LC08_L2SR_067091_20210423_20210501_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.69052493,-43.53155371],[-176.26718382,-43.95147466],[-176.85806275,-45.67001433],[-179.28428189,-45.25269089],[-178.69052493,-43.53155371]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-04-23T21:30:34.052079Z","platform":"landsat-8","proj:bbox":[321885.0,-5057715.0,557115.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":94.1,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021113LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":37.56368761,"view:sun_elevation":24.51246161,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20210416_02_T1","bbox":[-177.7270325122727,-45.68417497896924,-174.66865444765213,-43.51702502103076],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20210416_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210416_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210416_20210424_02_T1/LC08_L2SR_066091_20210416_20210424_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210416_20210424_02_T1/LC08_L2SR_066091_20210416_20210424_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210416_20210424_02_T1/LC08_L2SR_066091_20210416_20210424_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210416_20210424_02_T1/LC08_L2SR_066091_20210416_20210424_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210416_20210424_02_T1/LC08_L2SR_066091_20210416_20210424_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210416_20210424_02_T1/LC08_L2SR_066091_20210416_20210424_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210416_20210424_02_T1/LC08_L2SR_066091_20210416_20210424_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210416_20210424_02_T1/LC08_L2SR_066091_20210416_20210424_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210416_20210424_02_T1/LC08_L2SR_066091_20210416_20210424_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210416_20210424_02_T1/LC08_L2SR_066091_20210416_20210424_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210416_20210424_02_T1/LC08_L2SR_066091_20210416_20210424_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210416_20210424_02_T1/LC08_L2SR_066091_20210416_20210424_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210416_20210424_02_T1/LC08_L2SR_066091_20210416_20210424_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210416_20210424_02_T1/LC08_L2SR_066091_20210416_20210424_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210416_20210424_02_T1/LC08_L2SR_066091_20210416_20210424_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210416_20210424_02_T1/LC08_L2SR_066091_20210416_20210424_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.08559575,-43.5191975],[-174.67288007,-43.97125456],[-175.31017513,-45.68255096],[-177.72512948,-45.23213651],[-177.08559575,-43.5191975]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-04-16T21:24:26.863958Z","platform":"landsat-8","proj:bbox":[443385.0,-5059215.0,681615.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":52.26,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021106LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":39.09109909,"view:sun_elevation":26.49492144,"landsat:cloud_cover_land":5.62,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20210407_02_T1","bbox":[-179.2782124681983,-45.670554933907226,-176.25518441269696,-43.528815066092776],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20210407_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210407_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210407_20210415_02_T1/LC08_L2SR_067091_20210407_20210415_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210407_20210415_02_T1/LC08_L2SR_067091_20210407_20210415_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210407_20210415_02_T1/LC08_L2SR_067091_20210407_20210415_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210407_20210415_02_T1/LC08_L2SR_067091_20210407_20210415_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210407_20210415_02_T1/LC08_L2SR_067091_20210407_20210415_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210407_20210415_02_T1/LC08_L2SR_067091_20210407_20210415_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210407_20210415_02_T1/LC08_L2SR_067091_20210407_20210415_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210407_20210415_02_T1/LC08_L2SR_067091_20210407_20210415_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210407_20210415_02_T1/LC08_L2SR_067091_20210407_20210415_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210407_20210415_02_T1/LC08_L2SR_067091_20210407_20210415_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210407_20210415_02_T1/LC08_L2SR_067091_20210407_20210415_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210407_20210415_02_T1/LC08_L2SR_067091_20210407_20210415_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210407_20210415_02_T1/LC08_L2SR_067091_20210407_20210415_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210407_20210415_02_T1/LC08_L2SR_067091_20210407_20210415_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210407_20210415_02_T1/LC08_L2SR_067091_20210407_20210415_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210407_20210415_02_T1/LC08_L2SR_067091_20210407_20210415_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.68207737,-43.53133941],[-176.25861655,-43.95146798],[-176.84983516,-45.66972187],[-179.27618526,-45.25218133],[-178.68207737,-43.53133941]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-04-07T21:30:41.340387Z","platform":"landsat-8","proj:bbox":[322485.0,-5057715.0,558015.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":3.28,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021097LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":41.36025354,"view:sun_elevation":29.13955156,"landsat:cloud_cover_land":15.96,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20210331_02_T2","bbox":[-177.71547251172643,-45.68424497913123,-174.65711444811706,-43.516805020868766],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20210331_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210331_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210331_20210409_02_T2/LC08_L2SR_066091_20210331_20210409_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210331_20210409_02_T2/LC08_L2SR_066091_20210331_20210409_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210331_20210409_02_T2/LC08_L2SR_066091_20210331_20210409_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210331_20210409_02_T2/LC08_L2SR_066091_20210331_20210409_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210331_20210409_02_T2/LC08_L2SR_066091_20210331_20210409_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210331_20210409_02_T2/LC08_L2SR_066091_20210331_20210409_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210331_20210409_02_T2/LC08_L2SR_066091_20210331_20210409_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210331_20210409_02_T2/LC08_L2SR_066091_20210331_20210409_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210331_20210409_02_T2/LC08_L2SR_066091_20210331_20210409_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210331_20210409_02_T2/LC08_L2SR_066091_20210331_20210409_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210331_20210409_02_T2/LC08_L2SR_066091_20210331_20210409_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210331_20210409_02_T2/LC08_L2SR_066091_20210331_20210409_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210331_20210409_02_T2/LC08_L2SR_066091_20210331_20210409_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210331_20210409_02_T2/LC08_L2SR_066091_20210331_20210409_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210331_20210409_02_T2/LC08_L2SR_066091_20210331_20210409_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210331_20210409_02_T2/LC08_L2SR_066091_20210331_20210409_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.07331229,-43.51888397],[-174.66068143,-43.97136271],[-175.2984787,-45.68273377],[-177.71335163,-45.23189748],[-177.07331229,-43.51888397]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-03-31T21:24:32.775313Z","platform":"landsat-8","proj:bbox":[444285.0,-5059215.0,682515.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":24.44,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021090LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":43.34060881,"view:sun_elevation":31.24010976,"landsat:cloud_cover_land":13.43,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20210322_02_T1","bbox":[-179.262822468911,-45.67045493458478,-176.23977441212807,-43.52909506541521],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20210322_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210322_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210322_20210401_02_T1/LC08_L2SR_067091_20210322_20210401_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210322_20210401_02_T1/LC08_L2SR_067091_20210322_20210401_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210322_20210401_02_T1/LC08_L2SR_067091_20210322_20210401_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210322_20210401_02_T1/LC08_L2SR_067091_20210322_20210401_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210322_20210401_02_T1/LC08_L2SR_067091_20210322_20210401_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210322_20210401_02_T1/LC08_L2SR_067091_20210322_20210401_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210322_20210401_02_T1/LC08_L2SR_067091_20210322_20210401_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210322_20210401_02_T1/LC08_L2SR_067091_20210322_20210401_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210322_20210401_02_T1/LC08_L2SR_067091_20210322_20210401_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210322_20210401_02_T1/LC08_L2SR_067091_20210322_20210401_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210322_20210401_02_T1/LC08_L2SR_067091_20210322_20210401_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210322_20210401_02_T1/LC08_L2SR_067091_20210322_20210401_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210322_20210401_02_T1/LC08_L2SR_067091_20210322_20210401_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210322_20210401_02_T1/LC08_L2SR_067091_20210322_20210401_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210322_20210401_02_T1/LC08_L2SR_067091_20210322_20210401_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210322_20210401_02_T1/LC08_L2SR_067091_20210322_20210401_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.66564276,-43.53150422],[-176.24239572,-43.95197432],[-176.83420244,-45.6698431],[-179.26033858,-45.25195398],[-178.66564276,-43.53150422]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-03-22T21:30:45.590736Z","platform":"landsat-8","proj:bbox":[323685.0,-5057715.0,559215.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":90.74,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021081LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":46.11239778,"view:sun_elevation":33.94967366,"landsat:cloud_cover_land":86.84,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20210315_02_T1","bbox":[-177.7000625111184,-45.684344979343145,-174.64557444861728,-43.516585020656855],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20210315_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210315_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210315_20210328_02_T1/LC08_L2SR_066091_20210315_20210328_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210315_20210328_02_T1/LC08_L2SR_066091_20210315_20210328_02_T1_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,445485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210315_20210328_02_T1/LC08_L2SR_066091_20210315_20210328_02_T1_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,445485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210315_20210328_02_T1/LC08_L2SR_066091_20210315_20210328_02_T1_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,445485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210315_20210328_02_T1/LC08_L2SR_066091_20210315_20210328_02_T1_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,445485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210315_20210328_02_T1/LC08_L2SR_066091_20210315_20210328_02_T1_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,445485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210315_20210328_02_T1/LC08_L2SR_066091_20210315_20210328_02_T1_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,445485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210315_20210328_02_T1/LC08_L2SR_066091_20210315_20210328_02_T1_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,445485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210315_20210328_02_T1/LC08_L2SR_066091_20210315_20210328_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210315_20210328_02_T1/LC08_L2SR_066091_20210315_20210328_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210315_20210328_02_T1/LC08_L2SR_066091_20210315_20210328_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210315_20210328_02_T1/LC08_L2SR_066091_20210315_20210328_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,445485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210315_20210328_02_T1/LC08_L2SR_066091_20210315_20210328_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,445485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210315_20210328_02_T1/LC08_L2SR_066091_20210315_20210328_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210315_20210328_02_T1/LC08_L2SR_066091_20210315_20210328_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,445485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210315_20210328_02_T1/LC08_L2SR_066091_20210315_20210328_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.05833373,-43.51858755],[-174.6462577,-43.97148878],[-175.28468501,-45.68313463],[-177.69900648,-45.23186377],[-177.05833373,-43.51858755]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-03-15T21:24:36.746101Z","platform":"landsat-8","proj:bbox":[445485.0,-5059215.0,683415.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":9.17,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021074LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":48.39904141,"view:sun_elevation":36.04873517,"landsat:cloud_cover_land":0.22,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20210306_02_T2","bbox":[-179.2667824779851,-45.67318493434092,-176.24359440398237,-43.53172506565909],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20210306_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210306_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210306_20210317_02_T2/LC08_L2SR_067091_20210306_20210317_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210306_20210317_02_T2/LC08_L2SR_067091_20210306_20210317_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210306_20210317_02_T2/LC08_L2SR_067091_20210306_20210317_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210306_20210317_02_T2/LC08_L2SR_067091_20210306_20210317_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210306_20210317_02_T2/LC08_L2SR_067091_20210306_20210317_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210306_20210317_02_T2/LC08_L2SR_067091_20210306_20210317_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210306_20210317_02_T2/LC08_L2SR_067091_20210306_20210317_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210306_20210317_02_T2/LC08_L2SR_067091_20210306_20210317_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210306_20210317_02_T2/LC08_L2SR_067091_20210306_20210317_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210306_20210317_02_T2/LC08_L2SR_067091_20210306_20210317_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210306_20210317_02_T2/LC08_L2SR_067091_20210306_20210317_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210306_20210317_02_T2/LC08_L2SR_067091_20210306_20210317_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210306_20210317_02_T2/LC08_L2SR_067091_20210306_20210317_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210306_20210317_02_T2/LC08_L2SR_067091_20210306_20210317_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210306_20210317_02_T2/LC08_L2SR_067091_20210306_20210317_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210306_20210317_02_T2/LC08_L2SR_067091_20210306_20210317_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.66807175,-43.53183717],[-176.2452191,-43.95232101],[-176.83718884,-45.67034451],[-179.26293821,-45.25244657],[-178.66807175,-43.53183717]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-03-06T21:30:53.082553Z","platform":"landsat-8","proj:bbox":[323385.0,-5058015.0,558915.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":64.69,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021065LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":51.42908922,"view:sun_elevation":38.69804459,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20210227_02_T1","bbox":[-177.71547251172643,-45.68424497913123,-174.65711444811706,-43.516805020868766],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20210227_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210227_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210227_20210311_02_T1/LC08_L2SR_066091_20210227_20210311_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210227_20210311_02_T1/LC08_L2SR_066091_20210227_20210311_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210227_20210311_02_T1/LC08_L2SR_066091_20210227_20210311_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210227_20210311_02_T1/LC08_L2SR_066091_20210227_20210311_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210227_20210311_02_T1/LC08_L2SR_066091_20210227_20210311_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210227_20210311_02_T1/LC08_L2SR_066091_20210227_20210311_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210227_20210311_02_T1/LC08_L2SR_066091_20210227_20210311_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210227_20210311_02_T1/LC08_L2SR_066091_20210227_20210311_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210227_20210311_02_T1/LC08_L2SR_066091_20210227_20210311_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210227_20210311_02_T1/LC08_L2SR_066091_20210227_20210311_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210227_20210311_02_T1/LC08_L2SR_066091_20210227_20210311_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210227_20210311_02_T1/LC08_L2SR_066091_20210227_20210311_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210227_20210311_02_T1/LC08_L2SR_066091_20210227_20210311_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210227_20210311_02_T1/LC08_L2SR_066091_20210227_20210311_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210227_20210311_02_T1/LC08_L2SR_066091_20210227_20210311_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210227_20210311_02_T1/LC08_L2SR_066091_20210227_20210311_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.07170813,-43.51870638],[-174.6598556,-43.9713191],[-175.29811418,-45.68276664],[-177.71222267,-45.23179945],[-177.07170813,-43.51870638]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-02-27T21:24:45.912475Z","platform":"landsat-8","proj:bbox":[444285.0,-5059215.0,682515.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":7.71,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021058LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":53.80279762,"view:sun_elevation":40.70303207,"landsat:cloud_cover_land":16.95,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20210218_02_T2","bbox":[-179.27447247764155,-45.673234934042526,-176.2512944125579,-43.528885065957475],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20210218_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210218_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210218_20210302_02_T2/LC08_L2SR_067091_20210218_20210302_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210218_20210302_02_T2/LC08_L2SR_067091_20210218_20210302_02_T2_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210218_20210302_02_T2/LC08_L2SR_067091_20210218_20210302_02_T2_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210218_20210302_02_T2/LC08_L2SR_067091_20210218_20210302_02_T2_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210218_20210302_02_T2/LC08_L2SR_067091_20210218_20210302_02_T2_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210218_20210302_02_T2/LC08_L2SR_067091_20210218_20210302_02_T2_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210218_20210302_02_T2/LC08_L2SR_067091_20210218_20210302_02_T2_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210218_20210302_02_T2/LC08_L2SR_067091_20210218_20210302_02_T2_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210218_20210302_02_T2/LC08_L2SR_067091_20210218_20210302_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210218_20210302_02_T2/LC08_L2SR_067091_20210218_20210302_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210218_20210302_02_T2/LC08_L2SR_067091_20210218_20210302_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210218_20210302_02_T2/LC08_L2SR_067091_20210218_20210302_02_T2_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210218_20210302_02_T2/LC08_L2SR_067091_20210218_20210302_02_T2_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210218_20210302_02_T2/LC08_L2SR_067091_20210218_20210302_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210218_20210302_02_T2/LC08_L2SR_067091_20210218_20210302_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210218_20210302_02_T2/LC08_L2SR_067091_20210218_20210302_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.67586687,-43.53157744],[-176.25323983,-43.95200083],[-176.84515471,-45.67026696],[-179.27067377,-45.25242996],[-178.67586687,-43.53157744]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-02-18T21:31:00.394532Z","platform":"landsat-8","proj:bbox":[322785.0,-5058015.0,558315.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021049LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":56.7671994,"view:sun_elevation":43.18636863,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20210211_02_T2","bbox":[-177.71932251189406,-45.68422497907745,-174.6609644479437,-43.51688502092255],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20210211_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210211_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210211_20210302_02_T2/LC08_L2SR_066091_20210211_20210302_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210211_20210302_02_T2/LC08_L2SR_066091_20210211_20210302_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210211_20210302_02_T2/LC08_L2SR_066091_20210211_20210302_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210211_20210302_02_T2/LC08_L2SR_066091_20210211_20210302_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210211_20210302_02_T2/LC08_L2SR_066091_20210211_20210302_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210211_20210302_02_T2/LC08_L2SR_066091_20210211_20210302_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210211_20210302_02_T2/LC08_L2SR_066091_20210211_20210302_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210211_20210302_02_T2/LC08_L2SR_066091_20210211_20210302_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210211_20210302_02_T2/LC08_L2SR_066091_20210211_20210302_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210211_20210302_02_T2/LC08_L2SR_066091_20210211_20210302_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210211_20210302_02_T2/LC08_L2SR_066091_20210211_20210302_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210211_20210302_02_T2/LC08_L2SR_066091_20210211_20210302_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210211_20210302_02_T2/LC08_L2SR_066091_20210211_20210302_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210211_20210302_02_T2/LC08_L2SR_066091_20210211_20210302_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210211_20210302_02_T2/LC08_L2SR_066091_20210211_20210302_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210211_20210302_02_T2/LC08_L2SR_066091_20210211_20210302_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.07509885,-43.51895274],[-174.66339953,-43.97161487],[-175.30176967,-45.6830518],[-177.71570928,-45.23202902],[-177.07509885,-43.51895274]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-02-11T21:24:51.754709Z","platform":"landsat-8","proj:bbox":[443985.0,-5059215.0,682215.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":37.01,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021042LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":58.93052289,"view:sun_elevation":45.03678729,"landsat:cloud_cover_land":28.73,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20210202_02_T2","bbox":[-179.27063247777082,-45.67323493416846,-176.25129440415557,-43.531655065831536],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20210202_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210202_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210202_20210303_02_T2/LC08_L2SR_067091_20210202_20210303_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210202_20210303_02_T2/LC08_L2SR_067091_20210202_20210303_02_T2_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210202_20210303_02_T2/LC08_L2SR_067091_20210202_20210303_02_T2_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210202_20210303_02_T2/LC08_L2SR_067091_20210202_20210303_02_T2_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210202_20210303_02_T2/LC08_L2SR_067091_20210202_20210303_02_T2_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210202_20210303_02_T2/LC08_L2SR_067091_20210202_20210303_02_T2_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210202_20210303_02_T2/LC08_L2SR_067091_20210202_20210303_02_T2_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210202_20210303_02_T2/LC08_L2SR_067091_20210202_20210303_02_T2_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210202_20210303_02_T2/LC08_L2SR_067091_20210202_20210303_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210202_20210303_02_T2/LC08_L2SR_067091_20210202_20210303_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210202_20210303_02_T2/LC08_L2SR_067091_20210202_20210303_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210202_20210303_02_T2/LC08_L2SR_067091_20210202_20210303_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210202_20210303_02_T2/LC08_L2SR_067091_20210202_20210303_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210202_20210303_02_T2/LC08_L2SR_067091_20210202_20210303_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210202_20210303_02_T2/LC08_L2SR_067091_20210202_20210303_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210202_20210303_02_T2/LC08_L2SR_067091_20210202_20210303_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.67514995,-43.53172265],[-176.25252742,-43.95229792],[-176.84465338,-45.67046337],[-179.27016401,-45.25248215],[-178.67514995,-43.53172265]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-02-02T21:31:04.508703Z","platform":"landsat-8","proj:bbox":[323085.0,-5058015.0,558315.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":97.75,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021033LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":61.40781708,"view:sun_elevation":47.28268772,"landsat:cloud_cover_land":90.42,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20210126_02_T1","bbox":[-177.71547251172643,-45.68424497913123,-174.65711444811706,-43.516805020868766],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20210126_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210126_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210126_20210305_02_T1/LC08_L2SR_066091_20210126_20210305_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210126_20210305_02_T1/LC08_L2SR_066091_20210126_20210305_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210126_20210305_02_T1/LC08_L2SR_066091_20210126_20210305_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210126_20210305_02_T1/LC08_L2SR_066091_20210126_20210305_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210126_20210305_02_T1/LC08_L2SR_066091_20210126_20210305_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210126_20210305_02_T1/LC08_L2SR_066091_20210126_20210305_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210126_20210305_02_T1/LC08_L2SR_066091_20210126_20210305_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210126_20210305_02_T1/LC08_L2SR_066091_20210126_20210305_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210126_20210305_02_T1/LC08_L2SR_066091_20210126_20210305_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210126_20210305_02_T1/LC08_L2SR_066091_20210126_20210305_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210126_20210305_02_T1/LC08_L2SR_066091_20210126_20210305_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210126_20210305_02_T1/LC08_L2SR_066091_20210126_20210305_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210126_20210305_02_T1/LC08_L2SR_066091_20210126_20210305_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210126_20210305_02_T1/LC08_L2SR_066091_20210126_20210305_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210126_20210305_02_T1/LC08_L2SR_066091_20210126_20210305_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210126_20210305_02_T1/LC08_L2SR_066091_20210126_20210305_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.07121278,-43.51834161],[-174.65946679,-43.9712531],[-175.29813291,-45.68267047],[-177.71211635,-45.23139828],[-177.07121278,-43.51834161]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-01-26T21:24:54.556384Z","platform":"landsat-8","proj:bbox":[444285.0,-5059215.0,682515.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":41.82,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021026LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":63.02171296,"view:sun_elevation":48.90975312,"landsat:cloud_cover_land":1.55,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20210117_02_T2","bbox":[-179.26293247813976,-45.673184934546434,-176.24359441214725,-43.52909506545357],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20210117_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210117_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210117_20210306_02_T2/LC08_L2SR_067091_20210117_20210306_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210117_20210306_02_T2/LC08_L2SR_067091_20210117_20210306_02_T2_SR_B1.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210117_20210306_02_T2/LC08_L2SR_067091_20210117_20210306_02_T2_SR_B2.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210117_20210306_02_T2/LC08_L2SR_067091_20210117_20210306_02_T2_SR_B3.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210117_20210306_02_T2/LC08_L2SR_067091_20210117_20210306_02_T2_SR_B4.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210117_20210306_02_T2/LC08_L2SR_067091_20210117_20210306_02_T2_SR_B5.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210117_20210306_02_T2/LC08_L2SR_067091_20210117_20210306_02_T2_SR_B6.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210117_20210306_02_T2/LC08_L2SR_067091_20210117_20210306_02_T2_SR_B7.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210117_20210306_02_T2/LC08_L2SR_067091_20210117_20210306_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210117_20210306_02_T2/LC08_L2SR_067091_20210117_20210306_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210117_20210306_02_T2/LC08_L2SR_067091_20210117_20210306_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210117_20210306_02_T2/LC08_L2SR_067091_20210117_20210306_02_T2_QA_PIXEL.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210117_20210306_02_T2/LC08_L2SR_067091_20210117_20210306_02_T2_QA_RADSAT.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210117_20210306_02_T2/LC08_L2SR_067091_20210117_20210306_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210117_20210306_02_T2/LC08_L2SR_067091_20210117_20210306_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210117_20210306_02_T2/LC08_L2SR_067091_20210117_20210306_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.66757062,-43.53162331],[-176.24501193,-43.95239705],[-176.83748953,-45.67038838],[-179.26292203,-45.25220087],[-178.66757062,-43.53162331]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-01-17T21:31:06.002144Z","platform":"landsat-8","proj:bbox":[323685.0,-5058015.0,558915.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":41.85,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021017LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":64.56181794,"view:sun_elevation":50.81996978,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20210110_02_T1","bbox":[-177.71932251204976,-45.68422497907745,-174.6648044478246,-43.51695502092255],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20210110_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210110_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210110_20210307_02_T1/LC08_L2SR_066091_20210110_20210307_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210110_20210307_02_T1/LC08_L2SR_066091_20210110_20210307_02_T1_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210110_20210307_02_T1/LC08_L2SR_066091_20210110_20210307_02_T1_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210110_20210307_02_T1/LC08_L2SR_066091_20210110_20210307_02_T1_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210110_20210307_02_T1/LC08_L2SR_066091_20210110_20210307_02_T1_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210110_20210307_02_T1/LC08_L2SR_066091_20210110_20210307_02_T1_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210110_20210307_02_T1/LC08_L2SR_066091_20210110_20210307_02_T1_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210110_20210307_02_T1/LC08_L2SR_066091_20210110_20210307_02_T1_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210110_20210307_02_T1/LC08_L2SR_066091_20210110_20210307_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210110_20210307_02_T1/LC08_L2SR_066091_20210110_20210307_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210110_20210307_02_T1/LC08_L2SR_066091_20210110_20210307_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210110_20210307_02_T1/LC08_L2SR_066091_20210110_20210307_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210110_20210307_02_T1/LC08_L2SR_066091_20210110_20210307_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210110_20210307_02_T1/LC08_L2SR_066091_20210110_20210307_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210110_20210307_02_T1/LC08_L2SR_066091_20210110_20210307_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/066/091/LC08_L2SR_066091_20210110_20210307_02_T1/LC08_L2SR_066091_20210110_20210307_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.07807776,-43.5188499],[-174.66620572,-43.97171426],[-175.30481585,-45.6829969],[-177.71891689,-45.23178276],[-177.07807776,-43.5188499]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-01-10T21:24:58.878777Z","platform":"landsat-8","proj:bbox":[443985.0,-5059215.0,681915.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":44.73,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912021010LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":65.27138894,"view:sun_elevation":52.13881415,"landsat:cloud_cover_land":28.54,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20210101_02_T1","bbox":[-179.2859124678253,-45.670634933561224,-176.26673441303518,-43.52866506643877],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20210101_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210101_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210101_20210308_02_T1/LC08_L2SR_067091_20210101_20210308_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210101_20210308_02_T1/LC08_L2SR_067091_20210101_20210308_02_T1_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210101_20210308_02_T1/LC08_L2SR_067091_20210101_20210308_02_T1_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210101_20210308_02_T1/LC08_L2SR_067091_20210101_20210308_02_T1_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210101_20210308_02_T1/LC08_L2SR_067091_20210101_20210308_02_T1_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210101_20210308_02_T1/LC08_L2SR_067091_20210101_20210308_02_T1_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210101_20210308_02_T1/LC08_L2SR_067091_20210101_20210308_02_T1_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210101_20210308_02_T1/LC08_L2SR_067091_20210101_20210308_02_T1_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210101_20210308_02_T1/LC08_L2SR_067091_20210101_20210308_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210101_20210308_02_T1/LC08_L2SR_067091_20210101_20210308_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210101_20210308_02_T1/LC08_L2SR_067091_20210101_20210308_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210101_20210308_02_T1/LC08_L2SR_067091_20210101_20210308_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210101_20210308_02_T1/LC08_L2SR_067091_20210101_20210308_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210101_20210308_02_T1/LC08_L2SR_067091_20210101_20210308_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210101_20210308_02_T1/LC08_L2SR_067091_20210101_20210308_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2021/067/091/LC08_L2SR_067091_20210101_20210308_02_T1/LC08_L2SR_067091_20210101_20210308_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.69058807,-43.53124219],[-176.26760354,-43.95186905],[-176.85952038,-45.67029107],[-179.285381,-45.25227555],[-178.69058807,-43.53124219]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2021-01-01T21:31:13.552097Z","platform":"landsat-8","proj:bbox":[321885.0,-5057715.0,557115.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":24.97,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912021001LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":65.47458519,"view:sun_elevation":53.5643451,"landsat:cloud_cover_land":56.84,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20201225_02_T2","bbox":[-177.7385825128409,-45.68410497880859,-174.68020444719062,-43.517245021191414],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20201225_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201225_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201225_20210310_02_T2/LC08_L2SR_066091_20201225_20210310_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201225_20210310_02_T2/LC08_L2SR_066091_20201225_20210310_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201225_20210310_02_T2/LC08_L2SR_066091_20201225_20210310_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201225_20210310_02_T2/LC08_L2SR_066091_20201225_20210310_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201225_20210310_02_T2/LC08_L2SR_066091_20201225_20210310_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201225_20210310_02_T2/LC08_L2SR_066091_20201225_20210310_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201225_20210310_02_T2/LC08_L2SR_066091_20201225_20210310_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201225_20210310_02_T2/LC08_L2SR_066091_20201225_20210310_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201225_20210310_02_T2/LC08_L2SR_066091_20201225_20210310_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201225_20210310_02_T2/LC08_L2SR_066091_20201225_20210310_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201225_20210310_02_T2/LC08_L2SR_066091_20201225_20210310_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201225_20210310_02_T2/LC08_L2SR_066091_20201225_20210310_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201225_20210310_02_T2/LC08_L2SR_066091_20201225_20210310_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201225_20210310_02_T2/LC08_L2SR_066091_20201225_20210310_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201225_20210310_02_T2/LC08_L2SR_066091_20201225_20210310_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201225_20210310_02_T2/LC08_L2SR_066091_20201225_20210310_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.09642142,-43.51897262],[-174.68403794,-43.97157932],[-175.32221501,-45.68252706],[-177.73683963,-45.23158334],[-177.09642142,-43.51897262]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-12-25T21:25:04.972008Z","platform":"landsat-8","proj:bbox":[442485.0,-5059215.0,680715.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":98.7,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020360LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":65.05672451,"view:sun_elevation":54.42103842,"landsat:cloud_cover_land":99.97,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20201216_02_T2","bbox":[-179.29745246732116,-45.67068493301611,-176.27443440516726,-43.531155066983885],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20201216_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201216_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201216_20210309_02_T2/LC08_L2SR_067091_20201216_20210309_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201216_20210309_02_T2/LC08_L2SR_067091_20201216_20210309_02_T2_SR_B1.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201216_20210309_02_T2/LC08_L2SR_067091_20201216_20210309_02_T2_SR_B2.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201216_20210309_02_T2/LC08_L2SR_067091_20201216_20210309_02_T2_SR_B3.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201216_20210309_02_T2/LC08_L2SR_067091_20201216_20210309_02_T2_SR_B4.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201216_20210309_02_T2/LC08_L2SR_067091_20201216_20210309_02_T2_SR_B5.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201216_20210309_02_T2/LC08_L2SR_067091_20201216_20210309_02_T2_SR_B6.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201216_20210309_02_T2/LC08_L2SR_067091_20201216_20210309_02_T2_SR_B7.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201216_20210309_02_T2/LC08_L2SR_067091_20201216_20210309_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201216_20210309_02_T2/LC08_L2SR_067091_20201216_20210309_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201216_20210309_02_T2/LC08_L2SR_067091_20201216_20210309_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201216_20210309_02_T2/LC08_L2SR_067091_20201216_20210309_02_T2_QA_PIXEL.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201216_20210309_02_T2/LC08_L2SR_067091_20201216_20210309_02_T2_QA_RADSAT.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201216_20210309_02_T2/LC08_L2SR_067091_20201216_20210309_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201216_20210309_02_T2/LC08_L2SR_067091_20201216_20210309_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201216_20210309_02_T2/LC08_L2SR_067091_20201216_20210309_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70193666,-43.53115521],[-176.2786132,-43.95175445],[-176.87030544,-45.67038476],[-179.2965193,-45.25239622],[-178.70193666,-43.53115521]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-12-16T21:31:17.625757Z","platform":"landsat-8","proj:bbox":[320985.0,-5057715.0,556515.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":24.41,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020351LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":63.78169715,"view:sun_elevation":55.13825096,"landsat:cloud_cover_land":93.56,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20201209_02_T2","bbox":[-177.74629251318905,-45.68405497869346,-174.6878944468797,-43.51739502130654],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20201209_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201209_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201209_20210313_02_T2/LC08_L2SR_066091_20201209_20210313_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201209_20210313_02_T2/LC08_L2SR_066091_20201209_20210313_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201209_20210313_02_T2/LC08_L2SR_066091_20201209_20210313_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201209_20210313_02_T2/LC08_L2SR_066091_20201209_20210313_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201209_20210313_02_T2/LC08_L2SR_066091_20201209_20210313_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201209_20210313_02_T2/LC08_L2SR_066091_20201209_20210313_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201209_20210313_02_T2/LC08_L2SR_066091_20201209_20210313_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201209_20210313_02_T2/LC08_L2SR_066091_20201209_20210313_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201209_20210313_02_T2/LC08_L2SR_066091_20201209_20210313_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201209_20210313_02_T2/LC08_L2SR_066091_20201209_20210313_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201209_20210313_02_T2/LC08_L2SR_066091_20201209_20210313_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201209_20210313_02_T2/LC08_L2SR_066091_20201209_20210313_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201209_20210313_02_T2/LC08_L2SR_066091_20201209_20210313_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201209_20210313_02_T2/LC08_L2SR_066091_20201209_20210313_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201209_20210313_02_T2/LC08_L2SR_066091_20201209_20210313_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201209_20210313_02_T2/LC08_L2SR_066091_20201209_20210313_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10232826,-43.51938203],[-174.68976061,-43.97192702],[-175.32787835,-45.68265588],[-177.74270327,-45.23177366],[-177.10232826,-43.51938203]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-12-09T21:25:07.440542Z","platform":"landsat-8","proj:bbox":[441885.0,-5059215.0,680115.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020344LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":62.28012277,"view:sun_elevation":55.34917037,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20201130_02_T2","bbox":[-179.2975624765747,-45.67338493297968,-176.27440440516725,-43.53115506702032],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20201130_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201130_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201130_20210316_02_T2/LC08_L2SR_067091_20201130_20210316_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201130_20210316_02_T2/LC08_L2SR_067091_20201130_20210316_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201130_20210316_02_T2/LC08_L2SR_067091_20201130_20210316_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201130_20210316_02_T2/LC08_L2SR_067091_20201130_20210316_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201130_20210316_02_T2/LC08_L2SR_067091_20201130_20210316_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201130_20210316_02_T2/LC08_L2SR_067091_20201130_20210316_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201130_20210316_02_T2/LC08_L2SR_067091_20201130_20210316_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201130_20210316_02_T2/LC08_L2SR_067091_20201130_20210316_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201130_20210316_02_T2/LC08_L2SR_067091_20201130_20210316_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201130_20210316_02_T2/LC08_L2SR_067091_20201130_20210316_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201130_20210316_02_T2/LC08_L2SR_067091_20201130_20210316_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201130_20210316_02_T2/LC08_L2SR_067091_20201130_20210316_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201130_20210316_02_T2/LC08_L2SR_067091_20201130_20210316_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201130_20210316_02_T2/LC08_L2SR_067091_20201130_20210316_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201130_20210316_02_T2/LC08_L2SR_067091_20201130_20210316_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201130_20210316_02_T2/LC08_L2SR_067091_20201130_20210316_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.7009089,-43.53146419],[-176.27750888,-43.95218099],[-176.86943247,-45.67078738],[-179.29572611,-45.25267019],[-178.7009089,-43.53146419]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-11-30T21:31:17.983418Z","platform":"landsat-8","proj:bbox":[320985.0,-5058015.0,556515.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.97,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020335LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":59.8572973,"view:sun_elevation":55.11947635,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20201123_02_T1","bbox":[-177.7385825128409,-45.68410497880859,-174.68020444719062,-43.517245021191414],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20201123_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201123_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201123_20210315_02_T1/LC08_L2SR_066091_20201123_20210315_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201123_20210315_02_T1/LC08_L2SR_066091_20201123_20210315_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201123_20210315_02_T1/LC08_L2SR_066091_20201123_20210315_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201123_20210315_02_T1/LC08_L2SR_066091_20201123_20210315_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201123_20210315_02_T1/LC08_L2SR_066091_20201123_20210315_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201123_20210315_02_T1/LC08_L2SR_066091_20201123_20210315_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201123_20210315_02_T1/LC08_L2SR_066091_20201123_20210315_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201123_20210315_02_T1/LC08_L2SR_066091_20201123_20210315_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201123_20210315_02_T1/LC08_L2SR_066091_20201123_20210315_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201123_20210315_02_T1/LC08_L2SR_066091_20201123_20210315_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201123_20210315_02_T1/LC08_L2SR_066091_20201123_20210315_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201123_20210315_02_T1/LC08_L2SR_066091_20201123_20210315_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201123_20210315_02_T1/LC08_L2SR_066091_20201123_20210315_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201123_20210315_02_T1/LC08_L2SR_066091_20201123_20210315_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201123_20210315_02_T1/LC08_L2SR_066091_20201123_20210315_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201123_20210315_02_T1/LC08_L2SR_066091_20201123_20210315_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.09420566,-43.51911226],[-174.68181488,-43.97190288],[-175.32024448,-45.68275534],[-177.73488655,-45.23161737],[-177.09420566,-43.51911226]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-11-23T21:25:05.912357Z","platform":"landsat-8","proj:bbox":[442485.0,-5059215.0,680715.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":67.28,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020328LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":57.73031468,"view:sun_elevation":54.52759623,"landsat:cloud_cover_land":72.15,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20201114_02_T1","bbox":[-179.28217247727054,-45.67328493369719,-176.25899441286694,-43.52873506630281],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20201114_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201114_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201114_20210315_02_T1/LC08_L2SR_067091_20201114_20210315_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201114_20210315_02_T1/LC08_L2SR_067091_20201114_20210315_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201114_20210315_02_T1/LC08_L2SR_067091_20201114_20210315_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201114_20210315_02_T1/LC08_L2SR_067091_20201114_20210315_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201114_20210315_02_T1/LC08_L2SR_067091_20201114_20210315_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201114_20210315_02_T1/LC08_L2SR_067091_20201114_20210315_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201114_20210315_02_T1/LC08_L2SR_067091_20201114_20210315_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201114_20210315_02_T1/LC08_L2SR_067091_20201114_20210315_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201114_20210315_02_T1/LC08_L2SR_067091_20201114_20210315_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201114_20210315_02_T1/LC08_L2SR_067091_20201114_20210315_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201114_20210315_02_T1/LC08_L2SR_067091_20201114_20210315_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201114_20210315_02_T1/LC08_L2SR_067091_20201114_20210315_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201114_20210315_02_T1/LC08_L2SR_067091_20201114_20210315_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201114_20210315_02_T1/LC08_L2SR_067091_20201114_20210315_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201114_20210315_02_T1/LC08_L2SR_067091_20201114_20210315_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201114_20210315_02_T1/LC08_L2SR_067091_20201114_20210315_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.68437178,-43.53133709],[-176.26136011,-43.95235688],[-176.85388279,-45.67057887],[-179.2797988,-45.25214697],[-178.68437178,-43.53133709]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-11-14T21:31:13.985382Z","platform":"landsat-8","proj:bbox":[322185.0,-5058015.0,557715.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":42.65,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020319LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":54.89066703,"view:sun_elevation":53.2355744,"landsat:cloud_cover_land":12.86,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20201029_02_T2","bbox":[-179.2975624765747,-45.67338493301502,-176.2744044134506,-43.52845506698498],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20201029_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201029_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201029_20201106_02_T2/LC08_L2SR_067091_20201029_20201106_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201029_20201106_02_T2/LC08_L2SR_067091_20201029_20201106_02_T2_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201029_20201106_02_T2/LC08_L2SR_067091_20201029_20201106_02_T2_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201029_20201106_02_T2/LC08_L2SR_067091_20201029_20201106_02_T2_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201029_20201106_02_T2/LC08_L2SR_067091_20201029_20201106_02_T2_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201029_20201106_02_T2/LC08_L2SR_067091_20201029_20201106_02_T2_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201029_20201106_02_T2/LC08_L2SR_067091_20201029_20201106_02_T2_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201029_20201106_02_T2/LC08_L2SR_067091_20201029_20201106_02_T2_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201029_20201106_02_T2/LC08_L2SR_067091_20201029_20201106_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201029_20201106_02_T2/LC08_L2SR_067091_20201029_20201106_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201029_20201106_02_T2/LC08_L2SR_067091_20201029_20201106_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201029_20201106_02_T2/LC08_L2SR_067091_20201029_20201106_02_T2_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201029_20201106_02_T2/LC08_L2SR_067091_20201029_20201106_02_T2_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201029_20201106_02_T2/LC08_L2SR_067091_20201029_20201106_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201029_20201106_02_T2/LC08_L2SR_067091_20201029_20201106_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201029_20201106_02_T2/LC08_L2SR_067091_20201029_20201106_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.69899818,-43.53102208],[-176.27647986,-43.95179959],[-176.86872561,-45.67054736],[-179.29415036,-45.25236977],[-178.69899818,-43.53102208]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-10-29T21:31:16.383716Z","platform":"landsat-8","proj:bbox":[320985.0,-5058015.0,556515.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.56,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020303LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":50.1892202,"view:sun_elevation":49.56628153,"landsat:cloud_cover_land":99.95,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20201022_02_T1","bbox":[-177.74629251318905,-45.68405497869346,-174.6878944468797,-43.51739502130654],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20201022_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201022_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201022_20201105_02_T1/LC08_L2SR_066091_20201022_20201105_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201022_20201105_02_T1/LC08_L2SR_066091_20201022_20201105_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201022_20201105_02_T1/LC08_L2SR_066091_20201022_20201105_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201022_20201105_02_T1/LC08_L2SR_066091_20201022_20201105_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201022_20201105_02_T1/LC08_L2SR_066091_20201022_20201105_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201022_20201105_02_T1/LC08_L2SR_066091_20201022_20201105_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201022_20201105_02_T1/LC08_L2SR_066091_20201022_20201105_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201022_20201105_02_T1/LC08_L2SR_066091_20201022_20201105_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201022_20201105_02_T1/LC08_L2SR_066091_20201022_20201105_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201022_20201105_02_T1/LC08_L2SR_066091_20201022_20201105_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201022_20201105_02_T1/LC08_L2SR_066091_20201022_20201105_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201022_20201105_02_T1/LC08_L2SR_066091_20201022_20201105_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201022_20201105_02_T1/LC08_L2SR_066091_20201022_20201105_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201022_20201105_02_T1/LC08_L2SR_066091_20201022_20201105_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201022_20201105_02_T1/LC08_L2SR_066091_20201022_20201105_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201022_20201105_02_T1/LC08_L2SR_066091_20201022_20201105_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10233649,-43.51919344],[-174.69071692,-43.97174845],[-175.32914807,-45.68268042],[-177.74302621,-45.23178411],[-177.10233649,-43.51919344]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-10-22T21:25:06.265729Z","platform":"landsat-8","proj:bbox":[441885.0,-5059215.0,680115.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":91.91,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020296LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":48.41719493,"view:sun_elevation":47.49406715,"landsat:cloud_cover_land":53.13,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20201013_02_T1","bbox":[-179.30910247600508,-45.673454932467514,-176.28595440563038,-43.53093506753248],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20201013_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201013_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201013_20201105_02_T1/LC08_L2SR_067091_20201013_20201105_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201013_20201105_02_T1/LC08_L2SR_067091_20201013_20201105_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201013_20201105_02_T1/LC08_L2SR_067091_20201013_20201105_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201013_20201105_02_T1/LC08_L2SR_067091_20201013_20201105_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201013_20201105_02_T1/LC08_L2SR_067091_20201013_20201105_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201013_20201105_02_T1/LC08_L2SR_067091_20201013_20201105_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201013_20201105_02_T1/LC08_L2SR_067091_20201013_20201105_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201013_20201105_02_T1/LC08_L2SR_067091_20201013_20201105_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201013_20201105_02_T1/LC08_L2SR_067091_20201013_20201105_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201013_20201105_02_T1/LC08_L2SR_067091_20201013_20201105_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201013_20201105_02_T1/LC08_L2SR_067091_20201013_20201105_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201013_20201105_02_T1/LC08_L2SR_067091_20201013_20201105_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201013_20201105_02_T1/LC08_L2SR_067091_20201013_20201105_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201013_20201105_02_T1/LC08_L2SR_067091_20201013_20201105_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201013_20201105_02_T1/LC08_L2SR_067091_20201013_20201105_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20201013_20201105_02_T1/LC08_L2SR_067091_20201013_20201105_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71114038,-43.53110234],[-176.28864687,-43.95176579],[-176.88070582,-45.67078056],[-179.30610254,-45.2527214],[-178.71114038,-43.53110234]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-10-13T21:31:17.147331Z","platform":"landsat-8","proj:bbox":[320085.0,-5058015.0,555615.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":60.38,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020287LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":46.4351004,"view:sun_elevation":44.51573555,"landsat:cloud_cover_land":58.18,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20201006_02_T1","bbox":[-177.7539925135611,-45.68400497858505,-174.69559444658577,-43.51753502141495],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20201006_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201006_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201006_20201016_02_T1/LC08_L2SR_066091_20201006_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201006_20201016_02_T1/LC08_L2SR_066091_20201006_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201006_20201016_02_T1/LC08_L2SR_066091_20201006_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201006_20201016_02_T1/LC08_L2SR_066091_20201006_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201006_20201016_02_T1/LC08_L2SR_066091_20201006_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201006_20201016_02_T1/LC08_L2SR_066091_20201006_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201006_20201016_02_T1/LC08_L2SR_066091_20201006_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201006_20201016_02_T1/LC08_L2SR_066091_20201006_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201006_20201016_02_T1/LC08_L2SR_066091_20201006_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201006_20201016_02_T1/LC08_L2SR_066091_20201006_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201006_20201016_02_T1/LC08_L2SR_066091_20201006_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201006_20201016_02_T1/LC08_L2SR_066091_20201006_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201006_20201016_02_T1/LC08_L2SR_066091_20201006_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201006_20201016_02_T1/LC08_L2SR_066091_20201006_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201006_20201016_02_T1/LC08_L2SR_066091_20201006_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20201006_20201016_02_T1/LC08_L2SR_066091_20201006_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.11029562,-43.51951637],[-174.69857204,-43.97198923],[-175.33689287,-45.68274991],[-177.75086748,-45.23194426],[-177.11029562,-43.51951637]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-10-06T21:25:05.826510Z","platform":"landsat-8","proj:bbox":[441285.0,-5059215.0,679515.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":56.73,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020280LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":45.1074776,"view:sun_elevation":42.01299655,"landsat:cloud_cover_land":47.72,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20200927_02_T1","bbox":[-179.31295247583787,-45.673474932292194,-176.28980440578016,-43.53086506770781],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20200927_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200927_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200927_20201006_02_T1/LC08_L2SR_067091_20200927_20201006_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200927_20201006_02_T1/LC08_L2SR_067091_20200927_20201006_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200927_20201006_02_T1/LC08_L2SR_067091_20200927_20201006_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200927_20201006_02_T1/LC08_L2SR_067091_20200927_20201006_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200927_20201006_02_T1/LC08_L2SR_067091_20200927_20201006_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200927_20201006_02_T1/LC08_L2SR_067091_20200927_20201006_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200927_20201006_02_T1/LC08_L2SR_067091_20200927_20201006_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200927_20201006_02_T1/LC08_L2SR_067091_20200927_20201006_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200927_20201006_02_T1/LC08_L2SR_067091_20200927_20201006_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200927_20201006_02_T1/LC08_L2SR_067091_20200927_20201006_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200927_20201006_02_T1/LC08_L2SR_067091_20200927_20201006_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200927_20201006_02_T1/LC08_L2SR_067091_20200927_20201006_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200927_20201006_02_T1/LC08_L2SR_067091_20200927_20201006_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200927_20201006_02_T1/LC08_L2SR_067091_20200927_20201006_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200927_20201006_02_T1/LC08_L2SR_067091_20200927_20201006_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200927_20201006_02_T1/LC08_L2SR_067091_20200927_20201006_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71590322,-43.53102019],[-176.29310039,-43.95176205],[-176.8850518,-45.67082023],[-179.31074489,-45.25270129],[-178.71590322,-43.53102019]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-09-27T21:31:15.222013Z","platform":"landsat-8","proj:bbox":[319785.0,-5058015.0,555315.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":54.29,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020271LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":43.64796392,"view:sun_elevation":38.64433876,"landsat:cloud_cover_land":27.53,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20200920_02_T1","bbox":[-177.7539925135611,-45.68400497858505,-174.69559444658577,-43.51753502141495],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20200920_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200920_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200920_20201006_02_T1/LC08_L2SR_066091_20200920_20201006_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200920_20201006_02_T1/LC08_L2SR_066091_20200920_20201006_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200920_20201006_02_T1/LC08_L2SR_066091_20200920_20201006_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200920_20201006_02_T1/LC08_L2SR_066091_20200920_20201006_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200920_20201006_02_T1/LC08_L2SR_066091_20200920_20201006_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200920_20201006_02_T1/LC08_L2SR_066091_20200920_20201006_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200920_20201006_02_T1/LC08_L2SR_066091_20200920_20201006_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200920_20201006_02_T1/LC08_L2SR_066091_20200920_20201006_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200920_20201006_02_T1/LC08_L2SR_066091_20200920_20201006_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200920_20201006_02_T1/LC08_L2SR_066091_20200920_20201006_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200920_20201006_02_T1/LC08_L2SR_066091_20200920_20201006_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200920_20201006_02_T1/LC08_L2SR_066091_20200920_20201006_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200920_20201006_02_T1/LC08_L2SR_066091_20200920_20201006_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200920_20201006_02_T1/LC08_L2SR_066091_20200920_20201006_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200920_20201006_02_T1/LC08_L2SR_066091_20200920_20201006_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200920_20201006_02_T1/LC08_L2SR_066091_20200920_20201006_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.11177967,-43.51915613],[-174.69964606,-43.97176694],[-175.33806557,-45.68240295],[-177.75243801,-45.231463],[-177.11177967,-43.51915613]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-09-20T21:25:02.711915Z","platform":"landsat-8","proj:bbox":[441285.0,-5059215.0,679515.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":69.74,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020264LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":42.65031607,"view:sun_elevation":35.96510432,"landsat:cloud_cover_land":64.65,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20200911_02_T1","bbox":[-179.30910247600508,-45.67345493250352,-176.2859544139137,-43.52823506749648],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20200911_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200911_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200911_20200923_02_T1/LC08_L2SR_067091_20200911_20200923_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200911_20200923_02_T1/LC08_L2SR_067091_20200911_20200923_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200911_20200923_02_T1/LC08_L2SR_067091_20200911_20200923_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200911_20200923_02_T1/LC08_L2SR_067091_20200911_20200923_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200911_20200923_02_T1/LC08_L2SR_067091_20200911_20200923_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200911_20200923_02_T1/LC08_L2SR_067091_20200911_20200923_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200911_20200923_02_T1/LC08_L2SR_067091_20200911_20200923_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200911_20200923_02_T1/LC08_L2SR_067091_20200911_20200923_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200911_20200923_02_T1/LC08_L2SR_067091_20200911_20200923_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200911_20200923_02_T1/LC08_L2SR_067091_20200911_20200923_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200911_20200923_02_T1/LC08_L2SR_067091_20200911_20200923_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200911_20200923_02_T1/LC08_L2SR_067091_20200911_20200923_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200911_20200923_02_T1/LC08_L2SR_067091_20200911_20200923_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200911_20200923_02_T1/LC08_L2SR_067091_20200911_20200923_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200911_20200923_02_T1/LC08_L2SR_067091_20200911_20200923_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200911_20200923_02_T1/LC08_L2SR_067091_20200911_20200923_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71317398,-43.53080089],[-176.2899076,-43.95172294],[-176.88202611,-45.67053005],[-179.30817994,-45.25222402],[-178.71317398,-43.53080089]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-09-11T21:31:10.680732Z","platform":"landsat-8","proj:bbox":[320085.0,-5058015.0,555615.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":33.68,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020255LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":41.50476857,"view:sun_elevation":32.52887649,"landsat:cloud_cover_land":66.28,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20200904_02_T2","bbox":[-177.7501425133711,-45.684024978641446,-174.6917444467325,-43.517465021358554],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20200904_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200904_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200904_20200923_02_T2/LC08_L2SR_066091_20200904_20200923_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200904_20200923_02_T2/LC08_L2SR_066091_20200904_20200923_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200904_20200923_02_T2/LC08_L2SR_066091_20200904_20200923_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200904_20200923_02_T2/LC08_L2SR_066091_20200904_20200923_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200904_20200923_02_T2/LC08_L2SR_066091_20200904_20200923_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200904_20200923_02_T2/LC08_L2SR_066091_20200904_20200923_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200904_20200923_02_T2/LC08_L2SR_066091_20200904_20200923_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200904_20200923_02_T2/LC08_L2SR_066091_20200904_20200923_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200904_20200923_02_T2/LC08_L2SR_066091_20200904_20200923_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200904_20200923_02_T2/LC08_L2SR_066091_20200904_20200923_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200904_20200923_02_T2/LC08_L2SR_066091_20200904_20200923_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200904_20200923_02_T2/LC08_L2SR_066091_20200904_20200923_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200904_20200923_02_T2/LC08_L2SR_066091_20200904_20200923_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200904_20200923_02_T2/LC08_L2SR_066091_20200904_20200923_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200904_20200923_02_T2/LC08_L2SR_066091_20200904_20200923_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200904_20200923_02_T2/LC08_L2SR_066091_20200904_20200923_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10826827,-43.51906066],[-174.69571199,-43.97195548],[-175.33433667,-45.68248273],[-177.74913625,-45.23125273],[-177.10826827,-43.51906066]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-09-04T21:24:57.230106Z","platform":"landsat-8","proj:bbox":[441585.0,-5059215.0,679815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.33,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020248LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":40.6854628,"view:sun_elevation":29.91399093,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20200826_02_T1","bbox":[-179.3014124763541,-45.67343493280545,-176.28210440536145,-43.53107506719455],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20200826_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200826_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200826_20200923_02_T1/LC08_L2SR_067091_20200826_20200923_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200826_20200923_02_T1/LC08_L2SR_067091_20200826_20200923_02_T1_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200826_20200923_02_T1/LC08_L2SR_067091_20200826_20200923_02_T1_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200826_20200923_02_T1/LC08_L2SR_067091_20200826_20200923_02_T1_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200826_20200923_02_T1/LC08_L2SR_067091_20200826_20200923_02_T1_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200826_20200923_02_T1/LC08_L2SR_067091_20200826_20200923_02_T1_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200826_20200923_02_T1/LC08_L2SR_067091_20200826_20200923_02_T1_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200826_20200923_02_T1/LC08_L2SR_067091_20200826_20200923_02_T1_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200826_20200923_02_T1/LC08_L2SR_067091_20200826_20200923_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200826_20200923_02_T1/LC08_L2SR_067091_20200826_20200923_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200826_20200923_02_T1/LC08_L2SR_067091_20200826_20200923_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200826_20200923_02_T1/LC08_L2SR_067091_20200826_20200923_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200826_20200923_02_T1/LC08_L2SR_067091_20200826_20200923_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200826_20200923_02_T1/LC08_L2SR_067091_20200826_20200923_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200826_20200923_02_T1/LC08_L2SR_067091_20200826_20200923_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200826_20200923_02_T1/LC08_L2SR_067091_20200826_20200923_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70609493,-43.53109501],[-176.28249408,-43.95227218],[-176.87490156,-45.6708058],[-179.30139217,-45.25224022],[-178.70609493,-43.53109501]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-08-26T21:31:03.974630Z","platform":"landsat-8","proj:bbox":[320685.0,-5058015.0,555915.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":17.29,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020239LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":39.68913487,"view:sun_elevation":26.70365459,"landsat:cloud_cover_land":26.12,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20200819_02_T2","bbox":[-177.74243251302403,-45.68407497875314,-174.68404444704285,-43.51731502124686],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20200819_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200819_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200819_20200923_02_T2/LC08_L2SR_066091_20200819_20200923_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200819_20200923_02_T2/LC08_L2SR_066091_20200819_20200923_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200819_20200923_02_T2/LC08_L2SR_066091_20200819_20200923_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200819_20200923_02_T2/LC08_L2SR_066091_20200819_20200923_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200819_20200923_02_T2/LC08_L2SR_066091_20200819_20200923_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200819_20200923_02_T2/LC08_L2SR_066091_20200819_20200923_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200819_20200923_02_T2/LC08_L2SR_066091_20200819_20200923_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200819_20200923_02_T2/LC08_L2SR_066091_20200819_20200923_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200819_20200923_02_T2/LC08_L2SR_066091_20200819_20200923_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200819_20200923_02_T2/LC08_L2SR_066091_20200819_20200923_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200819_20200923_02_T2/LC08_L2SR_066091_20200819_20200923_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200819_20200923_02_T2/LC08_L2SR_066091_20200819_20200923_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200819_20200923_02_T2/LC08_L2SR_066091_20200819_20200923_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200819_20200923_02_T2/LC08_L2SR_066091_20200819_20200923_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200819_20200923_02_T2/LC08_L2SR_066091_20200819_20200923_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200819_20200923_02_T2/LC08_L2SR_066091_20200819_20200923_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.09968891,-43.5191097],[-174.68696436,-43.97236482],[-175.32590825,-45.6829466],[-177.74089232,-45.23135087],[-177.09968891,-43.5191097]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-08-19T21:24:49.566555Z","platform":"landsat-8","proj:bbox":[442185.0,-5059215.0,680415.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.99,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020232LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":38.93046219,"view:sun_elevation":24.3701732,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20200810_02_T1","bbox":[-179.2937124767321,-45.67335493318894,-176.27055441330234,-43.52852506681106],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20200810_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200810_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200810_20200923_02_T1/LC08_L2SR_067091_20200810_20200923_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200810_20200923_02_T1/LC08_L2SR_067091_20200810_20200923_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200810_20200923_02_T1/LC08_L2SR_067091_20200810_20200923_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200810_20200923_02_T1/LC08_L2SR_067091_20200810_20200923_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200810_20200923_02_T1/LC08_L2SR_067091_20200810_20200923_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200810_20200923_02_T1/LC08_L2SR_067091_20200810_20200923_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200810_20200923_02_T1/LC08_L2SR_067091_20200810_20200923_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200810_20200923_02_T1/LC08_L2SR_067091_20200810_20200923_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200810_20200923_02_T1/LC08_L2SR_067091_20200810_20200923_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200810_20200923_02_T1/LC08_L2SR_067091_20200810_20200923_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200810_20200923_02_T1/LC08_L2SR_067091_20200810_20200923_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200810_20200923_02_T1/LC08_L2SR_067091_20200810_20200923_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200810_20200923_02_T1/LC08_L2SR_067091_20200810_20200923_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200810_20200923_02_T1/LC08_L2SR_067091_20200810_20200923_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200810_20200923_02_T1/LC08_L2SR_067091_20200810_20200923_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200810_20200923_02_T1/LC08_L2SR_067091_20200810_20200923_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.69440461,-43.5310481],[-176.27097688,-43.95242571],[-176.86377051,-45.67075728],[-179.29010675,-45.25197557],[-178.69440461,-43.5310481]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-08-10T21:30:55.543947Z","platform":"landsat-8","proj:bbox":[321285.0,-5058015.0,556815.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":6.46,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020223LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":37.96637442,"view:sun_elevation":21.64943273,"landsat:cloud_cover_land":0.16,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20200803_02_T1","bbox":[-177.74629251318905,-45.68405497869346,-174.6878944468797,-43.51739502130654],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20200803_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200803_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200803_20200923_02_T1/LC08_L2SR_066091_20200803_20200923_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200803_20200923_02_T1/LC08_L2SR_066091_20200803_20200923_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200803_20200923_02_T1/LC08_L2SR_066091_20200803_20200923_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200803_20200923_02_T1/LC08_L2SR_066091_20200803_20200923_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200803_20200923_02_T1/LC08_L2SR_066091_20200803_20200923_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200803_20200923_02_T1/LC08_L2SR_066091_20200803_20200923_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200803_20200923_02_T1/LC08_L2SR_066091_20200803_20200923_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200803_20200923_02_T1/LC08_L2SR_066091_20200803_20200923_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200803_20200923_02_T1/LC08_L2SR_066091_20200803_20200923_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200803_20200923_02_T1/LC08_L2SR_066091_20200803_20200923_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200803_20200923_02_T1/LC08_L2SR_066091_20200803_20200923_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200803_20200923_02_T1/LC08_L2SR_066091_20200803_20200923_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200803_20200923_02_T1/LC08_L2SR_066091_20200803_20200923_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200803_20200923_02_T1/LC08_L2SR_066091_20200803_20200923_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200803_20200923_02_T1/LC08_L2SR_066091_20200803_20200923_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200803_20200923_02_T1/LC08_L2SR_066091_20200803_20200923_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10143442,-43.51912062],[-174.68899644,-43.9723311],[-175.32796775,-45.68296521],[-177.7426765,-45.23140667],[-177.10143442,-43.51912062]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-08-03T21:24:43.681466Z","platform":"landsat-8","proj:bbox":[441885.0,-5059215.0,680115.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":14.73,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020216LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":37.22815035,"view:sun_elevation":19.78412297,"landsat:cloud_cover_land":2.58,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20200725_02_T1","bbox":[-179.3052524761981,-45.67343493264293,-176.28210440548102,-43.53100506735707],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20200725_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200725_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200725_20200923_02_T1/LC08_L2SR_067091_20200725_20200923_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200725_20200923_02_T1/LC08_L2SR_067091_20200725_20200923_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200725_20200923_02_T1/LC08_L2SR_067091_20200725_20200923_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200725_20200923_02_T1/LC08_L2SR_067091_20200725_20200923_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200725_20200923_02_T1/LC08_L2SR_067091_20200725_20200923_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200725_20200923_02_T1/LC08_L2SR_067091_20200725_20200923_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200725_20200923_02_T1/LC08_L2SR_067091_20200725_20200923_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200725_20200923_02_T1/LC08_L2SR_067091_20200725_20200923_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200725_20200923_02_T1/LC08_L2SR_067091_20200725_20200923_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200725_20200923_02_T1/LC08_L2SR_067091_20200725_20200923_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200725_20200923_02_T1/LC08_L2SR_067091_20200725_20200923_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200725_20200923_02_T1/LC08_L2SR_067091_20200725_20200923_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200725_20200923_02_T1/LC08_L2SR_067091_20200725_20200923_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200725_20200923_02_T1/LC08_L2SR_067091_20200725_20200923_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200725_20200923_02_T1/LC08_L2SR_067091_20200725_20200923_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200725_20200923_02_T1/LC08_L2SR_067091_20200725_20200923_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70939148,-43.53114088],[-176.28625827,-43.95227524],[-176.87871005,-45.67097187],[-179.30475716,-45.2524426],[-178.70939148,-43.53114088]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-07-25T21:30:52.505115Z","platform":"landsat-8","proj:bbox":[320385.0,-5058015.0,555915.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":22.49,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020207LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":36.29412844,"view:sun_elevation":17.76549047,"landsat:cloud_cover_land":26.61,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20200718_02_T1","bbox":[-177.7578425137423,-45.68397497852859,-174.69943444644684,-43.51760502147141],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20200718_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200718_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200718_20200923_02_T1/LC08_L2SR_066091_20200718_20200923_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200718_20200923_02_T1/LC08_L2SR_066091_20200718_20200923_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200718_20200923_02_T1/LC08_L2SR_066091_20200718_20200923_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200718_20200923_02_T1/LC08_L2SR_066091_20200718_20200923_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200718_20200923_02_T1/LC08_L2SR_066091_20200718_20200923_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200718_20200923_02_T1/LC08_L2SR_066091_20200718_20200923_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200718_20200923_02_T1/LC08_L2SR_066091_20200718_20200923_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200718_20200923_02_T1/LC08_L2SR_066091_20200718_20200923_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200718_20200923_02_T1/LC08_L2SR_066091_20200718_20200923_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200718_20200923_02_T1/LC08_L2SR_066091_20200718_20200923_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200718_20200923_02_T1/LC08_L2SR_066091_20200718_20200923_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200718_20200923_02_T1/LC08_L2SR_066091_20200718_20200923_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200718_20200923_02_T1/LC08_L2SR_066091_20200718_20200923_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200718_20200923_02_T1/LC08_L2SR_066091_20200718_20200923_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200718_20200923_02_T1/LC08_L2SR_066091_20200718_20200923_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200718_20200923_02_T1/LC08_L2SR_066091_20200718_20200923_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.11414091,-43.51907266],[-174.70201891,-43.97192842],[-175.34078489,-45.68243404],[-177.75517938,-45.23123168],[-177.11414091,-43.51907266]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-07-18T21:24:39.714198Z","platform":"landsat-8","proj:bbox":[440985.0,-5059215.0,679215.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":24.26,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020200LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":35.59510072,"view:sun_elevation":16.51520463,"landsat:cloud_cover_land":48.54,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20200709_02_T1","bbox":[-179.3167924756518,-45.673504932128836,-176.29366440592304,-43.53079506787116],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20200709_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200709_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200709_20200923_02_T1/LC08_L2SR_067091_20200709_20200923_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200709_20200923_02_T1/LC08_L2SR_067091_20200709_20200923_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200709_20200923_02_T1/LC08_L2SR_067091_20200709_20200923_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200709_20200923_02_T1/LC08_L2SR_067091_20200709_20200923_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200709_20200923_02_T1/LC08_L2SR_067091_20200709_20200923_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200709_20200923_02_T1/LC08_L2SR_067091_20200709_20200923_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200709_20200923_02_T1/LC08_L2SR_067091_20200709_20200923_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200709_20200923_02_T1/LC08_L2SR_067091_20200709_20200923_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200709_20200923_02_T1/LC08_L2SR_067091_20200709_20200923_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200709_20200923_02_T1/LC08_L2SR_067091_20200709_20200923_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200709_20200923_02_T1/LC08_L2SR_067091_20200709_20200923_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200709_20200923_02_T1/LC08_L2SR_067091_20200709_20200923_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200709_20200923_02_T1/LC08_L2SR_067091_20200709_20200923_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200709_20200923_02_T1/LC08_L2SR_067091_20200709_20200923_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200709_20200923_02_T1/LC08_L2SR_067091_20200709_20200923_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200709_20200923_02_T1/LC08_L2SR_067091_20200709_20200923_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71805244,-43.53085505],[-176.29527056,-43.95182198],[-176.88753037,-45.67089404],[-179.31323858,-45.25253578],[-178.71805244,-43.53085505]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-07-09T21:30:47.448903Z","platform":"landsat-8","proj:bbox":[319485.0,-5058015.0,555015.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":37.9,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020191LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":34.76302656,"view:sun_elevation":15.35216769,"landsat:cloud_cover_land":33.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20200702_02_T1","bbox":[-177.7616925140514,-45.68394497847167,-174.70713444615953,-43.51775502152833],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20200702_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200702_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200702_20200923_02_T1/LC08_L2SR_066091_20200702_20200923_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200702_20200923_02_T1/LC08_L2SR_066091_20200702_20200923_02_T1_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200702_20200923_02_T1/LC08_L2SR_066091_20200702_20200923_02_T1_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200702_20200923_02_T1/LC08_L2SR_066091_20200702_20200923_02_T1_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200702_20200923_02_T1/LC08_L2SR_066091_20200702_20200923_02_T1_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200702_20200923_02_T1/LC08_L2SR_066091_20200702_20200923_02_T1_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200702_20200923_02_T1/LC08_L2SR_066091_20200702_20200923_02_T1_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200702_20200923_02_T1/LC08_L2SR_066091_20200702_20200923_02_T1_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200702_20200923_02_T1/LC08_L2SR_066091_20200702_20200923_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200702_20200923_02_T1/LC08_L2SR_066091_20200702_20200923_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200702_20200923_02_T1/LC08_L2SR_066091_20200702_20200923_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200702_20200923_02_T1/LC08_L2SR_066091_20200702_20200923_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200702_20200923_02_T1/LC08_L2SR_066091_20200702_20200923_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200702_20200923_02_T1/LC08_L2SR_066091_20200702_20200923_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200702_20200923_02_T1/LC08_L2SR_066091_20200702_20200923_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200702_20200923_02_T1/LC08_L2SR_066091_20200702_20200923_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.1198018,-43.51943322],[-174.70799686,-43.97212317],[-175.34662566,-45.68256366],[-177.76071201,-45.23154605],[-177.1198018,-43.51943322]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-07-02T21:24:33.814782Z","platform":"landsat-8","proj:bbox":[440685.0,-5059215.0,678615.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":18.2,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020184LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":34.20156526,"view:sun_elevation":14.80057434,"landsat:cloud_cover_land":21.28,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20200623_02_T2","bbox":[-179.3167924756518,-45.673504932128836,-176.29366440592304,-43.53079506787116],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20200623_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200623_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200623_20201016_02_T2/LC08_L2SR_067091_20200623_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200623_20201016_02_T2/LC08_L2SR_067091_20200623_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200623_20201016_02_T2/LC08_L2SR_067091_20200623_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200623_20201016_02_T2/LC08_L2SR_067091_20200623_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200623_20201016_02_T2/LC08_L2SR_067091_20200623_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200623_20201016_02_T2/LC08_L2SR_067091_20200623_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200623_20201016_02_T2/LC08_L2SR_067091_20200623_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200623_20201016_02_T2/LC08_L2SR_067091_20200623_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200623_20201016_02_T2/LC08_L2SR_067091_20200623_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200623_20201016_02_T2/LC08_L2SR_067091_20200623_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200623_20201016_02_T2/LC08_L2SR_067091_20200623_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200623_20201016_02_T2/LC08_L2SR_067091_20200623_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200623_20201016_02_T2/LC08_L2SR_067091_20200623_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200623_20201016_02_T2/LC08_L2SR_067091_20200623_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200623_20201016_02_T2/LC08_L2SR_067091_20200623_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200623_20201016_02_T2/LC08_L2SR_067091_20200623_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.72051555,-43.53114167],[-176.29785178,-43.95207794],[-176.89011945,-45.67115352],[-179.31567879,-45.25283965],[-178.72051555,-43.53114167]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-06-23T21:30:40.469198Z","platform":"landsat-8","proj:bbox":[319485.0,-5058015.0,555015.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":20.53,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020175LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":33.62175375,"view:sun_elevation":14.5579598,"landsat:cloud_cover_land":88.54,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20200616_02_T1","bbox":[-177.76169251389712,-45.68394497847167,-174.70328444630078,-43.517675021528326],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20200616_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200616_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200616_20201016_02_T1/LC08_L2SR_066091_20200616_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200616_20201016_02_T1/LC08_L2SR_066091_20200616_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200616_20201016_02_T1/LC08_L2SR_066091_20200616_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200616_20201016_02_T1/LC08_L2SR_066091_20200616_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200616_20201016_02_T1/LC08_L2SR_066091_20200616_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200616_20201016_02_T1/LC08_L2SR_066091_20200616_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200616_20201016_02_T1/LC08_L2SR_066091_20200616_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200616_20201016_02_T1/LC08_L2SR_066091_20200616_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200616_20201016_02_T1/LC08_L2SR_066091_20200616_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200616_20201016_02_T1/LC08_L2SR_066091_20200616_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200616_20201016_02_T1/LC08_L2SR_066091_20200616_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200616_20201016_02_T1/LC08_L2SR_066091_20200616_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200616_20201016_02_T1/LC08_L2SR_066091_20200616_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200616_20201016_02_T1/LC08_L2SR_066091_20200616_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200616_20201016_02_T1/LC08_L2SR_066091_20200616_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200616_20201016_02_T1/LC08_L2SR_066091_20200616_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.11812953,-43.5194288],[-174.70630959,-43.97218032],[-175.34500804,-45.68269767],[-177.75908487,-45.23162111],[-177.11812953,-43.5194288]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-06-16T21:24:25.962611Z","platform":"landsat-8","proj:bbox":[440685.0,-5059215.0,678915.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":46.83,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020168LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":33.31761403,"view:sun_elevation":14.72484302,"landsat:cloud_cover_land":51.41,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20200607_02_T1","bbox":[-179.31295247583787,-45.673474932328425,-176.28980441406347,-43.52816506767158],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20200607_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200607_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200607_20201016_02_T1/LC08_L2SR_067091_20200607_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200607_20201016_02_T1/LC08_L2SR_067091_20200607_20201016_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200607_20201016_02_T1/LC08_L2SR_067091_20200607_20201016_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200607_20201016_02_T1/LC08_L2SR_067091_20200607_20201016_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200607_20201016_02_T1/LC08_L2SR_067091_20200607_20201016_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200607_20201016_02_T1/LC08_L2SR_067091_20200607_20201016_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200607_20201016_02_T1/LC08_L2SR_067091_20200607_20201016_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200607_20201016_02_T1/LC08_L2SR_067091_20200607_20201016_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200607_20201016_02_T1/LC08_L2SR_067091_20200607_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200607_20201016_02_T1/LC08_L2SR_067091_20200607_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200607_20201016_02_T1/LC08_L2SR_067091_20200607_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200607_20201016_02_T1/LC08_L2SR_067091_20200607_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200607_20201016_02_T1/LC08_L2SR_067091_20200607_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200607_20201016_02_T1/LC08_L2SR_067091_20200607_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200607_20201016_02_T1/LC08_L2SR_067091_20200607_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200607_20201016_02_T1/LC08_L2SR_067091_20200607_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71531222,-43.53072493],[-176.29246038,-43.95180764],[-176.88489456,-45.67073623],[-179.31064318,-45.2522694],[-178.71531222,-43.53072493]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-06-07T21:30:31.486423Z","platform":"landsat-8","proj:bbox":[319785.0,-5058015.0,555315.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":8.29,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020159LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":33.16349035,"view:sun_elevation":15.37482353,"landsat:cloud_cover_land":15.22,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20200531_02_T1","bbox":[-177.7539925135611,-45.68400497858505,-174.69559444658577,-43.51753502141495],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20200531_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200531_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200531_20201016_02_T1/LC08_L2SR_066091_20200531_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200531_20201016_02_T1/LC08_L2SR_066091_20200531_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200531_20201016_02_T1/LC08_L2SR_066091_20200531_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200531_20201016_02_T1/LC08_L2SR_066091_20200531_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200531_20201016_02_T1/LC08_L2SR_066091_20200531_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200531_20201016_02_T1/LC08_L2SR_066091_20200531_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200531_20201016_02_T1/LC08_L2SR_066091_20200531_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200531_20201016_02_T1/LC08_L2SR_066091_20200531_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200531_20201016_02_T1/LC08_L2SR_066091_20200531_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200531_20201016_02_T1/LC08_L2SR_066091_20200531_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200531_20201016_02_T1/LC08_L2SR_066091_20200531_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200531_20201016_02_T1/LC08_L2SR_066091_20200531_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200531_20201016_02_T1/LC08_L2SR_066091_20200531_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200531_20201016_02_T1/LC08_L2SR_066091_20200531_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200531_20201016_02_T1/LC08_L2SR_066091_20200531_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200531_20201016_02_T1/LC08_L2SR_066091_20200531_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.1090584,-43.51928542],[-174.69694602,-43.97233566],[-175.33590353,-45.68287582],[-177.7502588,-45.23149546],[-177.1090584,-43.51928542]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-05-31T21:24:16.036370Z","platform":"landsat-8","proj:bbox":[441285.0,-5059215.0,679515.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":83.42,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020152LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":33.25762101,"view:sun_elevation":16.19720323,"landsat:cloud_cover_land":99.99,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20200522_02_T1","bbox":[-179.3167924756518,-45.67350493216528,-176.29366441421348,-43.52809506783472],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20200522_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200522_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200522_20201016_02_T1/LC08_L2SR_067091_20200522_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200522_20201016_02_T1/LC08_L2SR_067091_20200522_20201016_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200522_20201016_02_T1/LC08_L2SR_067091_20200522_20201016_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200522_20201016_02_T1/LC08_L2SR_067091_20200522_20201016_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200522_20201016_02_T1/LC08_L2SR_067091_20200522_20201016_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200522_20201016_02_T1/LC08_L2SR_067091_20200522_20201016_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200522_20201016_02_T1/LC08_L2SR_067091_20200522_20201016_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200522_20201016_02_T1/LC08_L2SR_067091_20200522_20201016_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200522_20201016_02_T1/LC08_L2SR_067091_20200522_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200522_20201016_02_T1/LC08_L2SR_067091_20200522_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200522_20201016_02_T1/LC08_L2SR_067091_20200522_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200522_20201016_02_T1/LC08_L2SR_067091_20200522_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200522_20201016_02_T1/LC08_L2SR_067091_20200522_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200522_20201016_02_T1/LC08_L2SR_067091_20200522_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200522_20201016_02_T1/LC08_L2SR_067091_20200522_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200522_20201016_02_T1/LC08_L2SR_067091_20200522_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71817713,-43.53075286],[-176.29505465,-43.95193038],[-176.88747481,-45.67088567],[-179.31348698,-45.25231375],[-178.71817713,-43.53075286]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-05-22T21:30:23.789994Z","platform":"landsat-8","proj:bbox":[319485.0,-5058015.0,555015.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":1.26,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020143LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":33.68131088,"view:sun_elevation":17.6260138,"landsat:cloud_cover_land":7.33,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20200515_02_T1","bbox":[-177.76940251426558,-45.68389497835705,-174.71098444599434,-43.51782502164295],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20200515_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200515_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200515_20201016_02_T1/LC08_L2SR_066091_20200515_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200515_20201016_02_T1/LC08_L2SR_066091_20200515_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200515_20201016_02_T1/LC08_L2SR_066091_20200515_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200515_20201016_02_T1/LC08_L2SR_066091_20200515_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200515_20201016_02_T1/LC08_L2SR_066091_20200515_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200515_20201016_02_T1/LC08_L2SR_066091_20200515_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200515_20201016_02_T1/LC08_L2SR_066091_20200515_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200515_20201016_02_T1/LC08_L2SR_066091_20200515_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200515_20201016_02_T1/LC08_L2SR_066091_20200515_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200515_20201016_02_T1/LC08_L2SR_066091_20200515_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200515_20201016_02_T1/LC08_L2SR_066091_20200515_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200515_20201016_02_T1/LC08_L2SR_066091_20200515_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200515_20201016_02_T1/LC08_L2SR_066091_20200515_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200515_20201016_02_T1/LC08_L2SR_066091_20200515_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200515_20201016_02_T1/LC08_L2SR_066091_20200515_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200515_20201016_02_T1/LC08_L2SR_066091_20200515_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.12545441,-43.51923749],[-174.71287897,-43.97190148],[-175.35138944,-45.68211031],[-177.76621878,-45.23112277],[-177.12545441,-43.51923749]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-05-15T21:24:11.509371Z","platform":"landsat-8","proj:bbox":[440085.0,-5059215.0,678315.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":20.56,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020136LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":34.26629091,"view:sun_elevation":18.99391295,"landsat:cloud_cover_land":19.83,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20200506_02_T2","bbox":[-179.2859124678253,-45.67063493352654,-176.2667344047518,-43.531365066473455],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20200506_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200506_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200506_20201016_02_T2/LC08_L2SR_067091_20200506_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200506_20201016_02_T2/LC08_L2SR_067091_20200506_20201016_02_T2_SR_B1.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200506_20201016_02_T2/LC08_L2SR_067091_20200506_20201016_02_T2_SR_B2.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200506_20201016_02_T2/LC08_L2SR_067091_20200506_20201016_02_T2_SR_B3.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200506_20201016_02_T2/LC08_L2SR_067091_20200506_20201016_02_T2_SR_B4.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200506_20201016_02_T2/LC08_L2SR_067091_20200506_20201016_02_T2_SR_B5.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200506_20201016_02_T2/LC08_L2SR_067091_20200506_20201016_02_T2_SR_B6.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200506_20201016_02_T2/LC08_L2SR_067091_20200506_20201016_02_T2_SR_B7.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200506_20201016_02_T2/LC08_L2SR_067091_20200506_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200506_20201016_02_T2/LC08_L2SR_067091_20200506_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200506_20201016_02_T2/LC08_L2SR_067091_20200506_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200506_20201016_02_T2/LC08_L2SR_067091_20200506_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200506_20201016_02_T2/LC08_L2SR_067091_20200506_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200506_20201016_02_T2/LC08_L2SR_067091_20200506_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200506_20201016_02_T2/LC08_L2SR_067091_20200506_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200506_20201016_02_T2/LC08_L2SR_067091_20200506_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.69219211,-43.53193106],[-176.2687022,-43.95172202],[-176.85932738,-45.67032221],[-179.28569584,-45.25313081],[-178.69219211,-43.53193106]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-05-06T21:30:21.368505Z","platform":"landsat-8","proj:bbox":[321885.0,-5057715.0,557115.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":59.57,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020127LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":35.31913617,"view:sun_elevation":21.04439872,"landsat:cloud_cover_land":81.52,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20200429_02_T2","bbox":[-177.72703251242802,-45.68417497896924,-174.67250444750982,-43.517105021030765],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20200429_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200429_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200429_20201016_02_T2/LC08_L2SR_066091_20200429_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200429_20201016_02_T2/LC08_L2SR_066091_20200429_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200429_20201016_02_T2/LC08_L2SR_066091_20200429_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200429_20201016_02_T2/LC08_L2SR_066091_20200429_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200429_20201016_02_T2/LC08_L2SR_066091_20200429_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200429_20201016_02_T2/LC08_L2SR_066091_20200429_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200429_20201016_02_T2/LC08_L2SR_066091_20200429_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200429_20201016_02_T2/LC08_L2SR_066091_20200429_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200429_20201016_02_T2/LC08_L2SR_066091_20200429_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200429_20201016_02_T2/LC08_L2SR_066091_20200429_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200429_20201016_02_T2/LC08_L2SR_066091_20200429_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200429_20201016_02_T2/LC08_L2SR_066091_20200429_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200429_20201016_02_T2/LC08_L2SR_066091_20200429_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200429_20201016_02_T2/LC08_L2SR_066091_20200429_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200429_20201016_02_T2/LC08_L2SR_066091_20200429_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200429_20201016_02_T2/LC08_L2SR_066091_20200429_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.08721582,-43.51922043],[-174.6743922,-43.97114867],[-175.31145427,-45.68233096],[-177.72652985,-45.23205679],[-177.08721582,-43.51922043]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-04-29T21:24:14.814232Z","platform":"landsat-8","proj:bbox":[443385.0,-5059215.0,681315.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":39.11,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020120LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":36.4121821,"view:sun_elevation":22.81882539,"landsat:cloud_cover_land":59.42,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20200420_02_T1","bbox":[-179.28217247727054,-45.673284933662735,-176.25899440458355,-43.53143506633727],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20200420_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200420_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200420_20201016_02_T1/LC08_L2SR_067091_20200420_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200420_20201016_02_T1/LC08_L2SR_067091_20200420_20201016_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200420_20201016_02_T1/LC08_L2SR_067091_20200420_20201016_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200420_20201016_02_T1/LC08_L2SR_067091_20200420_20201016_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200420_20201016_02_T1/LC08_L2SR_067091_20200420_20201016_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200420_20201016_02_T1/LC08_L2SR_067091_20200420_20201016_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200420_20201016_02_T1/LC08_L2SR_067091_20200420_20201016_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200420_20201016_02_T1/LC08_L2SR_067091_20200420_20201016_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200420_20201016_02_T1/LC08_L2SR_067091_20200420_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200420_20201016_02_T1/LC08_L2SR_067091_20200420_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200420_20201016_02_T1/LC08_L2SR_067091_20200420_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200420_20201016_02_T1/LC08_L2SR_067091_20200420_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200420_20201016_02_T1/LC08_L2SR_067091_20200420_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200420_20201016_02_T1/LC08_L2SR_067091_20200420_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200420_20201016_02_T1/LC08_L2SR_067091_20200420_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200420_20201016_02_T1/LC08_L2SR_067091_20200420_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.68593147,-43.53189424],[-176.26217424,-43.95191309],[-176.85306211,-45.67033083],[-179.27970579,-45.25289932],[-178.68593147,-43.53189424]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-04-20T21:30:30.408448Z","platform":"landsat-8","proj:bbox":[322185.0,-5058015.0,557715.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":10.62,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020111LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":38.15703409,"view:sun_elevation":25.27524321,"landsat:cloud_cover_land":8.91,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20200413_02_T2","bbox":[-177.71932251189406,-45.68422497907745,-174.6609644479437,-43.51688502092255],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20200413_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200413_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200413_20201016_02_T2/LC08_L2SR_066091_20200413_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200413_20201016_02_T2/LC08_L2SR_066091_20200413_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200413_20201016_02_T2/LC08_L2SR_066091_20200413_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200413_20201016_02_T2/LC08_L2SR_066091_20200413_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200413_20201016_02_T2/LC08_L2SR_066091_20200413_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200413_20201016_02_T2/LC08_L2SR_066091_20200413_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200413_20201016_02_T2/LC08_L2SR_066091_20200413_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200413_20201016_02_T2/LC08_L2SR_066091_20200413_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200413_20201016_02_T2/LC08_L2SR_066091_20200413_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200413_20201016_02_T2/LC08_L2SR_066091_20200413_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200413_20201016_02_T2/LC08_L2SR_066091_20200413_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200413_20201016_02_T2/LC08_L2SR_066091_20200413_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200413_20201016_02_T2/LC08_L2SR_066091_20200413_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200413_20201016_02_T2/LC08_L2SR_066091_20200413_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200413_20201016_02_T2/LC08_L2SR_066091_20200413_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200413_20201016_02_T2/LC08_L2SR_066091_20200413_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.0773296,-43.5193276],[-174.66453791,-43.97159789],[-175.30198725,-45.68292677],[-177.71702967,-45.23230317],[-177.0773296,-43.5193276]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-04-13T21:24:22.723197Z","platform":"landsat-8","proj:bbox":[443985.0,-5059215.0,682215.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":87.97,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020104LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":39.76755228,"view:sun_elevation":27.28902925,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20200404_02_T2","bbox":[-179.26678247795127,-45.673204934340916,-176.2474444040095,-43.53172506565909],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20200404_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200404_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200404_20201016_02_T2/LC08_L2SR_067091_20200404_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200404_20201016_02_T2/LC08_L2SR_067091_20200404_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200404_20201016_02_T2/LC08_L2SR_067091_20200404_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200404_20201016_02_T2/LC08_L2SR_067091_20200404_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200404_20201016_02_T2/LC08_L2SR_067091_20200404_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200404_20201016_02_T2/LC08_L2SR_067091_20200404_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200404_20201016_02_T2/LC08_L2SR_067091_20200404_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200404_20201016_02_T2/LC08_L2SR_067091_20200404_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200404_20201016_02_T2/LC08_L2SR_067091_20200404_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200404_20201016_02_T2/LC08_L2SR_067091_20200404_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200404_20201016_02_T2/LC08_L2SR_067091_20200404_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200404_20201016_02_T2/LC08_L2SR_067091_20200404_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200404_20201016_02_T2/LC08_L2SR_067091_20200404_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200404_20201016_02_T2/LC08_L2SR_067091_20200404_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200404_20201016_02_T2/LC08_L2SR_067091_20200404_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200404_20201016_02_T2/LC08_L2SR_067091_20200404_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.67203428,-43.53201107],[-176.24854877,-43.95228397],[-176.84003561,-45.67024986],[-179.26641524,-45.25256693],[-178.67203428,-43.53201107]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-04-04T21:30:36.856905Z","platform":"landsat-8","proj:bbox":[323385.0,-5058015.0,558615.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.72,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020095LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":42.13880017,"view:sun_elevation":29.95202077,"landsat:cloud_cover_land":99.76,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20200328_02_T1","bbox":[-177.71162251154016,-45.68427497918466,-174.6532644482674,-43.51673502081534],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20200328_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200328_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200328_20201016_02_T1/LC08_L2SR_066091_20200328_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200328_20201016_02_T1/LC08_L2SR_066091_20200328_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200328_20201016_02_T1/LC08_L2SR_066091_20200328_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200328_20201016_02_T1/LC08_L2SR_066091_20200328_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200328_20201016_02_T1/LC08_L2SR_066091_20200328_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200328_20201016_02_T1/LC08_L2SR_066091_20200328_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200328_20201016_02_T1/LC08_L2SR_066091_20200328_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200328_20201016_02_T1/LC08_L2SR_066091_20200328_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200328_20201016_02_T1/LC08_L2SR_066091_20200328_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200328_20201016_02_T1/LC08_L2SR_066091_20200328_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200328_20201016_02_T1/LC08_L2SR_066091_20200328_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200328_20201016_02_T1/LC08_L2SR_066091_20200328_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200328_20201016_02_T1/LC08_L2SR_066091_20200328_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200328_20201016_02_T1/LC08_L2SR_066091_20200328_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200328_20201016_02_T1/LC08_L2SR_066091_20200328_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200328_20201016_02_T1/LC08_L2SR_066091_20200328_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.06953028,-43.5187792],[-174.65720545,-43.97127899],[-175.29501779,-45.68284476],[-177.7095948,-45.23198087],[-177.06953028,-43.5187792]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-03-28T21:24:29.935061Z","platform":"landsat-8","proj:bbox":[444585.0,-5059215.0,682815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":27.87,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020088LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":44.18358647,"view:sun_elevation":32.0607362,"landsat:cloud_cover_land":74.38,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20200319_02_T2","bbox":[-179.27063247777082,-45.67323493416846,-176.25129440415557,-43.531655065831536],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20200319_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200319_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200319_20201016_02_T2/LC08_L2SR_067091_20200319_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200319_20201016_02_T2/LC08_L2SR_067091_20200319_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200319_20201016_02_T2/LC08_L2SR_067091_20200319_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200319_20201016_02_T2/LC08_L2SR_067091_20200319_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200319_20201016_02_T2/LC08_L2SR_067091_20200319_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200319_20201016_02_T2/LC08_L2SR_067091_20200319_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200319_20201016_02_T2/LC08_L2SR_067091_20200319_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200319_20201016_02_T2/LC08_L2SR_067091_20200319_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200319_20201016_02_T2/LC08_L2SR_067091_20200319_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200319_20201016_02_T2/LC08_L2SR_067091_20200319_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200319_20201016_02_T2/LC08_L2SR_067091_20200319_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200319_20201016_02_T2/LC08_L2SR_067091_20200319_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200319_20201016_02_T2/LC08_L2SR_067091_20200319_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200319_20201016_02_T2/LC08_L2SR_067091_20200319_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200319_20201016_02_T2/LC08_L2SR_067091_20200319_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200319_20201016_02_T2/LC08_L2SR_067091_20200319_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.67478798,-43.53188267],[-176.2517611,-43.95213813],[-176.84331243,-45.67035147],[-179.2692424,-45.25267975],[-178.67478798,-43.53188267]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-03-19T21:30:46.055384Z","platform":"landsat-8","proj:bbox":[323085.0,-5058015.0,558315.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":20.54,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020079LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":47.01479212,"view:sun_elevation":34.77226256,"landsat:cloud_cover_land":39.48,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20200312_02_T2","bbox":[-177.71547251172643,-45.68424497913123,-174.65711444811706,-43.516805020868766],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20200312_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200312_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200312_20201016_02_T2/LC08_L2SR_066091_20200312_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200312_20201016_02_T2/LC08_L2SR_066091_20200312_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200312_20201016_02_T2/LC08_L2SR_066091_20200312_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200312_20201016_02_T2/LC08_L2SR_066091_20200312_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200312_20201016_02_T2/LC08_L2SR_066091_20200312_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200312_20201016_02_T2/LC08_L2SR_066091_20200312_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200312_20201016_02_T2/LC08_L2SR_066091_20200312_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200312_20201016_02_T2/LC08_L2SR_066091_20200312_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200312_20201016_02_T2/LC08_L2SR_066091_20200312_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200312_20201016_02_T2/LC08_L2SR_066091_20200312_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200312_20201016_02_T2/LC08_L2SR_066091_20200312_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200312_20201016_02_T2/LC08_L2SR_066091_20200312_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200312_20201016_02_T2/LC08_L2SR_066091_20200312_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200312_20201016_02_T2/LC08_L2SR_066091_20200312_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200312_20201016_02_T2/LC08_L2SR_066091_20200312_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200312_20201016_02_T2/LC08_L2SR_066091_20200312_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.07309965,-43.5189554],[-174.66112929,-43.97140891],[-175.2990894,-45.68289692],[-177.71331463,-45.23209023],[-177.07309965,-43.5189554]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-03-12T21:24:38.828330Z","platform":"landsat-8","proj:bbox":[444285.0,-5059215.0,682515.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":87.15,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020072LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":49.33253038,"view:sun_elevation":36.86085664,"landsat:cloud_cover_land":94.22,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20200303_02_T2","bbox":[-179.27052246854282,-45.67053493424057,-176.25133441243904,-43.528955065759426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20200303_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200303_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200303_20201016_02_T2/LC08_L2SR_067091_20200303_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200303_20201016_02_T2/LC08_L2SR_067091_20200303_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200303_20201016_02_T2/LC08_L2SR_067091_20200303_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200303_20201016_02_T2/LC08_L2SR_067091_20200303_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200303_20201016_02_T2/LC08_L2SR_067091_20200303_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200303_20201016_02_T2/LC08_L2SR_067091_20200303_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200303_20201016_02_T2/LC08_L2SR_067091_20200303_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200303_20201016_02_T2/LC08_L2SR_067091_20200303_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200303_20201016_02_T2/LC08_L2SR_067091_20200303_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200303_20201016_02_T2/LC08_L2SR_067091_20200303_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200303_20201016_02_T2/LC08_L2SR_067091_20200303_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200303_20201016_02_T2/LC08_L2SR_067091_20200303_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200303_20201016_02_T2/LC08_L2SR_067091_20200303_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200303_20201016_02_T2/LC08_L2SR_067091_20200303_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200303_20201016_02_T2/LC08_L2SR_067091_20200303_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200303_20201016_02_T2/LC08_L2SR_067091_20200303_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.67558192,-43.53155466],[-176.25302575,-43.95182726],[-176.84467898,-45.67006199],[-179.27013348,-45.25237707],[-178.67558192,-43.53155466]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-03-03T21:30:53.551700Z","platform":"landsat-8","proj:bbox":[323085.0,-5057715.0,558315.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020063LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":52.38019559,"view:sun_elevation":39.4842291,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20200225_02_T1","bbox":[-177.71547251172643,-45.68424497913123,-174.65711444811706,-43.516805020868766],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20200225_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200225_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200225_20201016_02_T1/LC08_L2SR_066091_20200225_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200225_20201016_02_T1/LC08_L2SR_066091_20200225_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200225_20201016_02_T1/LC08_L2SR_066091_20200225_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200225_20201016_02_T1/LC08_L2SR_066091_20200225_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200225_20201016_02_T1/LC08_L2SR_066091_20200225_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200225_20201016_02_T1/LC08_L2SR_066091_20200225_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200225_20201016_02_T1/LC08_L2SR_066091_20200225_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200225_20201016_02_T1/LC08_L2SR_066091_20200225_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200225_20201016_02_T1/LC08_L2SR_066091_20200225_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200225_20201016_02_T1/LC08_L2SR_066091_20200225_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200225_20201016_02_T1/LC08_L2SR_066091_20200225_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200225_20201016_02_T1/LC08_L2SR_066091_20200225_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200225_20201016_02_T1/LC08_L2SR_066091_20200225_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200225_20201016_02_T1/LC08_L2SR_066091_20200225_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200225_20201016_02_T1/LC08_L2SR_066091_20200225_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200225_20201016_02_T1/LC08_L2SR_066091_20200225_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.0729864,-43.51898123],[-174.66126436,-43.97148322],[-175.29948046,-45.68299451],[-177.71343909,-45.23213544],[-177.0729864,-43.51898123]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-02-25T21:24:45.288157Z","platform":"landsat-8","proj:bbox":[444285.0,-5059215.0,682515.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":75.67,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020056LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":54.73702228,"view:sun_elevation":41.46926748,"landsat:cloud_cover_land":43.43,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20200216_02_T2","bbox":[-179.26678247795127,-45.6732049343745,-176.24744441229296,-43.5290250656255],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20200216_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200216_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200216_20201016_02_T2/LC08_L2SR_067091_20200216_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200216_20201016_02_T2/LC08_L2SR_067091_20200216_20201016_02_T2_SR_B1.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200216_20201016_02_T2/LC08_L2SR_067091_20200216_20201016_02_T2_SR_B2.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200216_20201016_02_T2/LC08_L2SR_067091_20200216_20201016_02_T2_SR_B3.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200216_20201016_02_T2/LC08_L2SR_067091_20200216_20201016_02_T2_SR_B4.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200216_20201016_02_T2/LC08_L2SR_067091_20200216_20201016_02_T2_SR_B5.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200216_20201016_02_T2/LC08_L2SR_067091_20200216_20201016_02_T2_SR_B6.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200216_20201016_02_T2/LC08_L2SR_067091_20200216_20201016_02_T2_SR_B7.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200216_20201016_02_T2/LC08_L2SR_067091_20200216_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200216_20201016_02_T2/LC08_L2SR_067091_20200216_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200216_20201016_02_T2/LC08_L2SR_067091_20200216_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200216_20201016_02_T2/LC08_L2SR_067091_20200216_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200216_20201016_02_T2/LC08_L2SR_067091_20200216_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200216_20201016_02_T2/LC08_L2SR_067091_20200216_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200216_20201016_02_T2/LC08_L2SR_067091_20200216_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200216_20201016_02_T2/LC08_L2SR_067091_20200216_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.6715335,-43.53171031],[-176.24895448,-43.95215802],[-176.84097295,-45.67027172],[-179.26643304,-45.2524119],[-178.6715335,-43.53171031]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-02-16T21:30:58.588214Z","platform":"landsat-8","proj:bbox":[323385.0,-5058015.0,558615.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":20.4,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020047LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":57.64408425,"view:sun_elevation":43.92107895,"landsat:cloud_cover_land":0.11,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20200209_02_T1","bbox":[-177.70776251150116,-45.684294979237855,-174.65326444829873,-43.51673502076214],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20200209_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200209_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200209_20201016_02_T1/LC08_L2SR_066091_20200209_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200209_20201016_02_T1/LC08_L2SR_066091_20200209_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200209_20201016_02_T1/LC08_L2SR_066091_20200209_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200209_20201016_02_T1/LC08_L2SR_066091_20200209_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200209_20201016_02_T1/LC08_L2SR_066091_20200209_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200209_20201016_02_T1/LC08_L2SR_066091_20200209_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200209_20201016_02_T1/LC08_L2SR_066091_20200209_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200209_20201016_02_T1/LC08_L2SR_066091_20200209_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200209_20201016_02_T1/LC08_L2SR_066091_20200209_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200209_20201016_02_T1/LC08_L2SR_066091_20200209_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200209_20201016_02_T1/LC08_L2SR_066091_20200209_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200209_20201016_02_T1/LC08_L2SR_066091_20200209_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200209_20201016_02_T1/LC08_L2SR_066091_20200209_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200209_20201016_02_T1/LC08_L2SR_066091_20200209_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200209_20201016_02_T1/LC08_L2SR_066091_20200209_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200209_20201016_02_T1/LC08_L2SR_066091_20200209_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.06681919,-43.51887163],[-174.65515204,-43.97176825],[-175.29372455,-45.6833298],[-177.70761522,-45.2320718],[-177.06681919,-43.51887163]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-02-09T21:24:49.184569Z","platform":"landsat-8","proj:bbox":[444885.0,-5059215.0,682815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":71.97,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020040LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":59.73801496,"view:sun_elevation":45.7366526,"landsat:cloud_cover_land":57.3,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20200131_02_T1","bbox":[-179.26293247813976,-45.673184934546434,-176.24359441214725,-43.52909506545357],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20200131_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200131_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200131_20201016_02_T1/LC08_L2SR_067091_20200131_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200131_20201016_02_T1/LC08_L2SR_067091_20200131_20201016_02_T1_SR_B1.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200131_20201016_02_T1/LC08_L2SR_067091_20200131_20201016_02_T1_SR_B2.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200131_20201016_02_T1/LC08_L2SR_067091_20200131_20201016_02_T1_SR_B3.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200131_20201016_02_T1/LC08_L2SR_067091_20200131_20201016_02_T1_SR_B4.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200131_20201016_02_T1/LC08_L2SR_067091_20200131_20201016_02_T1_SR_B5.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200131_20201016_02_T1/LC08_L2SR_067091_20200131_20201016_02_T1_SR_B6.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200131_20201016_02_T1/LC08_L2SR_067091_20200131_20201016_02_T1_SR_B7.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200131_20201016_02_T1/LC08_L2SR_067091_20200131_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200131_20201016_02_T1/LC08_L2SR_067091_20200131_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200131_20201016_02_T1/LC08_L2SR_067091_20200131_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200131_20201016_02_T1/LC08_L2SR_067091_20200131_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200131_20201016_02_T1/LC08_L2SR_067091_20200131_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200131_20201016_02_T1/LC08_L2SR_067091_20200131_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200131_20201016_02_T1/LC08_L2SR_067091_20200131_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200131_20201016_02_T1/LC08_L2SR_067091_20200131_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.66676113,-43.53168002],[-176.24413199,-43.95232987],[-176.83642624,-45.6702948],[-179.26192151,-45.25223548],[-178.66676113,-43.53168002]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-01-31T21:31:02.285830Z","platform":"landsat-8","proj:bbox":[323685.0,-5058015.0,558915.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":71.98,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020031LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":62.08777678,"view:sun_elevation":47.93103243,"landsat:cloud_cover_land":99.63,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20200124_02_T2","bbox":[-177.71162251154016,-45.68427497918466,-174.6532644482674,-43.51673502081534],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20200124_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200124_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200124_20201016_02_T2/LC08_L2SR_066091_20200124_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200124_20201016_02_T2/LC08_L2SR_066091_20200124_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200124_20201016_02_T2/LC08_L2SR_066091_20200124_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200124_20201016_02_T2/LC08_L2SR_066091_20200124_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200124_20201016_02_T2/LC08_L2SR_066091_20200124_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200124_20201016_02_T2/LC08_L2SR_066091_20200124_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200124_20201016_02_T2/LC08_L2SR_066091_20200124_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200124_20201016_02_T2/LC08_L2SR_066091_20200124_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200124_20201016_02_T2/LC08_L2SR_066091_20200124_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200124_20201016_02_T2/LC08_L2SR_066091_20200124_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200124_20201016_02_T2/LC08_L2SR_066091_20200124_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200124_20201016_02_T2/LC08_L2SR_066091_20200124_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200124_20201016_02_T2/LC08_L2SR_066091_20200124_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200124_20201016_02_T2/LC08_L2SR_066091_20200124_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200124_20201016_02_T2/LC08_L2SR_066091_20200124_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200124_20201016_02_T2/LC08_L2SR_066091_20200124_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.06872324,-43.51874222],[-174.65684656,-43.97169882],[-175.29549365,-45.68320067],[-177.70959593,-45.23188291],[-177.06872324,-43.51874222]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-01-24T21:24:54.038837Z","platform":"landsat-8","proj:bbox":[444585.0,-5059215.0,682815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":95.2,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020024LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":63.56398549,"view:sun_elevation":49.51687237,"landsat:cloud_cover_land":99.98,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20200115_02_T2","bbox":[-179.27052246856854,-45.67050493424057,-176.24747441241178,-43.528955065759426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20200115_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200115_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200115_20201016_02_T2/LC08_L2SR_067091_20200115_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200115_20201016_02_T2/LC08_L2SR_067091_20200115_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200115_20201016_02_T2/LC08_L2SR_067091_20200115_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200115_20201016_02_T2/LC08_L2SR_067091_20200115_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200115_20201016_02_T2/LC08_L2SR_067091_20200115_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200115_20201016_02_T2/LC08_L2SR_067091_20200115_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200115_20201016_02_T2/LC08_L2SR_067091_20200115_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200115_20201016_02_T2/LC08_L2SR_067091_20200115_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200115_20201016_02_T2/LC08_L2SR_067091_20200115_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200115_20201016_02_T2/LC08_L2SR_067091_20200115_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200115_20201016_02_T2/LC08_L2SR_067091_20200115_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200115_20201016_02_T2/LC08_L2SR_067091_20200115_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200115_20201016_02_T2/LC08_L2SR_067091_20200115_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200115_20201016_02_T2/LC08_L2SR_067091_20200115_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200115_20201016_02_T2/LC08_L2SR_067091_20200115_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/067/091/LC08_L2SR_067091_20200115_20201016_02_T2/LC08_L2SR_067091_20200115_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.67244675,-43.5313746],[-176.24955313,-43.95211607],[-176.84178136,-45.67016539],[-179.26754827,-45.25201211],[-178.67244675,-43.5313746]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-01-15T21:31:07.385741Z","platform":"landsat-8","proj:bbox":[323085.0,-5057715.0,558615.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":84.31,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912020015LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":64.89368621,"view:sun_elevation":51.35936311,"landsat:cloud_cover_land":89.46,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20200108_02_T1","bbox":[-177.71547251172643,-45.68424497913123,-174.65711444811706,-43.516805020868766],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20200108_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200108_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200108_20201016_02_T1/LC08_L2SR_066091_20200108_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200108_20201016_02_T1/LC08_L2SR_066091_20200108_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200108_20201016_02_T1/LC08_L2SR_066091_20200108_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200108_20201016_02_T1/LC08_L2SR_066091_20200108_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200108_20201016_02_T1/LC08_L2SR_066091_20200108_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200108_20201016_02_T1/LC08_L2SR_066091_20200108_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200108_20201016_02_T1/LC08_L2SR_066091_20200108_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200108_20201016_02_T1/LC08_L2SR_066091_20200108_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200108_20201016_02_T1/LC08_L2SR_066091_20200108_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200108_20201016_02_T1/LC08_L2SR_066091_20200108_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200108_20201016_02_T1/LC08_L2SR_066091_20200108_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200108_20201016_02_T1/LC08_L2SR_066091_20200108_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200108_20201016_02_T1/LC08_L2SR_066091_20200108_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200108_20201016_02_T1/LC08_L2SR_066091_20200108_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200108_20201016_02_T1/LC08_L2SR_066091_20200108_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2020/066/091/LC08_L2SR_066091_20200108_20201016_02_T1/LC08_L2SR_066091_20200108_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.07216122,-43.51870655],[-174.65996684,-43.97179079],[-175.29868192,-45.68309207],[-177.71310714,-45.23165297],[-177.07216122,-43.51870655]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2020-01-08T21:24:58.016623Z","platform":"landsat-8","proj:bbox":[444285.0,-5059215.0,682515.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":53.13,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912020008LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":65.42198125,"view:sun_elevation":52.60879982,"landsat:cloud_cover_land":47.98,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20191230_02_T1","bbox":[-179.27063247779645,-45.673204934202275,-176.24744441241177,-43.528955065797724],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20191230_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191230_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191230_20201016_02_T1/LC08_L2SR_067091_20191230_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191230_20201016_02_T1/LC08_L2SR_067091_20191230_20201016_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191230_20201016_02_T1/LC08_L2SR_067091_20191230_20201016_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191230_20201016_02_T1/LC08_L2SR_067091_20191230_20201016_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191230_20201016_02_T1/LC08_L2SR_067091_20191230_20201016_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191230_20201016_02_T1/LC08_L2SR_067091_20191230_20201016_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191230_20201016_02_T1/LC08_L2SR_067091_20191230_20201016_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191230_20201016_02_T1/LC08_L2SR_067091_20191230_20201016_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191230_20201016_02_T1/LC08_L2SR_067091_20191230_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191230_20201016_02_T1/LC08_L2SR_067091_20191230_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191230_20201016_02_T1/LC08_L2SR_067091_20191230_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191230_20201016_02_T1/LC08_L2SR_067091_20191230_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191230_20201016_02_T1/LC08_L2SR_067091_20191230_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191230_20201016_02_T1/LC08_L2SR_067091_20191230_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191230_20201016_02_T1/LC08_L2SR_067091_20191230_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191230_20201016_02_T1/LC08_L2SR_067091_20191230_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.67448253,-43.53154263],[-176.25129772,-43.95236727],[-176.84361956,-45.67032385],[-179.26967764,-45.25209033],[-178.67448253,-43.53154263]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-12-30T21:31:10.648237Z","platform":"landsat-8","proj:bbox":[323085.0,-5058015.0,558615.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":72.82,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019364LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":65.36871277,"view:sun_elevation":53.93055046,"landsat:cloud_cover_land":72.08,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20191223_02_T2","bbox":[-177.72317251207954,-45.68419497902752,-174.66480444780132,-43.51695502097249],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20191223_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191223_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191223_20201016_02_T2/LC08_L2SR_066091_20191223_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191223_20201016_02_T2/LC08_L2SR_066091_20191223_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191223_20201016_02_T2/LC08_L2SR_066091_20191223_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191223_20201016_02_T2/LC08_L2SR_066091_20191223_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191223_20201016_02_T2/LC08_L2SR_066091_20191223_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191223_20201016_02_T2/LC08_L2SR_066091_20191223_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191223_20201016_02_T2/LC08_L2SR_066091_20191223_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191223_20201016_02_T2/LC08_L2SR_066091_20191223_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191223_20201016_02_T2/LC08_L2SR_066091_20191223_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191223_20201016_02_T2/LC08_L2SR_066091_20191223_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191223_20201016_02_T2/LC08_L2SR_066091_20191223_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191223_20201016_02_T2/LC08_L2SR_066091_20191223_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191223_20201016_02_T2/LC08_L2SR_066091_20191223_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191223_20201016_02_T2/LC08_L2SR_066091_20191223_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191223_20201016_02_T2/LC08_L2SR_066091_20191223_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191223_20201016_02_T2/LC08_L2SR_066091_20191223_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.07882163,-43.51875888],[-174.6664827,-43.97176086],[-175.30513142,-45.68287398],[-177.71970482,-45.23151365],[-177.07882163,-43.51875888]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-12-23T21:25:01.998896Z","platform":"landsat-8","proj:bbox":[443685.0,-5059215.0,681915.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019357LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":64.74231123,"view:sun_elevation":54.69363291,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20191214_02_T1","bbox":[-179.28206246804268,-45.67058493373486,-176.25903441286695,-43.52873506626514],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20191214_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191214_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191214_20201022_02_T1/LC08_L2SR_067091_20191214_20201022_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191214_20201022_02_T1/LC08_L2SR_067091_20191214_20201022_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191214_20201022_02_T1/LC08_L2SR_067091_20191214_20201022_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191214_20201022_02_T1/LC08_L2SR_067091_20191214_20201022_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191214_20201022_02_T1/LC08_L2SR_067091_20191214_20201022_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191214_20201022_02_T1/LC08_L2SR_067091_20191214_20201022_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191214_20201022_02_T1/LC08_L2SR_067091_20191214_20201022_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191214_20201022_02_T1/LC08_L2SR_067091_20191214_20201022_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191214_20201022_02_T1/LC08_L2SR_067091_20191214_20201022_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191214_20201022_02_T1/LC08_L2SR_067091_20191214_20201022_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191214_20201022_02_T1/LC08_L2SR_067091_20191214_20201022_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191214_20201022_02_T1/LC08_L2SR_067091_20191214_20201022_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191214_20201022_02_T1/LC08_L2SR_067091_20191214_20201022_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191214_20201022_02_T1/LC08_L2SR_067091_20191214_20201022_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191214_20201022_02_T1/LC08_L2SR_067091_20191214_20201022_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191214_20201022_02_T1/LC08_L2SR_067091_20191214_20201022_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.683701,-43.53116732],[-176.26054468,-43.95199762],[-176.8526977,-45.67023079],[-179.27874748,-45.25199692],[-178.683701,-43.53116732]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-12-14T21:31:14.840531Z","platform":"landsat-8","proj:bbox":[322185.0,-5057715.0,557715.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":29.99,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019348LGN01","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":63.22831146,"view:sun_elevation":55.26433697,"landsat:cloud_cover_land":19.41,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20191207_02_T2","bbox":[-177.7270325122727,-45.68417497896924,-174.66865444765213,-43.51702502103076],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20191207_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191207_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191207_20201016_02_T2/LC08_L2SR_066091_20191207_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191207_20201016_02_T2/LC08_L2SR_066091_20191207_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191207_20201016_02_T2/LC08_L2SR_066091_20191207_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191207_20201016_02_T2/LC08_L2SR_066091_20191207_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191207_20201016_02_T2/LC08_L2SR_066091_20191207_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191207_20201016_02_T2/LC08_L2SR_066091_20191207_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191207_20201016_02_T2/LC08_L2SR_066091_20191207_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191207_20201016_02_T2/LC08_L2SR_066091_20191207_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191207_20201016_02_T2/LC08_L2SR_066091_20191207_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191207_20201016_02_T2/LC08_L2SR_066091_20191207_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191207_20201016_02_T2/LC08_L2SR_066091_20191207_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191207_20201016_02_T2/LC08_L2SR_066091_20191207_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191207_20201016_02_T2/LC08_L2SR_066091_20191207_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191207_20201016_02_T2/LC08_L2SR_066091_20191207_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191207_20201016_02_T2/LC08_L2SR_066091_20191207_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191207_20201016_02_T2/LC08_L2SR_066091_20191207_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.08463102,-43.51902752],[-174.6723159,-43.97196878],[-175.31090214,-45.68304095],[-177.72547638,-45.231748],[-177.08463102,-43.51902752]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-12-07T21:25:04.971926Z","platform":"landsat-8","proj:bbox":[443385.0,-5059215.0,681615.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.91,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019341LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":61.58193893,"view:sun_elevation":55.34318599,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20191128_02_T2","bbox":[-179.28206246804268,-45.67058493373486,-176.25903441286695,-43.52873506626514],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20191128_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191128_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191128_20201016_02_T2/LC08_L2SR_067091_20191128_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191128_20201016_02_T2/LC08_L2SR_067091_20191128_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191128_20201016_02_T2/LC08_L2SR_067091_20191128_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191128_20201016_02_T2/LC08_L2SR_067091_20191128_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191128_20201016_02_T2/LC08_L2SR_067091_20191128_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191128_20201016_02_T2/LC08_L2SR_067091_20191128_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191128_20201016_02_T2/LC08_L2SR_067091_20191128_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191128_20201016_02_T2/LC08_L2SR_067091_20191128_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191128_20201016_02_T2/LC08_L2SR_067091_20191128_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191128_20201016_02_T2/LC08_L2SR_067091_20191128_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191128_20201016_02_T2/LC08_L2SR_067091_20191128_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191128_20201016_02_T2/LC08_L2SR_067091_20191128_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191128_20201016_02_T2/LC08_L2SR_067091_20191128_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191128_20201016_02_T2/LC08_L2SR_067091_20191128_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191128_20201016_02_T2/LC08_L2SR_067091_20191128_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191128_20201016_02_T2/LC08_L2SR_067091_20191128_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.68439263,-43.53117944],[-176.2614467,-43.95203371],[-176.85374221,-45.67029639],[-179.27958398,-45.2520372],[-178.68439263,-43.53117944]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-11-28T21:31:16.248366Z","platform":"landsat-8","proj:bbox":[322185.0,-5057715.0,557715.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":3.38,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019332LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":59.02367774,"view:sun_elevation":54.93569146,"landsat:cloud_cover_land":0.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20191121_02_T1","bbox":[-177.72317251223498,-45.68419497902752,-174.66865444768226,-43.51702502097248],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20191121_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191121_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191121_20201016_02_T1/LC08_L2SR_066091_20191121_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191121_20201016_02_T1/LC08_L2SR_066091_20191121_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191121_20201016_02_T1/LC08_L2SR_066091_20191121_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191121_20201016_02_T1/LC08_L2SR_066091_20191121_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191121_20201016_02_T1/LC08_L2SR_066091_20191121_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191121_20201016_02_T1/LC08_L2SR_066091_20191121_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191121_20201016_02_T1/LC08_L2SR_066091_20191121_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191121_20201016_02_T1/LC08_L2SR_066091_20191121_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191121_20201016_02_T1/LC08_L2SR_066091_20191121_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191121_20201016_02_T1/LC08_L2SR_066091_20191121_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191121_20201016_02_T1/LC08_L2SR_066091_20191121_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191121_20201016_02_T1/LC08_L2SR_066091_20191121_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191121_20201016_02_T1/LC08_L2SR_066091_20191121_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191121_20201016_02_T1/LC08_L2SR_066091_20191121_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191121_20201016_02_T1/LC08_L2SR_066091_20191121_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191121_20201016_02_T1/LC08_L2SR_066091_20191121_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.08149861,-43.51873661],[-174.66947008,-43.97172303],[-175.30819847,-45.68288629],[-177.72248283,-45.23153674],[-177.08149861,-43.51873661]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-11-21T21:25:05.142851Z","platform":"landsat-8","proj:bbox":[443685.0,-5059215.0,681615.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":6.59,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019325LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":56.84309033,"view:sun_elevation":54.20173407,"landsat:cloud_cover_land":5.15,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20191112_02_T2","bbox":[-179.28986247692333,-45.67333493332805,-176.26670440487104,-43.53129506667195],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20191112_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191112_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191112_20201016_02_T2/LC08_L2SR_067091_20191112_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191112_20201016_02_T2/LC08_L2SR_067091_20191112_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191112_20201016_02_T2/LC08_L2SR_067091_20191112_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191112_20201016_02_T2/LC08_L2SR_067091_20191112_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191112_20201016_02_T2/LC08_L2SR_067091_20191112_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191112_20201016_02_T2/LC08_L2SR_067091_20191112_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191112_20201016_02_T2/LC08_L2SR_067091_20191112_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191112_20201016_02_T2/LC08_L2SR_067091_20191112_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191112_20201016_02_T2/LC08_L2SR_067091_20191112_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191112_20201016_02_T2/LC08_L2SR_067091_20191112_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191112_20201016_02_T2/LC08_L2SR_067091_20191112_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191112_20201016_02_T2/LC08_L2SR_067091_20191112_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191112_20201016_02_T2/LC08_L2SR_067091_20191112_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191112_20201016_02_T2/LC08_L2SR_067091_20191112_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191112_20201016_02_T2/LC08_L2SR_067091_20191112_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191112_20201016_02_T2/LC08_L2SR_067091_20191112_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.69272447,-43.5313678],[-176.27006576,-43.95212452],[-176.86224952,-45.67069874],[-179.28781336,-45.25253608],[-178.69272447,-43.5313678]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-11-12T21:31:18.456998Z","platform":"landsat-8","proj:bbox":[321585.0,-5058015.0,557115.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":85.44,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019316LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":54.01418406,"view:sun_elevation":52.72942613,"landsat:cloud_cover_land":99.33,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20191105_02_T2","bbox":[-177.73858251299603,-45.68410497880859,-174.68404444707193,-43.51731502119141],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20191105_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191105_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191105_20201016_02_T2/LC08_L2SR_066091_20191105_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191105_20201016_02_T2/LC08_L2SR_066091_20191105_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191105_20201016_02_T2/LC08_L2SR_066091_20191105_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191105_20201016_02_T2/LC08_L2SR_066091_20191105_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191105_20201016_02_T2/LC08_L2SR_066091_20191105_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191105_20201016_02_T2/LC08_L2SR_066091_20191105_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191105_20201016_02_T2/LC08_L2SR_066091_20191105_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191105_20201016_02_T2/LC08_L2SR_066091_20191105_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191105_20201016_02_T2/LC08_L2SR_066091_20191105_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191105_20201016_02_T2/LC08_L2SR_066091_20191105_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191105_20201016_02_T2/LC08_L2SR_066091_20191105_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191105_20201016_02_T2/LC08_L2SR_066091_20191105_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191105_20201016_02_T2/LC08_L2SR_066091_20191105_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191105_20201016_02_T2/LC08_L2SR_066091_20191105_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191105_20201016_02_T2/LC08_L2SR_066091_20191105_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191105_20201016_02_T2/LC08_L2SR_066091_20191105_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.09745663,-43.51897949],[-174.68574825,-43.97157769],[-175.32419214,-45.68255762],[-177.73816118,-45.23161129],[-177.09745663,-43.51897949]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-11-05T21:25:08.970292Z","platform":"landsat-8","proj:bbox":[442485.0,-5059215.0,680415.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.26,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019309LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":51.91246912,"view:sun_elevation":51.19549553,"landsat:cloud_cover_land":98.29,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20191027_02_T2","bbox":[-179.3014124763541,-45.673434932840415,-176.2821044136214,-43.52838506715958],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20191027_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191027_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191027_20201016_02_T2/LC08_L2SR_067091_20191027_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191027_20201016_02_T2/LC08_L2SR_067091_20191027_20201016_02_T2_SR_B1.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191027_20201016_02_T2/LC08_L2SR_067091_20191027_20201016_02_T2_SR_B2.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191027_20201016_02_T2/LC08_L2SR_067091_20191027_20201016_02_T2_SR_B3.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191027_20201016_02_T2/LC08_L2SR_067091_20191027_20201016_02_T2_SR_B4.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191027_20201016_02_T2/LC08_L2SR_067091_20191027_20201016_02_T2_SR_B5.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191027_20201016_02_T2/LC08_L2SR_067091_20191027_20201016_02_T2_SR_B6.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191027_20201016_02_T2/LC08_L2SR_067091_20191027_20201016_02_T2_SR_B7.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191027_20201016_02_T2/LC08_L2SR_067091_20191027_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191027_20201016_02_T2/LC08_L2SR_067091_20191027_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191027_20201016_02_T2/LC08_L2SR_067091_20191027_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191027_20201016_02_T2/LC08_L2SR_067091_20191027_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191027_20201016_02_T2/LC08_L2SR_067091_20191027_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191027_20201016_02_T2/LC08_L2SR_067091_20191027_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191027_20201016_02_T2/LC08_L2SR_067091_20191027_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7871,7841],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191027_20201016_02_T2/LC08_L2SR_067091_20191027_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.7051839,-43.53097753],[-176.28256644,-43.95161567],[-176.87454224,-45.67046944],[-179.3000658,-45.25243836],[-178.7051839,-43.53097753]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-10-27T21:31:20.747610Z","platform":"landsat-8","proj:bbox":[320685.0,-5058015.0,555915.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":96.8,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019300LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":49.44528138,"view:sun_elevation":48.78716145,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20191020_02_T2","bbox":[-177.74629251334383,-45.68405497869346,-174.69174444676113,-43.51746502130654],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20191020_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191020_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191020_20201016_02_T2/LC08_L2SR_066091_20191020_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191020_20201016_02_T2/LC08_L2SR_066091_20191020_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191020_20201016_02_T2/LC08_L2SR_066091_20191020_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191020_20201016_02_T2/LC08_L2SR_066091_20191020_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191020_20201016_02_T2/LC08_L2SR_066091_20191020_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191020_20201016_02_T2/LC08_L2SR_066091_20191020_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191020_20201016_02_T2/LC08_L2SR_066091_20191020_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191020_20201016_02_T2/LC08_L2SR_066091_20191020_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191020_20201016_02_T2/LC08_L2SR_066091_20191020_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191020_20201016_02_T2/LC08_L2SR_066091_20191020_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191020_20201016_02_T2/LC08_L2SR_066091_20191020_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191020_20201016_02_T2/LC08_L2SR_066091_20191020_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191020_20201016_02_T2/LC08_L2SR_066091_20191020_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191020_20201016_02_T2/LC08_L2SR_066091_20191020_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191020_20201016_02_T2/LC08_L2SR_066091_20191020_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191020_20201016_02_T2/LC08_L2SR_066091_20191020_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10497376,-43.51909936],[-174.69324264,-43.97155963],[-175.3315385,-45.68241385],[-177.74552256,-45.23161622],[-177.10497376,-43.51909936]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-10-20T21:25:09.994711Z","platform":"landsat-8","proj:bbox":[441885.0,-5059215.0,679815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":98.31,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019293LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":47.74850541,"view:sun_elevation":46.62368786,"landsat:cloud_cover_land":97.37,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20191011_02_T2","bbox":[-179.3052524761611,-45.673454932642926,-176.28595440551072,-43.53100506735707],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20191011_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191011_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191011_20201016_02_T2/LC08_L2SR_067091_20191011_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191011_20201016_02_T2/LC08_L2SR_067091_20191011_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191011_20201016_02_T2/LC08_L2SR_067091_20191011_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191011_20201016_02_T2/LC08_L2SR_067091_20191011_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191011_20201016_02_T2/LC08_L2SR_067091_20191011_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191011_20201016_02_T2/LC08_L2SR_067091_20191011_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191011_20201016_02_T2/LC08_L2SR_067091_20191011_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191011_20201016_02_T2/LC08_L2SR_067091_20191011_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191011_20201016_02_T2/LC08_L2SR_067091_20191011_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191011_20201016_02_T2/LC08_L2SR_067091_20191011_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191011_20201016_02_T2/LC08_L2SR_067091_20191011_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191011_20201016_02_T2/LC08_L2SR_067091_20191011_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191011_20201016_02_T2/LC08_L2SR_067091_20191011_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191011_20201016_02_T2/LC08_L2SR_067091_20191011_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191011_20201016_02_T2/LC08_L2SR_067091_20191011_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20191011_20201016_02_T2/LC08_L2SR_067091_20191011_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70966301,-43.531311],[-176.28694312,-43.95199223],[-176.87895567,-45.67090927],[-179.30456402,-45.25283508],[-178.70966301,-43.531311]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-10-11T21:31:20.171472Z","platform":"landsat-8","proj:bbox":[320385.0,-5058015.0,555615.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":84.89,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019284LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":45.87194728,"view:sun_elevation":43.55430925,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20191004_02_T1","bbox":[-177.7501425133711,-45.684024978641446,-174.6917444467325,-43.517465021358554],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20191004_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191004_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191004_20201016_02_T1/LC08_L2SR_066091_20191004_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191004_20201016_02_T1/LC08_L2SR_066091_20191004_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191004_20201016_02_T1/LC08_L2SR_066091_20191004_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191004_20201016_02_T1/LC08_L2SR_066091_20191004_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191004_20201016_02_T1/LC08_L2SR_066091_20191004_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191004_20201016_02_T1/LC08_L2SR_066091_20191004_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191004_20201016_02_T1/LC08_L2SR_066091_20191004_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191004_20201016_02_T1/LC08_L2SR_066091_20191004_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191004_20201016_02_T1/LC08_L2SR_066091_20191004_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191004_20201016_02_T1/LC08_L2SR_066091_20191004_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191004_20201016_02_T1/LC08_L2SR_066091_20191004_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191004_20201016_02_T1/LC08_L2SR_066091_20191004_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191004_20201016_02_T1/LC08_L2SR_066091_20191004_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191004_20201016_02_T1/LC08_L2SR_066091_20191004_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191004_20201016_02_T1/LC08_L2SR_066091_20191004_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20191004_20201016_02_T1/LC08_L2SR_066091_20191004_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10597405,-43.51912537],[-174.69397839,-43.97168721],[-175.33236565,-45.68244074],[-177.74659627,-45.23154678],[-177.10597405,-43.51912537]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-10-04T21:25:08.271222Z","platform":"landsat-8","proj:bbox":[441585.0,-5059215.0,679815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":95.24,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019277LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":44.61417248,"view:sun_elevation":41.00312317,"landsat:cloud_cover_land":99.9,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20190925_02_T2","bbox":[-179.3052524761981,-45.67343493264293,-176.28210440548102,-43.53100506735707],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20190925_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190925_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190925_20201016_02_T2/LC08_L2SR_067091_20190925_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190925_20201016_02_T2/LC08_L2SR_067091_20190925_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190925_20201016_02_T2/LC08_L2SR_067091_20190925_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190925_20201016_02_T2/LC08_L2SR_067091_20190925_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190925_20201016_02_T2/LC08_L2SR_067091_20190925_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190925_20201016_02_T2/LC08_L2SR_067091_20190925_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190925_20201016_02_T2/LC08_L2SR_067091_20190925_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190925_20201016_02_T2/LC08_L2SR_067091_20190925_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190925_20201016_02_T2/LC08_L2SR_067091_20190925_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190925_20201016_02_T2/LC08_L2SR_067091_20190925_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190925_20201016_02_T2/LC08_L2SR_067091_20190925_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190925_20201016_02_T2/LC08_L2SR_067091_20190925_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190925_20201016_02_T2/LC08_L2SR_067091_20190925_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190925_20201016_02_T2/LC08_L2SR_067091_20190925_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190925_20201016_02_T2/LC08_L2SR_067091_20190925_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190925_20201016_02_T2/LC08_L2SR_067091_20190925_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.7073933,-43.53116484],[-176.28431292,-43.95204997],[-176.87648157,-45.67085457],[-179.30244444,-45.25257601],[-178.7073933,-43.53116484]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-09-25T21:31:17.012388Z","platform":"landsat-8","proj:bbox":[320385.0,-5058015.0,555915.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":40.59,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019268LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":43.21628445,"view:sun_elevation":37.60135327,"landsat:cloud_cover_land":98.96,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20190918_02_T1","bbox":[-177.74243251302403,-45.68407497875314,-174.68404444704285,-43.51731502124686],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20190918_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190918_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190918_20201016_02_T1/LC08_L2SR_066091_20190918_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190918_20201016_02_T1/LC08_L2SR_066091_20190918_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190918_20201016_02_T1/LC08_L2SR_066091_20190918_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190918_20201016_02_T1/LC08_L2SR_066091_20190918_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190918_20201016_02_T1/LC08_L2SR_066091_20190918_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190918_20201016_02_T1/LC08_L2SR_066091_20190918_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190918_20201016_02_T1/LC08_L2SR_066091_20190918_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190918_20201016_02_T1/LC08_L2SR_066091_20190918_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190918_20201016_02_T1/LC08_L2SR_066091_20190918_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190918_20201016_02_T1/LC08_L2SR_066091_20190918_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190918_20201016_02_T1/LC08_L2SR_066091_20190918_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190918_20201016_02_T1/LC08_L2SR_066091_20190918_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190918_20201016_02_T1/LC08_L2SR_066091_20190918_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190918_20201016_02_T1/LC08_L2SR_066091_20190918_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190918_20201016_02_T1/LC08_L2SR_066091_20190918_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190918_20201016_02_T1/LC08_L2SR_066091_20190918_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10039171,-43.51875947],[-174.68800744,-43.97167025],[-175.32663092,-45.68245642],[-177.74125638,-45.2312086],[-177.10039171,-43.51875947]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-09-18T21:25:04.066144Z","platform":"landsat-8","proj:bbox":[442185.0,-5059215.0,680415.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":54.83,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019261LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":42.25879356,"view:sun_elevation":34.91780307,"landsat:cloud_cover_land":21.19,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20190909_02_T1","bbox":[-179.2975624765747,-45.67338493301502,-176.2744044134506,-43.52845506698498],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20190909_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190909_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190909_20201016_02_T1/LC08_L2SR_067091_20190909_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190909_20201016_02_T1/LC08_L2SR_067091_20190909_20201016_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190909_20201016_02_T1/LC08_L2SR_067091_20190909_20201016_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190909_20201016_02_T1/LC08_L2SR_067091_20190909_20201016_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190909_20201016_02_T1/LC08_L2SR_067091_20190909_20201016_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190909_20201016_02_T1/LC08_L2SR_067091_20190909_20201016_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190909_20201016_02_T1/LC08_L2SR_067091_20190909_20201016_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190909_20201016_02_T1/LC08_L2SR_067091_20190909_20201016_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190909_20201016_02_T1/LC08_L2SR_067091_20190909_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190909_20201016_02_T1/LC08_L2SR_067091_20190909_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190909_20201016_02_T1/LC08_L2SR_067091_20190909_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190909_20201016_02_T1/LC08_L2SR_067091_20190909_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190909_20201016_02_T1/LC08_L2SR_067091_20190909_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190909_20201016_02_T1/LC08_L2SR_067091_20190909_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190909_20201016_02_T1/LC08_L2SR_067091_20190909_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190909_20201016_02_T1/LC08_L2SR_067091_20190909_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.69879446,-43.53081019],[-176.27537176,-43.95195034],[-176.86783281,-45.67042409],[-179.29414316,-45.25188873],[-178.69879446,-43.53081019]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-09-09T21:31:11.511961Z","platform":"landsat-8","proj:bbox":[320985.0,-5058015.0,556515.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":26.06,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019252LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":41.15632765,"view:sun_elevation":31.50002054,"landsat:cloud_cover_land":40.06,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20190902_02_T2","bbox":[-177.7385825128409,-45.68410497880859,-174.68020444719062,-43.517245021191414],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20190902_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190902_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190902_20201016_02_T2/LC08_L2SR_066091_20190902_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190902_20201016_02_T2/LC08_L2SR_066091_20190902_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190902_20201016_02_T2/LC08_L2SR_066091_20190902_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190902_20201016_02_T2/LC08_L2SR_066091_20190902_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190902_20201016_02_T2/LC08_L2SR_066091_20190902_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190902_20201016_02_T2/LC08_L2SR_066091_20190902_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190902_20201016_02_T2/LC08_L2SR_066091_20190902_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190902_20201016_02_T2/LC08_L2SR_066091_20190902_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190902_20201016_02_T2/LC08_L2SR_066091_20190902_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190902_20201016_02_T2/LC08_L2SR_066091_20190902_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190902_20201016_02_T2/LC08_L2SR_066091_20190902_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190902_20201016_02_T2/LC08_L2SR_066091_20190902_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190902_20201016_02_T2/LC08_L2SR_066091_20190902_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190902_20201016_02_T2/LC08_L2SR_066091_20190902_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190902_20201016_02_T2/LC08_L2SR_066091_20190902_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190902_20201016_02_T2/LC08_L2SR_066091_20190902_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.09390156,-43.5192585],[-174.68142244,-43.97243933],[-175.32033785,-45.68315696],[-177.73506045,-45.23163565],[-177.09390156,-43.5192585]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-09-02T21:24:58.532490Z","platform":"landsat-8","proj:bbox":[442485.0,-5059215.0,680715.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":92.34,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019245LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":40.35162909,"view:sun_elevation":28.91923572,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20190824_02_T2","bbox":[-179.2975624765747,-45.67338493301502,-176.2744044134506,-43.52845506698498],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20190824_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190824_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190824_20201016_02_T2/LC08_L2SR_067091_20190824_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190824_20201016_02_T2/LC08_L2SR_067091_20190824_20201016_02_T2_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190824_20201016_02_T2/LC08_L2SR_067091_20190824_20201016_02_T2_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190824_20201016_02_T2/LC08_L2SR_067091_20190824_20201016_02_T2_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190824_20201016_02_T2/LC08_L2SR_067091_20190824_20201016_02_T2_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190824_20201016_02_T2/LC08_L2SR_067091_20190824_20201016_02_T2_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190824_20201016_02_T2/LC08_L2SR_067091_20190824_20201016_02_T2_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190824_20201016_02_T2/LC08_L2SR_067091_20190824_20201016_02_T2_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190824_20201016_02_T2/LC08_L2SR_067091_20190824_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190824_20201016_02_T2/LC08_L2SR_067091_20190824_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190824_20201016_02_T2/LC08_L2SR_067091_20190824_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190824_20201016_02_T2/LC08_L2SR_067091_20190824_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190824_20201016_02_T2/LC08_L2SR_067091_20190824_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190824_20201016_02_T2/LC08_L2SR_067091_20190824_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190824_20201016_02_T2/LC08_L2SR_067091_20190824_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190824_20201016_02_T2/LC08_L2SR_067091_20190824_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70093861,-43.5310855],[-176.27748386,-43.9522602],[-176.86996253,-45.67073691],[-179.29631302,-45.25216319],[-178.70093861,-43.5310855]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-08-24T21:31:07.634853Z","platform":"landsat-8","proj:bbox":[320985.0,-5058015.0,556515.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":26.27,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019236LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":39.36125464,"view:sun_elevation":25.77728459,"landsat:cloud_cover_land":99.69,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20190817_02_T1","bbox":[-177.74243251315292,-45.68407497875314,-174.687894446901,-43.51739502124686],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20190817_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190817_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190817_20201016_02_T1/LC08_L2SR_066091_20190817_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190817_20201016_02_T1/LC08_L2SR_066091_20190817_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190817_20201016_02_T1/LC08_L2SR_066091_20190817_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190817_20201016_02_T1/LC08_L2SR_066091_20190817_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190817_20201016_02_T1/LC08_L2SR_066091_20190817_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190817_20201016_02_T1/LC08_L2SR_066091_20190817_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190817_20201016_02_T1/LC08_L2SR_066091_20190817_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190817_20201016_02_T1/LC08_L2SR_066091_20190817_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190817_20201016_02_T1/LC08_L2SR_066091_20190817_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190817_20201016_02_T1/LC08_L2SR_066091_20190817_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190817_20201016_02_T1/LC08_L2SR_066091_20190817_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190817_20201016_02_T1/LC08_L2SR_066091_20190817_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190817_20201016_02_T1/LC08_L2SR_066091_20190817_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190817_20201016_02_T1/LC08_L2SR_066091_20190817_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190817_20201016_02_T1/LC08_L2SR_066091_20190817_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190817_20201016_02_T1/LC08_L2SR_066091_20190817_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10100049,-43.51925632],[-174.68847843,-43.97233741],[-175.32728653,-45.68293879],[-177.74207231,-45.23151976],[-177.10100049,-43.51925632]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-08-17T21:24:55.108691Z","platform":"landsat-8","proj:bbox":[442185.0,-5059215.0,680115.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":14.52,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019229LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":38.6083028,"view:sun_elevation":23.51266644,"landsat:cloud_cover_land":9.95,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20190808_02_T2","bbox":[-179.3014124763826,-45.673404932805454,-176.278254405332,-43.53107506719455],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20190808_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190808_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190808_20201016_02_T2/LC08_L2SR_067091_20190808_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190808_20201016_02_T2/LC08_L2SR_067091_20190808_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190808_20201016_02_T2/LC08_L2SR_067091_20190808_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190808_20201016_02_T2/LC08_L2SR_067091_20190808_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190808_20201016_02_T2/LC08_L2SR_067091_20190808_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190808_20201016_02_T2/LC08_L2SR_067091_20190808_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190808_20201016_02_T2/LC08_L2SR_067091_20190808_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190808_20201016_02_T2/LC08_L2SR_067091_20190808_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190808_20201016_02_T2/LC08_L2SR_067091_20190808_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190808_20201016_02_T2/LC08_L2SR_067091_20190808_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190808_20201016_02_T2/LC08_L2SR_067091_20190808_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190808_20201016_02_T2/LC08_L2SR_067091_20190808_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190808_20201016_02_T2/LC08_L2SR_067091_20190808_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190808_20201016_02_T2/LC08_L2SR_067091_20190808_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190808_20201016_02_T2/LC08_L2SR_067091_20190808_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190808_20201016_02_T2/LC08_L2SR_067091_20190808_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70425927,-43.53120948],[-176.28095142,-43.95238102],[-176.87343392,-45.67094477],[-179.29965187,-45.25238324],[-178.70425927,-43.53120948]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-08-08T21:31:03.114416Z","platform":"landsat-8","proj:bbox":[320685.0,-5058015.0,556215.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":88.83,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019220LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":37.65296464,"view:sun_elevation":20.89804511,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20190801_02_T2","bbox":[-177.74629251318905,-45.68405497869346,-174.6878944468797,-43.51739502130654],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20190801_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190801_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190801_20201016_02_T2/LC08_L2SR_066091_20190801_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190801_20201016_02_T2/LC08_L2SR_066091_20190801_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190801_20201016_02_T2/LC08_L2SR_066091_20190801_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190801_20201016_02_T2/LC08_L2SR_066091_20190801_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190801_20201016_02_T2/LC08_L2SR_066091_20190801_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190801_20201016_02_T2/LC08_L2SR_066091_20190801_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190801_20201016_02_T2/LC08_L2SR_066091_20190801_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190801_20201016_02_T2/LC08_L2SR_066091_20190801_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190801_20201016_02_T2/LC08_L2SR_066091_20190801_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190801_20201016_02_T2/LC08_L2SR_066091_20190801_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190801_20201016_02_T2/LC08_L2SR_066091_20190801_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190801_20201016_02_T2/LC08_L2SR_066091_20190801_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190801_20201016_02_T2/LC08_L2SR_066091_20190801_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190801_20201016_02_T2/LC08_L2SR_066091_20190801_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190801_20201016_02_T2/LC08_L2SR_066091_20190801_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190801_20201016_02_T2/LC08_L2SR_066091_20190801_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10266623,-43.51924859],[-174.69038518,-43.97233127],[-175.32930318,-45.68299263],[-177.74385465,-45.23156383],[-177.10266623,-43.51924859]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-08-01T21:24:49.724296Z","platform":"landsat-8","proj:bbox":[441885.0,-5059215.0,680115.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":34.2,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019213LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":36.91368251,"view:sun_elevation":19.13096622,"landsat:cloud_cover_land":20.36,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20190723_02_T2","bbox":[-179.2975624765747,-45.67338493301502,-176.2744044134506,-43.52845506698498],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20190723_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190723_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190723_20201016_02_T2/LC08_L2SR_067091_20190723_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190723_20201016_02_T2/LC08_L2SR_067091_20190723_20201016_02_T2_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190723_20201016_02_T2/LC08_L2SR_067091_20190723_20201016_02_T2_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190723_20201016_02_T2/LC08_L2SR_067091_20190723_20201016_02_T2_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190723_20201016_02_T2/LC08_L2SR_067091_20190723_20201016_02_T2_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190723_20201016_02_T2/LC08_L2SR_067091_20190723_20201016_02_T2_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190723_20201016_02_T2/LC08_L2SR_067091_20190723_20201016_02_T2_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190723_20201016_02_T2/LC08_L2SR_067091_20190723_20201016_02_T2_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190723_20201016_02_T2/LC08_L2SR_067091_20190723_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190723_20201016_02_T2/LC08_L2SR_067091_20190723_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190723_20201016_02_T2/LC08_L2SR_067091_20190723_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190723_20201016_02_T2/LC08_L2SR_067091_20190723_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190723_20201016_02_T2/LC08_L2SR_067091_20190723_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190723_20201016_02_T2/LC08_L2SR_067091_20190723_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190723_20201016_02_T2/LC08_L2SR_067091_20190723_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190723_20201016_02_T2/LC08_L2SR_067091_20190723_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70106138,-43.53106634],[-176.27808786,-43.95224362],[-176.8707015,-45.67076531],[-179.2965914,-45.25219454],[-178.70106138,-43.53106634]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-07-23T21:30:56.620363Z","platform":"landsat-8","proj:bbox":[320985.0,-5058015.0,556515.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":96.84,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019204LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":35.98599401,"view:sun_elevation":17.25271502,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20190716_02_T2","bbox":[-177.74243251315292,-45.68407497875314,-174.687894446901,-43.51739502124686],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20190716_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190716_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190716_20201016_02_T2/LC08_L2SR_066091_20190716_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190716_20201016_02_T2/LC08_L2SR_066091_20190716_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190716_20201016_02_T2/LC08_L2SR_066091_20190716_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190716_20201016_02_T2/LC08_L2SR_066091_20190716_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190716_20201016_02_T2/LC08_L2SR_066091_20190716_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190716_20201016_02_T2/LC08_L2SR_066091_20190716_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190716_20201016_02_T2/LC08_L2SR_066091_20190716_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190716_20201016_02_T2/LC08_L2SR_066091_20190716_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190716_20201016_02_T2/LC08_L2SR_066091_20190716_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190716_20201016_02_T2/LC08_L2SR_066091_20190716_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190716_20201016_02_T2/LC08_L2SR_066091_20190716_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190716_20201016_02_T2/LC08_L2SR_066091_20190716_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190716_20201016_02_T2/LC08_L2SR_066091_20190716_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190716_20201016_02_T2/LC08_L2SR_066091_20190716_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190716_20201016_02_T2/LC08_L2SR_066091_20190716_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190716_20201016_02_T2/LC08_L2SR_066091_20190716_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10100265,-43.51929579],[-174.68918522,-43.97237493],[-175.32820361,-45.68312192],[-177.74229054,-45.23169748],[-177.10100265,-43.51929579]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-07-16T21:24:43.124300Z","platform":"landsat-8","proj:bbox":[442185.0,-5059215.0,680115.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.17,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019197LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":35.30490155,"view:sun_elevation":16.11767475,"landsat:cloud_cover_land":98.73,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20190707_02_T1","bbox":[-179.30910247600508,-45.673454932467514,-176.28595440563038,-43.53093506753248],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20190707_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190707_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190707_20201016_02_T1/LC08_L2SR_067091_20190707_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190707_20201016_02_T1/LC08_L2SR_067091_20190707_20201016_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190707_20201016_02_T1/LC08_L2SR_067091_20190707_20201016_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190707_20201016_02_T1/LC08_L2SR_067091_20190707_20201016_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190707_20201016_02_T1/LC08_L2SR_067091_20190707_20201016_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190707_20201016_02_T1/LC08_L2SR_067091_20190707_20201016_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190707_20201016_02_T1/LC08_L2SR_067091_20190707_20201016_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190707_20201016_02_T1/LC08_L2SR_067091_20190707_20201016_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190707_20201016_02_T1/LC08_L2SR_067091_20190707_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190707_20201016_02_T1/LC08_L2SR_067091_20190707_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190707_20201016_02_T1/LC08_L2SR_067091_20190707_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190707_20201016_02_T1/LC08_L2SR_067091_20190707_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190707_20201016_02_T1/LC08_L2SR_067091_20190707_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190707_20201016_02_T1/LC08_L2SR_067091_20190707_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190707_20201016_02_T1/LC08_L2SR_067091_20190707_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190707_20201016_02_T1/LC08_L2SR_067091_20190707_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71145053,-43.53110754],[-176.2887946,-43.95208587],[-176.8811663,-45.67101544],[-179.30673472,-45.25264939],[-178.71145053,-43.53110754]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-07-07T21:30:52.650041Z","platform":"landsat-8","proj:bbox":[320085.0,-5058015.0,555615.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":21.05,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019188LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":34.50603497,"view:sun_elevation":15.11039752,"landsat:cloud_cover_land":40.03,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20190630_02_T2","bbox":[-177.76169251389712,-45.68394497847167,-174.70328444630078,-43.517675021528326],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20190630_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190630_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190630_20201016_02_T2/LC08_L2SR_066091_20190630_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190630_20201016_02_T2/LC08_L2SR_066091_20190630_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190630_20201016_02_T2/LC08_L2SR_066091_20190630_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190630_20201016_02_T2/LC08_L2SR_066091_20190630_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190630_20201016_02_T2/LC08_L2SR_066091_20190630_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190630_20201016_02_T2/LC08_L2SR_066091_20190630_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190630_20201016_02_T2/LC08_L2SR_066091_20190630_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190630_20201016_02_T2/LC08_L2SR_066091_20190630_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190630_20201016_02_T2/LC08_L2SR_066091_20190630_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190630_20201016_02_T2/LC08_L2SR_066091_20190630_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190630_20201016_02_T2/LC08_L2SR_066091_20190630_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190630_20201016_02_T2/LC08_L2SR_066091_20190630_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190630_20201016_02_T2/LC08_L2SR_066091_20190630_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190630_20201016_02_T2/LC08_L2SR_066091_20190630_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190630_20201016_02_T2/LC08_L2SR_066091_20190630_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190630_20201016_02_T2/LC08_L2SR_066091_20190630_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.11820622,-43.51919298],[-174.70638897,-43.97185235],[-175.34498292,-45.68236864],[-177.75907096,-45.23138027],[-177.11820622,-43.51919298]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-06-30T21:24:40.390608Z","platform":"landsat-8","proj:bbox":[440685.0,-5059215.0,678915.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":50.26,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019181LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":33.97491641,"view:sun_elevation":14.68586975,"landsat:cloud_cover_land":47.96,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20190621_02_T1","bbox":[-179.32064247542718,-45.67355493195315,-176.3013644061279,-43.53071506804685],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20190621_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190621_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190621_20201016_02_T1/LC08_L2SR_067091_20190621_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190621_20201016_02_T1/LC08_L2SR_067091_20190621_20201016_02_T1_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,319185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190621_20201016_02_T1/LC08_L2SR_067091_20190621_20201016_02_T1_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,319185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190621_20201016_02_T1/LC08_L2SR_067091_20190621_20201016_02_T1_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,319185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190621_20201016_02_T1/LC08_L2SR_067091_20190621_20201016_02_T1_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,319185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190621_20201016_02_T1/LC08_L2SR_067091_20190621_20201016_02_T1_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,319185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190621_20201016_02_T1/LC08_L2SR_067091_20190621_20201016_02_T1_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,319185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190621_20201016_02_T1/LC08_L2SR_067091_20190621_20201016_02_T1_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,319185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190621_20201016_02_T1/LC08_L2SR_067091_20190621_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190621_20201016_02_T1/LC08_L2SR_067091_20190621_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190621_20201016_02_T1/LC08_L2SR_067091_20190621_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190621_20201016_02_T1/LC08_L2SR_067091_20190621_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,319185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190621_20201016_02_T1/LC08_L2SR_067091_20190621_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,319185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190621_20201016_02_T1/LC08_L2SR_067091_20190621_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190621_20201016_02_T1/LC08_L2SR_067091_20190621_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,319185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190621_20201016_02_T1/LC08_L2SR_067091_20190621_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.72456331,-43.53071846],[-176.30176219,-43.95154952],[-176.89381145,-45.67075884],[-179.31951938,-45.25255024],[-178.72456331,-43.53071846]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-06-21T21:30:48.785789Z","platform":"landsat-8","proj:bbox":[319185.0,-5058015.0,554415.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":51.42,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019172LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":33.4535005,"view:sun_elevation":14.60276324,"landsat:cloud_cover_land":12.14,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20190614_02_T2","bbox":[-177.7694025144196,-45.68389497835705,-174.71483444587628,-43.51789502164295],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20190614_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190614_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190614_20201016_02_T2/LC08_L2SR_066091_20190614_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190614_20201016_02_T2/LC08_L2SR_066091_20190614_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190614_20201016_02_T2/LC08_L2SR_066091_20190614_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190614_20201016_02_T2/LC08_L2SR_066091_20190614_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190614_20201016_02_T2/LC08_L2SR_066091_20190614_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190614_20201016_02_T2/LC08_L2SR_066091_20190614_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190614_20201016_02_T2/LC08_L2SR_066091_20190614_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190614_20201016_02_T2/LC08_L2SR_066091_20190614_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190614_20201016_02_T2/LC08_L2SR_066091_20190614_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190614_20201016_02_T2/LC08_L2SR_066091_20190614_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190614_20201016_02_T2/LC08_L2SR_066091_20190614_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190614_20201016_02_T2/LC08_L2SR_066091_20190614_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190614_20201016_02_T2/LC08_L2SR_066091_20190614_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190614_20201016_02_T2/LC08_L2SR_066091_20190614_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190614_20201016_02_T2/LC08_L2SR_066091_20190614_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190614_20201016_02_T2/LC08_L2SR_066091_20190614_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.1278968,-43.51966023],[-174.71580922,-43.97213405],[-175.35417181,-45.68243281],[-177.76851458,-45.23163956],[-177.1278968,-43.51966023]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-06-14T21:24:35.666508Z","platform":"landsat-8","proj:bbox":[440085.0,-5059215.0,678015.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":26.91,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019165LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":33.21208048,"view:sun_elevation":14.88643109,"landsat:cloud_cover_land":3.49,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20190605_02_T1","bbox":[-179.32834247507554,-45.67357493159965,-176.30521440639893,-43.530575068400346],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20190605_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190605_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190605_20201016_02_T1/LC08_L2SR_067091_20190605_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190605_20201016_02_T1/LC08_L2SR_067091_20190605_20201016_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190605_20201016_02_T1/LC08_L2SR_067091_20190605_20201016_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190605_20201016_02_T1/LC08_L2SR_067091_20190605_20201016_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190605_20201016_02_T1/LC08_L2SR_067091_20190605_20201016_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190605_20201016_02_T1/LC08_L2SR_067091_20190605_20201016_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190605_20201016_02_T1/LC08_L2SR_067091_20190605_20201016_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190605_20201016_02_T1/LC08_L2SR_067091_20190605_20201016_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190605_20201016_02_T1/LC08_L2SR_067091_20190605_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190605_20201016_02_T1/LC08_L2SR_067091_20190605_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190605_20201016_02_T1/LC08_L2SR_067091_20190605_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190605_20201016_02_T1/LC08_L2SR_067091_20190605_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190605_20201016_02_T1/LC08_L2SR_067091_20190605_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190605_20201016_02_T1/LC08_L2SR_067091_20190605_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190605_20201016_02_T1/LC08_L2SR_067091_20190605_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190605_20201016_02_T1/LC08_L2SR_067091_20190605_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.73092656,-43.53097622],[-176.30774196,-43.95179614],[-176.89963898,-45.67107909],[-179.32572324,-45.25288259],[-178.73092656,-43.53097622]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-06-05T21:30:42.943700Z","platform":"landsat-8","proj:bbox":[318585.0,-5058015.0,554115.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":17.12,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019156LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":33.14533624,"view:sun_elevation":15.68141173,"landsat:cloud_cover_land":14.69,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20190529_02_T1","bbox":[-177.7732525144534,-45.683874978299194,-174.71483444584933,-43.51789502170081],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20190529_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190529_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190529_20201016_02_T1/LC08_L2SR_066091_20190529_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190529_20201016_02_T1/LC08_L2SR_066091_20190529_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190529_20201016_02_T1/LC08_L2SR_066091_20190529_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190529_20201016_02_T1/LC08_L2SR_066091_20190529_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190529_20201016_02_T1/LC08_L2SR_066091_20190529_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190529_20201016_02_T1/LC08_L2SR_066091_20190529_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190529_20201016_02_T1/LC08_L2SR_066091_20190529_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190529_20201016_02_T1/LC08_L2SR_066091_20190529_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190529_20201016_02_T1/LC08_L2SR_066091_20190529_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190529_20201016_02_T1/LC08_L2SR_066091_20190529_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190529_20201016_02_T1/LC08_L2SR_066091_20190529_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190529_20201016_02_T1/LC08_L2SR_066091_20190529_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190529_20201016_02_T1/LC08_L2SR_066091_20190529_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190529_20201016_02_T1/LC08_L2SR_066091_20190529_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190529_20201016_02_T1/LC08_L2SR_066091_20190529_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,439785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190529_20201016_02_T1/LC08_L2SR_066091_20190529_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.13010691,-43.51960963],[-174.7175877,-43.97218481],[-175.35583629,-45.68242994],[-177.77060903,-45.23153362],[-177.13010691,-43.51960963]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-05-29T21:24:28.846597Z","platform":"landsat-8","proj:bbox":[439785.0,-5059215.0,678015.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":4.84,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019149LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":33.31388652,"view:sun_elevation":16.61026957,"landsat:cloud_cover_land":10.28,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20190520_02_T1","bbox":[-179.32449247527074,-45.67355493177655,-176.30136440624784,-43.53064506822345],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20190520_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190520_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190520_20201016_02_T1/LC08_L2SR_067091_20190520_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190520_20201016_02_T1/LC08_L2SR_067091_20190520_20201016_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190520_20201016_02_T1/LC08_L2SR_067091_20190520_20201016_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190520_20201016_02_T1/LC08_L2SR_067091_20190520_20201016_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190520_20201016_02_T1/LC08_L2SR_067091_20190520_20201016_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190520_20201016_02_T1/LC08_L2SR_067091_20190520_20201016_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190520_20201016_02_T1/LC08_L2SR_067091_20190520_20201016_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190520_20201016_02_T1/LC08_L2SR_067091_20190520_20201016_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190520_20201016_02_T1/LC08_L2SR_067091_20190520_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190520_20201016_02_T1/LC08_L2SR_067091_20190520_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190520_20201016_02_T1/LC08_L2SR_067091_20190520_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190520_20201016_02_T1/LC08_L2SR_067091_20190520_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190520_20201016_02_T1/LC08_L2SR_067091_20190520_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190520_20201016_02_T1/LC08_L2SR_067091_20190520_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190520_20201016_02_T1/LC08_L2SR_067091_20190520_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,318885.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190520_20201016_02_T1/LC08_L2SR_067091_20190520_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.72904217,-43.53068687],[-176.30550654,-43.95164551],[-176.89751048,-45.67072136],[-179.32394231,-45.25238375],[-178.72904217,-43.53068687]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-05-20T21:30:34.836946Z","platform":"landsat-8","proj:bbox":[318885.0,-5058015.0,554415.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":15.03,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019140LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":33.84753947,"view:sun_elevation":18.15642056,"landsat:cloud_cover_land":9.06,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20190513_02_T1","bbox":[-177.76555251408593,-45.683924978414396,-174.707134446132,-43.51775502158561],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20190513_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190513_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190513_20201016_02_T1/LC08_L2SR_066091_20190513_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190513_20201016_02_T1/LC08_L2SR_066091_20190513_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190513_20201016_02_T1/LC08_L2SR_066091_20190513_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190513_20201016_02_T1/LC08_L2SR_066091_20190513_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190513_20201016_02_T1/LC08_L2SR_066091_20190513_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190513_20201016_02_T1/LC08_L2SR_066091_20190513_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190513_20201016_02_T1/LC08_L2SR_066091_20190513_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190513_20201016_02_T1/LC08_L2SR_066091_20190513_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190513_20201016_02_T1/LC08_L2SR_066091_20190513_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190513_20201016_02_T1/LC08_L2SR_066091_20190513_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190513_20201016_02_T1/LC08_L2SR_066091_20190513_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190513_20201016_02_T1/LC08_L2SR_066091_20190513_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190513_20201016_02_T1/LC08_L2SR_066091_20190513_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190513_20201016_02_T1/LC08_L2SR_066091_20190513_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190513_20201016_02_T1/LC08_L2SR_066091_20190513_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190513_20201016_02_T1/LC08_L2SR_066091_20190513_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.12404275,-43.51924059],[-174.71127354,-43.97200588],[-175.34976704,-45.68225609],[-177.76480057,-45.23115847],[-177.12404275,-43.51924059]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-05-13T21:24:19.752919Z","platform":"landsat-8","proj:bbox":[440385.0,-5059215.0,678615.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":26.97,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019133LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":34.52650626,"view:sun_elevation":19.60068716,"landsat:cloud_cover_land":23.13,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20190504_02_T2","bbox":[-179.3167924756518,-45.673504932128836,-176.29366440592304,-43.53079506787116],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20190504_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190504_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190504_20201016_02_T2/LC08_L2SR_067091_20190504_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190504_20201016_02_T2/LC08_L2SR_067091_20190504_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190504_20201016_02_T2/LC08_L2SR_067091_20190504_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190504_20201016_02_T2/LC08_L2SR_067091_20190504_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190504_20201016_02_T2/LC08_L2SR_067091_20190504_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190504_20201016_02_T2/LC08_L2SR_067091_20190504_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190504_20201016_02_T2/LC08_L2SR_067091_20190504_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190504_20201016_02_T2/LC08_L2SR_067091_20190504_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190504_20201016_02_T2/LC08_L2SR_067091_20190504_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190504_20201016_02_T2/LC08_L2SR_067091_20190504_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190504_20201016_02_T2/LC08_L2SR_067091_20190504_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190504_20201016_02_T2/LC08_L2SR_067091_20190504_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190504_20201016_02_T2/LC08_L2SR_067091_20190504_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190504_20201016_02_T2/LC08_L2SR_067091_20190504_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190504_20201016_02_T2/LC08_L2SR_067091_20190504_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190504_20201016_02_T2/LC08_L2SR_067091_20190504_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71979212,-43.53108422],[-176.29615793,-43.95230041],[-176.88852538,-45.67112421],[-179.31507374,-45.25252053],[-178.71979212,-43.53108422]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-05-04T21:30:24.329105Z","platform":"landsat-8","proj:bbox":[319485.0,-5058015.0,555015.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":67.06,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019124LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":35.74323053,"view:sun_elevation":21.71746695,"landsat:cloud_cover_land":50.66,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20190427_02_T1","bbox":[-177.76169251389712,-45.68394497847167,-174.70328444630078,-43.517675021528326],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20190427_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190427_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190427_20201016_02_T1/LC08_L2SR_066091_20190427_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190427_20201016_02_T1/LC08_L2SR_066091_20190427_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190427_20201016_02_T1/LC08_L2SR_066091_20190427_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190427_20201016_02_T1/LC08_L2SR_066091_20190427_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190427_20201016_02_T1/LC08_L2SR_066091_20190427_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190427_20201016_02_T1/LC08_L2SR_066091_20190427_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190427_20201016_02_T1/LC08_L2SR_066091_20190427_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190427_20201016_02_T1/LC08_L2SR_066091_20190427_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190427_20201016_02_T1/LC08_L2SR_066091_20190427_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190427_20201016_02_T1/LC08_L2SR_066091_20190427_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190427_20201016_02_T1/LC08_L2SR_066091_20190427_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190427_20201016_02_T1/LC08_L2SR_066091_20190427_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190427_20201016_02_T1/LC08_L2SR_066091_20190427_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190427_20201016_02_T1/LC08_L2SR_066091_20190427_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190427_20201016_02_T1/LC08_L2SR_066091_20190427_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190427_20201016_02_T1/LC08_L2SR_066091_20190427_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.11934175,-43.51931592],[-174.70673633,-43.97221451],[-175.34540642,-45.68253276],[-177.76028689,-45.23130823],[-177.11934175,-43.51931592]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-04-27T21:24:10.216370Z","platform":"landsat-8","proj:bbox":[440685.0,-5059215.0,678915.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":69.56,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019117LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":36.9605034,"view:sun_elevation":23.53042323,"landsat:cloud_cover_land":70.31,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20190418_02_T2","bbox":[-179.28206246804268,-45.670584933700404,-176.25903440458356,-43.5314350662996],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20190418_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190418_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190418_20201016_02_T2/LC08_L2SR_067091_20190418_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190418_20201016_02_T2/LC08_L2SR_067091_20190418_20201016_02_T2_SR_B1.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190418_20201016_02_T2/LC08_L2SR_067091_20190418_20201016_02_T2_SR_B2.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190418_20201016_02_T2/LC08_L2SR_067091_20190418_20201016_02_T2_SR_B3.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190418_20201016_02_T2/LC08_L2SR_067091_20190418_20201016_02_T2_SR_B4.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190418_20201016_02_T2/LC08_L2SR_067091_20190418_20201016_02_T2_SR_B5.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190418_20201016_02_T2/LC08_L2SR_067091_20190418_20201016_02_T2_SR_B6.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190418_20201016_02_T2/LC08_L2SR_067091_20190418_20201016_02_T2_SR_B7.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190418_20201016_02_T2/LC08_L2SR_067091_20190418_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190418_20201016_02_T2/LC08_L2SR_067091_20190418_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190418_20201016_02_T2/LC08_L2SR_067091_20190418_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190418_20201016_02_T2/LC08_L2SR_067091_20190418_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190418_20201016_02_T2/LC08_L2SR_067091_20190418_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190418_20201016_02_T2/LC08_L2SR_067091_20190418_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190418_20201016_02_T2/LC08_L2SR_067091_20190418_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190418_20201016_02_T2/LC08_L2SR_067091_20190418_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.68415705,-43.5315529],[-176.26104792,-43.95172823],[-176.85232835,-45.67016343],[-179.2783394,-45.25258292],[-178.68415705,-43.5315529]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-04-18T21:30:23.172006Z","platform":"landsat-8","proj:bbox":[322185.0,-5057715.0,557715.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":97.03,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019108LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":38.80228509,"view:sun_elevation":26.04247171,"landsat:cloud_cover_land":99.96,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20190411_02_T1","bbox":[-177.72317251207954,-45.68419497902752,-174.66480444780132,-43.51695502097249],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20190411_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190411_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190411_20201016_02_T1/LC08_L2SR_066091_20190411_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190411_20201016_02_T1/LC08_L2SR_066091_20190411_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190411_20201016_02_T1/LC08_L2SR_066091_20190411_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190411_20201016_02_T1/LC08_L2SR_066091_20190411_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190411_20201016_02_T1/LC08_L2SR_066091_20190411_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190411_20201016_02_T1/LC08_L2SR_066091_20190411_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190411_20201016_02_T1/LC08_L2SR_066091_20190411_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190411_20201016_02_T1/LC08_L2SR_066091_20190411_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190411_20201016_02_T1/LC08_L2SR_066091_20190411_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190411_20201016_02_T1/LC08_L2SR_066091_20190411_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190411_20201016_02_T1/LC08_L2SR_066091_20190411_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190411_20201016_02_T1/LC08_L2SR_066091_20190411_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190411_20201016_02_T1/LC08_L2SR_066091_20190411_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190411_20201016_02_T1/LC08_L2SR_066091_20190411_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190411_20201016_02_T1/LC08_L2SR_066091_20190411_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190411_20201016_02_T1/LC08_L2SR_066091_20190411_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.08009016,-43.51926015],[-174.66786983,-43.97158148],[-175.30562263,-45.68288881],[-177.72009725,-45.23220922],[-177.08009016,-43.51926015]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-04-11T21:24:15.264933Z","platform":"landsat-8","proj:bbox":[443685.0,-5059215.0,681915.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":96.24,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019101LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":40.5025686,"view:sun_elevation":28.07757239,"landsat:cloud_cover_land":77.53,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20190402_02_T2","bbox":[-179.2744724776071,-45.67325493400851,-176.2551444042944,-43.531585065991486],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20190402_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190402_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190402_20201016_02_T2/LC08_L2SR_067091_20190402_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190402_20201016_02_T2/LC08_L2SR_067091_20190402_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190402_20201016_02_T2/LC08_L2SR_067091_20190402_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190402_20201016_02_T2/LC08_L2SR_067091_20190402_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190402_20201016_02_T2/LC08_L2SR_067091_20190402_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190402_20201016_02_T2/LC08_L2SR_067091_20190402_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190402_20201016_02_T2/LC08_L2SR_067091_20190402_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190402_20201016_02_T2/LC08_L2SR_067091_20190402_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190402_20201016_02_T2/LC08_L2SR_067091_20190402_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190402_20201016_02_T2/LC08_L2SR_067091_20190402_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190402_20201016_02_T2/LC08_L2SR_067091_20190402_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190402_20201016_02_T2/LC08_L2SR_067091_20190402_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190402_20201016_02_T2/LC08_L2SR_067091_20190402_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190402_20201016_02_T2/LC08_L2SR_067091_20190402_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190402_20201016_02_T2/LC08_L2SR_067091_20190402_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190402_20201016_02_T2/LC08_L2SR_067091_20190402_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.67880897,-43.5317388],[-176.25584319,-43.95205745],[-176.84747271,-45.67030483],[-179.27333014,-45.25258274],[-178.67880897,-43.5317388]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-04-02T21:30:29.033339Z","platform":"landsat-8","proj:bbox":[322785.0,-5058015.0,558015.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":58.26,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019092LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":42.96991135,"view:sun_elevation":30.7603132,"landsat:cloud_cover_land":56.56,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20190326_02_T1","bbox":[-177.71547251172643,-45.68424497913123,-174.65711444811706,-43.516805020868766],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20190326_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190326_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190326_20201016_02_T1/LC08_L2SR_066091_20190326_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190326_20201016_02_T1/LC08_L2SR_066091_20190326_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190326_20201016_02_T1/LC08_L2SR_066091_20190326_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190326_20201016_02_T1/LC08_L2SR_066091_20190326_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190326_20201016_02_T1/LC08_L2SR_066091_20190326_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190326_20201016_02_T1/LC08_L2SR_066091_20190326_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190326_20201016_02_T1/LC08_L2SR_066091_20190326_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190326_20201016_02_T1/LC08_L2SR_066091_20190326_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190326_20201016_02_T1/LC08_L2SR_066091_20190326_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190326_20201016_02_T1/LC08_L2SR_066091_20190326_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190326_20201016_02_T1/LC08_L2SR_066091_20190326_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190326_20201016_02_T1/LC08_L2SR_066091_20190326_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190326_20201016_02_T1/LC08_L2SR_066091_20190326_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190326_20201016_02_T1/LC08_L2SR_066091_20190326_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190326_20201016_02_T1/LC08_L2SR_066091_20190326_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190326_20201016_02_T1/LC08_L2SR_066091_20190326_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.0713458,-43.51866454],[-174.65938542,-43.97126744],[-175.29753439,-45.68272552],[-177.71174118,-45.23176231],[-177.0713458,-43.51866454]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-03-26T21:24:19.939855Z","platform":"landsat-8","proj:bbox":[444285.0,-5059215.0,682515.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":58.15,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019085LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":45.07865898,"view:sun_elevation":32.87046094,"landsat:cloud_cover_land":44.5,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20190317_02_T2","bbox":[-179.26293247813976,-45.67318493451306,-176.24359440386365,-43.531795065486946],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20190317_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190317_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190317_20201016_02_T2/LC08_L2SR_067091_20190317_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190317_20201016_02_T2/LC08_L2SR_067091_20190317_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190317_20201016_02_T2/LC08_L2SR_067091_20190317_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190317_20201016_02_T2/LC08_L2SR_067091_20190317_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190317_20201016_02_T2/LC08_L2SR_067091_20190317_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190317_20201016_02_T2/LC08_L2SR_067091_20190317_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190317_20201016_02_T2/LC08_L2SR_067091_20190317_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190317_20201016_02_T2/LC08_L2SR_067091_20190317_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190317_20201016_02_T2/LC08_L2SR_067091_20190317_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190317_20201016_02_T2/LC08_L2SR_067091_20190317_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190317_20201016_02_T2/LC08_L2SR_067091_20190317_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190317_20201016_02_T2/LC08_L2SR_067091_20190317_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190317_20201016_02_T2/LC08_L2SR_067091_20190317_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190317_20201016_02_T2/LC08_L2SR_067091_20190317_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190317_20201016_02_T2/LC08_L2SR_067091_20190317_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190317_20201016_02_T2/LC08_L2SR_067091_20190317_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.66721522,-43.53180211],[-176.24448423,-43.95237199],[-176.83662326,-45.67035425],[-179.26224447,-45.252367],[-178.66721522,-43.53180211]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-03-17T21:30:32.332004Z","platform":"landsat-8","proj:bbox":[323685.0,-5058015.0,558915.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.98,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019076LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":47.9780656,"view:sun_elevation":35.56641891,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20190310_02_T2","bbox":[-177.7077625113453,-45.684294979237855,-174.64941444841807,-43.51666502076215],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20190310_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190310_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190310_20201016_02_T2/LC08_L2SR_066091_20190310_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190310_20201016_02_T2/LC08_L2SR_066091_20190310_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190310_20201016_02_T2/LC08_L2SR_066091_20190310_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190310_20201016_02_T2/LC08_L2SR_066091_20190310_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190310_20201016_02_T2/LC08_L2SR_066091_20190310_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190310_20201016_02_T2/LC08_L2SR_066091_20190310_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190310_20201016_02_T2/LC08_L2SR_066091_20190310_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190310_20201016_02_T2/LC08_L2SR_066091_20190310_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190310_20201016_02_T2/LC08_L2SR_066091_20190310_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190310_20201016_02_T2/LC08_L2SR_066091_20190310_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190310_20201016_02_T2/LC08_L2SR_066091_20190310_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190310_20201016_02_T2/LC08_L2SR_066091_20190310_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190310_20201016_02_T2/LC08_L2SR_066091_20190310_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190310_20201016_02_T2/LC08_L2SR_066091_20190310_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190310_20201016_02_T2/LC08_L2SR_066091_20190310_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190310_20201016_02_T2/LC08_L2SR_066091_20190310_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.06354873,-43.51872012],[-174.65184518,-43.97158922],[-175.29041777,-45.68315352],[-177.70435473,-45.23192224],[-177.06354873,-43.51872012]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-03-10T21:24:23.540133Z","platform":"landsat-8","proj:bbox":[444885.0,-5059215.0,683115.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":25.53,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019069LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":50.32647327,"view:sun_elevation":37.63915114,"landsat:cloud_cover_land":14.22,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20190301_02_T2","bbox":[-179.26667246873143,-45.67048493441265,-176.24362441226597,-43.52902506558735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20190301_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190301_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190301_20201016_02_T2/LC08_L2SR_067091_20190301_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190301_20201016_02_T2/LC08_L2SR_067091_20190301_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190301_20201016_02_T2/LC08_L2SR_067091_20190301_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190301_20201016_02_T2/LC08_L2SR_067091_20190301_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190301_20201016_02_T2/LC08_L2SR_067091_20190301_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190301_20201016_02_T2/LC08_L2SR_067091_20190301_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190301_20201016_02_T2/LC08_L2SR_067091_20190301_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190301_20201016_02_T2/LC08_L2SR_067091_20190301_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190301_20201016_02_T2/LC08_L2SR_067091_20190301_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190301_20201016_02_T2/LC08_L2SR_067091_20190301_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190301_20201016_02_T2/LC08_L2SR_067091_20190301_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190301_20201016_02_T2/LC08_L2SR_067091_20190301_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190301_20201016_02_T2/LC08_L2SR_067091_20190301_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190301_20201016_02_T2/LC08_L2SR_067091_20190301_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190301_20201016_02_T2/LC08_L2SR_067091_20190301_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190301_20201016_02_T2/LC08_L2SR_067091_20190301_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.66966981,-43.53144644],[-176.24707785,-43.95208902],[-176.8392846,-45.67012724],[-179.2647594,-45.25207027],[-178.66966981,-43.53144644]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-03-01T21:30:37.725294Z","platform":"landsat-8","proj:bbox":[323385.0,-5057715.0,558915.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":93.36,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019060LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":53.37969017,"view:sun_elevation":40.23782978,"landsat:cloud_cover_land":99.89,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20190222_02_T2","bbox":[-177.71162251154016,-45.68427497918466,-174.6532644482674,-43.51673502081534],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20190222_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190222_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190222_20201016_02_T2/LC08_L2SR_066091_20190222_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190222_20201016_02_T2/LC08_L2SR_066091_20190222_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190222_20201016_02_T2/LC08_L2SR_066091_20190222_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190222_20201016_02_T2/LC08_L2SR_066091_20190222_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190222_20201016_02_T2/LC08_L2SR_066091_20190222_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190222_20201016_02_T2/LC08_L2SR_066091_20190222_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190222_20201016_02_T2/LC08_L2SR_066091_20190222_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190222_20201016_02_T2/LC08_L2SR_066091_20190222_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190222_20201016_02_T2/LC08_L2SR_066091_20190222_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190222_20201016_02_T2/LC08_L2SR_066091_20190222_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190222_20201016_02_T2/LC08_L2SR_066091_20190222_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190222_20201016_02_T2/LC08_L2SR_066091_20190222_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190222_20201016_02_T2/LC08_L2SR_066091_20190222_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190222_20201016_02_T2/LC08_L2SR_066091_20190222_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190222_20201016_02_T2/LC08_L2SR_066091_20190222_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190222_20201016_02_T2/LC08_L2SR_066091_20190222_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.06879779,-43.51867764],[-174.65690709,-43.97158257],[-175.29549319,-45.68302672],[-177.70961558,-45.23176714],[-177.06879779,-43.51867764]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-02-22T21:24:28.984759Z","platform":"landsat-8","proj:bbox":[444585.0,-5059215.0,682815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.99,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019053LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":55.71885167,"view:sun_elevation":42.19381196,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20190213_02_T1","bbox":[-179.27063247779645,-45.673204934202275,-176.24744441241177,-43.528955065797724],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20190213_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190213_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190213_20201016_02_T1/LC08_L2SR_067091_20190213_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190213_20201016_02_T1/LC08_L2SR_067091_20190213_20201016_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190213_20201016_02_T1/LC08_L2SR_067091_20190213_20201016_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190213_20201016_02_T1/LC08_L2SR_067091_20190213_20201016_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190213_20201016_02_T1/LC08_L2SR_067091_20190213_20201016_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190213_20201016_02_T1/LC08_L2SR_067091_20190213_20201016_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190213_20201016_02_T1/LC08_L2SR_067091_20190213_20201016_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190213_20201016_02_T1/LC08_L2SR_067091_20190213_20201016_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190213_20201016_02_T1/LC08_L2SR_067091_20190213_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190213_20201016_02_T1/LC08_L2SR_067091_20190213_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190213_20201016_02_T1/LC08_L2SR_067091_20190213_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190213_20201016_02_T1/LC08_L2SR_067091_20190213_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190213_20201016_02_T1/LC08_L2SR_067091_20190213_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190213_20201016_02_T1/LC08_L2SR_067091_20190213_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190213_20201016_02_T1/LC08_L2SR_067091_20190213_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190213_20201016_02_T1/LC08_L2SR_067091_20190213_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.67197213,-43.53150827],[-176.2490155,-43.9522789],[-176.84131315,-45.67030048],[-179.26714112,-45.2521215],[-178.67197213,-43.53150827]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-02-13T21:30:41.742433Z","platform":"landsat-8","proj:bbox":[323085.0,-5058015.0,558615.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":56.65,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019044LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":58.57240764,"view:sun_elevation":44.59780489,"landsat:cloud_cover_land":71.45,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20190206_02_T1","bbox":[-177.71162251154016,-45.68427497918466,-174.6532644482674,-43.51673502081534],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20190206_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190206_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190206_20201016_02_T1/LC08_L2SR_066091_20190206_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190206_20201016_02_T1/LC08_L2SR_066091_20190206_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190206_20201016_02_T1/LC08_L2SR_066091_20190206_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190206_20201016_02_T1/LC08_L2SR_066091_20190206_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190206_20201016_02_T1/LC08_L2SR_066091_20190206_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190206_20201016_02_T1/LC08_L2SR_066091_20190206_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190206_20201016_02_T1/LC08_L2SR_066091_20190206_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190206_20201016_02_T1/LC08_L2SR_066091_20190206_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190206_20201016_02_T1/LC08_L2SR_066091_20190206_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190206_20201016_02_T1/LC08_L2SR_066091_20190206_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190206_20201016_02_T1/LC08_L2SR_066091_20190206_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190206_20201016_02_T1/LC08_L2SR_066091_20190206_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190206_20201016_02_T1/LC08_L2SR_066091_20190206_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190206_20201016_02_T1/LC08_L2SR_066091_20190206_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190206_20201016_02_T1/LC08_L2SR_066091_20190206_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190206_20201016_02_T1/LC08_L2SR_066091_20190206_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.06910344,-43.51890274],[-174.65698352,-43.9719917],[-175.29577182,-45.68336267],[-177.71011907,-45.23191466],[-177.06910344,-43.51890274]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-02-06T21:24:31.909575Z","platform":"landsat-8","proj:bbox":[444585.0,-5059215.0,682815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":66.32,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019037LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":60.58824689,"view:sun_elevation":46.3770651,"landsat:cloud_cover_land":60.84,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20190128_02_T1","bbox":[-179.2667824779851,-45.673184934374504,-176.24359441226596,-43.5290250656255],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20190128_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190128_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190128_20201016_02_T1/LC08_L2SR_067091_20190128_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190128_20201016_02_T1/LC08_L2SR_067091_20190128_20201016_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190128_20201016_02_T1/LC08_L2SR_067091_20190128_20201016_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190128_20201016_02_T1/LC08_L2SR_067091_20190128_20201016_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190128_20201016_02_T1/LC08_L2SR_067091_20190128_20201016_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190128_20201016_02_T1/LC08_L2SR_067091_20190128_20201016_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190128_20201016_02_T1/LC08_L2SR_067091_20190128_20201016_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190128_20201016_02_T1/LC08_L2SR_067091_20190128_20201016_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190128_20201016_02_T1/LC08_L2SR_067091_20190128_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190128_20201016_02_T1/LC08_L2SR_067091_20190128_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190128_20201016_02_T1/LC08_L2SR_067091_20190128_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190128_20201016_02_T1/LC08_L2SR_067091_20190128_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190128_20201016_02_T1/LC08_L2SR_067091_20190128_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190128_20201016_02_T1/LC08_L2SR_067091_20190128_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190128_20201016_02_T1/LC08_L2SR_067091_20190128_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190128_20201016_02_T1/LC08_L2SR_067091_20190128_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.67054543,-43.53139676],[-176.2474708,-43.9523116],[-176.83996478,-45.67020034],[-179.26592071,-45.25187442],[-178.67054543,-43.53139676]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-01-28T21:30:43.761953Z","platform":"landsat-8","proj:bbox":[323385.0,-5058015.0,558915.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":5.84,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019028LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":62.79718208,"view:sun_elevation":48.51767822,"landsat:cloud_cover_land":8.4,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20190121_02_T1","bbox":[-177.71547251172643,-45.68424497913123,-174.65711444811706,-43.516805020868766],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20190121_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190121_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190121_20201016_02_T1/LC08_L2SR_066091_20190121_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190121_20201016_02_T1/LC08_L2SR_066091_20190121_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190121_20201016_02_T1/LC08_L2SR_066091_20190121_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190121_20201016_02_T1/LC08_L2SR_066091_20190121_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190121_20201016_02_T1/LC08_L2SR_066091_20190121_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190121_20201016_02_T1/LC08_L2SR_066091_20190121_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190121_20201016_02_T1/LC08_L2SR_066091_20190121_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190121_20201016_02_T1/LC08_L2SR_066091_20190121_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190121_20201016_02_T1/LC08_L2SR_066091_20190121_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190121_20201016_02_T1/LC08_L2SR_066091_20190121_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190121_20201016_02_T1/LC08_L2SR_066091_20190121_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190121_20201016_02_T1/LC08_L2SR_066091_20190121_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190121_20201016_02_T1/LC08_L2SR_066091_20190121_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190121_20201016_02_T1/LC08_L2SR_066091_20190121_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190121_20201016_02_T1/LC08_L2SR_066091_20190121_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190121_20201016_02_T1/LC08_L2SR_066091_20190121_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.07316093,-43.5186302],[-174.66100511,-43.97172751],[-175.2997847,-45.68303325],[-177.71417898,-45.23157922],[-177.07316093,-43.5186302]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-01-21T21:24:34.692638Z","platform":"landsat-8","proj:bbox":[444285.0,-5059215.0,682515.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":28.73,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019021LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":64.13884013,"view:sun_elevation":50.04873012,"landsat:cloud_cover_land":55.48,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20190112_02_T2","bbox":[-179.27832247745206,-45.673254933869714,-176.25514441269695,-43.528815066130285],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20190112_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190112_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190112_20201016_02_T2/LC08_L2SR_067091_20190112_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190112_20201016_02_T2/LC08_L2SR_067091_20190112_20201016_02_T2_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190112_20201016_02_T2/LC08_L2SR_067091_20190112_20201016_02_T2_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190112_20201016_02_T2/LC08_L2SR_067091_20190112_20201016_02_T2_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190112_20201016_02_T2/LC08_L2SR_067091_20190112_20201016_02_T2_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190112_20201016_02_T2/LC08_L2SR_067091_20190112_20201016_02_T2_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190112_20201016_02_T2/LC08_L2SR_067091_20190112_20201016_02_T2_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190112_20201016_02_T2/LC08_L2SR_067091_20190112_20201016_02_T2_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190112_20201016_02_T2/LC08_L2SR_067091_20190112_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190112_20201016_02_T2/LC08_L2SR_067091_20190112_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190112_20201016_02_T2/LC08_L2SR_067091_20190112_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190112_20201016_02_T2/LC08_L2SR_067091_20190112_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190112_20201016_02_T2/LC08_L2SR_067091_20190112_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190112_20201016_02_T2/LC08_L2SR_067091_20190112_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190112_20201016_02_T2/LC08_L2SR_067091_20190112_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/067/091/LC08_L2SR_067091_20190112_20201016_02_T2/LC08_L2SR_067091_20190112_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.68122317,-43.5313176],[-176.25809958,-43.95216077],[-176.85040089,-45.67030487],[-179.27641066,-45.2520512],[-178.68122317,-43.5313176]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-01-12T21:30:47.732049Z","platform":"landsat-8","proj:bbox":[322485.0,-5058015.0,558015.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":78.73,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912019012LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":65.26198771,"view:sun_elevation":51.80839126,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20190105_02_T1","bbox":[-177.7270325122727,-45.68417497896924,-174.66865444765213,-43.51702502103076],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20190105_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190105_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190105_20201016_02_T1/LC08_L2SR_066091_20190105_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190105_20201016_02_T1/LC08_L2SR_066091_20190105_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190105_20201016_02_T1/LC08_L2SR_066091_20190105_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190105_20201016_02_T1/LC08_L2SR_066091_20190105_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190105_20201016_02_T1/LC08_L2SR_066091_20190105_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190105_20201016_02_T1/LC08_L2SR_066091_20190105_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190105_20201016_02_T1/LC08_L2SR_066091_20190105_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190105_20201016_02_T1/LC08_L2SR_066091_20190105_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190105_20201016_02_T1/LC08_L2SR_066091_20190105_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190105_20201016_02_T1/LC08_L2SR_066091_20190105_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190105_20201016_02_T1/LC08_L2SR_066091_20190105_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190105_20201016_02_T1/LC08_L2SR_066091_20190105_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190105_20201016_02_T1/LC08_L2SR_066091_20190105_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190105_20201016_02_T1/LC08_L2SR_066091_20190105_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190105_20201016_02_T1/LC08_L2SR_066091_20190105_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2019/066/091/LC08_L2SR_066091_20190105_20201016_02_T1/LC08_L2SR_066091_20190105_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.08375596,-43.51900186],[-174.67153512,-43.97196026],[-175.31017857,-45.68302841],[-177.72464184,-45.23172682],[-177.08375596,-43.51900186]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2019-01-05T21:24:38.120945Z","platform":"landsat-8","proj:bbox":[443385.0,-5059215.0,681615.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":42.15,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912019005LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":65.60040911,"view:sun_elevation":52.98663274,"landsat:cloud_cover_land":2.32,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20181227_02_T1","bbox":[-179.28602247710606,-45.67330493352415,-176.26284441301416,-43.528665066475845],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20181227_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181227_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181227_20201016_02_T1/LC08_L2SR_067091_20181227_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181227_20201016_02_T1/LC08_L2SR_067091_20181227_20201016_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181227_20201016_02_T1/LC08_L2SR_067091_20181227_20201016_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181227_20201016_02_T1/LC08_L2SR_067091_20181227_20201016_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181227_20201016_02_T1/LC08_L2SR_067091_20181227_20201016_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181227_20201016_02_T1/LC08_L2SR_067091_20181227_20201016_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181227_20201016_02_T1/LC08_L2SR_067091_20181227_20201016_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181227_20201016_02_T1/LC08_L2SR_067091_20181227_20201016_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181227_20201016_02_T1/LC08_L2SR_067091_20181227_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181227_20201016_02_T1/LC08_L2SR_067091_20181227_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181227_20201016_02_T1/LC08_L2SR_067091_20181227_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181227_20201016_02_T1/LC08_L2SR_067091_20181227_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181227_20201016_02_T1/LC08_L2SR_067091_20181227_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181227_20201016_02_T1/LC08_L2SR_067091_20181227_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181227_20201016_02_T1/LC08_L2SR_067091_20181227_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181227_20201016_02_T1/LC08_L2SR_067091_20181227_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.68745798,-43.53128562],[-176.26437887,-43.9521335],[-176.85664062,-45.6704593],[-179.28261671,-45.25221124],[-178.68745798,-43.53128562]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-12-27T21:30:49.640680Z","platform":"landsat-8","proj:bbox":[321885.0,-5058015.0,557415.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":15.95,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018361LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":65.29528182,"view:sun_elevation":54.1947823,"landsat:cloud_cover_land":47.33,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20181220_02_T1","bbox":[-177.73088251246529,-45.68415497891456,-174.67250444747998,-43.517105021085435],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20181220_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181220_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181220_20201016_02_T1/LC08_L2SR_066091_20181220_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181220_20201016_02_T1/LC08_L2SR_066091_20181220_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181220_20201016_02_T1/LC08_L2SR_066091_20181220_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181220_20201016_02_T1/LC08_L2SR_066091_20181220_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181220_20201016_02_T1/LC08_L2SR_066091_20181220_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181220_20201016_02_T1/LC08_L2SR_066091_20181220_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181220_20201016_02_T1/LC08_L2SR_066091_20181220_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181220_20201016_02_T1/LC08_L2SR_066091_20181220_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181220_20201016_02_T1/LC08_L2SR_066091_20181220_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181220_20201016_02_T1/LC08_L2SR_066091_20181220_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181220_20201016_02_T1/LC08_L2SR_066091_20181220_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181220_20201016_02_T1/LC08_L2SR_066091_20181220_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181220_20201016_02_T1/LC08_L2SR_066091_20181220_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181220_20201016_02_T1/LC08_L2SR_066091_20181220_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181220_20201016_02_T1/LC08_L2SR_066091_20181220_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443085.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181220_20201016_02_T1/LC08_L2SR_066091_20181220_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.08653936,-43.51891516],[-174.67448796,-43.97189145],[-175.3132325,-45.68295067],[-177.72753608,-45.23162046],[-177.08653936,-43.51891516]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-12-20T21:24:38.775470Z","platform":"landsat-8","proj:bbox":[443085.0,-5059215.0,681315.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":82.16,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018354LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":64.48515382,"view:sun_elevation":54.84849192,"landsat:cloud_cover_land":45.03,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20181211_02_T2","bbox":[-179.28602247710606,-45.67330493352415,-176.26284441301416,-43.528665066475845],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20181211_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181211_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181211_20201016_02_T2/LC08_L2SR_067091_20181211_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181211_20201016_02_T2/LC08_L2SR_067091_20181211_20201016_02_T2_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181211_20201016_02_T2/LC08_L2SR_067091_20181211_20201016_02_T2_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181211_20201016_02_T2/LC08_L2SR_067091_20181211_20201016_02_T2_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181211_20201016_02_T2/LC08_L2SR_067091_20181211_20201016_02_T2_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181211_20201016_02_T2/LC08_L2SR_067091_20181211_20201016_02_T2_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181211_20201016_02_T2/LC08_L2SR_067091_20181211_20201016_02_T2_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181211_20201016_02_T2/LC08_L2SR_067091_20181211_20201016_02_T2_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181211_20201016_02_T2/LC08_L2SR_067091_20181211_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181211_20201016_02_T2/LC08_L2SR_067091_20181211_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181211_20201016_02_T2/LC08_L2SR_067091_20181211_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181211_20201016_02_T2/LC08_L2SR_067091_20181211_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181211_20201016_02_T2/LC08_L2SR_067091_20181211_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181211_20201016_02_T2/LC08_L2SR_067091_20181211_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181211_20201016_02_T2/LC08_L2SR_067091_20181211_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181211_20201016_02_T2/LC08_L2SR_067091_20181211_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.68791598,-43.53133031],[-176.26521951,-43.95218695],[-176.85763135,-45.67057955],[-179.28322536,-45.25232213],[-178.68791598,-43.53133031]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-12-11T21:30:49.476509Z","platform":"landsat-8","proj:bbox":[321885.0,-5058015.0,557415.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.42,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018345LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":62.75921537,"view:sun_elevation":55.26169413,"landsat:cloud_cover_land":98.84,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20181204_02_T2","bbox":[-177.73858251299603,-45.68410497880859,-174.68404444707193,-43.51731502119141],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20181204_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181204_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181204_20201016_02_T2/LC08_L2SR_066091_20181204_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181204_20201016_02_T2/LC08_L2SR_066091_20181204_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181204_20201016_02_T2/LC08_L2SR_066091_20181204_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181204_20201016_02_T2/LC08_L2SR_066091_20181204_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181204_20201016_02_T2/LC08_L2SR_066091_20181204_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181204_20201016_02_T2/LC08_L2SR_066091_20181204_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181204_20201016_02_T2/LC08_L2SR_066091_20181204_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181204_20201016_02_T2/LC08_L2SR_066091_20181204_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181204_20201016_02_T2/LC08_L2SR_066091_20181204_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181204_20201016_02_T2/LC08_L2SR_066091_20181204_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181204_20201016_02_T2/LC08_L2SR_066091_20181204_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181204_20201016_02_T2/LC08_L2SR_066091_20181204_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181204_20201016_02_T2/LC08_L2SR_066091_20181204_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181204_20201016_02_T2/LC08_L2SR_066091_20181204_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181204_20201016_02_T2/LC08_L2SR_066091_20181204_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181204_20201016_02_T2/LC08_L2SR_066091_20181204_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.09705443,-43.51912158],[-174.68528242,-43.97184366],[-175.32386388,-45.68278784],[-177.7378844,-45.23172524],[-177.09705443,-43.51912158]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-12-04T21:24:40.446174Z","platform":"landsat-8","proj:bbox":[442485.0,-5059215.0,680415.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":13.79,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018338LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":60.98008532,"view:sun_elevation":55.20772323,"landsat:cloud_cover_land":0.01,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20181125_02_T1","bbox":[-179.3052524761981,-45.673434932678695,-176.28210441376436,-43.528305067321305],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20181125_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181125_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181125_20201016_02_T1/LC08_L2SR_067091_20181125_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181125_20201016_02_T1/LC08_L2SR_067091_20181125_20201016_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181125_20201016_02_T1/LC08_L2SR_067091_20181125_20201016_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181125_20201016_02_T1/LC08_L2SR_067091_20181125_20201016_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181125_20201016_02_T1/LC08_L2SR_067091_20181125_20201016_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181125_20201016_02_T1/LC08_L2SR_067091_20181125_20201016_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181125_20201016_02_T1/LC08_L2SR_067091_20181125_20201016_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181125_20201016_02_T1/LC08_L2SR_067091_20181125_20201016_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181125_20201016_02_T1/LC08_L2SR_067091_20181125_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181125_20201016_02_T1/LC08_L2SR_067091_20181125_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181125_20201016_02_T1/LC08_L2SR_067091_20181125_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181125_20201016_02_T1/LC08_L2SR_067091_20181125_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181125_20201016_02_T1/LC08_L2SR_067091_20181125_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181125_20201016_02_T1/LC08_L2SR_067091_20181125_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181125_20201016_02_T1/LC08_L2SR_067091_20181125_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181125_20201016_02_T1/LC08_L2SR_067091_20181125_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70700886,-43.5310236],[-176.28429921,-43.95165345],[-176.87625797,-45.67055606],[-179.30185916,-45.25253182],[-178.70700886,-43.5310236]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-11-25T21:30:52.724309Z","platform":"landsat-8","proj:bbox":[320385.0,-5058015.0,555915.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":74.09,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018329LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":58.3274507,"view:sun_elevation":54.61603471,"landsat:cloud_cover_land":37.36,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20181118_02_T1","bbox":[-177.75399251371576,-45.68400497858505,-174.69943444646725,-43.51760502141495],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20181118_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181118_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181118_20201016_02_T1/LC08_L2SR_066091_20181118_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181118_20201016_02_T1/LC08_L2SR_066091_20181118_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181118_20201016_02_T1/LC08_L2SR_066091_20181118_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181118_20201016_02_T1/LC08_L2SR_066091_20181118_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181118_20201016_02_T1/LC08_L2SR_066091_20181118_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181118_20201016_02_T1/LC08_L2SR_066091_20181118_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181118_20201016_02_T1/LC08_L2SR_066091_20181118_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181118_20201016_02_T1/LC08_L2SR_066091_20181118_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181118_20201016_02_T1/LC08_L2SR_066091_20181118_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181118_20201016_02_T1/LC08_L2SR_066091_20181118_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181118_20201016_02_T1/LC08_L2SR_066091_20181118_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181118_20201016_02_T1/LC08_L2SR_066091_20181118_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181118_20201016_02_T1/LC08_L2SR_066091_20181118_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181118_20201016_02_T1/LC08_L2SR_066091_20181118_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181118_20201016_02_T1/LC08_L2SR_066091_20181118_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181118_20201016_02_T1/LC08_L2SR_066091_20181118_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.11248927,-43.51922517],[-174.70060302,-43.97164003],[-175.33886015,-45.68232662],[-177.75299876,-45.23157628],[-177.11248927,-43.51922517]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-11-18T21:24:42.393744Z","platform":"landsat-8","proj:bbox":[441285.0,-5059215.0,679215.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":77.43,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018322LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":56.13577731,"view:sun_elevation":53.73566513,"landsat:cloud_cover_land":95.22,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20181109_02_T2","bbox":[-179.31295247580817,-45.67350493229219,-176.29366440580324,-43.53086506770781],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20181109_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181109_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181109_20201016_02_T2/LC08_L2SR_067091_20181109_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181109_20201016_02_T2/LC08_L2SR_067091_20181109_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181109_20201016_02_T2/LC08_L2SR_067091_20181109_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181109_20201016_02_T2/LC08_L2SR_067091_20181109_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181109_20201016_02_T2/LC08_L2SR_067091_20181109_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181109_20201016_02_T2/LC08_L2SR_067091_20181109_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181109_20201016_02_T2/LC08_L2SR_067091_20181109_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181109_20201016_02_T2/LC08_L2SR_067091_20181109_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181109_20201016_02_T2/LC08_L2SR_067091_20181109_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181109_20201016_02_T2/LC08_L2SR_067091_20181109_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181109_20201016_02_T2/LC08_L2SR_067091_20181109_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181109_20201016_02_T2/LC08_L2SR_067091_20181109_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181109_20201016_02_T2/LC08_L2SR_067091_20181109_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181109_20201016_02_T2/LC08_L2SR_067091_20181109_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181109_20201016_02_T2/LC08_L2SR_067091_20181109_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181109_20201016_02_T2/LC08_L2SR_067091_20181109_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71784819,-43.53136352],[-176.29503028,-43.95194351],[-176.88679079,-45.67102059],[-179.3125456,-45.25304942],[-178.71784819,-43.53136352]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-11-09T21:30:53.045110Z","platform":"landsat-8","proj:bbox":[319785.0,-5058015.0,555015.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":97.8,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018313LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":53.3382438,"view:sun_elevation":52.08793477,"landsat:cloud_cover_land":99.5,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20181102_02_T1","bbox":[-177.76169251389712,-45.68394497847167,-174.70328444630078,-43.517675021528326],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20181102_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181102_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181102_20201016_02_T1/LC08_L2SR_066091_20181102_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181102_20201016_02_T1/LC08_L2SR_066091_20181102_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181102_20201016_02_T1/LC08_L2SR_066091_20181102_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181102_20201016_02_T1/LC08_L2SR_066091_20181102_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181102_20201016_02_T1/LC08_L2SR_066091_20181102_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181102_20201016_02_T1/LC08_L2SR_066091_20181102_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181102_20201016_02_T1/LC08_L2SR_066091_20181102_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181102_20201016_02_T1/LC08_L2SR_066091_20181102_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181102_20201016_02_T1/LC08_L2SR_066091_20181102_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181102_20201016_02_T1/LC08_L2SR_066091_20181102_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181102_20201016_02_T1/LC08_L2SR_066091_20181102_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181102_20201016_02_T1/LC08_L2SR_066091_20181102_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181102_20201016_02_T1/LC08_L2SR_066091_20181102_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181102_20201016_02_T1/LC08_L2SR_066091_20181102_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181102_20201016_02_T1/LC08_L2SR_066091_20181102_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181102_20201016_02_T1/LC08_L2SR_066091_20181102_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.11874657,-43.5192529],[-174.70668739,-43.97163045],[-175.34481355,-45.68216323],[-177.75912487,-45.23145651],[-177.11874657,-43.5192529]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-11-02T21:24:41.393011Z","platform":"landsat-8","proj:bbox":[440685.0,-5059215.0,678915.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":18.19,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018306LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":51.29198659,"view:sun_elevation":50.43098007,"landsat:cloud_cover_land":24.89,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20181024_02_T2","bbox":[-179.3167924756518,-45.673504932128836,-176.29366440592304,-43.53079506787116],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20181024_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181024_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181024_20201016_02_T2/LC08_L2SR_067091_20181024_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181024_20201016_02_T2/LC08_L2SR_067091_20181024_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181024_20201016_02_T2/LC08_L2SR_067091_20181024_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181024_20201016_02_T2/LC08_L2SR_067091_20181024_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181024_20201016_02_T2/LC08_L2SR_067091_20181024_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181024_20201016_02_T2/LC08_L2SR_067091_20181024_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181024_20201016_02_T2/LC08_L2SR_067091_20181024_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181024_20201016_02_T2/LC08_L2SR_067091_20181024_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181024_20201016_02_T2/LC08_L2SR_067091_20181024_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181024_20201016_02_T2/LC08_L2SR_067091_20181024_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181024_20201016_02_T2/LC08_L2SR_067091_20181024_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181024_20201016_02_T2/LC08_L2SR_067091_20181024_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181024_20201016_02_T2/LC08_L2SR_067091_20181024_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181024_20201016_02_T2/LC08_L2SR_067091_20181024_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181024_20201016_02_T2/LC08_L2SR_067091_20181024_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181024_20201016_02_T2/LC08_L2SR_067091_20181024_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.72001111,-43.5311215],[-176.29692739,-43.95183526],[-176.88877974,-45.67094057],[-179.31475821,-45.25284346],[-178.72001111,-43.5311215]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-10-24T21:30:50.387854Z","platform":"landsat-8","proj:bbox":[319485.0,-5058015.0,555015.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":84.65,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018297LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":48.92921238,"view:sun_elevation":47.88634225,"landsat:cloud_cover_land":99.98,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20181017_02_T1","bbox":[-177.7578425138709,-45.68397497852859,-174.70328444632852,-43.517675021471405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20181017_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181017_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181017_20201016_02_T1/LC08_L2SR_066091_20181017_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181017_20201016_02_T1/LC08_L2SR_066091_20181017_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181017_20201016_02_T1/LC08_L2SR_066091_20181017_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181017_20201016_02_T1/LC08_L2SR_066091_20181017_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181017_20201016_02_T1/LC08_L2SR_066091_20181017_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181017_20201016_02_T1/LC08_L2SR_066091_20181017_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181017_20201016_02_T1/LC08_L2SR_066091_20181017_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181017_20201016_02_T1/LC08_L2SR_066091_20181017_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181017_20201016_02_T1/LC08_L2SR_066091_20181017_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181017_20201016_02_T1/LC08_L2SR_066091_20181017_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181017_20201016_02_T1/LC08_L2SR_066091_20181017_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181017_20201016_02_T1/LC08_L2SR_066091_20181017_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181017_20201016_02_T1/LC08_L2SR_066091_20181017_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181017_20201016_02_T1/LC08_L2SR_066091_20181017_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181017_20201016_02_T1/LC08_L2SR_066091_20181017_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181017_20201016_02_T1/LC08_L2SR_066091_20181017_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.11635591,-43.51916183],[-174.70398884,-43.97171032],[-175.34226487,-45.68217665],[-177.75688831,-45.23129656],[-177.11635591,-43.51916183]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-10-17T21:24:37.515999Z","platform":"landsat-8","proj:bbox":[440985.0,-5059215.0,678915.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":57.42,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018290LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":47.32006611,"view:sun_elevation":45.63658454,"landsat:cloud_cover_land":23.52,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20181008_02_T1","bbox":[-179.31295247583787,-45.673474932328425,-176.28980441406347,-43.52816506767158],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20181008_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181008_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181008_20201016_02_T1/LC08_L2SR_067091_20181008_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181008_20201016_02_T1/LC08_L2SR_067091_20181008_20201016_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181008_20201016_02_T1/LC08_L2SR_067091_20181008_20201016_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181008_20201016_02_T1/LC08_L2SR_067091_20181008_20201016_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181008_20201016_02_T1/LC08_L2SR_067091_20181008_20201016_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181008_20201016_02_T1/LC08_L2SR_067091_20181008_20201016_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181008_20201016_02_T1/LC08_L2SR_067091_20181008_20201016_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181008_20201016_02_T1/LC08_L2SR_067091_20181008_20201016_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181008_20201016_02_T1/LC08_L2SR_067091_20181008_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181008_20201016_02_T1/LC08_L2SR_067091_20181008_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181008_20201016_02_T1/LC08_L2SR_067091_20181008_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181008_20201016_02_T1/LC08_L2SR_067091_20181008_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181008_20201016_02_T1/LC08_L2SR_067091_20181008_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181008_20201016_02_T1/LC08_L2SR_067091_20181008_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181008_20201016_02_T1/LC08_L2SR_067091_20181008_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20181008_20201016_02_T1/LC08_L2SR_067091_20181008_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71430337,-43.53088736],[-176.29100062,-43.95183664],[-176.88314391,-45.6707188],[-179.30934334,-45.2523752],[-178.71430337,-43.53088736]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-10-08T21:30:44.965714Z","platform":"landsat-8","proj:bbox":[319785.0,-5058015.0,555315.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":30.38,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018281LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":45.53209114,"view:sun_elevation":42.48722468,"landsat:cloud_cover_land":41.89,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20181001_02_T2","bbox":[-177.7501425133711,-45.684024978641446,-174.6917444467325,-43.517465021358554],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20181001_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181001_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181001_20201016_02_T2/LC08_L2SR_066091_20181001_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181001_20201016_02_T2/LC08_L2SR_066091_20181001_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181001_20201016_02_T2/LC08_L2SR_066091_20181001_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181001_20201016_02_T2/LC08_L2SR_066091_20181001_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181001_20201016_02_T2/LC08_L2SR_066091_20181001_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181001_20201016_02_T2/LC08_L2SR_066091_20181001_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181001_20201016_02_T2/LC08_L2SR_066091_20181001_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181001_20201016_02_T2/LC08_L2SR_066091_20181001_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181001_20201016_02_T2/LC08_L2SR_066091_20181001_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181001_20201016_02_T2/LC08_L2SR_066091_20181001_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181001_20201016_02_T2/LC08_L2SR_066091_20181001_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181001_20201016_02_T2/LC08_L2SR_066091_20181001_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181001_20201016_02_T2/LC08_L2SR_066091_20181001_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181001_20201016_02_T2/LC08_L2SR_066091_20181001_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181001_20201016_02_T2/LC08_L2SR_066091_20181001_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20181001_20201016_02_T2/LC08_L2SR_066091_20181001_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10605144,-43.51902524],[-174.6935781,-43.97193796],[-175.33222989,-45.68248967],[-177.74695531,-45.2312398],[-177.10605144,-43.51902524]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-10-01T21:24:30.878140Z","platform":"landsat-8","proj:bbox":[441585.0,-5059215.0,679815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":90.33,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018274LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":44.3341579,"view:sun_elevation":39.89545749,"landsat:cloud_cover_land":99.59,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20180922_02_T2","bbox":[-179.2975624765747,-45.67338493297968,-176.27440440516725,-43.53115506702032],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20180922_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180922_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180922_20201016_02_T2/LC08_L2SR_067091_20180922_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180922_20201016_02_T2/LC08_L2SR_067091_20180922_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180922_20201016_02_T2/LC08_L2SR_067091_20180922_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180922_20201016_02_T2/LC08_L2SR_067091_20180922_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180922_20201016_02_T2/LC08_L2SR_067091_20180922_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180922_20201016_02_T2/LC08_L2SR_067091_20180922_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180922_20201016_02_T2/LC08_L2SR_067091_20180922_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180922_20201016_02_T2/LC08_L2SR_067091_20180922_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180922_20201016_02_T2/LC08_L2SR_067091_20180922_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180922_20201016_02_T2/LC08_L2SR_067091_20180922_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180922_20201016_02_T2/LC08_L2SR_067091_20180922_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180922_20201016_02_T2/LC08_L2SR_067091_20180922_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180922_20201016_02_T2/LC08_L2SR_067091_20180922_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180922_20201016_02_T2/LC08_L2SR_067091_20180922_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180922_20201016_02_T2/LC08_L2SR_067091_20180922_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180922_20201016_02_T2/LC08_L2SR_067091_20180922_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70123511,-43.53126186],[-176.27791224,-43.95251857],[-176.87054635,-45.67100362],[-179.29677123,-45.25234441],[-178.70123511,-43.53126186]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-09-22T21:30:36.845717Z","platform":"landsat-8","proj:bbox":[320985.0,-5058015.0,556515.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":98.62,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018265LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":43.00563439,"view:sun_elevation":36.46781858,"landsat:cloud_cover_land":87.83,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20180915_02_T1","bbox":[-177.74243251302403,-45.68407497875314,-174.68404444704285,-43.51731502124686],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20180915_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180915_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180915_20201016_02_T1/LC08_L2SR_066091_20180915_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180915_20201016_02_T1/LC08_L2SR_066091_20180915_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180915_20201016_02_T1/LC08_L2SR_066091_20180915_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180915_20201016_02_T1/LC08_L2SR_066091_20180915_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180915_20201016_02_T1/LC08_L2SR_066091_20180915_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180915_20201016_02_T1/LC08_L2SR_066091_20180915_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180915_20201016_02_T1/LC08_L2SR_066091_20180915_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180915_20201016_02_T1/LC08_L2SR_066091_20180915_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180915_20201016_02_T1/LC08_L2SR_066091_20180915_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180915_20201016_02_T1/LC08_L2SR_066091_20180915_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180915_20201016_02_T1/LC08_L2SR_066091_20180915_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180915_20201016_02_T1/LC08_L2SR_066091_20180915_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180915_20201016_02_T1/LC08_L2SR_066091_20180915_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180915_20201016_02_T1/LC08_L2SR_066091_20180915_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180915_20201016_02_T1/LC08_L2SR_066091_20180915_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180915_20201016_02_T1/LC08_L2SR_066091_20180915_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.09863097,-43.51913142],[-174.6863575,-43.97233555],[-175.32534471,-45.68301634],[-177.73988127,-45.23146697],[-177.09863097,-43.51913142]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-09-15T21:24:23.754241Z","platform":"landsat-8","proj:bbox":[442185.0,-5059215.0,680415.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":44.66,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018258LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":42.08506174,"view:sun_elevation":33.78429093,"landsat:cloud_cover_land":25.84,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20180906_02_T2","bbox":[-179.3052524761981,-45.67343493264293,-176.28210440548102,-43.53100506735707],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20180906_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180906_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180906_20201016_02_T2/LC08_L2SR_067091_20180906_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180906_20201016_02_T2/LC08_L2SR_067091_20180906_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180906_20201016_02_T2/LC08_L2SR_067091_20180906_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180906_20201016_02_T2/LC08_L2SR_067091_20180906_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180906_20201016_02_T2/LC08_L2SR_067091_20180906_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180906_20201016_02_T2/LC08_L2SR_067091_20180906_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180906_20201016_02_T2/LC08_L2SR_067091_20180906_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180906_20201016_02_T2/LC08_L2SR_067091_20180906_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180906_20201016_02_T2/LC08_L2SR_067091_20180906_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180906_20201016_02_T2/LC08_L2SR_067091_20180906_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180906_20201016_02_T2/LC08_L2SR_067091_20180906_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180906_20201016_02_T2/LC08_L2SR_067091_20180906_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180906_20201016_02_T2/LC08_L2SR_067091_20180906_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180906_20201016_02_T2/LC08_L2SR_067091_20180906_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180906_20201016_02_T2/LC08_L2SR_067091_20180906_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180906_20201016_02_T2/LC08_L2SR_067091_20180906_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.7071746,-43.53105739],[-176.28407657,-43.95223621],[-176.87666282,-45.67092521],[-179.30267666,-45.25235035],[-178.7071746,-43.53105739]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-09-06T21:30:32.192085Z","platform":"landsat-8","proj:bbox":[320385.0,-5058015.0,555915.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":70.23,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018249LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":41.00490443,"view:sun_elevation":30.39427106,"landsat:cloud_cover_land":99.68,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20180830_02_T2","bbox":[-177.7501425133711,-45.684024978641446,-174.6917444467325,-43.517465021358554],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20180830_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180830_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180830_20201016_02_T2/LC08_L2SR_066091_20180830_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180830_20201016_02_T2/LC08_L2SR_066091_20180830_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180830_20201016_02_T2/LC08_L2SR_066091_20180830_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180830_20201016_02_T2/LC08_L2SR_066091_20180830_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180830_20201016_02_T2/LC08_L2SR_066091_20180830_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180830_20201016_02_T2/LC08_L2SR_066091_20180830_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180830_20201016_02_T2/LC08_L2SR_066091_20180830_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180830_20201016_02_T2/LC08_L2SR_066091_20180830_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180830_20201016_02_T2/LC08_L2SR_066091_20180830_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180830_20201016_02_T2/LC08_L2SR_066091_20180830_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180830_20201016_02_T2/LC08_L2SR_066091_20180830_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180830_20201016_02_T2/LC08_L2SR_066091_20180830_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180830_20201016_02_T2/LC08_L2SR_066091_20180830_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180830_20201016_02_T2/LC08_L2SR_066091_20180830_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180830_20201016_02_T2/LC08_L2SR_066091_20180830_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180830_20201016_02_T2/LC08_L2SR_066091_20180830_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10574453,-43.51931852],[-174.69360902,-43.9723399],[-175.33252374,-45.68291616],[-177.74692047,-45.23155726],[-177.10574453,-43.51931852]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-08-30T21:24:19.057969Z","platform":"landsat-8","proj:bbox":[441585.0,-5059215.0,679815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018242LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":40.21261851,"view:sun_elevation":27.85393403,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20180821_02_T1","bbox":[-179.30910247600508,-45.67345493250352,-176.2859544139137,-43.52823506749648],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20180821_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180821_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180821_20201016_02_T1/LC08_L2SR_067091_20180821_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180821_20201016_02_T1/LC08_L2SR_067091_20180821_20201016_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180821_20201016_02_T1/LC08_L2SR_067091_20180821_20201016_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180821_20201016_02_T1/LC08_L2SR_067091_20180821_20201016_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180821_20201016_02_T1/LC08_L2SR_067091_20180821_20201016_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180821_20201016_02_T1/LC08_L2SR_067091_20180821_20201016_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180821_20201016_02_T1/LC08_L2SR_067091_20180821_20201016_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180821_20201016_02_T1/LC08_L2SR_067091_20180821_20201016_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180821_20201016_02_T1/LC08_L2SR_067091_20180821_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180821_20201016_02_T1/LC08_L2SR_067091_20180821_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180821_20201016_02_T1/LC08_L2SR_067091_20180821_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180821_20201016_02_T1/LC08_L2SR_067091_20180821_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180821_20201016_02_T1/LC08_L2SR_067091_20180821_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180821_20201016_02_T1/LC08_L2SR_067091_20180821_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180821_20201016_02_T1/LC08_L2SR_067091_20180821_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180821_20201016_02_T1/LC08_L2SR_067091_20180821_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71070603,-43.53092138],[-176.28782149,-43.95209198],[-176.88040515,-45.67088549],[-179.30619942,-45.25232515],[-178.71070603,-43.53092138]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-08-21T21:30:26.169924Z","platform":"landsat-8","proj:bbox":[320085.0,-5058015.0,555615.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":80.33,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018233LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":39.23687509,"view:sun_elevation":24.78397947,"landsat:cloud_cover_land":20.74,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20180814_02_T2","bbox":[-177.7501425133711,-45.684024978641446,-174.6917444467325,-43.517465021358554],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20180814_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180814_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180814_20201016_02_T2/LC08_L2SR_066091_20180814_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180814_20201016_02_T2/LC08_L2SR_066091_20180814_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180814_20201016_02_T2/LC08_L2SR_066091_20180814_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180814_20201016_02_T2/LC08_L2SR_066091_20180814_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180814_20201016_02_T2/LC08_L2SR_066091_20180814_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180814_20201016_02_T2/LC08_L2SR_066091_20180814_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180814_20201016_02_T2/LC08_L2SR_066091_20180814_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180814_20201016_02_T2/LC08_L2SR_066091_20180814_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180814_20201016_02_T2/LC08_L2SR_066091_20180814_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180814_20201016_02_T2/LC08_L2SR_066091_20180814_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180814_20201016_02_T2/LC08_L2SR_066091_20180814_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180814_20201016_02_T2/LC08_L2SR_066091_20180814_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180814_20201016_02_T2/LC08_L2SR_066091_20180814_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180814_20201016_02_T2/LC08_L2SR_066091_20180814_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180814_20201016_02_T2/LC08_L2SR_066091_20180814_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180814_20201016_02_T2/LC08_L2SR_066091_20180814_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10656897,-43.51890609],[-174.69463324,-43.97191569],[-175.33358165,-45.6826173],[-177.747783,-45.23126454],[-177.10656897,-43.51890609]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-08-14T21:24:11.969250Z","platform":"landsat-8","proj:bbox":[441585.0,-5059215.0,679815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":62.35,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018226LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":38.48373911,"view:sun_elevation":22.59373024,"landsat:cloud_cover_land":99.99,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20180805_02_T2","bbox":[-179.3052524761981,-45.673434932678695,-176.28210441376436,-43.528305067321305],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20180805_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180805_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180805_20201016_02_T2/LC08_L2SR_067091_20180805_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180805_20201016_02_T2/LC08_L2SR_067091_20180805_20201016_02_T2_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180805_20201016_02_T2/LC08_L2SR_067091_20180805_20201016_02_T2_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180805_20201016_02_T2/LC08_L2SR_067091_20180805_20201016_02_T2_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180805_20201016_02_T2/LC08_L2SR_067091_20180805_20201016_02_T2_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180805_20201016_02_T2/LC08_L2SR_067091_20180805_20201016_02_T2_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180805_20201016_02_T2/LC08_L2SR_067091_20180805_20201016_02_T2_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180805_20201016_02_T2/LC08_L2SR_067091_20180805_20201016_02_T2_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180805_20201016_02_T2/LC08_L2SR_067091_20180805_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180805_20201016_02_T2/LC08_L2SR_067091_20180805_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180805_20201016_02_T2/LC08_L2SR_067091_20180805_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180805_20201016_02_T2/LC08_L2SR_067091_20180805_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180805_20201016_02_T2/LC08_L2SR_067091_20180805_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180805_20201016_02_T2/LC08_L2SR_067091_20180805_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180805_20201016_02_T2/LC08_L2SR_067091_20180805_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180805_20201016_02_T2/LC08_L2SR_067091_20180805_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70681871,-43.53084463],[-176.28408473,-43.95209072],[-176.87683879,-45.67082551],[-179.30247685,-45.25218263],[-178.70681871,-43.53084463]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-08-05T21:30:17.785890Z","platform":"landsat-8","proj:bbox":[320385.0,-5058015.0,555915.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.95,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018217LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":37.52554317,"view:sun_elevation":20.09333882,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20180729_02_T1","bbox":[-177.74629251318905,-45.68405497869346,-174.6878944468797,-43.51739502130654],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20180729_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180729_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180729_20201016_02_T1/LC08_L2SR_066091_20180729_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180729_20201016_02_T1/LC08_L2SR_066091_20180729_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180729_20201016_02_T1/LC08_L2SR_066091_20180729_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180729_20201016_02_T1/LC08_L2SR_066091_20180729_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180729_20201016_02_T1/LC08_L2SR_066091_20180729_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180729_20201016_02_T1/LC08_L2SR_066091_20180729_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180729_20201016_02_T1/LC08_L2SR_066091_20180729_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180729_20201016_02_T1/LC08_L2SR_066091_20180729_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180729_20201016_02_T1/LC08_L2SR_066091_20180729_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180729_20201016_02_T1/LC08_L2SR_066091_20180729_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180729_20201016_02_T1/LC08_L2SR_066091_20180729_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180729_20201016_02_T1/LC08_L2SR_066091_20180729_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180729_20201016_02_T1/LC08_L2SR_066091_20180729_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180729_20201016_02_T1/LC08_L2SR_066091_20180729_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180729_20201016_02_T1/LC08_L2SR_066091_20180729_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180729_20201016_02_T1/LC08_L2SR_066091_20180729_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10200302,-43.51898312],[-174.6901723,-43.97221204],[-175.32941269,-45.68294732],[-177.74349561,-45.23137301],[-177.10200302,-43.51898312]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-07-29T21:24:02.670550Z","platform":"landsat-8","proj:bbox":[441885.0,-5059215.0,680115.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":12.78,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018210LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":36.79286607,"view:sun_elevation":18.42670605,"landsat:cloud_cover_land":9.48,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20180720_02_T1","bbox":[-179.3052524761981,-45.67343493264293,-176.28210440548102,-43.53100506735707],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20180720_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180720_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180720_20201016_02_T1/LC08_L2SR_067091_20180720_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180720_20201016_02_T1/LC08_L2SR_067091_20180720_20201016_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180720_20201016_02_T1/LC08_L2SR_067091_20180720_20201016_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180720_20201016_02_T1/LC08_L2SR_067091_20180720_20201016_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180720_20201016_02_T1/LC08_L2SR_067091_20180720_20201016_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180720_20201016_02_T1/LC08_L2SR_067091_20180720_20201016_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180720_20201016_02_T1/LC08_L2SR_067091_20180720_20201016_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180720_20201016_02_T1/LC08_L2SR_067091_20180720_20201016_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180720_20201016_02_T1/LC08_L2SR_067091_20180720_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180720_20201016_02_T1/LC08_L2SR_067091_20180720_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180720_20201016_02_T1/LC08_L2SR_067091_20180720_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180720_20201016_02_T1/LC08_L2SR_067091_20180720_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180720_20201016_02_T1/LC08_L2SR_067091_20180720_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180720_20201016_02_T1/LC08_L2SR_067091_20180720_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180720_20201016_02_T1/LC08_L2SR_067091_20180720_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180720_20201016_02_T1/LC08_L2SR_067091_20180720_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70664262,-43.5311164],[-176.28392762,-43.95240792],[-176.87673876,-45.67115083],[-179.3023507,-45.2524626],[-178.70664262,-43.5311164]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-07-20T21:30:09.397611Z","platform":"landsat-8","proj:bbox":[320385.0,-5058015.0,555915.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":5.67,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018201LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":35.88453656,"view:sun_elevation":16.68871843,"landsat:cloud_cover_land":32.15,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20180713_02_T1","bbox":[-177.7539925135611,-45.68400497858505,-174.69559444658577,-43.51753502141495],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20180713_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180713_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180713_20201016_02_T1/LC08_L2SR_066091_20180713_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180713_20201016_02_T1/LC08_L2SR_066091_20180713_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180713_20201016_02_T1/LC08_L2SR_066091_20180713_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180713_20201016_02_T1/LC08_L2SR_066091_20180713_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180713_20201016_02_T1/LC08_L2SR_066091_20180713_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180713_20201016_02_T1/LC08_L2SR_066091_20180713_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180713_20201016_02_T1/LC08_L2SR_066091_20180713_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180713_20201016_02_T1/LC08_L2SR_066091_20180713_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180713_20201016_02_T1/LC08_L2SR_066091_20180713_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180713_20201016_02_T1/LC08_L2SR_066091_20180713_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180713_20201016_02_T1/LC08_L2SR_066091_20180713_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180713_20201016_02_T1/LC08_L2SR_066091_20180713_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180713_20201016_02_T1/LC08_L2SR_066091_20180713_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180713_20201016_02_T1/LC08_L2SR_066091_20180713_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180713_20201016_02_T1/LC08_L2SR_066091_20180713_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180713_20201016_02_T1/LC08_L2SR_066091_20180713_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10980919,-43.51888379],[-174.69782146,-43.9719989],[-175.33688551,-45.6825428],[-177.75112203,-45.23110019],[-177.10980919,-43.51888379]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-07-13T21:23:55.820231Z","platform":"landsat-8","proj:bbox":[441285.0,-5059215.0,679515.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":26.08,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018194LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":35.21883633,"view:sun_elevation":15.67422446,"landsat:cloud_cover_land":35.33,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20180704_02_T1","bbox":[-179.31295247583787,-45.673474932292194,-176.28980440578016,-43.53086506770781],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20180704_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180704_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180704_20201016_02_T1/LC08_L2SR_067091_20180704_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180704_20201016_02_T1/LC08_L2SR_067091_20180704_20201016_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180704_20201016_02_T1/LC08_L2SR_067091_20180704_20201016_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180704_20201016_02_T1/LC08_L2SR_067091_20180704_20201016_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180704_20201016_02_T1/LC08_L2SR_067091_20180704_20201016_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180704_20201016_02_T1/LC08_L2SR_067091_20180704_20201016_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180704_20201016_02_T1/LC08_L2SR_067091_20180704_20201016_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180704_20201016_02_T1/LC08_L2SR_067091_20180704_20201016_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180704_20201016_02_T1/LC08_L2SR_067091_20180704_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180704_20201016_02_T1/LC08_L2SR_067091_20180704_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180704_20201016_02_T1/LC08_L2SR_067091_20180704_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180704_20201016_02_T1/LC08_L2SR_067091_20180704_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180704_20201016_02_T1/LC08_L2SR_067091_20180704_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180704_20201016_02_T1/LC08_L2SR_067091_20180704_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180704_20201016_02_T1/LC08_L2SR_067091_20180704_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180704_20201016_02_T1/LC08_L2SR_067091_20180704_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71396926,-43.53092058],[-176.29087474,-43.95216206],[-176.88344708,-45.67104125],[-179.30943984,-45.2524104],[-178.71396926,-43.53092058]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-07-04T21:30:02.391660Z","platform":"landsat-8","proj:bbox":[319785.0,-5058015.0,555315.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":27.08,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018185LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":34.45559059,"view:sun_elevation":14.8259783,"landsat:cloud_cover_land":28.64,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20180627_02_T1","bbox":[-177.7578425137423,-45.68397497852859,-174.69943444644684,-43.51760502147141],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20180627_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180627_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180627_20201016_02_T1/LC08_L2SR_066091_20180627_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180627_20201016_02_T1/LC08_L2SR_066091_20180627_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180627_20201016_02_T1/LC08_L2SR_066091_20180627_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180627_20201016_02_T1/LC08_L2SR_066091_20180627_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180627_20201016_02_T1/LC08_L2SR_066091_20180627_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180627_20201016_02_T1/LC08_L2SR_066091_20180627_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180627_20201016_02_T1/LC08_L2SR_066091_20180627_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180627_20201016_02_T1/LC08_L2SR_066091_20180627_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180627_20201016_02_T1/LC08_L2SR_066091_20180627_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180627_20201016_02_T1/LC08_L2SR_066091_20180627_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180627_20201016_02_T1/LC08_L2SR_066091_20180627_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180627_20201016_02_T1/LC08_L2SR_066091_20180627_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180627_20201016_02_T1/LC08_L2SR_066091_20180627_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180627_20201016_02_T1/LC08_L2SR_066091_20180627_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180627_20201016_02_T1/LC08_L2SR_066091_20180627_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180627_20201016_02_T1/LC08_L2SR_066091_20180627_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.11460427,-43.51891581],[-174.70226649,-43.97203016],[-175.34123272,-45.6824303],[-177.75582719,-45.2309852],[-177.11460427,-43.51891581]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-06-27T21:23:47.822804Z","platform":"landsat-8","proj:bbox":[440985.0,-5059215.0,679215.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":25.92,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018178LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":33.97002553,"view:sun_elevation":14.52392906,"landsat:cloud_cover_land":39.36,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20180618_02_T1","bbox":[-179.30910247600508,-45.67345493250352,-176.2859544139137,-43.52823506749648],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20180618_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180618_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180618_20201016_02_T1/LC08_L2SR_067091_20180618_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180618_20201016_02_T1/LC08_L2SR_067091_20180618_20201016_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180618_20201016_02_T1/LC08_L2SR_067091_20180618_20201016_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180618_20201016_02_T1/LC08_L2SR_067091_20180618_20201016_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180618_20201016_02_T1/LC08_L2SR_067091_20180618_20201016_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180618_20201016_02_T1/LC08_L2SR_067091_20180618_20201016_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180618_20201016_02_T1/LC08_L2SR_067091_20180618_20201016_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180618_20201016_02_T1/LC08_L2SR_067091_20180618_20201016_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180618_20201016_02_T1/LC08_L2SR_067091_20180618_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180618_20201016_02_T1/LC08_L2SR_067091_20180618_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180618_20201016_02_T1/LC08_L2SR_067091_20180618_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180618_20201016_02_T1/LC08_L2SR_067091_20180618_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180618_20201016_02_T1/LC08_L2SR_067091_20180618_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180618_20201016_02_T1/LC08_L2SR_067091_20180618_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180618_20201016_02_T1/LC08_L2SR_067091_20180618_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180618_20201016_02_T1/LC08_L2SR_067091_20180618_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.7133699,-43.53080789],[-176.28997575,-43.95213727],[-176.88261772,-45.67081966],[-179.30891128,-45.25209429],[-178.7133699,-43.53080789]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-06-18T21:29:53.068635Z","platform":"landsat-8","proj:bbox":[320085.0,-5058015.0,555615.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":7.49,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018169LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":33.52148322,"view:sun_elevation":14.59614643,"landsat:cloud_cover_land":88.49,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20180611_02_T2","bbox":[-177.7539925135611,-45.68400497858505,-174.69559444658577,-43.51753502141495],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20180611_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180611_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180611_20201016_02_T2/LC08_L2SR_066091_20180611_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180611_20201016_02_T2/LC08_L2SR_066091_20180611_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180611_20201016_02_T2/LC08_L2SR_066091_20180611_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180611_20201016_02_T2/LC08_L2SR_066091_20180611_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180611_20201016_02_T2/LC08_L2SR_066091_20180611_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180611_20201016_02_T2/LC08_L2SR_066091_20180611_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180611_20201016_02_T2/LC08_L2SR_066091_20180611_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180611_20201016_02_T2/LC08_L2SR_066091_20180611_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180611_20201016_02_T2/LC08_L2SR_066091_20180611_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180611_20201016_02_T2/LC08_L2SR_066091_20180611_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180611_20201016_02_T2/LC08_L2SR_066091_20180611_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180611_20201016_02_T2/LC08_L2SR_066091_20180611_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180611_20201016_02_T2/LC08_L2SR_066091_20180611_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180611_20201016_02_T2/LC08_L2SR_066091_20180611_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180611_20201016_02_T2/LC08_L2SR_066091_20180611_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180611_20201016_02_T2/LC08_L2SR_066091_20180611_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.11057557,-43.51931182],[-174.69800889,-43.97259682],[-175.33712894,-45.68298214],[-177.75195532,-45.23137274],[-177.11057557,-43.51931182]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-06-11T21:23:37.386788Z","platform":"landsat-8","proj:bbox":[441285.0,-5059215.0,679515.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":74.83,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018162LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":33.34380027,"view:sun_elevation":14.99857866,"landsat:cloud_cover_land":60.94,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20180602_02_T1","bbox":[-179.31295247583787,-45.673474932328425,-176.28980441406347,-43.52816506767158],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20180602_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180602_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180602_20201016_02_T1/LC08_L2SR_067091_20180602_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180602_20201016_02_T1/LC08_L2SR_067091_20180602_20201016_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180602_20201016_02_T1/LC08_L2SR_067091_20180602_20201016_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180602_20201016_02_T1/LC08_L2SR_067091_20180602_20201016_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180602_20201016_02_T1/LC08_L2SR_067091_20180602_20201016_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180602_20201016_02_T1/LC08_L2SR_067091_20180602_20201016_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180602_20201016_02_T1/LC08_L2SR_067091_20180602_20201016_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180602_20201016_02_T1/LC08_L2SR_067091_20180602_20201016_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180602_20201016_02_T1/LC08_L2SR_067091_20180602_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180602_20201016_02_T1/LC08_L2SR_067091_20180602_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180602_20201016_02_T1/LC08_L2SR_067091_20180602_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180602_20201016_02_T1/LC08_L2SR_067091_20180602_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180602_20201016_02_T1/LC08_L2SR_067091_20180602_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180602_20201016_02_T1/LC08_L2SR_067091_20180602_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180602_20201016_02_T1/LC08_L2SR_067091_20180602_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180602_20201016_02_T1/LC08_L2SR_067091_20180602_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71628181,-43.53075514],[-176.29297567,-43.95207101],[-176.88555701,-45.6708315],[-179.31177821,-45.25213036],[-178.71628181,-43.53075514]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-06-02T21:29:44.086689Z","platform":"landsat-8","proj:bbox":[319785.0,-5058015.0,555315.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":35.42,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018153LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":33.37714569,"view:sun_elevation":15.93314799,"landsat:cloud_cover_land":21.7,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20180526_02_T1","bbox":[-177.71932251189406,-45.68422497907745,-174.6609644479437,-43.51688502092255],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20180526_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180526_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180526_20201016_02_T1/LC08_L2SR_066091_20180526_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180526_20201016_02_T1/LC08_L2SR_066091_20180526_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180526_20201016_02_T1/LC08_L2SR_066091_20180526_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180526_20201016_02_T1/LC08_L2SR_066091_20180526_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180526_20201016_02_T1/LC08_L2SR_066091_20180526_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180526_20201016_02_T1/LC08_L2SR_066091_20180526_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180526_20201016_02_T1/LC08_L2SR_066091_20180526_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180526_20201016_02_T1/LC08_L2SR_066091_20180526_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180526_20201016_02_T1/LC08_L2SR_066091_20180526_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180526_20201016_02_T1/LC08_L2SR_066091_20180526_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180526_20201016_02_T1/LC08_L2SR_066091_20180526_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180526_20201016_02_T1/LC08_L2SR_066091_20180526_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180526_20201016_02_T1/LC08_L2SR_066091_20180526_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180526_20201016_02_T1/LC08_L2SR_066091_20180526_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180526_20201016_02_T1/LC08_L2SR_066091_20180526_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180526_20201016_02_T1/LC08_L2SR_066091_20180526_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.07673473,-43.51903838],[-174.66435132,-43.97110479],[-175.30163987,-45.68259345],[-177.716279,-45.23217392],[-177.07673473,-43.51903838]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-05-26T21:23:37.775492Z","platform":"landsat-8","proj:bbox":[443985.0,-5059215.0,682215.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":17.37,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018146LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":33.57136788,"view:sun_elevation":16.98615927,"landsat:cloud_cover_land":10.32,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20180517_02_T1","bbox":[-179.27437246835348,-45.670554934033795,-176.25518440429443,-43.531585065966205],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20180517_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180517_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180517_20201016_02_T1/LC08_L2SR_067091_20180517_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180517_20201016_02_T1/LC08_L2SR_067091_20180517_20201016_02_T1_SR_B1.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180517_20201016_02_T1/LC08_L2SR_067091_20180517_20201016_02_T1_SR_B2.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180517_20201016_02_T1/LC08_L2SR_067091_20180517_20201016_02_T1_SR_B3.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180517_20201016_02_T1/LC08_L2SR_067091_20180517_20201016_02_T1_SR_B4.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180517_20201016_02_T1/LC08_L2SR_067091_20180517_20201016_02_T1_SR_B5.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180517_20201016_02_T1/LC08_L2SR_067091_20180517_20201016_02_T1_SR_B6.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180517_20201016_02_T1/LC08_L2SR_067091_20180517_20201016_02_T1_SR_B7.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180517_20201016_02_T1/LC08_L2SR_067091_20180517_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180517_20201016_02_T1/LC08_L2SR_067091_20180517_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180517_20201016_02_T1/LC08_L2SR_067091_20180517_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180517_20201016_02_T1/LC08_L2SR_067091_20180517_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180517_20201016_02_T1/LC08_L2SR_067091_20180517_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180517_20201016_02_T1/LC08_L2SR_067091_20180517_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180517_20201016_02_T1/LC08_L2SR_067091_20180517_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7851,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180517_20201016_02_T1/LC08_L2SR_067091_20180517_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.67996187,-43.5316185],[-176.25685716,-43.95145162],[-176.84771261,-45.66983068],[-179.27371951,-45.25258543],[-178.67996187,-43.5316185]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-05-17T21:29:55.858235Z","platform":"landsat-8","proj:bbox":[322785.0,-5057715.0,558015.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":7.79,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018137LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":34.17926602,"view:sun_elevation":18.66298431,"landsat:cloud_cover_land":35.89,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20180510_02_T1","bbox":[-177.71932251204976,-45.68422497907745,-174.6648044478246,-43.51695502092255],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20180510_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180510_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180510_20201016_02_T1/LC08_L2SR_066091_20180510_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180510_20201016_02_T1/LC08_L2SR_066091_20180510_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180510_20201016_02_T1/LC08_L2SR_066091_20180510_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180510_20201016_02_T1/LC08_L2SR_066091_20180510_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180510_20201016_02_T1/LC08_L2SR_066091_20180510_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180510_20201016_02_T1/LC08_L2SR_066091_20180510_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180510_20201016_02_T1/LC08_L2SR_066091_20180510_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180510_20201016_02_T1/LC08_L2SR_066091_20180510_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180510_20201016_02_T1/LC08_L2SR_066091_20180510_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180510_20201016_02_T1/LC08_L2SR_066091_20180510_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180510_20201016_02_T1/LC08_L2SR_066091_20180510_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180510_20201016_02_T1/LC08_L2SR_066091_20180510_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180510_20201016_02_T1/LC08_L2SR_066091_20180510_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180510_20201016_02_T1/LC08_L2SR_066091_20180510_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180510_20201016_02_T1/LC08_L2SR_066091_20180510_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180510_20201016_02_T1/LC08_L2SR_066091_20180510_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.07871107,-43.51920908],[-174.6664505,-43.9711952],[-175.30376933,-45.68262779],[-177.71828371,-45.23228733],[-177.07871107,-43.51920908]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-05-10T21:23:50.089852Z","platform":"landsat-8","proj:bbox":[443985.0,-5059215.0,681915.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":40.73,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018130LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":34.91635232,"view:sun_elevation":20.19829544,"landsat:cloud_cover_land":98.64,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20180501_02_T2","bbox":[-179.2743724683879,-45.670534934033796,-176.25133440427447,-43.531585065966205],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20180501_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180501_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180501_20201016_02_T2/LC08_L2SR_067091_20180501_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180501_20201016_02_T2/LC08_L2SR_067091_20180501_20201016_02_T2_SR_B1.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180501_20201016_02_T2/LC08_L2SR_067091_20180501_20201016_02_T2_SR_B2.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180501_20201016_02_T2/LC08_L2SR_067091_20180501_20201016_02_T2_SR_B3.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180501_20201016_02_T2/LC08_L2SR_067091_20180501_20201016_02_T2_SR_B4.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180501_20201016_02_T2/LC08_L2SR_067091_20180501_20201016_02_T2_SR_B5.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180501_20201016_02_T2/LC08_L2SR_067091_20180501_20201016_02_T2_SR_B6.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180501_20201016_02_T2/LC08_L2SR_067091_20180501_20201016_02_T2_SR_B7.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180501_20201016_02_T2/LC08_L2SR_067091_20180501_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180501_20201016_02_T2/LC08_L2SR_067091_20180501_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180501_20201016_02_T2/LC08_L2SR_067091_20180501_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180501_20201016_02_T2/LC08_L2SR_067091_20180501_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180501_20201016_02_T2/LC08_L2SR_067091_20180501_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180501_20201016_02_T2/LC08_L2SR_067091_20180501_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180501_20201016_02_T2/LC08_L2SR_067091_20180501_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180501_20201016_02_T2/LC08_L2SR_067091_20180501_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.67679878,-43.53162144],[-176.25384943,-43.95153215],[-176.84493426,-45.66987378],[-179.27076883,-45.2525465],[-178.67679878,-43.53162144]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-05-01T21:30:06.549870Z","platform":"landsat-8","proj:bbox":[322785.0,-5057715.0,558315.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":61.31,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018121LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":36.21267593,"view:sun_elevation":22.4105865,"landsat:cloud_cover_land":26.82,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20180424_02_T1","bbox":[-177.71162251169594,-45.68427497918466,-174.657114448148,-43.51680502081534],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20180424_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180424_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180424_20201016_02_T1/LC08_L2SR_066091_20180424_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180424_20201016_02_T1/LC08_L2SR_066091_20180424_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180424_20201016_02_T1/LC08_L2SR_066091_20180424_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180424_20201016_02_T1/LC08_L2SR_066091_20180424_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180424_20201016_02_T1/LC08_L2SR_066091_20180424_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180424_20201016_02_T1/LC08_L2SR_066091_20180424_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180424_20201016_02_T1/LC08_L2SR_066091_20180424_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180424_20201016_02_T1/LC08_L2SR_066091_20180424_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180424_20201016_02_T1/LC08_L2SR_066091_20180424_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180424_20201016_02_T1/LC08_L2SR_066091_20180424_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180424_20201016_02_T1/LC08_L2SR_066091_20180424_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180424_20201016_02_T1/LC08_L2SR_066091_20180424_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180424_20201016_02_T1/LC08_L2SR_066091_20180424_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180424_20201016_02_T1/LC08_L2SR_066091_20180424_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180424_20201016_02_T1/LC08_L2SR_066091_20180424_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180424_20201016_02_T1/LC08_L2SR_066091_20180424_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.07136182,-43.51909295],[-174.65926167,-43.97132084],[-175.29685329,-45.68293696],[-177.71119862,-45.23234679],[-177.07136182,-43.51909295]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-04-24T21:23:59.548748Z","platform":"landsat-8","proj:bbox":[444585.0,-5059215.0,682515.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":38.97,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018114LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":37.49255265,"view:sun_elevation":24.28233477,"landsat:cloud_cover_land":21.97,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20180415_02_T1","bbox":[-179.26667246873143,-45.67048493441265,-176.24362441226597,-43.52902506558735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20180415_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180415_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180415_20201016_02_T1/LC08_L2SR_067091_20180415_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180415_20201016_02_T1/LC08_L2SR_067091_20180415_20201016_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180415_20201016_02_T1/LC08_L2SR_067091_20180415_20201016_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180415_20201016_02_T1/LC08_L2SR_067091_20180415_20201016_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180415_20201016_02_T1/LC08_L2SR_067091_20180415_20201016_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180415_20201016_02_T1/LC08_L2SR_067091_20180415_20201016_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180415_20201016_02_T1/LC08_L2SR_067091_20180415_20201016_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180415_20201016_02_T1/LC08_L2SR_067091_20180415_20201016_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180415_20201016_02_T1/LC08_L2SR_067091_20180415_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180415_20201016_02_T1/LC08_L2SR_067091_20180415_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180415_20201016_02_T1/LC08_L2SR_067091_20180415_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180415_20201016_02_T1/LC08_L2SR_067091_20180415_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180415_20201016_02_T1/LC08_L2SR_067091_20180415_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180415_20201016_02_T1/LC08_L2SR_067091_20180415_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180415_20201016_02_T1/LC08_L2SR_067091_20180415_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180415_20201016_02_T1/LC08_L2SR_067091_20180415_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.67014712,-43.53160313],[-176.24731855,-43.95168815],[-176.83869231,-45.66983522],[-179.26440189,-45.25234027],[-178.67014712,-43.53160313]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-04-15T21:30:15.424026Z","platform":"landsat-8","proj:bbox":[323385.0,-5057715.0,558915.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":35.43,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018105LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":39.46454206,"view:sun_elevation":26.83191413,"landsat:cloud_cover_land":38.87,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20180408_02_T2","bbox":[-177.70776251150116,-45.684294979237855,-174.65326444829873,-43.51673502076214],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20180408_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180408_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180408_20201016_02_T2/LC08_L2SR_066091_20180408_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180408_20201016_02_T2/LC08_L2SR_066091_20180408_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180408_20201016_02_T2/LC08_L2SR_066091_20180408_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180408_20201016_02_T2/LC08_L2SR_066091_20180408_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180408_20201016_02_T2/LC08_L2SR_066091_20180408_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180408_20201016_02_T2/LC08_L2SR_066091_20180408_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180408_20201016_02_T2/LC08_L2SR_066091_20180408_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180408_20201016_02_T2/LC08_L2SR_066091_20180408_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180408_20201016_02_T2/LC08_L2SR_066091_20180408_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180408_20201016_02_T2/LC08_L2SR_066091_20180408_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180408_20201016_02_T2/LC08_L2SR_066091_20180408_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180408_20201016_02_T2/LC08_L2SR_066091_20180408_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180408_20201016_02_T2/LC08_L2SR_066091_20180408_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180408_20201016_02_T2/LC08_L2SR_066091_20180408_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180408_20201016_02_T2/LC08_L2SR_066091_20180408_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180408_20201016_02_T2/LC08_L2SR_066091_20180408_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.0672737,-43.51884489],[-174.65520392,-43.97126291],[-175.29303339,-45.68285319],[-177.70734078,-45.2320775],[-177.0672737,-43.51884489]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-04-08T21:24:08.901170Z","platform":"landsat-8","proj:bbox":[444885.0,-5059215.0,682815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":44.19,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018098LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":41.23781739,"view:sun_elevation":28.8930168,"landsat:cloud_cover_land":34.32,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20180330_02_T1","bbox":[-179.26293247813976,-45.67318493451306,-176.24359440386365,-43.531795065486946],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20180330_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180330_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180330_20201016_02_T1/LC08_L2SR_067091_20180330_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180330_20201016_02_T1/LC08_L2SR_067091_20180330_20201016_02_T1_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180330_20201016_02_T1/LC08_L2SR_067091_20180330_20201016_02_T1_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180330_20201016_02_T1/LC08_L2SR_067091_20180330_20201016_02_T1_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180330_20201016_02_T1/LC08_L2SR_067091_20180330_20201016_02_T1_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180330_20201016_02_T1/LC08_L2SR_067091_20180330_20201016_02_T1_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180330_20201016_02_T1/LC08_L2SR_067091_20180330_20201016_02_T1_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180330_20201016_02_T1/LC08_L2SR_067091_20180330_20201016_02_T1_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180330_20201016_02_T1/LC08_L2SR_067091_20180330_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180330_20201016_02_T1/LC08_L2SR_067091_20180330_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180330_20201016_02_T1/LC08_L2SR_067091_20180330_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180330_20201016_02_T1/LC08_L2SR_067091_20180330_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180330_20201016_02_T1/LC08_L2SR_067091_20180330_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180330_20201016_02_T1/LC08_L2SR_067091_20180330_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180330_20201016_02_T1/LC08_L2SR_067091_20180330_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180330_20201016_02_T1/LC08_L2SR_067091_20180330_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.66756294,-43.53192582],[-176.24451463,-43.95218474],[-176.83611745,-45.67025062],[-179.26204329,-45.2525739],[-178.66756294,-43.53192582]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-03-30T21:30:24.484697Z","platform":"landsat-8","proj:bbox":[323685.0,-5058015.0,558915.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":61.53,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018089LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":43.79084957,"view:sun_elevation":31.58780878,"landsat:cloud_cover_land":31.08,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20180323_02_T1","bbox":[-177.70391251115,-45.68431497929076,-174.64557444859253,-43.516585020709236],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20180323_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180323_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180323_20201016_02_T1/LC08_L2SR_066091_20180323_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180323_20201016_02_T1/LC08_L2SR_066091_20180323_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,445185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180323_20201016_02_T1/LC08_L2SR_066091_20180323_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,445185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180323_20201016_02_T1/LC08_L2SR_066091_20180323_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,445185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180323_20201016_02_T1/LC08_L2SR_066091_20180323_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,445185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180323_20201016_02_T1/LC08_L2SR_066091_20180323_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,445185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180323_20201016_02_T1/LC08_L2SR_066091_20180323_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,445185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180323_20201016_02_T1/LC08_L2SR_066091_20180323_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,445185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180323_20201016_02_T1/LC08_L2SR_066091_20180323_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180323_20201016_02_T1/LC08_L2SR_066091_20180323_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180323_20201016_02_T1/LC08_L2SR_066091_20180323_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180323_20201016_02_T1/LC08_L2SR_066091_20180323_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,445185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180323_20201016_02_T1/LC08_L2SR_066091_20180323_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,445185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180323_20201016_02_T1/LC08_L2SR_066091_20180323_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180323_20201016_02_T1/LC08_L2SR_066091_20180323_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,445185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180323_20201016_02_T1/LC08_L2SR_066091_20180323_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.06164283,-43.51899126],[-174.64944443,-43.97163071],[-175.28754574,-45.68325458],[-177.70197572,-45.23225587],[-177.06164283,-43.51899126]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-03-23T21:24:16.776450Z","platform":"landsat-8","proj:bbox":[445185.0,-5059215.0,683415.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":15.39,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018082LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":45.95242692,"view:sun_elevation":33.69897329,"landsat:cloud_cover_land":19.63,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20180314_02_T1","bbox":[-179.25524247848148,-45.67313493484376,-176.23588440358097,-43.53193506515624],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20180314_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180314_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180314_20201016_02_T1/LC08_L2SR_067091_20180314_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180314_20201016_02_T1/LC08_L2SR_067091_20180314_20201016_02_T1_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180314_20201016_02_T1/LC08_L2SR_067091_20180314_20201016_02_T1_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180314_20201016_02_T1/LC08_L2SR_067091_20180314_20201016_02_T1_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180314_20201016_02_T1/LC08_L2SR_067091_20180314_20201016_02_T1_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180314_20201016_02_T1/LC08_L2SR_067091_20180314_20201016_02_T1_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180314_20201016_02_T1/LC08_L2SR_067091_20180314_20201016_02_T1_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180314_20201016_02_T1/LC08_L2SR_067091_20180314_20201016_02_T1_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180314_20201016_02_T1/LC08_L2SR_067091_20180314_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180314_20201016_02_T1/LC08_L2SR_067091_20180314_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180314_20201016_02_T1/LC08_L2SR_067091_20180314_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180314_20201016_02_T1/LC08_L2SR_067091_20180314_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180314_20201016_02_T1/LC08_L2SR_067091_20180314_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180314_20201016_02_T1/LC08_L2SR_067091_20180314_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180314_20201016_02_T1/LC08_L2SR_067091_20180314_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,324285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180314_20201016_02_T1/LC08_L2SR_067091_20180314_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.65958938,-43.53197158],[-176.23651822,-43.95249773],[-176.82851623,-45.67034771],[-179.25446551,-45.25239608],[-178.65958938,-43.53197158]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-03-14T21:30:31.060041Z","platform":"landsat-8","proj:bbox":[324285.0,-5058015.0,559515.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":15.06,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018073LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":48.89062303,"view:sun_elevation":36.39249581,"landsat:cloud_cover_land":11.48,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20180307_02_T2","bbox":[-177.70391251115,-45.68431497929076,-174.64557444859253,-43.516585020709236],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20180307_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180307_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180307_20201016_02_T2/LC08_L2SR_066091_20180307_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180307_20201016_02_T2/LC08_L2SR_066091_20180307_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,445185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180307_20201016_02_T2/LC08_L2SR_066091_20180307_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,445185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180307_20201016_02_T2/LC08_L2SR_066091_20180307_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,445185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180307_20201016_02_T2/LC08_L2SR_066091_20180307_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,445185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180307_20201016_02_T2/LC08_L2SR_066091_20180307_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,445185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180307_20201016_02_T2/LC08_L2SR_066091_20180307_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,445185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180307_20201016_02_T2/LC08_L2SR_066091_20180307_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,445185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180307_20201016_02_T2/LC08_L2SR_066091_20180307_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180307_20201016_02_T2/LC08_L2SR_066091_20180307_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180307_20201016_02_T2/LC08_L2SR_066091_20180307_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180307_20201016_02_T2/LC08_L2SR_066091_20180307_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,445185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180307_20201016_02_T2/LC08_L2SR_066091_20180307_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,445185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180307_20201016_02_T2/LC08_L2SR_066091_20180307_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180307_20201016_02_T2/LC08_L2SR_066091_20180307_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,445185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180307_20201016_02_T2/LC08_L2SR_066091_20180307_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.06077184,-43.51898293],[-174.6485938,-43.97178676],[-175.28688604,-45.68337688],[-177.70129586,-45.23220859],[-177.06077184,-43.51898293]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-03-07T21:24:24.639717Z","platform":"landsat-8","proj:bbox":[445185.0,-5059215.0,683415.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.98,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018066LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":51.25046724,"view:sun_elevation":38.453151,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20180226_02_T2","bbox":[-179.26282246888607,-45.670484934584785,-176.24362441214726,-43.52909506541521],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20180226_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180226_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180226_20201016_02_T2/LC08_L2SR_067091_20180226_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180226_20201016_02_T2/LC08_L2SR_067091_20180226_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180226_20201016_02_T2/LC08_L2SR_067091_20180226_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180226_20201016_02_T2/LC08_L2SR_067091_20180226_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180226_20201016_02_T2/LC08_L2SR_067091_20180226_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180226_20201016_02_T2/LC08_L2SR_067091_20180226_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180226_20201016_02_T2/LC08_L2SR_067091_20180226_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180226_20201016_02_T2/LC08_L2SR_067091_20180226_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180226_20201016_02_T2/LC08_L2SR_067091_20180226_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180226_20201016_02_T2/LC08_L2SR_067091_20180226_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180226_20201016_02_T2/LC08_L2SR_067091_20180226_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180226_20201016_02_T2/LC08_L2SR_067091_20180226_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180226_20201016_02_T2/LC08_L2SR_067091_20180226_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180226_20201016_02_T2/LC08_L2SR_067091_20180226_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180226_20201016_02_T2/LC08_L2SR_067091_20180226_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180226_20201016_02_T2/LC08_L2SR_067091_20180226_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.66758637,-43.53172353],[-176.24458238,-43.95223974],[-176.83652335,-45.67013047],[-179.26240928,-45.25220017],[-178.66758637,-43.53172353]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-02-26T21:30:40.359105Z","platform":"landsat-8","proj:bbox":[323685.0,-5057715.0,558915.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.61,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018057LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":54.2951506,"view:sun_elevation":41.0232553,"landsat:cloud_cover_land":99.99,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20180219_02_T2","bbox":[-177.70776251150116,-45.684294979237855,-174.65326444829873,-43.51673502076214],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20180219_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180219_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180219_20201016_02_T2/LC08_L2SR_066091_20180219_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180219_20201016_02_T2/LC08_L2SR_066091_20180219_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180219_20201016_02_T2/LC08_L2SR_066091_20180219_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180219_20201016_02_T2/LC08_L2SR_066091_20180219_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180219_20201016_02_T2/LC08_L2SR_066091_20180219_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180219_20201016_02_T2/LC08_L2SR_066091_20180219_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180219_20201016_02_T2/LC08_L2SR_066091_20180219_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180219_20201016_02_T2/LC08_L2SR_066091_20180219_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180219_20201016_02_T2/LC08_L2SR_066091_20180219_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180219_20201016_02_T2/LC08_L2SR_066091_20180219_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180219_20201016_02_T2/LC08_L2SR_066091_20180219_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180219_20201016_02_T2/LC08_L2SR_066091_20180219_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180219_20201016_02_T2/LC08_L2SR_066091_20180219_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180219_20201016_02_T2/LC08_L2SR_066091_20180219_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180219_20201016_02_T2/LC08_L2SR_066091_20180219_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180219_20201016_02_T2/LC08_L2SR_066091_20180219_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.06673202,-43.51892777],[-174.65453141,-43.97169477],[-175.29283084,-45.68318845],[-177.70726391,-45.23205374],[-177.06673202,-43.51892777]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-02-19T21:24:32.783432Z","platform":"landsat-8","proj:bbox":[444885.0,-5059215.0,682815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.99,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018050LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":56.59758785,"view:sun_elevation":42.95564581,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20180210_02_T2","bbox":[-179.2667824779851,-45.67318493434092,-176.24359440398237,-43.53172506565909],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20180210_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180210_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180210_20201016_02_T2/LC08_L2SR_067091_20180210_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180210_20201016_02_T2/LC08_L2SR_067091_20180210_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180210_20201016_02_T2/LC08_L2SR_067091_20180210_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180210_20201016_02_T2/LC08_L2SR_067091_20180210_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180210_20201016_02_T2/LC08_L2SR_067091_20180210_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180210_20201016_02_T2/LC08_L2SR_067091_20180210_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180210_20201016_02_T2/LC08_L2SR_067091_20180210_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180210_20201016_02_T2/LC08_L2SR_067091_20180210_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180210_20201016_02_T2/LC08_L2SR_067091_20180210_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180210_20201016_02_T2/LC08_L2SR_067091_20180210_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180210_20201016_02_T2/LC08_L2SR_067091_20180210_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180210_20201016_02_T2/LC08_L2SR_067091_20180210_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180210_20201016_02_T2/LC08_L2SR_067091_20180210_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180210_20201016_02_T2/LC08_L2SR_067091_20180210_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180210_20201016_02_T2/LC08_L2SR_067091_20180210_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180210_20201016_02_T2/LC08_L2SR_067091_20180210_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.66939943,-43.53185543],[-176.24636065,-43.95245309],[-176.83846601,-45.6703785],[-179.26439618,-45.25236736],[-178.66939943,-43.53185543]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-02-10T21:30:46.912539Z","platform":"landsat-8","proj:bbox":[323385.0,-5058015.0,558915.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018041LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":59.36196802,"view:sun_elevation":45.32737059,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20180203_02_T1","bbox":[-177.7077625113453,-45.684294979237855,-174.64941444841807,-43.51666502076215],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20180203_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180203_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180203_20201016_02_T1/LC08_L2SR_066091_20180203_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180203_20201016_02_T1/LC08_L2SR_066091_20180203_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180203_20201016_02_T1/LC08_L2SR_066091_20180203_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180203_20201016_02_T1/LC08_L2SR_066091_20180203_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180203_20201016_02_T1/LC08_L2SR_066091_20180203_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180203_20201016_02_T1/LC08_L2SR_066091_20180203_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180203_20201016_02_T1/LC08_L2SR_066091_20180203_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180203_20201016_02_T1/LC08_L2SR_066091_20180203_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180203_20201016_02_T1/LC08_L2SR_066091_20180203_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180203_20201016_02_T1/LC08_L2SR_066091_20180203_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180203_20201016_02_T1/LC08_L2SR_066091_20180203_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180203_20201016_02_T1/LC08_L2SR_066091_20180203_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180203_20201016_02_T1/LC08_L2SR_066091_20180203_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180203_20201016_02_T1/LC08_L2SR_066091_20180203_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180203_20201016_02_T1/LC08_L2SR_066091_20180203_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180203_20201016_02_T1/LC08_L2SR_066091_20180203_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.06513406,-43.51884251],[-174.65309117,-43.9718261],[-175.29157173,-45.68337061],[-177.70585469,-45.23202203],[-177.06513406,-43.51884251]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-02-03T21:24:38.079672Z","platform":"landsat-8","proj:bbox":[444885.0,-5059215.0,683115.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":23.58,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018034LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":61.28208602,"view:sun_elevation":47.07205311,"landsat:cloud_cover_land":23.76,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20180125_02_T1","bbox":[-179.27447247764155,-45.673234934042526,-176.2512944125579,-43.528885065957475],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20180125_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180125_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180125_20201016_02_T1/LC08_L2SR_067091_20180125_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180125_20201016_02_T1/LC08_L2SR_067091_20180125_20201016_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180125_20201016_02_T1/LC08_L2SR_067091_20180125_20201016_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180125_20201016_02_T1/LC08_L2SR_067091_20180125_20201016_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180125_20201016_02_T1/LC08_L2SR_067091_20180125_20201016_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180125_20201016_02_T1/LC08_L2SR_067091_20180125_20201016_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180125_20201016_02_T1/LC08_L2SR_067091_20180125_20201016_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180125_20201016_02_T1/LC08_L2SR_067091_20180125_20201016_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180125_20201016_02_T1/LC08_L2SR_067091_20180125_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180125_20201016_02_T1/LC08_L2SR_067091_20180125_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180125_20201016_02_T1/LC08_L2SR_067091_20180125_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180125_20201016_02_T1/LC08_L2SR_067091_20180125_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180125_20201016_02_T1/LC08_L2SR_067091_20180125_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180125_20201016_02_T1/LC08_L2SR_067091_20180125_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180125_20201016_02_T1/LC08_L2SR_067091_20180125_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180125_20201016_02_T1/LC08_L2SR_067091_20180125_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.67782797,-43.53153393],[-176.25506889,-43.95201719],[-176.84703784,-45.6702442],[-179.27268468,-45.25234217],[-178.67782797,-43.53153393]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-01-25T21:30:53.963766Z","platform":"landsat-8","proj:bbox":[322785.0,-5058015.0,558315.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":95.64,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018025LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":63.33346512,"view:sun_elevation":49.1558208,"landsat:cloud_cover_land":62.8,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20180118_02_T2","bbox":[-177.72703251242802,-45.68417497896924,-174.67250444750982,-43.517105021030765],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20180118_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180118_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180118_20201016_02_T2/LC08_L2SR_066091_20180118_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180118_20201016_02_T2/LC08_L2SR_066091_20180118_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180118_20201016_02_T2/LC08_L2SR_066091_20180118_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180118_20201016_02_T2/LC08_L2SR_066091_20180118_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180118_20201016_02_T2/LC08_L2SR_066091_20180118_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180118_20201016_02_T2/LC08_L2SR_066091_20180118_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180118_20201016_02_T2/LC08_L2SR_066091_20180118_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180118_20201016_02_T2/LC08_L2SR_066091_20180118_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180118_20201016_02_T2/LC08_L2SR_066091_20180118_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180118_20201016_02_T2/LC08_L2SR_066091_20180118_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180118_20201016_02_T2/LC08_L2SR_066091_20180118_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180118_20201016_02_T2/LC08_L2SR_066091_20180118_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180118_20201016_02_T2/LC08_L2SR_066091_20180118_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180118_20201016_02_T2/LC08_L2SR_066091_20180118_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180118_20201016_02_T2/LC08_L2SR_066091_20180118_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180118_20201016_02_T2/LC08_L2SR_066091_20180118_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.08576369,-43.51911816],[-174.67387798,-43.97157928],[-175.31198988,-45.68278623],[-177.72612416,-45.23197982],[-177.08576369,-43.51911816]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-01-18T21:24:47.359743Z","platform":"landsat-8","proj:bbox":[443385.0,-5059215.0,681315.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018018LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":64.51560481,"view:sun_elevation":50.64014152,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20180109_02_T1","bbox":[-179.29371247670431,-45.67338493315383,-176.27440440504785,-43.531225066846176],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20180109_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180109_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180109_20201016_02_T1/LC08_L2SR_067091_20180109_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180109_20201016_02_T1/LC08_L2SR_067091_20180109_20201016_02_T1_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180109_20201016_02_T1/LC08_L2SR_067091_20180109_20201016_02_T1_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180109_20201016_02_T1/LC08_L2SR_067091_20180109_20201016_02_T1_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180109_20201016_02_T1/LC08_L2SR_067091_20180109_20201016_02_T1_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180109_20201016_02_T1/LC08_L2SR_067091_20180109_20201016_02_T1_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180109_20201016_02_T1/LC08_L2SR_067091_20180109_20201016_02_T1_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180109_20201016_02_T1/LC08_L2SR_067091_20180109_20201016_02_T1_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180109_20201016_02_T1/LC08_L2SR_067091_20180109_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180109_20201016_02_T1/LC08_L2SR_067091_20180109_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180109_20201016_02_T1/LC08_L2SR_067091_20180109_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180109_20201016_02_T1/LC08_L2SR_067091_20180109_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180109_20201016_02_T1/LC08_L2SR_067091_20180109_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180109_20201016_02_T1/LC08_L2SR_067091_20180109_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180109_20201016_02_T1/LC08_L2SR_067091_20180109_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/067/091/LC08_L2SR_067091_20180109_20201016_02_T1/LC08_L2SR_067091_20180109_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.69839024,-43.53156757],[-176.27557896,-43.95182956],[-176.86709923,-45.67054218],[-179.29280908,-45.2528842],[-178.69839024,-43.53156757]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-01-09T21:31:02.671890Z","platform":"landsat-8","proj:bbox":[321285.0,-5058015.0,556515.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":65.12,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912018009LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":65.40018403,"view:sun_elevation":52.32559647,"landsat:cloud_cover_land":77.69,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20180102_02_T1","bbox":[-177.74629251318905,-45.68405497869346,-174.6878944468797,-43.51739502130654],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20180102_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180102_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180102_20201016_02_T1/LC08_L2SR_066091_20180102_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180102_20201016_02_T1/LC08_L2SR_066091_20180102_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180102_20201016_02_T1/LC08_L2SR_066091_20180102_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180102_20201016_02_T1/LC08_L2SR_066091_20180102_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180102_20201016_02_T1/LC08_L2SR_066091_20180102_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180102_20201016_02_T1/LC08_L2SR_066091_20180102_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180102_20201016_02_T1/LC08_L2SR_066091_20180102_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180102_20201016_02_T1/LC08_L2SR_066091_20180102_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180102_20201016_02_T1/LC08_L2SR_066091_20180102_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180102_20201016_02_T1/LC08_L2SR_066091_20180102_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180102_20201016_02_T1/LC08_L2SR_066091_20180102_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180102_20201016_02_T1/LC08_L2SR_066091_20180102_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180102_20201016_02_T1/LC08_L2SR_066091_20180102_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180102_20201016_02_T1/LC08_L2SR_066091_20180102_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180102_20201016_02_T1/LC08_L2SR_066091_20180102_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2018/066/091/LC08_L2SR_066091_20180102_20201016_02_T1/LC08_L2SR_066091_20180102_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10266382,-43.51940746],[-174.69069827,-43.97155953],[-175.32851589,-45.68249563],[-177.74273643,-45.23200478],[-177.10266382,-43.51940746]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2018-01-02T21:24:54.755742Z","platform":"landsat-8","proj:bbox":[441885.0,-5059215.0,680115.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":69.04,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912018002LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":65.54112271,"view:sun_elevation":53.42835628,"landsat:cloud_cover_land":84.95,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20171224_02_T1","bbox":[-179.30514246694443,-45.67073493267893,-176.28214440548103,-43.53100506732107],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20171224_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171224_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171224_20201016_02_T1/LC08_L2SR_067091_20171224_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171224_20201016_02_T1/LC08_L2SR_067091_20171224_20201016_02_T1_SR_B1.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171224_20201016_02_T1/LC08_L2SR_067091_20171224_20201016_02_T1_SR_B2.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171224_20201016_02_T1/LC08_L2SR_067091_20171224_20201016_02_T1_SR_B3.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171224_20201016_02_T1/LC08_L2SR_067091_20171224_20201016_02_T1_SR_B4.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171224_20201016_02_T1/LC08_L2SR_067091_20171224_20201016_02_T1_SR_B5.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171224_20201016_02_T1/LC08_L2SR_067091_20171224_20201016_02_T1_SR_B6.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171224_20201016_02_T1/LC08_L2SR_067091_20171224_20201016_02_T1_SR_B7.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171224_20201016_02_T1/LC08_L2SR_067091_20171224_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171224_20201016_02_T1/LC08_L2SR_067091_20171224_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171224_20201016_02_T1/LC08_L2SR_067091_20171224_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171224_20201016_02_T1/LC08_L2SR_067091_20171224_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171224_20201016_02_T1/LC08_L2SR_067091_20171224_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171224_20201016_02_T1/LC08_L2SR_067091_20171224_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171224_20201016_02_T1/LC08_L2SR_067091_20171224_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171224_20201016_02_T1/LC08_L2SR_067091_20171224_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70912486,-43.53114116],[-176.28628637,-43.9513615],[-176.87757257,-45.67036855],[-179.30330465,-45.25275416],[-178.70912486,-43.53114116]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-12-24T21:31:08.349557Z","platform":"landsat-8","proj:bbox":[320385.0,-5057715.0,555915.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":42.52,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017358LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":64.97505447,"view:sun_elevation":54.51836835,"landsat:cloud_cover_land":31.82,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20171217_02_T1","bbox":[-177.74629251318905,-45.68405497869346,-174.6878944468797,-43.51739502130654],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20171217_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171217_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171217_20201016_02_T1/LC08_L2SR_066091_20171217_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171217_20201016_02_T1/LC08_L2SR_066091_20171217_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171217_20201016_02_T1/LC08_L2SR_066091_20171217_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171217_20201016_02_T1/LC08_L2SR_066091_20171217_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171217_20201016_02_T1/LC08_L2SR_066091_20171217_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171217_20201016_02_T1/LC08_L2SR_066091_20171217_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171217_20201016_02_T1/LC08_L2SR_066091_20171217_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171217_20201016_02_T1/LC08_L2SR_066091_20171217_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171217_20201016_02_T1/LC08_L2SR_066091_20171217_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171217_20201016_02_T1/LC08_L2SR_066091_20171217_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171217_20201016_02_T1/LC08_L2SR_066091_20171217_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171217_20201016_02_T1/LC08_L2SR_066091_20171217_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171217_20201016_02_T1/LC08_L2SR_066091_20171217_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171217_20201016_02_T1/LC08_L2SR_066091_20171217_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171217_20201016_02_T1/LC08_L2SR_066091_20171217_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171217_20201016_02_T1/LC08_L2SR_066091_20171217_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10290086,-43.51910907],[-174.69061392,-43.97138441],[-175.32852039,-45.68221231],[-177.74305174,-45.23159196],[-177.10290086,-43.51910907]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-12-17T21:24:57.425501Z","platform":"landsat-8","proj:bbox":[441885.0,-5059215.0,680115.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":27.59,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017351LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":63.96139124,"view:sun_elevation":55.06829616,"landsat:cloud_cover_land":65.15,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20171208_02_T2","bbox":[-179.28602247710606,-45.67330493352415,-176.26284441301416,-43.528665066475845],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20171208_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171208_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171208_20201016_02_T2/LC08_L2SR_067091_20171208_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171208_20201016_02_T2/LC08_L2SR_067091_20171208_20201016_02_T2_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171208_20201016_02_T2/LC08_L2SR_067091_20171208_20201016_02_T2_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171208_20201016_02_T2/LC08_L2SR_067091_20171208_20201016_02_T2_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171208_20201016_02_T2/LC08_L2SR_067091_20171208_20201016_02_T2_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171208_20201016_02_T2/LC08_L2SR_067091_20171208_20201016_02_T2_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171208_20201016_02_T2/LC08_L2SR_067091_20171208_20201016_02_T2_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171208_20201016_02_T2/LC08_L2SR_067091_20171208_20201016_02_T2_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171208_20201016_02_T2/LC08_L2SR_067091_20171208_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171208_20201016_02_T2/LC08_L2SR_067091_20171208_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171208_20201016_02_T2/LC08_L2SR_067091_20171208_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171208_20201016_02_T2/LC08_L2SR_067091_20171208_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171208_20201016_02_T2/LC08_L2SR_067091_20171208_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171208_20201016_02_T2/LC08_L2SR_067091_20171208_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171208_20201016_02_T2/LC08_L2SR_067091_20171208_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321885.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171208_20201016_02_T2/LC08_L2SR_067091_20171208_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.68814319,-43.53131107],[-176.26500222,-43.9519672],[-176.85704579,-45.67031875],[-179.28307036,-45.25225343],[-178.68814319,-43.53131107]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-12-08T21:31:05.715047Z","platform":"landsat-8","proj:bbox":[321885.0,-5058015.0,557415.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":35.91,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017342LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":62.01601519,"view:sun_elevation":55.32479785,"landsat:cloud_cover_land":63.98,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20171201_02_T1","bbox":[-177.72703251242802,-45.68417497896924,-174.67250444750982,-43.517105021030765],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20171201_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171201_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171201_20201016_02_T1/LC08_L2SR_066091_20171201_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171201_20201016_02_T1/LC08_L2SR_066091_20171201_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171201_20201016_02_T1/LC08_L2SR_066091_20171201_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171201_20201016_02_T1/LC08_L2SR_066091_20171201_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171201_20201016_02_T1/LC08_L2SR_066091_20171201_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171201_20201016_02_T1/LC08_L2SR_066091_20171201_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171201_20201016_02_T1/LC08_L2SR_066091_20171201_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171201_20201016_02_T1/LC08_L2SR_066091_20171201_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171201_20201016_02_T1/LC08_L2SR_066091_20171201_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171201_20201016_02_T1/LC08_L2SR_066091_20171201_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171201_20201016_02_T1/LC08_L2SR_066091_20171201_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171201_20201016_02_T1/LC08_L2SR_066091_20171201_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171201_20201016_02_T1/LC08_L2SR_066091_20171201_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171201_20201016_02_T1/LC08_L2SR_066091_20171201_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171201_20201016_02_T1/LC08_L2SR_066091_20171201_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443385.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171201_20201016_02_T1/LC08_L2SR_066091_20171201_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.08519676,-43.51911087],[-174.67292623,-43.97197152],[-175.31146459,-45.68301122],[-177.72597455,-45.23179694],[-177.08519676,-43.51911087]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-12-01T21:24:54.993878Z","platform":"landsat-8","proj:bbox":[443385.0,-5059215.0,681315.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":20.74,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017335LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":60.11877452,"view:sun_elevation":55.1328309,"landsat:cloud_cover_land":23.01,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20171122_02_T2","bbox":[-179.2937124767321,-45.673354933153824,-176.27055440501897,-43.531225066846176],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20171122_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171122_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171122_20201016_02_T2/LC08_L2SR_067091_20171122_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171122_20201016_02_T2/LC08_L2SR_067091_20171122_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171122_20201016_02_T2/LC08_L2SR_067091_20171122_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171122_20201016_02_T2/LC08_L2SR_067091_20171122_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171122_20201016_02_T2/LC08_L2SR_067091_20171122_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171122_20201016_02_T2/LC08_L2SR_067091_20171122_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171122_20201016_02_T2/LC08_L2SR_067091_20171122_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171122_20201016_02_T2/LC08_L2SR_067091_20171122_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171122_20201016_02_T2/LC08_L2SR_067091_20171122_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171122_20201016_02_T2/LC08_L2SR_067091_20171122_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171122_20201016_02_T2/LC08_L2SR_067091_20171122_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171122_20201016_02_T2/LC08_L2SR_067091_20171122_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171122_20201016_02_T2/LC08_L2SR_067091_20171122_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171122_20201016_02_T2/LC08_L2SR_067091_20171122_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171122_20201016_02_T2/LC08_L2SR_067091_20171122_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171122_20201016_02_T2/LC08_L2SR_067091_20171122_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.69623835,-43.53144801],[-176.27313749,-43.95208621],[-176.86506613,-45.67061417],[-179.29105113,-45.25258202],[-178.69623835,-43.53144801]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-11-22T21:31:08.981609Z","platform":"landsat-8","proj:bbox":[321285.0,-5058015.0,556815.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.98,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017326LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":57.37693335,"view:sun_elevation":54.35877491,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20171115_02_T2","bbox":[-177.7501425133711,-45.684024978641446,-174.6917444467325,-43.517465021358554],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20171115_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171115_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171115_20201016_02_T2/LC08_L2SR_066091_20171115_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171115_20201016_02_T2/LC08_L2SR_066091_20171115_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171115_20201016_02_T2/LC08_L2SR_066091_20171115_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171115_20201016_02_T2/LC08_L2SR_066091_20171115_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171115_20201016_02_T2/LC08_L2SR_066091_20171115_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171115_20201016_02_T2/LC08_L2SR_066091_20171115_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171115_20201016_02_T2/LC08_L2SR_066091_20171115_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171115_20201016_02_T2/LC08_L2SR_066091_20171115_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171115_20201016_02_T2/LC08_L2SR_066091_20171115_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171115_20201016_02_T2/LC08_L2SR_066091_20171115_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171115_20201016_02_T2/LC08_L2SR_066091_20171115_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171115_20201016_02_T2/LC08_L2SR_066091_20171115_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171115_20201016_02_T2/LC08_L2SR_066091_20171115_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171115_20201016_02_T2/LC08_L2SR_066091_20171115_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171115_20201016_02_T2/LC08_L2SR_066091_20171115_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171115_20201016_02_T2/LC08_L2SR_066091_20171115_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10609128,-43.51916721],[-174.69390007,-43.97156159],[-175.33197663,-45.68232152],[-177.74643211,-45.23158581],[-177.10609128,-43.51916721]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-11-15T21:25:00.850125Z","platform":"landsat-8","proj:bbox":[441585.0,-5059215.0,679815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":82.74,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017319LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":55.16238185,"view:sun_elevation":53.34027633,"landsat:cloud_cover_land":97.59,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20171106_02_T1","bbox":[-179.31295247583787,-45.673474932292194,-176.28980440578016,-43.53086506770781],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20171106_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171106_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171106_20201016_02_T1/LC08_L2SR_067091_20171106_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171106_20201016_02_T1/LC08_L2SR_067091_20171106_20201016_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171106_20201016_02_T1/LC08_L2SR_067091_20171106_20201016_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171106_20201016_02_T1/LC08_L2SR_067091_20171106_20201016_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171106_20201016_02_T1/LC08_L2SR_067091_20171106_20201016_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171106_20201016_02_T1/LC08_L2SR_067091_20171106_20201016_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171106_20201016_02_T1/LC08_L2SR_067091_20171106_20201016_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171106_20201016_02_T1/LC08_L2SR_067091_20171106_20201016_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171106_20201016_02_T1/LC08_L2SR_067091_20171106_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171106_20201016_02_T1/LC08_L2SR_067091_20171106_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171106_20201016_02_T1/LC08_L2SR_067091_20171106_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171106_20201016_02_T1/LC08_L2SR_067091_20171106_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171106_20201016_02_T1/LC08_L2SR_067091_20171106_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171106_20201016_02_T1/LC08_L2SR_067091_20171106_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171106_20201016_02_T1/LC08_L2SR_067091_20171106_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171106_20201016_02_T1/LC08_L2SR_067091_20171106_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71606071,-43.53133008],[-176.29298457,-43.95173923],[-176.88444118,-45.67082751],[-179.31042678,-45.25303298],[-178.71606071,-43.53133008]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-11-06T21:31:14.042272Z","platform":"landsat-8","proj:bbox":[319785.0,-5058015.0,555315.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":7.04,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017310LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":52.40264513,"view:sun_elevation":51.52407715,"landsat:cloud_cover_land":21.6,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20171030_02_T1","bbox":[-177.7616925140514,-45.68394497847167,-174.70713444615953,-43.51775502152833],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20171030_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171030_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171030_20201016_02_T1/LC08_L2SR_066091_20171030_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171030_20201016_02_T1/LC08_L2SR_066091_20171030_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171030_20201016_02_T1/LC08_L2SR_066091_20171030_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171030_20201016_02_T1/LC08_L2SR_066091_20171030_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171030_20201016_02_T1/LC08_L2SR_066091_20171030_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171030_20201016_02_T1/LC08_L2SR_066091_20171030_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171030_20201016_02_T1/LC08_L2SR_066091_20171030_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171030_20201016_02_T1/LC08_L2SR_066091_20171030_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171030_20201016_02_T1/LC08_L2SR_066091_20171030_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171030_20201016_02_T1/LC08_L2SR_066091_20171030_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171030_20201016_02_T1/LC08_L2SR_066091_20171030_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171030_20201016_02_T1/LC08_L2SR_066091_20171030_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171030_20201016_02_T1/LC08_L2SR_066091_20171030_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171030_20201016_02_T1/LC08_L2SR_066091_20171030_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171030_20201016_02_T1/LC08_L2SR_066091_20171030_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171030_20201016_02_T1/LC08_L2SR_066091_20171030_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.12046675,-43.51961198],[-174.70825811,-43.97170899],[-175.34600245,-45.68226883],[-177.76047503,-45.23183187],[-177.12046675,-43.51961198]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-10-30T21:25:04.194708Z","platform":"landsat-8","proj:bbox":[440685.0,-5059215.0,678615.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":20.69,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017303LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":50.42298006,"view:sun_elevation":49.74885241,"landsat:cloud_cover_land":17.78,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20171021_02_T2","bbox":[-179.32064247545753,-45.673524931953146,-176.29751440609695,-43.53071506804685],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20171021_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171021_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171021_20201016_02_T2/LC08_L2SR_067091_20171021_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171021_20201016_02_T2/LC08_L2SR_067091_20171021_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171021_20201016_02_T2/LC08_L2SR_067091_20171021_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171021_20201016_02_T2/LC08_L2SR_067091_20171021_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171021_20201016_02_T2/LC08_L2SR_067091_20171021_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171021_20201016_02_T2/LC08_L2SR_067091_20171021_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171021_20201016_02_T2/LC08_L2SR_067091_20171021_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171021_20201016_02_T2/LC08_L2SR_067091_20171021_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171021_20201016_02_T2/LC08_L2SR_067091_20171021_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171021_20201016_02_T2/LC08_L2SR_067091_20171021_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171021_20201016_02_T2/LC08_L2SR_067091_20171021_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171021_20201016_02_T2/LC08_L2SR_067091_20171021_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171021_20201016_02_T2/LC08_L2SR_067091_20171021_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171021_20201016_02_T2/LC08_L2SR_067091_20171021_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171021_20201016_02_T2/LC08_L2SR_067091_20171021_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319185.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171021_20201016_02_T2/LC08_L2SR_067091_20171021_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.72318499,-43.53136739],[-176.30017413,-43.95174691],[-176.89157035,-45.67099283],[-179.31749219,-45.25322945],[-178.72318499,-43.53136739]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-10-21T21:31:15.205430Z","platform":"landsat-8","proj:bbox":[319185.0,-5058015.0,554715.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":20.19,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017294LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":48.14970668,"view:sun_elevation":47.0796729,"landsat:cloud_cover_land":23.66,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20171014_02_T1","bbox":[-177.7616925140514,-45.68394497847167,-174.70713444615953,-43.51775502152833],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20171014_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171014_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171014_20201016_02_T1/LC08_L2SR_066091_20171014_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171014_20201016_02_T1/LC08_L2SR_066091_20171014_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171014_20201016_02_T1/LC08_L2SR_066091_20171014_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171014_20201016_02_T1/LC08_L2SR_066091_20171014_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171014_20201016_02_T1/LC08_L2SR_066091_20171014_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171014_20201016_02_T1/LC08_L2SR_066091_20171014_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171014_20201016_02_T1/LC08_L2SR_066091_20171014_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171014_20201016_02_T1/LC08_L2SR_066091_20171014_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171014_20201016_02_T1/LC08_L2SR_066091_20171014_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171014_20201016_02_T1/LC08_L2SR_066091_20171014_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171014_20201016_02_T1/LC08_L2SR_066091_20171014_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171014_20201016_02_T1/LC08_L2SR_066091_20171014_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171014_20201016_02_T1/LC08_L2SR_066091_20171014_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171014_20201016_02_T1/LC08_L2SR_066091_20171014_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171014_20201016_02_T1/LC08_L2SR_066091_20171014_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20171014_20201016_02_T1/LC08_L2SR_066091_20171014_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.12145153,-43.51952129],[-174.70932263,-43.97164979],[-175.34714335,-45.68220696],[-177.76154651,-45.23174674],[-177.12145153,-43.51952129]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-10-14T21:25:03.672330Z","platform":"landsat-8","proj:bbox":[440685.0,-5059215.0,678615.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":34.55,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017287LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":46.61091035,"view:sun_elevation":44.75434653,"landsat:cloud_cover_land":13.79,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20171005_02_T1","bbox":[-179.3167924756518,-45.673504932128836,-176.29366440592304,-43.53079506787116],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20171005_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171005_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171005_20201016_02_T1/LC08_L2SR_067091_20171005_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171005_20201016_02_T1/LC08_L2SR_067091_20171005_20201016_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171005_20201016_02_T1/LC08_L2SR_067091_20171005_20201016_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171005_20201016_02_T1/LC08_L2SR_067091_20171005_20201016_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171005_20201016_02_T1/LC08_L2SR_067091_20171005_20201016_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171005_20201016_02_T1/LC08_L2SR_067091_20171005_20201016_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171005_20201016_02_T1/LC08_L2SR_067091_20171005_20201016_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171005_20201016_02_T1/LC08_L2SR_067091_20171005_20201016_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171005_20201016_02_T1/LC08_L2SR_067091_20171005_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171005_20201016_02_T1/LC08_L2SR_067091_20171005_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171005_20201016_02_T1/LC08_L2SR_067091_20171005_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171005_20201016_02_T1/LC08_L2SR_067091_20171005_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171005_20201016_02_T1/LC08_L2SR_067091_20171005_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171005_20201016_02_T1/LC08_L2SR_067091_20171005_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171005_20201016_02_T1/LC08_L2SR_067091_20171005_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20171005_20201016_02_T1/LC08_L2SR_067091_20171005_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71862976,-43.53085478],[-176.29565251,-43.9514031],[-176.88730753,-45.67059083],[-179.31318768,-45.25265057],[-178.71862976,-43.53085478]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-10-05T21:31:12.598647Z","platform":"landsat-8","proj:bbox":[319485.0,-5058015.0,555015.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":76.7,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017278LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":44.91383073,"view:sun_elevation":41.53622599,"landsat:cloud_cover_land":86.77,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20170928_02_T2","bbox":[-177.7539925135611,-45.68400497858505,-174.69559444658577,-43.51753502141495],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20170928_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170928_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170928_20201016_02_T2/LC08_L2SR_066091_20170928_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170928_20201016_02_T2/LC08_L2SR_066091_20170928_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170928_20201016_02_T2/LC08_L2SR_066091_20170928_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170928_20201016_02_T2/LC08_L2SR_066091_20170928_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170928_20201016_02_T2/LC08_L2SR_066091_20170928_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170928_20201016_02_T2/LC08_L2SR_066091_20170928_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170928_20201016_02_T2/LC08_L2SR_066091_20170928_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170928_20201016_02_T2/LC08_L2SR_066091_20170928_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170928_20201016_02_T2/LC08_L2SR_066091_20170928_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170928_20201016_02_T2/LC08_L2SR_066091_20170928_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170928_20201016_02_T2/LC08_L2SR_066091_20170928_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170928_20201016_02_T2/LC08_L2SR_066091_20170928_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170928_20201016_02_T2/LC08_L2SR_066091_20170928_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170928_20201016_02_T2/LC08_L2SR_066091_20170928_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170928_20201016_02_T2/LC08_L2SR_066091_20170928_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170928_20201016_02_T2/LC08_L2SR_066091_20170928_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.11051412,-43.51928911],[-174.69838109,-43.97177994],[-175.33662204,-45.68248163],[-177.75100725,-45.23165471],[-177.11051412,-43.51928911]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-09-28T21:24:59.477155Z","platform":"landsat-8","proj:bbox":[441285.0,-5059215.0,679515.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":98.65,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017271LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":43.77731737,"view:sun_elevation":38.91114536,"landsat:cloud_cover_land":99.98,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20170919_02_T1","bbox":[-179.2975624765747,-45.67338493301502,-176.2744044134506,-43.52845506698498],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20170919_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170919_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170919_20201016_02_T1/LC08_L2SR_067091_20170919_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170919_20201016_02_T1/LC08_L2SR_067091_20170919_20201016_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170919_20201016_02_T1/LC08_L2SR_067091_20170919_20201016_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170919_20201016_02_T1/LC08_L2SR_067091_20170919_20201016_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170919_20201016_02_T1/LC08_L2SR_067091_20170919_20201016_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170919_20201016_02_T1/LC08_L2SR_067091_20170919_20201016_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170919_20201016_02_T1/LC08_L2SR_067091_20170919_20201016_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170919_20201016_02_T1/LC08_L2SR_067091_20170919_20201016_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170919_20201016_02_T1/LC08_L2SR_067091_20170919_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170919_20201016_02_T1/LC08_L2SR_067091_20170919_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170919_20201016_02_T1/LC08_L2SR_067091_20170919_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170919_20201016_02_T1/LC08_L2SR_067091_20170919_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170919_20201016_02_T1/LC08_L2SR_067091_20170919_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170919_20201016_02_T1/LC08_L2SR_067091_20170919_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170919_20201016_02_T1/LC08_L2SR_067091_20170919_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170919_20201016_02_T1/LC08_L2SR_067091_20170919_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.701583,-43.53093186],[-176.27857528,-43.95183942],[-176.87085957,-45.67047807],[-179.29676243,-45.25216664],[-178.701583,-43.53093186]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-09-19T21:31:06.192649Z","platform":"landsat-8","proj:bbox":[320985.0,-5058015.0,556515.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":34.46,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017262LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":42.49684919,"view:sun_elevation":35.47152427,"landsat:cloud_cover_land":84.7,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20170912_02_T2","bbox":[-177.7347325128043,-45.68412497885985,-174.68020444722004,-43.517245021140155],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20170912_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170912_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170912_20201016_02_T2/LC08_L2SR_066091_20170912_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170912_20201016_02_T2/LC08_L2SR_066091_20170912_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170912_20201016_02_T2/LC08_L2SR_066091_20170912_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170912_20201016_02_T2/LC08_L2SR_066091_20170912_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170912_20201016_02_T2/LC08_L2SR_066091_20170912_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170912_20201016_02_T2/LC08_L2SR_066091_20170912_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170912_20201016_02_T2/LC08_L2SR_066091_20170912_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170912_20201016_02_T2/LC08_L2SR_066091_20170912_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170912_20201016_02_T2/LC08_L2SR_066091_20170912_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170912_20201016_02_T2/LC08_L2SR_066091_20170912_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170912_20201016_02_T2/LC08_L2SR_066091_20170912_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170912_20201016_02_T2/LC08_L2SR_066091_20170912_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170912_20201016_02_T2/LC08_L2SR_066091_20170912_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170912_20201016_02_T2/LC08_L2SR_066091_20170912_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170912_20201016_02_T2/LC08_L2SR_066091_20170912_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170912_20201016_02_T2/LC08_L2SR_066091_20170912_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.09264841,-43.51927851],[-174.68069054,-43.97227516],[-175.31954662,-45.68319471],[-177.7337447,-45.23184909],[-177.09264841,-43.51927851]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-09-12T21:24:52.661865Z","platform":"landsat-8","proj:bbox":[442785.0,-5059215.0,680715.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":23.54,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017255LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":41.60338036,"view:sun_elevation":32.79818228,"landsat:cloud_cover_land":69.1,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20170903_02_T2","bbox":[-179.3014124763826,-45.673404932805454,-176.278254405332,-43.53107506719455],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20170903_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170903_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170903_20201016_02_T2/LC08_L2SR_067091_20170903_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170903_20201016_02_T2/LC08_L2SR_067091_20170903_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170903_20201016_02_T2/LC08_L2SR_067091_20170903_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170903_20201016_02_T2/LC08_L2SR_067091_20170903_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170903_20201016_02_T2/LC08_L2SR_067091_20170903_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170903_20201016_02_T2/LC08_L2SR_067091_20170903_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170903_20201016_02_T2/LC08_L2SR_067091_20170903_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170903_20201016_02_T2/LC08_L2SR_067091_20170903_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170903_20201016_02_T2/LC08_L2SR_067091_20170903_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170903_20201016_02_T2/LC08_L2SR_067091_20170903_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170903_20201016_02_T2/LC08_L2SR_067091_20170903_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170903_20201016_02_T2/LC08_L2SR_067091_20170903_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170903_20201016_02_T2/LC08_L2SR_067091_20170903_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170903_20201016_02_T2/LC08_L2SR_067091_20170903_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170903_20201016_02_T2/LC08_L2SR_067091_20170903_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170903_20201016_02_T2/LC08_L2SR_067091_20170903_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70552733,-43.53120155],[-176.28243938,-43.95217193],[-176.87474262,-45.67082768],[-179.30072804,-45.25246715],[-178.70552733,-43.53120155]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-09-03T21:31:03.611400Z","platform":"landsat-8","proj:bbox":[320685.0,-5058015.0,556215.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":76.6,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017246LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":40.5531015,"view:sun_elevation":29.44530366,"landsat:cloud_cover_land":93.96,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20170827_02_T1","bbox":[-177.7501425133711,-45.684024978641446,-174.6917444467325,-43.517465021358554],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20170827_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170827_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170827_20201016_02_T1/LC08_L2SR_066091_20170827_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170827_20201016_02_T1/LC08_L2SR_066091_20170827_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170827_20201016_02_T1/LC08_L2SR_066091_20170827_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170827_20201016_02_T1/LC08_L2SR_066091_20170827_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170827_20201016_02_T1/LC08_L2SR_066091_20170827_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170827_20201016_02_T1/LC08_L2SR_066091_20170827_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170827_20201016_02_T1/LC08_L2SR_066091_20170827_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170827_20201016_02_T1/LC08_L2SR_066091_20170827_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170827_20201016_02_T1/LC08_L2SR_066091_20170827_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170827_20201016_02_T1/LC08_L2SR_066091_20170827_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170827_20201016_02_T1/LC08_L2SR_066091_20170827_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170827_20201016_02_T1/LC08_L2SR_066091_20170827_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170827_20201016_02_T1/LC08_L2SR_066091_20170827_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170827_20201016_02_T1/LC08_L2SR_066091_20170827_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170827_20201016_02_T1/LC08_L2SR_066091_20170827_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170827_20201016_02_T1/LC08_L2SR_066091_20170827_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10606606,-43.51910233],[-174.69373049,-43.97191643],[-175.33231759,-45.68248365],[-177.74690393,-45.23133741],[-177.10606606,-43.51910233]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-08-27T21:24:52.000150Z","platform":"landsat-8","proj:bbox":[441585.0,-5059215.0,679815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":86.01,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017239LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":39.7720007,"view:sun_elevation":26.95235675,"landsat:cloud_cover_land":98.32,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20170818_02_T1","bbox":[-179.30910247600508,-45.67345493250352,-176.2859544139137,-43.52823506749648],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20170818_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170818_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170818_20201016_02_T1/LC08_L2SR_067091_20170818_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170818_20201016_02_T1/LC08_L2SR_067091_20170818_20201016_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170818_20201016_02_T1/LC08_L2SR_067091_20170818_20201016_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170818_20201016_02_T1/LC08_L2SR_067091_20170818_20201016_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170818_20201016_02_T1/LC08_L2SR_067091_20170818_20201016_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170818_20201016_02_T1/LC08_L2SR_067091_20170818_20201016_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170818_20201016_02_T1/LC08_L2SR_067091_20170818_20201016_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170818_20201016_02_T1/LC08_L2SR_067091_20170818_20201016_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170818_20201016_02_T1/LC08_L2SR_067091_20170818_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170818_20201016_02_T1/LC08_L2SR_067091_20170818_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170818_20201016_02_T1/LC08_L2SR_067091_20170818_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170818_20201016_02_T1/LC08_L2SR_067091_20170818_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170818_20201016_02_T1/LC08_L2SR_067091_20170818_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170818_20201016_02_T1/LC08_L2SR_067091_20170818_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170818_20201016_02_T1/LC08_L2SR_067091_20170818_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170818_20201016_02_T1/LC08_L2SR_067091_20170818_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71296868,-43.53090479],[-176.28955453,-43.95186953],[-176.88173247,-45.67063076],[-179.30803724,-45.2522698],[-178.71296868,-43.53090479]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-08-18T21:31:00.971584Z","platform":"landsat-8","proj:bbox":[320085.0,-5058015.0,555615.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":74.21,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017230LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":38.79487498,"view:sun_elevation":23.96660392,"landsat:cloud_cover_land":43.39,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20170811_02_T1","bbox":[-177.7539925135611,-45.68400497858505,-174.69559444658577,-43.51753502141495],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20170811_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170811_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170811_20201016_02_T1/LC08_L2SR_066091_20170811_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170811_20201016_02_T1/LC08_L2SR_066091_20170811_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170811_20201016_02_T1/LC08_L2SR_066091_20170811_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170811_20201016_02_T1/LC08_L2SR_066091_20170811_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170811_20201016_02_T1/LC08_L2SR_066091_20170811_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170811_20201016_02_T1/LC08_L2SR_066091_20170811_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170811_20201016_02_T1/LC08_L2SR_066091_20170811_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170811_20201016_02_T1/LC08_L2SR_066091_20170811_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170811_20201016_02_T1/LC08_L2SR_066091_20170811_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170811_20201016_02_T1/LC08_L2SR_066091_20170811_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170811_20201016_02_T1/LC08_L2SR_066091_20170811_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170811_20201016_02_T1/LC08_L2SR_066091_20170811_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170811_20201016_02_T1/LC08_L2SR_066091_20170811_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170811_20201016_02_T1/LC08_L2SR_066091_20170811_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170811_20201016_02_T1/LC08_L2SR_066091_20170811_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170811_20201016_02_T1/LC08_L2SR_066091_20170811_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10947669,-43.51938835],[-174.69690441,-43.97222441],[-175.33539728,-45.68274431],[-177.75022829,-45.23157851],[-177.10947669,-43.51938835]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-08-11T21:24:48.128284Z","platform":"landsat-8","proj:bbox":[441285.0,-5059215.0,679515.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":37.2,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017223LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":38.04202248,"view:sun_elevation":21.85664131,"landsat:cloud_cover_land":2.45,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20170802_02_T2","bbox":[-179.30910247600508,-45.673454932467514,-176.28595440563038,-43.53093506753248],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20170802_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170802_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170802_20201016_02_T2/LC08_L2SR_067091_20170802_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170802_20201016_02_T2/LC08_L2SR_067091_20170802_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170802_20201016_02_T2/LC08_L2SR_067091_20170802_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170802_20201016_02_T2/LC08_L2SR_067091_20170802_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170802_20201016_02_T2/LC08_L2SR_067091_20170802_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170802_20201016_02_T2/LC08_L2SR_067091_20170802_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170802_20201016_02_T2/LC08_L2SR_067091_20170802_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170802_20201016_02_T2/LC08_L2SR_067091_20170802_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170802_20201016_02_T2/LC08_L2SR_067091_20170802_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170802_20201016_02_T2/LC08_L2SR_067091_20170802_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170802_20201016_02_T2/LC08_L2SR_067091_20170802_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170802_20201016_02_T2/LC08_L2SR_067091_20170802_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170802_20201016_02_T2/LC08_L2SR_067091_20170802_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170802_20201016_02_T2/LC08_L2SR_067091_20170802_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170802_20201016_02_T2/LC08_L2SR_067091_20170802_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170802_20201016_02_T2/LC08_L2SR_067091_20170802_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71116991,-43.5311393],[-176.2877255,-43.95221233],[-176.87997532,-45.67095841],[-179.30632779,-45.25249472],[-178.71116991,-43.5311393]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-08-02T21:30:55.635373Z","platform":"landsat-8","proj:bbox":[320085.0,-5058015.0,555615.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":5.59,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017214LGN01","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":37.09178558,"view:sun_elevation":19.47532568,"landsat:cloud_cover_land":26.84,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20170726_02_T1","bbox":[-177.74629251334383,-45.68405497869346,-174.69174444676113,-43.51746502130654],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20170726_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170726_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170726_20201016_02_T1/LC08_L2SR_066091_20170726_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170726_20201016_02_T1/LC08_L2SR_066091_20170726_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170726_20201016_02_T1/LC08_L2SR_066091_20170726_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170726_20201016_02_T1/LC08_L2SR_066091_20170726_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170726_20201016_02_T1/LC08_L2SR_066091_20170726_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170726_20201016_02_T1/LC08_L2SR_066091_20170726_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170726_20201016_02_T1/LC08_L2SR_066091_20170726_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170726_20201016_02_T1/LC08_L2SR_066091_20170726_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170726_20201016_02_T1/LC08_L2SR_066091_20170726_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170726_20201016_02_T1/LC08_L2SR_066091_20170726_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170726_20201016_02_T1/LC08_L2SR_066091_20170726_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170726_20201016_02_T1/LC08_L2SR_066091_20170726_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170726_20201016_02_T1/LC08_L2SR_066091_20170726_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170726_20201016_02_T1/LC08_L2SR_066091_20170726_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170726_20201016_02_T1/LC08_L2SR_066091_20170726_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170726_20201016_02_T1/LC08_L2SR_066091_20170726_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10515596,-43.51922642],[-174.69265417,-43.97216415],[-175.3313499,-45.6828065],[-177.74611561,-45.23153642],[-177.10515596,-43.51922642]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-07-26T21:24:41.759372Z","platform":"landsat-8","proj:bbox":[441885.0,-5059215.0,679815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":24.44,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017207LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":36.36083338,"view:sun_elevation":17.9154833,"landsat:cloud_cover_land":4.28,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20170717_02_T2","bbox":[-179.2975624765747,-45.67338493301502,-176.2744044134506,-43.52845506698498],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20170717_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170717_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170717_20201016_02_T2/LC08_L2SR_067091_20170717_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170717_20201016_02_T2/LC08_L2SR_067091_20170717_20201016_02_T2_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170717_20201016_02_T2/LC08_L2SR_067091_20170717_20201016_02_T2_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170717_20201016_02_T2/LC08_L2SR_067091_20170717_20201016_02_T2_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170717_20201016_02_T2/LC08_L2SR_067091_20170717_20201016_02_T2_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170717_20201016_02_T2/LC08_L2SR_067091_20170717_20201016_02_T2_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170717_20201016_02_T2/LC08_L2SR_067091_20170717_20201016_02_T2_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170717_20201016_02_T2/LC08_L2SR_067091_20170717_20201016_02_T2_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170717_20201016_02_T2/LC08_L2SR_067091_20170717_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170717_20201016_02_T2/LC08_L2SR_067091_20170717_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170717_20201016_02_T2/LC08_L2SR_067091_20170717_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170717_20201016_02_T2/LC08_L2SR_067091_20170717_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170717_20201016_02_T2/LC08_L2SR_067091_20170717_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170717_20201016_02_T2/LC08_L2SR_067091_20170717_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170717_20201016_02_T2/LC08_L2SR_067091_20170717_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320985.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170717_20201016_02_T2/LC08_L2SR_067091_20170717_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70153835,-43.53112262],[-176.27827472,-43.95232124],[-176.8708643,-45.67078337],[-179.29703417,-45.25218836],[-178.70153835,-43.53112262]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-07-17T21:30:47.954350Z","platform":"landsat-8","proj:bbox":[320985.0,-5058015.0,556515.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":43.93,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017198LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":35.46099162,"view:sun_elevation":16.32704147,"landsat:cloud_cover_land":65.32,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20170710_02_T1","bbox":[-177.74243251302403,-45.68407497875314,-174.68404444704285,-43.51731502124686],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20170710_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170710_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170710_20201016_02_T1/LC08_L2SR_066091_20170710_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170710_20201016_02_T1/LC08_L2SR_066091_20170710_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170710_20201016_02_T1/LC08_L2SR_066091_20170710_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170710_20201016_02_T1/LC08_L2SR_066091_20170710_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170710_20201016_02_T1/LC08_L2SR_066091_20170710_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170710_20201016_02_T1/LC08_L2SR_066091_20170710_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170710_20201016_02_T1/LC08_L2SR_066091_20170710_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170710_20201016_02_T1/LC08_L2SR_066091_20170710_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170710_20201016_02_T1/LC08_L2SR_066091_20170710_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170710_20201016_02_T1/LC08_L2SR_066091_20170710_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170710_20201016_02_T1/LC08_L2SR_066091_20170710_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170710_20201016_02_T1/LC08_L2SR_066091_20170710_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170710_20201016_02_T1/LC08_L2SR_066091_20170710_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170710_20201016_02_T1/LC08_L2SR_066091_20170710_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170710_20201016_02_T1/LC08_L2SR_066091_20170710_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170710_20201016_02_T1/LC08_L2SR_066091_20170710_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.09958678,-43.51888476],[-174.68743995,-43.97202617],[-175.32643379,-45.68279198],[-177.74084721,-45.23129987],[-177.09958678,-43.51888476]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-07-10T21:24:34.455526Z","platform":"landsat-8","proj:bbox":[442185.0,-5059215.0,680415.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":15.24,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017191LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":34.81578839,"view:sun_elevation":15.43309241,"landsat:cloud_cover_land":19.74,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20170701_02_T2","bbox":[-179.30910247600508,-45.673454932467514,-176.28595440563038,-43.53093506753248],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20170701_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170701_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170701_20201016_02_T2/LC08_L2SR_067091_20170701_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170701_20201016_02_T2/LC08_L2SR_067091_20170701_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170701_20201016_02_T2/LC08_L2SR_067091_20170701_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170701_20201016_02_T2/LC08_L2SR_067091_20170701_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170701_20201016_02_T2/LC08_L2SR_067091_20170701_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170701_20201016_02_T2/LC08_L2SR_067091_20170701_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170701_20201016_02_T2/LC08_L2SR_067091_20170701_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170701_20201016_02_T2/LC08_L2SR_067091_20170701_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170701_20201016_02_T2/LC08_L2SR_067091_20170701_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170701_20201016_02_T2/LC08_L2SR_067091_20170701_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170701_20201016_02_T2/LC08_L2SR_067091_20170701_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170701_20201016_02_T2/LC08_L2SR_067091_20170701_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170701_20201016_02_T2/LC08_L2SR_067091_20170701_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170701_20201016_02_T2/LC08_L2SR_067091_20170701_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170701_20201016_02_T2/LC08_L2SR_067091_20170701_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170701_20201016_02_T2/LC08_L2SR_067091_20170701_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71013819,-43.53110839],[-176.28721354,-43.95216447],[-176.87957051,-45.67100465],[-179.30541508,-45.25255402],[-178.71013819,-43.53110839]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-07-01T21:30:43.878273Z","platform":"landsat-8","proj:bbox":[320085.0,-5058015.0,555615.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.69,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017182LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":34.09448849,"view:sun_elevation":14.74324092,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20170624_02_T2","bbox":[-177.7578425137423,-45.68397497852859,-174.69943444644684,-43.51760502147141],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20170624_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170624_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170624_20201016_02_T2/LC08_L2SR_066091_20170624_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170624_20201016_02_T2/LC08_L2SR_066091_20170624_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170624_20201016_02_T2/LC08_L2SR_066091_20170624_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170624_20201016_02_T2/LC08_L2SR_066091_20170624_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170624_20201016_02_T2/LC08_L2SR_066091_20170624_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170624_20201016_02_T2/LC08_L2SR_066091_20170624_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170624_20201016_02_T2/LC08_L2SR_066091_20170624_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170624_20201016_02_T2/LC08_L2SR_066091_20170624_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170624_20201016_02_T2/LC08_L2SR_066091_20170624_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170624_20201016_02_T2/LC08_L2SR_066091_20170624_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170624_20201016_02_T2/LC08_L2SR_066091_20170624_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170624_20201016_02_T2/LC08_L2SR_066091_20170624_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170624_20201016_02_T2/LC08_L2SR_066091_20170624_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170624_20201016_02_T2/LC08_L2SR_066091_20170624_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170624_20201016_02_T2/LC08_L2SR_066091_20170624_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170624_20201016_02_T2/LC08_L2SR_066091_20170624_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.11442648,-43.51917491],[-174.70243394,-43.97192711],[-175.34105746,-45.68245411],[-177.75532516,-45.23137379],[-177.11442648,-43.51917491]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-06-24T21:24:31.518039Z","platform":"landsat-8","proj:bbox":[440985.0,-5059215.0,679215.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":84.76,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017175LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":33.64519751,"view:sun_elevation":14.56819915,"landsat:cloud_cover_land":89.3,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20170615_02_T1","bbox":[-179.3167924756518,-45.67350493216528,-176.29366441421348,-43.52809506783472],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20170615_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170615_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170615_20201016_02_T1/LC08_L2SR_067091_20170615_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170615_20201016_02_T1/LC08_L2SR_067091_20170615_20201016_02_T1_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170615_20201016_02_T1/LC08_L2SR_067091_20170615_20201016_02_T1_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170615_20201016_02_T1/LC08_L2SR_067091_20170615_20201016_02_T1_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170615_20201016_02_T1/LC08_L2SR_067091_20170615_20201016_02_T1_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170615_20201016_02_T1/LC08_L2SR_067091_20170615_20201016_02_T1_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170615_20201016_02_T1/LC08_L2SR_067091_20170615_20201016_02_T1_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170615_20201016_02_T1/LC08_L2SR_067091_20170615_20201016_02_T1_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170615_20201016_02_T1/LC08_L2SR_067091_20170615_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170615_20201016_02_T1/LC08_L2SR_067091_20170615_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170615_20201016_02_T1/LC08_L2SR_067091_20170615_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170615_20201016_02_T1/LC08_L2SR_067091_20170615_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170615_20201016_02_T1/LC08_L2SR_067091_20170615_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170615_20201016_02_T1/LC08_L2SR_067091_20170615_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170615_20201016_02_T1/LC08_L2SR_067091_20170615_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170615_20201016_02_T1/LC08_L2SR_067091_20170615_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71939333,-43.53077235],[-176.29657268,-43.95165869],[-176.88876377,-45.67070397],[-179.31448992,-45.25243135],[-178.71939333,-43.53077235]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-06-15T21:30:39.589040Z","platform":"landsat-8","proj:bbox":[319485.0,-5058015.0,555015.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":10.98,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017166LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":33.25933391,"view:sun_elevation":14.79873131,"landsat:cloud_cover_land":23.54,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20170608_02_T2","bbox":[-177.7616925140514,-45.68394497847167,-174.70713444615953,-43.51775502152833],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20170608_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170608_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170608_20201016_02_T2/LC08_L2SR_066091_20170608_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170608_20201016_02_T2/LC08_L2SR_066091_20170608_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170608_20201016_02_T2/LC08_L2SR_066091_20170608_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170608_20201016_02_T2/LC08_L2SR_066091_20170608_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170608_20201016_02_T2/LC08_L2SR_066091_20170608_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170608_20201016_02_T2/LC08_L2SR_066091_20170608_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170608_20201016_02_T2/LC08_L2SR_066091_20170608_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170608_20201016_02_T2/LC08_L2SR_066091_20170608_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170608_20201016_02_T2/LC08_L2SR_066091_20170608_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170608_20201016_02_T2/LC08_L2SR_066091_20170608_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170608_20201016_02_T2/LC08_L2SR_066091_20170608_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170608_20201016_02_T2/LC08_L2SR_066091_20170608_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170608_20201016_02_T2/LC08_L2SR_066091_20170608_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170608_20201016_02_T2/LC08_L2SR_066091_20170608_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170608_20201016_02_T2/LC08_L2SR_066091_20170608_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170608_20201016_02_T2/LC08_L2SR_066091_20170608_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.12031426,-43.51952623],[-174.7083759,-43.97214557],[-175.34690664,-45.68256178],[-177.76111443,-45.23161842],[-177.12031426,-43.51952623]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-06-08T21:24:26.086243Z","platform":"landsat-8","proj:bbox":[440685.0,-5059215.0,678615.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":47.41,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017159LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":33.14668119,"view:sun_elevation":15.31554054,"landsat:cloud_cover_land":55.73,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20170530_02_T2","bbox":[-179.3167924756518,-45.673504932128836,-176.29366440592304,-43.53079506787116],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20170530_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170530_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170530_20201016_02_T2/LC08_L2SR_067091_20170530_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170530_20201016_02_T2/LC08_L2SR_067091_20170530_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170530_20201016_02_T2/LC08_L2SR_067091_20170530_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170530_20201016_02_T2/LC08_L2SR_067091_20170530_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170530_20201016_02_T2/LC08_L2SR_067091_20170530_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170530_20201016_02_T2/LC08_L2SR_067091_20170530_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170530_20201016_02_T2/LC08_L2SR_067091_20170530_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170530_20201016_02_T2/LC08_L2SR_067091_20170530_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170530_20201016_02_T2/LC08_L2SR_067091_20170530_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170530_20201016_02_T2/LC08_L2SR_067091_20170530_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170530_20201016_02_T2/LC08_L2SR_067091_20170530_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170530_20201016_02_T2/LC08_L2SR_067091_20170530_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170530_20201016_02_T2/LC08_L2SR_067091_20170530_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170530_20201016_02_T2/LC08_L2SR_067091_20170530_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170530_20201016_02_T2/LC08_L2SR_067091_20170530_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,319485.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170530_20201016_02_T2/LC08_L2SR_067091_20170530_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71948406,-43.53117105],[-176.2966158,-43.95210366],[-176.88880929,-45.67116416],[-179.31458146,-45.25284527],[-178.71948406,-43.53117105]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-05-30T21:30:32.692799Z","platform":"landsat-8","proj:bbox":[319485.0,-5058015.0,555015.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":73.12,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017150LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":33.27305626,"view:sun_elevation":16.38749102,"landsat:cloud_cover_land":61.25,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20170523_02_T1","bbox":[-177.7578425138709,-45.68397497852859,-174.70328444632852,-43.517675021471405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20170523_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170523_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170523_20201016_02_T1/LC08_L2SR_066091_20170523_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170523_20201016_02_T1/LC08_L2SR_066091_20170523_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170523_20201016_02_T1/LC08_L2SR_066091_20170523_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170523_20201016_02_T1/LC08_L2SR_066091_20170523_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170523_20201016_02_T1/LC08_L2SR_066091_20170523_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170523_20201016_02_T1/LC08_L2SR_066091_20170523_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170523_20201016_02_T1/LC08_L2SR_066091_20170523_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170523_20201016_02_T1/LC08_L2SR_066091_20170523_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170523_20201016_02_T1/LC08_L2SR_066091_20170523_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170523_20201016_02_T1/LC08_L2SR_066091_20170523_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170523_20201016_02_T1/LC08_L2SR_066091_20170523_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170523_20201016_02_T1/LC08_L2SR_066091_20170523_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170523_20201016_02_T1/LC08_L2SR_066091_20170523_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170523_20201016_02_T1/LC08_L2SR_066091_20170523_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170523_20201016_02_T1/LC08_L2SR_066091_20170523_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,440985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170523_20201016_02_T1/LC08_L2SR_066091_20170523_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.11625252,-43.51898402],[-174.70414007,-43.97176872],[-175.34285432,-45.68221498],[-177.75721996,-45.23110577],[-177.11625252,-43.51898402]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-05-23T21:24:17.919415Z","platform":"landsat-8","proj:bbox":[440985.0,-5059215.0,678915.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":29.19,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017143LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":33.60931516,"view:sun_elevation":17.51131069,"landsat:cloud_cover_land":4.52,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20170514_02_T2","bbox":[-179.3052524761981,-45.673434932678695,-176.28210441376436,-43.528305067321305],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20170514_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170514_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170514_20201016_02_T2/LC08_L2SR_067091_20170514_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170514_20201016_02_T2/LC08_L2SR_067091_20170514_20201016_02_T2_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170514_20201016_02_T2/LC08_L2SR_067091_20170514_20201016_02_T2_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170514_20201016_02_T2/LC08_L2SR_067091_20170514_20201016_02_T2_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170514_20201016_02_T2/LC08_L2SR_067091_20170514_20201016_02_T2_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170514_20201016_02_T2/LC08_L2SR_067091_20170514_20201016_02_T2_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170514_20201016_02_T2/LC08_L2SR_067091_20170514_20201016_02_T2_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170514_20201016_02_T2/LC08_L2SR_067091_20170514_20201016_02_T2_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170514_20201016_02_T2/LC08_L2SR_067091_20170514_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170514_20201016_02_T2/LC08_L2SR_067091_20170514_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170514_20201016_02_T2/LC08_L2SR_067091_20170514_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170514_20201016_02_T2/LC08_L2SR_067091_20170514_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170514_20201016_02_T2/LC08_L2SR_067091_20170514_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170514_20201016_02_T2/LC08_L2SR_067091_20170514_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170514_20201016_02_T2/LC08_L2SR_067091_20170514_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170514_20201016_02_T2/LC08_L2SR_067091_20170514_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70896125,-43.53101664],[-176.28586044,-43.9522016],[-176.87842034,-45.67090457],[-179.30441176,-45.25232737],[-178.70896125,-43.53101664]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-05-14T21:30:22.726177Z","platform":"landsat-8","proj:bbox":[320385.0,-5058015.0,555915.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":55.98,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017134LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":34.37077484,"view:sun_elevation":19.27712529,"landsat:cloud_cover_land":97.42,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20170507_02_T2","bbox":[-177.74243251302403,-45.68407497875314,-174.68404444704285,-43.51731502124686],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20170507_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170507_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170507_20201016_02_T2/LC08_L2SR_066091_20170507_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170507_20201016_02_T2/LC08_L2SR_066091_20170507_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170507_20201016_02_T2/LC08_L2SR_066091_20170507_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170507_20201016_02_T2/LC08_L2SR_066091_20170507_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170507_20201016_02_T2/LC08_L2SR_066091_20170507_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170507_20201016_02_T2/LC08_L2SR_066091_20170507_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170507_20201016_02_T2/LC08_L2SR_066091_20170507_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170507_20201016_02_T2/LC08_L2SR_066091_20170507_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170507_20201016_02_T2/LC08_L2SR_066091_20170507_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170507_20201016_02_T2/LC08_L2SR_066091_20170507_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170507_20201016_02_T2/LC08_L2SR_066091_20170507_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170507_20201016_02_T2/LC08_L2SR_066091_20170507_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170507_20201016_02_T2/LC08_L2SR_066091_20170507_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170507_20201016_02_T2/LC08_L2SR_066091_20170507_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170507_20201016_02_T2/LC08_L2SR_066091_20170507_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170507_20201016_02_T2/LC08_L2SR_066091_20170507_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10020681,-43.51892491],[-174.68792359,-43.97225719],[-175.32710094,-45.68295297],[-177.74163378,-45.23128051],[-177.10020681,-43.51892491]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-05-07T21:24:06.614707Z","platform":"landsat-8","proj:bbox":[442185.0,-5059215.0,680415.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":38.0,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017127LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":35.23660352,"view:sun_elevation":20.86521067,"landsat:cloud_cover_land":59.42,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20170428_02_T2","bbox":[-179.30910247600508,-45.673454932467514,-176.28595440563038,-43.53093506753248],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20170428_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170428_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170428_20201016_02_T2/LC08_L2SR_067091_20170428_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170428_20201016_02_T2/LC08_L2SR_067091_20170428_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170428_20201016_02_T2/LC08_L2SR_067091_20170428_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170428_20201016_02_T2/LC08_L2SR_067091_20170428_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170428_20201016_02_T2/LC08_L2SR_067091_20170428_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170428_20201016_02_T2/LC08_L2SR_067091_20170428_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170428_20201016_02_T2/LC08_L2SR_067091_20170428_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170428_20201016_02_T2/LC08_L2SR_067091_20170428_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170428_20201016_02_T2/LC08_L2SR_067091_20170428_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170428_20201016_02_T2/LC08_L2SR_067091_20170428_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170428_20201016_02_T2/LC08_L2SR_067091_20170428_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170428_20201016_02_T2/LC08_L2SR_067091_20170428_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170428_20201016_02_T2/LC08_L2SR_067091_20170428_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170428_20201016_02_T2/LC08_L2SR_067091_20170428_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170428_20201016_02_T2/LC08_L2SR_067091_20170428_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320085.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170428_20201016_02_T2/LC08_L2SR_067091_20170428_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.71119838,-43.53102397],[-176.28812047,-43.95223988],[-176.88067087,-45.67101336],[-179.30665496,-45.25240875],[-178.71119838,-43.53102397]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-04-28T21:30:15.177132Z","platform":"landsat-8","proj:bbox":[320085.0,-5058015.0,555615.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":53.68,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017118LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":36.69393961,"view:sun_elevation":23.13151945,"landsat:cloud_cover_land":84.44,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20170421_02_T1","bbox":[-177.71932251189406,-45.68422497907745,-174.6609644479437,-43.51688502092255],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20170421_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170421_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170421_20201016_02_T1/LC08_L2SR_066091_20170421_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170421_20201016_02_T1/LC08_L2SR_066091_20170421_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170421_20201016_02_T1/LC08_L2SR_066091_20170421_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170421_20201016_02_T1/LC08_L2SR_066091_20170421_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170421_20201016_02_T1/LC08_L2SR_066091_20170421_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170421_20201016_02_T1/LC08_L2SR_066091_20170421_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170421_20201016_02_T1/LC08_L2SR_066091_20170421_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170421_20201016_02_T1/LC08_L2SR_066091_20170421_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170421_20201016_02_T1/LC08_L2SR_066091_20170421_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170421_20201016_02_T1/LC08_L2SR_066091_20170421_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170421_20201016_02_T1/LC08_L2SR_066091_20170421_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170421_20201016_02_T1/LC08_L2SR_066091_20170421_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170421_20201016_02_T1/LC08_L2SR_066091_20170421_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170421_20201016_02_T1/LC08_L2SR_066091_20170421_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170421_20201016_02_T1/LC08_L2SR_066091_20170421_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170421_20201016_02_T1/LC08_L2SR_066091_20170421_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.07570087,-43.51889546],[-174.66333776,-43.97110343],[-175.30089092,-45.68250186],[-177.71549727,-45.23193503],[-177.07570087,-43.51889546]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-04-21T21:24:09.215714Z","platform":"landsat-8","proj:bbox":[443985.0,-5059215.0,682215.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":27.28,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017111LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":38.0274333,"view:sun_elevation":25.06452312,"landsat:cloud_cover_land":68.15,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20170412_02_T2","bbox":[-179.2743724683879,-45.670534934033796,-176.25133440427447,-43.531585065966205],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20170412_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170412_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170412_20201016_02_T2/LC08_L2SR_067091_20170412_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170412_20201016_02_T2/LC08_L2SR_067091_20170412_20201016_02_T2_SR_B1.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170412_20201016_02_T2/LC08_L2SR_067091_20170412_20201016_02_T2_SR_B2.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170412_20201016_02_T2/LC08_L2SR_067091_20170412_20201016_02_T2_SR_B3.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170412_20201016_02_T2/LC08_L2SR_067091_20170412_20201016_02_T2_SR_B4.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170412_20201016_02_T2/LC08_L2SR_067091_20170412_20201016_02_T2_SR_B5.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170412_20201016_02_T2/LC08_L2SR_067091_20170412_20201016_02_T2_SR_B6.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170412_20201016_02_T2/LC08_L2SR_067091_20170412_20201016_02_T2_SR_B7.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170412_20201016_02_T2/LC08_L2SR_067091_20170412_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170412_20201016_02_T2/LC08_L2SR_067091_20170412_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170412_20201016_02_T2/LC08_L2SR_067091_20170412_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170412_20201016_02_T2/LC08_L2SR_067091_20170412_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170412_20201016_02_T2/LC08_L2SR_067091_20170412_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170412_20201016_02_T2/LC08_L2SR_067091_20170412_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170412_20201016_02_T2/LC08_L2SR_067091_20170412_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7851,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170412_20201016_02_T2/LC08_L2SR_067091_20170412_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.6773231,-43.53184648],[-176.25416237,-43.95190692],[-176.84537209,-45.67015904],[-179.27141991,-45.25268789],[-178.6773231,-43.53184648]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-04-12T21:30:25.713998Z","platform":"landsat-8","proj:bbox":[322785.0,-5057715.0,558315.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":98.24,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017102LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":40.10939697,"view:sun_elevation":27.65026731,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20170405_02_T2","bbox":[-177.71547251172643,-45.68424497913123,-174.65711444811706,-43.516805020868766],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20170405_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170405_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170405_20201016_02_T2/LC08_L2SR_066091_20170405_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170405_20201016_02_T2/LC08_L2SR_066091_20170405_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170405_20201016_02_T2/LC08_L2SR_066091_20170405_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170405_20201016_02_T2/LC08_L2SR_066091_20170405_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170405_20201016_02_T2/LC08_L2SR_066091_20170405_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170405_20201016_02_T2/LC08_L2SR_066091_20170405_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170405_20201016_02_T2/LC08_L2SR_066091_20170405_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170405_20201016_02_T2/LC08_L2SR_066091_20170405_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170405_20201016_02_T2/LC08_L2SR_066091_20170405_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170405_20201016_02_T2/LC08_L2SR_066091_20170405_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170405_20201016_02_T2/LC08_L2SR_066091_20170405_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170405_20201016_02_T2/LC08_L2SR_066091_20170405_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170405_20201016_02_T2/LC08_L2SR_066091_20170405_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170405_20201016_02_T2/LC08_L2SR_066091_20170405_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170405_20201016_02_T2/LC08_L2SR_066091_20170405_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,444285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170405_20201016_02_T2/LC08_L2SR_066091_20170405_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.07356596,-43.51934128],[-174.66121694,-43.9716926],[-175.29889606,-45.68314638],[-177.71349448,-45.23244036],[-177.07356596,-43.51934128]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-04-05T21:24:18.589368Z","platform":"landsat-8","proj:bbox":[444285.0,-5059215.0,682515.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017095LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":41.96303909,"view:sun_elevation":29.72606263,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20170327_02_T2","bbox":[-179.26667246873143,-45.67048493441265,-176.24362441226597,-43.52902506558735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20170327_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170327_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170327_20201016_02_T2/LC08_L2SR_067091_20170327_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170327_20201016_02_T2/LC08_L2SR_067091_20170327_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170327_20201016_02_T2/LC08_L2SR_067091_20170327_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170327_20201016_02_T2/LC08_L2SR_067091_20170327_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170327_20201016_02_T2/LC08_L2SR_067091_20170327_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170327_20201016_02_T2/LC08_L2SR_067091_20170327_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170327_20201016_02_T2/LC08_L2SR_067091_20170327_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170327_20201016_02_T2/LC08_L2SR_067091_20170327_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170327_20201016_02_T2/LC08_L2SR_067091_20170327_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170327_20201016_02_T2/LC08_L2SR_067091_20170327_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170327_20201016_02_T2/LC08_L2SR_067091_20170327_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170327_20201016_02_T2/LC08_L2SR_067091_20170327_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170327_20201016_02_T2/LC08_L2SR_067091_20170327_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170327_20201016_02_T2/LC08_L2SR_067091_20170327_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170327_20201016_02_T2/LC08_L2SR_067091_20170327_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,323385.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170327_20201016_02_T2/LC08_L2SR_067091_20170327_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.66992966,-43.53163986],[-176.24686285,-43.95191094],[-176.83845727,-45.66992287],[-179.26441205,-45.25223521],[-178.66992966,-43.53163986]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-03-27T21:30:33.161885Z","platform":"landsat-8","proj:bbox":[323385.0,-5057715.0,558915.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":85.63,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017086LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":44.59631441,"view:sun_elevation":32.43388692,"landsat:cloud_cover_land":99.64,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20170320_02_T1","bbox":[-177.70776251150116,-45.684294979237855,-174.65326444829873,-43.51673502076214],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20170320_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170320_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170320_20201016_02_T1/LC08_L2SR_066091_20170320_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170320_20201016_02_T1/LC08_L2SR_066091_20170320_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170320_20201016_02_T1/LC08_L2SR_066091_20170320_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170320_20201016_02_T1/LC08_L2SR_066091_20170320_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170320_20201016_02_T1/LC08_L2SR_066091_20170320_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170320_20201016_02_T1/LC08_L2SR_066091_20170320_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170320_20201016_02_T1/LC08_L2SR_066091_20170320_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170320_20201016_02_T1/LC08_L2SR_066091_20170320_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170320_20201016_02_T1/LC08_L2SR_066091_20170320_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170320_20201016_02_T1/LC08_L2SR_066091_20170320_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170320_20201016_02_T1/LC08_L2SR_066091_20170320_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170320_20201016_02_T1/LC08_L2SR_066091_20170320_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170320_20201016_02_T1/LC08_L2SR_066091_20170320_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170320_20201016_02_T1/LC08_L2SR_066091_20170320_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170320_20201016_02_T1/LC08_L2SR_066091_20170320_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,444885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170320_20201016_02_T1/LC08_L2SR_066091_20170320_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.06609712,-43.519151],[-174.65401188,-43.97169066],[-175.2920891,-45.68321909],[-177.7064214,-45.23231877],[-177.06609712,-43.519151]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-03-20T21:24:25.690470Z","platform":"landsat-8","proj:bbox":[444885.0,-5059215.0,682815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":56.74,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017079LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":46.80523132,"view:sun_elevation":34.54465364,"landsat:cloud_cover_land":41.54,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20170311_02_T2","bbox":[-179.27052246854282,-45.67053493424057,-176.25133441243904,-43.528955065759426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20170311_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170311_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170311_20201016_02_T2/LC08_L2SR_067091_20170311_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170311_20201016_02_T2/LC08_L2SR_067091_20170311_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170311_20201016_02_T2/LC08_L2SR_067091_20170311_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170311_20201016_02_T2/LC08_L2SR_067091_20170311_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170311_20201016_02_T2/LC08_L2SR_067091_20170311_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170311_20201016_02_T2/LC08_L2SR_067091_20170311_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170311_20201016_02_T2/LC08_L2SR_067091_20170311_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170311_20201016_02_T2/LC08_L2SR_067091_20170311_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170311_20201016_02_T2/LC08_L2SR_067091_20170311_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170311_20201016_02_T2/LC08_L2SR_067091_20170311_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170311_20201016_02_T2/LC08_L2SR_067091_20170311_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170311_20201016_02_T2/LC08_L2SR_067091_20170311_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170311_20201016_02_T2/LC08_L2SR_067091_20170311_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170311_20201016_02_T2/LC08_L2SR_067091_20170311_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170311_20201016_02_T2/LC08_L2SR_067091_20170311_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,323085.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170311_20201016_02_T2/LC08_L2SR_067091_20170311_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.67487846,-43.53161178],[-176.25203587,-43.95187702],[-176.84366001,-45.6700706],[-179.2693921,-45.25238293],[-178.67487846,-43.53161178]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-03-11T21:30:42.483187Z","platform":"landsat-8","proj:bbox":[323085.0,-5057715.0,558315.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":91.57,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017070LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":49.78721235,"view:sun_elevation":37.22192322,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20170304_02_T1","bbox":[-177.71932251189406,-45.68422497907745,-174.6609644479437,-43.51688502092255],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20170304_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170304_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170304_20201016_02_T1/LC08_L2SR_066091_20170304_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170304_20201016_02_T1/LC08_L2SR_066091_20170304_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170304_20201016_02_T1/LC08_L2SR_066091_20170304_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170304_20201016_02_T1/LC08_L2SR_066091_20170304_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170304_20201016_02_T1/LC08_L2SR_066091_20170304_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170304_20201016_02_T1/LC08_L2SR_066091_20170304_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170304_20201016_02_T1/LC08_L2SR_066091_20170304_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170304_20201016_02_T1/LC08_L2SR_066091_20170304_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170304_20201016_02_T1/LC08_L2SR_066091_20170304_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170304_20201016_02_T1/LC08_L2SR_066091_20170304_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170304_20201016_02_T1/LC08_L2SR_066091_20170304_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170304_20201016_02_T1/LC08_L2SR_066091_20170304_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170304_20201016_02_T1/LC08_L2SR_066091_20170304_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170304_20201016_02_T1/LC08_L2SR_066091_20170304_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170304_20201016_02_T1/LC08_L2SR_066091_20170304_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170304_20201016_02_T1/LC08_L2SR_066091_20170304_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.07579827,-43.51896726],[-174.66376025,-43.97140258],[-175.30165995,-45.68282751],[-177.71595466,-45.23203799],[-177.07579827,-43.51896726]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-03-04T21:24:35.643518Z","platform":"landsat-8","proj:bbox":[443985.0,-5059215.0,682215.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":34.51,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017063LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":52.15983092,"view:sun_elevation":39.26369392,"landsat:cloud_cover_land":3.26,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20170223_02_T2","bbox":[-179.27437246835348,-45.67055493406782,-176.255184412578,-43.52888506593218],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20170223_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170223_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170223_20201016_02_T2/LC08_L2SR_067091_20170223_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170223_20201016_02_T2/LC08_L2SR_067091_20170223_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170223_20201016_02_T2/LC08_L2SR_067091_20170223_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170223_20201016_02_T2/LC08_L2SR_067091_20170223_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170223_20201016_02_T2/LC08_L2SR_067091_20170223_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170223_20201016_02_T2/LC08_L2SR_067091_20170223_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170223_20201016_02_T2/LC08_L2SR_067091_20170223_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170223_20201016_02_T2/LC08_L2SR_067091_20170223_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170223_20201016_02_T2/LC08_L2SR_067091_20170223_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170223_20201016_02_T2/LC08_L2SR_067091_20170223_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170223_20201016_02_T2/LC08_L2SR_067091_20170223_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170223_20201016_02_T2/LC08_L2SR_067091_20170223_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170223_20201016_02_T2/LC08_L2SR_067091_20170223_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170223_20201016_02_T2/LC08_L2SR_067091_20170223_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170223_20201016_02_T2/LC08_L2SR_067091_20170223_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170223_20201016_02_T2/LC08_L2SR_067091_20170223_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.67977684,-43.53156796],[-176.25695543,-43.95188319],[-176.84855324,-45.67019369],[-179.27426208,-45.25247288],[-178.67977684,-43.53156796]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-02-23T21:30:50.505278Z","platform":"landsat-8","proj:bbox":[322785.0,-5057715.0,558015.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.97,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017054LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":55.18194315,"view:sun_elevation":41.80908981,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20170216_02_T1","bbox":[-177.71932251189406,-45.68422497907745,-174.6609644479437,-43.51688502092255],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20170216_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170216_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170216_20201016_02_T1/LC08_L2SR_066091_20170216_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170216_20201016_02_T1/LC08_L2SR_066091_20170216_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170216_20201016_02_T1/LC08_L2SR_066091_20170216_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170216_20201016_02_T1/LC08_L2SR_066091_20170216_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170216_20201016_02_T1/LC08_L2SR_066091_20170216_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170216_20201016_02_T1/LC08_L2SR_066091_20170216_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170216_20201016_02_T1/LC08_L2SR_066091_20170216_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170216_20201016_02_T1/LC08_L2SR_066091_20170216_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170216_20201016_02_T1/LC08_L2SR_066091_20170216_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170216_20201016_02_T1/LC08_L2SR_066091_20170216_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170216_20201016_02_T1/LC08_L2SR_066091_20170216_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170216_20201016_02_T1/LC08_L2SR_066091_20170216_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170216_20201016_02_T1/LC08_L2SR_066091_20170216_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170216_20201016_02_T1/LC08_L2SR_066091_20170216_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170216_20201016_02_T1/LC08_L2SR_066091_20170216_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,443985.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170216_20201016_02_T1/LC08_L2SR_066091_20170216_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.07555961,-43.51912203],[-174.6635458,-43.97165017],[-175.30162994,-45.68299781],[-177.71588288,-45.23211599],[-177.07555961,-43.51912203]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-02-16T21:24:42.013837Z","platform":"landsat-8","proj:bbox":[443985.0,-5059215.0,682215.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":27.38,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017047LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":57.44189334,"view:sun_elevation":43.71442896,"landsat:cloud_cover_land":16.89,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20170207_02_T1","bbox":[-179.27447247764155,-45.67323493400851,-176.25129440427446,-43.531585065991486],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20170207_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170207_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170207_20201016_02_T1/LC08_L2SR_067091_20170207_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170207_20201016_02_T1/LC08_L2SR_067091_20170207_20201016_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170207_20201016_02_T1/LC08_L2SR_067091_20170207_20201016_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170207_20201016_02_T1/LC08_L2SR_067091_20170207_20201016_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170207_20201016_02_T1/LC08_L2SR_067091_20170207_20201016_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170207_20201016_02_T1/LC08_L2SR_067091_20170207_20201016_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170207_20201016_02_T1/LC08_L2SR_067091_20170207_20201016_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170207_20201016_02_T1/LC08_L2SR_067091_20170207_20201016_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170207_20201016_02_T1/LC08_L2SR_067091_20170207_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170207_20201016_02_T1/LC08_L2SR_067091_20170207_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170207_20201016_02_T1/LC08_L2SR_067091_20170207_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170207_20201016_02_T1/LC08_L2SR_067091_20170207_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170207_20201016_02_T1/LC08_L2SR_067091_20170207_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170207_20201016_02_T1/LC08_L2SR_067091_20170207_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170207_20201016_02_T1/LC08_L2SR_067091_20170207_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,322785.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170207_20201016_02_T1/LC08_L2SR_067091_20170207_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.67713954,-43.53179385],[-176.25442055,-43.95224292],[-176.84636228,-45.67051151],[-179.27197455,-45.25264615],[-178.67713954,-43.53179385]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-02-07T21:30:55.673569Z","platform":"landsat-8","proj:bbox":[322785.0,-5058015.0,558315.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":49.0,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017038LGN00","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":60.12070104,"view:sun_elevation":46.03934394,"landsat:cloud_cover_land":74.77,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20170131_02_T1","bbox":[-177.72317251223498,-45.68419497902752,-174.66865444768226,-43.51702502097248],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20170131_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170131_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170131_20201016_02_T1/LC08_L2SR_066091_20170131_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170131_20201016_02_T1/LC08_L2SR_066091_20170131_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170131_20201016_02_T1/LC08_L2SR_066091_20170131_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170131_20201016_02_T1/LC08_L2SR_066091_20170131_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170131_20201016_02_T1/LC08_L2SR_066091_20170131_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170131_20201016_02_T1/LC08_L2SR_066091_20170131_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170131_20201016_02_T1/LC08_L2SR_066091_20170131_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170131_20201016_02_T1/LC08_L2SR_066091_20170131_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170131_20201016_02_T1/LC08_L2SR_066091_20170131_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170131_20201016_02_T1/LC08_L2SR_066091_20170131_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170131_20201016_02_T1/LC08_L2SR_066091_20170131_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170131_20201016_02_T1/LC08_L2SR_066091_20170131_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170131_20201016_02_T1/LC08_L2SR_066091_20170131_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170131_20201016_02_T1/LC08_L2SR_066091_20170131_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170131_20201016_02_T1/LC08_L2SR_066091_20170131_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,443685.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170131_20201016_02_T1/LC08_L2SR_066091_20170131_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.08228713,-43.51902871],[-174.67033653,-43.97149518],[-175.30838073,-45.68284925],[-177.72256991,-45.23202205],[-177.08228713,-43.51902871]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-01-31T21:24:48.877326Z","platform":"landsat-8","proj:bbox":[443685.0,-5059215.0,681615.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":42.47,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017031LGN00","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":61.93922232,"view:sun_elevation":47.7456031,"landsat:cloud_cover_land":54.87,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20170122_02_T1","bbox":[-179.28986247692333,-45.67333493332805,-176.26670440487104,-43.53129506667195],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20170122_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170122_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170122_20201016_02_T1/LC08_L2SR_067091_20170122_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170122_20201016_02_T1/LC08_L2SR_067091_20170122_20201016_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170122_20201016_02_T1/LC08_L2SR_067091_20170122_20201016_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170122_20201016_02_T1/LC08_L2SR_067091_20170122_20201016_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170122_20201016_02_T1/LC08_L2SR_067091_20170122_20201016_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170122_20201016_02_T1/LC08_L2SR_067091_20170122_20201016_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170122_20201016_02_T1/LC08_L2SR_067091_20170122_20201016_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170122_20201016_02_T1/LC08_L2SR_067091_20170122_20201016_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170122_20201016_02_T1/LC08_L2SR_067091_20170122_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170122_20201016_02_T1/LC08_L2SR_067091_20170122_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170122_20201016_02_T1/LC08_L2SR_067091_20170122_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170122_20201016_02_T1/LC08_L2SR_067091_20170122_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170122_20201016_02_T1/LC08_L2SR_067091_20170122_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170122_20201016_02_T1/LC08_L2SR_067091_20170122_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170122_20201016_02_T1/LC08_L2SR_067091_20170122_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170122_20201016_02_T1/LC08_L2SR_067091_20170122_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.69241597,-43.53141625],[-176.26947064,-43.95177542],[-176.86109758,-45.67034689],[-179.28692548,-45.25258789],[-178.69241597,-43.53141625]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-01-22T21:31:03.842379Z","platform":"landsat-8","proj:bbox":[321585.0,-5058015.0,557115.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":46.89,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017022LGN01","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":63.81504833,"view:sun_elevation":49.77488789,"landsat:cloud_cover_land":35.14,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20170115_02_T2","bbox":[-177.7347325128043,-45.68412497885985,-174.68020444722004,-43.517245021140155],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20170115_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170115_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170115_20201016_02_T2/LC08_L2SR_066091_20170115_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170115_20201016_02_T2/LC08_L2SR_066091_20170115_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170115_20201016_02_T2/LC08_L2SR_066091_20170115_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170115_20201016_02_T2/LC08_L2SR_066091_20170115_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170115_20201016_02_T2/LC08_L2SR_066091_20170115_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170115_20201016_02_T2/LC08_L2SR_066091_20170115_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170115_20201016_02_T2/LC08_L2SR_066091_20170115_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170115_20201016_02_T2/LC08_L2SR_066091_20170115_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170115_20201016_02_T2/LC08_L2SR_066091_20170115_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170115_20201016_02_T2/LC08_L2SR_066091_20170115_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170115_20201016_02_T2/LC08_L2SR_066091_20170115_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170115_20201016_02_T2/LC08_L2SR_066091_20170115_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170115_20201016_02_T2/LC08_L2SR_066091_20170115_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170115_20201016_02_T2/LC08_L2SR_066091_20170115_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170115_20201016_02_T2/LC08_L2SR_066091_20170115_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442785.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/066/091/LC08_L2SR_066091_20170115_20201016_02_T2/LC08_L2SR_066091_20170115_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.09321814,-43.51946524],[-174.68105708,-43.9717941],[-175.31894383,-45.68289476],[-177.73334816,-45.23221834],[-177.09321814,-43.51946524]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-01-15T21:24:55.547626Z","platform":"landsat-8","proj:bbox":[442785.0,-5059215.0,680715.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":71.11,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912017015LGN01","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":64.836637,"view:sun_elevation":51.20324183,"landsat:cloud_cover_land":98.31,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20170106_02_T2","bbox":[-179.2937124767321,-45.673354933153824,-176.27055440501897,-43.531225066846176],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20170106_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170106_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170106_20201016_02_T2/LC08_L2SR_067091_20170106_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170106_20201016_02_T2/LC08_L2SR_067091_20170106_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170106_20201016_02_T2/LC08_L2SR_067091_20170106_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170106_20201016_02_T2/LC08_L2SR_067091_20170106_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170106_20201016_02_T2/LC08_L2SR_067091_20170106_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170106_20201016_02_T2/LC08_L2SR_067091_20170106_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170106_20201016_02_T2/LC08_L2SR_067091_20170106_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170106_20201016_02_T2/LC08_L2SR_067091_20170106_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170106_20201016_02_T2/LC08_L2SR_067091_20170106_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170106_20201016_02_T2/LC08_L2SR_067091_20170106_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170106_20201016_02_T2/LC08_L2SR_067091_20170106_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170106_20201016_02_T2/LC08_L2SR_067091_20170106_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170106_20201016_02_T2/LC08_L2SR_067091_20170106_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170106_20201016_02_T2/LC08_L2SR_067091_20170106_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170106_20201016_02_T2/LC08_L2SR_067091_20170106_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2017/067/091/LC08_L2SR_067091_20170106_20201016_02_T2/LC08_L2SR_067091_20170106_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.69756577,-43.53144145],[-176.27444156,-43.9518377],[-176.86605688,-45.67041939],[-179.29207195,-45.25263072],[-178.69756577,-43.53144145]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2017-01-06T21:31:08.696425Z","platform":"landsat-8","proj:bbox":[321285.0,-5058015.0,556815.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":36.45,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912017006LGN01","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":65.49029142,"view:sun_elevation":52.798214,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20161230_02_T2","bbox":[-177.7385825128409,-45.68410497880859,-174.68020444719062,-43.517245021191414],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20161230_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161230_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161230_20201016_02_T2/LC08_L2SR_066091_20161230_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161230_20201016_02_T2/LC08_L2SR_066091_20161230_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161230_20201016_02_T2/LC08_L2SR_066091_20161230_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161230_20201016_02_T2/LC08_L2SR_066091_20161230_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161230_20201016_02_T2/LC08_L2SR_066091_20161230_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161230_20201016_02_T2/LC08_L2SR_066091_20161230_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161230_20201016_02_T2/LC08_L2SR_066091_20161230_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161230_20201016_02_T2/LC08_L2SR_066091_20161230_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161230_20201016_02_T2/LC08_L2SR_066091_20161230_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161230_20201016_02_T2/LC08_L2SR_066091_20161230_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161230_20201016_02_T2/LC08_L2SR_066091_20161230_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161230_20201016_02_T2/LC08_L2SR_066091_20161230_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161230_20201016_02_T2/LC08_L2SR_066091_20161230_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161230_20201016_02_T2/LC08_L2SR_066091_20161230_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161230_20201016_02_T2/LC08_L2SR_066091_20161230_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161230_20201016_02_T2/LC08_L2SR_066091_20161230_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.09459344,-43.5191443],[-174.68229978,-43.97160399],[-175.32033795,-45.68256472],[-177.73487725,-45.23176582],[-177.09459344,-43.5191443]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-12-30T21:25:00.000012Z","platform":"landsat-8","proj:bbox":[442485.0,-5059215.0,680715.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":96.42,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912016365LGN01","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":65.42828482,"view:sun_elevation":53.8209638,"landsat:cloud_cover_land":99.19,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20161221_02_T1","bbox":[-179.28975246766979,-45.67063493339981,-176.2667344131544,-43.52859506660019],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20161221_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161221_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161221_20201016_02_T1/LC08_L2SR_067091_20161221_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161221_20201016_02_T1/LC08_L2SR_067091_20161221_20201016_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161221_20201016_02_T1/LC08_L2SR_067091_20161221_20201016_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161221_20201016_02_T1/LC08_L2SR_067091_20161221_20201016_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161221_20201016_02_T1/LC08_L2SR_067091_20161221_20201016_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161221_20201016_02_T1/LC08_L2SR_067091_20161221_20201016_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161221_20201016_02_T1/LC08_L2SR_067091_20161221_20201016_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161221_20201016_02_T1/LC08_L2SR_067091_20161221_20201016_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161221_20201016_02_T1/LC08_L2SR_067091_20161221_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161221_20201016_02_T1/LC08_L2SR_067091_20161221_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161221_20201016_02_T1/LC08_L2SR_067091_20161221_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161221_20201016_02_T1/LC08_L2SR_067091_20161221_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161221_20201016_02_T1/LC08_L2SR_067091_20161221_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161221_20201016_02_T1/LC08_L2SR_067091_20161221_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161221_20201016_02_T1/LC08_L2SR_067091_20161221_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,321585.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161221_20201016_02_T1/LC08_L2SR_067091_20161221_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.69241098,-43.53114506],[-176.26932877,-43.95174067],[-176.86118071,-45.67019588],[-179.28715256,-45.25219927],[-178.69241098,-43.53114506]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-12-21T21:31:11.184656Z","platform":"landsat-8","proj:bbox":[321585.0,-5057715.0,557115.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":52.81,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912016356LGN02","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":64.60029088,"view:sun_elevation":54.78719023,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20161214_02_T1","bbox":[-177.7385825128409,-45.68410497880859,-174.68020444719062,-43.517245021191414],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20161214_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161214_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161214_20201016_02_T1/LC08_L2SR_066091_20161214_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161214_20201016_02_T1/LC08_L2SR_066091_20161214_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161214_20201016_02_T1/LC08_L2SR_066091_20161214_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161214_20201016_02_T1/LC08_L2SR_066091_20161214_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161214_20201016_02_T1/LC08_L2SR_066091_20161214_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161214_20201016_02_T1/LC08_L2SR_066091_20161214_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161214_20201016_02_T1/LC08_L2SR_066091_20161214_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161214_20201016_02_T1/LC08_L2SR_066091_20161214_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161214_20201016_02_T1/LC08_L2SR_066091_20161214_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161214_20201016_02_T1/LC08_L2SR_066091_20161214_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161214_20201016_02_T1/LC08_L2SR_066091_20161214_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161214_20201016_02_T1/LC08_L2SR_066091_20161214_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161214_20201016_02_T1/LC08_L2SR_066091_20161214_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161214_20201016_02_T1/LC08_L2SR_066091_20161214_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161214_20201016_02_T1/LC08_L2SR_066091_20161214_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161214_20201016_02_T1/LC08_L2SR_066091_20161214_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.09618338,-43.5192299],[-174.68399314,-43.97172984],[-175.32211231,-45.68266341],[-177.73655551,-45.23181525],[-177.09618338,-43.5192299]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-12-14T21:25:02.620512Z","platform":"landsat-8","proj:bbox":[442485.0,-5059215.0,680715.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":40.79,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912016349LGN01","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":63.40589977,"view:sun_elevation":55.2196035,"landsat:cloud_cover_land":77.47,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20161205_02_T1","bbox":[-179.30129246712895,-45.67070493288921,-176.27828441359932,-43.52838506711079],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20161205_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161205_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161205_20201016_02_T1/LC08_L2SR_067091_20161205_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161205_20201016_02_T1/LC08_L2SR_067091_20161205_20201016_02_T1_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161205_20201016_02_T1/LC08_L2SR_067091_20161205_20201016_02_T1_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161205_20201016_02_T1/LC08_L2SR_067091_20161205_20201016_02_T1_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161205_20201016_02_T1/LC08_L2SR_067091_20161205_20201016_02_T1_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161205_20201016_02_T1/LC08_L2SR_067091_20161205_20201016_02_T1_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161205_20201016_02_T1/LC08_L2SR_067091_20161205_20201016_02_T1_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161205_20201016_02_T1/LC08_L2SR_067091_20161205_20201016_02_T1_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161205_20201016_02_T1/LC08_L2SR_067091_20161205_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161205_20201016_02_T1/LC08_L2SR_067091_20161205_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161205_20201016_02_T1/LC08_L2SR_067091_20161205_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161205_20201016_02_T1/LC08_L2SR_067091_20161205_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161205_20201016_02_T1/LC08_L2SR_067091_20161205_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161205_20201016_02_T1/LC08_L2SR_067091_20161205_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161205_20201016_02_T1/LC08_L2SR_067091_20161205_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161205_20201016_02_T1/LC08_L2SR_067091_20161205_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70482021,-43.53107519],[-176.28184814,-43.95149043],[-176.87343751,-45.67025262],[-179.29930631,-45.25244429],[-178.70482021,-43.53107519]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-12-05T21:31:16.020033Z","platform":"landsat-8","proj:bbox":[320685.0,-5057715.0,556215.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":4.36,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912016340LGN01","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":61.27462263,"view:sun_elevation":55.30581509,"landsat:cloud_cover_land":17.15,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20161128_02_T1","bbox":[-177.7501425133711,-45.684024978641446,-174.6917444467325,-43.517465021358554],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20161128_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161128_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161128_20201016_02_T1/LC08_L2SR_066091_20161128_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161128_20201016_02_T1/LC08_L2SR_066091_20161128_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161128_20201016_02_T1/LC08_L2SR_066091_20161128_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161128_20201016_02_T1/LC08_L2SR_066091_20161128_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161128_20201016_02_T1/LC08_L2SR_066091_20161128_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161128_20201016_02_T1/LC08_L2SR_066091_20161128_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161128_20201016_02_T1/LC08_L2SR_066091_20161128_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161128_20201016_02_T1/LC08_L2SR_066091_20161128_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161128_20201016_02_T1/LC08_L2SR_066091_20161128_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161128_20201016_02_T1/LC08_L2SR_066091_20161128_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161128_20201016_02_T1/LC08_L2SR_066091_20161128_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161128_20201016_02_T1/LC08_L2SR_066091_20161128_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161128_20201016_02_T1/LC08_L2SR_066091_20161128_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161128_20201016_02_T1/LC08_L2SR_066091_20161128_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161128_20201016_02_T1/LC08_L2SR_066091_20161128_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441585.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161128_20201016_02_T1/LC08_L2SR_066091_20161128_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10668862,-43.51926367],[-174.69450243,-43.97159975],[-175.33246987,-45.6824086],[-177.74691905,-45.23174007],[-177.10668862,-43.51926367]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-11-28T21:25:06.383565Z","platform":"landsat-8","proj:bbox":[441585.0,-5059215.0,679815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":45.44,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912016333LGN01","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":59.27073295,"view:sun_elevation":54.9751648,"landsat:cloud_cover_land":1.08,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20161119_02_T2","bbox":[-179.3052524761981,-45.67343493264293,-176.28210440548102,-43.53100506735707],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20161119_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161119_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161119_20201016_02_T2/LC08_L2SR_067091_20161119_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161119_20201016_02_T2/LC08_L2SR_067091_20161119_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161119_20201016_02_T2/LC08_L2SR_067091_20161119_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161119_20201016_02_T2/LC08_L2SR_067091_20161119_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161119_20201016_02_T2/LC08_L2SR_067091_20161119_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161119_20201016_02_T2/LC08_L2SR_067091_20161119_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161119_20201016_02_T2/LC08_L2SR_067091_20161119_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161119_20201016_02_T2/LC08_L2SR_067091_20161119_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161119_20201016_02_T2/LC08_L2SR_067091_20161119_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161119_20201016_02_T2/LC08_L2SR_067091_20161119_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161119_20201016_02_T2/LC08_L2SR_067091_20161119_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161119_20201016_02_T2/LC08_L2SR_067091_20161119_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161119_20201016_02_T2/LC08_L2SR_067091_20161119_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161119_20201016_02_T2/LC08_L2SR_067091_20161119_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161119_20201016_02_T2/LC08_L2SR_067091_20161119_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161119_20201016_02_T2/LC08_L2SR_067091_20161119_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70697834,-43.53138588],[-176.28396228,-43.95186968],[-176.87563637,-45.67071252],[-179.30154869,-45.25283841],[-178.70697834,-43.53138588]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-11-19T21:31:17.474743Z","platform":"landsat-8","proj:bbox":[320385.0,-5058015.0,555915.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":35.8,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912016324LGN01","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":56.47016599,"view:sun_elevation":54.01632598,"landsat:cloud_cover_land":33.31,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20161112_02_T2","bbox":[-177.74629251318905,-45.68405497869346,-174.6878944468797,-43.51739502130654],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20161112_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161112_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161112_20201016_02_T2/LC08_L2SR_066091_20161112_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161112_20201016_02_T2/LC08_L2SR_066091_20161112_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161112_20201016_02_T2/LC08_L2SR_066091_20161112_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161112_20201016_02_T2/LC08_L2SR_066091_20161112_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161112_20201016_02_T2/LC08_L2SR_066091_20161112_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161112_20201016_02_T2/LC08_L2SR_066091_20161112_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161112_20201016_02_T2/LC08_L2SR_066091_20161112_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161112_20201016_02_T2/LC08_L2SR_066091_20161112_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161112_20201016_02_T2/LC08_L2SR_066091_20161112_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161112_20201016_02_T2/LC08_L2SR_066091_20161112_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161112_20201016_02_T2/LC08_L2SR_066091_20161112_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161112_20201016_02_T2/LC08_L2SR_066091_20161112_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161112_20201016_02_T2/LC08_L2SR_066091_20161112_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161112_20201016_02_T2/LC08_L2SR_066091_20161112_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161112_20201016_02_T2/LC08_L2SR_066091_20161112_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161112_20201016_02_T2/LC08_L2SR_066091_20161112_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10303567,-43.51941175],[-174.69095809,-43.97190862],[-175.32920449,-45.68275316],[-177.74354063,-45.23190829],[-177.10303567,-43.51941175]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-11-12T21:25:06.021029Z","platform":"landsat-8","proj:bbox":[441885.0,-5059215.0,680115.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":96.81,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912016317LGN01","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":54.27016116,"view:sun_elevation":52.85522629,"landsat:cloud_cover_land":99.64,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20161103_02_T2","bbox":[-179.3052524761981,-45.67343493264293,-176.28210440548102,-43.53100506735707],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20161103_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161103_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161103_20201016_02_T2/LC08_L2SR_067091_20161103_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161103_20201016_02_T2/LC08_L2SR_067091_20161103_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161103_20201016_02_T2/LC08_L2SR_067091_20161103_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161103_20201016_02_T2/LC08_L2SR_067091_20161103_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161103_20201016_02_T2/LC08_L2SR_067091_20161103_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161103_20201016_02_T2/LC08_L2SR_067091_20161103_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161103_20201016_02_T2/LC08_L2SR_067091_20161103_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161103_20201016_02_T2/LC08_L2SR_067091_20161103_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161103_20201016_02_T2/LC08_L2SR_067091_20161103_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161103_20201016_02_T2/LC08_L2SR_067091_20161103_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161103_20201016_02_T2/LC08_L2SR_067091_20161103_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161103_20201016_02_T2/LC08_L2SR_067091_20161103_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161103_20201016_02_T2/LC08_L2SR_067091_20161103_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161103_20201016_02_T2/LC08_L2SR_067091_20161103_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161103_20201016_02_T2/LC08_L2SR_067091_20161103_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161103_20201016_02_T2/LC08_L2SR_067091_20161103_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70690012,-43.53107307],[-176.28404338,-43.95161274],[-176.87580455,-45.67054003],[-179.30156817,-45.25260856],[-178.70690012,-43.53107307]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-11-03T21:31:17.654494Z","platform":"landsat-8","proj:bbox":[320385.0,-5058015.0,555915.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":15.18,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912016308LGN01","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":51.5727384,"view:sun_elevation":50.87302774,"landsat:cloud_cover_land":10.85,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20161027_02_T1","bbox":[-177.7539925135611,-45.68400497858505,-174.69559444658577,-43.51753502141495],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20161027_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161027_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161027_20201016_02_T1/LC08_L2SR_066091_20161027_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161027_20201016_02_T1/LC08_L2SR_066091_20161027_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161027_20201016_02_T1/LC08_L2SR_066091_20161027_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161027_20201016_02_T1/LC08_L2SR_066091_20161027_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161027_20201016_02_T1/LC08_L2SR_066091_20161027_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161027_20201016_02_T1/LC08_L2SR_066091_20161027_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161027_20201016_02_T1/LC08_L2SR_066091_20161027_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161027_20201016_02_T1/LC08_L2SR_066091_20161027_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161027_20201016_02_T1/LC08_L2SR_066091_20161027_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161027_20201016_02_T1/LC08_L2SR_066091_20161027_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161027_20201016_02_T1/LC08_L2SR_066091_20161027_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161027_20201016_02_T1/LC08_L2SR_066091_20161027_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161027_20201016_02_T1/LC08_L2SR_066091_20161027_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161027_20201016_02_T1/LC08_L2SR_066091_20161027_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161027_20201016_02_T1/LC08_L2SR_066091_20161027_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441285.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161027_20201016_02_T1/LC08_L2SR_066091_20161027_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.1101067,-43.51929249],[-174.698084,-43.97165487],[-175.33621541,-45.68240008],[-177.75049269,-45.23169543],[-177.1101067,-43.51929249]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-10-27T21:25:07.315575Z","platform":"landsat-8","proj:bbox":[441285.0,-5059215.0,679515.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":78.47,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912016301LGN01","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":49.65770826,"view:sun_elevation":48.98643922,"landsat:cloud_cover_land":93.63,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20161018_02_T1","bbox":[-179.3052524761611,-45.673454932642926,-176.28595440551072,-43.53100506735707],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20161018_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161018_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161018_20201016_02_T1/LC08_L2SR_067091_20161018_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161018_20201016_02_T1/LC08_L2SR_067091_20161018_20201016_02_T1_SR_B1.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161018_20201016_02_T1/LC08_L2SR_067091_20161018_20201016_02_T1_SR_B2.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161018_20201016_02_T1/LC08_L2SR_067091_20161018_20201016_02_T1_SR_B3.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161018_20201016_02_T1/LC08_L2SR_067091_20161018_20201016_02_T1_SR_B4.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161018_20201016_02_T1/LC08_L2SR_067091_20161018_20201016_02_T1_SR_B5.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161018_20201016_02_T1/LC08_L2SR_067091_20161018_20201016_02_T1_SR_B6.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161018_20201016_02_T1/LC08_L2SR_067091_20161018_20201016_02_T1_SR_B7.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161018_20201016_02_T1/LC08_L2SR_067091_20161018_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161018_20201016_02_T1/LC08_L2SR_067091_20161018_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161018_20201016_02_T1/LC08_L2SR_067091_20161018_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161018_20201016_02_T1/LC08_L2SR_067091_20161018_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161018_20201016_02_T1/LC08_L2SR_067091_20161018_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161018_20201016_02_T1/LC08_L2SR_067091_20161018_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161018_20201016_02_T1/LC08_L2SR_067091_20161018_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7861,7841],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161018_20201016_02_T1/LC08_L2SR_067091_20161018_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70981333,-43.53111262],[-176.28680769,-43.9517196],[-176.8786363,-45.67059287],[-179.30454518,-45.25259749],[-178.70981333,-43.53111262]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-10-18T21:31:17.425360Z","platform":"landsat-8","proj:bbox":[320385.0,-5058015.0,555615.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":39.42,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912016292LGN01","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":47.48853462,"view:sun_elevation":46.19928982,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20161011_02_T2","bbox":[-177.74629251334383,-45.68405497869346,-174.69174444676113,-43.51746502130654],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20161011_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161011_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161011_20201016_02_T2/LC08_L2SR_066091_20161011_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161011_20201016_02_T2/LC08_L2SR_066091_20161011_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161011_20201016_02_T2/LC08_L2SR_066091_20161011_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161011_20201016_02_T2/LC08_L2SR_066091_20161011_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161011_20201016_02_T2/LC08_L2SR_066091_20161011_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161011_20201016_02_T2/LC08_L2SR_066091_20161011_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161011_20201016_02_T2/LC08_L2SR_066091_20161011_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161011_20201016_02_T2/LC08_L2SR_066091_20161011_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161011_20201016_02_T2/LC08_L2SR_066091_20161011_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161011_20201016_02_T2/LC08_L2SR_066091_20161011_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161011_20201016_02_T2/LC08_L2SR_066091_20161011_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161011_20201016_02_T2/LC08_L2SR_066091_20161011_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161011_20201016_02_T2/LC08_L2SR_066091_20161011_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161011_20201016_02_T2/LC08_L2SR_066091_20161011_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161011_20201016_02_T2/LC08_L2SR_066091_20161011_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20161011_20201016_02_T2/LC08_L2SR_066091_20161011_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10545384,-43.51932429],[-174.69324764,-43.9719404],[-175.33162437,-45.68263776],[-177.7460831,-45.23167978],[-177.10545384,-43.51932429]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-10-11T21:25:05.024123Z","platform":"landsat-8","proj:bbox":[441885.0,-5059215.0,679815.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":98.98,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912016285LGN01","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":46.03463263,"view:sun_elevation":43.80192028,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20161002_02_T2","bbox":[-179.2937124767321,-45.67335493318894,-176.27055441330234,-43.52852506681106],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20161002_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161002_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161002_20201016_02_T2/LC08_L2SR_067091_20161002_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161002_20201016_02_T2/LC08_L2SR_067091_20161002_20201016_02_T2_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161002_20201016_02_T2/LC08_L2SR_067091_20161002_20201016_02_T2_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161002_20201016_02_T2/LC08_L2SR_067091_20161002_20201016_02_T2_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161002_20201016_02_T2/LC08_L2SR_067091_20161002_20201016_02_T2_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161002_20201016_02_T2/LC08_L2SR_067091_20161002_20201016_02_T2_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161002_20201016_02_T2/LC08_L2SR_067091_20161002_20201016_02_T2_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161002_20201016_02_T2/LC08_L2SR_067091_20161002_20201016_02_T2_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161002_20201016_02_T2/LC08_L2SR_067091_20161002_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161002_20201016_02_T2/LC08_L2SR_067091_20161002_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161002_20201016_02_T2/LC08_L2SR_067091_20161002_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161002_20201016_02_T2/LC08_L2SR_067091_20161002_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161002_20201016_02_T2/LC08_L2SR_067091_20161002_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161002_20201016_02_T2/LC08_L2SR_067091_20161002_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161002_20201016_02_T2/LC08_L2SR_067091_20161002_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,321285.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20161002_20201016_02_T2/LC08_L2SR_067091_20161002_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.69552159,-43.53102225],[-176.27241765,-43.95199455],[-176.86478331,-45.67043915],[-179.29078067,-45.25207083],[-178.69552159,-43.53102225]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-10-02T21:31:12.271086Z","platform":"landsat-8","proj:bbox":[321285.0,-5058015.0,556815.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":98.11,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912016276LGN01","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":44.42152843,"view:sun_elevation":40.52247911,"landsat:cloud_cover_land":99.99,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20160925_02_T1","bbox":[-177.7385825128409,-45.68410497880859,-174.68020444719062,-43.517245021191414],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20160925_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160925_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160925_20201016_02_T1/LC08_L2SR_066091_20160925_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160925_20201016_02_T1/LC08_L2SR_066091_20160925_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160925_20201016_02_T1/LC08_L2SR_066091_20160925_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160925_20201016_02_T1/LC08_L2SR_066091_20160925_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160925_20201016_02_T1/LC08_L2SR_066091_20160925_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160925_20201016_02_T1/LC08_L2SR_066091_20160925_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160925_20201016_02_T1/LC08_L2SR_066091_20160925_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160925_20201016_02_T1/LC08_L2SR_066091_20160925_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160925_20201016_02_T1/LC08_L2SR_066091_20160925_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160925_20201016_02_T1/LC08_L2SR_066091_20160925_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160925_20201016_02_T1/LC08_L2SR_066091_20160925_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160925_20201016_02_T1/LC08_L2SR_066091_20160925_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160925_20201016_02_T1/LC08_L2SR_066091_20160925_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160925_20201016_02_T1/LC08_L2SR_066091_20160925_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160925_20201016_02_T1/LC08_L2SR_066091_20160925_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,442485.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160925_20201016_02_T1/LC08_L2SR_066091_20160925_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.09406093,-43.51870747],[-174.68200263,-43.97164567],[-175.32077985,-45.68249467],[-177.73508396,-45.23121546],[-177.09406093,-43.51870747]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-09-25T21:25:00.204600Z","platform":"landsat-8","proj:bbox":[442485.0,-5059215.0,680715.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":60.32,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912016269LGN02","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":43.33653182,"view:sun_elevation":37.8715094,"landsat:cloud_cover_land":61.21,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20160916_02_T2","bbox":[-179.3014124763826,-45.67340493284042,-176.2782544135993,-43.52838506715958],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20160916_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160916_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160916_20201016_02_T2/LC08_L2SR_067091_20160916_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160916_20201016_02_T2/LC08_L2SR_067091_20160916_20201016_02_T2_SR_B1.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160916_20201016_02_T2/LC08_L2SR_067091_20160916_20201016_02_T2_SR_B2.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160916_20201016_02_T2/LC08_L2SR_067091_20160916_20201016_02_T2_SR_B3.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160916_20201016_02_T2/LC08_L2SR_067091_20160916_20201016_02_T2_SR_B4.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160916_20201016_02_T2/LC08_L2SR_067091_20160916_20201016_02_T2_SR_B5.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160916_20201016_02_T2/LC08_L2SR_067091_20160916_20201016_02_T2_SR_B6.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160916_20201016_02_T2/LC08_L2SR_067091_20160916_20201016_02_T2_SR_B7.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160916_20201016_02_T2/LC08_L2SR_067091_20160916_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160916_20201016_02_T2/LC08_L2SR_067091_20160916_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160916_20201016_02_T2/LC08_L2SR_067091_20160916_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160916_20201016_02_T2/LC08_L2SR_067091_20160916_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160916_20201016_02_T2/LC08_L2SR_067091_20160916_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160916_20201016_02_T2/LC08_L2SR_067091_20160916_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160916_20201016_02_T2/LC08_L2SR_067091_20160916_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7871,7851],"proj:transform":[30.0,0.0,320685.0,0.0,-30.0,-4821885.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160916_20201016_02_T2/LC08_L2SR_067091_20160916_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70331246,-43.53110124],[-176.28024594,-43.95204984],[-176.87250093,-45.67070718],[-179.29846646,-45.25236631],[-178.70331246,-43.53110124]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-09-16T21:31:11.107698Z","platform":"landsat-8","proj:bbox":[320685.0,-5058015.0,556215.0,-4821885.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912016260LGN01","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":42.1127358,"view:sun_elevation":34.42497106,"landsat:cloud_cover_land":100.0,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20160909_02_T2","bbox":[-177.74629251318905,-45.68405497869346,-174.6878944468797,-43.51739502130654],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20160909_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160909_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160909_20201016_02_T2/LC08_L2SR_066091_20160909_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160909_20201016_02_T2/LC08_L2SR_066091_20160909_20201016_02_T2_SR_B1.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160909_20201016_02_T2/LC08_L2SR_066091_20160909_20201016_02_T2_SR_B2.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160909_20201016_02_T2/LC08_L2SR_066091_20160909_20201016_02_T2_SR_B3.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160909_20201016_02_T2/LC08_L2SR_066091_20160909_20201016_02_T2_SR_B4.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160909_20201016_02_T2/LC08_L2SR_066091_20160909_20201016_02_T2_SR_B5.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160909_20201016_02_T2/LC08_L2SR_066091_20160909_20201016_02_T2_SR_B6.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160909_20201016_02_T2/LC08_L2SR_066091_20160909_20201016_02_T2_SR_B7.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160909_20201016_02_T2/LC08_L2SR_066091_20160909_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160909_20201016_02_T2/LC08_L2SR_066091_20160909_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160909_20201016_02_T2/LC08_L2SR_066091_20160909_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160909_20201016_02_T2/LC08_L2SR_066091_20160909_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160909_20201016_02_T2/LC08_L2SR_066091_20160909_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160909_20201016_02_T2/LC08_L2SR_066091_20160909_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160909_20201016_02_T2/LC08_L2SR_066091_20160909_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7951,7941],"proj:transform":[30.0,0.0,441885.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160909_20201016_02_T2/LC08_L2SR_066091_20160909_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10396553,-43.51942429],[-174.69170461,-43.97223839],[-175.33025859,-45.68294483],[-177.74477222,-45.23179431],[-177.10396553,-43.51942429]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-09-09T21:24:59.464581Z","platform":"landsat-8","proj:bbox":[441885.0,-5059215.0,680115.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":84.56,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912016253LGN01","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":41.25265735,"view:sun_elevation":31.76581534,"landsat:cloud_cover_land":99.98,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_067091_20160831_02_T2","bbox":[-179.3052524761981,-45.67343493264293,-176.28210440548102,-43.53100506735707],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_067091_20160831_02_T2"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160831_02_T2","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160831_20201016_02_T2/LC08_L2SR_067091_20160831_20201016_02_T2_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160831_20201016_02_T2/LC08_L2SR_067091_20160831_20201016_02_T2_SR_B1.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160831_20201016_02_T2/LC08_L2SR_067091_20160831_20201016_02_T2_SR_B2.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160831_20201016_02_T2/LC08_L2SR_067091_20160831_20201016_02_T2_SR_B3.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160831_20201016_02_T2/LC08_L2SR_067091_20160831_20201016_02_T2_SR_B4.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160831_20201016_02_T2/LC08_L2SR_067091_20160831_20201016_02_T2_SR_B5.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160831_20201016_02_T2/LC08_L2SR_067091_20160831_20201016_02_T2_SR_B6.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160831_20201016_02_T2/LC08_L2SR_067091_20160831_20201016_02_T2_SR_B7.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160831_20201016_02_T2/LC08_L2SR_067091_20160831_20201016_02_T2_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160831_20201016_02_T2/LC08_L2SR_067091_20160831_20201016_02_T2_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160831_20201016_02_T2/LC08_L2SR_067091_20160831_20201016_02_T2_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160831_20201016_02_T2/LC08_L2SR_067091_20160831_20201016_02_T2_QA_PIXEL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160831_20201016_02_T2/LC08_L2SR_067091_20160831_20201016_02_T2_QA_RADSAT.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160831_20201016_02_T2/LC08_L2SR_067091_20160831_20201016_02_T2_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160831_20201016_02_T2/LC08_L2SR_067091_20160831_20201016_02_T2_SR_QA_AEROSOL.TIF","proj:shape":[7861,7851],"proj:transform":[30.0,0.0,320385.0,0.0,-30.0,-4822185.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/067/091/LC08_L2SR_067091_20160831_20201016_02_T2/LC08_L2SR_067091_20160831_20201016_02_T2_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-178.70695182,-43.53127142],[-176.28377268,-43.95227999],[-176.87606856,-45.67098236],[-179.30215147,-45.25258556],[-178.70695182,-43.53127142]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-08-31T21:31:08.122064Z","platform":"landsat-8","proj:bbox":[320385.0,-5058015.0,555915.0,-4822185.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":99.58,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80670912016244LGN02","landsat:wrs_path":"067","landsat:wrs_type":"2","view:sun_azimuth":40.21931087,"view:sun_elevation":28.45784047,"landsat:cloud_cover_land":99.98,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC08_L2SR_066091_20160824_02_T1","bbox":[-177.74243251315292,-45.68407497875314,-174.687894446901,-43.51739502124686],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items/LC08_L2SR_066091_20160824_02_T1"},{"rel":"alternate","href":"https://landsatlook.usgs.gov/stac-browser/collection02/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160824_02_T1","type":"text/html","title":"USGS stac-browser page"}],"assets":{"ANG":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160824_20201016_02_T1/LC08_L2SR_066091_20160824_20201016_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)"},"SR_B1":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160824_20201016_02_T1/LC08_L2SR_066091_20160824_20201016_02_T1_SR_B1.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band (B1)","eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance"},"SR_B2":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160824_20201016_02_T1/LC08_L2SR_066091_20160824_20201016_02_T1_SR_B2.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band (B2)","eo:bands":[{"gsd":30,"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance"},"SR_B3":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160824_20201016_02_T1/LC08_L2SR_066091_20160824_20201016_02_T1_SR_B3.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band (B3)","eo:bands":[{"gsd":30,"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}],"description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance"},"SR_B4":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160824_20201016_02_T1/LC08_L2SR_066091_20160824_20201016_02_T1_SR_B4.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band (B4)","eo:bands":[{"gsd":30,"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}],"description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance"},"SR_B5":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160824_20201016_02_T1/LC08_L2SR_066091_20160824_20201016_02_T1_SR_B5.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8 (B5)","eo:bands":[{"gsd":30,"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance"},"SR_B6":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160824_20201016_02_T1/LC08_L2SR_066091_20160824_20201016_02_T1_SR_B6.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6 (B6)","eo:bands":[{"gsd":30,"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance"},"SR_B7":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160824_20201016_02_T1/LC08_L2SR_066091_20160824_20201016_02_T1_SR_B7.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2 (B7)","eo:bands":[{"gsd":30,"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance"},"MTL.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160824_20201016_02_T1/LC08_L2SR_066091_20160824_20201016_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)"},"MTL.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160824_20201016_02_T1/LC08_L2SR_066091_20160824_20201016_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)"},"MTL.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160824_20201016_02_T1/LC08_L2SR_066091_20160824_20201016_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)"},"QA_PIXEL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160824_20201016_02_T1/LC08_L2SR_066091_20160824_20201016_02_T1_QA_PIXEL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band"},"QA_RADSAT":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160824_20201016_02_T1/LC08_L2SR_066091_20160824_20201016_02_T1_QA_RADSAT.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band"},"thumbnail":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160824_20201016_02_T1/LC08_L2SR_066091_20160824_20201016_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image"},"SR_QA_AEROSOL":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160824_20201016_02_T1/LC08_L2SR_066091_20160824_20201016_02_T1_SR_QA_AEROSOL.TIF","proj:shape":[7951,7931],"proj:transform":[30.0,0.0,442185.0,0.0,-30.0,-4820685.0],"gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance"},"reduced_resolution_browse":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2016/066/091/LC08_L2SR_066091_20160824_20201016_02_T1/LC08_L2SR_066091_20160824_20201016_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image"}},"geometry":{"type":"Polygon","coordinates":[[[-177.10080376,-43.51905726],[-174.6885003,-43.97203066],[-175.32722881,-45.68276915],[-177.74178883,-45.23145205],[-177.10080376,-43.51905726]]]},"collection":"landsat-8-c2-l2","properties":{"datetime":"2016-08-24T21:24:54.683007Z","platform":"landsat-8","proj:bbox":[442185.0,-5059215.0,680115.0,-4820685.0],"proj:epsg":3271,"description":"Landsat Collection 2 Level-2 Surface Reflectance Product","instruments":["oli","tirs"],"eo:cloud_cover":42.39,"view:off_nadir":0,"landsat:wrs_row":"091","landsat:scene_id":"LC80660912016237LGN01","landsat:wrs_path":"066","landsat:wrs_type":"2","view:sun_azimuth":39.44600598,"view:sun_elevation":26.0173617,"landsat:cloud_cover_land":56.95,"landsat:processing_level":"L2SR","landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"collections":["landsat-8-c2-l2"],"intersects":{"type":"Polygon","coordinates":[[[-177.0002548,-45.2413329],[-176.7533258,-45.2410666],[-176.4223072,-44.2514167],[-177.0002505,-44.2528774],[-177.0002548,-45.2413329]]]},"token":"next:landsat-8-c2-l2:LC08_L2SR_066091_20160824_02_T1"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '76418' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:50:02 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125000Z-167d46d96d8dtcxmhC1DEN584s0000000ryg00000000377t status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_cli/TestCLISearch.test_item_search[inprocess].yaml000066400000000000000000030363271503646565400323210ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/collections","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#fields"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3363' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:49:47 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T124947Z-167d46d96d8rf89khC1DENsp080000000s70000000002dt0 status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","https://api.stacspec.org/v1.0.0/collections","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","https://api.stacspec.org/v1.0.0/item-search#query"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3362' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:49:48 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T124947Z-167d46d96d8bvmllhC1DENt02w0000000ry0000000004gbr status: code: 200 message: OK - request: body: '{"collections": ["naip"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '25' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"mt_m_4911664_se_11_060_20231117_20240103","bbox":[-116.066453,48.997642,-115.995973,49.064871],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4911664_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4911664_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49116/m_4911664_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49116/m_4911664_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4911664_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4911664_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.997313,48.997642],[-115.995973,49.064289],[-116.065205,49.064871],[-116.066453,48.998222],[-115.997313,48.997642]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[568284.0,5427678.0,573342.0,5435088.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12350,8430],"proj:centroid":{"lat":49.03126,"lon":-116.03124},"proj:transform":[0.6,0.0,568284.0,0.0,-0.6,5435088.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4911558_sw_11_060_20231117_20240103","bbox":[-115.879177,48.997533,-115.808202,49.06498],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4911558_sw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4911558_sw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911558_sw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911558_sw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4911558_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4911558_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.809795,48.997533],[-115.808202,49.064284],[-115.877676,49.06498],[-115.879177,48.998228],[-115.809795,48.997533]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[581982.0,5427864.0,587058.0,5435286.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12370,8460],"proj:centroid":{"lat":49.03126,"lon":-115.84371},"proj:transform":[0.6,0.0,581982.0,0.0,-0.6,5435286.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4911558_se_11_060_20231117_20240103","bbox":[-115.816751,48.997519,-115.745612,49.065003],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4911558_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4911558_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911558_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911558_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4911558_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4911558_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.747289,48.997519],[-115.745612,49.064268],[-115.815167,49.065003],[-115.816751,48.998252],[-115.747289,48.997519]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[586548.0,5427936.0,591630.0,5435358.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12370,8470],"proj:centroid":{"lat":49.03127,"lon":-115.7812},"proj:transform":[0.6,0.0,586548.0,0.0,-0.6,5435358.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4911557_sw_11_060_20231117_20240103","bbox":[-116.004028,48.997622,-115.933383,49.064887],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4911557_sw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4911557_sw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911557_sw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911557_sw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4911557_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4911557_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.934807,48.997622],[-115.933383,49.064267],[-116.002696,49.064887],[-116.004028,48.99824],[-115.934807,48.997622]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[572850.0,5427738.0,577914.0,5435148.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12350,8440],"proj:centroid":{"lat":49.03126,"lon":-115.96873},"proj:transform":[0.6,0.0,572850.0,0.0,-0.6,5435148.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4911557_se_11_060_20231117_20240103","bbox":[-115.941603,48.997567,-115.870793,49.064924],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4911557_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4911557_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911557_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911557_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4911557_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4911557_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.872301,48.997567],[-115.870793,49.064266],[-115.940187,49.064924],[-115.941603,48.998224],[-115.872301,48.997567]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[577416.0,5427798.0,582486.0,5435214.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12360,8450],"proj:centroid":{"lat":49.03125,"lon":-115.90622},"proj:transform":[0.6,0.0,577416.0,0.0,-0.6,5435214.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4811608_se_11_060_20231117_20240103","bbox":[-116.066408,48.872635,-115.995943,48.939865],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811608_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811608_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48116/m_4811608_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48116/m_4811608_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811608_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811608_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.997277,48.872635],[-115.995943,48.939283],[-116.065166,48.939865],[-116.066408,48.873215],[-115.997277,48.872635]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[568458.0,5413782.0,573528.0,5421192.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12350,8450],"proj:centroid":{"lat":48.90626,"lon":-116.0312},"proj:transform":[0.6,0.0,568458.0,0.0,-0.6,5421192.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4811608_ne_11_060_20231117_20240103","bbox":[-116.066472,48.935139,-115.995999,49.002368],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811608_ne_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811608_ne_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48116/m_4811608_ne_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48116/m_4811608_ne_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811608_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811608_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.997337,48.935139],[-115.995999,49.001787],[-116.065227,49.002368],[-116.066472,48.935719],[-115.997337,48.935139]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[568368.0,5420730.0,573432.0,5428140.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12350,8440],"proj:centroid":{"lat":48.96876,"lon":-116.03126},"proj:transform":[0.6,0.0,568368.0,0.0,-0.6,5428140.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4811502_nw_11_060_20231117_20240103","bbox":[-115.879185,48.935029,-115.808218,49.002478],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811502_nw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811502_nw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811502_nw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811502_nw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811502_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811502_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.809808,48.935029],[-115.808218,49.001781],[-115.877687,49.002478],[-115.879185,48.935725],[-115.809808,48.935029]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[582084.0,5420916.0,587166.0,5428338.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12370,8470],"proj:centroid":{"lat":48.96876,"lon":-115.84372},"proj:transform":[0.6,0.0,582084.0,0.0,-0.6,5428338.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4811501_sw_11_060_20231117_20240103","bbox":[-116.004057,48.872615,-115.933428,48.939882],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811501_sw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811501_sw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_sw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_sw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811501_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811501_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.934845,48.872615],[-115.933428,48.939262],[-116.002731,48.939882],[-116.004057,48.873233],[-115.934845,48.872615]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[573030.0,5413842.0,578106.0,5421252.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12350,8460],"proj:centroid":{"lat":48.90626,"lon":-115.96877},"proj:transform":[0.6,0.0,573030.0,0.0,-0.6,5421252.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4811501_se_11_060_20231117_20240103","bbox":[-115.941624,48.87256,-115.87083,48.939918],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811501_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811501_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811501_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811501_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.872332,48.87256],[-115.87083,48.939259],[-115.940214,48.939918],[-115.941624,48.873217],[-115.872332,48.87256]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[577608.0,5413902.0,582690.0,5421318.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12360,8470],"proj:centroid":{"lat":48.90625,"lon":-115.90625},"proj:transform":[0.6,0.0,577608.0,0.0,-0.6,5421318.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4811501_nw_11_060_20231117_20240103","bbox":[-116.004043,48.935118,-115.933406,49.002385],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811501_nw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811501_nw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_nw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_nw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811501_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811501_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.934827,48.935118],[-115.933406,49.001765],[-116.002714,49.002385],[-116.004043,48.935737],[-115.934827,48.935118]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[572940.0,5420790.0,578010.0,5428200.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12350,8450],"proj:centroid":{"lat":48.96876,"lon":-115.96875},"proj:transform":[0.6,0.0,572940.0,0.0,-0.6,5428200.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4811501_ne_11_060_20231117_20240103","bbox":[-115.941614,48.935064,-115.870812,49.002421],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811501_ne_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811501_ne_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_ne_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_ne_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811501_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811501_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.872317,48.935064],[-115.870812,49.001763],[-115.940201,49.002421],[-115.941614,48.935721],[-115.872317,48.935064]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[577512.0,5420850.0,582588.0,5428266.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12360,8460],"proj:centroid":{"lat":48.96875,"lon":-115.90624},"proj:transform":[0.6,0.0,577512.0,0.0,-0.6,5428266.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511363_nw_12_060_20231117_20240103","bbox":[-113.255099,45.059408,-113.182469,45.128069],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511363_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511363_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511363_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511363_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511363_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511363_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.182469,45.060767],[-113.185035,45.128069],[-113.255099,45.126707],[-113.252451,45.059408],[-113.182469,45.060767]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[322656.0,4992018.0,328170.0,4999500.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12470,9190],"proj:centroid":{"lat":45.09374,"lon":-113.21876},"proj:transform":[0.6,0.0,322656.0,0.0,-0.6,4999500.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511362_nw_12_060_20231117_20240103","bbox":[-113.380224,45.059358,-113.307375,45.128146],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511362_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511362_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511362_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511362_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511362_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511362_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.307375,45.060795],[-113.31009,45.128146],[-113.380224,45.126705],[-113.377427,45.059358],[-113.307375,45.060795]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[312816.0,4992294.0,318336.0,4999782.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9200],"proj:centroid":{"lat":45.09376,"lon":-113.34378},"proj:transform":[0.6,0.0,312816.0,0.0,-0.6,4999782.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511362_ne_12_060_20231117_20240103","bbox":[-113.317661,45.0594,-113.244961,45.128097],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511362_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511362_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511362_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511362_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511362_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511362_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.244961,45.060798],[-113.2476,45.128097],[-113.317661,45.126696],[-113.31494,45.0594],[-113.244961,45.060798]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[317736.0,4992156.0,323250.0,4999638.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12470,9190],"proj:centroid":{"lat":45.09375,"lon":-113.28129},"proj:transform":[0.6,0.0,317736.0,0.0,-0.6,4999638.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511361_nw_12_060_20231117_20240103","bbox":[-113.505348,45.059279,-113.432204,45.128194],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511361_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511361_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511361_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511361_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511361_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511361_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.432204,45.060796],[-113.435068,45.128194],[-113.505348,45.126673],[-113.502402,45.059279],[-113.432204,45.060796]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[302976.0,4992582.0,308508.0,5000076.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9220],"proj:centroid":{"lat":45.09374,"lon":-113.46876},"proj:transform":[0.6,0.0,302976.0,0.0,-0.6,5000076.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511361_ne_12_060_20231117_20240103","bbox":[-113.442786,45.059335,-113.36979,45.12816],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511361_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511361_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511361_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511361_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511361_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511361_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.36979,45.060813],[-113.372579,45.12816],[-113.442786,45.126679],[-113.439915,45.059335],[-113.36979,45.060813]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[307896.0,4992438.0,313422.0,4999926.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9210],"proj:centroid":{"lat":45.09375,"lon":-113.40627},"proj:transform":[0.6,0.0,307896.0,0.0,-0.6,4999926.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511360_nw_12_060_20231117_20240103","bbox":[-113.630473,45.059225,-113.55711,45.128266],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511360_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511360_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511360_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511360_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511360_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511360_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.55711,45.060821],[-113.560124,45.128266],[-113.630473,45.126667],[-113.627377,45.059225],[-113.55711,45.060821]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[293136.0,4992888.0,298674.0,5000388.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9230],"proj:centroid":{"lat":45.09375,"lon":-113.59377},"proj:transform":[0.6,0.0,293136.0,0.0,-0.6,5000388.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511360_ne_12_060_20231117_20240103","bbox":[-113.567912,45.059242,-113.494618,45.128248],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511360_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511360_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511360_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511360_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511360_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511360_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.494618,45.060799],[-113.497559,45.128248],[-113.567912,45.126687],[-113.564889,45.059242],[-113.494618,45.060799]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[298056.0,4992732.0,303594.0,5000232.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9230],"proj:centroid":{"lat":45.09375,"lon":-113.53124},"proj:transform":[0.6,0.0,298056.0,0.0,-0.6,5000232.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511355_sw_12_060_20231117_20240103","bbox":[-113.255123,45.121952,-113.182489,45.190559],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511355_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511355_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511355_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511355_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511355_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511355_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.182489,45.123311],[-113.185058,45.190559],[-113.255123,45.189196],[-113.25247,45.121952],[-113.182489,45.123311]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[322848.0,4998966.0,328356.0,5006442.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12460,9180],"proj:centroid":{"lat":45.15626,"lon":-113.21879},"proj:transform":[0.6,0.0,322848.0,0.0,-0.6,5006442.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511355_nw_12_060_20231117_20240103","bbox":[-113.255072,45.184443,-113.182509,45.253048],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511355_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511355_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511355_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511355_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511355_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511355_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.182509,45.185801],[-113.185084,45.253048],[-113.255072,45.251686],[-113.252414,45.184443],[-113.182509,45.185801]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[323046.0,5005908.0,328542.0,5013384.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12460,9160],"proj:centroid":{"lat":45.21875,"lon":-113.21877},"proj:transform":[0.6,0.0,323046.0,0.0,-0.6,5013384.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511354_sw_12_060_20231117_20240103","bbox":[-113.380232,45.121848,-113.307376,45.190635],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511354_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511354_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511354_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511354_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511354_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511354_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.307376,45.123286],[-113.310098,45.190635],[-113.380232,45.189194],[-113.377428,45.121848],[-113.307376,45.123286]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[313020.0,4999236.0,318534.0,5006724.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9190],"proj:centroid":{"lat":45.15625,"lon":-113.34378},"proj:transform":[0.6,0.0,313020.0,0.0,-0.6,5006724.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511354_se_12_060_20231117_20240103","bbox":[-113.317677,45.12189,-113.244894,45.190588],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511354_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511354_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511354_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511354_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511354_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511354_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.244894,45.123289],[-113.247539,45.190588],[-113.317677,45.189186],[-113.314949,45.12189],[-113.244894,45.123289]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[317934.0,4999098.0,323448.0,5006580.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12470,9190],"proj:centroid":{"lat":45.15624,"lon":-113.28126},"proj:transform":[0.6,0.0,317934.0,0.0,-0.6,5006580.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511354_nw_12_060_20231117_20240103","bbox":[-113.380243,45.184338,-113.307304,45.253126],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511354_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511354_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511354_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511354_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511354_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511354_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.307304,45.185777],[-113.310031,45.253126],[-113.380243,45.251684],[-113.377433,45.184338],[-113.307304,45.185777]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[313224.0,5006178.0,318738.0,5013666.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9190],"proj:centroid":{"lat":45.21874,"lon":-113.34375},"proj:transform":[0.6,0.0,313224.0,0.0,-0.6,5013666.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511354_ne_12_060_20231117_20240103","bbox":[-113.317697,45.18438,-113.244906,45.253131],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511354_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511354_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511354_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511354_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511354_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511354_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.244906,45.185779],[-113.247559,45.253131],[-113.317697,45.251728],[-113.314961,45.18438],[-113.244906,45.185779]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[318132.0,5006040.0,323640.0,5013528.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9180],"proj:centroid":{"lat":45.21876,"lon":-113.28128},"proj:transform":[0.6,0.0,318132.0,0.0,-0.6,5013528.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511353_sw_12_060_20231117_20240103","bbox":[-113.505343,45.121769,-113.432189,45.190738],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511353_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511353_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511353_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511353_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511353_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511353_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.432189,45.123287],[-113.435062,45.190738],[-113.505343,45.189217],[-113.502387,45.121769],[-113.432189,45.123287]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[303192.0,4999524.0,308718.0,5007024.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9210],"proj:centroid":{"lat":45.15626,"lon":-113.46875},"proj:transform":[0.6,0.0,303192.0,0.0,-0.6,5007024.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511353_se_12_060_20231117_20240103","bbox":[-113.442788,45.121826,-113.369783,45.190704],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511353_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511353_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511353_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511353_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511353_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511353_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.369783,45.123303],[-113.37258,45.190704],[-113.442788,45.189223],[-113.439909,45.121826],[-113.369783,45.123303]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[308106.0,4999380.0,313626.0,5006874.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9200],"proj:centroid":{"lat":45.15627,"lon":-113.40627},"proj:transform":[0.6,0.0,308106.0,0.0,-0.6,5006874.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511353_nw_12_060_20231117_20240103","bbox":[-113.505414,45.184312,-113.43218,45.253228],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511353_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511353_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511353_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511353_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511353_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511353_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.43218,45.185831],[-113.435056,45.253228],[-113.505414,45.251705],[-113.502454,45.184312],[-113.43218,45.185831]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[303402.0,5006472.0,308928.0,5013966.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9210],"proj:centroid":{"lat":45.21878,"lon":-113.46878},"proj:transform":[0.6,0.0,303402.0,0.0,-0.6,5013966.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511353_ne_12_060_20231117_20240103","bbox":[-113.442791,45.184316,-113.36978,45.253193],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511353_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511353_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511353_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511353_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511353_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511353_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.36978,45.185793],[-113.372583,45.253193],[-113.442791,45.251712],[-113.439905,45.184316],[-113.36978,45.185793]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[308316.0,5006322.0,313830.0,5013816.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9190],"proj:centroid":{"lat":45.21876,"lon":-113.40626},"proj:transform":[0.6,0.0,308316.0,0.0,-0.6,5013816.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511352_sw_12_060_20231117_20240103","bbox":[-113.630526,45.121714,-113.557079,45.190757],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511352_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511352_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511352_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511352_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511352_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511352_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.557079,45.123312],[-113.560099,45.190757],[-113.630526,45.189155],[-113.627423,45.121714],[-113.557079,45.123312]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[293358.0,4999830.0,298896.0,5007330.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9230],"proj:centroid":{"lat":45.15624,"lon":-113.59378},"proj:transform":[0.6,0.0,293358.0,0.0,-0.6,5007330.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511352_se_12_060_20231117_20240103","bbox":[-113.567972,45.121731,-113.494672,45.190737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511352_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511352_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511352_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511352_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511352_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511352_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.494672,45.123289],[-113.497618,45.190737],[-113.567972,45.189176],[-113.564943,45.121731],[-113.494672,45.123289]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[298272.0,4999674.0,303804.0,5007174.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9220],"proj:centroid":{"lat":45.15624,"lon":-113.5313},"proj:transform":[0.6,0.0,298272.0,0.0,-0.6,5007174.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511352_nw_12_060_20231117_20240103","bbox":[-113.630508,45.184205,-113.557051,45.253301],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511352_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511352_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511352_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511352_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511352_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511352_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.557051,45.185802],[-113.560081,45.253301],[-113.630508,45.251699],[-113.627396,45.184205],[-113.557051,45.185802]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[293586.0,5006772.0,299118.0,5014278.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12510,9220],"proj:centroid":{"lat":45.21876,"lon":-113.59376},"proj:transform":[0.6,0.0,293586.0,0.0,-0.6,5014278.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511352_ne_12_060_20231117_20240103","bbox":[-113.567959,45.184275,-113.494654,45.253227],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511352_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511352_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511352_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511352_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511352_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511352_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.494654,45.185833],[-113.497605,45.253227],[-113.567959,45.251665],[-113.564926,45.184275],[-113.494654,45.185833]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[298494.0,5006622.0,304020.0,5014116.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9210],"proj:centroid":{"lat":45.21876,"lon":-113.53129},"proj:transform":[0.6,0.0,298494.0,0.0,-0.6,5014116.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511346_sw_12_060_20231117_20240103","bbox":[-113.380258,45.246881,-113.307313,45.315668],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511346_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511346_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511346_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511346_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511346_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511346_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.307313,45.24832],[-113.310046,45.315668],[-113.380258,45.314226],[-113.377442,45.246881],[-113.307313,45.24832]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[313428.0,5013126.0,318936.0,5020614.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9180],"proj:centroid":{"lat":45.28128,"lon":-113.34376},"proj:transform":[0.6,0.0,313428.0,0.0,-0.6,5020614.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511346_nw_12_060_20231117_20240103","bbox":[-113.380274,45.30937,-113.307323,45.378156],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511346_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511346_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511346_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511346_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511346_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511346_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.307323,45.310809],[-113.310062,45.378156],[-113.380274,45.376714],[-113.377452,45.30937],[-113.307323,45.310809]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[313632.0,5020068.0,319134.0,5027556.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9170],"proj:centroid":{"lat":45.34377,"lon":-113.34378},"proj:transform":[0.6,0.0,313632.0,0.0,-0.6,5027556.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511345_sw_12_060_20231117_20240103","bbox":[-113.505412,45.246801,-113.43217,45.315717],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511345_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511345_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511345_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511345_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511345_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511345_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.43217,45.248321],[-113.435054,45.315717],[-113.505412,45.314194],[-113.502446,45.246801],[-113.43217,45.248321]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[303618.0,5013414.0,309138.0,5020908.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9200],"proj:centroid":{"lat":45.28126,"lon":-113.46877},"proj:transform":[0.6,0.0,303618.0,0.0,-0.6,5020908.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511345_se_12_060_20231117_20240103","bbox":[-113.442796,45.246805,-113.369778,45.315682],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511345_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511345_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511345_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511345_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511345_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511345_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.369778,45.248283],[-113.372588,45.315682],[-113.442796,45.314201],[-113.439904,45.246805],[-113.369778,45.248283]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[308526.0,5013264.0,314034.0,5020758.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9180],"proj:centroid":{"lat":45.28125,"lon":-113.40627},"proj:transform":[0.6,0.0,308526.0,0.0,-0.6,5020758.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511345_nw_12_060_20231117_20240103","bbox":[-113.505413,45.30929,-113.432164,45.378205],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511345_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511345_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511345_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511345_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511345_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511345_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.432164,45.310809],[-113.435054,45.378205],[-113.505413,45.376682],[-113.50244,45.30929],[-113.432164,45.310809]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[303834.0,5020356.0,309348.0,5027850.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9190],"proj:centroid":{"lat":45.34375,"lon":-113.46877},"proj:transform":[0.6,0.0,303834.0,0.0,-0.6,5027850.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511345_ne_12_060_20231117_20240103","bbox":[-113.442805,45.309348,-113.369782,45.37817],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511345_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511345_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511345_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511345_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511345_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511345_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.369782,45.310825],[-113.372595,45.37817],[-113.442805,45.376689],[-113.439909,45.309348],[-113.369782,45.310825]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[308736.0,5020212.0,314238.0,5027700.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9170],"proj:centroid":{"lat":45.34376,"lon":-113.40627},"proj:transform":[0.6,0.0,308736.0,0.0,-0.6,5027700.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511344_sw_12_060_20231117_20240103","bbox":[-113.630491,45.246695,-113.557027,45.31579],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511344_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511344_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511344_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511344_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511344_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511344_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.557027,45.248292],[-113.560062,45.31579],[-113.630491,45.314189],[-113.627371,45.246695],[-113.557027,45.248292]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[293814.0,5013714.0,299340.0,5021220.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12510,9210],"proj:centroid":{"lat":45.28125,"lon":-113.59374},"proj:transform":[0.6,0.0,293814.0,0.0,-0.6,5021220.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511344_se_12_060_20231117_20240103","bbox":[-113.567952,45.246765,-113.494637,45.31577],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511344_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511344_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511344_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511344_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511344_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511344_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.494637,45.248323],[-113.497597,45.31577],[-113.567952,45.314208],[-113.564909,45.246765],[-113.494637,45.248323]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[298716.0,5013564.0,304236.0,5021064.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9200],"proj:centroid":{"lat":45.28127,"lon":-113.53127},"proj:transform":[0.6,0.0,298716.0,0.0,-0.6,5021064.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511344_nw_12_060_20231117_20240103","bbox":[-113.630553,45.309236,-113.557007,45.378278],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511344_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511344_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511344_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511344_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511344_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511344_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.557007,45.310836],[-113.560047,45.378278],[-113.630553,45.376675],[-113.627429,45.309236],[-113.557007,45.310836]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[294036.0,5020662.0,299562.0,5028162.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9210],"proj:centroid":{"lat":45.34376,"lon":-113.59376},"proj:transform":[0.6,0.0,294036.0,0.0,-0.6,5028162.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511344_ne_12_060_20231117_20240103","bbox":[-113.567945,45.309254,-113.494623,45.378258],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511344_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511344_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511344_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511344_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511344_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511344_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.494623,45.310812],[-113.497589,45.378258],[-113.567945,45.376697],[-113.564896,45.309254],[-113.494623,45.310812]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[298938.0,5020506.0,304452.0,5028006.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9190],"proj:centroid":{"lat":45.34376,"lon":-113.53126},"proj:transform":[0.6,0.0,298938.0,0.0,-0.6,5028006.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511338_sw_12_060_20231117_20240103","bbox":[-113.380293,45.371858,-113.307335,45.440643],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511338_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511338_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511338_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511338_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511338_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511338_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.307335,45.373297],[-113.31008,45.440643],[-113.380293,45.439201],[-113.377465,45.371858],[-113.307335,45.373297]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[313836.0,5027010.0,319332.0,5034498.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9160],"proj:centroid":{"lat":45.40626,"lon":-113.34379},"proj:transform":[0.6,0.0,313836.0,0.0,-0.6,5034498.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511338_nw_12_060_20231117_20240103","bbox":[-113.380239,45.434346,-113.307273,45.503131],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511338_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511338_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511338_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511338_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511338_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511338_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.307273,45.435785],[-113.310024,45.503131],[-113.380239,45.501689],[-113.377404,45.434346],[-113.307273,45.435785]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[314046.0,5033952.0,319536.0,5041440.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9150],"proj:centroid":{"lat":45.46874,"lon":-113.34374},"proj:transform":[0.6,0.0,314046.0,0.0,-0.6,5041440.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511337_sw_12_060_20231117_20240103","bbox":[-113.505417,45.371779,-113.432161,45.440692],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511337_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511337_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511337_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511337_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511337_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511337_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.432161,45.373298],[-113.435057,45.440692],[-113.505417,45.43917],[-113.502438,45.371779],[-113.432161,45.373298]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[304050.0,5027298.0,309558.0,5034792.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9180],"proj:centroid":{"lat":45.40624,"lon":-113.46877},"proj:transform":[0.6,0.0,304050.0,0.0,-0.6,5034792.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511337_se_12_060_20231117_20240103","bbox":[-113.442816,45.371836,-113.36971,45.440659],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511337_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511337_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511337_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511337_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511337_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511337_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.36971,45.373315],[-113.372529,45.440659],[-113.442816,45.439176],[-113.439914,45.371836],[-113.36971,45.373315]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[308946.0,5027154.0,314448.0,5034642.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9170],"proj:centroid":{"lat":45.40625,"lon":-113.40624},"proj:transform":[0.6,0.0,308946.0,0.0,-0.6,5034642.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511337_nw_12_060_20231117_20240103","bbox":[-113.505426,45.434266,-113.43216,45.503233],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511337_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511337_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511337_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511337_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511337_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511337_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.43216,45.435785],[-113.435065,45.503233],[-113.505426,45.501711],[-113.502438,45.434266],[-113.43216,45.435785]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[304266.0,5034240.0,309768.0,5041740.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9170],"proj:centroid":{"lat":45.46876,"lon":-113.46877},"proj:transform":[0.6,0.0,304266.0,0.0,-0.6,5041740.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511337_ne_12_060_20231117_20240103","bbox":[-113.442833,45.434324,-113.369718,45.5032],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511337_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511337_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511337_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511337_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511337_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511337_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.369718,45.435803],[-113.372545,45.5032],[-113.442833,45.501717],[-113.439922,45.434324],[-113.369718,45.435803]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[309156.0,5034096.0,314652.0,5041590.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9160],"proj:centroid":{"lat":45.46877,"lon":-113.40625},"proj:transform":[0.6,0.0,309156.0,0.0,-0.6,5041590.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511336_sw_12_060_20231117_20240103","bbox":[-113.630542,45.371725,-113.557065,45.440765],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511336_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511336_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511336_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511336_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511336_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511336_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.557065,45.373323],[-113.560111,45.440765],[-113.630542,45.439163],[-113.627411,45.371725],[-113.557065,45.373323]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[294264.0,5027604.0,299778.0,5035104.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9190],"proj:centroid":{"lat":45.40625,"lon":-113.59378},"proj:transform":[0.6,0.0,294264.0,0.0,-0.6,5035104.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511336_se_12_060_20231117_20240103","bbox":[-113.567942,45.371743,-113.494612,45.440746],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511336_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511336_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511336_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511336_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511336_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511336_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.494612,45.3733],[-113.497585,45.440746],[-113.567942,45.439185],[-113.564886,45.371743],[-113.494612,45.3733]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[299160.0,5027448.0,304668.0,5034948.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9180],"proj:centroid":{"lat":45.40625,"lon":-113.53126},"proj:transform":[0.6,0.0,299160.0,0.0,-0.6,5034948.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511336_nw_12_060_20231117_20240103","bbox":[-113.630536,45.434213,-113.557049,45.503306],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511336_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511336_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511336_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511336_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511336_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511336_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.557049,45.435811],[-113.560105,45.503306],[-113.630536,45.501705],[-113.627397,45.434213],[-113.557049,45.435811]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[294492.0,5034546.0,300000.0,5042052.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12510,9180],"proj:centroid":{"lat":45.46877,"lon":-113.59377},"proj:transform":[0.6,0.0,294492.0,0.0,-0.6,5042052.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511336_ne_12_060_20231117_20240103","bbox":[-113.568018,45.434229,-113.494604,45.503233],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511336_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511336_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511336_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511336_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511336_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511336_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.494604,45.435788],[-113.497583,45.503233],[-113.568018,45.50167],[-113.564955,45.434229],[-113.494604,45.435788]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[299376.0,5034390.0,304884.0,5041890.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9180],"proj:centroid":{"lat":45.46874,"lon":-113.53129},"proj:transform":[0.6,0.0,299376.0,0.0,-0.6,5041890.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511335_ne_12_060_20231117_20240103","bbox":[-113.69313,45.434161,-113.619415,45.503347],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511335_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511335_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511335_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511335_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511335_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511335_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.619415,45.435801],[-113.622548,45.503347],[-113.69313,45.501703],[-113.689913,45.434161],[-113.619415,45.435801]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[289602.0,5034702.0,295122.0,5042214.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12520,9200],"proj:centroid":{"lat":45.46876,"lon":-113.65625},"proj:transform":[0.6,0.0,289602.0,0.0,-0.6,5042214.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511330_sw_12_060_20231117_20240103","bbox":[-113.380263,45.496833,-113.307291,45.565617],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511330_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511330_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511330_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511330_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511330_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511330_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.307291,45.498272],[-113.310048,45.565617],[-113.380263,45.564175],[-113.377423,45.496833],[-113.307291,45.498272]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[314250.0,5040894.0,319734.0,5048382.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9140],"proj:centroid":{"lat":45.53123,"lon":-113.34376},"proj:transform":[0.6,0.0,314250.0,0.0,-0.6,5048382.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511330_nw_12_060_20231117_20240103","bbox":[-113.380293,45.559373,-113.307314,45.628157],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511330_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511330_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511330_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511330_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511330_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511330_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.307314,45.560812],[-113.310077,45.628157],[-113.380293,45.626714],[-113.377446,45.559373],[-113.307314,45.560812]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[314454.0,5047842.0,319932.0,5055330.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9130],"proj:centroid":{"lat":45.59377,"lon":-113.34378},"proj:transform":[0.6,0.0,314454.0,0.0,-0.6,5055330.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511329_sw_12_060_20231117_20240103","bbox":[-113.505436,45.496808,-113.432165,45.56572],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511329_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511329_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511329_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511329_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511329_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511329_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.432165,45.498326],[-113.435074,45.56572],[-113.505436,45.564197],[-113.502444,45.496808],[-113.432165,45.498326]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[304482.0,5041188.0,309978.0,5048682.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9160],"proj:centroid":{"lat":45.53127,"lon":-113.46878},"proj:transform":[0.6,0.0,304482.0,0.0,-0.6,5048682.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511329_se_12_060_20231117_20240103","bbox":[-113.44285,45.49681,-113.369728,45.565686],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511329_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511329_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511329_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511329_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511329_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511329_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.369728,45.498289],[-113.372561,45.565686],[-113.44285,45.564203],[-113.439933,45.49681],[-113.369728,45.498289]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[309366.0,5041038.0,314856.0,5048532.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9150],"proj:centroid":{"lat":45.53125,"lon":-113.40627},"proj:transform":[0.6,0.0,309366.0,0.0,-0.6,5048532.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511329_nw_12_060_20231117_20240103","bbox":[-113.505449,45.559294,-113.432171,45.628205],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511329_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511329_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511329_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511329_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511329_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511329_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.432171,45.560813],[-113.435085,45.628205],[-113.505449,45.626683],[-113.50245,45.559294],[-113.432171,45.560813]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[304698.0,5048130.0,310188.0,5055624.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9150],"proj:centroid":{"lat":45.59376,"lon":-113.46879},"proj:transform":[0.6,0.0,304698.0,0.0,-0.6,5055624.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511329_ne_12_060_20231117_20240103","bbox":[-113.442871,45.559297,-113.369741,45.628171],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511329_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511329_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511329_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511329_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511329_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511329_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.369741,45.560776],[-113.37258,45.628171],[-113.442871,45.626689],[-113.439947,45.559297],[-113.369741,45.560776]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[309576.0,5047980.0,315060.0,5055474.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9140],"proj:centroid":{"lat":45.59374,"lon":-113.40628},"proj:transform":[0.6,0.0,309576.0,0.0,-0.6,5055474.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511328_sw_12_060_20231117_20240103","bbox":[-113.630531,45.496701,-113.557036,45.565793],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511328_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511328_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511328_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511328_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511328_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511328_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.557036,45.498298],[-113.560099,45.565793],[-113.630531,45.564192],[-113.627385,45.496701],[-113.557036,45.498298]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[294720.0,5041488.0,300222.0,5048994.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12510,9170],"proj:centroid":{"lat":45.53125,"lon":-113.59376},"proj:transform":[0.6,0.0,294720.0,0.0,-0.6,5048994.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511328_se_12_060_20231117_20240103","bbox":[-113.568023,45.49677,-113.494601,45.565773],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511328_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511328_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511328_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511328_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511328_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511328_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.494601,45.498329],[-113.497587,45.565773],[-113.568023,45.564211],[-113.564954,45.49677],[-113.494601,45.498329]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[299598.0,5041338.0,305100.0,5048838.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9170],"proj:centroid":{"lat":45.53128,"lon":-113.53129},"proj:transform":[0.6,0.0,299598.0,0.0,-0.6,5048838.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511328_nw_12_060_20231117_20240103","bbox":[-113.630606,45.55924,-113.557029,45.628279],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511328_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511328_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511328_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511328_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511328_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511328_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.557029,45.560839],[-113.560095,45.628279],[-113.630606,45.626676],[-113.627455,45.55924],[-113.557029,45.560839]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[294942.0,5048436.0,300444.0,5055936.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9170],"proj:centroid":{"lat":45.59377,"lon":-113.5938},"proj:transform":[0.6,0.0,294942.0,0.0,-0.6,5055936.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511328_ne_12_060_20231117_20240103","bbox":[-113.568028,45.559257,-113.494599,45.628259],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511328_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511328_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511328_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511328_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511328_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511328_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.494599,45.560816],[-113.497591,45.628259],[-113.568028,45.626697],[-113.564952,45.559257],[-113.494599,45.560816]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[299820.0,5048280.0,305316.0,5055780.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9160],"proj:centroid":{"lat":45.59376,"lon":-113.53129},"proj:transform":[0.6,0.0,299820.0,0.0,-0.6,5055780.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511327_se_12_060_20231117_20240103","bbox":[-113.693117,45.496703,-113.619474,45.565832],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511327_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511327_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511327_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511327_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511327_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511327_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.619474,45.498341],[-113.622611,45.565832],[-113.693117,45.56419],[-113.689896,45.496703],[-113.619474,45.498341]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[289836.0,5041650.0,295344.0,5049156.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12510,9180],"proj:centroid":{"lat":45.53127,"lon":-113.65627},"proj:transform":[0.6,0.0,289836.0,0.0,-0.6,5049156.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511327_ne_12_060_20231117_20240103","bbox":[-113.693108,45.55919,-113.619457,45.628318],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511327_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511327_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511327_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511327_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511327_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511327_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.619457,45.560828],[-113.622601,45.628318],[-113.693108,45.626677],[-113.68988,45.55919],[-113.619457,45.560828]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[290070.0,5048592.0,295572.0,5056098.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12510,9170],"proj:centroid":{"lat":45.59376,"lon":-113.65626},"proj:transform":[0.6,0.0,290070.0,0.0,-0.6,5056098.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511322_sw_12_060_20231117_20240103","bbox":[-113.380324,45.621859,-113.30726,45.690643],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511322_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511322_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511322_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511322_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511322_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511322_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.30726,45.623299],[-113.310029,45.690643],[-113.380324,45.689199],[-113.377471,45.621859],[-113.30726,45.623299]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[314658.0,5054784.0,320136.0,5062272.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9130],"proj:centroid":{"lat":45.65626,"lon":-113.34377},"proj:transform":[0.6,0.0,314658.0,0.0,-0.6,5062272.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511322_nw_12_060_20231117_20240103","bbox":[-113.38028,45.684345,-113.307286,45.753127],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511322_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511322_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511322_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511322_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511322_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511322_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.307286,45.685784],[-113.310061,45.753127],[-113.38028,45.751685],[-113.377421,45.684345],[-113.307286,45.685784]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[314868.0,5061726.0,320334.0,5069214.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9110],"proj:centroid":{"lat":45.71874,"lon":-113.34376},"proj:transform":[0.6,0.0,314868.0,0.0,-0.6,5069214.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511321_sw_12_060_20231117_20240103","bbox":[-113.505465,45.62178,-113.432102,45.690692],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511321_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511321_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511321_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511321_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511321_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511321_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.432102,45.6233],[-113.435023,45.690692],[-113.505465,45.689168],[-113.50246,45.62178],[-113.432102,45.6233]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[304914.0,5055072.0,310404.0,5062566.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9150],"proj:centroid":{"lat":45.65624,"lon":-113.46876},"proj:transform":[0.6,0.0,304914.0,0.0,-0.6,5062566.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511321_se_12_060_20231117_20240103","bbox":[-113.442894,45.621836,-113.369682,45.690658],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511321_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511321_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511321_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511321_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511321_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511321_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.369682,45.623317],[-113.372525,45.690658],[-113.442894,45.689174],[-113.439966,45.621836],[-113.369682,45.623317]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[309786.0,5054928.0,315270.0,5062416.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9140],"proj:centroid":{"lat":45.65625,"lon":-113.40627},"proj:transform":[0.6,0.0,309786.0,0.0,-0.6,5062416.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511321_nw_12_060_20231117_20240103","bbox":[-113.505486,45.684265,-113.432113,45.75323],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511321_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511321_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511321_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511321_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511321_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511321_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.432113,45.685785],[-113.435043,45.75323],[-113.505486,45.751706],[-113.502472,45.684265],[-113.432113,45.685785]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[305130.0,5062014.0,310614.0,5069514.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9140],"proj:centroid":{"lat":45.71875,"lon":-113.46878},"proj:transform":[0.6,0.0,305130.0,0.0,-0.6,5069514.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511321_ne_12_060_20231117_20240103","bbox":[-113.442845,45.684323,-113.3697,45.753196],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511321_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511321_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511321_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511321_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511321_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511321_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.3697,45.685802],[-113.372552,45.753196],[-113.442845,45.751714],[-113.439909,45.684323],[-113.3697,45.685802]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[310002.0,5061870.0,315474.0,5069364.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9120],"proj:centroid":{"lat":45.71877,"lon":-113.40625},"proj:transform":[0.6,0.0,310002.0,0.0,-0.6,5069364.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511320_sw_12_060_20231117_20240103","bbox":[-113.630608,45.621726,-113.557022,45.690764],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511320_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511320_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511320_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511320_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511320_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511320_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.557022,45.623325],[-113.560095,45.690764],[-113.630608,45.689162],[-113.62745,45.621726],[-113.557022,45.623325]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[295170.0,5055378.0,300666.0,5062878.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9160],"proj:centroid":{"lat":45.65625,"lon":-113.59379},"proj:transform":[0.6,0.0,295170.0,0.0,-0.6,5062878.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511320_se_12_060_20231117_20240103","bbox":[-113.568037,45.621743,-113.4946,45.690744],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511320_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511320_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511320_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511320_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511320_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511320_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.4946,45.623302],[-113.497598,45.690744],[-113.568037,45.689182],[-113.564954,45.621743],[-113.4946,45.623302]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[300042.0,5055222.0,305532.0,5062722.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9150],"proj:centroid":{"lat":45.65625,"lon":-113.5313},"proj:transform":[0.6,0.0,300042.0,0.0,-0.6,5062722.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511320_nw_12_060_20231117_20240103","bbox":[-113.630615,45.684212,-113.557018,45.753303],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511320_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511320_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511320_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511320_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511320_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511320_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.557018,45.685811],[-113.560101,45.753303],[-113.630615,45.7517],[-113.627448,45.684212],[-113.557018,45.685811]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[295398.0,5062320.0,300888.0,5069826.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12510,9150],"proj:centroid":{"lat":45.71876,"lon":-113.5938},"proj:transform":[0.6,0.0,295398.0,0.0,-0.6,5069826.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511320_ne_12_060_20231117_20240103","bbox":[-113.568049,45.684228,-113.494527,45.753231],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511320_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511320_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511320_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511320_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511320_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511320_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.494527,45.685789],[-113.497531,45.753231],[-113.568049,45.751667],[-113.564959,45.684228],[-113.494527,45.685789]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[300264.0,5062164.0,305754.0,5069664.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9150],"proj:centroid":{"lat":45.71874,"lon":-113.53127},"proj:transform":[0.6,0.0,300264.0,0.0,-0.6,5069664.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511319_se_12_060_20231117_20240103","bbox":[-113.693179,45.621675,-113.619443,45.690804],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511319_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511319_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511319_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511319_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511319_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511319_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.619443,45.623314],[-113.622593,45.690804],[-113.693179,45.689161],[-113.689944,45.621675],[-113.619443,45.623314]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[290298.0,5055534.0,295800.0,5063040.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12510,9170],"proj:centroid":{"lat":45.65625,"lon":-113.65629},"proj:transform":[0.6,0.0,290298.0,0.0,-0.6,5063040.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511319_ne_12_060_20231117_20240103","bbox":[-113.693179,45.684161,-113.619431,45.753343],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511319_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511319_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511319_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511319_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511319_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511319_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.619431,45.6858],[-113.622591,45.753343],[-113.693179,45.7517],[-113.689934,45.684161],[-113.619431,45.6858]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[290532.0,5062476.0,296028.0,5069988.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12520,9160],"proj:centroid":{"lat":45.71876,"lon":-113.65628},"proj:transform":[0.6,0.0,290532.0,0.0,-0.6,5069988.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511314_sw_12_060_20231117_20240103","bbox":[-113.380318,45.746883,-113.30724,45.815666],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511314_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511314_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511314_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511314_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511314_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511314_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.30724,45.748323],[-113.310021,45.815666],[-113.380318,45.814222],[-113.377453,45.746883],[-113.30724,45.748323]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[315072.0,5068674.0,320538.0,5076162.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9110],"proj:centroid":{"lat":45.78128,"lon":-113.34376},"proj:transform":[0.6,0.0,315072.0,0.0,-0.6,5076162.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511314_nw_12_060_20231117_20240103","bbox":[-113.380358,45.809367,-113.307272,45.878149],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511314_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511314_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511314_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511314_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511314_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511314_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.307272,45.810807],[-113.310059,45.878149],[-113.380358,45.876705],[-113.377486,45.809367],[-113.307272,45.810807]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[315276.0,5075616.0,320736.0,5083104.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9100],"proj:centroid":{"lat":45.84376,"lon":-113.34379},"proj:transform":[0.6,0.0,315276.0,0.0,-0.6,5083104.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511313_sw_12_060_20231117_20240103","bbox":[-113.505431,45.746805,-113.432129,45.815714],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511313_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511313_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511313_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511313_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511313_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511313_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.432129,45.748324],[-113.435063,45.815714],[-113.505431,45.814192],[-113.502413,45.746805],[-113.432129,45.748324]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[305352.0,5068962.0,310824.0,5076456.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9120],"proj:centroid":{"lat":45.78127,"lon":-113.46876},"proj:transform":[0.6,0.0,305352.0,0.0,-0.6,5076456.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511313_se_12_060_20231117_20240103","bbox":[-113.442874,45.746807,-113.369722,45.815679],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511313_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511313_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511313_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511313_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511313_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511313_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.369722,45.748286],[-113.37258,45.815679],[-113.442874,45.814197],[-113.439931,45.746807],[-113.369722,45.748286]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[310212.0,5068812.0,315678.0,5076306.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9110],"proj:centroid":{"lat":45.78125,"lon":-113.40628},"proj:transform":[0.6,0.0,310212.0,0.0,-0.6,5076306.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511313_nw_12_060_20231117_20240103","bbox":[-113.505456,45.809289,-113.432146,45.878197],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511313_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511313_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511313_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511313_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511313_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511313_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.432146,45.810808],[-113.435086,45.878197],[-113.505456,45.876675],[-113.502431,45.809289],[-113.432146,45.810808]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[305568.0,5075904.0,311034.0,5083398.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9110],"proj:centroid":{"lat":45.84375,"lon":-113.46878},"proj:transform":[0.6,0.0,305568.0,0.0,-0.6,5083398.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511313_ne_12_060_20231117_20240103","bbox":[-113.442906,45.809345,-113.369671,45.878164],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511313_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511313_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511313_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511313_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511313_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511313_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.369671,45.810825],[-113.372533,45.878164],[-113.442906,45.87668],[-113.439959,45.809345],[-113.369671,45.810825]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[310422.0,5075760.0,315888.0,5083248.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9110],"proj:centroid":{"lat":45.84376,"lon":-113.40627},"proj:transform":[0.6,0.0,310422.0,0.0,-0.6,5083248.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511312_sw_12_060_20231117_20240103","bbox":[-113.630622,45.746697,-113.55694,45.815789],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511312_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511312_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511312_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511312_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511312_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511312_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.55694,45.748298],[-113.560029,45.815789],[-113.630622,45.814185],[-113.627448,45.746697],[-113.55694,45.748298]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[295626.0,5069262.0,301116.0,5076768.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12510,9150],"proj:centroid":{"lat":45.78125,"lon":-113.59376},"proj:transform":[0.6,0.0,295626.0,0.0,-0.6,5076768.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511312_se_12_060_20231117_20240103","bbox":[-113.568066,45.746767,-113.494536,45.815769],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511312_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511312_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511312_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511312_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511312_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511312_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.494536,45.748328],[-113.497547,45.815769],[-113.568066,45.814205],[-113.56497,45.746767],[-113.494536,45.748328]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[300486.0,5069112.0,305970.0,5076612.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9140],"proj:centroid":{"lat":45.78127,"lon":-113.53128},"proj:transform":[0.6,0.0,300486.0,0.0,-0.6,5076612.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511312_nw_12_060_20231117_20240103","bbox":[-113.630633,45.809235,-113.556945,45.878273],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511312_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511312_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511312_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511312_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511312_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511312_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.556945,45.810836],[-113.560038,45.878273],[-113.630633,45.876668],[-113.627455,45.809235],[-113.556945,45.810836]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[295854.0,5076210.0,301338.0,5083710.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9140],"proj:centroid":{"lat":45.84376,"lon":-113.59377},"proj:transform":[0.6,0.0,295854.0,0.0,-0.6,5083710.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511312_ne_12_060_20231117_20240103","bbox":[-113.568007,45.809253,-113.494545,45.878252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511312_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511312_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511312_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511312_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511312_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511312_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.494545,45.810812],[-113.497563,45.878252],[-113.568007,45.87669],[-113.564904,45.809253],[-113.494545,45.810812]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[300714.0,5076054.0,306186.0,5083554.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9120],"proj:centroid":{"lat":45.84376,"lon":-113.53125},"proj:transform":[0.6,0.0,300714.0,0.0,-0.6,5083554.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511311_se_12_060_20231117_20240103","bbox":[-113.69318,45.7467,-113.619426,45.815828],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511311_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511311_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511311_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511311_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511311_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511311_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.619426,45.748339],[-113.62259,45.815828],[-113.69318,45.814184],[-113.68993,45.7467],[-113.619426,45.748339]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[290766.0,5069424.0,296256.0,5076930.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12510,9150],"proj:centroid":{"lat":45.78127,"lon":-113.65628},"proj:transform":[0.6,0.0,290766.0,0.0,-0.6,5076930.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511311_ne_12_060_20231117_20240103","bbox":[-113.693183,45.809185,-113.619421,45.878312],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511311_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511311_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511311_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511311_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511311_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511311_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.619421,45.810824],[-113.622592,45.878312],[-113.693183,45.876668],[-113.689927,45.809185],[-113.619421,45.810824]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[291000.0,5076366.0,296484.0,5083872.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12510,9140],"proj:centroid":{"lat":45.84375,"lon":-113.65628},"proj:transform":[0.6,0.0,291000.0,0.0,-0.6,5083872.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511306_nw_12_060_20231117_20240103","bbox":[-113.380369,45.934334,-113.307266,46.003168],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511306_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511306_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511306_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511306_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511306_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511306_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.307266,45.935774],[-113.310067,46.003168],[-113.380369,46.001724],[-113.377483,45.934334],[-113.307266,45.935774]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[315690.0,5089500.0,321138.0,5096994.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9080],"proj:centroid":{"lat":45.96876,"lon":-113.3438},"proj:transform":[0.6,0.0,315690.0,0.0,-0.6,5096994.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511305_sw_12_060_20231117_20240103","bbox":[-113.505486,45.871773,-113.432089,45.940736],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511305_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511305_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511305_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511305_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511305_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511305_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.432089,45.873293],[-113.435038,45.940736],[-113.505486,45.939212],[-113.502452,45.871773],[-113.432089,45.873293]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[305784.0,5082846.0,311250.0,5090346.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9110],"proj:centroid":{"lat":45.90626,"lon":-113.46877},"proj:transform":[0.6,0.0,305784.0,0.0,-0.6,5090346.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511305_se_12_060_20231117_20240103","bbox":[-113.442944,45.871828,-113.369698,45.9407],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511305_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511305_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511305_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511305_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511305_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511305_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.369698,45.873308],[-113.372569,45.9407],[-113.442944,45.939217],[-113.439988,45.871828],[-113.369698,45.873308]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[310632.0,5082702.0,316092.0,5090196.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9100],"proj:centroid":{"lat":45.90627,"lon":-113.4063},"proj:transform":[0.6,0.0,310632.0,0.0,-0.6,5090196.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511305_nw_12_060_20231117_20240103","bbox":[-113.505517,45.934309,-113.432114,46.003217],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511305_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511305_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511305_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511305_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511305_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511305_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.432114,45.935829],[-113.435067,46.003217],[-113.505517,46.001694],[-113.502479,45.934309],[-113.432114,45.935829]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[306000.0,5089794.0,311460.0,5097288.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9100],"proj:centroid":{"lat":45.96877,"lon":-113.46879},"proj:transform":[0.6,0.0,306000.0,0.0,-0.6,5097288.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511305_ne_12_060_20231117_20240103","bbox":[-113.442904,45.934312,-113.36965,46.003183],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511305_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511305_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511305_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511305_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511305_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511305_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.36965,45.935792],[-113.372528,46.003183],[-113.442904,46.0017],[-113.439942,45.934312],[-113.36965,45.935792]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[310848.0,5089644.0,316302.0,5097138.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9090],"proj:centroid":{"lat":45.96875,"lon":-113.40626},"proj:transform":[0.6,0.0,310848.0,0.0,-0.6,5097138.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511304_sw_12_060_20231117_20240103","bbox":[-113.63065,45.871719,-113.55695,45.94081],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511304_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511304_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511304_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511304_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511304_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511304_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.55695,45.87332],[-113.560053,45.94081],[-113.63065,45.939205],[-113.627462,45.871719],[-113.55695,45.87332]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[296082.0,5083152.0,301560.0,5090658.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12510,9130],"proj:centroid":{"lat":45.90627,"lon":-113.59378},"proj:transform":[0.6,0.0,296082.0,0.0,-0.6,5090658.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511304_se_12_060_20231117_20240103","bbox":[-113.568028,45.871737,-113.494558,45.940735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511304_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511304_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511304_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511304_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511304_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511304_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.494558,45.873295],[-113.497582,45.940735],[-113.568028,45.939173],[-113.564918,45.871737],[-113.494558,45.873295]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[300936.0,5082996.0,306402.0,5090496.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9110],"proj:centroid":{"lat":45.90624,"lon":-113.53127},"proj:transform":[0.6,0.0,300936.0,0.0,-0.6,5090496.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511304_nw_12_060_20231117_20240103","bbox":[-113.630667,45.934202,-113.556959,46.003292],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511304_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511304_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511304_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511304_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511304_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511304_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.556959,45.935803],[-113.560068,46.003292],[-113.630667,46.001688],[-113.627472,45.934202],[-113.556959,45.935803]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[296310.0,5090094.0,301782.0,5097600.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12510,9120],"proj:centroid":{"lat":45.96875,"lon":-113.59379},"proj:transform":[0.6,0.0,296310.0,0.0,-0.6,5097600.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511304_ne_12_060_20231117_20240103","bbox":[-113.568054,45.934274,-113.494498,46.003273],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511304_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511304_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511304_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511304_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511304_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511304_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.494498,45.935834],[-113.497529,46.003273],[-113.568054,46.001709],[-113.564938,45.934274],[-113.494498,45.935834]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[301158.0,5089944.0,306624.0,5097444.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9110],"proj:centroid":{"lat":45.96878,"lon":-113.53125},"proj:transform":[0.6,0.0,301158.0,0.0,-0.6,5097444.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511303_se_12_060_20231117_20240103","bbox":[-113.69319,45.871669,-113.619419,45.940795],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511303_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511303_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511303_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511303_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511303_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511303_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.619419,45.873308],[-113.622597,45.940795],[-113.69319,45.939152],[-113.689926,45.871669],[-113.619419,45.873308]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[291234.0,5083308.0,296712.0,5090814.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12510,9130],"proj:centroid":{"lat":45.90624,"lon":-113.65628},"proj:transform":[0.6,0.0,291234.0,0.0,-0.6,5090814.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511303_ne_12_060_20231117_20240103","bbox":[-113.693203,45.934206,-113.619345,46.003333],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511303_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511303_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511303_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511303_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511303_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511303_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.619345,45.935847],[-113.62253,46.003333],[-113.693203,46.001689],[-113.689932,45.934206],[-113.619345,45.935847]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[291468.0,5090256.0,296946.0,5097762.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12510,9130],"proj:centroid":{"lat":45.96878,"lon":-113.65625},"proj:transform":[0.6,0.0,291468.0,0.0,-0.6,5097762.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4911664_se_11_060_20231117_20240103","bbox":[-116.066453,48.997642,-115.995973,49.064871],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4911664_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4911664_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/49116/m_4911664_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/49116/m_4911664_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4911664_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4911664_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.997313,48.997642],[-115.995973,49.064289],[-116.065205,49.064871],[-116.066453,48.998222],[-115.997313,48.997642]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[568284.0,5427678.0,573342.0,5435088.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12350,8430],"proj:centroid":{"lat":49.03126,"lon":-116.03124},"proj:transform":[0.6,0.0,568284.0,0.0,-0.6,5435088.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4811609_nw_11_060_20231117_20240103","bbox":[-117.002728,48.810695,-116.934645,48.876833],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4811609_nw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4811609_nw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/48116/m_4811609_nw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/48116/m_4811609_nw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4811609_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4811609_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.934731,48.810695],[-116.934645,48.876814],[-117.002728,48.876833],[-117.002724,48.810713],[-116.934731,48.810695]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[499800.0,5406414.0,504792.0,5413764.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12250,8320],"proj:centroid":{"lat":48.84377,"lon":-116.96871},"proj:transform":[0.6,0.0,499800.0,0.0,-0.6,5413764.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4811609_ne_11_060_20231117_20240103","bbox":[-116.940288,48.810642,-116.872127,48.876871],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4811609_ne_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4811609_ne_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/48116/m_4811609_ne_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/48116/m_4811609_ne_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4811609_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4811609_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.872295,48.810642],[-116.872127,48.876816],[-116.940209,48.876871],[-116.940288,48.810698],[-116.872295,48.810642]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[504384.0,5406414.0,509376.0,5413770.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12260,8320],"proj:centroid":{"lat":48.84376,"lon":-116.90623},"proj:transform":[0.6,0.0,504384.0,0.0,-0.6,5413770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4811608_se_11_060_20231117_20240103","bbox":[-116.066408,48.872635,-115.995943,48.939865],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4811608_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4811608_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/48116/m_4811608_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/48116/m_4811608_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4811608_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4811608_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.997277,48.872635],[-115.995943,48.939283],[-116.065166,48.939865],[-116.066408,48.873215],[-115.997277,48.872635]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[568458.0,5413782.0,573528.0,5421192.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12350,8450],"proj:centroid":{"lat":48.90626,"lon":-116.0312},"proj:transform":[0.6,0.0,568458.0,0.0,-0.6,5421192.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4811608_ne_11_060_20231117_20240103","bbox":[-116.066472,48.935139,-115.995999,49.002368],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4811608_ne_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4811608_ne_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/48116/m_4811608_ne_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/48116/m_4811608_ne_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4811608_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4811608_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.997337,48.935139],[-115.995999,49.001787],[-116.065227,49.002368],[-116.066472,48.935719],[-115.997337,48.935139]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[568368.0,5420730.0,573432.0,5428140.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12350,8440],"proj:centroid":{"lat":48.96876,"lon":-116.03126},"proj:transform":[0.6,0.0,568368.0,0.0,-0.6,5428140.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4811601_sw_11_060_20231117_20240103","bbox":[-117.002731,48.873198,-116.934645,48.939335],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4811601_sw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4811601_sw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/48116/m_4811601_sw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/48116/m_4811601_sw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4811601_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4811601_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.934732,48.873198],[-116.934645,48.939317],[-117.002731,48.939335],[-117.002727,48.873216],[-116.934732,48.873198]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[499800.0,5413362.0,504786.0,5420712.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12250,8310],"proj:centroid":{"lat":48.90627,"lon":-116.96871},"proj:transform":[0.6,0.0,499800.0,0.0,-0.6,5420712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4811601_se_11_060_20231117_20240103","bbox":[-116.940296,48.873146,-116.872131,48.939374],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4811601_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4811601_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/48116/m_4811601_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/48116/m_4811601_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4811601_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4811601_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.8723,48.873146],[-116.872131,48.939318],[-116.940217,48.939374],[-116.940296,48.873201],[-116.8723,48.873146]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[504378.0,5413362.0,509364.0,5420718.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12260,8310],"proj:centroid":{"lat":48.90627,"lon":-116.90624},"proj:transform":[0.6,0.0,504378.0,0.0,-0.6,5420718.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4811601_nw_11_060_20231117_20240103","bbox":[-117.002734,48.935646,-116.934646,49.001837],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4811601_nw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4811601_nw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/48116/m_4811601_nw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/48116/m_4811601_nw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4811601_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4811601_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.934732,48.935646],[-116.934646,49.001819],[-117.002734,49.001837],[-117.002731,48.935665],[-116.934732,48.935646]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[499800.0,5420304.0,504780.0,5427660.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12260,8300],"proj:centroid":{"lat":48.96875,"lon":-116.96871},"proj:transform":[0.6,0.0,499800.0,0.0,-0.6,5427660.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4811601_ne_11_060_20231117_20240103","bbox":[-116.940303,48.935648,-116.872053,49.001876],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4811601_ne_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4811601_ne_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/48116/m_4811601_ne_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/48116/m_4811601_ne_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4811601_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4811601_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.872223,48.935648],[-116.872053,49.00182],[-116.940224,49.001876],[-116.940303,48.935703],[-116.872223,48.935648]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[504372.0,5420310.0,509358.0,5427666.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12260,8310],"proj:centroid":{"lat":48.96877,"lon":-116.9062},"proj:transform":[0.6,0.0,504372.0,0.0,-0.6,5427666.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711664_se_11_060_20231117_20240103","bbox":[-116.066263,46.997643,-115.99613,47.064843],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711664_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711664_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711664_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711664_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711664_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711664_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.997378,46.997643],[-115.99613,47.064259],[-116.065101,47.064843],[-116.066263,46.998226],[-115.997378,46.997643]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[570990.0,5205390.0,576228.0,5212794.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12340,8730],"proj:centroid":{"lat":47.03125,"lon":-116.03122},"proj:transform":[0.6,0.0,570990.0,0.0,-0.6,5212794.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711664_ne_11_060_20231117_20240103","bbox":[-116.066279,47.060113,-115.99614,47.127366],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711664_ne_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711664_ne_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711664_ne_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711664_ne_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711664_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711664_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.997393,47.060113],[-115.99614,47.126783],[-116.065113,47.127366],[-116.066279,47.060696],[-115.997393,47.060113]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[570906.0,5212332.0,576138.0,5219742.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12350,8720],"proj:centroid":{"lat":47.09375,"lon":-116.03123},"proj:transform":[0.6,0.0,570906.0,0.0,-0.6,5219742.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711663_sw_11_060_20231117_20240103","bbox":[-116.253538,46.997728,-116.183872,47.064763],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711663_sw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711663_sw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711663_sw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711663_sw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711663_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711663_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.184886,46.997728],[-116.183872,47.064294],[-116.252609,47.064763],[-116.253538,46.998196],[-116.184886,46.997728]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[556752.0,5205234.0,561972.0,5212632.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12330,8700],"proj:centroid":{"lat":47.03125,"lon":-116.21873},"proj:transform":[0.6,0.0,556752.0,0.0,-0.6,5212632.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711663_se_11_060_20231117_20240103","bbox":[-116.191113,46.997698,-116.121291,47.06477],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711663_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711663_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711663_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711663_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711663_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711663_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.122383,46.997698],[-116.121291,47.064262],[-116.190107,47.06477],[-116.191113,46.998204],[-116.122383,46.997698]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[561498.0,5205282.0,566724.0,5212680.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12330,8710],"proj:centroid":{"lat":47.03124,"lon":-116.15622},"proj:transform":[0.6,0.0,561498.0,0.0,-0.6,5212680.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711663_nw_11_060_20231117_20240103","bbox":[-116.253535,47.060251,-116.183866,47.127231],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711663_nw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711663_nw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711663_nw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711663_nw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711663_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711663_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.184882,47.060251],[-116.183866,47.126762],[-116.252605,47.127231],[-116.253535,47.060719],[-116.184882,47.060251]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[556686.0,5212182.0,561900.0,5219574.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12320,8690],"proj:centroid":{"lat":47.09375,"lon":-116.21872},"proj:transform":[0.6,0.0,556686.0,0.0,-0.6,5219574.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711663_ne_11_060_20231117_20240103","bbox":[-116.191116,47.060221,-116.121291,47.127293],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711663_ne_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711663_ne_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711663_ne_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711663_ne_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711663_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711663_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.122385,47.060221],[-116.121291,47.126785],[-116.190108,47.127293],[-116.191116,47.060727],[-116.122385,47.060221]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[561426.0,5212230.0,566646.0,5219628.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12330,8700],"proj:centroid":{"lat":47.09376,"lon":-116.15623},"proj:transform":[0.6,0.0,561426.0,0.0,-0.6,5219628.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711662_se_11_060_20231117_20240103","bbox":[-116.315962,46.997778,-116.246453,47.064722],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711662_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711662_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711662_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711662_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711662_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711662_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.247388,46.997778],[-116.246453,47.06429],[-116.315112,47.064722],[-116.315962,46.998208],[-116.247388,46.997778]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[552006.0,5205192.0,557220.0,5212584.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12320,8690],"proj:centroid":{"lat":47.03126,"lon":-116.28123},"proj:transform":[0.6,0.0,552006.0,0.0,-0.6,5212584.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711662_ne_11_060_20231117_20240103","bbox":[-116.315953,47.060301,-116.246441,47.12719],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711662_ne_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711662_ne_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711662_ne_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711662_ne_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711662_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711662_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.247378,47.060301],[-116.246441,47.126759],[-116.315102,47.12719],[-116.315953,47.060731],[-116.247378,47.060301]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[551946.0,5212140.0,557154.0,5219526.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12310,8680],"proj:centroid":{"lat":47.09375,"lon":-116.28122},"proj:transform":[0.6,0.0,551946.0,0.0,-0.6,5219526.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711656_se_11_060_20231117_20240103","bbox":[-116.066293,47.122636,-115.996151,47.189835],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711656_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711656_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711656_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711656_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711656_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711656_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.997405,47.122636],[-115.996151,47.189251],[-116.065126,47.189835],[-116.066293,47.123219],[-115.997405,47.122636]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[570822.0,5219280.0,576048.0,5226684.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12340,8710],"proj:centroid":{"lat":47.15624,"lon":-116.03124},"proj:transform":[0.6,0.0,570822.0,0.0,-0.6,5226684.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711656_ne_11_060_20231117_20240103","bbox":[-116.066306,47.185159,-115.99616,47.252356],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711656_ne_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711656_ne_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711656_ne_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711656_ne_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711656_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711656_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.997416,47.185159],[-115.99616,47.251773],[-116.065136,47.252356],[-116.066306,47.185741],[-115.997416,47.185159]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[570738.0,5226228.0,575958.0,5233632.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12340,8700],"proj:centroid":{"lat":47.21876,"lon":-116.03125},"proj:transform":[0.6,0.0,570738.0,0.0,-0.6,5233632.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711655_sw_11_060_20231117_20240103","bbox":[-116.253532,47.12272,-116.183858,47.189753],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711655_sw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711655_sw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711655_sw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711655_sw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711655_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711655_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.184877,47.12272],[-116.183858,47.189284],[-116.252599,47.189753],[-116.253532,47.123188],[-116.184877,47.12272]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[556620.0,5219124.0,561828.0,5226522.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12330,8680],"proj:centroid":{"lat":47.15624,"lon":-116.21872},"proj:transform":[0.6,0.0,556620.0,0.0,-0.6,5226522.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711655_se_11_060_20231117_20240103","bbox":[-116.191119,47.12269,-116.12129,47.189761],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711655_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711655_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711655_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711655_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711655_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711655_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.122386,47.12269],[-116.12129,47.189253],[-116.190108,47.189761],[-116.191119,47.123196],[-116.122386,47.12269]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[561354.0,5219172.0,566568.0,5226570.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12330,8690],"proj:centroid":{"lat":47.15623,"lon":-116.15623},"proj:transform":[0.6,0.0,561354.0,0.0,-0.6,5226570.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711655_nw_11_060_20231117_20240103","bbox":[-116.253527,47.185242,-116.18385,47.252275],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711655_nw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711655_nw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711655_nw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711655_nw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711655_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711655_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.184871,47.185242],[-116.18385,47.251806],[-116.252592,47.252275],[-116.253527,47.18571],[-116.184871,47.185242]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[556554.0,5226072.0,561756.0,5233470.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12330,8670],"proj:centroid":{"lat":47.21877,"lon":-116.21871},"proj:transform":[0.6,0.0,556554.0,0.0,-0.6,5233470.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711655_ne_11_060_20231117_20240103","bbox":[-116.19112,47.185213,-116.121287,47.252282],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711655_ne_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711655_ne_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711655_ne_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711655_ne_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711655_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711655_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.122386,47.185213],[-116.121287,47.251775],[-116.190107,47.252282],[-116.19112,47.185718],[-116.122386,47.185213]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[561282.0,5226120.0,566490.0,5233518.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12330,8680],"proj:centroid":{"lat":47.21875,"lon":-116.15623},"proj:transform":[0.6,0.0,561282.0,0.0,-0.6,5233518.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711654_se_11_060_20231117_20240103","bbox":[-116.315944,47.12277,-116.246428,47.189712],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711654_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711654_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711654_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711654_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711654_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711654_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.247367,47.12277],[-116.246428,47.189281],[-116.31509,47.189712],[-116.315944,47.1232],[-116.247367,47.12277]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[551886.0,5219082.0,557088.0,5226474.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12320,8670],"proj:centroid":{"lat":47.15625,"lon":-116.28121},"proj:transform":[0.6,0.0,551886.0,0.0,-0.6,5226474.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711654_ne_11_060_20231117_20240103","bbox":[-116.316012,47.185292,-116.246414,47.252234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711654_ne_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711654_ne_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711654_ne_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711654_ne_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711654_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711654_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.247355,47.185292],[-116.246414,47.251802],[-116.315156,47.252234],[-116.316012,47.185722],[-116.247355,47.185292]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[551820.0,5226030.0,557022.0,5233422.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12320,8670],"proj:centroid":{"lat":47.21877,"lon":-116.28123},"proj:transform":[0.6,0.0,551820.0,0.0,-0.6,5233422.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711648_se_11_060_20231117_20240103","bbox":[-116.066319,47.247627,-115.996167,47.314878],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711648_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711648_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711648_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711648_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711648_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711648_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.997427,47.247627],[-115.996167,47.314294],[-116.065145,47.314878],[-116.066319,47.248209],[-115.997427,47.247627]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[570654.0,5233170.0,575868.0,5240580.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12350,8690],"proj:centroid":{"lat":47.28126,"lon":-116.03126},"proj:transform":[0.6,0.0,570654.0,0.0,-0.6,5240580.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711647_sw_11_060_20231117_20240103","bbox":[-116.2536,47.247764,-116.183841,47.314742],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711647_sw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711647_sw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711647_sw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711647_sw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711647_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711647_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.184864,47.247764],[-116.183841,47.314273],[-116.252664,47.314742],[-116.2536,47.248232],[-116.184864,47.247764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[556482.0,5233020.0,561684.0,5240412.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12320,8670],"proj:centroid":{"lat":47.28126,"lon":-116.21874},"proj:transform":[0.6,0.0,556482.0,0.0,-0.6,5240412.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711647_se_11_060_20231117_20240103","bbox":[-116.19112,47.247734,-116.121283,47.314803],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711647_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711647_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711647_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711647_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711647_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711647_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.122384,47.247734],[-116.121283,47.314296],[-116.190105,47.314803],[-116.19112,47.24824],[-116.122384,47.247734]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[561210.0,5233068.0,566412.0,5240466.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12330,8670],"proj:centroid":{"lat":47.28128,"lon":-116.15622},"proj:transform":[0.6,0.0,561210.0,0.0,-0.6,5240466.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711647_nw_11_060_20231117_20240103","bbox":[-116.253594,47.310231,-116.183831,47.377262],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711647_nw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711647_nw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711647_nw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711647_nw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711647_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711647_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.184856,47.310231],[-116.183831,47.376793],[-116.252655,47.377262],[-116.253594,47.310699],[-116.184856,47.310231]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[556416.0,5239962.0,561612.0,5247360.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12330,8660],"proj:centroid":{"lat":47.34375,"lon":-116.21873},"proj:transform":[0.6,0.0,556416.0,0.0,-0.6,5247360.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711646_se_11_060_20231117_20240103","bbox":[-116.316001,47.247759,-116.246399,47.3147],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711646_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711646_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711646_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711646_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711646_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711646_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.247343,47.247759],[-116.246399,47.314269],[-116.315144,47.3147],[-116.316001,47.24819],[-116.247343,47.247759]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[551760.0,5232972.0,556956.0,5240364.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12320,8660],"proj:centroid":{"lat":47.28124,"lon":-116.28122},"proj:transform":[0.6,0.0,551760.0,0.0,-0.6,5240364.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711646_ne_11_060_20231117_20240103","bbox":[-116.315989,47.31028,-116.246463,47.37722],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711646_ne_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711646_ne_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711646_ne_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711646_ne_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711646_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711646_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.247408,47.31028],[-116.246463,47.37679],[-116.315129,47.37722],[-116.315989,47.31071],[-116.247408,47.31028]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[551700.0,5239920.0,556884.0,5247312.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12320,8640],"proj:centroid":{"lat":47.34376,"lon":-116.28125},"proj:transform":[0.6,0.0,551700.0,0.0,-0.6,5247312.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711639_sw_11_060_20231117_20240103","bbox":[-116.253587,47.372751,-116.18382,47.439727],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711639_sw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711639_sw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711639_sw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711639_sw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711639_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711639_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.184847,47.372751],[-116.18382,47.439258],[-116.252647,47.439727],[-116.253587,47.373219],[-116.184847,47.372751]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[556350.0,5246910.0,561540.0,5254302.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12320,8650],"proj:centroid":{"lat":47.40625,"lon":-116.21873},"proj:transform":[0.6,0.0,556350.0,0.0,-0.6,5254302.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711639_nw_11_060_20231117_20240103","bbox":[-116.253578,47.43527,-116.183808,47.502246],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711639_nw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711639_nw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711639_nw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711639_nw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711639_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711639_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.184837,47.43527],[-116.183808,47.501777],[-116.252636,47.502246],[-116.253578,47.435738],[-116.184837,47.43527]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[556284.0,5253858.0,561468.0,5261250.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12320,8640],"proj:centroid":{"lat":47.46876,"lon":-116.21871},"proj:transform":[0.6,0.0,556284.0,0.0,-0.6,5261250.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711638_se_11_060_20231117_20240103","bbox":[-116.315976,47.3728,-116.246446,47.43974],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711638_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711638_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711638_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711638_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711638_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711638_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.247394,47.3728],[-116.246446,47.439309],[-116.315114,47.43974],[-116.315976,47.37323],[-116.247394,47.3728]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[551640.0,5246868.0,556818.0,5254260.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12320,8630],"proj:centroid":{"lat":47.40628,"lon":-116.28123},"proj:transform":[0.6,0.0,551640.0,0.0,-0.6,5254260.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711638_ne_11_060_20231117_20240103","bbox":[-116.316042,47.435266,-116.246429,47.502205],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711638_ne_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711638_ne_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711638_ne_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47116/m_4711638_ne_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711638_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711638_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.247379,47.435266],[-116.246429,47.501773],[-116.315178,47.502205],[-116.316042,47.435696],[-116.247379,47.435266]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[551574.0,5253810.0,556752.0,5261202.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12320,8630],"proj:centroid":{"lat":47.46874,"lon":-116.28126},"proj:transform":[0.6,0.0,551574.0,0.0,-0.6,5261202.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711549_nw_11_060_20231117_20240103","bbox":[-116.0039,47.185081,-115.933596,47.25237],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711549_nw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711549_nw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47115/m_4711549_nw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47115/m_4711549_nw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711549_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711549_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.934932,47.185081],[-115.933596,47.251748],[-116.002651,47.25237],[-116.0039,47.185701],[-115.934932,47.185081]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[575466.0,5226282.0,580692.0,5233692.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12350,8710],"proj:centroid":{"lat":47.21873,"lon":-115.96877},"proj:transform":[0.6,0.0,575466.0,0.0,-0.6,5233692.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4711541_sw_11_060_20231117_20240103","bbox":[-116.003838,47.247602,-115.93353,47.31489],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4711541_sw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4711541_sw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47115/m_4711541_sw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/47115/m_4711541_sw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4711541_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4711541_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.934869,47.247602],[-115.93353,47.314268],[-116.002586,47.31489],[-116.003838,47.248223],[-115.934869,47.247602]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[575382.0,5233230.0,580602.0,5240640.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12350,8700],"proj:centroid":{"lat":47.28125,"lon":-115.96871},"proj:transform":[0.6,0.0,575382.0,0.0,-0.6,5240640.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4611608_ne_11_060_20231117_20240103","bbox":[-116.066247,46.935119,-115.996195,47.002374],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4611608_ne_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4611608_ne_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/46116/m_4611608_ne_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/46116/m_4611608_ne_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4611608_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4611608_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.997442,46.935119],[-115.996195,47.00179],[-116.065086,47.002374],[-116.066247,46.935701],[-115.997442,46.935119]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[571074.0,5198442.0,576312.0,5205852.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12350,8730],"proj:centroid":{"lat":46.96875,"lon":-116.03124},"proj:transform":[0.6,0.0,571074.0,0.0,-0.6,5205852.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4611607_nw_11_060_20231117_20240103","bbox":[-116.25354,46.935258,-116.183877,47.002239],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4611607_nw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4611607_nw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/46116/m_4611607_nw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/46116/m_4611607_nw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4611607_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4611607_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.184888,46.935258],[-116.183877,47.00177],[-116.252614,47.002239],[-116.25354,46.935726],[-116.184888,46.935258]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[556818.0,5198292.0,562044.0,5205684.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12320,8710],"proj:centroid":{"lat":46.96876,"lon":-116.21873},"proj:transform":[0.6,0.0,556818.0,0.0,-0.6,5205684.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"id_m_4611606_ne_11_060_20231117_20240103","bbox":[-116.31597,46.935308,-116.246464,47.002198],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/id_m_4611606_ne_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=id_m_4611606_ne_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/46116/m_4611606_ne_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/id/2023/id_060cm_2023/46116/m_4611606_ne_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=id_m_4611606_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=id_m_4611606_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-116.247397,46.935308],[-116.246464,47.001767],[-116.315122,47.002198],[-116.31597,46.935738],[-116.247397,46.935308]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[552066.0,5198250.0,557286.0,5205636.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"id","proj:shape":[12310,8700],"proj:centroid":{"lat":46.96876,"lon":-116.28124},"proj:transform":[0.6,0.0,552066.0,0.0,-0.6,5205636.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506963_se_19_030_20231115_20240103","bbox":[-69.190252,44.998074,-69.122282,45.064384],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506963_se_19_030_20231115_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506963_se_19_030_20231115_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506963_se_19_030_20231115_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506963_se_19_030_20231115_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506963_se_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506963_se_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.122282,44.998167],[-69.122423,45.064384],[-69.190252,45.064291],[-69.190033,44.998074],[-69.122282,44.998167]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-15T16:00:00Z","naip:year":"2023","proj:bbox":[485022.0,4982754.0,490362.0,4990110.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24520,17800],"proj:centroid":{"lat":45.03124,"lon":-69.15625},"proj:transform":[0.3,0.0,485022.0,0.0,-0.3,4990110.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506963_ne_19_030_20231115_20240103","bbox":[-69.190231,45.060619,-69.122339,45.126874],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506963_ne_19_030_20231115_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506963_ne_19_030_20231115_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506963_ne_19_030_20231115_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506963_ne_19_030_20231115_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506963_ne_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506963_ne_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.122339,45.060712],[-69.12248,45.126874],[-69.190231,45.126782],[-69.190011,45.060619],[-69.122339,45.060712]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-15T16:00:00Z","naip:year":"2023","proj:bbox":[485040.0,4989702.0,490368.0,4997052.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24500,17760],"proj:centroid":{"lat":45.09375,"lon":-69.15627},"proj:transform":[0.3,0.0,485040.0,0.0,-0.3,4997052.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506955_se_19_030_20231115_20240103","bbox":[-69.190286,45.123109,-69.12232,45.189418],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506955_se_19_030_20231115_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506955_se_19_030_20231115_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506955_se_19_030_20231115_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506955_se_19_030_20231115_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506955_se_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506955_se_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.12232,45.123202],[-69.122462,45.189418],[-69.190286,45.189325],[-69.190066,45.123109],[-69.12232,45.123202]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-15T16:00:00Z","naip:year":"2023","proj:bbox":[485052.0,4996644.0,490380.0,5004000.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24520,17760],"proj:centroid":{"lat":45.15627,"lon":-69.15628},"proj:transform":[0.3,0.0,485052.0,0.0,-0.3,5004000.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506955_ne_19_030_20231115_20240103","bbox":[-69.190265,45.185599,-69.122301,45.251907],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506955_ne_19_030_20231115_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506955_ne_19_030_20231115_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506955_ne_19_030_20231115_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506955_ne_19_030_20231115_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506955_ne_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506955_ne_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.122301,45.185692],[-69.122443,45.251907],[-69.190265,45.251814],[-69.190045,45.185599],[-69.122301,45.185692]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-15T16:00:00Z","naip:year":"2023","proj:bbox":[485070.0,5003586.0,490392.0,5010942.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24520,17740],"proj:centroid":{"lat":45.21876,"lon":-69.15626},"proj:transform":[0.3,0.0,485070.0,0.0,-0.3,5010942.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506947_se_19_030_20231115_20240103","bbox":[-69.190245,45.248088,-69.122282,45.314395],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506947_se_19_030_20231115_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506947_se_19_030_20231115_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506947_se_19_030_20231115_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506947_se_19_030_20231115_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506947_se_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506947_se_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.122282,45.248181],[-69.122424,45.314395],[-69.190245,45.314303],[-69.190024,45.248088],[-69.122282,45.248181]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-15T16:00:00Z","naip:year":"2023","proj:bbox":[485088.0,5010528.0,490404.0,5017884.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24520,17720],"proj:centroid":{"lat":45.28125,"lon":-69.15624},"proj:transform":[0.3,0.0,485088.0,0.0,-0.3,5017884.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506947_ne_19_030_20231115_20240103","bbox":[-69.190301,45.310576,-69.122263,45.376883],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506947_ne_19_030_20231115_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506947_ne_19_030_20231115_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506947_ne_19_030_20231115_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506947_ne_19_030_20231115_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506947_ne_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506947_ne_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.122263,45.310669],[-69.122406,45.376883],[-69.190301,45.37679],[-69.190079,45.310576],[-69.122263,45.310669]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-15T16:00:00Z","naip:year":"2023","proj:bbox":[485100.0,5017470.0,490416.0,5024826.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24520,17720],"proj:centroid":{"lat":45.34374,"lon":-69.15626},"proj:transform":[0.3,0.0,485100.0,0.0,-0.3,5024826.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506939_se_19_030_20231115_20240103","bbox":[-69.190281,45.373118,-69.122321,45.439424],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506939_se_19_030_20231115_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506939_se_19_030_20231115_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506939_se_19_030_20231115_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506939_se_19_030_20231115_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506939_se_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506939_se_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.122321,45.373211],[-69.122464,45.439424],[-69.190281,45.439331],[-69.190059,45.373118],[-69.122321,45.373211]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-15T16:00:00Z","naip:year":"2023","proj:bbox":[485118.0,5024418.0,490422.0,5031774.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24520,17680],"proj:centroid":{"lat":45.40628,"lon":-69.15628},"proj:transform":[0.3,0.0,485118.0,0.0,-0.3,5031774.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406931_se_19_030_20231115_20240103","bbox":[-69.190202,44.498121,-69.122365,44.564383],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406931_se_19_030_20231115_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406931_se_19_030_20231115_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406931_se_19_030_20231115_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406931_se_19_030_20231115_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406931_se_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406931_se_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.122365,44.498213],[-69.122503,44.564383],[-69.190202,44.56429],[-69.189987,44.498121],[-69.122365,44.498213]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-15T16:00:00Z","naip:year":"2023","proj:bbox":[484896.0,4927218.0,490272.0,4934568.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24500,17920],"proj:centroid":{"lat":44.53126,"lon":-69.15626},"proj:transform":[0.3,0.0,484896.0,0.0,-0.3,4934568.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406931_ne_19_030_20231115_20240103","bbox":[-69.190255,44.560617,-69.122344,44.626879],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406931_ne_19_030_20231115_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406931_ne_19_030_20231115_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406931_ne_19_030_20231115_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406931_ne_19_030_20231115_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406931_ne_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406931_ne_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.122344,44.56071],[-69.122483,44.626879],[-69.190255,44.626786],[-69.190039,44.560617],[-69.122344,44.56071]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-15T16:00:00Z","naip:year":"2023","proj:bbox":[484908.0,4934160.0,490284.0,4941510.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24500,17920],"proj:centroid":{"lat":44.59375,"lon":-69.15628},"proj:transform":[0.3,0.0,484908.0,0.0,-0.3,4941510.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406923_se_19_030_20231115_20240103","bbox":[-69.190232,44.623113,-69.122324,44.689374],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406923_se_19_030_20231115_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406923_se_19_030_20231115_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406923_se_19_030_20231115_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406923_se_19_030_20231115_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406923_se_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406923_se_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.122324,44.623206],[-69.122463,44.689374],[-69.190232,44.689281],[-69.190016,44.623113],[-69.122324,44.623206]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-15T16:00:00Z","naip:year":"2023","proj:bbox":[484926.0,4941102.0,490296.0,4948452.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24500,17900],"proj:centroid":{"lat":44.65625,"lon":-69.15626},"proj:transform":[0.3,0.0,484926.0,0.0,-0.3,4948452.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406923_ne_19_030_20231115_20240103","bbox":[-69.19021,44.685608,-69.122304,44.751922],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406923_ne_19_030_20231115_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406923_ne_19_030_20231115_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406923_ne_19_030_20231115_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406923_ne_19_030_20231115_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406923_ne_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406923_ne_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.122304,44.685701],[-69.122444,44.751922],[-69.19021,44.75183],[-69.189993,44.685608],[-69.122304,44.685701]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-15T16:00:00Z","naip:year":"2023","proj:bbox":[484944.0,4948044.0,490308.0,4955400.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24520,17880],"proj:centroid":{"lat":44.71877,"lon":-69.15624},"proj:transform":[0.3,0.0,484944.0,0.0,-0.3,4955400.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406915_se_19_030_20231115_20240103","bbox":[-69.190263,44.748103,-69.122284,44.814416],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406915_se_19_030_20231115_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406915_se_19_030_20231115_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406915_se_19_030_20231115_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406915_se_19_030_20231115_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406915_se_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406915_se_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.122284,44.748195],[-69.122424,44.814416],[-69.190263,44.814323],[-69.190046,44.748103],[-69.122284,44.748195]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-15T16:00:00Z","naip:year":"2023","proj:bbox":[484956.0,4954986.0,490320.0,4962342.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24520,17880],"proj:centroid":{"lat":44.78127,"lon":-69.15625},"proj:transform":[0.3,0.0,484956.0,0.0,-0.3,4962342.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406915_ne_19_030_20231115_20240103","bbox":[-69.190241,44.810597,-69.12234,44.876909],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406915_ne_19_030_20231115_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406915_ne_19_030_20231115_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406915_ne_19_030_20231115_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406915_ne_19_030_20231115_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406915_ne_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406915_ne_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.12234,44.810689],[-69.122481,44.876909],[-69.190241,44.876816],[-69.190023,44.810597],[-69.12234,44.810689]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-15T16:00:00Z","naip:year":"2023","proj:bbox":[484974.0,4961928.0,490326.0,4969284.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24520,17840],"proj:centroid":{"lat":44.84376,"lon":-69.15627},"proj:transform":[0.3,0.0,484974.0,0.0,-0.3,4969284.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406907_se_19_030_20231115_20240103","bbox":[-69.190219,44.87309,-69.122321,44.939401],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406907_se_19_030_20231115_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406907_se_19_030_20231115_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406907_se_19_030_20231115_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406907_se_19_030_20231115_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406907_se_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406907_se_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.122321,44.873182],[-69.122461,44.939401],[-69.190219,44.939309],[-69.190001,44.87309],[-69.122321,44.873182]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-15T16:00:00Z","naip:year":"2023","proj:bbox":[484992.0,4968870.0,490338.0,4976226.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24520,17820],"proj:centroid":{"lat":44.90625,"lon":-69.15625},"proj:transform":[0.3,0.0,484992.0,0.0,-0.3,4976226.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406907_ne_19_030_20231115_20240103","bbox":[-69.190274,44.935582,-69.122301,45.001893],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406907_ne_19_030_20231115_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406907_ne_19_030_20231115_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406907_ne_19_030_20231115_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406907_ne_19_030_20231115_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406907_ne_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406907_ne_19_030_20231115_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.122301,44.935675],[-69.122442,45.001893],[-69.190274,45.0018],[-69.190055,44.935582],[-69.122301,44.935675]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-15T16:00:00Z","naip:year":"2023","proj:bbox":[485004.0,4975812.0,490350.0,4983168.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24520,17820],"proj:centroid":{"lat":44.96874,"lon":-69.15627},"proj:transform":[0.3,0.0,485004.0,0.0,-0.3,4983168.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"va_m_3807708_sw_18_060_20231113_20240103","bbox":[-77.129202,38.87201,-77.058351,38.940463],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/va_m_3807708_sw_18_060_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=va_m_3807708_sw_18_060_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/va/2023/va_060cm_2023/38077/m_3807708_sw_18_060_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/va/2023/va_060cm_2023/38077/m_3807708_sw_18_060_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=va_m_3807708_sw_18_060_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=va_m_3807708_sw_18_060_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-77.058351,38.873244],[-77.060293,38.940463],[-77.129202,38.939226],[-77.127195,38.87201],[-77.058351,38.873244]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[315462.0,4304724.0,321438.0,4312188.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"va","proj:shape":[12440,9960],"proj:centroid":{"lat":38.90624,"lon":-77.09376},"proj:transform":[0.6,0.0,315462.0,0.0,-0.6,4312188.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"va_m_3807708_se_18_060_20231113_20240103","bbox":[-77.066695,38.87205,-76.995901,38.940415],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/va_m_3807708_se_18_060_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=va_m_3807708_se_18_060_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/va/2023/va_060cm_2023/38077/m_3807708_se_18_060_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/va/2023/va_060cm_2023/38077/m_3807708_se_18_060_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=va_m_3807708_se_18_060_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=va_m_3807708_se_18_060_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-76.995901,38.873248],[-76.997783,38.940415],[-77.066695,38.939214],[-77.064748,38.87205],[-76.995901,38.873248]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[320880.0,4304604.0,326856.0,4312062.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"va","proj:shape":[12430,9960],"proj:centroid":{"lat":38.90624,"lon":-77.03128},"proj:transform":[0.6,0.0,320880.0,0.0,-0.6,4312062.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"va_m_3807708_nw_18_060_20231113_20240103","bbox":[-77.129274,38.934504,-77.058288,39.002958],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/va_m_3807708_nw_18_060_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=va_m_3807708_nw_18_060_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/va/2023/va_060cm_2023/38077/m_3807708_nw_18_060_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/va/2023/va_060cm_2023/38077/m_3807708_nw_18_060_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=va_m_3807708_nw_18_060_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=va_m_3807708_nw_18_060_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-77.058288,38.935741],[-77.060235,39.002958],[-77.129274,39.001718],[-77.127261,38.934504],[-77.058288,38.935741]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[315618.0,4311660.0,321600.0,4319124.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"va","proj:shape":[12440,9970],"proj:centroid":{"lat":38.96874,"lon":-77.09376},"proj:transform":[0.6,0.0,315618.0,0.0,-0.6,4319124.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506962_sw_19_030_20231113_20240103","bbox":[-69.377964,44.997986,-69.309626,45.064515],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506962_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506962_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506962_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506962_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506962_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506962_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.309626,44.99819],[-69.309983,45.064515],[-69.377964,45.064311],[-69.377528,44.997986],[-69.309626,44.99819]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[470244.0,4982796.0,475596.0,4990164.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24560,17840],"proj:centroid":{"lat":45.03126,"lon":-69.34378},"proj:transform":[0.3,0.0,470244.0,0.0,-0.3,4990164.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506962_nw_19_030_20231113_20240103","bbox":[-69.377995,45.060477,-69.309582,45.127006],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506962_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506962_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506962_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506962_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506962_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506962_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.309582,45.060682],[-69.30994,45.127006],[-69.377995,45.126801],[-69.377558,45.060477],[-69.309582,45.060682]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[470274.0,4989738.0,475626.0,4997106.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24560,17840],"proj:centroid":{"lat":45.09375,"lon":-69.34377},"proj:transform":[0.3,0.0,470274.0,0.0,-0.3,4997106.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506962_ne_19_030_20231113_20240103","bbox":[-69.315432,45.060505,-69.247167,45.126942],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506962_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506962_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506962_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506962_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506962_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506962_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.247167,45.060672],[-69.247453,45.126942],[-69.315432,45.126775],[-69.315068,45.060505],[-69.247167,45.060672]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[475194.0,4989720.0,480540.0,4997082.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24540,17820],"proj:centroid":{"lat":45.09373,"lon":-69.28128},"proj:transform":[0.3,0.0,475194.0,0.0,-0.3,4997082.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506961_sw_19_030_20231113_20240103","bbox":[-69.503105,44.997937,-69.434471,45.064594],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506961_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506961_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506961_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506961_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506961_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506961_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.434471,44.998216],[-69.434973,45.064594],[-69.503105,45.064314],[-69.502524,44.997937],[-69.434471,44.998216]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[460392.0,4982844.0,465756.0,4990218.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24580,17880],"proj:centroid":{"lat":45.03127,"lon":-69.46877},"proj:transform":[0.3,0.0,460392.0,0.0,-0.3,4990218.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506961_se_19_030_20231113_20240103","bbox":[-69.440535,44.997978,-69.372048,45.064545],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506961_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506961_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506961_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506961_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506961_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506961_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.372048,44.99822],[-69.372478,45.064545],[-69.440535,45.064302],[-69.440026,44.997978],[-69.372048,44.99822]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[465318.0,4982820.0,470676.0,4990188.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24560,17860],"proj:centroid":{"lat":45.03127,"lon":-69.40627},"proj:transform":[0.3,0.0,465318.0,0.0,-0.3,4990188.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506961_nw_19_030_20231113_20240103","bbox":[-69.50312,45.060428,-69.434486,45.127084],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506961_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506961_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506961_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506961_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506961_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506961_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.434486,45.060707],[-69.43499,45.127084],[-69.50312,45.126804],[-69.502538,45.060428],[-69.434486,45.060707]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[460434.0,4989786.0,465792.0,4997160.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24580,17860],"proj:centroid":{"lat":45.09376,"lon":-69.46878},"proj:transform":[0.3,0.0,460434.0,0.0,-0.3,4997160.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506961_ne_19_030_20231113_20240103","bbox":[-69.440557,45.060469,-69.371996,45.127035],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506961_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506961_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506961_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506961_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506961_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506961_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.371996,45.060711],[-69.372427,45.127035],[-69.440557,45.126793],[-69.440048,45.060469],[-69.371996,45.060711]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[465354.0,4989762.0,470712.0,4997130.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24560,17860],"proj:centroid":{"lat":45.09376,"lon":-69.40626},"proj:transform":[0.3,0.0,465354.0,0.0,-0.3,4997130.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506960_sw_19_030_20231113_20240103","bbox":[-69.628246,44.997858,-69.559316,45.064643],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506960_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506960_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506960_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506960_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506960_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506960_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.559316,44.998213],[-69.559963,45.064643],[-69.628246,45.064288],[-69.62752,44.997858],[-69.559316,44.998213]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[450540.0,4982904.0,455916.0,4990284.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24600,17920],"proj:centroid":{"lat":45.03126,"lon":-69.59376},"proj:transform":[0.3,0.0,450540.0,0.0,-0.3,4990284.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506960_se_19_030_20231113_20240103","bbox":[-69.565676,44.997861,-69.496893,45.064609],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506960_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506960_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506960_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506960_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506960_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506960_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.496893,44.998177],[-69.497468,45.064609],[-69.565676,45.064291],[-69.565022,44.997861],[-69.496893,44.998177]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[455466.0,4982868.0,460836.0,4990248.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24600,17900],"proj:centroid":{"lat":45.03124,"lon":-69.53126},"proj:transform":[0.3,0.0,455466.0,0.0,-0.3,4990248.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506960_nw_19_030_20231113_20240103","bbox":[-69.628245,45.060349,-69.559315,45.127134],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506960_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506960_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506960_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506960_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506960_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506960_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.559315,45.060704],[-69.559964,45.127134],[-69.628245,45.126778],[-69.627517,45.060349],[-69.559315,45.060704]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[450594.0,4989846.0,455964.0,4997226.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24600,17900],"proj:centroid":{"lat":45.09375,"lon":-69.59376},"proj:transform":[0.3,0.0,450594.0,0.0,-0.3,4997226.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506960_ne_19_030_20231113_20240103","bbox":[-69.565683,45.060406,-69.496901,45.127099],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506960_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506960_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506960_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506960_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506960_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506960_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.496901,45.060722],[-69.497477,45.127099],[-69.565683,45.126781],[-69.565028,45.060406],[-69.496901,45.060722]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[455514.0,4989816.0,460878.0,4997190.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24580,17880],"proj:centroid":{"lat":45.09376,"lon":-69.53127},"proj:transform":[0.3,0.0,455514.0,0.0,-0.3,4997190.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506959_sw_19_030_20231113_20240103","bbox":[-69.753387,44.997805,-69.684161,45.064718],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506959_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506959_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506959_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506959_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506959_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506959_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.684161,44.998235],[-69.684953,45.064718],[-69.753387,45.064287],[-69.752516,44.997805],[-69.684161,44.998235]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[440688.0,4982982.0,446076.0,4990368.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24620,17960],"proj:centroid":{"lat":45.03127,"lon":-69.71875},"proj:transform":[0.3,0.0,440688.0,0.0,-0.3,4990368.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506959_se_19_030_20231113_20240103","bbox":[-69.690817,44.997822,-69.621738,45.064698],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506959_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506959_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506959_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506959_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506959_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506959_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.621738,44.998214],[-69.622458,45.064698],[-69.690817,45.064305],[-69.690018,44.997822],[-69.621738,44.998214]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[445614.0,4982940.0,450996.0,4990326.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24620,17940],"proj:centroid":{"lat":45.03127,"lon":-69.65626},"proj:transform":[0.3,0.0,445614.0,0.0,-0.3,4990326.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506959_nw_19_030_20231113_20240103","bbox":[-69.75337,45.060296,-69.684144,45.127209],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506959_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506959_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506959_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506959_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506959_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506959_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.684144,45.060726],[-69.684938,45.127209],[-69.75337,45.126778],[-69.752497,45.060296],[-69.684144,45.060726]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[440754.0,4989924.0,446136.0,4997310.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24620,17940],"proj:centroid":{"lat":45.09376,"lon":-69.71874},"proj:transform":[0.3,0.0,440754.0,0.0,-0.3,4997310.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506959_ne_19_030_20231113_20240103","bbox":[-69.690808,45.060313,-69.621729,45.127188],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506959_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506959_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506959_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506959_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506959_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506959_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.621729,45.060705],[-69.622451,45.127188],[-69.690808,45.126795],[-69.690007,45.060313],[-69.621729,45.060705]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[445674.0,4989882.0,451050.0,4997268.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24620,17920],"proj:centroid":{"lat":45.09376,"lon":-69.65625},"proj:transform":[0.3,0.0,445674.0,0.0,-0.3,4997268.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506958_sw_19_030_20231113_20240103","bbox":[-69.878528,44.997723,-69.809006,45.064764],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506958_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506958_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506958_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506958_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506958_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506958_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.809006,44.998229],[-69.809944,45.064764],[-69.878528,45.064257],[-69.877511,44.997723],[-69.809006,44.998229]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[430836.0,4983072.0,436236.0,4990464.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24640,18000],"proj:centroid":{"lat":45.03125,"lon":-69.84375},"proj:transform":[0.3,0.0,430836.0,0.0,-0.3,4990464.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506958_se_19_030_20231113_20240103","bbox":[-69.815958,44.997754,-69.746583,45.064758],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506958_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506958_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506958_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506958_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506958_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506958_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.746583,44.998222],[-69.747449,45.064758],[-69.815958,45.064289],[-69.815013,44.997754],[-69.746583,44.998222]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[435762.0,4983024.0,441156.0,4990416.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24640,17980],"proj:centroid":{"lat":45.03126,"lon":-69.78125},"proj:transform":[0.3,0.0,435762.0,0.0,-0.3,4990416.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506958_nw_19_030_20231113_20240103","bbox":[-69.878572,45.060214,-69.809048,45.127308],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506958_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506958_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506958_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506958_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506958_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506958_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.809048,45.06072],[-69.809989,45.127308],[-69.878572,45.126801],[-69.877552,45.060214],[-69.809048,45.06072]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[430908.0,4990014.0,436302.0,4997412.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24660,17980],"proj:centroid":{"lat":45.09377,"lon":-69.84379},"proj:transform":[0.3,0.0,430908.0,0.0,-0.3,4997412.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506958_ne_19_030_20231113_20240103","bbox":[-69.815933,45.060246,-69.746634,45.127248],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506958_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506958_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506958_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506958_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506958_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506958_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.746634,45.060713],[-69.747502,45.127248],[-69.815933,45.12678],[-69.814986,45.060246],[-69.746634,45.060713]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[435834.0,4989966.0,441216.0,4997358.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24640,17940],"proj:centroid":{"lat":45.09375,"lon":-69.78126},"proj:transform":[0.3,0.0,435834.0,0.0,-0.3,4997358.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506957_se_19_030_20231113_20240103","bbox":[-69.941099,44.997658,-69.871504,45.064844],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506957_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506957_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506957_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506957_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506957_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506957_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.871504,44.998201],[-69.872516,45.064844],[-69.941099,45.064299],[-69.940008,44.997658],[-69.871504,44.998201]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[425910.0,4983120.0,431310.0,4990524.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24680,18000],"proj:centroid":{"lat":45.03126,"lon":-69.90628},"proj:transform":[0.3,0.0,425910.0,0.0,-0.3,4990524.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506957_ne_19_030_20231113_20240103","bbox":[-69.941134,45.060149,-69.871462,45.127334],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506957_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506957_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506957_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506957_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506957_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506957_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.871462,45.060693],[-69.872476,45.127334],[-69.941134,45.126789],[-69.94004,45.060149],[-69.871462,45.060693]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[425988.0,4990062.0,431388.0,4997466.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24680,18000],"proj:centroid":{"lat":45.09375,"lon":-69.90628},"proj:transform":[0.3,0.0,425988.0,0.0,-0.3,4997466.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506954_sw_19_030_20231113_20240103","bbox":[-69.37795,45.122968,-69.309614,45.189495],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506954_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506954_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506954_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506954_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506954_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506954_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.309614,45.123172],[-69.309974,45.189495],[-69.37795,45.189291],[-69.377512,45.122968],[-69.309614,45.123172]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[470310.0,4996680.0,475650.0,5004048.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24560,17800],"proj:centroid":{"lat":45.15624,"lon":-69.34376},"proj:transform":[0.3,0.0,470310.0,0.0,-0.3,5004048.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506954_se_19_030_20231113_20240103","bbox":[-69.315396,45.123049,-69.247132,45.189486],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506954_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506954_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506954_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506954_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506954_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506954_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.247132,45.123216],[-69.247419,45.189486],[-69.315396,45.189318],[-69.31503,45.123049],[-69.247132,45.123216]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[475224.0,4996668.0,480564.0,5004030.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24540,17800],"proj:centroid":{"lat":45.15627,"lon":-69.28124},"proj:transform":[0.3,0.0,475224.0,0.0,-0.3,5004030.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506954_nw_19_030_20231113_20240103","bbox":[-69.377982,45.185511,-69.309571,45.251984],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506954_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506954_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506954_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506954_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506954_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506954_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.309571,45.185716],[-69.309931,45.251984],[-69.377982,45.251779],[-69.377543,45.185511],[-69.309571,45.185716]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[470340.0,5003628.0,475680.0,5010990.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24540,17800],"proj:centroid":{"lat":45.21875,"lon":-69.34376},"proj:transform":[0.3,0.0,470340.0,0.0,-0.3,5010990.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506954_ne_19_030_20231113_20240103","bbox":[-69.315435,45.185539,-69.247173,45.251975],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506954_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506954_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506954_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506954_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506954_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506954_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.247173,45.185706],[-69.247461,45.251975],[-69.315435,45.251807],[-69.315069,45.185539],[-69.247173,45.185706]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[475248.0,5003610.0,480582.0,5010972.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24540,17780],"proj:centroid":{"lat":45.21876,"lon":-69.28128},"proj:transform":[0.3,0.0,475248.0,0.0,-0.3,5010972.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506953_sw_19_030_20231113_20240103","bbox":[-69.503136,45.122918,-69.434427,45.189574],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506953_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506953_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506953_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506953_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506953_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506953_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.434427,45.123197],[-69.434931,45.189574],[-69.503136,45.189294],[-69.502552,45.122918],[-69.434427,45.123197]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[460476.0,4996728.0,465834.0,5004102.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24580,17860],"proj:centroid":{"lat":45.15625,"lon":-69.46876},"proj:transform":[0.3,0.0,460476.0,0.0,-0.3,5004102.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506953_se_19_030_20231113_20240103","bbox":[-69.440581,45.12296,-69.37202,45.189525],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506953_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506953_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506953_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506953_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506953_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506953_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.37202,45.123202],[-69.372452,45.189525],[-69.440581,45.189282],[-69.44007,45.12296],[-69.37202,45.123202]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[465390.0,4996704.0,470742.0,5004072.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24560,17840],"proj:centroid":{"lat":45.15625,"lon":-69.40628},"proj:transform":[0.3,0.0,465390.0,0.0,-0.3,5004072.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506953_nw_19_030_20231113_20240103","bbox":[-69.503152,45.185408,-69.434443,45.252063],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506953_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506953_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506953_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506953_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506953_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506953_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.434443,45.185687],[-69.434949,45.252063],[-69.503152,45.251783],[-69.502567,45.185408],[-69.434443,45.185687]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[460518.0,5003670.0,465870.0,5011044.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24580,17840],"proj:centroid":{"lat":45.21874,"lon":-69.46878},"proj:transform":[0.3,0.0,460518.0,0.0,-0.3,5011044.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506953_ne_19_030_20231113_20240103","bbox":[-69.440529,45.18545,-69.372045,45.252013],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506953_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506953_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506953_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506953_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506953_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506953_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.372045,45.185691],[-69.372478,45.252013],[-69.440529,45.251771],[-69.440017,45.18545],[-69.372045,45.185691]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[465432.0,5003646.0,470772.0,5011014.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24560,17800],"proj:centroid":{"lat":45.21874,"lon":-69.40627},"proj:transform":[0.3,0.0,465432.0,0.0,-0.3,5011014.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506952_sw_19_030_20231113_20240103","bbox":[-69.628245,45.12284,-69.559315,45.189623],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506952_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506952_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506952_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506952_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506952_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506952_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.559315,45.123194],[-69.559965,45.189623],[-69.628245,45.189268],[-69.627515,45.12284],[-69.559315,45.123194]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[450648.0,4996788.0,456012.0,5004168.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24600,17880],"proj:centroid":{"lat":45.15624,"lon":-69.59376},"proj:transform":[0.3,0.0,450648.0,0.0,-0.3,5004168.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506952_se_19_030_20231113_20240103","bbox":[-69.56569,45.122896,-69.496909,45.189589],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506952_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506952_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506952_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506952_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506952_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506952_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.496909,45.123213],[-69.497486,45.189589],[-69.56569,45.189271],[-69.565034,45.122896],[-69.496909,45.123213]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[455562.0,4996758.0,460920.0,5004132.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24580,17860],"proj:centroid":{"lat":45.15625,"lon":-69.53128},"proj:transform":[0.3,0.0,455562.0,0.0,-0.3,5004132.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506952_nw_19_030_20231113_20240103","bbox":[-69.628246,45.185329,-69.559316,45.252166],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506952_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506952_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506952_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506952_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506952_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506952_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.559316,45.185684],[-69.559968,45.252166],[-69.628246,45.251811],[-69.627514,45.185329],[-69.559316,45.185684]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[450702.0,5003730.0,456060.0,5011116.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24620,17860],"proj:centroid":{"lat":45.21875,"lon":-69.59376},"proj:transform":[0.3,0.0,450702.0,0.0,-0.3,5011116.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506952_ne_19_030_20231113_20240103","bbox":[-69.565699,45.185386,-69.496841,45.252132],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506952_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506952_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506952_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506952_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506952_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506952_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.496841,45.185703],[-69.49742,45.252132],[-69.565699,45.251814],[-69.565041,45.185386],[-69.496841,45.185703]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[455610.0,5003700.0,460968.0,5011080.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24600,17860],"proj:centroid":{"lat":45.21877,"lon":-69.53125},"proj:transform":[0.3,0.0,455610.0,0.0,-0.3,5011080.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506951_sw_19_030_20231113_20240103","bbox":[-69.75343,45.122786,-69.684204,45.189698],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506951_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506951_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506951_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506951_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506951_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506951_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.684204,45.123216],[-69.685,45.189698],[-69.75343,45.189267],[-69.752555,45.122786],[-69.684204,45.123216]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[440814.0,4996866.0,446190.0,5004252.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24620,17920],"proj:centroid":{"lat":45.15625,"lon":-69.7188},"proj:transform":[0.3,0.0,440814.0,0.0,-0.3,5004252.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506951_se_19_030_20231113_20240103","bbox":[-69.6908,45.122803,-69.621721,45.189678],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506951_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506951_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506951_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506951_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506951_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506951_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.621721,45.123196],[-69.622444,45.189678],[-69.6908,45.189285],[-69.689997,45.122803],[-69.621721,45.123196]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[445734.0,4996824.0,451104.0,5004210.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24620,17900],"proj:centroid":{"lat":45.15625,"lon":-69.65624},"proj:transform":[0.3,0.0,445734.0,0.0,-0.3,5004210.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506951_nw_19_030_20231113_20240103","bbox":[-69.753416,45.185276,-69.684188,45.252241],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506951_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506951_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506951_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506951_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506951_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506951_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.684188,45.185706],[-69.684986,45.252241],[-69.753416,45.25181],[-69.752538,45.185276],[-69.684188,45.185706]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[440880.0,5003808.0,446250.0,5011200.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24640,17900],"proj:centroid":{"lat":45.21876,"lon":-69.71878},"proj:transform":[0.3,0.0,440880.0,0.0,-0.3,5011200.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506951_ne_19_030_20231113_20240103","bbox":[-69.690869,45.185293,-69.621713,45.252167],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506951_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506951_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506951_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506951_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506951_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506951_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.621713,45.185685],[-69.622438,45.252167],[-69.690869,45.251774],[-69.690064,45.185293],[-69.621713,45.185685]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[445788.0,5003766.0,451158.0,5011152.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24620,17900],"proj:centroid":{"lat":45.21874,"lon":-69.65627},"proj:transform":[0.3,0.0,445788.0,0.0,-0.3,5011152.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506950_sw_19_030_20231113_20240103","bbox":[-69.87854,45.122705,-69.809016,45.189798],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506950_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506950_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506950_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506950_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506950_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506950_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.809016,45.123211],[-69.809959,45.189798],[-69.87854,45.189291],[-69.877517,45.122705],[-69.809016,45.123211]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[430986.0,4996956.0,436374.0,5004354.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24660,17960],"proj:centroid":{"lat":45.15626,"lon":-69.84376},"proj:transform":[0.3,0.0,430986.0,0.0,-0.3,5004354.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506950_se_19_030_20231113_20240103","bbox":[-69.815985,45.122736,-69.74661,45.189738],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506950_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506950_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506950_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506950_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506950_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506950_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.74661,45.123203],[-69.747479,45.189738],[-69.815985,45.189269],[-69.815036,45.122736],[-69.74661,45.123203]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[435900.0,4996908.0,441282.0,5004300.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24640,17940],"proj:centroid":{"lat":45.15624,"lon":-69.78128},"proj:transform":[0.3,0.0,435900.0,0.0,-0.3,5004300.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506950_nw_19_030_20231113_20240103","bbox":[-69.878585,45.185194,-69.80906,45.252287],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506950_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506950_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506950_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506950_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506950_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506950_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.80906,45.1857],[-69.810005,45.252287],[-69.878585,45.25178],[-69.87756,45.185194],[-69.80906,45.1857]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[431058.0,5003898.0,436440.0,5011296.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24660,17940],"proj:centroid":{"lat":45.21875,"lon":-69.8438},"proj:transform":[0.3,0.0,431058.0,0.0,-0.3,5011296.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506950_ne_19_030_20231113_20240103","bbox":[-69.815962,45.185226,-69.746586,45.252227],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506950_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506950_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506950_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506950_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506950_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506950_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.746586,45.185693],[-69.747457,45.252227],[-69.815962,45.251758],[-69.815011,45.185226],[-69.746586,45.185693]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[435972.0,5003850.0,441348.0,5011242.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24640,17920],"proj:centroid":{"lat":45.21873,"lon":-69.78125},"proj:transform":[0.3,0.0,435972.0,0.0,-0.3,5011242.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506949_se_19_030_20231113_20240103","bbox":[-69.941094,45.122694,-69.871498,45.189824],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506949_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506949_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506949_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506949_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506949_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506949_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.871498,45.123237],[-69.872514,45.189824],[-69.941094,45.189279],[-69.939999,45.122694],[-69.871498,45.123237]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[426072.0,4997010.0,431460.0,5004408.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24660,17960],"proj:centroid":{"lat":45.15626,"lon":-69.90628},"proj:transform":[0.3,0.0,426072.0,0.0,-0.3,5004408.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506949_ne_19_030_20231113_20240103","bbox":[-69.941132,45.185183,-69.871459,45.252313],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506949_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506949_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506949_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506949_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506949_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506949_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.871459,45.185727],[-69.872476,45.252313],[-69.941132,45.251768],[-69.940034,45.185183],[-69.871459,45.185727]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[426150.0,5003952.0,431538.0,5011350.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24660,17960],"proj:centroid":{"lat":45.21875,"lon":-69.90628},"proj:transform":[0.3,0.0,426150.0,0.0,-0.3,5011350.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506946_sw_19_030_20231113_20240103","bbox":[-69.378015,45.248,-69.309605,45.314527],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506946_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506946_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506946_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506946_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506946_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506946_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.309605,45.248205],[-69.309966,45.314527],[-69.378015,45.314322],[-69.377575,45.248],[-69.309605,45.248205]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[470370.0,5010570.0,475704.0,5017938.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24560,17780],"proj:centroid":{"lat":45.28127,"lon":-69.34379},"proj:transform":[0.3,0.0,470370.0,0.0,-0.3,5017938.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506946_nw_19_030_20231113_20240103","bbox":[-69.377971,45.310489,-69.309562,45.377014],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506946_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506946_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506946_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506946_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506946_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506946_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.309562,45.310693],[-69.309924,45.377014],[-69.377971,45.376809],[-69.37753,45.310489],[-69.309562,45.310693]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[470406.0,5017512.0,475734.0,5024880.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24560,17760],"proj:centroid":{"lat":45.34376,"lon":-69.34375},"proj:transform":[0.3,0.0,470406.0,0.0,-0.3,5024880.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506945_sw_19_030_20231113_20240103","bbox":[-69.503092,45.247897,-69.434461,45.314551],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506945_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506945_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506945_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506945_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506945_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506945_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.434461,45.248176],[-69.434968,45.314551],[-69.503092,45.314271],[-69.502506,45.247897],[-69.434461,45.248176]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[460566.0,5010612.0,465906.0,5017986.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24580,17800],"proj:centroid":{"lat":45.28123,"lon":-69.46876},"proj:transform":[0.3,0.0,460566.0,0.0,-0.3,5017986.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506945_se_19_030_20231113_20240103","bbox":[-69.440554,45.247939,-69.371994,45.314556],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506945_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506945_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506945_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506945_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506945_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506945_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.371994,45.24818],[-69.372428,45.314556],[-69.440554,45.314313],[-69.44004,45.247939],[-69.371994,45.24818]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[465468.0,5010588.0,470808.0,5017962.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24580,17800],"proj:centroid":{"lat":45.28125,"lon":-69.40625},"proj:transform":[0.3,0.0,465468.0,0.0,-0.3,5017962.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506945_nw_19_030_20231113_20240103","bbox":[-69.50311,45.310439,-69.434479,45.377092],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506945_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506945_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506945_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506945_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506945_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506945_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.434479,45.310718],[-69.434987,45.377092],[-69.50311,45.376813],[-69.502523,45.310439],[-69.434479,45.310718]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[460608.0,5017560.0,465942.0,5024934.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24580,17780],"proj:centroid":{"lat":45.34377,"lon":-69.46877},"proj:transform":[0.3,0.0,460608.0,0.0,-0.3,5024934.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506945_ne_19_030_20231113_20240103","bbox":[-69.440579,45.310481,-69.372021,45.377043],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506945_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506945_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506945_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506945_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506945_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506945_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.372021,45.310723],[-69.372455,45.377043],[-69.440579,45.376801],[-69.440065,45.310481],[-69.372021,45.310723]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[465504.0,5017536.0,470838.0,5024904.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24560,17780],"proj:centroid":{"lat":45.34377,"lon":-69.40628},"proj:transform":[0.3,0.0,465504.0,0.0,-0.3,5024904.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506944_sw_19_030_20231113_20240103","bbox":[-69.628247,45.247872,-69.559317,45.314655],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506944_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506944_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506944_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506944_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506944_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506944_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.559317,45.248227],[-69.55997,45.314655],[-69.628247,45.314299],[-69.627514,45.247872],[-69.559317,45.248227]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[450756.0,5010678.0,456108.0,5018058.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24600,17840],"proj:centroid":{"lat":45.28127,"lon":-69.59376},"proj:transform":[0.3,0.0,450756.0,0.0,-0.3,5018058.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506944_se_19_030_20231113_20240103","bbox":[-69.565708,45.247875,-69.496851,45.31462],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506944_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506944_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506944_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506944_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506944_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506944_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.496851,45.248192],[-69.497431,45.31462],[-69.565708,45.314302],[-69.565048,45.247875],[-69.496851,45.248192]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[455658.0,5010642.0,461010.0,5018022.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24600,17840],"proj:centroid":{"lat":45.28125,"lon":-69.53126},"proj:transform":[0.3,0.0,455658.0,0.0,-0.3,5018022.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506944_nw_19_030_20231113_20240103","bbox":[-69.628249,45.310361,-69.559319,45.377142],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506944_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506944_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506944_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506944_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506944_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506944_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.559319,45.310715],[-69.559974,45.377142],[-69.628249,45.376787],[-69.627515,45.310361],[-69.559319,45.310715]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[450810.0,5017620.0,456156.0,5025000.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24600,17820],"proj:centroid":{"lat":45.34376,"lon":-69.59376},"proj:transform":[0.3,0.0,450810.0,0.0,-0.3,5025000.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506944_ne_19_030_20231113_20240103","bbox":[-69.565718,45.310363,-69.496861,45.377108],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506944_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506944_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506944_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506944_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506944_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506944_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.496861,45.31068],[-69.497442,45.377108],[-69.565718,45.37679],[-69.565056,45.310363],[-69.496861,45.31068]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[455706.0,5017584.0,461052.0,5024964.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24600,17820],"proj:centroid":{"lat":45.34374,"lon":-69.53127},"proj:transform":[0.3,0.0,455706.0,0.0,-0.3,5024964.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506943_sw_19_030_20231113_20240103","bbox":[-69.753401,45.247765,-69.684173,45.314729],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506943_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506943_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506943_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506943_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506943_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506943_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.684173,45.248195],[-69.684973,45.314729],[-69.753401,45.314299],[-69.752521,45.247765],[-69.684173,45.248195]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[440946.0,5010750.0,446310.0,5018142.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24640,17880],"proj:centroid":{"lat":45.28125,"lon":-69.71877},"proj:transform":[0.3,0.0,440946.0,0.0,-0.3,5018142.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506943_se_19_030_20231113_20240103","bbox":[-69.690863,45.247836,-69.621707,45.314709],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506943_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506943_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506943_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506943_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506943_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506943_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.621707,45.248228],[-69.622434,45.314709],[-69.690863,45.314316],[-69.690056,45.247836],[-69.621707,45.248228]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[445848.0,5010714.0,451212.0,5018100.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24620,17880],"proj:centroid":{"lat":45.28128,"lon":-69.65627},"proj:transform":[0.3,0.0,445848.0,0.0,-0.3,5018100.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506943_nw_19_030_20231113_20240103","bbox":[-69.753388,45.310308,-69.68416,45.377217],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506943_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506943_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506943_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506943_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506943_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506943_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.68416,45.310738],[-69.684961,45.377217],[-69.753388,45.376786],[-69.752506,45.310308],[-69.68416,45.310738]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[441012.0,5017698.0,446370.0,5025084.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24620,17860],"proj:centroid":{"lat":45.34377,"lon":-69.71875},"proj:transform":[0.3,0.0,441012.0,0.0,-0.3,5025084.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506943_ne_19_030_20231113_20240103","bbox":[-69.690857,45.310324,-69.621701,45.377197],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506943_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506943_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506943_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506943_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506943_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506943_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.621701,45.310717],[-69.622429,45.377197],[-69.690857,45.376804],[-69.690049,45.310324],[-69.621701,45.310717]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[445908.0,5017656.0,451266.0,5025042.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24620,17860],"proj:centroid":{"lat":45.34377,"lon":-69.65626},"proj:transform":[0.3,0.0,445908.0,0.0,-0.3,5025042.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506942_sw_19_030_20231113_20240103","bbox":[-69.878555,45.247683,-69.809029,45.314775],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506942_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506942_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506942_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506942_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506942_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506942_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.809029,45.248189],[-69.809976,45.314775],[-69.878555,45.314269],[-69.877528,45.247683],[-69.809029,45.248189]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[431136.0,5010840.0,436512.0,5018238.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24660,17920],"proj:centroid":{"lat":45.28124,"lon":-69.84377},"proj:transform":[0.3,0.0,431136.0,0.0,-0.3,5018238.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506942_se_19_030_20231113_20240103","bbox":[-69.816017,45.247768,-69.746564,45.31477],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506942_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506942_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506942_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506942_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506942_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506942_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.746564,45.248237],[-69.747437,45.31477],[-69.816017,45.3143],[-69.815064,45.247768],[-69.746564,45.248237]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[436038.0,5010798.0,441414.0,5018190.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24640,17920],"proj:centroid":{"lat":45.28128,"lon":-69.78127},"proj:transform":[0.3,0.0,436038.0,0.0,-0.3,5018190.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506942_nw_19_030_20231113_20240103","bbox":[-69.878526,45.310226,-69.809,45.377263],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506942_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506942_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506942_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506942_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506942_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506942_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.809,45.310732],[-69.809949,45.377263],[-69.878526,45.376756],[-69.877498,45.310226],[-69.809,45.310732]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[431214.0,5017788.0,436584.0,5025180.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24640,17900],"proj:centroid":{"lat":45.34375,"lon":-69.84374},"proj:transform":[0.3,0.0,431214.0,0.0,-0.3,5025180.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506942_ne_19_030_20231113_20240103","bbox":[-69.815996,45.310257,-69.746618,45.377257],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506942_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506942_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506942_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506942_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506942_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506942_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.746618,45.310725],[-69.747493,45.377257],[-69.815996,45.376788],[-69.81504,45.310257],[-69.746618,45.310725]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[436110.0,5017740.0,441474.0,5025132.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24640,17880],"proj:centroid":{"lat":45.34376,"lon":-69.78129},"proj:transform":[0.3,0.0,436110.0,0.0,-0.3,5025132.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506941_se_19_030_20231113_20240103","bbox":[-69.941094,45.247672,-69.87142,45.314801],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506941_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506941_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506941_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506941_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506941_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506941_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.87142,45.248216],[-69.87244,45.314801],[-69.941094,45.314256],[-69.939994,45.247672],[-69.87142,45.248216]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[426234.0,5010894.0,431616.0,5018292.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24660,17940],"proj:centroid":{"lat":45.28124,"lon":-69.90624},"proj:transform":[0.3,0.0,426234.0,0.0,-0.3,5018292.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506941_ne_19_030_20231113_20240103","bbox":[-69.941135,45.31016,-69.871458,45.377343],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506941_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506941_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506941_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506941_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506941_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506941_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.871458,45.310704],[-69.872481,45.377343],[-69.941135,45.376798],[-69.940031,45.31016],[-69.871458,45.310704]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[426312.0,5017836.0,431688.0,5025240.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24680,17920],"proj:centroid":{"lat":45.34376,"lon":-69.90628},"proj:transform":[0.3,0.0,426312.0,0.0,-0.3,5025240.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506938_se_19_030_20231113_20240103","bbox":[-69.315405,45.373004,-69.247146,45.439492],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506938_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506938_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506938_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506938_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506938_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506938_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.247146,45.373171],[-69.247435,45.439492],[-69.315405,45.439324],[-69.315036,45.373004],[-69.247146,45.373171]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[475332.0,5024436.0,480648.0,5031804.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24560,17720],"proj:centroid":{"lat":45.40625,"lon":-69.28126},"proj:transform":[0.3,0.0,475332.0,0.0,-0.3,5031804.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506937_sw_19_030_20231113_20240103","bbox":[-69.503128,45.372927,-69.434421,45.43958],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506937_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506937_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506937_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506937_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506937_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506937_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.434421,45.373206],[-69.43493,45.43958],[-69.503128,45.4393],[-69.502539,45.372927],[-69.434421,45.373206]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[460650.0,5024502.0,465984.0,5031876.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24580,17780],"proj:centroid":{"lat":45.40626,"lon":-69.46875},"proj:transform":[0.3,0.0,460650.0,0.0,-0.3,5031876.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506937_se_19_030_20231113_20240103","bbox":[-69.440605,45.372968,-69.37197,45.439531],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506937_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506937_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506937_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506937_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506937_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506937_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.37197,45.37321],[-69.372406,45.439531],[-69.440605,45.439288],[-69.440089,45.372968],[-69.37197,45.37321]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[465540.0,5024478.0,470874.0,5031846.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24560,17780],"proj:centroid":{"lat":45.40626,"lon":-69.40627},"proj:transform":[0.3,0.0,465540.0,0.0,-0.3,5031846.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506936_sw_19_030_20231113_20240103","bbox":[-69.628251,45.372848,-69.559322,45.439629],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506936_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506936_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506936_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506936_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506936_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506936_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.559322,45.373203],[-69.559978,45.439629],[-69.628251,45.439274],[-69.627516,45.372848],[-69.559322,45.373203]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[450864.0,5024562.0,456204.0,5031942.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24600,17800],"proj:centroid":{"lat":45.40624,"lon":-69.59377},"proj:transform":[0.3,0.0,450864.0,0.0,-0.3,5031942.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506936_se_19_030_20231113_20240103","bbox":[-69.565728,45.372904,-69.496872,45.439594],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506936_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506936_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506936_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506936_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506936_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506936_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.496872,45.373221],[-69.497454,45.439594],[-69.565728,45.439277],[-69.565066,45.372904],[-69.496872,45.373221]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[455754.0,5024532.0,461094.0,5031906.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24580,17800],"proj:centroid":{"lat":45.40626,"lon":-69.53128},"proj:transform":[0.3,0.0,455754.0,0.0,-0.3,5031906.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506935_sw_19_030_20231113_20240103","bbox":[-69.753452,45.372795,-69.684147,45.439704],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506935_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506935_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506935_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506935_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506935_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506935_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.684147,45.373225],[-69.68495,45.439704],[-69.753452,45.439273],[-69.752569,45.372795],[-69.684147,45.373225]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[441072.0,5024640.0,446430.0,5032026.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24620,17860],"proj:centroid":{"lat":45.40626,"lon":-69.71878},"proj:transform":[0.3,0.0,441072.0,0.0,-0.3,5032026.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506935_se_19_030_20231113_20240103","bbox":[-69.690852,45.372812,-69.621696,45.439684],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506935_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506935_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506935_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506935_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506935_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506935_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.621696,45.373204],[-69.622426,45.439684],[-69.690852,45.439291],[-69.690042,45.372812],[-69.621696,45.373204]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[445968.0,5024598.0,451320.0,5031984.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24620,17840],"proj:centroid":{"lat":45.40625,"lon":-69.65625},"proj:transform":[0.3,0.0,445968.0,0.0,-0.3,5031984.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506934_sw_19_030_20231113_20240103","bbox":[-69.878576,45.372713,-69.809048,45.439804],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506934_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506934_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506934_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506934_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506934_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506934_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.809048,45.373219],[-69.809999,45.439804],[-69.878576,45.439297],[-69.877544,45.372713],[-69.809048,45.373219]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[431286.0,5024730.0,436650.0,5032128.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24660,17880],"proj:centroid":{"lat":45.40626,"lon":-69.84379},"proj:transform":[0.3,0.0,431286.0,0.0,-0.3,5032128.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506934_se_19_030_20231113_20240103","bbox":[-69.815975,45.372745,-69.746597,45.439744],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506934_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506934_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506934_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506934_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506934_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506934_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.746597,45.373212],[-69.747474,45.439744],[-69.815975,45.439275],[-69.815018,45.372745],[-69.746597,45.373212]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[436182.0,5024682.0,441540.0,5032074.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24640,17860],"proj:centroid":{"lat":45.40625,"lon":-69.78127},"proj:transform":[0.3,0.0,436182.0,0.0,-0.3,5032074.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4506933_se_19_030_20231113_20240103","bbox":[-69.941099,45.372648,-69.871421,45.43983],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4506933_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4506933_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506933_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/45069/m_4506933_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4506933_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4506933_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.871421,45.373192],[-69.872447,45.43983],[-69.941099,45.439285],[-69.939993,45.372648],[-69.871421,45.373192]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[426396.0,5024778.0,431766.0,5032182.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24680,17900],"proj:centroid":{"lat":45.40625,"lon":-69.90624},"proj:transform":[0.3,0.0,426396.0,0.0,-0.3,5032182.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406946_nw_19_030_20231113_20240103","bbox":[-69.377958,44.310485,-69.309675,44.377022],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406946_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406946_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406946_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406946_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406946_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406946_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.309675,44.310689],[-69.310024,44.377022],[-69.377958,44.376818],[-69.377532,44.310485],[-69.309675,44.310689]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[469890.0,4906428.0,475302.0,4913796.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24560,18040],"proj:centroid":{"lat":44.34376,"lon":-69.3438},"proj:transform":[0.3,0.0,469890.0,0.0,-0.3,4913796.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406946_ne_19_030_20231113_20240103","bbox":[-69.315371,44.310513,-69.247233,44.376959],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406946_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406946_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406946_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406946_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406946_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406946_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.247233,44.31068],[-69.247512,44.376959],[-69.315371,44.376792],[-69.315016,44.310513],[-69.247233,44.31068]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[474876.0,4906410.0,480282.0,4913772.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24540,18020],"proj:centroid":{"lat":44.34374,"lon":-69.28128},"proj:transform":[0.3,0.0,474876.0,0.0,-0.3,4913772.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406945_nw_19_030_20231113_20240103","bbox":[-69.503057,44.310436,-69.434483,44.377101],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406945_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406945_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406945_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406945_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406945_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406945_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.434483,44.310715],[-69.434974,44.377101],[-69.503057,44.376821],[-69.502489,44.310436],[-69.434483,44.310715]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[459924.0,4906476.0,465348.0,4913850.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24580,18080],"proj:centroid":{"lat":44.34377,"lon":-69.46875},"proj:transform":[0.3,0.0,459924.0,0.0,-0.3,4913850.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406945_ne_19_030_20231113_20240103","bbox":[-69.44047,44.310478,-69.372042,44.377052],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406945_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406945_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406945_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406945_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406945_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406945_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.372042,44.310719],[-69.372461,44.377052],[-69.44047,44.37681],[-69.439973,44.310478],[-69.372042,44.310719]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[464910.0,4906452.0,470328.0,4913820.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24560,18060],"proj:centroid":{"lat":44.34377,"lon":-69.40624},"proj:transform":[0.3,0.0,464910.0,0.0,-0.3,4913820.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406944_nw_19_030_20231113_20240103","bbox":[-69.628231,44.310358,-69.559366,44.377151],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406944_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406944_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406944_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406944_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406944_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406944_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.559366,44.310712],[-69.559998,44.377151],[-69.628231,44.376796],[-69.627521,44.310358],[-69.559366,44.310712]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[449952.0,4906536.0,455388.0,4913916.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24600,18120],"proj:centroid":{"lat":44.34376,"lon":-69.59378},"proj:transform":[0.3,0.0,449952.0,0.0,-0.3,4913916.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406944_ne_19_030_20231113_20240103","bbox":[-69.565644,44.310414,-69.496925,44.377116],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406944_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406944_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406944_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406944_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406944_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406944_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.496925,44.310731],[-69.497486,44.377116],[-69.565644,44.376799],[-69.565006,44.310414],[-69.496925,44.310731]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[454938.0,4906506.0,460368.0,4913880.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24580,18100],"proj:centroid":{"lat":44.34377,"lon":-69.53127},"proj:transform":[0.3,0.0,454938.0,0.0,-0.3,4913880.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406943_nw_19_030_20231113_20240103","bbox":[-69.753329,44.310305,-69.684249,44.377226],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406943_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406943_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406943_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406943_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406943_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406943_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.684249,44.310734],[-69.685023,44.377226],[-69.753329,44.376795],[-69.752478,44.310305],[-69.684249,44.310734]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[439986.0,4906614.0,445428.0,4914000.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24620,18140],"proj:centroid":{"lat":44.34377,"lon":-69.71877},"proj:transform":[0.3,0.0,439986.0,0.0,-0.3,4914000.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406943_ne_19_030_20231113_20240103","bbox":[-69.690742,44.310322,-69.621808,44.377205],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406943_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406943_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406943_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406943_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406943_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406943_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.621808,44.310713],[-69.622511,44.377205],[-69.690742,44.376813],[-69.689962,44.310322],[-69.621808,44.310713]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[444972.0,4906572.0,450408.0,4913958.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24620,18120],"proj:centroid":{"lat":44.34377,"lon":-69.65626},"proj:transform":[0.3,0.0,444972.0,0.0,-0.3,4913958.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406942_nw_19_030_20231113_20240103","bbox":[-69.878503,44.310223,-69.809057,44.377272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406942_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406942_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406942_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406942_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406942_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406942_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.809057,44.310729],[-69.809973,44.377272],[-69.878503,44.376766],[-69.877509,44.310223],[-69.809057,44.310729]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[430014.0,4906704.0,435474.0,4914096.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24640,18200],"proj:centroid":{"lat":44.34375,"lon":-69.84376},"proj:transform":[0.3,0.0,430014.0,0.0,-0.3,4914096.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406942_ne_19_030_20231113_20240103","bbox":[-69.815916,44.310254,-69.746691,44.377266],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406942_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406942_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406942_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406942_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406942_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406942_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.746691,44.310721],[-69.747536,44.377266],[-69.815916,44.376798],[-69.814994,44.310254],[-69.746691,44.310721]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[435000.0,4906656.0,440448.0,4914048.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24640,18160],"proj:centroid":{"lat":44.34377,"lon":-69.78128},"proj:transform":[0.3,0.0,435000.0,0.0,-0.3,4914048.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406938_sw_19_030_20231113_20240103","bbox":[-69.377908,44.372984,-69.309628,44.43952],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406938_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406938_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406938_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406938_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406938_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406938_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.309628,44.373188],[-69.309978,44.43952],[-69.377908,44.439316],[-69.377481,44.372984],[-69.309628,44.373188]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[469926.0,4913370.0,475332.0,4920738.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24560,18020],"proj:centroid":{"lat":44.40626,"lon":-69.34375},"proj:transform":[0.3,0.0,469926.0,0.0,-0.3,4920738.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406938_se_19_030_20231113_20240103","bbox":[-69.315405,44.373011,-69.247195,44.439457],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406938_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406938_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406938_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406938_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406938_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406938_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.247195,44.373178],[-69.247474,44.439457],[-69.315405,44.439289],[-69.315049,44.373011],[-69.247195,44.373178]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[474900.0,4913352.0,480306.0,4920714.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24540,18020],"proj:centroid":{"lat":44.40624,"lon":-69.28128},"proj:transform":[0.3,0.0,474900.0,0.0,-0.3,4920714.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406938_nw_19_030_20231113_20240103","bbox":[-69.377934,44.435482,-69.309656,44.502017],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406938_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406938_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406938_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406938_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406938_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406938_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.309656,44.435686],[-69.310007,44.502017],[-69.377934,44.501813],[-69.377507,44.435482],[-69.309656,44.435686]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[469956.0,4920312.0,475356.0,4927680.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24560,18000],"proj:centroid":{"lat":44.46876,"lon":-69.34378},"proj:transform":[0.3,0.0,469956.0,0.0,-0.3,4927680.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406938_ne_19_030_20231113_20240103","bbox":[-69.315364,44.435509,-69.247232,44.501954],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406938_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406938_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406938_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406938_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406938_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406938_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.247232,44.435676],[-69.247512,44.501954],[-69.315364,44.501787],[-69.315008,44.435509],[-69.247232,44.435676]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[474930.0,4920294.0,480324.0,4927656.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24540,17980],"proj:centroid":{"lat":44.46874,"lon":-69.28128},"proj:transform":[0.3,0.0,474930.0,0.0,-0.3,4927656.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406937_sw_19_030_20231113_20240103","bbox":[-69.503065,44.372935,-69.434493,44.439599],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406937_sw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406937_sw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406937_sw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406937_sw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406937_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406937_sw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.434493,44.373214],[-69.434985,44.439599],[-69.503065,44.439319],[-69.502496,44.372935],[-69.434493,44.373214]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[459966.0,4913418.0,465384.0,4920792.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24580,18060],"proj:centroid":{"lat":44.40627,"lon":-69.46876},"proj:transform":[0.3,0.0,459966.0,0.0,-0.3,4920792.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406937_se_19_030_20231113_20240103","bbox":[-69.440486,44.372976,-69.37206,44.43955],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406937_se_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406937_se_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406937_se_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406937_se_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406937_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406937_se_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.37206,44.373218],[-69.372481,44.43955],[-69.440486,44.439308],[-69.439989,44.372976],[-69.37206,44.373218]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[464946.0,4913394.0,470358.0,4920762.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24560,18040],"proj:centroid":{"lat":44.40627,"lon":-69.40625},"proj:transform":[0.3,0.0,464946.0,0.0,-0.3,4920762.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406937_nw_19_030_20231113_20240103","bbox":[-69.503074,44.435432,-69.434504,44.502096],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406937_nw_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406937_nw_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406937_nw_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406937_nw_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406937_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406937_nw_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.434504,44.435711],[-69.434996,44.502096],[-69.503074,44.501816],[-69.502504,44.435432],[-69.434504,44.435711]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[460008.0,4920360.0,465420.0,4927734.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24580,18040],"proj:centroid":{"lat":44.46877,"lon":-69.46877},"proj:transform":[0.3,0.0,460008.0,0.0,-0.3,4927734.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"me_m_4406937_ne_19_030_20231113_20240103","bbox":[-69.440504,44.435474,-69.37208,44.502047],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/me_m_4406937_ne_19_030_20231113_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=me_m_4406937_ne_19_030_20231113_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406937_ne_19_030_20231113_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/me/2023/me_030cm_2023/44069/m_4406937_ne_19_030_20231113_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=me_m_4406937_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=me_m_4406937_ne_19_030_20231113_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-69.37208,44.435716],[-69.372502,44.502047],[-69.440504,44.501805],[-69.440005,44.435474],[-69.37208,44.435716]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-11-13T16:00:00Z","naip:year":"2023","proj:bbox":[464982.0,4920336.0,470388.0,4927704.0],"proj:epsg":26919,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"me","proj:shape":[24560,18020],"proj:centroid":{"lat":44.46877,"lon":-69.40627},"proj:transform":[0.3,0.0,464982.0,0.0,-0.3,4927704.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"collections":["naip"],"token":"next:naip:me_m_4406937_ne_19_030_20231113_20240103"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '30517' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:49:48 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T124948Z-167d46d96d88hw2shC1DENzkdg0000000m1g0000000024ga status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_cli/TestCLISearch.test_matched[inprocess].yaml000066400000000000000000000224441503646565400314330ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v1 response: body: string: '{"stac_version":"1.0.0","type":"Catalog","id":"earth-search-aws","title":"Earth Search by Element 84","description":"A STAC API of public datasets on AWS","links":[{"rel":"self","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"conformance","type":"application/json","href":"https://earth-search.aws.element84.com/v1/conformance"},{"rel":"data","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections"},{"rel":"search","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","method":"POST"},{"rel":"aggregate","type":"application/json","href":"https://earth-search.aws.element84.com/v1/aggregate","method":"GET"},{"rel":"aggregations","type":"application/json","href":"https://earth-search.aws.element84.com/v1/aggregations"},{"rel":"service-desc","type":"application/vnd.oai.openapi","href":"https://earth-search.aws.element84.com/v1/api"},{"rel":"service-doc","type":"text/html","href":"https://earth-search.aws.element84.com/v1/api.html"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","href":"https://earth-search.aws.element84.com/v1/queryables"},{"rel":"server","type":"text/html","href":"https://stac-utils.github.io/stac-server/"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/naip"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd"}],"conformsTo":["https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features#fields","https://api.stacspec.org/v1.0.0/ogcapi-features#sort","https://api.stacspec.org/v1.0.0/ogcapi-features#query","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#sort","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v0.3.0/aggregation","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson"]}' headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '612' Content-Type: - application/json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:50:09 GMT Via: - 1.1 9bed99ac619d23b077acdc859dc1c43c.cloudfront.net (CloudFront) X-Amz-Cf-Id: - T7JWNsb5DRzivEAbR0yzlKgrpLQ7vzf0ph-YYOsccv9LLrAs4JdzMg== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f181-18be62ca6c2d0f1a7bb89dc0;Parent=1ea7c346c6447c0d;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"d29-QPs+H0wJLUX32EZKNgzG3k6wfQ8" x-amz-apigw-id: - N2qsWEmtPHcEKqA= x-amzn-Remapped-content-length: - '3369' x-amzn-RequestId: - 934a394a-a6fa-427e-a2a6-672d873f7316 x-powered-by: - Express status: code: 200 message: OK - request: body: '{"collections": ["cop-dem-glo-30"], "limit": 1}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '47' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://earth-search.aws.element84.com/v1/search response: body: string: '{"type":"FeatureCollection","stac_version":"1.0.0","stac_extensions":[],"context":{"limit":1,"matched":26450,"returned":1},"numberMatched":26450,"numberReturned":1,"features":[{"type":"Feature","stac_version":"1.0.0","id":"Copernicus_DSM_COG_10_S90_00_W180_00_DEM","properties":{"platform":"tandem-x","gsd":30,"proj:epsg":4326,"proj:transform":[0.002777777777777778,0,-180.0013888888889,0,-0.0002777777777777778,-88.99986111111112],"proj:shape":[3600,360],"proj:centroid":{"lat":-89.5,"lon":-179.5},"grid:code":"CDEM-S90W180","storage:platform":"AWS","storage:region":"eu-central-1","storage:requester_pays":false,"earthsearch:payload_id":"cop-dem-glo/workflow-cop-dem-glo-to-stac/c535d071376a7c60ed297e65c490d41a","datetime":"2021-04-22T00:00:00Z","processing:software":{"cop-dem-glo-to-stac":"2023.03.28"},"created":"2023-03-28T15:22:58.882Z","updated":"2023-04-20T18:14:07.025Z"},"geometry":{"type":"Polygon","coordinates":[[[-179.0013888888889,-89.99986111111112],[-179.0013888888889,-88.99986111111112],[-180.0013888888889,-88.99986111111112],[-180.0013888888889,-89.99986111111112],[-179.0013888888889,-89.99986111111112]]]},"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W180_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W180_00_DEM/Copernicus_DSM_COG_10_S90_00_W180_00_DEM.json","type":"application/json"},{"rel":"handbook","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook","description":"Also includes data usage information"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W180_00_DEM/thumbnail"}],"assets":{"data":{"href":"s3://copernicus-dem-30m/Copernicus_DSM_COG_10_S90_00_W180_00_DEM/Copernicus_DSM_COG_10_S90_00_W180_00_DEM.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Data","raster:bands":[{"sampling":"point","data_type":"float32","spatial_resolution":30,"unit":"meter"}],"roles":["data"]}},"bbox":[-180.0013888888889,-89.99986111111112,-179.0013888888889,-88.99986111111112],"stac_extensions":["https://stac-extensions.github.io/storage/v1.0.0/schema.json","https://stac-extensions.github.io/processing/v1.1.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json"],"collection":"cop-dem-glo-30"}],"links":[{"rel":"next","title":"Next page of Items","method":"POST","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","merge":false,"body":{"collections":["cop-dem-glo-30"],"limit":1,"next":"2021-04-22T00:00:00Z,Copernicus_DSM_COG_10_S90_00_W180_00_DEM,cop-dem-glo-30"}},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"}]}' headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '1138' Content-Type: - application/geo+json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:50:09 GMT Via: - 1.1 f5cdd38f09a779678a15f788f0f3cbe2.cloudfront.net (CloudFront) X-Amz-Cf-Id: - bT2T17oyAd26dfTbHEIb3zjyweAuwsNx8regsA2gHTdlY3Srsk2Cpw== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f181-526e03d916951344090c95e3;Parent=620d2f342290e6aa;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"d52-kZRavcSAvRPx0vigsOjB/Kx7RWY" x-amz-apigw-id: - N2qsXHlZvHcEVxg= x-amzn-Remapped-content-length: - '3410' x-amzn-RequestId: - ac2aad80-5808-4621-8248-e6a823af7bb1 x-powered-by: - Express status: code: 200 message: OK version: 1 TestCLISearch.test_matched_not_available[inprocess].yaml000066400000000000000000001634621503646565400342420ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_cliinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#query"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3362' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:08 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125007Z-167d46d96d8ttf9rhC1DENb9c80000000sb00000000058a1 status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#query"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3362' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:08 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125008Z-167d46d96d89wd6bhC1DEN9n1n0000000sm0000000004qcp status: code: 200 message: OK - request: body: '{"collections": ["naip"], "limit": 1}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '37' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"mt_m_4911664_se_11_060_20231117_20240103","bbox":[-116.066453,48.997642,-115.995973,49.064871],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4911664_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4911664_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49116/m_4911664_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49116/m_4911664_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4911664_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4911664_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.997313,48.997642],[-115.995973,49.064289],[-116.065205,49.064871],[-116.066453,48.998222],[-115.997313,48.997642]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[568284.0,5427678.0,573342.0,5435088.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12350,8430],"proj:centroid":{"lat":49.03126,"lon":-116.03124},"proj:transform":[0.6,0.0,568284.0,0.0,-0.6,5435088.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"collections":["naip"],"limit":1,"token":"next:naip:mt_m_4911664_se_11_060_20231117_20240103"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '1138' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:50:09 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125009Z-167d46d96d8ttf9rhC1DENb9c80000000sh000000000116q status: code: 200 message: OK version: 1 TestCLISearch.test_non_conformant_can_be_fixed[inprocess].yaml000066400000000000000000000340411503646565400354310ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_cliinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v0 response: body: string: '{"stac_version":"1.0.0-beta.2","stac_api_version":"0.9.0","id":"earth-search","title":"Earth Search","description":"A STAC API of AWS Public Datasets powered by stac-server","links":[{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l1c"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/landsat-8-l1-c1"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","href":"https://earth-search.aws.element84.com/v0/api"},{"rel":"conformance","type":"application/json","href":"https://earth-search.aws.element84.com/v0/conformance"},{"rel":"children","type":"application/json","href":"https://earth-search.aws.element84.com/v0/collections"},{"rel":"self","type":"application/json","href":"https://earth-search.aws.element84.com/v0/"},{"rel":"search","type":"application/json","href":"https://earth-search.aws.element84.com/v0/search"},{"rel":"docs","href":"https://stac-utils.github.io/stac-server/"}]}' headers: Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Origin: - '*' Connection: - keep-alive Content-Length: - '1180' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:03 GMT Via: - 1.1 350e87fe323bf8d725a381e15f465f40.cloudfront.net (CloudFront) X-Amz-Cf-Id: - je4op9hDHpqMZ1qv2k3VJw5Wd2nrrhLyYl_2usVxWARLIJC194AIng== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f17b-2145bde05ecd0b1829b25500;Parent=1dd1202e21047d0b;Sampled=0;Lineage=1:308471e4:0 X-Cache: - Miss from cloudfront x-amz-apigw-id: - N2qrYErCPHcEiag= x-amzn-RequestId: - 13c892a8-aae3-4832-bf07-8b5759f326a7 status: code: 200 message: OK - request: body: '{"collections": ["sentinel-s2-l2a-cogs"], "limit": 1}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '53' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://earth-search.aws.element84.com/v0/search response: body: string: '{"type":"FeatureCollection","stac_version":"1.0.0-beta.2","stac_extensions":[],"context":{"page":1,"limit":1,"matched":22481225,"returned":1},"numberMatched":22481225,"numberReturned":1,"features":[{"type":"Feature","stac_version":"1.0.0-beta.2","stac_extensions":["eo","view","proj"],"id":"S2B_32VKL_20250717_0_L2A","bbox":[3.7080564855974014,59.31570302641626,3.8175298174545667,59.43549885945435],"geometry":{"type":"Polygon","coordinates":[[[3.7260482578760548,59.31570302641626],[3.7080564855974014,59.43109732998165],[3.8175298174545667,59.43549885945435],[3.7260482578760548,59.31570302641626]]]},"properties":{"datetime":"2025-07-17T11:24:34Z","platform":"sentinel-2b","constellation":"sentinel-2","instruments":["msi"],"gsd":10,"view:off_nadir":0,"proj:epsg":32632,"sentinel:utm_zone":32,"sentinel:latitude_band":"V","sentinel:grid_square":"KL","sentinel:sequence":"0","sentinel:product_id":"S2B_MSIL2A_20250717T112119_N0511_R037_T32VKL_20250717T121711","sentinel:data_coverage":0.33,"eo:cloud_cover":98.54,"sentinel:valid_cloud_cover":true,"sentinel:processing_baseline":"05.11","sentinel:boa_offset_applied":true,"created":"2025-07-17T12:44:09.452Z","updated":"2025-07-17T12:44:09.452Z"},"collection":"sentinel-s2-l2a-cogs","assets":{"thumbnail":{"title":"Thumbnail","type":"image/png","roles":["thumbnail"],"href":"https://roda.sentinel-hub.com/sentinel-s2-l1c/tiles/32/V/KL/2025/7/17/0/preview.jpg"},"overview":{"title":"True color image","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["overview"],"gsd":10,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/L2A_PVI.tif","proj:shape":[343,343],"proj:transform":[320,0,199980,0,-320,6600000,0,0,1]},"info":{"title":"Original JSON metadata","type":"application/json","roles":["metadata"],"href":"https://roda.sentinel-hub.com/sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/tileInfo.json"},"metadata":{"title":"Original XML metadata","type":"application/xml","roles":["metadata"],"href":"https://roda.sentinel-hub.com/sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/metadata.xml"},"visual":{"title":"True color image","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["overview"],"gsd":10,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/TCI.tif","proj:shape":[10980,10980],"proj:transform":[10,0,199980,0,-10,6600000,0,0,1]},"B01":{"title":"Band 1 (coastal)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":60,"eo:bands":[{"name":"B01","common_name":"coastal","center_wavelength":0.4439,"full_width_half_max":0.027}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B01.tif","proj:shape":[1830,1830],"proj:transform":[60,0,199980,0,-60,6600000,0,0,1]},"B02":{"title":"Band 2 (blue)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":10,"eo:bands":[{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B02.tif","proj:shape":[10980,10980],"proj:transform":[10,0,199980,0,-10,6600000,0,0,1]},"B03":{"title":"Band 3 (green)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":10,"eo:bands":[{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B03.tif","proj:shape":[10980,10980],"proj:transform":[10,0,199980,0,-10,6600000,0,0,1]},"B04":{"title":"Band 4 (red)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":10,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B04.tif","proj:shape":[10980,10980],"proj:transform":[10,0,199980,0,-10,6600000,0,0,1]},"B05":{"title":"Band 5","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B05","center_wavelength":0.7039,"full_width_half_max":0.019}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B05.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]},"B06":{"title":"Band 6","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B06","center_wavelength":0.7402,"full_width_half_max":0.018}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B06.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]},"B07":{"title":"Band 7","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B07","center_wavelength":0.7825,"full_width_half_max":0.028}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B07.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]},"B08":{"title":"Band 8 (nir)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":10,"eo:bands":[{"name":"B08","common_name":"nir","center_wavelength":0.8351,"full_width_half_max":0.145}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B08.tif","proj:shape":[10980,10980],"proj:transform":[10,0,199980,0,-10,6600000,0,0,1]},"B8A":{"title":"Band 8A","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B8A","center_wavelength":0.8648,"full_width_half_max":0.033}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B8A.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]},"B09":{"title":"Band 9","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":60,"eo:bands":[{"name":"B09","center_wavelength":0.945,"full_width_half_max":0.026}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B09.tif","proj:shape":[1830,1830],"proj:transform":[60,0,199980,0,-60,6600000,0,0,1]},"B11":{"title":"Band 11 (swir16)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B11","common_name":"swir16","center_wavelength":1.6137,"full_width_half_max":0.143}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B11.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]},"B12":{"title":"Band 12 (swir22)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B12","common_name":"swir22","center_wavelength":2.22024,"full_width_half_max":0.242}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B12.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]},"AOT":{"title":"Aerosol Optical Thickness (AOT)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/AOT.tif","proj:shape":[1830,1830],"proj:transform":[60,0,199980,0,-60,6600000,0,0,1]},"WVP":{"title":"Water Vapour (WVP)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/WVP.tif","proj:shape":[10980,10980],"proj:transform":[10,0,199980,0,-10,6600000,0,0,1]},"SCL":{"title":"Scene Classification Map (SCL)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/SCL.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]}},"links":[{"rel":"self","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs/items/S2B_32VKL_20250717_0_L2A"},{"rel":"canonical","href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/S2B_32VKL_20250717_0_L2A.json","type":"application/json"},{"title":"sentinel-s2-l2a-aws/workflow-publish-sentinel/tiles-32-V-KL-2025-7-17-0","rel":"via-cirrus","href":"https://cirrus-earth-search.aws.element84.com/v0/catid/sentinel-s2-l2a-aws/workflow-publish-sentinel/tiles-32-V-KL-2025-7-17-0"},{"title":"Source STAC Item","rel":"derived_from","href":"https://cirrus-v0-data-1qm7gekzjucbq.s3.us-west-2.amazonaws.com/sentinel-s2-l2a/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/S2B_32VKL_20250717_0_L2A.json","type":"application/json"},{"title":"sentinel-s2-l2a/workflow-cog-archive/S2B_32VKL_20250717_0_L2A","rel":"via-cirrus","href":"https://cirrus-earth-search.aws.element84.com/v0/catid/sentinel-s2-l2a/workflow-cog-archive/S2B_32VKL_20250717_0_L2A"},{"rel":"parent","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs"},{"rel":"collection","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs"},{"rel":"root","href":"https://earth-search.aws.element84.com/v0/"}]}],"links":[{"rel":"next","title":"Next page of results","method":"POST","href":"https://earth-search.aws.element84.com/v0/search","merge":false,"body":{"collections":["sentinel-s2-l2a-cogs"],"page":2,"limit":1}}]}' headers: Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Origin: - '*' Connection: - keep-alive Content-Length: - '10596' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:04 GMT Via: - 1.1 12e4fc9256386a4cd8f000b9caa3e012.cloudfront.net (CloudFront) X-Amz-Cf-Id: - JPoq2-oP80v9d2Cel_4y_P-fnaP7q4H7VY7oS6PxJJ_r6GeF_lBIKQ== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f17b-0dd61388521a395164026cfe;Parent=47c9f49be760dd0c;Sampled=0;Lineage=1:308471e4:0 X-Cache: - Miss from cloudfront x-amz-apigw-id: - N2qrZEv7PHcEE3A= x-amzn-RequestId: - c6aa7e62-40db-4114-9ba6-f3a26e9fd6c1 status: code: 200 message: OK version: 1 TestCLISearch.test_non_conformant_can_be_ignored[inprocess---ignore=no-conforms-to].yaml000066400000000000000000000340411503646565400422720ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_cliinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v0 response: body: string: '{"stac_version":"1.0.0-beta.2","stac_api_version":"0.9.0","id":"earth-search","title":"Earth Search","description":"A STAC API of AWS Public Datasets powered by stac-server","links":[{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l1c"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/landsat-8-l1-c1"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","href":"https://earth-search.aws.element84.com/v0/api"},{"rel":"conformance","type":"application/json","href":"https://earth-search.aws.element84.com/v0/conformance"},{"rel":"children","type":"application/json","href":"https://earth-search.aws.element84.com/v0/collections"},{"rel":"self","type":"application/json","href":"https://earth-search.aws.element84.com/v0/"},{"rel":"search","type":"application/json","href":"https://earth-search.aws.element84.com/v0/search"},{"rel":"docs","href":"https://stac-utils.github.io/stac-server/"}]}' headers: Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Origin: - '*' Connection: - keep-alive Content-Length: - '1180' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:06 GMT Via: - 1.1 23a3716b2d5bd9224b2cf2d510f83524.cloudfront.net (CloudFront) X-Amz-Cf-Id: - XpfOKJgU0s9WZA3hapgjoQ_xl7OTazwjXZWjYt7y3Rum9KNzjFMvFw== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f17e-559104f24fed830929f20e06;Parent=42762fd8bbbb3f83;Sampled=0;Lineage=1:308471e4:0 X-Cache: - Miss from cloudfront x-amz-apigw-id: - N2qrxElIPHcEErA= x-amzn-RequestId: - b7871d1b-3690-47d5-bb7b-911c6cc6e023 status: code: 200 message: OK - request: body: '{"collections": ["sentinel-s2-l2a-cogs"], "limit": 1}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '53' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://earth-search.aws.element84.com/v0/search response: body: string: '{"type":"FeatureCollection","stac_version":"1.0.0-beta.2","stac_extensions":[],"context":{"page":1,"limit":1,"matched":22481225,"returned":1},"numberMatched":22481225,"numberReturned":1,"features":[{"type":"Feature","stac_version":"1.0.0-beta.2","stac_extensions":["eo","view","proj"],"id":"S2B_32VKL_20250717_0_L2A","bbox":[3.7080564855974014,59.31570302641626,3.8175298174545667,59.43549885945435],"geometry":{"type":"Polygon","coordinates":[[[3.7260482578760548,59.31570302641626],[3.7080564855974014,59.43109732998165],[3.8175298174545667,59.43549885945435],[3.7260482578760548,59.31570302641626]]]},"properties":{"datetime":"2025-07-17T11:24:34Z","platform":"sentinel-2b","constellation":"sentinel-2","instruments":["msi"],"gsd":10,"view:off_nadir":0,"proj:epsg":32632,"sentinel:utm_zone":32,"sentinel:latitude_band":"V","sentinel:grid_square":"KL","sentinel:sequence":"0","sentinel:product_id":"S2B_MSIL2A_20250717T112119_N0511_R037_T32VKL_20250717T121711","sentinel:data_coverage":0.33,"eo:cloud_cover":98.54,"sentinel:valid_cloud_cover":true,"sentinel:processing_baseline":"05.11","sentinel:boa_offset_applied":true,"created":"2025-07-17T12:44:09.452Z","updated":"2025-07-17T12:44:09.452Z"},"collection":"sentinel-s2-l2a-cogs","assets":{"thumbnail":{"title":"Thumbnail","type":"image/png","roles":["thumbnail"],"href":"https://roda.sentinel-hub.com/sentinel-s2-l1c/tiles/32/V/KL/2025/7/17/0/preview.jpg"},"overview":{"title":"True color image","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["overview"],"gsd":10,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/L2A_PVI.tif","proj:shape":[343,343],"proj:transform":[320,0,199980,0,-320,6600000,0,0,1]},"info":{"title":"Original JSON metadata","type":"application/json","roles":["metadata"],"href":"https://roda.sentinel-hub.com/sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/tileInfo.json"},"metadata":{"title":"Original XML metadata","type":"application/xml","roles":["metadata"],"href":"https://roda.sentinel-hub.com/sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/metadata.xml"},"visual":{"title":"True color image","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["overview"],"gsd":10,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/TCI.tif","proj:shape":[10980,10980],"proj:transform":[10,0,199980,0,-10,6600000,0,0,1]},"B01":{"title":"Band 1 (coastal)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":60,"eo:bands":[{"name":"B01","common_name":"coastal","center_wavelength":0.4439,"full_width_half_max":0.027}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B01.tif","proj:shape":[1830,1830],"proj:transform":[60,0,199980,0,-60,6600000,0,0,1]},"B02":{"title":"Band 2 (blue)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":10,"eo:bands":[{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B02.tif","proj:shape":[10980,10980],"proj:transform":[10,0,199980,0,-10,6600000,0,0,1]},"B03":{"title":"Band 3 (green)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":10,"eo:bands":[{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B03.tif","proj:shape":[10980,10980],"proj:transform":[10,0,199980,0,-10,6600000,0,0,1]},"B04":{"title":"Band 4 (red)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":10,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B04.tif","proj:shape":[10980,10980],"proj:transform":[10,0,199980,0,-10,6600000,0,0,1]},"B05":{"title":"Band 5","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B05","center_wavelength":0.7039,"full_width_half_max":0.019}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B05.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]},"B06":{"title":"Band 6","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B06","center_wavelength":0.7402,"full_width_half_max":0.018}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B06.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]},"B07":{"title":"Band 7","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B07","center_wavelength":0.7825,"full_width_half_max":0.028}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B07.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]},"B08":{"title":"Band 8 (nir)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":10,"eo:bands":[{"name":"B08","common_name":"nir","center_wavelength":0.8351,"full_width_half_max":0.145}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B08.tif","proj:shape":[10980,10980],"proj:transform":[10,0,199980,0,-10,6600000,0,0,1]},"B8A":{"title":"Band 8A","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B8A","center_wavelength":0.8648,"full_width_half_max":0.033}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B8A.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]},"B09":{"title":"Band 9","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":60,"eo:bands":[{"name":"B09","center_wavelength":0.945,"full_width_half_max":0.026}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B09.tif","proj:shape":[1830,1830],"proj:transform":[60,0,199980,0,-60,6600000,0,0,1]},"B11":{"title":"Band 11 (swir16)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B11","common_name":"swir16","center_wavelength":1.6137,"full_width_half_max":0.143}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B11.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]},"B12":{"title":"Band 12 (swir22)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B12","common_name":"swir22","center_wavelength":2.22024,"full_width_half_max":0.242}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B12.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]},"AOT":{"title":"Aerosol Optical Thickness (AOT)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/AOT.tif","proj:shape":[1830,1830],"proj:transform":[60,0,199980,0,-60,6600000,0,0,1]},"WVP":{"title":"Water Vapour (WVP)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/WVP.tif","proj:shape":[10980,10980],"proj:transform":[10,0,199980,0,-10,6600000,0,0,1]},"SCL":{"title":"Scene Classification Map (SCL)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/SCL.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]}},"links":[{"rel":"self","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs/items/S2B_32VKL_20250717_0_L2A"},{"rel":"canonical","href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/S2B_32VKL_20250717_0_L2A.json","type":"application/json"},{"title":"sentinel-s2-l2a-aws/workflow-publish-sentinel/tiles-32-V-KL-2025-7-17-0","rel":"via-cirrus","href":"https://cirrus-earth-search.aws.element84.com/v0/catid/sentinel-s2-l2a-aws/workflow-publish-sentinel/tiles-32-V-KL-2025-7-17-0"},{"title":"Source STAC Item","rel":"derived_from","href":"https://cirrus-v0-data-1qm7gekzjucbq.s3.us-west-2.amazonaws.com/sentinel-s2-l2a/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/S2B_32VKL_20250717_0_L2A.json","type":"application/json"},{"title":"sentinel-s2-l2a/workflow-cog-archive/S2B_32VKL_20250717_0_L2A","rel":"via-cirrus","href":"https://cirrus-earth-search.aws.element84.com/v0/catid/sentinel-s2-l2a/workflow-cog-archive/S2B_32VKL_20250717_0_L2A"},{"rel":"parent","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs"},{"rel":"collection","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs"},{"rel":"root","href":"https://earth-search.aws.element84.com/v0/"}]}],"links":[{"rel":"next","title":"Next page of results","method":"POST","href":"https://earth-search.aws.element84.com/v0/search","merge":false,"body":{"collections":["sentinel-s2-l2a-cogs"],"page":2,"limit":1}}]}' headers: Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Origin: - '*' Connection: - keep-alive Content-Length: - '10596' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:07 GMT Via: - 1.1 402032e48d13c4b7217c7a59235bf8cc.cloudfront.net (CloudFront) X-Amz-Cf-Id: - -XTCGce2sZ1eFPcCc0JfzCeSAzPxZ9qPampPGiIHikPEuPDX-p_1KQ== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f17e-0a4bba61144645c643d60329;Parent=5872bde60115ae81;Sampled=0;Lineage=1:308471e4:0 X-Cache: - Miss from cloudfront x-amz-apigw-id: - N2qrzHybvHcEjOQ= x-amzn-RequestId: - 127f5b99-0c07-45d6-887d-d597c149417e status: code: 200 message: OK version: 1 TestCLISearch.test_non_conformant_can_be_ignored[inprocess---ignore].yaml000066400000000000000000000340411503646565400373740ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_cliinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v0 response: body: string: '{"stac_version":"1.0.0-beta.2","stac_api_version":"0.9.0","id":"earth-search","title":"Earth Search","description":"A STAC API of AWS Public Datasets powered by stac-server","links":[{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l1c"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/landsat-8-l1-c1"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","href":"https://earth-search.aws.element84.com/v0/api"},{"rel":"conformance","type":"application/json","href":"https://earth-search.aws.element84.com/v0/conformance"},{"rel":"children","type":"application/json","href":"https://earth-search.aws.element84.com/v0/collections"},{"rel":"self","type":"application/json","href":"https://earth-search.aws.element84.com/v0/"},{"rel":"search","type":"application/json","href":"https://earth-search.aws.element84.com/v0/search"},{"rel":"docs","href":"https://stac-utils.github.io/stac-server/"}]}' headers: Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Origin: - '*' Connection: - keep-alive Content-Length: - '1180' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:04 GMT Via: - 1.1 bcab77f1ffe9d73bbe5ff7a973cd0160.cloudfront.net (CloudFront) X-Amz-Cf-Id: - f2FxcWJSLCAQN3FA2LI3bpx5b71iVixikmsF-KcboW5TMKkSCbDfAQ== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f17c-087557aa64dd1e5e68ec2542;Parent=3e51ed9bb5fca1fd;Sampled=0;Lineage=1:308471e4:0 X-Cache: - Miss from cloudfront x-amz-apigw-id: - N2qrkHi1PHcEdJg= x-amzn-RequestId: - 2e779d80-284d-4854-8e69-103043953fe5 status: code: 200 message: OK - request: body: '{"collections": ["sentinel-s2-l2a-cogs"], "limit": 1}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '53' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://earth-search.aws.element84.com/v0/search response: body: string: '{"type":"FeatureCollection","stac_version":"1.0.0-beta.2","stac_extensions":[],"context":{"page":1,"limit":1,"matched":22481225,"returned":1},"numberMatched":22481225,"numberReturned":1,"features":[{"type":"Feature","stac_version":"1.0.0-beta.2","stac_extensions":["eo","view","proj"],"id":"S2B_32VKL_20250717_0_L2A","bbox":[3.7080564855974014,59.31570302641626,3.8175298174545667,59.43549885945435],"geometry":{"type":"Polygon","coordinates":[[[3.7260482578760548,59.31570302641626],[3.7080564855974014,59.43109732998165],[3.8175298174545667,59.43549885945435],[3.7260482578760548,59.31570302641626]]]},"properties":{"datetime":"2025-07-17T11:24:34Z","platform":"sentinel-2b","constellation":"sentinel-2","instruments":["msi"],"gsd":10,"view:off_nadir":0,"proj:epsg":32632,"sentinel:utm_zone":32,"sentinel:latitude_band":"V","sentinel:grid_square":"KL","sentinel:sequence":"0","sentinel:product_id":"S2B_MSIL2A_20250717T112119_N0511_R037_T32VKL_20250717T121711","sentinel:data_coverage":0.33,"eo:cloud_cover":98.54,"sentinel:valid_cloud_cover":true,"sentinel:processing_baseline":"05.11","sentinel:boa_offset_applied":true,"created":"2025-07-17T12:44:09.452Z","updated":"2025-07-17T12:44:09.452Z"},"collection":"sentinel-s2-l2a-cogs","assets":{"thumbnail":{"title":"Thumbnail","type":"image/png","roles":["thumbnail"],"href":"https://roda.sentinel-hub.com/sentinel-s2-l1c/tiles/32/V/KL/2025/7/17/0/preview.jpg"},"overview":{"title":"True color image","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["overview"],"gsd":10,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/L2A_PVI.tif","proj:shape":[343,343],"proj:transform":[320,0,199980,0,-320,6600000,0,0,1]},"info":{"title":"Original JSON metadata","type":"application/json","roles":["metadata"],"href":"https://roda.sentinel-hub.com/sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/tileInfo.json"},"metadata":{"title":"Original XML metadata","type":"application/xml","roles":["metadata"],"href":"https://roda.sentinel-hub.com/sentinel-s2-l2a/tiles/32/V/KL/2025/7/17/0/metadata.xml"},"visual":{"title":"True color image","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["overview"],"gsd":10,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/TCI.tif","proj:shape":[10980,10980],"proj:transform":[10,0,199980,0,-10,6600000,0,0,1]},"B01":{"title":"Band 1 (coastal)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":60,"eo:bands":[{"name":"B01","common_name":"coastal","center_wavelength":0.4439,"full_width_half_max":0.027}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B01.tif","proj:shape":[1830,1830],"proj:transform":[60,0,199980,0,-60,6600000,0,0,1]},"B02":{"title":"Band 2 (blue)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":10,"eo:bands":[{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B02.tif","proj:shape":[10980,10980],"proj:transform":[10,0,199980,0,-10,6600000,0,0,1]},"B03":{"title":"Band 3 (green)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":10,"eo:bands":[{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B03.tif","proj:shape":[10980,10980],"proj:transform":[10,0,199980,0,-10,6600000,0,0,1]},"B04":{"title":"Band 4 (red)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":10,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B04.tif","proj:shape":[10980,10980],"proj:transform":[10,0,199980,0,-10,6600000,0,0,1]},"B05":{"title":"Band 5","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B05","center_wavelength":0.7039,"full_width_half_max":0.019}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B05.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]},"B06":{"title":"Band 6","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B06","center_wavelength":0.7402,"full_width_half_max":0.018}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B06.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]},"B07":{"title":"Band 7","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B07","center_wavelength":0.7825,"full_width_half_max":0.028}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B07.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]},"B08":{"title":"Band 8 (nir)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":10,"eo:bands":[{"name":"B08","common_name":"nir","center_wavelength":0.8351,"full_width_half_max":0.145}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B08.tif","proj:shape":[10980,10980],"proj:transform":[10,0,199980,0,-10,6600000,0,0,1]},"B8A":{"title":"Band 8A","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B8A","center_wavelength":0.8648,"full_width_half_max":0.033}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B8A.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]},"B09":{"title":"Band 9","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":60,"eo:bands":[{"name":"B09","center_wavelength":0.945,"full_width_half_max":0.026}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B09.tif","proj:shape":[1830,1830],"proj:transform":[60,0,199980,0,-60,6600000,0,0,1]},"B11":{"title":"Band 11 (swir16)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B11","common_name":"swir16","center_wavelength":1.6137,"full_width_half_max":0.143}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B11.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]},"B12":{"title":"Band 12 (swir22)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B12","common_name":"swir22","center_wavelength":2.22024,"full_width_half_max":0.242}],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/B12.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]},"AOT":{"title":"Aerosol Optical Thickness (AOT)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/AOT.tif","proj:shape":[1830,1830],"proj:transform":[60,0,199980,0,-60,6600000,0,0,1]},"WVP":{"title":"Water Vapour (WVP)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/WVP.tif","proj:shape":[10980,10980],"proj:transform":[10,0,199980,0,-10,6600000,0,0,1]},"SCL":{"title":"Scene Classification Map (SCL)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/SCL.tif","proj:shape":[5490,5490],"proj:transform":[20,0,199980,0,-20,6600000,0,0,1]}},"links":[{"rel":"self","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs/items/S2B_32VKL_20250717_0_L2A"},{"rel":"canonical","href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/S2B_32VKL_20250717_0_L2A.json","type":"application/json"},{"title":"sentinel-s2-l2a-aws/workflow-publish-sentinel/tiles-32-V-KL-2025-7-17-0","rel":"via-cirrus","href":"https://cirrus-earth-search.aws.element84.com/v0/catid/sentinel-s2-l2a-aws/workflow-publish-sentinel/tiles-32-V-KL-2025-7-17-0"},{"title":"Source STAC Item","rel":"derived_from","href":"https://cirrus-v0-data-1qm7gekzjucbq.s3.us-west-2.amazonaws.com/sentinel-s2-l2a/32/V/KL/2025/7/S2B_32VKL_20250717_0_L2A/S2B_32VKL_20250717_0_L2A.json","type":"application/json"},{"title":"sentinel-s2-l2a/workflow-cog-archive/S2B_32VKL_20250717_0_L2A","rel":"via-cirrus","href":"https://cirrus-earth-search.aws.element84.com/v0/catid/sentinel-s2-l2a/workflow-cog-archive/S2B_32VKL_20250717_0_L2A"},{"rel":"parent","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs"},{"rel":"collection","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs"},{"rel":"root","href":"https://earth-search.aws.element84.com/v0/"}]}],"links":[{"rel":"next","title":"Next page of results","method":"POST","href":"https://earth-search.aws.element84.com/v0/search","merge":false,"body":{"collections":["sentinel-s2-l2a-cogs"],"page":2,"limit":1}}]}' headers: Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Origin: - '*' Connection: - keep-alive Content-Length: - '10596' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:05 GMT Via: - 1.1 23a3716b2d5bd9224b2cf2d510f83524.cloudfront.net (CloudFront) X-Amz-Cf-Id: - ZcO9CqTYDZ0BE3vPXODDwkbi5aJdL2N9uqmM9AU2hd3K4Ifj3Mi3dg== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f17c-5686ddef69591d434a90c951;Parent=5cb1049a27746271;Sampled=0;Lineage=1:308471e4:0 X-Cache: - Miss from cloudfront x-amz-apigw-id: - N2qrlGqevHcEYVA= x-amzn-RequestId: - 6d437755-8a33-4251-b466-3ec529dd15c5 status: code: 200 message: OK version: 1 TestCLISearch.test_non_conformant_raises_by_default[inprocess].yaml000066400000000000000000000044431503646565400365320ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_cliinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v0 response: body: string: '{"stac_version":"1.0.0-beta.2","stac_api_version":"0.9.0","id":"earth-search","title":"Earth Search","description":"A STAC API of AWS Public Datasets powered by stac-server","links":[{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l1c"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/landsat-8-l1-c1"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","href":"https://earth-search.aws.element84.com/v0/api"},{"rel":"conformance","type":"application/json","href":"https://earth-search.aws.element84.com/v0/conformance"},{"rel":"children","type":"application/json","href":"https://earth-search.aws.element84.com/v0/collections"},{"rel":"self","type":"application/json","href":"https://earth-search.aws.element84.com/v0/"},{"rel":"search","type":"application/json","href":"https://earth-search.aws.element84.com/v0/search"},{"rel":"docs","href":"https://stac-utils.github.io/stac-server/"}]}' headers: Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Origin: - '*' Connection: - keep-alive Content-Length: - '1180' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:03 GMT Via: - 1.1 ea02982ea8ec84214c2e0d4d803fb0f4.cloudfront.net (CloudFront) X-Amz-Cf-Id: - E1RFrI2oApLJopdxy6pPTGLKUqh9o00sJ5m-QK98Aqv-xqGX9GBiiQ== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f17b-3b27af7e12d8cfd96b82f789;Parent=53bf1be5803c2c56;Sampled=0;Lineage=1:308471e4:0 X-Cache: - Miss from cloudfront x-amz-apigw-id: - N2qrTHyNvHcEsKg= x-amzn-RequestId: - ddfd556c-5205-45e9-8548-a05e2931d865 status: code: 200 message: OK version: 1 f89704bf84011a5f2790c2644746e320557782e3.paxheader00006660000000000000000000000236150364656540020027xustar00rootroot00000000000000158 path=pystac-client-0.9.0/tests/cassettes/test_cli/TestCLISearch.test_non_conformant_raises_if_warning_set_to_error[inprocess---error=no-conforms-to].yaml f89704bf84011a5f2790c2644746e320557782e3.data000066400000000000000000000044431503646565400166710ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v0 response: body: string: '{"stac_version":"1.0.0-beta.2","stac_api_version":"0.9.0","id":"earth-search","title":"Earth Search","description":"A STAC API of AWS Public Datasets powered by stac-server","links":[{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l1c"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/landsat-8-l1-c1"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","href":"https://earth-search.aws.element84.com/v0/api"},{"rel":"conformance","type":"application/json","href":"https://earth-search.aws.element84.com/v0/conformance"},{"rel":"children","type":"application/json","href":"https://earth-search.aws.element84.com/v0/collections"},{"rel":"self","type":"application/json","href":"https://earth-search.aws.element84.com/v0/"},{"rel":"search","type":"application/json","href":"https://earth-search.aws.element84.com/v0/search"},{"rel":"docs","href":"https://stac-utils.github.io/stac-server/"}]}' headers: Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Origin: - '*' Connection: - keep-alive Content-Length: - '1180' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:03 GMT Via: - 1.1 5babf08f08448687a0208408106aaed8.cloudfront.net (CloudFront) X-Amz-Cf-Id: - oaJFL1hE-dsxyW8aiD9JY4XLDnF27rDpKO-dpkXVZ7RDYAqyRUVvYA== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f17b-7d87fca34d0b4dce212d033b;Parent=38c3712bdefaa8e7;Sampled=0;Lineage=1:308471e4:0 X-Cache: - Miss from cloudfront x-amz-apigw-id: - N2qrWFSiPHcECiQ= x-amzn-RequestId: - 9722f69d-0e54-4cc1-b070-8b201d68539c status: code: 200 message: OK version: 1 TestCLISearch.test_non_conformant_raises_if_warning_set_to_error[inprocess---error].yaml000066400000000000000000000044431503646565400426060ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_cliinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v0 response: body: string: '{"stac_version":"1.0.0-beta.2","stac_api_version":"0.9.0","id":"earth-search","title":"Earth Search","description":"A STAC API of AWS Public Datasets powered by stac-server","links":[{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l1c"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/landsat-8-l1-c1"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","href":"https://earth-search.aws.element84.com/v0/api"},{"rel":"conformance","type":"application/json","href":"https://earth-search.aws.element84.com/v0/conformance"},{"rel":"children","type":"application/json","href":"https://earth-search.aws.element84.com/v0/collections"},{"rel":"self","type":"application/json","href":"https://earth-search.aws.element84.com/v0/"},{"rel":"search","type":"application/json","href":"https://earth-search.aws.element84.com/v0/search"},{"rel":"docs","href":"https://stac-utils.github.io/stac-server/"}]}' headers: Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Origin: - '*' Connection: - keep-alive Content-Length: - '1180' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:03 GMT Via: - 1.1 5babf08f08448687a0208408106aaed8.cloudfront.net (CloudFront) X-Amz-Cf-Id: - 68VUfm7hgVBPvnnM67HMVsf-oWzsq0opYuBf-J6ZzAopYDhZC_hGGQ== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f17b-6b919c9876cd8c1a3b3eb2d3;Parent=0b964c00868304f3;Sampled=0;Lineage=1:308471e4:0 X-Cache: - Miss from cloudfront x-amz-apigw-id: - N2qrVE5OvHcEUSw= x-amzn-RequestId: - 7df1d6d8-2b30-4808-bc61-7336efc56194 status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_cli/TestCLISearch.test_save[inprocess].yaml000066400000000000000000001044521503646565400307640ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v1 response: body: string: '{"stac_version":"1.0.0","type":"Catalog","id":"earth-search-aws","title":"Earth Search by Element 84","description":"A STAC API of public datasets on AWS","links":[{"rel":"self","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"conformance","type":"application/json","href":"https://earth-search.aws.element84.com/v1/conformance"},{"rel":"data","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections"},{"rel":"search","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","method":"POST"},{"rel":"aggregate","type":"application/json","href":"https://earth-search.aws.element84.com/v1/aggregate","method":"GET"},{"rel":"aggregations","type":"application/json","href":"https://earth-search.aws.element84.com/v1/aggregations"},{"rel":"service-desc","type":"application/vnd.oai.openapi","href":"https://earth-search.aws.element84.com/v1/api"},{"rel":"service-doc","type":"text/html","href":"https://earth-search.aws.element84.com/v1/api.html"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","href":"https://earth-search.aws.element84.com/v1/queryables"},{"rel":"server","type":"text/html","href":"https://stac-utils.github.io/stac-server/"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/naip"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a"},{"rel":"child","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd"}],"conformsTo":["https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features#fields","https://api.stacspec.org/v1.0.0/ogcapi-features#sort","https://api.stacspec.org/v1.0.0/ogcapi-features#query","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#sort","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v0.3.0/aggregation","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson"]}' headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '612' Content-Type: - application/json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:50:10 GMT Via: - 1.1 9d8f66b0c71d2e8a1b8c6f76102da8ca.cloudfront.net (CloudFront) X-Amz-Cf-Id: - APVGAs1lJVXi21p0PH5V5K_y7UTp6HPVCbFSv-YbBGhdN93MVcHX1w== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f182-3948be827af8ce000dee3ca7;Parent=7381cae5d43e2ac4;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"d29-QPs+H0wJLUX32EZKNgzG3k6wfQ8" x-amz-apigw-id: - N2qsbEQ_vHcEtcQ= x-amzn-Remapped-content-length: - '3369' x-amzn-RequestId: - 72cbb87f-0144-4770-99f2-b1115a673e9d x-powered-by: - Express status: code: 200 message: OK - request: body: '{"collections": ["cop-dem-glo-30"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '35' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://earth-search.aws.element84.com/v1/search response: body: string: '{"type":"FeatureCollection","stac_version":"1.0.0","stac_extensions":[],"context":{"limit":10,"matched":26450,"returned":10},"numberMatched":26450,"numberReturned":10,"features":[{"type":"Feature","stac_version":"1.0.0","id":"Copernicus_DSM_COG_10_S90_00_W180_00_DEM","properties":{"platform":"tandem-x","gsd":30,"proj:epsg":4326,"proj:transform":[0.002777777777777778,0,-180.0013888888889,0,-0.0002777777777777778,-88.99986111111112],"proj:shape":[3600,360],"proj:centroid":{"lat":-89.5,"lon":-179.5},"grid:code":"CDEM-S90W180","storage:platform":"AWS","storage:region":"eu-central-1","storage:requester_pays":false,"earthsearch:payload_id":"cop-dem-glo/workflow-cop-dem-glo-to-stac/c535d071376a7c60ed297e65c490d41a","datetime":"2021-04-22T00:00:00Z","processing:software":{"cop-dem-glo-to-stac":"2023.03.28"},"created":"2023-03-28T15:22:58.882Z","updated":"2023-04-20T18:14:07.025Z"},"geometry":{"type":"Polygon","coordinates":[[[-179.0013888888889,-89.99986111111112],[-179.0013888888889,-88.99986111111112],[-180.0013888888889,-88.99986111111112],[-180.0013888888889,-89.99986111111112],[-179.0013888888889,-89.99986111111112]]]},"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W180_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W180_00_DEM/Copernicus_DSM_COG_10_S90_00_W180_00_DEM.json","type":"application/json"},{"rel":"handbook","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook","description":"Also includes data usage information"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W180_00_DEM/thumbnail"}],"assets":{"data":{"href":"s3://copernicus-dem-30m/Copernicus_DSM_COG_10_S90_00_W180_00_DEM/Copernicus_DSM_COG_10_S90_00_W180_00_DEM.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Data","raster:bands":[{"sampling":"point","data_type":"float32","spatial_resolution":30,"unit":"meter"}],"roles":["data"]}},"bbox":[-180.0013888888889,-89.99986111111112,-179.0013888888889,-88.99986111111112],"stac_extensions":["https://stac-extensions.github.io/storage/v1.0.0/schema.json","https://stac-extensions.github.io/processing/v1.1.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json"],"collection":"cop-dem-glo-30"},{"type":"Feature","stac_version":"1.0.0","id":"Copernicus_DSM_COG_10_S90_00_W179_00_DEM","properties":{"platform":"tandem-x","gsd":30,"proj:epsg":4326,"proj:transform":[0.002777777777777778,0,-179.0013888888889,0,-0.0002777777777777778,-88.99986111111112],"proj:shape":[3600,360],"proj:centroid":{"lat":-89.5,"lon":-178.5},"grid:code":"CDEM-S90W179","storage:platform":"AWS","storage:region":"eu-central-1","storage:requester_pays":false,"earthsearch:payload_id":"cop-dem-glo/workflow-cop-dem-glo-to-stac/73d37dfc17f69bb89150a2e7159fade3","datetime":"2021-04-22T00:00:00Z","processing:software":{"cop-dem-glo-to-stac":"2023.03.28"},"created":"2023-03-28T15:22:57.096Z","updated":"2023-04-20T18:14:01.460Z"},"geometry":{"type":"Polygon","coordinates":[[[-178.0013888888889,-89.99986111111112],[-178.0013888888889,-88.99986111111112],[-179.0013888888889,-88.99986111111112],[-179.0013888888889,-89.99986111111112],[-178.0013888888889,-89.99986111111112]]]},"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W179_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W179_00_DEM/Copernicus_DSM_COG_10_S90_00_W179_00_DEM.json","type":"application/json"},{"rel":"handbook","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook","description":"Also includes data usage information"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W179_00_DEM/thumbnail"}],"assets":{"data":{"href":"s3://copernicus-dem-30m/Copernicus_DSM_COG_10_S90_00_W179_00_DEM/Copernicus_DSM_COG_10_S90_00_W179_00_DEM.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Data","raster:bands":[{"sampling":"point","data_type":"float32","spatial_resolution":30,"unit":"meter"}],"roles":["data"]}},"bbox":[-179.0013888888889,-89.99986111111112,-178.0013888888889,-88.99986111111112],"stac_extensions":["https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://stac-extensions.github.io/processing/v1.1.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/storage/v1.0.0/schema.json"],"collection":"cop-dem-glo-30"},{"type":"Feature","stac_version":"1.0.0","id":"Copernicus_DSM_COG_10_S90_00_W178_00_DEM","properties":{"platform":"tandem-x","gsd":30,"proj:epsg":4326,"proj:transform":[0.002777777777777778,0,-178.0013888888889,0,-0.0002777777777777778,-88.99986111111112],"proj:shape":[3600,360],"proj:centroid":{"lat":-89.5,"lon":-177.5},"grid:code":"CDEM-S90W178","storage:platform":"AWS","storage:region":"eu-central-1","storage:requester_pays":false,"earthsearch:payload_id":"cop-dem-glo/workflow-cop-dem-glo-to-stac/8e73f78d276f781fab7a6cfbfff25942","datetime":"2021-04-22T00:00:00Z","processing:software":{"cop-dem-glo-to-stac":"2023.03.28"},"created":"2023-03-28T15:22:59.069Z","updated":"2023-04-20T18:13:50.566Z"},"geometry":{"type":"Polygon","coordinates":[[[-177.0013888888889,-89.99986111111112],[-177.0013888888889,-88.99986111111112],[-178.0013888888889,-88.99986111111112],[-178.0013888888889,-89.99986111111112],[-177.0013888888889,-89.99986111111112]]]},"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W178_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W178_00_DEM/Copernicus_DSM_COG_10_S90_00_W178_00_DEM.json","type":"application/json"},{"rel":"handbook","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook","description":"Also includes data usage information"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W178_00_DEM/thumbnail"}],"assets":{"data":{"href":"s3://copernicus-dem-30m/Copernicus_DSM_COG_10_S90_00_W178_00_DEM/Copernicus_DSM_COG_10_S90_00_W178_00_DEM.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Data","raster:bands":[{"sampling":"point","data_type":"float32","spatial_resolution":30,"unit":"meter"}],"roles":["data"]}},"bbox":[-178.0013888888889,-89.99986111111112,-177.0013888888889,-88.99986111111112],"stac_extensions":["https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://stac-extensions.github.io/processing/v1.1.0/schema.json","https://stac-extensions.github.io/storage/v1.0.0/schema.json"],"collection":"cop-dem-glo-30"},{"type":"Feature","stac_version":"1.0.0","id":"Copernicus_DSM_COG_10_S90_00_W177_00_DEM","properties":{"platform":"tandem-x","gsd":30,"proj:epsg":4326,"proj:transform":[0.002777777777777778,0,-177.0013888888889,0,-0.0002777777777777778,-88.99986111111112],"proj:shape":[3600,360],"proj:centroid":{"lat":-89.5,"lon":-176.5},"grid:code":"CDEM-S90W177","storage:platform":"AWS","storage:region":"eu-central-1","storage:requester_pays":false,"earthsearch:payload_id":"cop-dem-glo/workflow-cop-dem-glo-to-stac/d3d522ad2eb8df535dc4b4c666f4a6f2","datetime":"2021-04-22T00:00:00Z","processing:software":{"cop-dem-glo-to-stac":"2023.03.28"},"created":"2023-03-28T15:22:58.088Z","updated":"2023-04-20T18:13:48.068Z"},"geometry":{"type":"Polygon","coordinates":[[[-176.0013888888889,-89.99986111111112],[-176.0013888888889,-88.99986111111112],[-177.0013888888889,-88.99986111111112],[-177.0013888888889,-89.99986111111112],[-176.0013888888889,-89.99986111111112]]]},"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W177_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W177_00_DEM/Copernicus_DSM_COG_10_S90_00_W177_00_DEM.json","type":"application/json"},{"rel":"handbook","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook","description":"Also includes data usage information"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W177_00_DEM/thumbnail"}],"assets":{"data":{"href":"s3://copernicus-dem-30m/Copernicus_DSM_COG_10_S90_00_W177_00_DEM/Copernicus_DSM_COG_10_S90_00_W177_00_DEM.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Data","raster:bands":[{"sampling":"point","data_type":"float32","spatial_resolution":30,"unit":"meter"}],"roles":["data"]}},"bbox":[-177.0013888888889,-89.99986111111112,-176.0013888888889,-88.99986111111112],"stac_extensions":["https://stac-extensions.github.io/processing/v1.1.0/schema.json","https://stac-extensions.github.io/storage/v1.0.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json"],"collection":"cop-dem-glo-30"},{"type":"Feature","stac_version":"1.0.0","id":"Copernicus_DSM_COG_10_S90_00_W176_00_DEM","properties":{"platform":"tandem-x","gsd":30,"proj:epsg":4326,"proj:transform":[0.002777777777777778,0,-176.0013888888889,0,-0.0002777777777777778,-88.99986111111112],"proj:shape":[3600,360],"proj:centroid":{"lat":-89.5,"lon":-175.5},"grid:code":"CDEM-S90W176","storage:platform":"AWS","storage:region":"eu-central-1","storage:requester_pays":false,"earthsearch:payload_id":"cop-dem-glo/workflow-cop-dem-glo-to-stac/49de4e27c37eec9a6363d819ed0d7439","datetime":"2021-04-22T00:00:00Z","processing:software":{"cop-dem-glo-to-stac":"2023.03.28"},"created":"2023-03-28T15:22:57.007Z","updated":"2023-04-20T18:14:12.306Z"},"geometry":{"type":"Polygon","coordinates":[[[-175.0013888888889,-89.99986111111112],[-175.0013888888889,-88.99986111111112],[-176.0013888888889,-88.99986111111112],[-176.0013888888889,-89.99986111111112],[-175.0013888888889,-89.99986111111112]]]},"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W176_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W176_00_DEM/Copernicus_DSM_COG_10_S90_00_W176_00_DEM.json","type":"application/json"},{"rel":"handbook","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook","description":"Also includes data usage information"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W176_00_DEM/thumbnail"}],"assets":{"data":{"href":"s3://copernicus-dem-30m/Copernicus_DSM_COG_10_S90_00_W176_00_DEM/Copernicus_DSM_COG_10_S90_00_W176_00_DEM.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Data","raster:bands":[{"sampling":"point","data_type":"float32","spatial_resolution":30,"unit":"meter"}],"roles":["data"]}},"bbox":[-176.0013888888889,-89.99986111111112,-175.0013888888889,-88.99986111111112],"stac_extensions":["https://stac-extensions.github.io/processing/v1.1.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json","https://stac-extensions.github.io/storage/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json"],"collection":"cop-dem-glo-30"},{"type":"Feature","stac_version":"1.0.0","id":"Copernicus_DSM_COG_10_S90_00_W175_00_DEM","properties":{"platform":"tandem-x","gsd":30,"proj:epsg":4326,"proj:transform":[0.002777777777777778,0,-175.0013888888889,0,-0.0002777777777777778,-88.99986111111112],"proj:shape":[3600,360],"proj:centroid":{"lat":-89.5,"lon":-174.5},"grid:code":"CDEM-S90W175","storage:platform":"AWS","storage:region":"eu-central-1","storage:requester_pays":false,"earthsearch:payload_id":"cop-dem-glo/workflow-cop-dem-glo-to-stac/844b144a92308d72b2a1a49cfd1bca65","datetime":"2021-04-22T00:00:00Z","processing:software":{"cop-dem-glo-to-stac":"2023.03.28"},"created":"2023-03-28T15:22:57.706Z","updated":"2023-04-20T18:14:15.994Z"},"geometry":{"type":"Polygon","coordinates":[[[-174.0013888888889,-89.99986111111112],[-174.0013888888889,-88.99986111111112],[-175.0013888888889,-88.99986111111112],[-175.0013888888889,-89.99986111111112],[-174.0013888888889,-89.99986111111112]]]},"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W175_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W175_00_DEM/Copernicus_DSM_COG_10_S90_00_W175_00_DEM.json","type":"application/json"},{"rel":"handbook","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook","description":"Also includes data usage information"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W175_00_DEM/thumbnail"}],"assets":{"data":{"href":"s3://copernicus-dem-30m/Copernicus_DSM_COG_10_S90_00_W175_00_DEM/Copernicus_DSM_COG_10_S90_00_W175_00_DEM.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Data","raster:bands":[{"sampling":"point","data_type":"float32","spatial_resolution":30,"unit":"meter"}],"roles":["data"]}},"bbox":[-175.0013888888889,-89.99986111111112,-174.0013888888889,-88.99986111111112],"stac_extensions":["https://stac-extensions.github.io/storage/v1.0.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/processing/v1.1.0/schema.json"],"collection":"cop-dem-glo-30"},{"type":"Feature","stac_version":"1.0.0","id":"Copernicus_DSM_COG_10_S90_00_W174_00_DEM","properties":{"platform":"tandem-x","gsd":30,"proj:epsg":4326,"proj:transform":[0.002777777777777778,0,-174.0013888888889,0,-0.0002777777777777778,-88.99986111111112],"proj:shape":[3600,360],"proj:centroid":{"lat":-89.5,"lon":-173.5},"grid:code":"CDEM-S90W174","storage:platform":"AWS","storage:region":"eu-central-1","storage:requester_pays":false,"earthsearch:payload_id":"cop-dem-glo/workflow-cop-dem-glo-to-stac/418c37ad049d8117e468d4a28bb17103","datetime":"2021-04-22T00:00:00Z","processing:software":{"cop-dem-glo-to-stac":"2023.03.28"},"created":"2023-03-28T15:23:02.313Z","updated":"2023-04-20T18:14:08.604Z"},"geometry":{"type":"Polygon","coordinates":[[[-173.0013888888889,-89.99986111111112],[-173.0013888888889,-88.99986111111112],[-174.0013888888889,-88.99986111111112],[-174.0013888888889,-89.99986111111112],[-173.0013888888889,-89.99986111111112]]]},"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W174_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W174_00_DEM/Copernicus_DSM_COG_10_S90_00_W174_00_DEM.json","type":"application/json"},{"rel":"handbook","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook","description":"Also includes data usage information"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W174_00_DEM/thumbnail"}],"assets":{"data":{"href":"s3://copernicus-dem-30m/Copernicus_DSM_COG_10_S90_00_W174_00_DEM/Copernicus_DSM_COG_10_S90_00_W174_00_DEM.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Data","raster:bands":[{"sampling":"point","data_type":"float32","spatial_resolution":30,"unit":"meter"}],"roles":["data"]}},"bbox":[-174.0013888888889,-89.99986111111112,-173.0013888888889,-88.99986111111112],"stac_extensions":["https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/storage/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json","https://stac-extensions.github.io/processing/v1.1.0/schema.json"],"collection":"cop-dem-glo-30"},{"type":"Feature","stac_version":"1.0.0","id":"Copernicus_DSM_COG_10_S90_00_W173_00_DEM","properties":{"platform":"tandem-x","gsd":30,"proj:epsg":4326,"proj:transform":[0.002777777777777778,0,-173.0013888888889,0,-0.0002777777777777778,-88.99986111111112],"proj:shape":[3600,360],"proj:centroid":{"lat":-89.5,"lon":-172.5},"grid:code":"CDEM-S90W173","storage:platform":"AWS","storage:region":"eu-central-1","storage:requester_pays":false,"earthsearch:payload_id":"cop-dem-glo/workflow-cop-dem-glo-to-stac/28fe6c92205b98b9e32cd84434dbbd8c","datetime":"2021-04-22T00:00:00Z","processing:software":{"cop-dem-glo-to-stac":"2023.03.28"},"created":"2023-03-28T15:22:54.595Z","updated":"2023-04-20T18:14:10.585Z"},"geometry":{"type":"Polygon","coordinates":[[[-172.0013888888889,-89.99986111111112],[-172.0013888888889,-88.99986111111112],[-173.0013888888889,-88.99986111111112],[-173.0013888888889,-89.99986111111112],[-172.0013888888889,-89.99986111111112]]]},"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W173_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W173_00_DEM/Copernicus_DSM_COG_10_S90_00_W173_00_DEM.json","type":"application/json"},{"rel":"handbook","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook","description":"Also includes data usage information"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W173_00_DEM/thumbnail"}],"assets":{"data":{"href":"s3://copernicus-dem-30m/Copernicus_DSM_COG_10_S90_00_W173_00_DEM/Copernicus_DSM_COG_10_S90_00_W173_00_DEM.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Data","raster:bands":[{"sampling":"point","data_type":"float32","spatial_resolution":30,"unit":"meter"}],"roles":["data"]}},"bbox":[-173.0013888888889,-89.99986111111112,-172.0013888888889,-88.99986111111112],"stac_extensions":["https://stac-extensions.github.io/processing/v1.1.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/storage/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json"],"collection":"cop-dem-glo-30"},{"type":"Feature","stac_version":"1.0.0","id":"Copernicus_DSM_COG_10_S90_00_W172_00_DEM","properties":{"platform":"tandem-x","gsd":30,"proj:epsg":4326,"proj:transform":[0.002777777777777778,0,-172.0013888888889,0,-0.0002777777777777778,-88.99986111111112],"proj:shape":[3600,360],"proj:centroid":{"lat":-89.5,"lon":-171.5},"grid:code":"CDEM-S90W172","storage:platform":"AWS","storage:region":"eu-central-1","storage:requester_pays":false,"earthsearch:payload_id":"cop-dem-glo/workflow-cop-dem-glo-to-stac/5c17e612b46a13cc461059d019b55187","datetime":"2021-04-22T00:00:00Z","processing:software":{"cop-dem-glo-to-stac":"2023.03.28"},"created":"2023-03-28T15:22:59.882Z","updated":"2023-04-20T18:14:10.698Z"},"geometry":{"type":"Polygon","coordinates":[[[-171.0013888888889,-89.99986111111112],[-171.0013888888889,-88.99986111111112],[-172.0013888888889,-88.99986111111112],[-172.0013888888889,-89.99986111111112],[-171.0013888888889,-89.99986111111112]]]},"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W172_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W172_00_DEM/Copernicus_DSM_COG_10_S90_00_W172_00_DEM.json","type":"application/json"},{"rel":"handbook","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook","description":"Also includes data usage information"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W172_00_DEM/thumbnail"}],"assets":{"data":{"href":"s3://copernicus-dem-30m/Copernicus_DSM_COG_10_S90_00_W172_00_DEM/Copernicus_DSM_COG_10_S90_00_W172_00_DEM.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Data","raster:bands":[{"sampling":"point","data_type":"float32","spatial_resolution":30,"unit":"meter"}],"roles":["data"]}},"bbox":[-172.0013888888889,-89.99986111111112,-171.0013888888889,-88.99986111111112],"stac_extensions":["https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/processing/v1.1.0/schema.json","https://stac-extensions.github.io/storage/v1.0.0/schema.json"],"collection":"cop-dem-glo-30"},{"type":"Feature","stac_version":"1.0.0","id":"Copernicus_DSM_COG_10_S90_00_W171_00_DEM","properties":{"platform":"tandem-x","gsd":30,"proj:epsg":4326,"proj:transform":[0.002777777777777778,0,-171.0013888888889,0,-0.0002777777777777778,-88.99986111111112],"proj:shape":[3600,360],"proj:centroid":{"lat":-89.5,"lon":-170.5},"grid:code":"CDEM-S90W171","storage:platform":"AWS","storage:region":"eu-central-1","storage:requester_pays":false,"earthsearch:payload_id":"cop-dem-glo/workflow-cop-dem-glo-to-stac/1310d1297a952f7c29d62ba60e546d6b","datetime":"2021-04-22T00:00:00Z","processing:software":{"cop-dem-glo-to-stac":"2023.03.28"},"created":"2023-03-28T15:22:57.007Z","updated":"2023-04-20T18:14:05.006Z"},"geometry":{"type":"Polygon","coordinates":[[[-170.0013888888889,-89.99986111111112],[-170.0013888888889,-88.99986111111112],[-171.0013888888889,-88.99986111111112],[-171.0013888888889,-89.99986111111112],[-170.0013888888889,-89.99986111111112]]]},"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W171_00_DEM"},{"rel":"canonical","href":"s3://earthsearch-data/cop-dem-glo-30/Copernicus_DSM_COG_10_S90_00_W171_00_DEM/Copernicus_DSM_COG_10_S90_00_W171_00_DEM.json","type":"application/json"},{"rel":"handbook","href":"https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf","type":"application/pdf","title":"Copernicus DEM User handbook","description":"Also includes data usage information"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items/Copernicus_DSM_COG_10_S90_00_W171_00_DEM/thumbnail"}],"assets":{"data":{"href":"s3://copernicus-dem-30m/Copernicus_DSM_COG_10_S90_00_W171_00_DEM/Copernicus_DSM_COG_10_S90_00_W171_00_DEM.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Data","raster:bands":[{"sampling":"point","data_type":"float32","spatial_resolution":30,"unit":"meter"}],"roles":["data"]}},"bbox":[-171.0013888888889,-89.99986111111112,-170.0013888888889,-88.99986111111112],"stac_extensions":["https://stac-extensions.github.io/processing/v1.1.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/storage/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json"],"collection":"cop-dem-glo-30"}],"links":[{"rel":"next","title":"Next page of Items","method":"POST","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","merge":false,"body":{"collections":["cop-dem-glo-30"],"next":"2021-04-22T00:00:00Z,Copernicus_DSM_COG_10_S90_00_W171_00_DEM,cop-dem-glo-30"}},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"}]}' headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '2227' Content-Type: - application/geo+json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:50:10 GMT Via: - 1.1 bcab77f1ffe9d73bbe5ff7a973cd0160.cloudfront.net (CloudFront) X-Amz-Cf-Id: - IAlLfOQFf9ueQe9kbA-pDpXT7DEH3kTgLOxlD0HKY-wjr2jIz13WrQ== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f182-4c7edb4d2f639c025682c206;Parent=7231401e16d23014;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"70d2-XVOU+Ip4h5kZfyLDmx2Rnv6U3q4" x-amz-apigw-id: - N2qscE56PHcEDwQ= x-amzn-Remapped-content-length: - '28882' x-amzn-RequestId: - 4214e337-7bf6-4467-ac8c-922230373f69 x-powered-by: - Express status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_client/000077500000000000000000000000001503646565400217725ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_client/TestAPI.test_collections_fallback.yaml000066400000000000000000002026651503646565400313350ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.26.0 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: !!binary | H4sIAABBjGEC/72ZUW8iNxCA/8qISlWrxiwkL3dUfQBCCFVIEEuVh1NUGa9ZfPWuN7aXlJ7y3zte dgmJolNkzL1EitmZ+XZmPB7PfmvZbcFbvdaQWipV2jpriQT/zQTTyqiVJQXDNSusdE9Nm2WYSZpz S/UWhiorSss1xIv+EPqzCT6fcMO0KKxQOUrFnGq2pkvJwRQUFy3PCqWphAxVJGgZdgJLkacwotqu wTDBc8bB/Wq4NbBWxvIElluwaw7fA0H7xlL294ZrswPotjvtDi4zla+UzsxCtXpfWmtri14UPT09 tVXB81SYNmqKTMFZpFJGC0FWnNpSc0O6EeqInDz+0Rx1eUqnXH01COWtQFFz0fES1/zxlbRBcXys 7ZzlxNpKp9Gm8hVZokvbF4fv+oGnBcaVmCrYXkI/rYTcxc9btrekRjBSpRmVBD2jqVXaBNDZJG0g pexRkoNM8FMSwGEHS+QIdRHq4zIxnsKPJddbT1mjtP246Ju90Xo4a0mR/2OwInxraS6xXBguV67o 7SojLQopmCtbedQETPMV/tJYLJoSxOoK1N6XzzYuOaLIESFJ1Ho+a8xopewPMOMq6KnMMCUlZ06Z ObSomPmuxeY4ucPChQcG1AJHgFQaXgjqQk/xBPkQiDu6ovur+AIOJIFJagw3ILJC8ozn+/NHGDBc b3Zb5RjvvVC+sO8L6DvYeHr89g46vBRdf5q9DjyU18o1AePR4oNcP45pdhcfQrG1kMmHmP6KxzGM aQE3NE+wVwgQvX3uRyktvKBu+3H/cjSF6/ECNp1ONxxRTg1NeOZFdUm36G/o53mJPdqtcv1YP+Ma Hw8HmFRGCK2MkJx6kV7PR/0eXIt0DXNulCzdQzByRpBW2C30GePGhMNGNfQYp05VbtdyC9f0iQoR 3J3ZTj1Zi2MgL6lAxNMGPnE2fOP+xpmnJW18ehxrvZtm2OhYBXPB1Kn2UqGPj/0pMXeRD0F5ok20 AzxuCzWpeUpHNonp6cp+vBjN4aa7CAdG8Y6uiezaADvlRMGtN4lndEdGC+h2yJS7iccpWgmhiCwl 86L7cz6EsVRL9F5c6hXFHvae2pB0XzUjqXnyonPeMtTCJ3RZoxHO4YZvuCTn4Rjlzg75RNg5kede rFM1mPRgiu2iWsFAqERU0yRsKCZuCmDrm0Ug4kwt/dJxuhjEPVdrhFXaDc8WmuPLg8hhUOocYvSt RuqAqHZpvFAXXGs6lCLDhAyHY51WVmv1wYrxWidyl4BNIvbD0Zm9csxD6nltgSHPTRmwhS0NYTuV PkBDN/7KBSsNuJvL+OaO7CaKYeCYKgjeW0gqldMbiPDziQg/+xFeKc2NhUm+wQRRegvuHOnnVG6N CBjolfDLufoIeV32dqOKqmZfUSakW/xlPJhc/RrwGr0UKz/iu1FM5jCUqkzgZyyIwrjpHhZrmtaD xUCEiuPuyYT/COLicjTDukwzifdSl6ABA36R8MKNRSvdfj3hzV0M90rLBEFxA2YBe0OpDPEdSaRa JNNRwE7VKcR20G/qMB70sD3V2H+L/3gCL/sloxhT3Chw3ukGLDnrdOk5XprMenBb/YaAfXxpVsrD nQEzrVJNs5CDJ1G8mhrqjWCcuA987zNv8qStqKi+YqHSar75e/3t7o+L6rvd23lxrRQOPzMe9QK1 7Xblv+eH+gMi/9fiOVkNt3tfHp7/B46xGA8sHQAA headers: Content-Encoding: - gzip Content-Length: - '1284' Content-Type: - application/json Date: - Wed, 10 Nov 2021 22:00:31 GMT Strict-Transport-Security: - max-age=15724800; includeSubDomains Vary: - Accept-Encoding X-Azure-Ref: - 0AEGMYQAAAABwKB8OokD7Tprae0ooVhyQQk9TMzIxMDAwMTEwMDIzADkyN2FiZmE2LTE5ZjYtNGFmMS1hMDlkLWM5NTlkOWExZTY0NA== X-Cache: - CONFIG_NOCACHE status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.26.0 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections response: body: string: !!binary | H4sIAABBjGEC/+x9iXLjSI7orzC8772xd0VJ1K2aty/CVx2ztstjubp3tqbDQUm0xDFFanjYpd7o /fYHIDPJ5ClKllzqam7MdslSHkgkEgkgcfz30cSxLGPim47tHb37+t9H5vTo3dFMXx7VjvzV0oA/ zsMW8J1l2k+soWtY8KPpGwsvaqsvl5Y50bFxY2Y4//YPj3rNXeMRfp37/tJ712gsLd02fN1dTZzF MvANt74wJ67jOY9+Hb5q6Euz4fn6pPGsNST4GgBWg034W00AsNRdw/azIXj97NJEruO8xTSeYT3u a5oELqVZYRLD9oz08C8vL/XAm3n1mfMM/V1D9SamYU/g35WHW9GYT6deY6r7urp0YJgVAm/6FkK/ DMbwjTJ1FrppS7NNDW/immNjOl5tviCcyjP8BqdRPtXHYKHbimvoU31sGQpvpDjPhvtsGi+Kbk/h 10fDRdgj/PrGN78x9xfW0W+/RIN9GX0YKR/0pXKF3c5xEOiiezAi0P5/H/nzYDG2ddPCPxLg62bH 4LN7bP2sX31sOeM6YrD+YtpT58WrwzIb7MfGcvIQDkp7U1/aswhMc6HPjAb7ynUsA0/gEc5ylIL6 9BYQfeS45sy0dUuljdGfCgA1ghfD83PAw61X8diJAQk42KHpxHl+0J/qv5rLbGplP+QCe2rp3pOu eE7gTth2QWtGF0tiNe+OPvMp5UbKo+MqrG96mXNzP8ucm1sv86P+opvmdstkfdPLXLo7XObSfeDL hIO27SpvA8P1HeXOnDjbLVUaIL3eiWMH3m53ltb8aLrGg00L1C3gMy6M4po6cEiH87ZWU9O2Rsr5 55svo+3Q4c8NBVbtmzZcbfD7Fxtuvaky8nXf8JRjGvnk6DfAFLAvvP0AOd4SoNKJI43HzjeA6Kuq tfr1YV9rdgbaoKn1h+1aq1XvD/v9wbDVa3d7nfagXVN73Xqr12t3WgNN68BPnVpXq/c6PWjTavZ6 w3av9UsNBusP6lpbg5aDfqczGDZbtc6w3hw2+9Cw22q3NW1Qg0nqg/6gM+w3W+1OtwuD9bV6p90e tDqDdr/faTW7NFiviZN2mr1hp9fst7DroD7oatCu0+l3tWZ/0KupWrdTBwj6nXYX4G/Dz7iC1rAL kGqDgTbs9NsDHK8HC+322zDloNXXhl0ABOCA4Xvddq/b4avUBm2YcjDs9/rtHk7YbQ17Xa0Na+0M e7/8AgiFbV86LsOjaQNVPOPnr1+PtOFwqDY1+N99s/mO/vdfsKNIIoBntS1/DSP9VgvvVLgHXWfp mnSpQZcnY/XiuFMiGuTZ8BVy7drR1enNxftPd5f4Ub54YtuPJAbjPZtTw2WCWOBaG13Y4m8dSG/l mxMPPk3hVxvIzjOZlMXbNPCcqBMOh60vxD0jEz5AMzE8z8Em8HkaTKg1Wz58+wte/HEg19zx0VzX 4mt5wrnj+TAqIMILFgsdMEvsYeaB6Pq13YTvLX1sWO8mFt6uDEnR56MmjDVyAn+uvLeAK0x15Uxf zUFyUEYv+mKZ+vV8tQTW4CkXzsJI/XjxoruPYZOR/qzbtp5qda3bM9gzI2eGj7o7fXGcKXxYLJzJ k2hg6J4fgeHAX8AMRr6LxIH/fw1r982FkeyH/HCbfmGfW+A8yh38gvsPv5768AFIJRzs1gKJTnmv W5ZqYdsRtJubluUpV449swz9kY3xM6wKx1BU5fPSsIGTIdn6Dh2EXYw6mrjBuDGaw39LDf6FbvWc 8fK7/afhwnd3JhwE5SKwkQ4ucXM+BNZjoukn5BomcPHCqdIIUa6dqflo0tl59dgyWqRxxf7G+wk0 56Kz/BCFq/rZyF5V5mLeO3gfE7mu355zuASBaUeEzXrnd2DHy7UzeoixcGZ2Ku6Nb7oXDvDeNe1Z Hnx5G3cFUwA+bGmevKZpiPJahou4cpD5nFnB4+MGva6B20+UkeUspbmuTc/D/y2XpnJhWL6eAU84 QnzgC9htvpUhQ1vX57P+RHxVYb0EN8qjlPO5YQMtUesvyyV82mBv8gZleEiDjAhUBTWweaiDV0Sg eZNgFzU9R17z8EgigogS547rb3k6iKFelWSoVw4I0pYVO7gXxsScBk5ACACJlFmLdsCmsiZ7PV99 fPRAYIp2tMTgN4buqvQVx6+l+9jXWzceXAgz1wCWF2FGARjhwgeNfUqDIU/RLRMEe9vUQ1b1E2yK AQs3v0Ez3OVIdpBbcyjPLcczpgAhwAb/MR+B9LNpIKPzFVxbNEWIJKKorPmunBcY+Rp0DxDQkKNQ R/W94/hEjnFcJ4ZJMk467tHYbKkRxiSgr42piRoYTKrH+iTh0SdPBFAxDrJmL1j/tT51cd5Le4Lq mPQNLHfl2OpfAttEZiNDHLUwVBw7GxLRjDErsQ4OfUG/yynIlVM6b76hB8hb1TS/XtcrunX4Ytd1 YFOc67hq1EKgmYPnzXz0lVPgAfAjm7kWx+UHS5+GMtG57k3gT4826tZBUcDx9CK+lbv9SZKJrqni HvJmQ+sb4J1z5VafwLGd0D114QQz0AjUR9NVj3GTAEknOdDFeyeGLkA5ClGCMcNZn8HdtVLPg8XY cAlxCEcOBQDXEdxmu96EbIlPZZ7N0+VShxM1NwGFgjSjIcv0ItTgl+mbTfSVm4vLTCIFbAnk4YGE ASvzlIIjkcO6GVM4A1kF6WCiuwZdVK5ugmKYxEv4scydIBZXKNis7c2Es1DcUT+akycnGlHd7J4q PargWYlBcwQa0KjlSyiJe86GJdkwUoXinCBTkGSNgYyDZ1MWFzlLY2tJCKK00hDa8PIvIPvCTnyq NV1R4Ubs5k2ncv4iIbVkv59Md2YCg2rcmv5knjqfZUZRswglt2NqwWFjPMPZgiLOl3GSXecFRJU/ ebCP0xkTIqNfPwd4uFFPyOIgn3/V3Sc1bCMWJOE93SIL8pD7kF0sh7Vs0xq2hnR7uVeIRiD7jBs4 eyqGG5yQS3a4VokhbdtDMPPFThiWJM4mSVCIrPdw00rSLPxyF8AVDrM8ppZwaxrTBey72Fj1GEc9 iSYLBfzkbKcgIuBOAIrVS8t4ZpLzaOkGE0N9D7dymg55FzXr2oo6Su2ldh+NhQWqpZp/T+XecVlD N8lEG+DLM0HEF5O6DqVtL2pOQuQx4O+ksD3TIXNXcqtbhvOrAxQqaJZZBHBl97oVePLOlbzFCxgF F0KyDsVOzIUJrauMZhhXktXYKd/kli01YOomSHCyRF/UpdD+XsD78mfL1G+STD/Xppm56cjbrp0A jg+3TmRwqOLjvREjyEJ/+d4pXOd3/WjoaMjO7XnJ0fYB9DJfyD9wPKyZq4MUcuqh/fIW9kWWC9Cg nurEmko7VKqXrBb8nNUAF3IWuAWiSmY3/N3AE6kzZ4c7/ZnZHqLdzz6VReavEiJoSatj2CtvuhzR 7cwwJnP1Wl9a62VDaqWewTbGh04cszwICFEZoxqes5zjQ9kGAgY+3eVLUAVib5qwWePMW200B5av nOku3BRePt+NcJ8y5Ua3TMRzovGyhUtiFslG+fQlCbxRp0IdtMBSEDcwMNSIbnTU11iGrs3p1GJP W6uI/YkRJKtAoZaAwlt8hOgijEGTsNUVDBBa2EQPfp5HvrFcGgUdXzVrwjqTYx/L6y340JXuwg4n 2mcyP5Vr6x/p7i83ex6irshiwMg2w0BH5KqG3YArhDxbzcJScqez+4+CsW4tEVo2vXrmmp6PLiOC bksQSzRIbMnS9ZHokLpppEkSTa8cYDBLxzISd3pq4x1XHaF8VbJDBLNkikxKxmtgi8Z4ZX9VkHuJ TUiMcWbOfKQgdlnwWzJTWNrqhOdaojc+tWVHShyihAdC+TMffwcQkP3FeHx0jRXXUOJdT+S+/2Hp CxC8gKa8J3PlBAnL/chwlwY5NCUWWzRE3GheZohcs7C0eyVwnW9dLj3EyKT+KrGRhbhfDM9w/ZBv /jwXerjKPuJJKH7KuTOyxKbQOH3mOvqUdAB0IPIscxq7SGXZM2UTF4fatNBYhyq4gFOonOnrMTXO xxVs2UKIGcBgnnR+zMv1EFPCOtWJMdVTQOQNA+TG7Lq0N0K4WyMNxIcIpaMIGfIzQUlAwlFoBOjl bzUKTZ/cgGhv8vpxqeEnx5roNoqNlvOiz4wimgZUx0fMbZm+t9asXuqR1I2iHoIvZWMk+YaYGDbr to3jMLMtO53KjfGsT+V1ZV6GqRdWxwoWYwBGmFnENiWlkIQgwyQhEiQKHhaz5Y7zwLVUOtjRFaLP nZlurxLTSUc8eygxp/Rw61iOq0+dcEEJ6OQx17UtcWOtQVPuvZU7Ub68CeTvTJf4ubDZnbkEutXt PN06NsyaFsqIuVnmtRRz5W9blj4pja8Kssx43pO7hBMVdQiVOgQiZ8JoQWt7hXNGfTLsmJljJ5R0 aUty9HLQOtDVR96aki0zMZLTd7TQLfKdNPQFs6tEgOWYIdJIQe2IO342863H1ETCSM7weKOE7il8 tBzgG1yEiivkuQPIZodG6nWCPyhcGOTqStZ6vqYcxZ9UvRfgEq7An7QFoYEuvRN5w7nOi108XAkT yL05hS+Fcl28ALb30jLYO+YG0/IRIsg3H0FsTCbgue6GRPE5k2UiPddbME3/eSvIGyIT8mbSjJ3N JBN2Mb2Y9RY8Pp85vu8sEhSc2VIaTz7vRYOjLV3qdhxNdlLULT00ymJ8yCTPWudJWYpM09bFnHny WWSsN6OOtRjL83IsJNOCfpK3njyEoK1cp8ocWl53BKkDCxAwjKU+4278gCNQpieORzcKDXimr2Yw Bwp7OD3dBDmDJph9zq5+XE1dMlbH4wJS7eKAxUHJRUdBn1w2aruIM7I0hN3wQkm+MwNG7vVvQDvB onGz8jy9BIcvP7oqHIdNW/eNUm96krM0e5KWXlClyzDP0yWTf3iZxyRvCHmadUZzpiUUIiGfGGQ8 SgNt3AHR/GQ8GrbzZOAPq8aHYJHJELYYLukQ8JqxBKWVCTaQB4xjVdqekl7cUo+kH6AkJubFLFj6 Ch+r0JSku44FpIw45rtr0J6viXrIGeGj4Y71CfmQrB0jRDviQrYgMm8uaYWhjpE9EPZPxoQUDxQL NorhclMn7W0duzcPwCkabn3sTEaQlbyGEkcgEYuWR6cbbIYwZrDDFb6urFdTZXNG2I055suW3/UD NQueSoT9TjCwvHabzrnb7qmO0b2+9gkjNVnaQpo0ZsaQkbKAJsSvNYbf8muO92NkLiDJj29YP26u uXEToio0W0YPB5vTKchI4dpPF+gpiE10dyGM+ZuSTsFQGeRTpnXuVPf6Qg8saGbHzSTS9xlTngHZ IJunl9IzE592Q4GD//YXfMPlXk34MWnh583Yo0ahTx9rqUpuCILIebhBJAKhX+KUHi6V94YtefLw 2dKWoJDTjuYG7PlH3ZsrZ4Y+mWfG18Z+iUXQxn4Jv6WoBIv8EEb6C/MeutZdL93yPSx2zi0XlhPM 5ixmQvcxyYNjpYOKkX3DUJbwYk+8zQkb+/lch91zKWIlZSPP+ZEFskpHQm6XeoGD1s7CcZfzeB/5 MpH7r3k3k0aI0aw8RMjgZc+azIc8uVdWwE/5lmGENF7ghdwsHtrEu33Arc94Qk2uOdYu59qlVVP4 DfmBFXS51YGUPEMikTiDPmUvGgSx/HYfGzP7LljfIsXQ1l3JtfgSOTpTE2W9lLMBohC0KBixDBTS 2rfrp8ZfoWWQcx/3OcjR3HKvROMP+mJsUJynKnwV0zguQm2EmdgjQkSI0TtaBsEmRI1IczjTLXY6 ycFv3UMvSQPkbx6N8NHQQ49FAE9fGD5cB3FrshymIwXkrX+BvIbBnZcyAhZ/sxftw1BxRDbj2okj lPlElNk8+ylIJvTQUibjPLNb5IK6ZvyRhLeiNowkhPtYZjNAzT8DvKNzRYjs0dFPOQnrqfuk257u iQ3OCsCS0J+13JwHj3hwbE6jURiK6OrPRpnxs1wd0c6e0THf+JzVmkVWkWRkcd/77DbqlROYHgg9 0RUkXfgZT3qhiyYj+nUu3kRz0ZbSkd6kLbptR8c5y1ZTYoRUDoqshZ1aTzoFBlAgaR7NhJv90ZzN 8TdPDpeJuka7WtATr0IuY2b2jCItkbRYSGdWQ0YOV/oTyIGn1rNOQVkgaT7D8RMmqygoVATK5gcB NZREkGdhDFHEXzJA20nEZDYF5A2NmoEHwkvO6Rciu9gGWP4i1pYDD/NexE0nMM08MC28DmSBk4dX f4b+lCkr9qMzcyzLsRPyn+24OlwO/9AxHY+xMFWuT+VJ0/wayZVYZTtI3nhhtiB3JR3x0BBk2MBL AksHOmUUxwXR3DQYuq/PHewQbXb+W8kStB+S2lcGJpKKB2sX7WEY6lPSaJZvco0ceRLUVvQ8IUnq 6V5ZwWA5frUUEaL+hxssFnPH+lW2hdKFkRP/Mw0wNVt5AyrFwsayK8WkdynMLJW5JOqbJaLl7VNh J5kt8YRFa6M/xXigc1tlOhBiLenijUvGfIWFYMoNR+zuMAw/3SSmjxeOGBdTo/wZJo+EyxZnI51a 6ILEfkOMUO6sHJ+0pPqYK72KhgKE3IYpiZ3vYL5cnNRJeYd13hC4ylVo38ijcAMYE6F3bUsBhmgX cjjdnkN/vBDxF+UnY2aE4aWRFCS6rSO8ONjxFEBnhgRn+qSJX5plLYZkalqvkITqBuuQcMt1Zszw Tr+t1VhYs7xwGjh0THViT89lopHi86/JoUXWKvWzZc6cORPKmAOHsG3ldL9cjPUVui8YM/QNYn0k y9ea7uGWUxeCNh+E0DBnzth+bwmz5MuEru0e6DUFp4a5GtzofoBoItbKOyRftCSZSR63oBm3M+c+ XstpGfChLrwHcy+H7KWxqSkiOpSEMzYpzxshDjA6DwBpvfLx9twy/Lmr7+ot+CZYGrHB1qha3CRb xruRVBk1/boqGc/la1dMREiV2hS5AK6foZkXw0pGY7Jy1MK1CXmENlWGDRqL5BvwN3O7iYgqNq4Y 69bx58xYnWkUYBmqZLqLRKfsONewZSRmrXOeJeFTotfM2ST9iRwvvIkTuLnu0JKsR3KPNFDCoPoM hGBP5mgyD3yj4G2MhvSTDDAa995YwLWkY+wH7yE1u1wYwGZsP9y2wtbXwfQRhPMsr/SfAHtI5o5j 5Qkulr7CR6CclsloPx5aEGucmpWHKIyAN4zdAOne0D3cYmvFXmgMbh9QQ9NUMtgtfhlGZL3Ra2rs HSyFwczB00bKOKs9n5vzALRQOK9Mi7TFU5zkHBTKzxlCafiMdwo8mKIG0rtd5sEvNNudOfChwAho Mbt3xhkJGY5u8bkJ8kvPD3RQ6qJjuEZYoP4kGbqgNZowzPbCQnqsNaN8sqfMv5o5TM6ccKiywoY0 ca5sgb+qOctb5+UntZZwKruGwVXH5yhCo1CQaEPTtsI0ga/DaE50rDDDpZh5bhekOM8I3aFy2wE+ VnoxfYsmp0u4bw2kdDU6chHR85cDoW1lt5YNMeFB5KocZztS63PXcDzHN8bAsGo8hIx3JgMuCE92 9DoY9fuwWmJuANMi++Paaa4cfbGKrr84cPGm5WFgupA48lnLTrT39bFpmb9SBCNQ4MSQ1FzhHZQ5 UTCZBBbyKj5BqO9yI1w6sIhb2a7NqZTjJ7Y0MUYBWZxOfMxfyZAaws4V3Lg5T95HHlJ5FrgeyqmJ +QQDj4OW0wifWoHFTA0ROK4DSMnGqc2jw5c5ohriJa9dATp+1iUPA8YXrpyF7sX9OiSbGVGOxweW m8BxixGJ9FveYZOb8G0Uj6p50wjVRZ4pm0VcI90BMsYkNqyNY8vHXnZ7jri0xEInNWXCks26zGlC TBhKNmtBxDvkFe0FC8lZv3gnTndIBekx0DFMIRucFFISTaWBE8ib6GMr9Wi4QsfsmQCUpcjPmDjB KJNA0zMFdYG1Ywy1Cl+XwGIeE1zfmju1CYgkNTQB2ii55CxzNPfAuIcL3tXz5FyGHbXgsZ+3e29Y lvreNKz8JveBW2hWPI2cQEKg1jWOTZvOo0r6JemR2cupsQEecQDeOFuUjyGrEXVqsAE99oqoL6kW SqbII2ldkVaUu7xLg7/JnhkFUcyJVuXjCzd7NVsXrpU9WqFiePrPQEd5lAGe4UjFzKF3uj1DU0Vo Hg9z/5Yxjmbk89lghhQe+XNs1FRkrUu1lK63dOtckxg+ps516yn+BqBmPkjngZLf5dx0J8HCNgKG 6VTPwpRH1DwzByVCUvBzEhOZj8OpXxLv9nCkKNnBwshrxE7rKFgszJz3ZxqF+bO7LFQp6cqNQNSE dxszTIFu8YxvAlPeJeWAGKHxc+BPXGeZ65KWGKyWt3eRB3OSjtMWHyZ5hskUcEGMhE18/6QcG6lk AhmEnqmdn+nT5ANX2qZWOEI+bjIFx2jCokYMe5uOfQvi7IKVYSxoFUNkXj4BJqqEcETUco+F/fLk lVNuwLjHZHTRSj8YKw+zStMzsOOjLzIIJl6+Alyka+RkZkjvd46gwZO1FSd6WEds2demQBeX1Q2j xM2e1aeEC2lWty/2xLE9x4LLlwpV8ceGLzbcVVRy0TfpB3bOxFKSRjE2/id0JOfyxmd3Mqeoqp/g lxV9IpJE3kMPGPgwG0z8wDWU0xkME1j4mWzAFuwkTXoO1MtRfgvXAfze+Kiv2AawalVToeZEz5Jw 6Z7adpB4W17T4xaXaptyJ5ETOwx2YNf3tCGy7Ubx3RibusFkJGLFm4UGQv5MlOi0fkxysedvDBcm 4mpsgAh3A6K3tzSIKChIeQI7aq1ASZjhEk7RBATff9TdZxa5FgoutJ4Grh9NfYaN4gqDJNmYiYzr WsGQMRdNESyQ6BZCCNq/TSsKvxnTN8pMdshN/ObJsnjitzAFcoieBtpFwneMoiXndslcem7rECSQ ZUyb1RiREqPgscFXkp9JDDxGOZAfi5PET8Io2EAdOvkjiZL45V8DOLSm4aFdzMZ/uIPlrenz02ji 841leVQoBn5ylkg0NNhoqVO1Vel71CyR9dme6a/iPyHHChZ5v9J5j3775Tcs1xcvqHg/NxRRBbUh qunhiy3D3X1U41G5DIs8UtnFmjKmOEo4Blh8kR55DZAQ4DKAlpYzAxZlCRMumk5gPx55IciaAgIY dXtEYy6vAfNI3ywwsf4UTphp4RqQTcK+ohFtAboMNHqOzp/+DK2oeq2oARkr/FdXFFifJ8pEAo+2 TPxBwYNso76Nu7EgvoJ3MY0yNkPgp/QWBqjDReqKS6Z37pEkqmAqHrQ06n//uw3/u5+bXlhI17Qn VoCxLggXcQ6qCqhgAT8Hy1SKFQPqgXXq1kqH3kvX+Ycx8fmAsJ9YvfkhKqRLZTGxoK5c5taHS+PP ilRp899nhsO+hPEeAZP/PrGcYKo6sO8LvKGLynB+MJz7T+/fswqcWJYRiyE/ECqIZrR6s478buE9 +u+w6CYeKhd+EJVDj3gXKrXp8TrZYSVD/EmNfqrPTH8ejOum06AahI1nGr/hTebGQq+LEs5rOyOe VF4bOGOIXzi86IIHKHvQJxOUCLBAaawoqlgXPv/7D/HD8mWkvmB+OGkzTRtoZsGoEakHi1tS2WYq Cm7rnj41FodYGJyDVhUH3y0+yxQIt5ZTXZ9EJUeR+Fg58InJGBuVF6Xa4HCNNI7kssFUHvxiL+XB JWrdR4nwm9PR6cXltfLxw73y3Gxqb1ofnK+tRI3wCJI07GUKCPeH9Sasrj2sqd2e+Ch929P4p+Li uS1opDZbaqsZVsml2rnpb8uXzsVVwFd/ub1Cm494w0GZAZZWE1Vqbz5go9Hd/fW6wrmGDoIl7kwd 0Uu0bHhTr4F0ZgDq4PpUoT9IjguvsQCRFyQETyIzXrGWgyVXxy1TEdd3vfo/llY0N/OXbAAL7jQ6 Pa3VjqZgS950huRBZd38cAkP85mPlNworPRbZqapY9Ydd9bQmvVuszdsfBi274fvL4bRwCgc3jtL ROZyvsouJryfssG12Ay5JYRTouVXfmh+Od4JvZwonBQ9ZQbnHiQvX6ADOCJJeLqvaCBZTlQPExtP leP/aTehH9zk5q8OBTvAeI4VMBEUiBomnMKwJi4H1INH11mwkSb6EsXZqfIM2j/KaF9H88D3Kf3x VHeVaCdY1hrHjlb58vLSihOm5/qLxolyjGfqJFeyM8IDuV/xLjr4m8h2fBfUCXkvbiXecdEW796N BDQ+9Xr57MPb08U6sohkwam+Whg+3OxoI1Hpsf/ghMIkjJV0uCfElhETs7glfqU6Yw/lBBIUI9kx 8AwmMq4kAe7y8+ji00i5QNr9gqHvrMGOBccs0t6HBHlB8wgzY8wY+qbCZHK920qVfD16xnrI2BF1 Akb9q+66qj5+9KRF4Z8oPTB4sEWDDQaXZh3/zKbtZ3v6b/zX+C3BZkFc4jwSpFkoV8R2/IrG5DNA n/IeriJu8lH+C0ZS+DGOs+mcDtwaohdMRWN+cJ1giRYZaZwRuzRIBccUDy9w6Sj61Hr06jD9Nwwq XIU3i7Nk1ZgBj/ySeeBCEEMkv2h+E0gn0skgJbl1DvnsfmcYMCW35uP9/e2oYCfY71/uPu0C+RKm HRBWH55edHdGeJOfOo7e+W5g/FZGkRrUtXa7XdM69Wa/g+pUu97s9vq1Qas+1DrtYv1JGw5AU+qr Te1eazFN6b9IgWqlvy6vQTFUJF9iJM8C9pZy6xoTc2mGjwg/6UusAoSeofyxxQIu4RvrFKydS+9F igfgutP4fHdzdXF6et7QBt2WpH3A1wp+n6nbkFaQOOOMkCZsnUqoMoTSFclUXxk+I9mZnReAyLbw wjtB33nyw+7A1YGimJDndJDonhbKN/YPpx9JjCNO8Igvk8/4wAN3j/dOWZi2uQgW3Or7jT770cbV QOST9q0GXXHblnzbatTPs50XhTmMGP8MTCA3oOG6uJN0uNd0dN5A+zbfWXoCWT936cnYT/yk+g6I rxnT4WGOrSbEA9c/1qG+IelbXBVDE7mHnMLGlH7wzaM+MRRkgY4b2sxRwDaJv/6ZmfPxzXUZuEsH 2LLpAcBiXLaXBtYxRmO98jIHKUCxHcW0PeAROBuD3PhmenBBoy0/FCDI+spM60t06+AE9RfdJm98 raYgA8DZOCY82qZLDKVcAfgKM7XjwQCMAcc2AaSAYi6AurDPBB26cbUo9QPeUb7HnnUmTSHGMXuv coXZaFyEiJmCCQWgeUTaDm1InKXSDsIIUxMfV8aBT0AwFou/3Rj++cV7hdmWvRq9GVimbvvsZiON lPOQsIbwBJ14js/fn+CW6ExdcexnfErGvKvHXMlTtHrvhG077PrkUWpDnOAk6y0jJAXCu7hpY2v6 s/JRf9FNkyVxCQAlDuZxd+K0CYv86hmgRiDkQg6LiLCsxDnDa4iT7L+wo0BwHxUrtNTtQVLH4IdJ MDbehUwC75HnpaSB89s3QB+6d0e3JGj6vksN8UtPfGs59kzIEXqMGyARMe4lvoifdQTCsKwHgGeO KSahPwjM7/DY2Qo61fGPuPWAP4Dck7+mdwj8EsaZueb0AUTHpQniJ+gWjDYfQtp8INpEcdKb67i+ rx2tNmj2u7X+QOsAF5/MA6Z/xr+ewnSRqo+Tw2R4OX47SrH+DRePN6/uSxjXg28m0DrdvRztUwOL 2XsPNhJc1g4kG8ibAaObfgD8ZuLANU7pjxmZ4JGeJlvJuMlETD5acvCRNf9vBGK5RWMWnaI1899j S4bPZdYsmu1h0VkQ4CwvRu7hepo1Fq2slYofCo5Y5k1Z4mCBYPI7PVfZK/4N5b1JPgNbLLIQTN9m YJeki7gcsTVO8dsDRWnWMlG3ADktF5H89CnnBUeTfixzL2QIhGUuBd7rd34vZC2esG/ab4R9Lppv iH3e6/eO/YzFI/ZhsIexPfXSWxDimyYkScpTPNMGXUAbdkG71uB/Svg8GV9VK76aVt4q7GfUVnNR lQ/UI6hDBt2JhGwQ/mr8O5INoi89Y2HCpvzDcR+AAKFvrw1obffxN3nDIgEhGxTpWkWx1rLQrvq1 1YVxejARLNC0URw1HjDAwsfEVQBCaziot7r9Vqvd7bVroYzw4Dw+RIrDg+OaMzwFnVa9W4vuVGw1 Yf70Dyh8YxzN0TtVa8J8ErqTuCUrR+phRzJRCWlY7vXfR8QDGYrgMy7XgPsFJiM08m0QFpzIqvNV 7XR7zVYXW7Vb3Va/y7ARJ8tvknyARBktHi0NwjD8wBzPEBC+G4E9NR5N5qnIQbhlXY3p+R0+wf4v 9rgkW1OgAak47Bev8dyst+hbNPbX4w5H6Nz2MGE0lTEnkF2wBp4PhjM1fHNyJ1bx3tWJtoGxmEvP QTUks38eZZagJNzhCKES2thAX8P5rkLRL8FTcW2my7fg3ZEQPsdj13g29Ui6ozcEMZiQnYvHCqX3 xGAg/bNn5THHXIggICi2IjtU6CSMPYEEhFvFmDRZAKfM3AigvAP1vwVzBT4+8/krfAy5HX1AdhRC zRT3c1LXz0P1/bg1uj0hQUrHDfOFaU4efDBotdcMzoV+oGkN9HLBI5SQR6RxBSJcAH1bXfFmKM3W KT1bC+1G5WfrNTNm00rPRqxV4XwqdxLkXxnTrNmfUIUoPQ+ywIx5eoXzXLK7Au0+2bMADbjSJFkz 9AtnuOE3zwZT/FL2IHPo00OtP8WX8hkWMBYPlHOEbxIH+Fx3fQNzBx2RoX8l3SCr8AZRS1wh7eaw yVp1hoMOfUpdIavqCqmukOoKqa6Q6gr5ca8Q0AcjnY85hvGl4lKaNS11LYzMXw3xrP2nUJ39U/QO JtRcaeDwNVm6gzZ7SU5C0eqocycgS0AUL2M5+FJGc4cqGXuaeDJWpAUzbR31YHpi0fk78y9bet6h koyaXeO5tYHfXcwbosDtLvetl6JmNPVpoaBCnX4yipzj5q5xkA5xCFflBLdDZJZxfJtgyLb5bMBY C/EqyRt7jfGq0QEKllzMzs+Vs78p8OWu3doEUe7Dle3j3eXpOxagdxc5LVwiruBkYMjZKYUwvqlf Gy54W182XFCZ8AitX+9o7WG/VVO73Xq3AzIn8+wZtkAArbVb9b426LQ7v9S+qq1uvd3Tuq1BTW13 6oM2iGP9WrdZ73eHw+ag1u7Xu91Wrz2EtvD7sNvvtaGpptV73e6w2alp3X692e73QdBqD+o9rdUc tKGtBhO3h60uCHdqC+T3LgA1qGn9Vl3ra53uAD2O+i2tPRisC9HQWir8r63FQzS0YfLbpIPR+bl6 9je1Qw/TsnsRIZFCMwQZoPPQp0+gjRR4CjGfc3UJv2BEYj0Acp7XjWnQ+J8xBjcvTLuBIzcwLP5b HWlRjliwoyjHR+UaupozKsK5aQzDm4Ua1Dq9ZnYk61dcZujbsClSToTqqOjmIuapgv5sik4HEr+2 4bSjy8gE65GRR4whHVzejrEDy6ScCPQ1LJp5rMB+W9O6cmWQMR6lOg8uTtBY4PakE+eumJ8Hw6SI NOWPETUcAwRA2Ke5Knk8kceHgBhB9B3HInh9DFtWKLKCrQALr3LgLOZA4gUeWoTpb4ypnkXrSMJd FOoKfwA7QNcd1cI4ZOE6lIOkmowh5tcUeMK7ZDDkQbZeLe41ZsPCMZqbDkYadXVlxCPv0Z0HsZXl yMKCjy3LeWFxwCTCMIESZWySgdwVX8XM1e3AwhRHq3ds+Vpd+dd/ZSz6X//1Hbr2ATmgF49lPsGS 5pjd0Z+To1qEE3Q64kjAjAZSBDUtSR2vVPpA+w6zeei3g4hDryVpGH2G2UwwINoHQQ5wBmr8HLCI 8+M7lcden5KOSwzyFkJ+F6Gdge8AixNR2ASDl4LcQ0IETYHQqsAhglYGeprBrZgLSZ3lOmDkvIBb CLbQ+GeAQy6pJJcD9I0Oc7Dh6NWOyRWJyboB89JV5pj3z6K2LgV1s2W0cRlfkFhwAXiRQgPaLUIZ A89GAuYn1WDTu84YSJ2TGTSE+adYINHC9kAKNeVlDpwCF4wHzELrkgtUSokxaBXkAWVZ4pigc2uw IGA5aB0E7QbHo4xYV4ROhFIIyhgADgyXnQpGxXbYnABBsODk8wHfo/+gQw5nUbQxORISR0DfO6Dz pYV5RZVnE4ZmHmLI35QXY4xzbc8V65nRSgSmh3LFnsOVgDbHgodGTERkEiBPGjo8IVb3DM9NYqf0 xKaS0k4QLcNTtX8UrT++8QObOqgItvDFnKrR8dl3MJqYUj6x7BhvFJ7GZfU3jUubky4A94pepB2P dnQlxq7AnKsvFW2GicaAh6lz84DDzSIgK1V7X5j9IQPO4tS9x4izazYR93D+HrFm0VJfGWy2iC1l 6zAzPkwD4NllnFkc0XuKMFtkTvK7ji3b0Xakgsuy92PjsLLtML7rgLJes95udns1rV8fdjE/h9bt 1Pv9Vq3Vrne1Qa9MQJkGw6SfAdAO1AvNPVsFlIWs5UeMJOu+IpJMkGAVSlaFklWhZD9qKBljf3/O WNubhpLxi+qQYsnE3fm7CCYbtmrdQafWGsS91uVvN3Fa33TtBxxLloGWPJz8GHFkO1jwFjFkJeOb BGGxyJ/dBo/tINBpT8eoaLU7ChyLT3UwkWN7RegbBI7lMsJDjBx7q0vgzQLH8iE4wMixN8P+1oFj CWhbCTirmLAfOCasO2i2WEyY2u1qw1YVFFZ59Fce/ZVHf+XRXwWFlQ0K67VarJHaHlYhYdUFUl0g 1QVSXSBVSNhbh4SVfAveUUgYV8TxlZ49FR9mMFj+c21GNBh/9E56rZGB4bBTpAsQK4+1/eD1h/RX k+l6j95qF2Sf++7p0cVqX+mwNk2vZmuvNRpr17nRM9C9J8e1af5Mv2vvtZ1sS8p3rWBfNnZgewXm DzEtupYZzI5Bi83vmhb9Z0PH0q4H7czWab7Cme0DSD7ouxK5KoXvKS9s7UqkH9Y3cmoL3U5ENF4i xC0a913W202tlBsbSXwvGJHl6lMzx7etwNUMZV74a+bPK9+xynfsx0pDTsdYKu91CM5jO/AU2+oV WusMe93sFKZt+KE16OBz9IZP0T9UGvE8FPzAScQ3XfK+U4hv6/Z1WKci150LGIuViygvC0leinus 2GVdhJRD4g8C3PXObMi0sx3a+C9pLrq1S9uhcdAcrzUPRLpcjP2cc65+Th8r3AYWGc05NcijcOmC 0JAhPf4OL6FNVrcXZ8AdeP4dGkm+mSvfDvz2Dg532Y54qCQgK8t3i0scWlQySCc5vvj8txN87XPp BYtEffxdQwNHqNp4fmp9iVVlrybrRG019WaehmwDWinEV86GVQL6ylWkchWpXEUqV5HKVaTyNawS 0FdXSHWFVFdIdYVUV8iBeRuWerPfkbchmRZ+J/nnmaOHeAgW7+j08lg+A30iz9ZBOx9GQFbuh/vC 7A+dMG/vLojCC/i7OyFGK95R3rzdOCKKfG07dkXMRPues+j9eO6IO9qc3GR6u3FJfBX+D9MpcU+p 9V7plFhl2Ksy7FUZ9iovycpLssqwdxAZ9rIrw7dqGBVP//njZtnL9jvMxcuP7Gy58aL/yNn29nWk /tAZ9/aL1Crr3ve7GKrMe999B6rse5VDXOUQV3kzVN4MlTdD5c1QeTNUDnHVFVJdIdUVUl0h1RVS pd/bZ/q934NL3EZZ+Io94tjbpbp0D9ghLoSx8ofbE2J/SHe4GGnv0RuO+xtI76zfwxUuXO0rPeH0 1Gq2doNjQ4G0vlMvuDS69+QCp+dO9Lv2f9vNrqTc3/K3ZWPft+0Rv2PHt16/PhyCoKj16oNOp1NT e526pg17NW1YH7YHrTJ+b/1Mx/7k11v4vcX5zY/o9dZ6hdcbJ8fK6a1yequc3n5UpzeJBWbVlhVO cPt2emNH4ZB83vQYNzhslzet1mprtXYv/qgufbnJi/qGCz9gX7cMpOSh5Mfwc9vBgvedUjBBXbt1 dTv0s7RXNzdZmjgcL7d9oPPN3NvyWOEhere9yR3wZm5tuQAcoFfb22B+a3c2/mBwRKv2TBvkfW3Y 5fHyingHSK4osZbK5+2H9XlrdzrdPnN5GzQHlctb5a9Q+StU/gqVv0Ll8lba5U0bgkDBCs5q/V63 8nmr7pDqDqnukOoOqXze3trnreRb8Y583pi2jg+07BnFxZfkw3R4y33NzfB3k9/Fs0vPHrSzmwCx 8nXbD15/4NKze/d0Y6kYv7Ojm1jrTgrP7sLNjdU33bGXWwrVey06+6P5uO1kS3JKzu7Cw21rrB+g g9veqs2+ysGtqjVb1ZqtHMoqh7JXOJRJOdQSa61qzb51rdmMR+p27Os/QqXZyiXs8FzCvlOV2Z2e h99xjdkd84UfrsLsHvjmH6u+7M4J7A9dXXYP5PgHqS27D8ztorIsb03vDoq2o5qx6UGrarCVI2Dl CFg5cVROHJUTR+XEUTlxVI6A1R1S3SHVHVLdIdUdUlWD3VE12MP3A9ysFux6T8C5efCegHOz8gTc D15/YE9ARtd79wRkL+Tfzwlwbu7ECZA/9L/O/w9g2b3/H4dsn65/8Sl+AK+/V25EjtdfHE1bOvxt hutdV3HtNevtZrdX0/r1Ybc9BC2326n3+61aq13vaoPed3X2C1lJ5edX+flVfn6Vn99e/fwYt8nK Gfem1VIrP7/km2130Km1Bqln7ujrP4KfXwYS8hDwY/j57WDBP6if307Pw+/Yz2/HfOGH8/PbA9/8 Y/n57ZzA/tB+fnsgxz+In98+MLcLPz9Uw0ClIA3k+OLz307wzc6ldygS7PF3De0YoSLj+TvyBtx2 6spnsPIZLPb46A6aLVYwV+12tWGr8hqsPD4qj4/K46Py+Ki8Bst6DfZaLe402B5WLoPVBVJdINUF Ul0glcvgH8NlcM6e7X8Eb0HugZB0FOSVgQ87aWAEZOUsuC/M/pDugnHq3qPDoChZ/Z2TB0brfaXn 4CK9nq0dCPlYu04hmIHyPXkSLvJn+l07FO5oY1IuhQU7s7Fn4Stwf5DJBLVephQDX4tqP1W13Mxq ud1XOBkKgqzK5Vblciuvx6pc7l69HvmNdUj1csUl+rsomDtsZdbsa22ZDGjTtVcJEv/oCRJL1nQV hMUcyXZbLHcHxV33dIyKVrujYrnxqQ6mWu5eEfoGBXNzGeEhVsx9q0vgzdzu8iE4wKq5b4b9rQvn JqFNwlm5tVWp8CqfhMonofJJqHwSKp+EyqmtSoVX3SHVHVLdIdUdUt0hB+bXVupFeEd+bVwT/10k w8t/tC2bCw9Iy3BVS/MP0bUtBK5yads1Rsu4sr28vNQDb+bR4zJ6yajexERRSGUMzWvMp1OP+bGl fNhuyUtLuXDwOXnXrmsxqt2Hy9rp6P7yTrnS7t/UQ42Wta1XWgRyiURgAxDrh8C64d9hs9grB2Nb 1GZbbXZCHlxv0v8xVtzskYuxlv61vI8OwQ7ffRl9QOH/5nR0Cv+MgKWBLElvYR8Ai7q1zv0GwHYl x0t97AQ++1KNXBQ4niNfGT5d2k1GAJ/tiWMtp7o+iU4IOXXODF+l2GRjyrw8o9OnClJsLEzPk45j +H0EEkeEDBJ3CaqVBW/nrkgkI/D7Balk5k3RktyttYmIgOacd2OdTNJf+a/wo5jlp5tPdw9n8LOG pk5nAdesMO+iFGin3NyeTc/Eg7wyMBlZQzRC46vhPmACBZ7B412z3gUZ8TGwrIcXc+rPH+a69fhA j0NAjANETS40rRQ0LtMQM2Fhv2WC0CsAoVcIQvsmBYNtus1BCgqbvGDsR1cvgGPQKoMK2DIBx+hn DkcnBYb3YrpaLwUHSSIqpbAohkar97q50GiFwHQzgWm1tgemVdcKoGl2CsHp7QGcVnNrcPr7AKeA gLuF0AxeM227Pcyft1847/BV8w67ZeYdRvPeCwbWTGHfAuyngMFQE7RIFEMyqLdz4Wh3C+HQdgtH welYA0hrl4AM65q2LSDtXQKiAVPPBaSYQjo7hUMrIJE+Xstw1fto/iLZEKWdI3r6DAUe/J7JPCjp xWFAF82vJH9FPn2biFEnkvNnTbH0wAYNF1VtdeygDQuFqz95ytd77J47xYniCWEPHQ614XBYk7xZ A8s3vSWIUS5ia0H+uty+cInBNWia0boLEGkXkkdxXVGYUMx7CC9Wk9kKydGT1gZgo9mNu8fGfHxB fHPcmgKb8cxdjMkdGB9wyW8UhGaPnGezfDBdg7uxehyQryCeRzhICpBMsGOIfQDl5rnZbANmyC+U fGVJFEeJG1YGI4l1zZHfjUE8Ugirpq2CuuGSMZ1pPY6PXvzoWqsrZANSg6Xy5f5astfDiJ8WoR80 +nxOLCeYqhh2sTB/hd4fDOf+0/v3EfioHk4c0PqZEyp3feUunaiwP0SaE5wM/CceHSEpL/C7MnrR KZUPORWkZcmKE1ec+MA5MTDXbws5jaJsyMFfJAVLeHzLp+A/r69CT3A0kaKkI43GbAG++fj4Z0Ua +d/hCLIv4Tg/mpbx74mjmwpLkqbEKdadvPLKwgGpCgelKByUmvD9lITdwvJKzWHHwBSrE8gaUOHf 82nGKdad5nI2mYTVpTLNhKaZhBFm5yYaJJV/6qr/zY+9jn3z0aJHr46Fd8hfT5Wx67x4hoLEkwIQ pDh8GTQnyj8DHcTtlYJCmueh+I7yKhA8vc4BBGyYFMX+Y2msN0avgWJk2jPLUJEylbGlT55ITn2Z o/gPiAsmxlSODORDoZ0UUDBlEVXQrqYQ6TGZfGwFhnJ89+HsRFno7hPGmuGr14fzWw+ji6fKNHDx FReVhlmIBRjSfORHL0QJaDCTJ/5I6b4KDyN6yrccO3NdKBXDJM/2K2ehY1+I70IwiDGhqb4oDkv2 WxX2861eRFEzUPnzx7O2waMozerpRe+hqMxyla+MUko66Z40z5giyJEn1MAsjS6VdYSFix52fbIQ xuqBdk+I/SFTjsRIe48ZR3iI9/erURYu9JWpRnR5IVsnGWGj7LpMWQzJe8ouomfN8bvOK7KbvUil FcncjI0TimyF7kOsVdbPzIiW/PoNa5X9LtKItF6RRoQTYJVFpMoiUmURqWqn7TWLCDsKJ3XloKqn 6TGOcNh5RLSsYiPalqVGNlx4VX2tqr62QfW1BHXtNpfIoZ+lveYSkSWKw0klsg90vlkekTxWeIhp RN7kDnizHCK5ABxgCpG3wfzW+UN4hNYRrdozbZD5tWGX5xlXROBVYkXxLCNVkpGqdlYVIl6FiFch 4lWIeBUiXqUZqWpnVRdIdYFUF0h1gVQXyGHlGCn5UryjHCNMWT/04lm5b7klSmeZjmoF1uQQfdc4 aJXL2m7xKS/QsMjXIzWFZT4DA9F9S/fqujuZmR6NjOF39MDYKOPuNnENWMazwfyy2eMlb+w1xqtG Bw5CloNY5CVzfq6c/U2Bdrv2b5Oofh9ubZeeaypaU71GkUO5wr7nONKburbxNQqPtvWgLYypqT+k XN92naWkJSogRimhiItrqa+T/j7n5+rZ39QOPRXL3j4850jtKLYc+uMLEeYI389tY21aEoyUNABB RCuRcw3iTParKcrmgUOYi6U+8YVTp+OuEuN9ot+Vz1GD759CJJ02xCU/bikqxXbIxvsObbaMCh4i fx40ROIQlj42rHcTi6IVZOkGbZrht2Ks2hE9liF94isBmeehDfz7aDkO+iM8k1s9QL3Eb+HoB2NU 6QLT8tFxQSf9joQbfHtrmHQ4KRLHwzWlwqgZrUheLSjVN1UCjYUXB55BjI65UijHV1+uziloVkHa rcUdpC5Hp4qgLrXFHM9dclHRCh3NX3RPmRkYnIyeJeOV8jVNFKEPSDY9ndSUl7nDQibGJuhZ6EQC q5kjJ1NpH+CXpfnNsDzleBKEU6EkdkMXDCACVFtA+XIOetPImZiGvzohpxwMTwbhYWoYS8UydBc1 VGUBW2IRKhiCEGlhVAYt0VBmDMHo+4qL5BRME+PVtmKhHYAKNhh3AJJwiFhWPCB2fKIWtxeKMtju VlA6HHNO6hneMPARZHNH0Z+BExI/592/nrqTD59GyhXdb8opXnBCOP3Zca2pFPS97goUfjjpIGp2 TPYQQLZJ7Ed0xe0j+qNWYgjGQLbtTQS8YeAJvzXXS8ycC0jHXM41IM56+hhHcvM/3Ik6814OUW7m oFVy827xKc08AdTC4UhPIXnras32oGHTO26r2R10yibymzhLA7jtJPDqRtAwbJbVQ42+bpA8ZXMG Dj849F7MCC+UnMPmyuelYSunE5Qp9hQtIp2FfUjTf7k7V/iBHXGf1p+51BDx3FlgTo0MSZpziTrx 1vrMcWaWQcCze0p4yaokh8D+vdiWo0+9B92ewJ0Ka2+gNymIka73Aad4RsZQX05zKI/9UBj4SWMp NFjKw588VwNqQAsiRElNxF1FKBn9HDpokg1lz/oE3+WkPhGAaIY+FnAf83R5yl8cIFHlzvBAbpjM lXN8ITcUNW8TX6N30Jt2r066B/y3P6g318YbdChLYkr/aIr0iNq77hD+ty7ewJuY7+C84x2ccdpz NBSxZlROPN1fp5BkEWkd6M1bOn5SSSm7ETkZFIujEIxnw0KW4slHiAWvGfYMRA7BDLyGr8+IWCLQ PlCXnMiEHSszsvYUKTaZt39YbZ789URSHybXU9xoWYzWIpMi31elW1P6LA5gIJQCzAWkr/BomzaT gCXxVvBhmtiZgLROrLGmTOa6PRPRBobuIc/H0GdgBHH4CWyibuJQCgnIloFe3M5EctZH4cZAL3sL gSFROZSSTS4li+hCwaciqXhv7PQkOx8RW/6eszF8DvGtnNN8yiebJFJ/leLQvAFgiqE92itlbPgv lNwJUOi/ODzuAXQv2hUMWD6hbTzmwcStJr1NRTxuj0u85n59xH+USzZlcm1npo2aFQZbTFDPRCJ7 mRuYc4evFjU649lwRcCGchwnO1pQhJI327fUUt67xj8D+GXF4jFeQL+dS2sQ4BP013SUcQ2ojV4Y EwNfE0kDwOW4xhst587YZjmuAZeOzdkWRc7AIvBfcviLOMa+8xNJMyWhvwkIoUBNlLMdo4J0P283 RIQQKWBZ++G7us1SuXl7XtO9NFOKDwD0M8dlIVUhT4izZFAm/MCLODMuh63iNyY+TIRzMwi5cNGo 72HCiQMs+dZ4MqyacmpPXZCWzx3f1xc15cYxLOUDCGuwuif4FS5KZVRXzgzrRXenNeWjOZurUogd d5xExM+yrjxkRibceOjPqMIXC74Sr472IYwb7XaaNaWjDdROq4V8S+udHJU3QUR6wVYmCEpi7qN9 aVsbwvYpLDa1JMQRG0aNUeZCFOFXILOYk0xaEBYFi4kO6kCdtFSrdYiWhQSIlYVhP3j9fef8z6Dj fVgFhKQ9UKLzobSUK9RU1NabvrTxFW+bO0JaSWvnr20aFgRQtZi2aweWVT6WXqiqJbL+144+MV0H Pt0Zj7grOm7lGi1X4G/mPU6i1Civzvu//ojYlikmD8lWqgMA5MuoKewolMTCAgBpjfo7vN7JSf+1 ZnbWfznj3t3DWTq53MTRgV1ZKeEn+j4zb1qnk583rZWZ7w9mT2eRw0RhuWnk+I/Z8w/K5JFLzN/e sNzB1sn0ciHo7CyP3saJKGH2blZxg8y8eeravHkFq2/nzd/bR1WDTUssABx7SdmfC0d0HOCQRnDc w2nMzplMKYzTIb2l8NGs5yfizMbH/cP93elFbhZeV8eIp4lxlNP5S1bnYPkC9wZmtlvT+xTmvkl1 1/2F4y3nmMpAIVWQm+byRjm/+DS6T42CEjrOjWI40jRI+QpphnnDXGQtBe1bJRdzef1plOpvEOzP qDPndhtdFHSL3IOnoQ9nMtF8KI9lJJsHwZDkM9fLyzjPb3/pXTzzsqZkJDNXXyhzUOgpxzkKQCKP I0vBJ2IT+60/g94Z5azQKX2Ga8xRg3umZO7oDRA4ASZOmcwxS4ycy+9PntC36koIoTKIZzzf/OYf nFD+E8yJAncqMFg8Q/Gsg/ijmM8z8K4lqy5PWwgNUOCqKZFEN9GXqEgz1wRsgAnqATlhqkK6kt8p IPApaJOY6FYDc0Tit5El+utn8cQHPciviclZ63YlXFnDiQZQ8VuVGaVPlOPPV5/ipQFweDRfikOe hOWef/+JMxv03QDJpjwsfODwGlE9GkBFMgSA7j/djWSI1iTs9yOfE4lWuBog7USUyzGkGFlxeC3x yGLjSTxJP5oXeGaVnebqP735kJd5NkozNgNR4dwxHh9NsqZ4lLUtbc1Kq1CaktNZOYaJydDLhMZ3 IeOSQoheYY6LnrBJyGycGij0WsoZ2c7PtJOjV8qyW8isv5RAWEvJhTh88pSVIo7A1t4QeIaJdjkM rVJYy5XBtxCzy6EsDmMRntp7w9MHlOQFEO1SiMpXFrZQB8phKgFlEao6e0PVHfAsDkKnFKLydJot 9JZyaIpBWISk7t6QdIOPMOHtSMCAfA0AdUuhrJtbZW4LZasc0gogLkJhb28oHEW6VRws0OkArF4p RBZolJtri+UQuRbuInT23x6doJoCWP1S6CxQjDdWel+JTQF2LjbvH/56uj9s8kmllKLKX3lG+tMo ST9CmhK0skTPaL0ZA9N6s364ZaZIvlw0F7yLLAn7X7CQbZrZtMNhKGnP2NxY8ctuEEsLWIfe6/ur ekGVh/BRhfVQrkVyx/KSdmZX5RgmPhEArKtXVAiFcgyNTl4FCw3AaI1MIfs6XBeRSeWOm1TESSrm UJuYaDajnjyQShxLsvrsC1WXkRmoJIbWGqE2Q0wCgFL4GF28BT5Gwix2Icxi5VG0lcFtO6zlgFkC kff7PIPCwrPpASxpK94MXZnAlMDQl31i6MtySx5V1iK+GY6ywSlzr5EfQ/a9wl0c1lws2Op1Nwsb AeD56+nD7af/vLza267dYixcaVEtew2FQzDKY+8W+1rEqfT+cc/eP3x/ExLc9FllM1IsBq/EuWXv NXszKuIvyoV4/SmJso3fkDbDWQZQ6xAFZwU4yeh0f5hCViKKb41wfnY/ver0bDhmMqglq+BWdGfx hszdnuvUgKbTy7vPo8/7YyrC2BsuwtatlWd6pdECZ6ZoCGZuz9N0eZUwKRD7obhAmWTJy6nexvG3 Qahp+AbSevNaY3zq9X6a0UMQPlDyZ7mp0m4uZI9ZEb8dqxzGni3xZS+3XBh7gKopEhfFUgVSfWcx Mr1AZXEDqbDYwhkfZDExhKvy+dwhMss4eupPen3BmqtRo9DWTDfDyHCfDeXaOfukiCY7duoUJLkP T06E+51yrS/x2J2ZztQkngOM8BO6NTJe95b+nLjYbZ05cTFlnDjhGmq1+12t3xq2msN2v19rafV+ u9frtYetXkcbNuErtdeu93racNDq9VqaNuwNap1hXRt0Ws1mZ9BrN5u9ZqdMvpWOqnVCD9AwaVb8 2/IeobTGGqc9TEqB2/PFNpHPjbCEPXIkeSOLHEBhz+xoIHr2ljw/I/LewgF059WZsp0sh8NmjvNM MU3HX/2TSMBiXGFRQN9xgC55Rk0gUH2pjqVBVTMc9EQ5xu05wbvJw7I8CADLxIDxIDz2BlY/hssb 7sIxhqCksx8ANfbgzsIQNtQr0V2FEopRxBV69XBnGLwBQT83bfTViZFATQk8bPhimLM55rXzoihJ l+JlPMwMxwKc8fWU5wz1+YUIQjWQC8Z/rCjRC8ttAmMp0WIJVhkRioy1ujLiYMMFbgW8ug0rN0SI JO8Mf45lhCiiCu5vmmVkLH0Rc6QNaoClqaILJxN5BhHhA30+aMoxbD958ESIO1Gwsm1LOY5/w+K3 cHYLtgjg0nFfMF2WYSOGXAXLGQGOUETh5Y7QFB7uA/klK5hplFWSimFeuYw6CwycTvy6cq9/c2wH zoBCWe6K8QIY9Y2xSwMej004+jUgICB+Cz7oi+XcHJug3tXQF8eHlcEnIGCfPsBpmsCmWKwBbvEj kPY8ijrSbX0KghASzaPpzQ3vBOtreZPA0l0Fjy3WVIKbmMlO+j8DQPdEoZypEVDSmIsA+DiW2cJ8 Hq6+wkFPeMwsH2QJdy9mYHRcXA9wbssYGwjsOPBhiEfLNDis3pO5xFDnqNAS1r1itIJ0incC7bmo akbGDFFBqRbG8hJaFw5WkQIuBJrJ2LCcl3fhJoKQOLeBtdTYeVDpPLg6Jp5kgESnQWWniExEiaYg k74XIb0IWY3FFhNMlAuH7bHHiq1NQavBW9ln4b+e8n+AVrz5nxUsOYynSZeojHOJKd9CzJ+oT1nx MEqesmIVvoBAx0C7T0RCNC8a3SnTUJzgqMSV2L9auM/SPsZ2mCMh2reTEFqClJcJwZSi5qOP3hEM pGjbPA4PB5WVBIMzhiSfz1+WDt7cuLGU2JImQx48N1RcBpawllmOxLOMR2iLldBO0anRW9nQB/U4 4mzG1JxgOjyW+AiPy9wAhqXbtuMrs0CHnYVFKIZJ8bZRVbQJ5hhV9DH/+JjBlqne3sxEx0LMacmY H1KFh4lKqNUjbMIU/kXNS13oT8CQCQKBItCZAgtWZrCEUkC5wOj+EdhsYRR1+mga0MIL4IZa0VFr wAwiuBzZVhQKjUPCAQ6Qy3nxGPPIkVCWXW8MH8SLp+IrUfpbtVmHnLDxO9D9Ty1r3wG7ybOYPEGo oSMot0Tp3wWaBFcVEP0UHbPvA5Y0PwfplHH5T8QCvg9UmRcNwnf7M0L44fRWaz2Mvly/AW3dluH9 WfTGb/w7frm8AaijxH2WewpCTv4991i6T7J29k2OavnNzTi+yQ1+E4gz9zgDuCQ6347PbIDT+NlO 4vPtQM5G6hrO85ZccgMmlMc5U+zoLeHP5kxlmfxb86vy2E7wsBRHeGPAM9Ecg3GDxwRuadzqGSEq ObKvdA8fd2EwgZXaqLnETWaR+d8fewdp/ge4KvP/DpFZKok6kKXlzOpInhSR5FmRUR7GUF9Ma/po uoY6Dlxb9TA7E1oEF46nmxNP7TQn/W4ypfrOXwc4xe7ldeD+bPROuXbgrDh0kO6h25SSqJ3BipUR X/HbvhDAgrd+IYAFlXkh6PXq/Wa32erXur16u61pvU5NxbqIvV6n3+vXesP6cNBs9tu/1KB1q1/v 9oed1rDWatd7g+ZQ69XUXrc+6GuDdrvWbcKnJnwukR2RpUGMvRZog+S3G7wW4HrD5BFfRu/ZPxeY 0gHLohPDfQ8UXCY7OyE+nh0CxxfRp1s8Ekx0d+zYSOloY4iGPafvUbjOTi/4/d4b2hnPDV/XH5C4 bSVEJD4YAAYp9hVOLZGDCrSMycZETO8L2chnDpq2PbSc8ccFIF+qGbukqw0ZkCIYEB1yRuFoswIt AWvSmxgKq+PivQy7dSw5UmQAQ8s1mjRDSybqlmwoLFyG4+FN62JKBm5FZAm9DXz1sBOTIFzdgl6X ekYvnts8vkLOYsN0jpJXACKHOxEsSNjkLzAmiwqFX4hq4+Px9Pih+sysaYjhCU/lOGXd2NqxWaFE QUs9hUGf9GwrWZidNuHZzqtwFGaxFU58KH/Gbp49y5pnMso2EiwnS15y4E1FSzZr6Ro+2RS2yVZH ciQQnKvzokCHKE/K8FVy5R6Qum2RHiYVTSk7WONXw3UaQPENy5jpFpVJW1Ozp6lou6/YkyTmfYia 9zjHeTjH24mT8uLqkQyZFiHTsmYW7ErUCfgjFpRW9fGjJwGv/4pbT6yp4eov8aPYgUt1was31Hk5 6gy6fban/8Z/jXNrNiWVloNJc/CrnP5KUViAJOYHPqLkCsp/QVeFn8kEh8zu8OXuk3DXi41PA32g Z0fQ0aXOI8ajiakG+PSPb1v61Hr06lixHbrpq5CRO8sw0Sjn6WE+AZmx/ybwTFSRQSVy6xzK2Pt2 MNjy9uPj/f3tqAD97PdtsS2h1lka9sPTCwiELMMzoNexzCkVInvnu4Hx225z4GnD7iCz4pQ2RKVm TcWppqql6k0l+ITI6X7rGhNzKVK61o4k12346ycdwFOgjeexL8QAa7SenSsVtYT3FaUcIVgcy5mt LH1Ml0CMJ3EeL1SjqLVypY/LJnaPnnTZDeaCYAzdGh6SKWxHXxtq0SSnY93/1ZmBZFhT/lK/r9eU Uf2/6sqFQ27KTyb+fVpXbnX3yasp/1E/rysfjZnxYoJclgNRyiv/q7yTYbmlsghhKlN05/D0xiiv 81PBiiSZTAVgHg5j3Qo9l7hHEQ5sYMLYKI9sqAt1Bxm6UPhoz+km9IhCuyTQCBMY4UoH8MkfCeGY r6Zu+IXnB1PuOCAyA8PXBvfmwGTToGIwbwjh5CJ5SVOGIHNhqM9AlqhxknEK5E/uCjPXycuB4UKc y+QAuvI/HaxMeaw1Wh3gwMwJ7CRjvrqSLO4kfG0opw6ynki3RV5XR3kAcDZ1Jh7K7ok0OjkKA9bn fCeqkhJr+qeky3BWKgqq4rnTfZ8VlcYvPfEtZmMLc10EtvP4+KAveKHUKSBNKB3YENRin9UfTVLm HfWkemjm9IEncsZbx/XYCihuMG+ejHKzRz9/GA06NSxn+67TbvUoO/hcx7V97Xc6NfiuWRv0Opgp cjIPmFqgtWpap9Ok//wSB//rEYfbotSgFlOCMhcBM714+ahseJm4pK9lZOJd+eAtDZYTsTQmtaa6 UH42bfKFo76lUBqb7UDwmVwKTKkb/muJlPjSg/GM9xNdXdvQ6+nER/X1Ekeh8LGlGdYkKofvfCgO BPv5SyRr3ONu9iF0PsvAxcPCtAPvYScbdi6uJVYR4sLAHF/+Zrv1OlgPZFtzEIFF43d1torwtNmt IDTZVx+0NSAdygVStF7coeWrd2gpC+3bcb5JsAiojrKS1ABKbUgOBAfD9fKWh5O/GK/Fv2WCrDnl fIKiCYB3OI8PXBB+wKquG+3HCDqIMjcwNGiB+AQBrS/h3kTDO8qlZfemJHQHslfllg6AwGHK3ben Wz1r49jXad5G3ONhicocMJMlV28fTKBklj669Ma1QLhJKckbsLR1kBzIJmUsE3dkOX39jnAMiJVP wzu9/CZcY72zOHibyga5UBzIBhQtEe+UqWfmbgX+A8phpsYi/Ra7YHRrAdQJyncwm/sP4m0H6HJq fNtob25pJOWCjRS+6yqf+Ejlbps14BzIJhWvFQFwYjkBtrp7cIyHhWN6aJMS7H2zywZGALbKRtj2 kskD41BulcI1IgCuns+8fm4sWlmbwb+Xt0Ok6gJcPdATKeaDe3i0gm/bXCeUtQtzK43EUCw7Dhmg 3sOgIrCOZ1You1tloDyQndsYBWhGpxR7OZs5NWbKedZuih/k7QRUPPgxE/gG1xAvV4iXZdyMXmqP 0lMfyt2Tsy5CvGkfAOJN+8dEfM66mBL54HHty7ThICdKPcZ3wnZsI2sj+Pex6yU16EZ6pWKzsomi rGiTlZOtifqcoraCHVZX5BN65CfC6s9hG4cFh+IG8ojGqYlZSSyejeT87gsrBYivZkuH6Xr81SH2 yIcj1JWf5wZ3eGKDwQfhQuXPQbTSajQiK3jgsXBC4cCi285Ct1hINqu0YPhzJ3vQZk35y92p2u02 LuGfVvOc/v10c3959+k6NnLeqKUv4IyNOhT1u6KCV1MBU3irM16d8eqM/8BnHCXX6pBXh7w65D/0 IQcluzrk1SGvDvmPesh/K4rdICcteVv+m/YD3XO/mXhKV5F3rHAcjZxJv6qDYX3YH2o98X+dWvKb fmpXYQLTD8jvPXQlD8kMSes3Rg4REN+KgdD6iTl7tfRXv2SV+VwLB9GoHM7DnWKl6TdziE2lc8cJ wrCbTaNomAtwQabXWolBkBSQDhrPrT0E4lzv34czCtHBv4DEscS01dIPMUgnDmEVprMXtJYJ1PEm JtL/BCt52uYk8OpG0PBfzCcT43Uao4n5MRj/bIxv0RPYasAlsPDOHZula/MaIz7hwwWcggf69QFI +yFqUl9OH2PlF8VEiujL7gfM9+jtOrwnfRD2EeAzCmcRubdP3zTOJ1rltsHj4VbACgD43UZKwA3Q VZs9tdW/15rvWt13ba3e6faadD/YgWWVD/oWcGKcQ0hI8MflCDE+EjV14fMHYqDwgZW0xYHkHOdr oiMERuuGp9dhMY0XYxx+2eA1DGTERwEGDJRNw8UxOMDwXJOoVxoMvjq0OHGtWQMRt4eCbKzAgQiw +JwuaaDzTPS8FDFKd5MnTOkS1afuRZURzppFZVbjI/PvFT5DfhnWdkEd1r5ULV2CIrdsaRyEZ9Mz kYcU1jTNLzrWHA6yp88vBpo9/9alQjvdbADyimxmT19UgLOoAmc7Wn5Lnr2bNbsxnWVsgDEzmLrD Yt0xKSX7E1PV8i6ZgPWbBeV5tWE2YL23AKwIrhyE9d8CrkHROcoh5EFW5dEUUFjqRBG1u3Orknby yz9qEh3LiBmcvgFiBoUk3s5mc8MUAEwRIFe3vJmGnYKZUFnLQIGm5dcsjQPgRbUxxV7UFHRHbcDl 1aCECgnU5JY91Qp2qp0NZiu/Fuh+wGzVtXzO3OpQRVG4Vn0M9JLlDybhRX+doUAR1ZZn6S08E7/F QFQUSxgU8L0kNMDPKG2+wygrW5/CqXj3NS/pezRZFJW2sZhyEuZe4dKPqDESFhJhWUdcynuM2cZ8 jLGjSx69erTmQu01F+mgO9fAe4BZMdH+BCqO63wjVRdtS5QjWl95yUonrsF1V5a3hcMiydO6O5lD 5xpTekGS7CWU3prCJRZmqALpVTkeO77vLFTnUQ0LpxgnPG884rF17kihfbA7yxCBlJvAs/Wl6gVL jH40purSCmYmQ2MLBPIGywAO+0qJ/mjar4lUI8oHw7n/9P59PDnOxAFFmoI+w9DBdPYUlJ+ikqu7 KSqUm/bkNE8wU44BDiqfhtLYu5B77RkeVtRYUUXNeyHXwTdAdkfZEucm8mLeBNsKjr8Qhlpvt2Os UDEsgErcq3gic9FSUoCNDbmlBMvw0H5jPLQBaFbAvhgRZUXp+KBbytIMFZ03RkUHoMYi9cWIKCfS ywNuK9MzLHRDLLTeBAtdAPqnSIgTUhud+FYBXsorG8XTbKtoMGz13hhbvZxltNZgq7cZtnKn2VL7 YcjqvzGy+jmraK9BVn8zZOVOs61KxrA1eGN2NIBl3Hy6W8OOymmG8oDbKoYMC8M3lmSGAPTPkUq3 RooZZq88Mci2eiFhQNPe+NRoyHlHPwMlHINKeFJ8VsqrqVljb6mIMry03hovrRD2Vr21Di+l9eKs sbfVfBEvg9M3xsvgNIf/dYpRtIGRZ80821p4EF+j86u3w9cIwDSYlSM0U2HO1GOAgjS3n3+6fTuu H3GowFWOYWoC4dn0AvYi9DZQ3LsBprO0HJ4T9QAE4dr30kNq308TXKI5yHjZcc7WzJfLezknoac/ GupCt81H9MbIrj//bX0S2tHp+0slHOY3dCDT7cCCodOZbTcc+gMbSVlIeW5Nyj6xi9E/3YxuP91d xkZnD5D+DkbndcJjo5MhzwcK2sH4F2IsaYYNEvEKKyc+9b95wehwcqulkzkq1xEIjbmSgfOw7LFh 5el9W2OlstSBp+K7eHCQxSlC4CoXpV1jtIx3ElnNqTUlldfHTuA3lg60Nw2vgSk/VfyePlC2QJE1 OD+R8Jf6qK6c05jKZ+inINtRbnHM1a7dj2KkvQ/Poy8jvpQ39TcKl5XvbpQGsIRPUatT7/fazd6g Bp+6rXZziMUmeqDaDgfDLtaobg867e6AKlP0h6C+DYbNYa2r1VtaRxu0azAE+rt2tF6/1tfq7V5X 67WgtdZv1Ts9rQdfQ+N2t98bDMg3tt8fdOC7dr2pNftdNu6g3m53ekNoMKgPtWYb9EdV63bqg2av 32/XWoN6p9nSWlgfQ+t0QL0cIMRau95qAxBDdPKuD7u9Pjp9t+u9bqc9oFoavT7q6J1mB2auDwbt 1oAqabRazX6zjZN1tW5vIIYdDHrttgaD1TWt2emjA3mv3ux1BhpgB2S/bnvQbNGw3Xpz0O10Wzhs r98e9hFpgL9eZ9js47gdrdXr8sXBnTYYDvpY8gOadAa94RA+9gaoCiP+4HdYe7uzISrW1QrX1OYg 7Ric8XV5V7CQsrAchaEH8PPpdGHaJogQlHpcGWNRVea8VDu6dZaBJV6CL4wF3rrLuTnxypQHkViQ YSey1sYT5idBKvQDqxX7cy30JwOOyTzhEya+fku/sIwkt/QojQXf+ZoTT50RxriE46m8xGtjasCv Npx+cbXCF/rUaOBg9B/+vYqPsTwlLslZqKM/o1CEZZQxbMZ8lkpgpSsXUH1rpATi+ehLTbVMsO7G JxBjdffJYI0oUyybFEej5iAWQeOVNJDrcXmKstnOncAz5o4FgtiLQRWAn03+Ggyy0NKxw8AJPrBj gyRjRFWEFZ8ywkbVsh22jluxXco5368oIa9UHgz+twxpmqAE6YcTtUT6KCVi9lmsiU3lvalMyER3 /bCxPgMtdMbK+2YW9CgS61WQg/4ZGH6RVn4hXvu5JIPrLpEKPVE+7bcCZYAN6fMUu5Iz4sJwAVQb E/yYut1gtSyUG8YgTrE+c+Oj/qKb8KPy0YG9vSLR+vj00+nNzceTozTVm1jy2jIiUZm8l9FnnyoZ sFLfaFXy2JP619fCUP5gCQJYcUEJBHjPA0KiM/QvsFEPKEXQNf2gnSgo1/tIIiQHeHMgQSyujUcp wVvrQqEhwhBP7OMHPKwPgfegA+j2/KHbbD4dSXaHxMqVexCoUKEIxlPzmUpG0yrvRzflEQ20/rXE uPtCmsiTzUp7s+LtBtt50KswKZmNZfrkFcJxSwJ8R9WmeYQWYODupKZ8frL0ubPQw9VINEREohx/ vh+dnrDy5Z8fH1VpFOgUAHdCwoFmd/dXJ+u3zPfs9I7FaPPOmLGa7OeOK5J5Irw3d+cbbtj6Yfe1 YTXlBXjcnLZqIi+DKpTAXiHTwSC/mWDXcWDPLd1cYKyCD7wMfbuU04lfV4qw22w96LY7SSGXb+yZ 5UyeWFEDQOb92YciXIbFqUJcZoyyH9y1ejHkJWmaw8H5xL2rT7BCPTsdYwJuxpaIdE+C/5SUHGUR WL65hLUB3bN7GgkWVhgYuAXsZGHx+oVhUNSitFRlwRPuSFefDxqORxfxOpr3x7O8TYktA3bl/u70 /H6rjYmNtKed6Z9IGwP6KpEq8B9vQfWxJc6R4kQJnHOGBXz/0QABmLiYa0ycmU1ubD5b0ww3zl6w omuY0lC3SFDCrJg2XMZzc8nqneD5id8cygXb1swNq7HAUob0hb6Sa5yFZGI7tkoVqmYBCjFEH2t3 2scxU5stQIudwOIDmGZmGYPsZ5s74W3DT5K4bjzYIJQycLdBMpIFP2oJh4Z6xvAJ5IqlXogK6Hx6 tGVcePYAQUJQJdwxIdebh3NiAyYDT82ZKcrQma7SUSfQCrrA2eYjsPPPopFDY0sM6zPD5tTGERzG NveaLLq5XcMifEvDQRpg4m3UBfnIpjSRcfiTp37doc8lhn2edq0tn3Z2xJmRKDz3oA8tdCzgVnj2 daZFrbA6oREl8iUxcFVna5DPKZWHNuW9Enuk1VpNEYMu7RIreWQroKrg9Ngdpu1gk7pyFqkkdBcA T3h0LMt5UUQECQWeTxGcRyqWASyJsqkxhoWLD/A1kdPMRuwgmxs49gwztTJh5AINBybs4jtF03qw EPGzcnx+Ad9sRBd4Yr7mjL8fKhmehJH1cfCLZRVAzmQKHbKQE9ZPUs6ZnnB8/vnm/NP93zY8IumR 9oOCgSydczniBV8bAAwDiZ6y0sJWOIAljDUR8iDAtbQotBr4kHxKrk0b/nsOhwj3jx0lGjzU2XkH aYXSXTkO8ECacF6Nb8iFAR7PAJgx/pspi0IFW0fAMMME0+mmdwlA5Vvz5WbzneG98XxJqb0vOVR7 4met2D6x1yP4yV1xpMSYlscLpV47ns//oPJq2A1DhpW/H034Mmp/PyKUs+2leGLggcg3PWh1C7wH dFxq9fej68A2Mem8Q3/DJv/9CHMAL4EzIQYYmcIvKJSMDcovsf4gEd3k7xG/bsuzHdrSB9btYXMm VHLierllcTDyuAUdmbhmD/CPvpyVAvlrxgB7or64SihTX4zuJvLZSN6WZELkBbPCTli1ij2MEpni Bcc+sIQqxDCUM911keiU28AFsckDelTunRcbRWiPqfacfFdLVtE326oUgbF+90AOSG3YRbRNF59+ +jT69HlDG8zFnrepeSIKAn4Z8UpdTO+CM20uTEt3hb7OzAn8Zzz/IbALx5U3iHbSRiM4K4gsrgPO VUCIChuvOxOiXcZBwAqFuscN0QkDzvnZ6NTblEevH3A/W9A/4XiXcYbC58LwXQcfYX2dGZ7pOUF8 IVNpKeFsMvb0DDwuxqSZZi16dLopDvMG2xfmZBbDBBFSp+QS3i8OXjtEovr0H/qErh3cTv68gLGN ngl6ODr3IeNZLC1nRXIFva4B97BnJSSHDOReyxsocYLry3tgBpvhNnusfVJk3PwqFN44087QcKSL UI+TcJJiuR6D5kJSYFr1LpC4ZaHwZ9pzfYy9fMZPuGRJ24jPVREIvOQhd4yRt4951QG3X1qowIjN n8jXNdZmX/CkXSXkQ1gPsKTURt8YLyDMzSyE9BzrHOAHvG7EUbq5PL8vd5i+rhlr3ycpZEKbsh9q Erhj3Y5MILBP0nLWIdfGpCEb4jZSFxiOy56rdWje/xGrJY0NcC3GD5kZykU+Si4JbIacjqw6uoJR t7TCwsNUVy4xMZ24V5UFPmcQD9RhFgzUlAwTMIzWbJLlgZ+9UluYdULCq2HtUTkvf1bSF893Ozz8 xkE+knfp0Lp2fetkn5lbpmUf316dnl+WOw+sy56EzI5sWfsk2wMEpHE1nUV+c5vfhYGIirU+v7gF tp4lp8PNdWpnmBxCkxbV/EUdv0anqqY8wyEBIGu4YWOHCtYw6RYYGW0T0xO4yhzhEY4SgsHOL71a Uaw6brV4+gJKiJnjYePJqCHb3sYrBTeNpsQf8UFGPHPKy1hHCbTKFCEImf347vJDWdXjK+/0BgrH LlUFl6BOYWA0mTuOpIUrqnLJHhhRjTy+vBpdlMOK1Cs55p5en9rAV8hD0eWvptNwESS6GBFEHkG0 ll0Yljctg6ERPXwQgkbnZREUdToQ/HghQCXR403KoecLsm047sdfbsoiR3T5/qghNiQcnYxpwCOa oM1kblpT16B7n943Gaw63kPhmvmX0Xghnxw7MZzT0d6YQgM7awvIvHMFB9xjTzGx3bhyXoBNnM91 ysl7PLq6uCq3J/GOBZPsaZM6a51HPGtqbYiNL8tlAhtfSlJorOOBYiPIxgZccKP70/tyog69GcHd IzkwstW+mWW+1QUx5WduLJZf8YWXOn+wFyjHA3nuWAEIuTpaNA0XTuudOXFqodfkJ49kXi5Dh35Q I33h6GywcwpLezF0C44pv4FvHBeFG1u51l1Tt3U+DEz/IdAX0eiArZ9Mdwbg8gYnzKgrXHu8uCwW 4lF6WQCO4oBig0wHR+w2cVD+6LBu37FVeuOD8ZgZeWHzv5ydnd7dffpc8qYKu+5sf92YPrfOTy3z vQuwK20tdyyYOvbfj3z+rsXNKsw3N/vNDDaMd9GtF33l8Td8RDkKnQBbZj/2fOezGdlshbvSbz14 AompnYk7CH8OfPTHLX8ys3rv5xy2QRalnPIIBjfChsDgDShTKbMiHfixJKpxyXrv2ECAaDbjr/uR F0oUh7ZWnWep+rsLeXt/ckjNjS6d45/uy0lBiFLkvMkR9rS78RcoyXkn9HcwPHRlDl1yaaNriuVM +EtQyi3LIzkJJByMzzRErNU6ND77Qqb5JSOeUg5e2kcwZZmc7OTRjZ1bpSMxE17jBZGY8RMtacQ0 1Iae81E848RZqlNYOdCA2m4eYlBjHMIqsnEvaC2VfH2pT4hYE/nXp86E5ZFstJpaq9doNs5H5xen D5ej04drltVRxWBgtNL926ltG9/ys6xfXF4rVxyAHYc3pil9HzGOibV8uPrMJnu7eEe+zm2Tq59/ vpUh33VydYyi66itVkZwXeLr8sF1seTqADv+d4T/vQROyPjdugzquyZtkRE9AKCx1PoIJ1BOZ0BC K3kLirKsoy0O7vZVHQOGCTj9hbaXA4i7LEXajfAmhB5GTiBfYdTd1DEp1afWrHebvWHjw7DZGtz+ 9SwaHqOP750llxwyYu72FsmXkdW93UykusXySHC2vx1l56NNnEoyX5NjcFSpRFk4U8NSjoFyQokn kfBVtOQC5iVcrnPuK4OS2DgwLfzg1ViaX8yvO0ERicmaUbpmLiTDTAjJmNwlMKsPMCBX8URZAPYw o09AD8R8P9PAFYWT7nUbVqH+p8JJUID7AuLxY2BPmRyms0ipiQqn5hk1c9n/XfjG4nAfyB9Xoeyq RKbnaH03ABVXd+wN4dR0x/SG8IgskCn72JKHB2Zg9xm4CnFTEEvIpNVuYs4Nw6XOQ/FHlAnizzGR WpnjU6gCYpD5Kwp5lpwzIpUgot1UaDiPwzMymHr8VeQA+QiTjh3nKRKRnfE/4CKsU/6Wujf1JnVj GuAVefrl/uMDHjg/pHWUpxsiyUcjWuyD+A7PPHNopbcqKe4xAZBY3RKYMe54/Ey9U/7vuuP4/9h4 a4Med5etaF1OE3psfRCipMSZspKexFuoOO6b5z4xxJ2wXuRO0DWQGTEOzP2u8nQjBUxEOGZsSsQ1 BS4p8xlLhKF73uZcgWfSrmcL+cODF/KHlZC/H7T+wYT84VsK+cPvIuTzde5C1h/+bmX9Ssr/QaX8 YSXlV1J+KCANKym/kvL3L+UP9yrlD/co5T+aB1k8FcCq5Pnd4bJsIsJHrx54U51eAEF2avBsmCQp B56B7IsyEa7JPzi6OGWJB08nKFew/INfPJRyXIP8knYtwnMy3ofc/t7B+sTKJ/sZOT93rzq1dWvl mfGkhLMAhMgM2Z0wa+qI3UdjChhuWObYhUUR+HjJq0KaZPs/CVwk9QbAO2g23n86vTj7360mINCF fz7gLPDvbethoDaFwpQmIvbD2nS0OD06+grmRsvDqRSaCDPg7lsvQdxkKCMzU1YFi7dhrRaitQf1 Zq/WrA9bNa3Xrje7tWG9j3kWNcxQOKh16t1+DbMoYqZCzHmIP7W1utauterDbk1rd+r9dm1Q1yhx YJXI8UdN5NjEQr7xRI5ZFXzPz5uqRsKOrGkyKsXCeaj6UVrGc90dEzs/M50F0D98QgYJ/3CSHiFX Wl+wN81FIjUpdTj+j8yhNq3UOyGIkfWSpBlNw5aC2fu+c2bGf/kX5TNn5lyMBs4Z8IgdYJ1TdMJh SQ4fGWrQs8QnhWhODj81jPh5wX8XVPabwhKwO08mTk1JyiJ3Hxwpvl1/8hTlayFTivvWxLfuRDkG th7WKpRSJhYOyXuJC43JnLSuF3TvY746QgnlK2csN/T8lz1CyGdJgSFR/DTwsg+TdaOWNUY1EL3e 0CmN1DvPxP9qQzhNCvYDJIjQcqY2obuqSa46U5RYFyDdMw844s0UrMOKpteUZ/TfMqJ9oCA2j6nQ ICV4IskIWx/MJHYS49kYvi4cDEh8x5KlYHIYEKRxq2oEotpqagPW8C6Urt8pS8vxVfJ2UY5NuGdn AUZaLx1rNXPsE7ERksKJujPcyMzfEoAcU6SKj4s8/RXdu0Cj/hodjWjbE+fo5KBST06Wr0w8OWLE do8/pFzQ+I/Ui9s06HPkkYb+cZiGy52SemxgbNwKC+Ridp2Q+JlbIB5IkYmEOQxjF922A0wjHzaG 77JGBU3NdKbmJGpZV/7v2P1/+P//qoy+3P10+bf6+Y3y78rt1ef7+ujupwf4i9QfIsDANmEPpHmk CQQ8SBcEvUgWD0TG22X7qLGjmpFgIhuf/McCfPKzD8BiaOKUu1cjh7A8h9Llc3mXdxSpdHgqmKgL guPJGGJJOiQMnd//LRNDfCiOnjQmsp31qFM8hA56ZKOBfkojIawsIGePdUmdt30BCHfC1VR94mKe L8OaEnCxkfiaHLgVvDDNCpF+5PuJbdBKY2JCt6nBq64yzCCO7k/Pri4fbk6vL+u3V/eIqePoK+KO xNV41QJ7Fd9JobNPkD3arB0b5qSunBmYTYri3jCLqvFNXywtnkQDoBJw4AJk2OXdjOA8/3xzISBM 7aW0bWGSX8G7WUUe/usxur5mDT/6ckZ/bDCDF4xjBydz3Pu7y8tNBsXLpHjE0eXlxdWnmw8bgfr/ 2/sS5caRY8FfQWjirSWbpHjo6nbMvqAkSk1b14pS9/PTONAgAVFwgwAHIKVmbzhif2N/b79k86hC FU6CuoYTMR32SCLryMrMqsrMysNxbA/xXbbJsV8q45TAYNEul99X5HFxRdoujAL3LYbUD10/DiEm z+SRNUVbKzrUzmcyap/d41Nk3bS0P54wqRNFF8W58cihmmhfI4EhREtURJJXzQiefBlGXZNXNV5p FCzq23XKlRZ35oRrnINNDCDyv6AbPdr0ZoutVdi2kDkT55BAq362qcGAEfo3PZ29KBQWW+B/+sd6 C/HJMgBidkH7HHEiWYULISif/Tkzq0nzT1/fToV2TIuPX/ltljulEYchir28KSWfCI8Xm1v6yeMh FifAFN9x2GnmhJYnL+a3tTCNouoYrz1CFp16/FxC134839sfTqnRkjxKTyKiwXn36Bq/k00ytJxY mOgBp9FWVnr+PgsO/FkKh1zsm0Jx3l+GDXdlbOTLWsP0SSw5edmJPEjjoUwE009mCpIQubcCrLIu LfsxamVePR63mE3N/AMvQ6Hc3Z9/6mWGzaeRmTx98mmUPz9qa3M/Tvh/jyXz4k2e2lAaxgvJZ6YP KpH+f5Et8Ca+KLtCLX1OqRnbDuixIiQXA5/UQ+hTkOA/vD+DEWiEuLr08Za3gBjWUgY8orwTxrkF N/X3CozIeSrgxMD2q7PlBDphsAebmoXpw3mkWJC81U4XShCgFEKCtEuPWeIi8+jTxal5fnP9X5U4 ObE0yVGCbbIndGbuq+veZ1Pd6nlAaC1eDIlE2zJVJ2Zkc/Tgj83JLPyezNPtOAXHEH1VUSaM9V66 +VvohYCuCCAkWuqZ3bPCMfwab1JLnbU1iQbKy8FJbQgO0LXj62kV0VwXwKsR8eUyUcmcirglpML+ Gdp8CQLb46BlZxKVkepJtoyoZZZyaJ9xtMIaCJ/rY6SqPackHNiNrgs1FFuUaWkNKrMgGicmU2Se OFYEQhjHzuFhwApAfH9a3kjLNsRqhOhK0MWHN7+7EqIF9FmKMRUktcwvl5fHZ13YcYOb3vmgAZ8p lrDS2ElrmaEoLoPalaCZRs5CcplyWDOKH4516sU1GYQdvox+oWw7FG1LjlfZBBQeerBHZJOp2xaW AefXuchKQ6m8nNlDYAdeMF7w4frIGaOHCzLEPgXhNzLiJCYD5Y7merS8OX2Q3vBSn0Jfoww8NA38 ijnGrNBzsdxOXA8ldFA6iUqIyQlsumfmYf/yvDvIkHOWi7GKVC0mpxzRFCNmCHrhzDDXOhmPr51J AMhhLfJcWvSpvFBAWcNLiO3DONIIHerjxC8DRFEep3Ar6xSZi+KQghHyZojSUyhyIT1x38bbl+3h In9Y9hvhESXkEIF3GW6ckf2IpKfX53Ajnl9dXvQubiQ9xVmaoC7STh6jiSHzCavtU1mzSh0bxaQe hxMzRvFz6Hzu2tPAfTGZJ3KYlaQpS9HEZgxYUsQSw4nzNUk6NktTnS47cLgeiMoppxuxKekAH/vx QhW7cNkXceLQXUKvJ7Tpne84C1l9tWeuePVY0Uk+u8B1wqZ/g9hP/MEvRPqak1zgRlWYvZjX6RbO YfUcfj3vH1+tCa8iYZ/Fp4cOpgx4GZMOaYyKHJo4S2zBGpxyAu8S+IMTCKGeIyUCyUYPDs/ly9R6 hSx8iQkP4FqLnMQMOiD4iAbITk2BpeZaxuZNayuRc34FrhNP2nmIq8R0dgnHHcLFd7EeHEeEeA7H 9XjVxRaOqmznqIEq8l6aRBoB7jPXYXK2YvWCCNMb3FwU6BnwtQ7qSmpHSu6JZ8rQvPpMlQRXJDCM lKDvQL4vFNil5NelVg56W5Nbl2vV8FPRo9yobJESmkWeNqhyJ3royQd/+Xk6JeVQxPSJVjQz9uh7 rjXhOf549kC7HZjEvUftQkyHz6eyS6ud3+fBCm2U62WnVR9w0s80z9E/06PnvArIFiXWsdLno3xz gWiTYAt8RygxFAzid4bVXpDi9wl8MRHOo/ziDtA59Kwdn93cGLRV5zviYhvLjuAn0nPmEY+L9CW0 3NSZenvRaBivaSUipgfMsXGmHnMKjeEpALRXpYxNYbkxGv5IWxf6/qMV4aaUVj7hPVZA5Li5tFfF poFimsNVLVJwY1IqTt97jz4NYiQxgkyQqrT/Uvte/+Jzd9D/3DOFSd8cXF1lCegWwVuEziKKZs3W ZQAUmLFzu4hvk13wt6IO9N0Llpg1NWbXmzvx594p/DzClVz3Tsyrs+7FjXncP7pBHf36H43BP84P L8/yQFNRRvHsF9dHgxhUdAFR7wboOWG75Ahnkc+LdB/Rm+dyuJzQFLOY0XSa8O/AoiBG2/is4KnG 9zkdX7wDdKQ8bw9ctYkkZRvgsRjgl2+BwvkL+D/bvoz5s61TnP+MtVXh/ey8KzP+VfvdWH7ahpme w+8yDvAZHB93rczzwwWo+wv+heVvg7LTL+Nrc3BzfXt0c3vdaxiFbyYKntdkaW3qqlytdanG2FqH Cry9dJmF3F3OOGY8cqKIESbQx3eHBT4MgroNau1nF2SIAoah9k/UfiLbP1L7Ei4R1Q/TcqGdMxa+ UYysGQh0NGotrj4mYhjjCNjjL+fCJTGfu+B7E4sy5bhgVJg3JU3nMFgesu2niUndl2H4KLDCyBGf HjvD0I1WwPeIe/OnNvde9e1u6jocTZw3WGy6oMSuQiO1/MgZzaJibB9ddq8H/DTzD/O4d3jdH1TD fR4IL1CnlsCS0q6K2+foWlXhrLQ1kVt4SHpZWpg85DLeOZ7f39eMM3cGf9eMk7njrcA6NnX2ROd7 7LyiJ2BmgCGGgjrT2YPON2i0FqZpvyr/HN+enJhn/Zub3rV5cts7y2Ge3MlfyCpF0+bySaZxhkly MPxCHsERTR7QxPGWMcgJ+pY882ghp83nHCzSDyfTP3WWWEbkjEUV7KqMcdK/WHasZOd9IVcUzpnL FtnWGb6oCmFltsABVzo4zmOT24qHhrLVPePAoC5eYMFCN6OHcD5kS+yDEw5Bsom5Q7SOpyrmBnTq uyShPf+QSEG7nA+KEBwPVGnXXTsRe0tcYV7k6sgNZb8p9lsNt2S4xH5RBpGlGiWi8bo36B/fds/M q/5Zjk1MG/qFOyl3otxdlGyZ2UFLQaq8dSTOTRxtGWFvxAFlDMTBVZ228myLz7xlfs12lUHYek0O HSmzYDG1b667F4PeESi6vdNzfJKvJJjFUwuD+Qs5oQiIXGbINM7etFWQ9UJOkeOZYrz8YItcEV9z f1oWjJErFGv9S97DtAdP8d5KMRRyaBGHmPT90KbTwjaAnYiS4hlnExloq5axPMuvmRxb/IrnkN8Q P6RK4xa06X3unkGb4jALk2Tv7tlRRUVBw8nqvJgz6xH6bL581lI70yXp/92b2/OGkQOC+O5VFq/S r0dYqGw+KY+L822TdBAYOBMed61H0JTEyiUibUr4dPaQ9SnLOm6L01CGqFkT+b5o+cC/HkbGPkXk EBvhbWc4351wpi69BDAyzLfA+IQCxHXvtHexSohG8httsjILDEoQ1DjPPbsCngdxXEgpqktf36Rx iWM4Iy2YXT4/ia88d+KyRQpTiVH4YC0mlnTE02Or5vaiNAJmdSRHeeutEhSTO2M6KiXTLmWSS0bh VICpLCIkh+7yXbYK4dUbrmqbv71KiS+H4dd6XWyoScsz/AIbcSTSxYnrng/85xFfPFg/g/p5i84j f/4bepb4+S/pol1GqEgusPxxv5IUIcfIssKVOq41JxrMn1B04KoOml8IBWSv5E+Y6hxRXc30iJT6 QSusQiEZXJeWQ+Ts0HryhTOHNSU3Q/YT/ebj7YXtVUgzxc4hJjEZCgVfcnnaoRb9GVeWlpeX/CAD XMM4ZYuyB4dTejXCXxGEkPEcgyaognGNHEic7yNnKjylqdi07aAnGYg2cI2gWyTFmGKSQuggq4pe WCI2gRNnoF9t6MTBgBjq6t7TO84sXhz5kVz6aV8sFAXQ38e8vejfxGSSDlzEXbGXbWbFic7iDtNE i/ir3H1GGOUXR0VSWap7M+4bvzRQewsrr9HoR8dbyk0HzgR37LPnFZmSFVS5118wJd8jE5dRxP5K fFzO+aptxTtQMH3cT/C7JrJK824ithktVSR7sGiyGbOxw4kp4+/5Da3FL76bwZBSDiLbc8FZdEDD +xU5wx/XUI4jxomJwiFhW4nNlXZtm2a2vpDlZX6ITSuxpImFfpzGSFRxqzYSO8TLwH50xBKjJ19h Dj1r9M345HpelN4cWKI3j+lBD5CelVI94AQdGsgiNw7Tj7IPxDzw6OQQ9CF44rQLmVUj8tIiuGJS BMaM9w/+1cjbMuUqTcHqkvdDZqtFyb0md5TanXHpQCtBJwVKPH9+tPK08IaIyBk7dZ7DMYg5kSKR w3UWx01bmjOfUCuHDoWaCJaxjU2nMW4kTl9sSyl35Kgkb7gxe42Bjj4z1FbxUYGJspaeEl2ptq50 XsTKbuWTg85kRk7uvhH4F5059a0+JdyK98lPqIvci1THrd2WRVnJSSBvGsFs5JUADNe9ubnuH97e CMfemiAcJVQAaGDAhM+w4tJ0TzitYA9iSHzOtFtC8rNmiQWltpXYPj/nzBHvtIp7S2weD8shJstr pyKNpAAiU5XmgFnGXmbMB8sZ7RTTTazEZJSgIofBcFmsciVNfumuxZIDYvP0+koKDowExC0f8JKD tIuO0fKEzEEXCoymxXHlXyR6FiIM3MqjOIKRovrNP64a8qskzTO4Scr7+n2+mJb6MscEHIfTCpIE jraSOIEdVtOrqQvwagnOYZkC544SGThrjkgylYPyPt4AMDjdHPl0qaXvTy1mQU2o9k783hZgEjOK ysEr4K8EFGoyy8aSgdwJL3uZY42vi0jlVqM8ZhxX91chLsHFFubOQk4J4h4BvlzBcz/DfSX3ej6j 5bBhvg0vl8t/zmyJZ8yn74ryWeEX6ZymfWce9wZH16qFCJv0SyDI+VJPWKAc06rsRuhesBuvhAsa aXNd0htKXlC0jtITijpaqmNpMMITSH+4Nmoe99Z3LSlY/Cw2yPkaVV5NueGmeKejc5tnLaRZEj/+ UxRnfJSHgdQDKLks5oC7IsWBQhviUxoauiGn356GLjm7C0jEYaDR5dG14tOfvRSFrbg7GJxeZCMv 89tpXm/CPKMZuxIodirnVEPasyciD4DZBsdFxg2J6qVUl9CspNclgtpDyn2EsV2k2RYaEJDU1I0u RVh0pmvsKCWBEvet9t4yXMQ5KGPOSKRikQwxdb87XrTNeqTrJ8elw43ld8FgcH1o4wwX2rFNoAmZ IGMh6GciImTmEMnrkQy8d/1MPK+4HjSbQj6DSYNDfPrlcFz+m4YsmC2pLMwHtB+LmEw0zjxPnDqg IM7CRdnTxFi2KTGOiTaoD6mXMGDmYOQSjSmPfrwjVI5XXR9+WNghhtvTZU3cRem/A8umiCZKfJi2 kp72Ls8bBZsyxzaql8zAbDEi617RcwOuKoOygW9No4fyzIeRbJOHMrSOONmXHCmiUlpAakpIK2ii xFhEUobbImGqwK2JLCrhEdyp58eKaYPnqaKY831q+XHBdMv+1zya0d1xb42A+TOUGFx0r96OEriA /NLQnB7191UXOpHStaR4xW+SLLlKXmORfFhVpxgP3ft1LE+BcP1Rn+IVkVm1QAW2pWTKeLFH5WUo Tg/7J8YNtsPz6fb168ZJ7nyLqhOnXETmEDMXUy6G2SIhQZxYI5fisjdxmVvvWkeOiFBYPe6VCjY8 q2xcq7MsbX9xkTjEI2fpjzGu5fGvkJw/5k2V1L4qFZcl6a/9Fkn2Udi+q7qCZLJ7iYotwZ6ku/n0 ABf68k0CQKZsR2R0w8eZZGk0rV4ZuxeGng33yBj3E6mbUU2IImSVEEWXcBzOcCsqqlBnStfHKjMc BXEsOZ0QwnDiLQi8cUi2E7lF4mEoBwYGUbUae8bQ9Tw9YlANH2mZ/Gl0bWZ5IMSiGmf/wmsTdSGU qMLQovT9/NpP1eJkCTmaCyCpwwFGkpTq7WO2VVg8SIO00SbzyJlP8ElhiEl6heGLmo7cmfsD5KNo xFlhBA1ENiJrPgv4+cDxH90wIDRzCatHZwEI+/JAXrAPTiSrTfFjLubtRQxSujyEFghwh+tHJihg jZpKzC7lSNbGZ9Y3h8VDegFWBePQjN4wROp/ObtSme6uOFm+mk9kz29YU9BkHE7CbzDv/pVFXm5g YMEzg4Us0j3l7QDypBc8NQzjHNOBc0Zayo+uPQyjSHxH15ESgY6tEE5R4yggAC3M/mgrsOynUWNm P43VRbYtHPVUMhbaKlNM6kw7AHEJzB8tREI5tCejGWVmfQ/8YALimJLZMAwLCOrMRgB412YfiFR4 l3iKC1G5ch7jVGVUGo/4tnvVz6fbto0ui1j+bJurLy62BM9fYSoHh684aamgse5GwmfJoApJmFwz KhhctqyrlvzQUfDAGCBHi2nEGSJqG4q3ZJJEAbd47TiRtsynh0Bd0sCLDDxmQmK/Nw8IT145AqKP vMj/aUi2NjbvgAmdf27x7JdqoxNv3h1f9nErixn+yd0TwHCWnHgfoY2H3ptpKwFLAgc4dgwaqNqj b3qtwL/DlmQLrczhZBm/bNzJdxc5cWVE/yR6ioIS0dYvG3oaKjw6BO4onbQ66O4U+kGK0PY7flTH j7R5AWXjADPesRC9pZR9/VXTCmfuyNNflB4cb2osgjmj74dG87UqqyHlq8qFNTjPf6KyBiLGtTXp yp/t7WQsAuJI0F7opCuYunN0K4PgBxB51MjDxQwUSLx1ioa/ve0fxwPflfOUOhlkfdqf5D26lSxv 4EYFQKpPdQSUgIn1M+/gQP2oevaPS4/an/SWWw19diygYJO8tMLEolP5nKLRFpzIZLThqyQuskOH uW7P4i01hB0/xHckecxrk6gyoK3dnb2D7c6HYOK4yfVMHxbAXKsth/uUr4bbVF5M/loSkJIv42qA UpdyOKnJa4JJyXBW5EvssoQhsclrgnlvTVxvsRqc3KccUG7zmpCOHX++It2pSzmc1OQ1wYziam4r ACo6lYMqGr0msKxGidLjzhR6OrPVIE+M0OMRypeR1+M110Qfhpb/bbWFULdr6FYOfdzsVXkGVSxy IKQPVmOduO8F9F3CQYm2r7kCEFmGIDFNnrESFAtVN65iZEUJTywpSMa5iMPlc4OC+hCQB/DzoYiH WAJN8n5CGQ/tK/aKlBQdj6DjkrtKNUQaSulOqoGs+SA5USjlTJPkKNAfXBqd1t5evS3S02hQo04o zEsrgCx7lcMrWyUlDgxdcQivCRtnJZ7Hrlei6xKW15smAdBMMfTK8Vwhkt9IqgqS3Bro1nOFd67I r2p8vbruDXoXN1/Rv/Nr95B+B/r++c/nWPoLtLYwYtfAJ+A6pCkrfiRzq86k5/z5z8ljXr6s8/uP ri502mWHu+xHReWWneuJxinxkrcKiLbQ40V6BfS3fPcHMXl15ULvBRqGAietYSSgttGOZnno1DCb 69vZDuYFYT6MONHxTHQsR1yqcfmW9tG04bk/yC1d7Gzjy+ngYAf2NEiH6Paev4jAHz9zFbJntWXI 1q+9DvXx3BdRHrOF63O5++qLUsPcqmH6/jkNs+zcLem6VQAsLHvkRvwQuTKIV7JzVcDiDklwqL7h bCUg4i7lU8fNkNz9+yUXZW0FjuBDEesrYhLMKH89Fm5ca7R4xrq6omvF9cnm77pOysazyoaF5st2 KTR5/zWsTifqVo1Giabvy4f4YIlG9NVkB+pGFuFy3pPNVjtKY4CFyHew12xxwjWS6C2y/3uUUT1J KGtRWTKAtktoYqXEvUng66y8ZHxqXT4DNUnOgWV1K0+BjctnwBZbWd0yIb7kT3LDSbQddEfLsbre 0TjLH01Y4f8JJ7+NrDE+cLi+5ISMQpZOIR8YX5Mq0dc8Q8XLV0PzrwoYT56EaGhFbhTc80PCajuK ul7eX1PXcqommuLOwiCN4F5I0Nefe8fm4Kp31D/vXXytGV9PLgeD/lnio7P+Z4w71j+6PMSuXUww in9+uj3vXpipD8+7R58wu1Tm45vedb8LU3TPr856PAF81MU0k/jX7cXfLy6/XHxNWW4iFBcRD6tr mlrn5dpmqnFazpHOOc/Rd2XfKiqv3jYFAxztXjDmF6EVQeCuF9R1CQR60yQAzLDPmZ97Vpleb5mc XeUgHq6ovaueh0tOc73lVurSmDnq29Xmx779uO+y+0Rvu0WBv4nLLWnNiB3DVjFmcKcltgxupPT3 u69HR02zZTa/qo4UrOs+AskmE3xZxv781GwHE9Aatn84YbDdajS3t1DXxyHMw3+YO0sHEbNH28PF 9g52h+NLdL44ov6xTy0+E2OdIMywwhHtLB1IB4okB7vjhxl86q38ZsE9P1HPJRystczbP6vzr+y3 jHtVu9RtDlM9x/SDTasYfVS7lDYW4XsuCKLoMzNxLH/F+RP9z7H/Ejky0z4Jj2fBCa+cSCrbS1PC 5YPja2VuqIwPjmwIfzTlndIwYpec0FHfojwRYTUpyqVnRZy4JvZq4vqaceaOjJSBiU+YxQkcl8tk +Q6OboWut1CJh1N+XgJgApZnsZOiq2O7FqFkJTJRN4xdXCLHyma4mc+tRVzZ6+tg5npeH/0lSU5A G+aY/yQL4QBrsHw1NsmV6M4hCU3T2NGDc+oqufKxta212UYxaLR9Hk9ewxAYy6XUHkDK2Dap4emB wiQoEyj0Ut5WyesoiubVENWNA4TvqJPGxQS0cnDHP+voEwz/t4NRtI3rIZ8Q/PAR1Jnh3LPCxbby rOnjiA30ld0y4G+0SKKLjGRBcv5hzouNgDJu7xxdsRgZfIwqtzKOD4uQuyKZoe3es8YUDHRHo6AP izENolmpbws22OZB6ljyngbZxm2ZF2EgvId/R/EFKd+WkggD4TU61L1GNWdEeZ/VVnav1EIDAsDy aOKuZXiAgO2PEIFXRmjVMAHfiWw3cq2GH1hWYxw8wt6EDotGKkTgiuQ345gEuFcPD9A49E1CBC57 g/q1ceQFc9v4H3DCwcGLftN9DnB935AAsdZGMgYAQTSOzvtXeFjg/WJmAgYqBQI0mrX6QavR6dT2 Gp0a/fbP2l1rp9XYl19wK/5qSaxAa7/ebNfbBxgr0Nr7uNtudJr4b/WQAVgefHRx2e3ij+4AfwxA GIHzi8yHRBv4KWlTJYzAtyJmWbwsAC2EW+XCL2bJhgvkxAWQCQopE9KA2iAMsT6IiC6o5cYfvE3M QTKqAVDDDsXoaANEgwlm6PMrEV1v7UEP/m0fEYkr+zhBCwW06MB36CO5h9+gdSOke4Um6x724/bE eHXmwruNk9uzM+O4P/g70ury4haped4bXA6Oume9uI+SKThfK/Y8ayNScuRnsSu79qMFe9g2DmFf oXut2JbGJkCzZZy1xb7lao3JnSvD6lRcdWsPjwU6Dh8dTuk6AUED/xhaGMBnzYwHUMUMyfXGyLI5 3OFRiHxf4Mp2Qt/4hD2n5EqvhSow0JFDpahFwi0MM4hmMjr01Akitk9jbZzLqRA5YapeIlYgZv/I 2MRh46i+msjUE7ukBDSGDHfG494aBiGpx4ZzD6Sn4H5kVVoxMj4GRcOiWh/2dzkYPNDgEItQANQM wTfGJojWdBb1QB3g/GCCkdRXiCBMqGtNiRatvTqiVqYLYN/+cQIJQTjEhHYlKI5zBAh2KOCG0LLd gN48eVXwoYQjMtpU8oQSCe2A5mOFdXK2ItdwBLDVNOQHpOj4jkf8AH0Db86xHzIsttnY/cYx7e1v E0H/n376CYkrE09RqSCATTFHAprZA+aZpG0QcX0Sbl7jaHGqLKEy7mXY0XamDhuMZUZ5DL/OBlzg vLD30kCpuH8iSypWg5XBr6l9/tUY3HSPjD7AQoH7TjhbiKXXDTM+AcyPyIRuiOkDQjE8QIvloABa xDs65cP1oIARUc/5OwvGphOFxu3U4HoxNmFHbSGYu+JPTCv3jbIAz0BBzZ0YJzjCbIk+by8Krt0U fE2GJo5jIcc743LkUJiVVK8/WU+W68r2+1sCsPiII+BaBA2Axb/kAdSIdxJx3L4xDPDRyeNwLkeF XT8FGvUnwIHRyPL0VGsii12kMd85skDMbiLFGfOZjJ0xYBiuQ8z8Il8pkDXVYf+RhgJk888dWQsX ft+LKU5/mh2TwpYo6ROQEU0Oun4iKEvkBkHyG8zv+DHBe1aIsdAMYiLGSjQY6QTzXTzjKEtQRHm5 bwdbMvOmGyYVo0gxOA5F2EQzzkhHJkqKkagKfu/ezxDxE9fH3AgNbYk7ySWS2r98iXLYRydvzL3X QBus6iVIe4ImL0PaLIkwccxNqBYcJSpTBwzau8TZJ3wni48cHKDksEETEhkT7pBrBxjTQkg9dtAS PAtTfhmLYD6bN4bOtjna/bR3XT9vRgdbBooDQZyYynaohqFMtYjj4kaJVMbB7MYT1xW+E6stWCyL KPxUkFfiUB5ijBCzBTiMSJEOglKtyJSF4oWB0qr8sjEkU7KPKTn4+182tBSMSEOKtIvmU0y9gnfi nEp8czxxw6gC3yaqIlsU7cdGIJk9y06yECXd/k4bC3FaKnpxNjBbJmzmXH+UnZeIwEKEBOCewyet mSx1LvJ1CDhxtZgkkES6zXOCVuPQKylyw43AMjdzmzJ8MCeiIvZVXdl0VtM9AuMxgug3HaiI8+xo 2XpiPta3l7bXRdyqlByl0EWJhhNp5QMgrIvyWWr6C2d2dHzCs9fQOfgJRsCfIyRkHUOsJuT/AMLJ Tf/kBI+B0y1MIAL0j08NFQVLEPLQhPNNEHG2/hofSHUlDxmqES6N0d2qGe0a3h348a5MivbFGRrn Tsil52B+nFa1p0YdKdhanFMOJqNhMbMGyNP+OKagG8U4F4ZskU9ZXHLK40uvPUkhn7D4azwBeSY8 O0bWXJksaXNRUtZZEHhxniIbmIHmAbHQ9vDpyK/Hs8HlPl5yM5/Ee1hFX9JtcHeI9ehh7/y///N/ I+MUQwhxc0oJnNUIfA9IuUMoXRRLKFDZoW2kC0U7b0tjYLQth49MGtucBSaPbfLYJo7dmNr3WwxO cuIrgeRjTGnkxtlrb9HXFgBmeD8anzkb6q6xeUZVONrdv8iu0VYh4IKCBG20fXV7Wj9r/6X+GHi7 Ep7ccMSjZstsfZtoEYlsAoED8P6vhmY5+xkowh/CTLg5fk7th7KgxZIzUBxipIVwrh2jDuoING22 jE26stUOwXwSTvCROF2PTMTTkPq0oAG/YcrAx6E3z6m6Yy3wpjEsB00AHt89mNwQC5eAKganwhMW 0MAU5VOXTEdYr9QJzScLSEJ57jc+Nhs7+/9GbRuR2H4tJL4QZ+uKofa6YKi9DEPtDIZCmjYfQQRe hMUuxviACLgS4e5om4yK0LK3I9DSWdvd11l993UymPPdsPmhEHeqji0m2g8x/YMV1pI8R1y2BJsH +zE214TJOmuPqp11QdXOMlTtZFA1csOQ/CgKtiR9zTszHw+tRudA4GF3bTfg7uobcDeDqujJDclA XXJ61WfB1JhS1klSCkSSA9A1fmAOfz94KsLiXivG4ppw0+7aomhvXVC0twxFe7koarcLUSTkAoJG WBeoOFAKTfoZVoyydqO9K1C2/64o0zR9tA+jAo5fg76CxMfkH7NJIOznEpf7y3C5n1OXKwSCMB8R nCQ74DQ+zg9/uaFTeop3GgcfBIYO1h5DB8swdJDB0CeYRVQgjAcEPZDlzUcL9GyBnpoRgjp/b3le PqL2Gi153X1Ye0R9WIaorHBw7tqvg6YPHUZTq7nuaGo1lyo4zQyezoInJxQclYce7Ba5sDgsqukG 313yLs/B1H6jIwT3VmvtMbVcFWxlPS0DpdmRi+TMGrqcV1Uc73gH1gx7HsFJlcLZMj47aOxI7LXX HntL1cRWuwB7wY/Ax+oq83A499BWVnqYf4glhFZn7ZGyVK2hFkvuuwJEtJqNjjyGdtYeE0u1llY2 M5aYD/aNY2HuQkKLNmMtNiaU76NWq9ESAkBrd+0xtVQipxaFx1ANi4WMLB9zrUcPhbgrwBQIk0IC aO2tPaaWCuY5WkrXDXNYyHhwKACiACsdiRV6lqj7o4KEdL4zG9n3z9Rs68Y5PjThatbPJln7zcx+ tbWyBdXez9xSWwtdvLaW6m7tHRXH2vurYLX3VmZqv4FaUFsTAbv2tqJq7Q2EvtpvID7VfgNBpPbW V3qe4+9z/WPILapO7v+VXGX+lPGU+dMqjjIb4pWQXEHX0h7fXt0e/65PiWSRMJ/W4xm6lnBRWetH 6TVBWXs1lL3zK/X64KmzGp5+84fWlnn8v07e4JHx1znlOaxPrOhbxcONnNJEPxFKWuZro4H/nqpz GZTyllgjmNobYov8HsjcKSJzZ51Q2tkQLgprBNPOhnjo/j2QebeIzLvrhNLdDfEwvkYw7W2Il+c1 gml/Q7z1rhFMBxviWXWNYPqwId4w1wemVnNDvBauEUx8i7bW6RZt8S3aWqdrqMXXUGudrqEWX0Ot dTrHW3yOt9bpHG/xOX7evzJBhH2jF47foRs2I6T9/ghZK69rxkLn/bGw9m7BjJmd98fMb+sFzMve ff9lr627KmNk7/0x8rvxTmUM7b8Rhn6HzqiMkIM1Qsh6+J4yXj6sEV7WwdWUsNJqrg9W1sWzlBHT WiPErLEjKSOrvUbIen+/UcZBZ41w8E5uorzwnTVa+Jp4hTJidtcIMWviBMqI2VsjxLy/z6d8PnsL R4vXfcXIc7goqVtMWV/HYTCfmnEm1o2cBLeYe7PO+UiCcfRGqW6Ls9XizMsz1f7OUvap/Lcd25nW YX9OgCWidUyCmwDwj0y4b4HVqulw59E4ouQl99av0fbTgzWrA/rrlKu8Pkdmx86Y33Ji4ejhI3zA OawpzbUvUizi1//566zuO0+RSWVoRo4pE6L83Pyp6Kv3yrib2RNvkXb3dnA6MDrHvStjIGYyjnvn 0bum26XUc7BYmW43nVRXuyoUKHlrqJJ+d3+n0Wy29ujfh4NOrd7aVR/s7ddae1qDvdqB/tdeeS7e 1of2br3Zgv9hLl76338D8O1mu1lvwjd72sfptLxXx8dn9RbdSHpOXlwafESLq21c9I7hvz2tUh7Q qkoW3njLIEHqgqHrnIwp2vbHU2I2leVWTPsbZ9TNZtEdR3BZ3LWatU4zm68Wk0nWnzB5k+3CjQt3 UFwZj+UFvKOC0P0RUFY+PaNoaPlj9Eal1FtUsSGgnGkLg2s3amnL7gS3GTEZMM0SpoQ1NpFMW5Qp Crk8mXSpGgm2GASqwHUhU8GeW9OVxpLnG+Z35S1QF1lrt/Wzb0ukpnTgmofNBtd+Cl+aFIAUZ1kB sxHC0TafqYSBiBFOckoHiZhLCQ+hhTd/enSZ9ZISQ4cT1w/mUTJVYs3oeiASWjWR+VPmmcREYR79 6oShC6ISGWYpWesjsgomVLw3xNJ1OlM1aceItJPO8KwFFq2N1yjWlFgJ5UKb2pxaL3R+ncMBg8U6 Aqp1N8acewZcFfBRXIehZrgTRAD0UOvm1GBc/tYwmKc0GJKFHCSpPMqkNw5dG5c0AjaldHEtaD6C 6wHQZxubcEWHwXeg4syB9p2m4NutSlim5HAzIzlGK04f90EMRmOh+TtOV5cYB6tSRLMkcmNCMyEp k2C8QCKYlscOVZ0ECHtyGZgpDtWfwIdPPTSe6f00rBrOd2DPRm7OMlLJ3sJDHA6i8fTbuEA3hPGA at9gsr9Ev2JOwY4+AqzPikeJ/8gf6Tsl+8/vmriiEyv819QpukGXaUW6+iPuh/dVeqqX6HjDs18p KZYXRHXbmayjfiJh+0M1eWWEVtFKHAx6afzL+g4cPRXFObYdP12f42/d/+oaN6im4Fl3G1Eu4WvQ 6+EkfyCx4bVVCJ1j30J76J5dDowvQejZcGHWO83Ju+oNcnXP1RsIepSgK1XtqNU/NLEuR+1Dc2lJ jr16q11v7qfUgJyPq1fnQGDho6vr/uAcfiIvCfkf/ksfKb2ggkbgBOEo5lgcG/h123rq2J3mNuDd +Y7Mq4T0v1lT4JouOohM0Xza+z71Ak7ybHTHwCqL3CoetYTmUKYu2IFLVadazcZuc+/D9umHnfMP 7U+HCoTLqePfBFNO8LrIURbeUwUB/aOWqOmBvJhTrAOIGU0Kamv8kt0+v2wYm90vneNOcyvemZR9 WUp0utwz5rJU8sKTlm1M3O0Zm8ATVDCNK/XGcu1yQhqbyFtYvvILwME5wymlN6gCJP8K/eTK8kcP 8Af0HcEpNglmoIKw4cXox1gg6W+Ahc0C1GPQ28zYJCbewqIJwwCT98a2yjM8fS4pLzM2jItfAFYA VbCeuMoGgdFuNvfwuoat1UrkJQftSaXNjfGeVKLKdgD/eOw02tLqYzqmg9XFMCsurWmilWB7b4Fz BblNuwHWVXZL7AJm9+WsLQuF5wp1WVWio1SJdWFmzfqNyh2At5bF3xi0P8TK18VnFamyeolezxlb XrK6tZLXtPe0o6aBJsbXrgynuPctZEwc/rx3874F4HhJDSVFZoXIrLSZgthQ7eHA/mGFYd0a3kca yPgnlhIVe0zOik3zefHRt/8ivk3eCTz+RiaUv/sDn/UOYeXGCVZrGHD+/dvrvrThSGD/G/obp/gO ikeZ1m/ARzudfZiknw9e27uPGjDtdyqc+hHuZd/89mSFY1ofnrGgBZHFbOMjnJ7Ov+Om8qoICEZq Lm4N6ZmZujr+LbFHFC6hOLcvoPPrIVnUI93I8qjx6ebmasCoFOdWyk+Qvn8G9ldCdQV1pr3T2Ocn jQ7926m1dxvNvcS/Wn1vv9HcPcDvqaJgs13b+dDYaer/lj6J7H8oehIBXajTKtGF4LjKeRFRx8EX 9PFAlSh0Ru7Unck3kZuEa8dn9KwzoE0U8QdHHgkFy5QkITmTJO84Np2+SmM4Vt8aIHLa+Y8l71Fo MDGDEG1HtMTAC8YLzxoS6JLtxZUgJjlSDUFcGVapxAhTBD76E3juMIR1wCbznAVfCIGL+lsLGGX7 X8Go0dlpdbbRF0NN2B1asx8BiHfzmvG3xk2jYMbMOSb3CUmH8X1yD79i1exYPgQRLwhxObCXvdjw lxQF74N5WP/mekFaoapxLTRZp4wqOI3nZC/HMmUkKyI/y/Leomw9vXxEwv6MtUwEV+EDAAi7FhW2 B1KLyjMjCV7NsGBVo7kHjEp/waX4sLAV+CTtSt2iQN4fzYfOR3z0wIuWzgM888xoijypdA9xfM19 F0XzyTa9785mIfXAT6P4Yy/wx/IgfqQ4CXcSawz4LVZSpIpLOa7zSAys3m58ASiMwZR3BhLPlKFG HzdGoXCfocotiblUzRiTX7Pgiy+ng4OdWu9qcPpxp9OmCK3owaKKl61dYLHa7sFurdU52AOmGT3M WVbuNPWP9SXANc6wwzJ4udlbM38hMLHlhqbuOVaE4b/n4ffvKezOJhP/Ofh1fXcynxjJY64SjsWM 64XlnOXA5BiWBEsxyRZljgsxjU9Qwj8ig3DtOx3vQ3clrB/266dVEUxDrwl6CW6YByR9UiNMkEZd 250tCnH5H3lI/I8U9vAN8QVcey2gMT5JaCqiVsy7lrybXRSCgPXe793Rcrx/G29/G+fhXn6h4z+a PjwD/RM8yyRExsOKuOc51wr1BQuC+ekCxMvatN1QGFGKMH/sjEPHidAVcvTtyYVbnG55H+7thzyC LGmfON2fTSZcgKFgr3q2ryeJUov5NwqvmrhuWhO2FxaJKpNcSWWSQvY0fAayu6PRfDL3yJyc1iEq oZxmXSuUFy+JXiAs2BhzxzMnwt/XBFH9ISxE/pUTjtjIl6GA+konw/0EBlyJEtDeeACB3EC4DAlX VQLI+daEBgWLKUT96+N+ZeS/GPvrhf4i/ONRZFKMnTkVlgDTduDmcIuPnm9XVu6dTB8ntKSpvRLa 6VwkYEiFnNM7EsNSVVeiGdcE7SXLwdM+QDuUa3mmg21moeVHU5cfHF986pPRedVjXxUjzUJkbNID lTEOrSjaqnwPEBxrdRGssEiEie0nJpYxxbq1qHhRG4wFMu+9+XfQw0xQfgsp9sWY1Nt5RJNfJETY 0LKfa1ggEKmGuoTPgNFcXhj0F0upLNkyKOtnd6i6TjSZZh591YsM2Yd0MP43zY829+8u4n2hbODS UKyMx3c5RuEcC3B6GagMzeb0GhXzYYxXxOW/ef0Kiu+lUOSZq7O26SwYwHJL4SCioJV85kzxbm0d 3zQ/Nc+bA/1ZShi3NZBWM2ynIaNJ41f8VZ/k+R2g5FG+VmEQ3L7IHNuP7Td51GdWxpCwetYRu9Rg W2iE1Z2NC62x6lH9YTxcxwd1AOuPx/TXw2Vl90xyuvetyKLACfqorlWAp9Aw2hUYQlZnH07tTbd3 OTjuD8hJkzw3r7jBKz+lC559i2f0T6eHH41PVjgJfK5Dzy42h24wgZOE3ibaTcpV8X7P7LDc5/pu Fq6kmjNnowk3CJyczfb+/kGNP8BQr6WenenTnR07M59W9+uUYNc2jqxwSLvj8vribOnzpGWNGkHo exwHNHbrQ9fftiNkDGCvqfefdmS69s+t/b2O5kNpfTOuXXvsGHFw0Zk1RP+/IFwYx1poT5cjfbvh 6AF/HlFseIGPZ5lf54gWhfyPz5DayyN9fgWf/3ZPp0Wunc08f003ijdgHNgkGQVuOnyGB/ThezA9 5Cn2FL5sIImS2zeg+9HBeHOf46mGjhc8ib+HYjMy0kCNgjExvl3E8Czg1KJNigIggDnRrlSOv9IH l4PBxCpMKaK8VnW6Y+vSfFqDcdDjDV9SkV/tGNinILAXNdYUREIsYGT+jQKwYKLQklM1jD4+dHLv JwzYsfBj3c+OToroAT5CTziZ6gCH4wgf30HqWJjYQgZcwf0+ioPI7wOUE3h7Y80JStU1BXkhsBkD eehEDETuxPWsEJao4WJizYC9QdQgiGGnuY8SWMcaPRSiE5eeg0cD2MEN9bdbo1tCbYUmWJmv4AKZ 3wGJgF+r5+SCaPkj1/MwRE9SZspGIGMWOs42BcMxkiiWywjnnlMfWoh6G2BD4Y9aNtBtMQJy48u0 lLEszWg4h5skRD2CY+iobIdIVAQCHz2hizg1LwrkRrDz/V817L1xZQ5xA9CE9SS96C1RIf19AKEJ cwDRMGJqmH5joG41mgIgwcglUpMf17gy5tYL4HwMr+AXPZoKA8azVDBY1L9YCF3NKZpnXa49nb7L naF0JZCupuuoLCFcf2hLr4jMqjk27kFPmkc2K0sPjiei2lyRR4OYYvu9EmFI7nwLteii27/6qKTh buySpZLhiPD+d9WMcMnPVY1wSbrvcTVv0IOdGv7YQdPaXuPDbgstfZ2dvQoaUZ4ZrPVhqX9nsU6E K4CPuiCQkdlNUAJ+ux0cY9hb9+TqEn8oauF3uoGoSgxcgslFrD/zt0was20RCPXpQzATgWfbLgMj Uyowreri0209h8Zx1zgBPcAY8GjlgXJlShSFK0WhS7tCzdCDj9ZNe2o29mpwI/4zPz/ZtWNXStj9 CCIr7u2Q3O7i7qcgwvqZAcbi0/wh+FttkEPOmF4hjbocgr7URrjoX+cl3M709+Hurbv+fWjROvKj AO+qnD3JyLW34NstYxN33ZZSbuOQ+hqbcTXzLY9uuDIHIUlm6FdLHjkzTP/FWcE2r2vGac04rBn9 662GYdDRhD689sT1UV0OVWTiHW9348R1PNu4UpAbl/egXDmvgQNYJR4dHD3m+jzv7cA4RoVrRt7c IG5phEjnXRETwji4vXFJZBFEjWhkTbEHpdLwHCuCofj9DelIKY5IGBNuwKheRnhSUU4SzbgAuhlb siPGFqfQ4GhHOGvFl5i+3rhLydTGqRPc9E9OkkCPApDLyAecAhdBhctX14iabyzZX58e9q+No8tT UNw9Z2O1Q6LiQVBpq7/Obs5J2EFSBpy1rp+fq0Ph4uT0+Mg4d2Y2x/0/L4WHGu4mceFXVYOEaPW+ oaE46XIdiLhfnUaDSmdReje5/sibY38+ebgiabyb0p78JBmmFZ530gLeTat5J3UDd8j/B2Pd4lKa YQQA headers: Content-Encoding: - gzip Content-Length: - '40644' Content-Type: - application/json Date: - Wed, 10 Nov 2021 22:00:31 GMT Strict-Transport-Security: - max-age=15724800; includeSubDomains Vary: - Accept-Encoding X-Azure-Ref: - 0AEGMYQAAAACKjF3aQWGhQ5NHhakATSSBQk9TMzIxMDAwMTEwMDIzADkyN2FiZmE2LTE5ZjYtNGFmMS1hMDlkLWM5NTlkOWExZTY0NA== X-Cache: - CONFIG_NOCACHE status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.26.0 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: !!binary | H4sIAABBjGEC/72ZUW8iNxCA/8qISlWrxiwkL3dUfQBCCFVIEEuVh1NUGa9ZfPWuN7aXlJ7y3zte dgmJolNkzL1EitmZ+XZmPB7PfmvZbcFbvdaQWipV2jpriQT/zQTTyqiVJQXDNSusdE9Nm2WYSZpz S/UWhiorSss1xIv+EPqzCT6fcMO0KKxQOUrFnGq2pkvJwRQUFy3PCqWphAxVJGgZdgJLkacwotqu wTDBc8bB/Wq4NbBWxvIElluwaw7fA0H7xlL294ZrswPotjvtDi4zla+UzsxCtXpfWmtri14UPT09 tVXB81SYNmqKTMFZpFJGC0FWnNpSc0O6EeqInDz+0Rx1eUqnXH01COWtQFFz0fES1/zxlbRBcXys 7ZzlxNpKp9Gm8hVZokvbF4fv+oGnBcaVmCrYXkI/rYTcxc9btrekRjBSpRmVBD2jqVXaBNDZJG0g pexRkoNM8FMSwGEHS+QIdRHq4zIxnsKPJddbT1mjtP246Ju90Xo4a0mR/2OwInxraS6xXBguV67o 7SojLQopmCtbedQETPMV/tJYLJoSxOoK1N6XzzYuOaLIESFJ1Ho+a8xopewPMOMq6KnMMCUlZ06Z ObSomPmuxeY4ucPChQcG1AJHgFQaXgjqQk/xBPkQiDu6ovur+AIOJIFJagw3ILJC8ozn+/NHGDBc b3Zb5RjvvVC+sO8L6DvYeHr89g46vBRdf5q9DjyU18o1AePR4oNcP45pdhcfQrG1kMmHmP6KxzGM aQE3NE+wVwgQvX3uRyktvKBu+3H/cjSF6/ECNp1ONxxRTg1NeOZFdUm36G/o53mJPdqtcv1YP+Ma Hw8HmFRGCK2MkJx6kV7PR/0eXIt0DXNulCzdQzByRpBW2C30GePGhMNGNfQYp05VbtdyC9f0iQoR 3J3ZTj1Zi2MgL6lAxNMGPnE2fOP+xpmnJW18ehxrvZtm2OhYBXPB1Kn2UqGPj/0pMXeRD0F5ok20 AzxuCzWpeUpHNonp6cp+vBjN4aa7CAdG8Y6uiezaADvlRMGtN4lndEdGC+h2yJS7iccpWgmhiCwl 86L7cz6EsVRL9F5c6hXFHvae2pB0XzUjqXnyonPeMtTCJ3RZoxHO4YZvuCTn4Rjlzg75RNg5kede rFM1mPRgiu2iWsFAqERU0yRsKCZuCmDrm0Ug4kwt/dJxuhjEPVdrhFXaDc8WmuPLg8hhUOocYvSt RuqAqHZpvFAXXGs6lCLDhAyHY51WVmv1wYrxWidyl4BNIvbD0Zm9csxD6nltgSHPTRmwhS0NYTuV PkBDN/7KBSsNuJvL+OaO7CaKYeCYKgjeW0gqldMbiPDziQg/+xFeKc2NhUm+wQRRegvuHOnnVG6N CBjolfDLufoIeV32dqOKqmZfUSakW/xlPJhc/RrwGr0UKz/iu1FM5jCUqkzgZyyIwrjpHhZrmtaD xUCEiuPuyYT/COLicjTDukwzifdSl6ABA36R8MKNRSvdfj3hzV0M90rLBEFxA2YBe0OpDPEdSaRa JNNRwE7VKcR20G/qMB70sD3V2H+L/3gCL/sloxhT3Chw3ukGLDnrdOk5XprMenBb/YaAfXxpVsrD nQEzrVJNs5CDJ1G8mhrqjWCcuA987zNv8qStqKi+YqHSar75e/3t7o+L6rvd23lxrRQOPzMe9QK1 7Xblv+eH+gMi/9fiOVkNt3tfHp7/B46xGA8sHQAA headers: Content-Encoding: - gzip Content-Length: - '1284' Content-Type: - application/json Date: - Wed, 10 Nov 2021 22:00:32 GMT Strict-Transport-Security: - max-age=15724800; includeSubDomains Vary: - Accept-Encoding X-Azure-Ref: - 0AEGMYQAAAADpUGj6DqsCQoxvabm0PiaWQk9TMzIxMDAwMTEwMDIzADkyN2FiZmE2LTE5ZjYtNGFmMS1hMDlkLWM5NTlkOWExZTY0NA== X-Cache: - CONFIG_NOCACHE status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_client/TestAPI.test_environment_variable.yaml000066400000000000000000000043171503646565400314030ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.25.1 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: !!binary | H4sIAAl/A2EC/82YUW/bNhDHv8pBe1xk2clL4Tc58ZwAcWZEHvYwFMOZOktsKZElaWde0e++oyzb aucVQ4pWfjLA4x1/vP+RPOtjJPNoHFVSWO302sdGRFeRl14RD88Pw7BQWJNHu4NbXZmNJwvZMr2F dPHA83Nywkrjpa7ZKyO0osSVInAGedBTZbRFBRWHyNEj7B1Wsi5gitaX4ISkWhAEqyPvoNTOUw6r HfiS4GsgvL7Q9Vrbyi11NP4jKr03bpwkaOTAeRTOkBhoWyTb0WA4GMYr9h9cJ0JbYt//OVvyJmLX 7OxVTj992JDdta7s+fLyMtCG6kK6AW8oCRESXQiOGK8J/caSi0cJh0vC7rq0r/DW6G6Gr3cvSL9z rO3bqyjs9s8tWbfXutkuB1ayfu84+R8jS4rHHal1KKSdCXWExigpQinUSROISSyt2XJIpDnIKlpV B8eSHPBQSHQSluYEJ9Gnq8MyuRbutIynv3xS+kp1SvhX3iYXKbQzv2HZJsJp6bbmkKv2qxs9gITj kvz+S3YDHU8QCp0jB7IyiiqqjzUvHTiy26a8vwG6S3liP9bxGWzW+ucz6HCq/dfTtDE6+vFx/15l IrRSJEKwz2Qrpcp/wJJJWaw6KbyfTcZwj7bStfybNZ4pveILcSJ1xQUArBFcD0fDPkB5pkWhZIWe OsTLMHzbDveRP0vYTeDzNOUMyqKEZ3JabcIsmIbpVgrpd5AKQa4XqR2fW1mTiq9jdd2Fzo4GeKRt +E374Kv0SnZfdT15GMMcDeh1qMBcNvc5p/AhvNP+i8vih2He5GTCa1mpoOOJ97dslsHN3XQBWWuE u+m8F6XZLXfo4zexCFp3IB/3FnjDfclhPhxl74MVuYGysRr5DmWaLafP8Dha9gGU444bwDhHqXZx 2a3Iu8YCd8HCt+QLStkjIN/RvmTEGv+NON/b4EmHrjWtiC8fvADWc+k8sPae0L3ixv6X4gtujb2G Zyl075TnRN9TXprk5/J5kPwyMop1vUF1FjRtTJfFeU76lvNStG9Jz532lrS/w16jw5yqDtlTmqX8 UsP9bAnb4XDUS+/jV91eYr6cZONwTKTXNnx+WFrihxtkDZONrbnD4F6IW6E+UKWO1UZ1v79MnZUw GsZzCh9cQovB3UX4T9iLvNJ8pu3DYgxPzUpcdmnBJ2OjwpcD7iKxIMuXkNWFxaoP2ALNlw3kjPvd bgbfHjFu+U+o0kX06R8WRiU5DRMAAA== headers: Content-Encoding: - gzip Content-Length: - '934' Content-Type: - application/json Date: - Fri, 30 Jul 2021 04:24:41 GMT Strict-Transport-Security: - max-age=15724800; includeSubDomains Vary: - Accept-Encoding X-Azure-Ref: - 0CH8DYQAAAAAvcyIhWf8DSafVV+FJzvZAQk9TMzFFREdFMDQyMQA5MjdhYmZhNi0xOWY2LTRhZjEtYTA5ZC1jOTU5ZDlhMWU2NDQ= X-Cache: - CONFIG_NOCACHE status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_client/TestAPI.test_from_file.yaml000066400000000000000000000650531503646565400271400ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3361' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:14 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125014Z-167d46d96d8x72gqhC1DENywxw00000006d0000000001bbw status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_client/TestAPI.test_instance.yaml000066400000000000000000000650531503646565400270020ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3361' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:11 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125011Z-167d46d96d844wzkhC1DEN8g9s0000000s2g000000004nsr status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_client/TestAPI.test_links.yaml000066400000000000000000056543311503646565400263260ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3361' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:12 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125012Z-167d46d96d8mdxvvhC1DENbv1s00000003u0000000003pg5 status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3361' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:12 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125012Z-167d46d96d88hw2shC1DENzkdg0000000m2g000000001kpa status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections response: body: string: "{\"collections\":[{\"id\":\"daymet-annual-pr\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"license\",\"href\":\"https://science.nasa.gov/earth-science/earth-science-data/data-information-policy\",\"title\":\"EOSDIS Data Use Policy\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.3334/ORNLDAAC/1852\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/daymet-annual-pr\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Daymet Annual Puerto Rico\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/daymet-annual-pr.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Daymet annual Puerto Rico map thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://daymet-zarr/annual/pr.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"Annual Puerto Rico Daymet Azure Blob File System Zarr root\",\"description\":\"Azure Blob File System of the annual Puerto Rico Daymet Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"daymeteuwest\"}},\"zarr-https\":{\"href\":\"https://daymeteuwest.blob.core.windows.net/daymet-zarr/annual/pr.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"Annual Puerto Rico Daymet HTTPS Zarr root\",\"description\":\"HTTPS URI of the annual Puerto Rico Daymet Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-67.9927,16.8444,-64.1196,19.9382]]},\"temporal\":{\"interval\":[[\"1980-07-01T12:00:00Z\",\"2020-07-01T12:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.3334/ORNLDAAC/1852\",\"keywords\":[\"Daymet\",\"Puerto Rico\",\"Temperature\",\"Precipitation\",\"Vapor Pressure\",\"Climate\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://doi.org/10.3334/ORNLDAAC/1852\",\"name\":\"ORNL DAAC\",\"roles\":[\"producer\"]}],\"description\":\"Annual climate summaries derived from [Daymet](https://daymet.ornl.gov) Version 4 daily data at a 1 km x 1 km spatial resolution for five variables: minimum and maximum temperature, precipitation, vapor pressure, and snow water equivalent. Annual averages are provided for minimum and maximum temperature, vapor pressure, and snow water equivalent, and annual totals are provided for the precipitation variable.\\n\\n[Daymet](https://daymet.ornl.gov/) provides measurements of near-surface meteorological conditions; the main purpose is to provide data estimates where no instrumentation exists. The dataset covers the period from January 1, 1980 to the present. Each year is processed individually at the close of a calendar year. Data are in a Lambert conformal conic projection for North America and are distributed in Zarr and NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\n\\nUse the DOI at [https://doi.org/10.3334/ORNLDAAC/1852](https://doi.org/10.3334/ORNLDAAC/1852) to cite your usage of the data.\\n\\nThis dataset provides coverage for Hawaii; North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#annual). \\n\\n\",\"sci:citation\":\"Thornton, M.M., R. Shrestha, Y. Wei, P.E. Thornton, S. Kao, and B.E. Wilson. 2020. Daymet: Annual Climate Summaries on a 1-km Grid for North America, Version 4. ORNL DAAC, Oak Ridge, Tennessee, USA. https://doi.org/10.3334/ORNLDAAC/1852\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"daymet\",\"cube:variables\":{\"vp\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"long_name\":\"annual average of daily average vapor pressure\",\"cell_methods\":\"area: mean time: mean within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,231,364],\"chunks\":[1,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average of daily average vapor pressure\"},\"lat\":{\"type\":\"auxiliary\",\"unit\":\"degrees_north\",\"attrs\":{\"units\":\"degrees_north\",\"long_name\":\"latitude coordinate\",\"standard_name\":\"latitude\"},\"shape\":[231,364],\"chunks\":[231,364],\"dimensions\":[\"y\",\"x\"],\"description\":\"latitude coordinate\"},\"lon\":{\"type\":\"auxiliary\",\"unit\":\"degrees_east\",\"attrs\":{\"units\":\"degrees_east\",\"long_name\":\"longitude coordinate\",\"standard_name\":\"longitude\"},\"shape\":[231,364],\"chunks\":[231,364],\"dimensions\":[\"y\",\"x\"],\"description\":\"longitude coordinate\"},\"swe\":{\"type\":\"data\",\"unit\":\"kg/m2\",\"attrs\":{\"units\":\"kg/m2\",\"long_name\":\"annual average snow water equivalent\",\"cell_methods\":\"area: mean time: sum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,231,364],\"chunks\":[1,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average snow water equivalent\"},\"prcp\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"annual total precipitation\",\"cell_methods\":\"area: mean time: sum within days time: sum over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,231,364],\"chunks\":[1,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual total precipitation\"},\"tmax\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"annual average of daily maximum temperature\",\"cell_methods\":\"area: mean time: maximum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,231,364],\"chunks\":[1,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average of daily maximum temperature\"},\"tmin\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"annual average of daily minimum temperature\",\"cell_methods\":\"area: mean time: minimum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,231,364],\"chunks\":[1,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average of daily minimum temperature\"},\"time_bnds\":{\"type\":\"data\",\"attrs\":{\"time\":\"days since 1950-01-01 00:00:00\"},\"shape\":[41,2],\"chunks\":[1,2],\"dimensions\":[\"time\",\"nv\"]},\"lambert_conformal_conic\":{\"type\":\"data\",\"attrs\":{\"false_easting\":0.0,\"false_northing\":0.0,\"semi_major_axis\":6378137.0,\"grid_mapping_name\":\"lambert_conformal_conic\",\"standard_parallel\":[25.0,60.0],\"inverse_flattening\":298.257223563,\"latitude_of_projection_origin\":42.5,\"longitude_of_central_meridian\":-100.0},\"shape\":[],\"dimensions\":[]}},\"msft:container\":\"daymet-zarr\",\"cube:dimensions\":{\"x\":{\"axis\":\"x\",\"step\":1000.0,\"type\":\"spatial\",\"extent\":[3445750.0,3808750.0],\"description\":\"x coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"y\":{\"axis\":\"y\",\"step\":-1000.0,\"type\":\"spatial\",\"extent\":[-1995000.0,-1765000.0],\"description\":\"y coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"nv\":{\"type\":\"count\",\"values\":[0,1],\"description\":\"Size of the 'time_bnds' variable.\"},\"time\":{\"type\":\"temporal\",\"extent\":[\"1980-07-01T12:00:00Z\",\"2020-07-01T12:00:00Z\"],\"description\":\"24-hour day based on local time\"}},\"msft:group_keys\":[\"annual\",\"puerto rico\"],\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"daymeteuwest\",\"msft:short_description\":\"Annual climate summaries on a 1-km grid for Puerto Rico\",\"msft:region\":\"westeurope\"},{\"id\":\"daymet-daily-hi\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"license\",\"href\":\"https://science.nasa.gov/earth-science/earth-science-data/data-information-policy\",\"title\":\"EOSDIS Data Use Policy\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.3334/ORNLDAAC/1840\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/daymet-daily-hi\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Daymet Daily Hawaii\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/daymet-daily-hi.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Daymet daily Hawaii map thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://daymet-zarr/daily/hi.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"Daily Hawaii Daymet Azure Blob File System Zarr root\",\"description\":\"Azure Blob File System of the daily Hawaii Daymet Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"daymeteuwest\"}},\"zarr-https\":{\"href\":\"https://daymeteuwest.blob.core.windows.net/daymet-zarr/daily/hi.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"Daily Hawaii Daymet HTTPS Zarr root\",\"description\":\"HTTPS URI of the daily Hawaii Daymet Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-160.3056,17.9539,-154.772,23.5186]]},\"temporal\":{\"interval\":[[\"1980-01-01T12:00:00Z\",\"2020-12-30T12:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.3334/ORNLDAAC/1840\",\"keywords\":[\"Daymet\",\"Hawaii\",\"Temperature\",\"Precipitation\",\"Vapor Pressure\",\"Weather\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://doi.org/10.3334/ORNLDAAC/1840\",\"name\":\"ORNL DAAC\",\"roles\":[\"producer\"]}],\"description\":\"Gridded estimates of daily weather parameters. [Daymet](https://daymet.ornl.gov) Version 4 variables include the following parameters: minimum temperature, maximum temperature, precipitation, shortwave radiation, vapor pressure, snow water equivalent, and day length.\\n\\n[Daymet](https://daymet.ornl.gov/) provides measurements of near-surface meteorological conditions; the main purpose is to provide data estimates where no instrumentation exists. The dataset covers the period from January 1, 1980 to the present. Each year is processed individually at the close of a calendar year. Data are in a Lambert conformal conic projection for North America and are distributed in Zarr and NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\n\\nUse the DOI at [https://doi.org/10.3334/ORNLDAAC/1840](https://doi.org/10.3334/ORNLDAAC/1840) to cite your usage of the data.\\n\\nThis dataset provides coverage for Hawaii; North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#daily).\\n\\n\",\"sci:citation\":\"Thornton, M.M., R. Shrestha, P.E. Thornton, S. Kao, Y. Wei, and B.E. Wilson. 2021. Daymet Version 4 Monthly Latency: Daily Surface Weather Data. ORNL DAAC, Oak Ridge, Tennessee, USA. https://doi.org/10.3334/ORNLDAAC/1904\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"daymet\",\"cube:variables\":{\"vp\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"long_name\":\"daily average vapor pressure\",\"cell_methods\":\"area: mean time: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,584,284],\"chunks\":[365,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily average vapor pressure\"},\"lat\":{\"type\":\"auxiliary\",\"unit\":\"degrees_north\",\"attrs\":{\"units\":\"degrees_north\",\"long_name\":\"latitude coordinate\",\"standard_name\":\"latitude\"},\"shape\":[584,284],\"chunks\":[584,284],\"dimensions\":[\"y\",\"x\"],\"description\":\"latitude coordinate\"},\"lon\":{\"type\":\"auxiliary\",\"unit\":\"degrees_east\",\"attrs\":{\"units\":\"degrees_east\",\"long_name\":\"longitude coordinate\",\"standard_name\":\"longitude\"},\"shape\":[584,284],\"chunks\":[584,284],\"dimensions\":[\"y\",\"x\"],\"description\":\"longitude coordinate\"},\"swe\":{\"type\":\"data\",\"unit\":\"kg/m2\",\"attrs\":{\"units\":\"kg/m2\",\"long_name\":\"snow water equivalent\",\"cell_methods\":\"area: mean time: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,584,284],\"chunks\":[365,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"snow water equivalent\"},\"dayl\":{\"type\":\"data\",\"unit\":\"s\",\"attrs\":{\"units\":\"s\",\"long_name\":\"daylength\",\"cell_methods\":\"area: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,584,284],\"chunks\":[365,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daylength\"},\"prcp\":{\"type\":\"data\",\"unit\":\"mm/day\",\"attrs\":{\"units\":\"mm/day\",\"long_name\":\"daily total precipitation\",\"cell_methods\":\"area: mean time: sum\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,584,284],\"chunks\":[365,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily total precipitation\"},\"srad\":{\"type\":\"data\",\"unit\":\"W/m2\",\"attrs\":{\"units\":\"W/m2\",\"long_name\":\"daylight average incident shortwave radiation\",\"cell_methods\":\"area: mean time: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,584,284],\"chunks\":[365,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daylight average incident shortwave radiation\"},\"tmax\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"daily maximum temperature\",\"cell_methods\":\"area: mean time: maximum\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,584,284],\"chunks\":[365,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily maximum temperature\"},\"tmin\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"daily minimum temperature\",\"cell_methods\":\"area: mean time: minimum\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,584,284],\"chunks\":[365,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily minimum temperature\"},\"yearday\":{\"type\":\"data\",\"attrs\":{\"long_name\":\"day of year (DOY) starting with day 1 on January 1st\"},\"shape\":[14965],\"chunks\":[365],\"dimensions\":[\"time\"],\"description\":\"day of year (DOY) starting with day 1 on January 1st\"},\"time_bnds\":{\"type\":\"data\",\"attrs\":{},\"shape\":[14965,2],\"chunks\":[365,2],\"dimensions\":[\"time\",\"nv\"]},\"lambert_conformal_conic\":{\"type\":\"data\",\"attrs\":{\"false_easting\":0.0,\"false_northing\":0.0,\"semi_major_axis\":6378137.0,\"grid_mapping_name\":\"lambert_conformal_conic\",\"standard_parallel\":[25.0,60.0],\"inverse_flattening\":298.257223563,\"latitude_of_projection_origin\":42.5,\"longitude_of_central_meridian\":-100.0},\"shape\":[],\"dimensions\":[]}},\"msft:container\":\"daymet-zarr\",\"cube:dimensions\":{\"x\":{\"axis\":\"x\",\"step\":1000.0,\"type\":\"spatial\",\"extent\":[-5802250.0,-5519250.0],\"description\":\"x coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"y\":{\"axis\":\"y\",\"step\":-1000.0,\"type\":\"spatial\",\"extent\":[-622000.0,-39000.0],\"description\":\"y coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"nv\":{\"type\":\"count\",\"values\":[0,1],\"description\":\"Size of the 'time_bnds' variable.\"},\"time\":{\"type\":\"temporal\",\"extent\":[\"1980-01-01T12:00:00Z\",\"2020-12-30T12:00:00Z\"],\"description\":\"24-hour day based on local time\"}},\"msft:group_keys\":[\"daily\",\"hawaii\"],\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"daymeteuwest\",\"msft:short_description\":\"Daily surface weather data on a 1-km grid for Hawaii\",\"msft:region\":\"westeurope\"},{\"id\":\"3dep-seamless\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/faqs/what-are-terms-uselicensing-map-services-and-data-national-map?qt-news_science_products=0#qt-news_science_products\",\"title\":\"Public Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-seamless\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS 3DEP Seamless DEMs\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/threedep.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"USGS 3DEP\"},\"geoparquet-items\":{\"href\":\"abfs://items/3dep-seamless.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-174.001666666983,-15.00166666667,164.0016666666,84.00166666666]]},\"temporal\":{\"interval\":[[\"1925-01-01T00:00:00Z\",\"2020-05-06T00:00:00Z\"]]}},\"license\":\"PDDL-1.0\",\"keywords\":[\"USGS\",\"3DEP\",\"NED\",\"Elevation\",\"DEM\"],\"providers\":[{\"url\":\"https://www.usgs.gov/core-science-systems/ngp/3dep\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[10,30]},\"description\":\"U.S.-wide digital elevation data at horizontal resolutions ranging from one to sixty meters.\\n\\nThe [USGS 3D Elevation Program (3DEP) Datasets](https://www.usgs.gov/core-science-systems/ngp/3dep) from the [National Map](https://www.usgs.gov/core-science-systems/national-geospatial-program/national-map) are the primary elevation data product produced and distributed by the USGS. The 3DEP program provides raster elevation data for the conterminous United States, Alaska, Hawaii, and the island territories, at a variety of spatial resolutions. The seamless DEM layers produced by the 3DEP program are updated frequently to integrate newly available, improved elevation source data. \\n\\nDEM layers are available nationally at grid spacings of 1 arc-second (approximately 30 meters) for the conterminous United States, and at approximately 1, 3, and 9 meters for parts of the United States. Most seamless DEM data for Alaska is available at a resolution of approximately 60 meters, where only lower resolution source data exist.\\n\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]},\"gpkg\":{\"type\":\"application/geopackage+sqlite3\",\"roles\":[\"metadata\"]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"]}},\"stac_version\":\"1.0.0\",\"msft:container\":\"3dep\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"U.S.-wide digital elevation data at horizontal resolutions ranging from one to sixty meters\",\"msft:region\":\"westeurope\"},{\"id\":\"3dep-lidar-dsm\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/3d-elevation-program/about-3dep-products-services\",\"title\":\"About 3DEP Products & Services\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-dsm\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS 3DEP Lidar Digital Surface Model\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/dsm-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"},\"geoparquet-items\":{\"href\":\"abfs://items/3dep-lidar-dsm.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-166.8546920006028,17.655357747708283,-64.56116757979399,71.39330810146807],[144.60180842809473,13.21774453924126,146.08202179248926,18.18369664008955]]},\"temporal\":{\"interval\":[[\"2012-01-01T00:00:00Z\",\"2022-01-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USGS\",\"3DEP\",\"COG\",\"DSM\"],\"providers\":[{\"name\":\"Landrush\",\"roles\":[\"processor\",\"producer\"]},{\"url\":\"https://www.usgs.gov/core-science-systems/ngp/3dep/\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[2.0]},\"description\":\"This collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc). It creates a Digital Surface Model (DSM) using [`pdal.filters.range`](https://pdal.io/stages/filters.range.html#filters-range) to output a collection of Cloud Optimized GeoTIFFs, removing all points that have been classified as noise.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"COG data\",\"raster:bands\":[{\"type\":\"Z\",\"unit\":\"metre\",\"sampling\":\"point\",\"data_type\":\"float32\",\"description\":\"Z PDAL Dimension\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"3dep-lidar\",\"msft:container\":\"usgs-3dep-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json#\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"usgslidareuwest\",\"msft:short_description\":\"3DEP Lidar collection for the Digital Surface Model (DSM) Cloud Optimized Geotiffs (COGs).\",\"msft:region\":\"westeurope\"},{\"id\":\"fia\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia\"},{\"rel\":\"license\",\"href\":\"https://www.fs.usda.gov/rds/archive/datauseinfo/open\",\"type\":\"text/html\",\"title\":\"USDA Open Access Data Use Agreement\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/fia\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Forest Inventory and Analysis\",\"assets\":{\"guide\":{\"href\":\"https://www.fia.fs.fed.us/library/database-documentation/current/ver80/FIADB%20User%20Guide%20P2_8-0.pdf\",\"type\":\"application/pdf\",\"roles\":[\"metadata\"],\"title\":\"Database Description and User Guide\"},\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/fia.png\",\"type\":\"image/gif\",\"title\":\"Forest Inventory and Analysis\"},\"geoparquet-items\":{\"href\":\"abfs://items/fia.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[138.06,0.92,163.05,9.78],[165.28,4.57,172.03,14.61],[131.13,2.95,134.73,8.1],[-124.763068,24.523096,-66.949895,49.384358],[-179.148909,51.214183,-129.974167,71.365162],[172.461667,51.357688,179.77847,53.01075],[-178.334698,18.910361,-154.806773,28.402123],[144.618068,13.234189,144.956712,13.654383],[-67.945404,17.88328,-65.220703,18.515683],[144.886331,14.110472,146.064818,20.553802],[-65.085452,17.673976,-64.564907,18.412655],[-171.089874,-14.548699,-168.1433,-11.046934],[-178.334698,18.910361,-154.806773,28.402123]]},\"temporal\":{\"interval\":[[\"2020-06-01T00:00:00Z\",null]]}},\"license\":\"CC0-1.0\",\"keywords\":[\"Forest\",\"Species\",\"Carbon\",\"Biomass\",\"USDA\",\"Forest Service\"],\"providers\":[{\"url\":\"https://www.fia.fs.fed.us/\",\"name\":\"Forest Inventory & Analysis\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://carbonplan.org/\",\"name\":\"CarbonPlan\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"description\":\"Status and trends on U.S. forest location, health, growth, mortality, and production, from the U.S. Forest Service's [Forest Inventory and Analysis](https://www.fia.fs.fed.us/) (FIA) program.\\n\\nThe Forest Inventory and Analysis (FIA) dataset is a nationwide survey of the forest assets of the United States. The FIA research program has been in existence since 1928. FIA's primary objective is to determine the extent, condition, volume, growth, and use of trees on the nation's forest land.\\n\\nDomain: continental U.S., 1928-2018\\n\\nResolution: plot-level (irregular polygon)\\n\\nThis dataset was curated and brought to Azure by [CarbonPlan](https://carbonplan.org/).\\n\",\"item_assets\":{\"data\":{\"type\":\"application/x-parquet\",\"roles\":[\"data\"],\"title\":\"Dataset root\",\"table:storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"stac_version\":\"1.0.0\",\"table:tables\":[{\"name\":\"Survey Table\",\"description\":\"Survey table. This table contains one record for each year an inventory is conducted in a State for annual inventory or one record for each periodic inventory.

* SURVEY.CN = PLOT.SRV_CN links the unique inventory record for a State and year to the plot records.\",\"msft:item_name\":\"survey\"},{\"name\":\"County Table\",\"description\":\"County table. This table contains survey unit codes and is also a reference table for the county codes and names.

* COUNTY.CN = PLOT.CTY_CN links the unique county record to the plot record.\",\"msft:item_name\":\"county\"},{\"name\":\"Plot Table\",\"description\":\"Plot table. This table provides information relevant to the entire 1-acre field plot. This table links to most other tables, and the linkage is made using PLOT.CN = TABLE_NAME.PLT_CN (TABLE_NAME is the name of any table containing the column name PLT_CN). Below are some examples of linking PLOT to other tables.

* PLOT.CN = COND.PLT_CN links the unique plot record to the condition class record(s).

* PLOT.CN = SUBPLOT.PLT_CN links the unique plot record to the subplot records.

* PLOT.CN = TREE.PLT_CN links the unique plot record to the tree records.

* PLOT.CN = SEEDLING.PLT_CN links the unique plot record to the seedling records.\",\"msft:item_name\":\"plot\"},{\"name\":\"Condition Table\",\"description\":\"Condition table. This table provides information on the discrete combination of landscape attributes that define the condition (a condition will have the same land class, reserved status, owner group, forest type, stand-size class, regeneration status, and stand density).

* PLOT.CN = COND.PLT_CN links the condition class record(s) to the plot table.

* COND.PLT_CN = SITETREE.PLT_CN and COND.CONDID = SITETREE.CONDID links the condition class record to the site tree data.

* COND.PLT_CN = TREE.PLT_CN and COND.CONDID = TREE.CONDID links the condition class record to the tree data.\",\"msft:item_name\":\"cond\"},{\"name\":\"Subplot Table\",\"description\":\"Subplot table. This table describes the features of a single subplot. There are multiple subplots per 1-acre field plot and there can be multiple conditions sampled on each subplot.

* PLOT.CN = SUBPLOT.PLT_CN links the unique plot record to the subplot records.

* SUBPLOT.PLT_CN = COND.PLT_CN and SUBPLOT.MACRCOND = COND.CONDID links the macroplot conditions to the condition class record.

* SUBPLOT.PLT_CN = COND.PLT_CN and SUBPLOT.SUBPCOND = COND.CONDID links the subplot conditions to the condition class record.

* SUBPLOT.PLT_CN = COND.PLT_CN and SUBPLOT.MICRCOND = COND.CONDID links the microplot conditions to the condition class record.\",\"msft:item_name\":\"subplot\"},{\"name\":\"Subplot Condition Table\",\"description\":\"Subplot condition table. This table contains information about the proportion of a subplot in a condition.

* PLOT.CN = SUBP_COND.PLT_CN links the subplot condition class record to the plot table.

* SUBP_COND.PLT_CN = COND.PLT_CN and SUBP_COND.CONDID = COND.CONDID links the condition class records found on the four subplots to the subplot description.\",\"msft:item_name\":\"subp_cond\"},{\"name\":\"boundary\",\"description\":\"Boundary table. This table provides a description of the demarcation line between two conditions that occur on a single subplot\",\"msft:item_name\":\"boundary\"},{\"name\":\"Subplot Condition Change Matrix\",\"description\":\"Subplot condition change matrix table. This table contains information about the mix of current and previous conditions that occupy the same area on the subplot.

* PLOT.CN = SUBP_COND_CHNG_MTRX.PLT_CN links the subplot condition change matrix records to the unique plot record.

* PLOT.PREV_PLT_CN = SUBP_COND_CHNG_MTRX.PREV_PLT_CN links the subplot condition change matrix records to the unique previous plot record.\",\"msft:item_name\":\"subp_cond_chng_mtrx\"},{\"name\":\"Tree Table\",\"description\":\"Tree table. This table provides information for each tree 1 inch in diameter and larger found on a microplot, subplot, or core optional macroplot.

* PLOT.CN = TREE.PLT_CN links the tree records to the unique plot record.

* COND.PLT_CN = TREE.PLT_CN and COND.CONDID = TREE.CONDID links the tree records to the unique condition record.\",\"msft:item_name\":\"tree\"},{\"name\":\"Tree Woodland Stems Table\",\"description\":\"Tree woodland stems table. This table stores data for the individual stems of a woodland species tree. Individual woodland stem diameter measurements contribute to the calculation of the diameter stored on the parent TREE table record.

* TREE.CN = TREE_WOODLAND_STEMS.TRE_CN links a woodland stems record to the corresponding unique tree record.\",\"msft:item_name\":\"tree_woodland_stems\"},{\"name\":\"Tree Regional Biomass Table\",\"description\":\"Tree regional biomass table. This table contains biomass estimates computed using equations and methodology that varies by FIA work unit. This table retains valuable information for generating biomass estimates that match earlier published reports.

* TREE.CN = TREE_REGIONAL_BIOMASS.TRE_CN links a tree regional biomass record to the corresponding unique tree.\",\"msft:item_name\":\"tree_regional_biomass\"},{\"name\":\"Tree Net Growth, Removal, and Mortality Component Table\",\"description\":\"Tree net growth, removal, and mortality component table. This table stores information used to compute net growth, removals, and mortality estimates for remeasurement trees. Each remeasurement tree has a single record in this table.

* TREE_GRM_COMPONENT.TRE_CN = TREE.TRE_CN links the records in this table to the corresponding tree record in the TREE table.\",\"msft:item_name\":\"tree_grm_component\"},{\"name\":\"Tree Net Growth, Removal, and Mortality Midpoint Table\",\"description\":\"Tree net growth, removal, and mortality midpoint table. This table contains information about a remeasured tree at the midpoint of the remeasurement period. It does not contain a record for every tree. Midpoint estimates are computed for trees that experience mortality, removal, or land use diversion or reversion. The information in this table is used to compute net growth, removal, and mortality estimates on remeasurement trees.

* TREE_GRM_MIDPT.TRE_CN = TREE.TRE_CN links the records in this table to the corresponding tree record in the TREE table.\",\"msft:item_name\":\"tree_grm_midpt\"},{\"name\":\"Tree Net Growth, Removal, and Mortality Begin Table\",\"description\":\"Tree net growth, removal, and mortality begin table. This table contains information for remeasured trees where values have been calculated for the beginning of the remeasurement period. Only those trees where information was recalculated for time 1 (T1) are included. The information in this table is used to produce net growth, removal and mortality estimates on remeasured trees.

* TREE_GRM_BEGIN.TRE_CN = TREE.TRE_CN links the records in this table to the corresponding tree record in the TREE table.\",\"msft:item_name\":\"tree_grm_begin\"},{\"name\":\"Tree Net Growth, Removal, and Mortality Estimation Table\",\"description\":\"Tree net growth, removal, and mortality estimation table. This table contains information used to produce estimates of growth, removals and mortality.

* PLOT.CN = TREE_GRM_ESTN.PLT_CN links the tree GRM estimation records to the unique plot record.

* TREE.CN = TREE_GRM_ESTN.TRE_CN links the tree GRM estimation records to the unique tree record.\",\"msft:item_name\":\"tree_grm_estn\"},{\"name\":\"Seedling Table\",\"description\":\"Seedling table. This table provides a count of the number of live trees of a species found on a microplot that are less than 1 inch in diameter but at least 6 inches in length for conifer species or at least 12 inches in length for hardwood species.

* PLOT.CN = SEEDLING.PLT_CN links the seedling records to the unique plot record.

* COND.PLT_CN = SEEDLING.PLT_CN and COND.CONDID = SEEDLING.CONDID links the condition record to the seedling record.\",\"msft:item_name\":\"seedling\"},{\"name\":\"Site Tree Table\",\"description\":\"Site tree table. This table provides information on the site tree(s) collected in order to calculate site index and/or site productivity information for a condition.

* PLOT.CN = SITETREE.PLT_CN links the site tree records to the unique plot record.

* SITETREE.PLT_CN = COND.PLT_CN and SITETREE.CONDID = COND.CONDID links the site tree record(s) to the unique condition class record.\",\"msft:item_name\":\"sitetree\"},{\"name\":\"Invasive Subplot Species Table\",\"description\":\"Invasive subplot species table. This table provides percent cover data of invasive species identified on the subplot.

* PLOT.CN = INVASIVE_SUBPLOT_SPP.PLT_CN links the invasive subplot species record(s) to the unique plot record.

* SUBP_COND.PLT_CN = INVASIVE_SUBPLOT_SPP.PLT_CN and SUBP_COND.CONDID = INVASIVE_SUBPLOT_SPP.CONDID and SUBP_COND.SUBP = INVASIVE_SUBPLOT_SPP.SUBP links the invasive subplot species record(s) to the unique subplot condition record.

* INVASIVE_SUBPLOT_SPP.VEG_SPCD = REF_PLANT_DICTIONARY.SYMBOL links the invasive vegetation subplot NRCS species code to the plant dictionary reference species code.\",\"msft:item_name\":\"invasive_subplot_spp\"},{\"name\":\"Phase 2 Vegetation Subplot Species Table\",\"description\":\"Phase 2 Vegetation subplot species table. This table provides percent cover data of vegetation species identified on the subplot.

* PLOT.CN = P2VEG_SUBPLOT_SPP.PLT_CN links the vegetation subplot species record(s) to the unique plot record.

* SUBP_COND.PLT_CN = P2VEG_SUBPLOT_SPP.PLT_CN and SUBP_COND.CONDID = P2VEG_SUBPLOT_SPP.CONDID and SUBP_COND.SUBP = P2VEG_SUBPLOT_SPP.SUBP links the vegetation subplot species record(s) to the unique subplot condition record.

* P2VEG_SUBPLOT_SPP.VEG_SPCD = REF_PLANT_DICTIONARY.SYMBOL links the P2 vegetation subplot NRCS species code to the plant dictionary reference species code.\",\"msft:item_name\":\"p2veg_subplot_spp\"},{\"name\":\"Phase 2 Vegetation Subplot Structure Table\",\"description\":\"Phase 2 Vegetation subplot structure table. This table provides percent cover by layer by growth habit.

* PLOT.CN = P2VEG_SUBP_STRUCTURE. PLT_CN links the subplot structure record(s) to the unique plot record.

* SUBP_COND.PLT_CN = P2VEG_SUBP_STRUCTURE.PLT_CN and SUBP_COND.CONDID = P2VEG_SUBP_STRUCTURE.CONDID and SUBP_COND.SUBP = P2VEG_SUBP_STRUCTURE.SUBP links the vegetation subplot structure record(s) to the unique subplot condition record.\",\"msft:item_name\":\"p2veg_subp_structure\"},{\"name\":\"Down Woody Material Visit Table\",\"description\":\"Down woody material visit table. This table provides general information on down woody material indicator visit, such as the date of the DWM survey.

* PLOT.CN = DWM_VISIT.PLT_CN links the down woody material indicator visit record to the unique plot record.\",\"msft:item_name\":\"dwm_visit\"},{\"name\":\"Down Woody Material Coarse Woody Debris Table\",\"description\":\"Down woody material coarse woody debris table. This table provides information for each piece of coarse woody debris measured along the transects.

* PLOT.CN = DWM_COARSE_WOODY_DEBRIS.PLT_CN links the down woody material coarse woody debris records to the unique plot record.

* COND.PLT_CN = DWM_COARSE_WOODY_DEBRIS.PLT_CN and COND.CONDID= DWM_COARSE_WOODY_DEBRIS.CONDID links the coarse woody debris records to the unique condition record.\",\"msft:item_name\":\"dwm_coarse_woody_debris\"},{\"name\":\"Down Woody Material Duff, Litter, Fuel Table\",\"description\":\"Down woody material duff, litter, fuel table. This table provides information on the duff, litter, fuelbed depths measured at a point on the transects.

* PLOT.CN = DWM_DUFF_LITTER_FUEL.PLT_CN links the duff, litter, fuelbed records to the unique plot record.

* COND.PLT_CN = DWM_DUFF_LITTER_FUEL.PLT_CN and COND.CONDID= DWM_DUFF_LITTER_FUEL.CONDID links the duff, litter, fuel records to the unique condition record.\",\"msft:item_name\":\"dwm_duff_litter_fuel\"},{\"name\":\"Down Woody Material Fine Woody Debris Table\",\"description\":\"Down woody material fine woody debris table. This table provides information on the fine woody debris measured along a segment of the transects.

* PLOT.CN = DWM_FINE_WOODY_DEBRIS.PLT_CN links the fine woody debris records to the unique plot record.

* COND.PLT_CN = DWM_FINE_WOODY_DEBRIS.PLT_CN and COND.CONDID= DWM_FINE_WOODY_DEBRIS.CONDID links the fine woody debris records to the unique condition record.\",\"msft:item_name\":\"dwm_fine_woody_debris\"},{\"name\":\"Down Woody Material Microplot Fuel Table\",\"description\":\"Down woody material microplot fuel table. This table provides information on the fuel loads (shrubs and herbs) measured on the microplot.

* PLOT.CN = DWM_MICROPLOT_FUEL.PLT_CN links the microplot fuel records to the unique plot record.\",\"msft:item_name\":\"dwm_microplot_fuel\"},{\"name\":\"Down Woody Material Residual Pile Table\",\"description\":\"Down woody material residual pile table. This table provides information on the wood piles measured on the subplot.

* PLOT.CN = DWM_RESIDUAL_PILE.PLT_CN links the wood piles records to the unique plot record.

* COND.PLT_CN = DWM_RESIDUAL_PILE.PLT_CN and COND.CONDID= DWM_RESIDUAL_PILE.CONDID links the wood piles records to the unique condition record.\",\"msft:item_name\":\"dwm_residual_pile\"},{\"name\":\"Down Woody Material Transect Segment Table\",\"description\":\"Down woody material transect segment table. This table describes the down woody material transect segment lengths by condition class.

* PLOT.CN = DWM_TRANSECT_SEGMENT.PLT_CN links the down woody material transect length records to the unique plot record.

* COND.PLT_CN = DWM_TRANSECT_SEGMENT.PLT_CN and COND.CONDID= DWM_TRANSECT_SEGMENT.CONDID links the down woody material transect segment records to the unique condition record.\",\"msft:item_name\":\"dwm_transect_segment\"},{\"name\":\"Condition Down Woody Material Calculation Table\",\"description\":\"Condition down woody material calculation table. This table contains calculated values and condition-level estimates for down woody attributes by plot number (PLOT), condition class number (CONDID), and evaluation identifier (EVALID).

* PLOT.CN = COND_DWM_CALC.PLT_CN links the down woody material calculation records to the unique plot record.

* COND.CN = COND_DWM_CALC.CND_CN links the down woody material calculation records to the unique condition record.

* POP_STRATUM. CN = COND_DWM_CALC.STRATUM_CN links the down woody material calculation records to the unique population stratum record.\",\"msft:item_name\":\"cond_dwm_calc\"},{\"name\":\"Plot Regeneration Table\",\"description\":\"Plot regeneration table. This table contains the information for the four subplots describing the amount of animal browse pressure exerted on the regeneration of trees.

* PLOT.CN = PLOT_REGEN.PLT_CN links the unique plot record to the unique plot regeneration record.\",\"msft:item_name\":\"plot_regen\"},{\"name\":\"Subplot Regeneration Table\",\"description\":\"Subplot regeneration table. This table provides information on the subplot survey status and the site survey limitations, if any, for the tree regeneration study.

* PLOT.CN = SUBPLOT_REGEN.PLT_CN links the unique plot record to the subplot regeneration records.

* SUBPLOT.PLT_CN = SUBPLOT_REGEN.PLT_CN and SUBPLOT.SUBP = SUBPLOT_REGEN.SUBP links the subplot record to the subplot regeneration record.\",\"msft:item_name\":\"subplot_regen\"},{\"name\":\"Seedling Regeneration Table\",\"description\":\"Seedling regeneration. This table contains provides information on the seedling count by condition, species, source, and length class for the tree regeneration study.

* PLOT.CN = SEEDLING_REGEN.PLT_CN links the unique plot record to the seedling regeneration records.

* COND.PLT_CN = SEEDLING_REGEN.PLT_CN and COND.CONDID = SEEDLING_REGEN.CONDID links the regeneration seedling records to the unique condition record.\",\"msft:item_name\":\"seedling_regen\"},{\"name\":\"Population Estimation Unit Table\",\"description\":\"Population estimation unit table. This table contains information about estimation units. An estimation unit is a geographic area that can be drawn on a map. It has a known area, and the sampling intensity must be the same within a stratum within an estimation unit. Generally, estimation units are contiguous areas, but exceptions are made when certain ownerships, usually National Forests, are sampled at different intensities. One record in the POP_ESTN_UNIT table corresponds to a single estimation unit. POP_ESTN_UNIT.CN = POP_STRATUM.ESTN_UNIT_CN links the unique stratified geographical area (ESTN_UNIT) to the strata (STRATUMCD) that are assigned to each ESTN_UNIT.\",\"msft:item_name\":\"pop_estn_unit\"},{\"name\":\"Population Evaluation Table\",\"description\":\"Population evaluation table. This table provides information about evaluations. An evaluation is the combination of a set of plots (the sample) and a set of Phase 1 data (obtained through remote sensing, called a stratification) that can be used to produce population estimates for a State (an evaluation may be created to produce population estimates for a region other than a State, such as the Black Hills National Forest). A record in the POP_EVAL table identifies one evaluation and provides some descriptive information about how the evaluation may be used.

* POP_ESTN_UNIT.EVAL_CN = POP_EVAL.CN links the unique evaluation identifier (EVALID) in the POP_EVAL table to the unique geographical areas (ESTN_UNIT) that are stratified. Within a population evaluation (EVALID) there can be multiple population estimation units, or geographic areas across which there are a number of values being estimated (e.g., estimation of volume across counties for a given State).\",\"msft:item_name\":\"pop_eval\"},{\"name\":\"Population Evaluation Attribute Table\",\"description\":\"Population evaluation attribute table. This table provides information as to which population estimates can be provided by an evaluation. If an evaluation can produce only 22 of all the population estimates in the REF_POP_ATTRIBUTE table, there will be 22 records in the POP_EVAL_ATTRIBUTE table (one per population estimate) for that evaluation.

* POP_EVAL.CN = POP_EVAL_ATTRIBUTE.EVAL_CN links the unique evaluation identifier to the list of population estimates that can be derived for that evaluation.\",\"msft:item_name\":\"pop_eval_attribute\"},{\"name\":\"Population Evaluation Group Table\",\"description\":\"Population evaluation group table. This table lists and describes the evaluation groups. One record in the POP_EVAL_GRP table can be linked to all the evaluations that were used in generating estimates for a State inventory report.

* POP_EVAL_GRP.CN = POP_EVAL_TYP.EVAL_GRP_CN links the evaluation group record to the evaluation type record.\",\"msft:item_name\":\"pop_eval_grp\"},{\"name\":\"Population Evaluation Type Table\",\"description\":\"Population evaluation type table. This table provides information on the type of evaluations that were used to generate a set of tables for an inventory report. In a typical State inventory report, one evaluation is used to generate an estimate of the total land area; a second evaluation is used to generate current estimates of volume, numbers of trees and biomass; and a third evaluation is used for estimating growth, removals and mortality.

* POP_EVAL_TYP.EVAL_CN = POP_EVAL.CN links the evaluation type record to the evaluation record.

* POP_EVAL_TYP.EVAL_GRP_CN = POP_EVAL_GRP.CN links the evaluation type record to the evaluation group record.

* POP_EVAL_TYP.EVAL_TYP = REF_POP_EVAL_TYP_DESCR.EVAL_TYP links an evaluation type record to an evaluation type description reference record.\",\"msft:item_name\":\"pop_eval_typ\"},{\"name\":\"Population Plot Stratum Assignment Table\",\"description\":\"Population plot stratum assignment table. This table provides a way to assign stratum information to a plot. Stratum information is assigned to a plot by overlaying the plot's location on the Phase 1 imagery. Plots are linked to their appropriate stratum for an evaluation via the POP_PLOT_STRATUM_ASSGN table.

* POP_PLOT_STRATUM_ASSGN.PLT_CN = PLOT.CN links the stratum assigned to the plot record.\",\"msft:item_name\":\"pop_plot_stratum_assgn\"},{\"name\":\"Population Stratum Table\",\"description\":\"Population stratum table. This table provides information about individual strata. The area within an estimation unit is divided into strata. The area for each stratum can be calculated by determining the proportion of Phase 1 pixels/plots in each stratum and multiplying that proportion by the total area in the estimation unit. Information for a single stratum is stored in a single record of the POP_STRATUM table.

* POP_STRATUM.CN = POP_PLOT_STRATUM_ASSGN.STRATUM_CN links the defined stratum to each plot.\",\"msft:item_name\":\"pop_stratum\"},{\"name\":\"Plot Geometry Table\",\"description\":\"Plot geometry table. This table contains geometric attributes associated with the plot location, such as the hydrological unit and roadless codes.

* PLOTGEOM.CN = PLOT.CN links the unique plot record between the two tables.\",\"msft:item_name\":\"plotgeom\"},{\"name\":\"Plot Snapshot Table\",\"description\":\"Plot snapshot table. This table combines the information in the PLOT table with information in the PLOT_EVAL_GRP and POP_STRATUM tables to provide a snapshot of the plot records with their associated expansion and adjustment factors.

* PLOTSNAP.CN = PLOT.CN links the unique plot record between the two tables.\",\"msft:item_name\":\"plotsnap\"}],\"msft:container\":\"cpdata\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"cpdataeuwest\",\"msft:short_description\":\"Status and trends on U.S. forest location, health, growth, mortality, and production, from the U.S. Forest Service's Forest Inventory and Analysis (FIA) program\",\"msft:region\":\"westeurope\"},{\"id\":\"gridmet\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/publicdomain/zero/1.0/legalcode\",\"type\":\"text/html\",\"title\":\"CC0 1.0\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/gridmet\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"gridMET\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gridmet.png\",\"role\":[\"thumbnail\"],\"type\":\"image/png\",\"title\":\"gridMET thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://gridmet/gridmet.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\"],\"description\":\"Azure Blob File System URI of the gridMET Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"ai4edataeuwest\"}},\"zarr-https\":{\"href\":\"https://ai4edataeuwest.blob.core.windows.net/gridmet/gridmet.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"gridMET HTTPS Zarr root\",\"description\":\"HTTPS URI of the gridMET Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-124.76666663333334,25.066666666666666,-67.05833330000002,49.400000000000006]]},\"temporal\":{\"interval\":[[\"1979-01-01T00:00:00Z\",\"2020-12-31T00:00:00Z\"]]}},\"license\":\"CC0-1.0\",\"keywords\":[\"gridMET\",\"Water\",\"Precipitation\",\"Temperature\",\"Vapor Pressure\",\"Climate\"],\"providers\":[{\"url\":\"https://developmentseed.org/\",\"name\":\"Development Seed\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"http://www.climatologylab.org/gridmet.html\",\"name\":\"Climatology Lab\",\"roles\":[\"producer\"]},{\"url\":\"http://onlinelibrary.wiley.com/doi/10.1002/joc.3413/full\",\"name\":\"Abatzoglou, J.T.\",\"roles\":[\"producer\"]}],\"description\":\"gridMET is a dataset of daily surface meteorological data at approximately four-kilometer resolution, covering the contiguous U.S. from 1979 to the present. These data can provide important inputs for ecological, agricultural, and hydrological models.\\n\",\"stac_version\":\"1.0.0\",\"cube:variables\":{\"wind_speed\":{\"type\":\"data\",\"unit\":\"m/s\",\"attrs\":{\"units\":\"m/s\",\"long_name\":\"vs\",\"dimensions\":\"lon lat time\",\"description\":\"Daily Mean Wind Speed\",\"grid_mapping\":\"crs\",\"standard_name\":\"vs\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Mean Wind Speed\"},\"air_temperature\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"long_name\":\"tmmn\",\"dimensions\":\"lon lat time\",\"description\":\"Daily Minimum Temperature\",\"grid_mapping\":\"crs\",\"standard_name\":\"tmmn\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Minimum Temperature\"},\"burning_index_g\":{\"type\":\"data\",\"unit\":\"Unitless\",\"attrs\":{\"units\":\"Unitless\",\"long_name\":\"bi\",\"dimensions\":\"lon lat time\",\"description\":\"BI-G\",\"grid_mapping\":\"crs\",\"standard_name\":\"bi\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"BI-G\"},\"relative_humidity\":{\"type\":\"data\",\"unit\":\"%\",\"attrs\":{\"units\":\"%\",\"long_name\":\"rmin\",\"dimensions\":\"lon lat time\",\"description\":\"Daily Minimum Relative Humidity\",\"grid_mapping\":\"crs\",\"standard_name\":\"rmin\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Minimum Relative Humidity\"},\"specific_humidity\":{\"type\":\"data\",\"unit\":\"kg/kg\",\"attrs\":{\"units\":\"kg/kg\",\"long_name\":\"sph\",\"dimensions\":\"lon lat time\",\"description\":\"Daily mean specific humidity\",\"grid_mapping\":\"crs\",\"standard_name\":\"sph\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily mean specific humidity\"},\"wind_from_direction\":{\"type\":\"data\",\"unit\":\"Degrees Clockwise from north\",\"attrs\":{\"units\":\"Degrees Clockwise from north\",\"long_name\":\"th\",\"dimensions\":\"lon lat time\",\"description\":\"Daily mean wind direction\",\"grid_mapping\":\"crs\",\"standard_name\":\"th\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily mean wind direction\"},\"precipitation_amount\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"pr\",\"dimensions\":\"lon lat time\",\"description\":\"Daily Accumulated Precipitation\",\"grid_mapping\":\"crs\",\"standard_name\":\"pr\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Accumulated Precipitation\"},\"dead_fuel_moisture_100hr\":{\"type\":\"data\",\"unit\":\"Percent\",\"attrs\":{\"units\":\"Percent\",\"long_name\":\"fm100\",\"dimensions\":\"lon lat time\",\"description\":\"100 hour fuel moisture\",\"grid_mapping\":\"crs\",\"standard_name\":\"fm100\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"100 hour fuel moisture\"},\"dead_fuel_moisture_1000hr\":{\"type\":\"data\",\"unit\":\"Percent\",\"attrs\":{\"units\":\"Percent\",\"long_name\":\"fm1000\",\"dimensions\":\"lon lat time\",\"description\":\"1000 hour fuel moisture\",\"grid_mapping\":\"crs\",\"standard_name\":\"fm1000\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"1000 hour fuel moisture\"},\"mean_vapor_pressure_deficit\":{\"type\":\"data\",\"unit\":\"kPa\",\"attrs\":{\"units\":\"kPa\",\"long_name\":\"vpd\",\"dimensions\":\"lon lat time\",\"description\":\"mean vapor presure deficit\",\"grid_mapping\":\"crs\",\"standard_name\":\"vpd\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"mean vapor presure deficit\"},\"potential_evapotranspiration\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"pet\",\"dimensions\":\"lon lat time\",\"description\":\"Daily reference evapotranspiration (short grass)\",\"grid_mapping\":\"crs\",\"standard_name\":\"pet\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily reference evapotranspiration (short grass)\"},\"surface_downwelling_shortwave_flux_in_air\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"long_name\":\"srad\",\"dimensions\":\"lon lat time\",\"description\":\"Daily Mean downward shortwave radiation at surface\",\"grid_mapping\":\"crs\",\"standard_name\":\"srad\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Mean downward shortwave radiation at surface\"}},\"msft:container\":\"gridmet\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"type\":\"spatial\",\"extent\":[25.066666666666666,49.400000000000006],\"description\":\"latitude\",\"reference_system\":4326},\"lon\":{\"axis\":\"x\",\"type\":\"spatial\",\"extent\":[-124.76666663333334,-67.05833330000002],\"description\":\"longitude\",\"reference_system\":4326},\"time\":{\"step\":\"P1DT0H0M0S\",\"type\":\"temporal\",\"extent\":[\"1979-01-01T00:00:00Z\",\"2020-12-31T00:00:00Z\"],\"description\":\"time\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/xarray-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Daily high-spatial resolution surface meteorological data covering the contiguous United States from 1979 to the present\",\"msft:region\":\"westeurope\"},{\"id\":\"daymet-annual-na\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"license\",\"href\":\"https://science.nasa.gov/earth-science/earth-science-data/data-information-policy\",\"title\":\"EOSDIS Data Use Policy\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.3334/ORNLDAAC/1852\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/daymet-annual-na\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Daymet Annual North America\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/daymet-annual-na.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Daymet annual North America map thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://daymet-zarr/annual/na.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"Annual North America Daymet Azure Blob File System Zarr root\",\"description\":\"Azure Blob File System of the annual North America Daymet Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"daymeteuwest\"}},\"zarr-https\":{\"href\":\"https://daymeteuwest.blob.core.windows.net/daymet-zarr/annual/na.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"Annual North America Daymet HTTPS Zarr root\",\"description\":\"HTTPS URI of the annual North America Daymet Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-178.1333,14.0749,-53.0567,82.9143]]},\"temporal\":{\"interval\":[[\"1980-07-01T12:00:00Z\",\"2020-07-01T12:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.3334/ORNLDAAC/1852\",\"keywords\":[\"Daymet\",\"North America\",\"Temperature\",\"Precipitation\",\"Vapor Pressure\",\"Climate\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://doi.org/10.3334/ORNLDAAC/1852\",\"name\":\"ORNL DAAC\",\"roles\":[\"producer\"]}],\"description\":\"Annual climate summaries derived from [Daymet](https://daymet.ornl.gov) Version 4 daily data at a 1 km x 1 km spatial resolution for five variables: minimum and maximum temperature, precipitation, vapor pressure, and snow water equivalent. Annual averages are provided for minimum and maximum temperature, vapor pressure, and snow water equivalent, and annual totals are provided for the precipitation variable.\\n\\n[Daymet](https://daymet.ornl.gov/) provides measurements of near-surface meteorological conditions; the main purpose is to provide data estimates where no instrumentation exists. The dataset covers the period from January 1, 1980 to the present. Each year is processed individually at the close of a calendar year. Data are in a Lambert conformal conic projection for North America and are distributed in Zarr and NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\n\\nUse the DOI at [https://doi.org/10.3334/ORNLDAAC/1852](https://doi.org/10.3334/ORNLDAAC/1852) to cite your usage of the data.\\n\\nThis dataset provides coverage for Hawaii; North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#annual). \\n\\n\",\"sci:citation\":\"Thornton, M.M., R. Shrestha, Y. Wei, P.E. Thornton, S. Kao, and B.E. Wilson. 2020. Daymet: Annual Climate Summaries on a 1-km Grid for North America, Version 4. ORNL DAAC, Oak Ridge, Tennessee, USA. https://doi.org/10.3334/ORNLDAAC/1852\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"daymet\",\"cube:variables\":{\"vp\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"long_name\":\"annual average of daily average vapor pressure\",\"cell_methods\":\"area: mean time: mean within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,8075,7814],\"chunks\":[1,8075,7814],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average of daily average vapor pressure\"},\"lat\":{\"type\":\"auxiliary\",\"unit\":\"degrees_north\",\"attrs\":{\"units\":\"degrees_north\",\"long_name\":\"latitude coordinate\",\"standard_name\":\"latitude\"},\"shape\":[8075,7814],\"chunks\":[8075,7814],\"dimensions\":[\"y\",\"x\"],\"description\":\"latitude coordinate\"},\"lon\":{\"type\":\"auxiliary\",\"unit\":\"degrees_east\",\"attrs\":{\"units\":\"degrees_east\",\"long_name\":\"longitude coordinate\",\"standard_name\":\"longitude\"},\"shape\":[8075,7814],\"chunks\":[8075,7814],\"dimensions\":[\"y\",\"x\"],\"description\":\"longitude coordinate\"},\"swe\":{\"type\":\"data\",\"unit\":\"kg/m2\",\"attrs\":{\"units\":\"kg/m2\",\"long_name\":\"annual average snow water equivalent\",\"cell_methods\":\"area: mean time: sum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,8075,7814],\"chunks\":[1,8075,7814],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average snow water equivalent\"},\"prcp\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"annual total precipitation\",\"cell_methods\":\"area: mean time: sum within days time: sum over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,8075,7814],\"chunks\":[1,8075,7814],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual total precipitation\"},\"tmax\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"annual average of daily maximum temperature\",\"cell_methods\":\"area: mean time: maximum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,8075,7814],\"chunks\":[1,8075,7814],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average of daily maximum temperature\"},\"tmin\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"annual average of daily minimum temperature\",\"cell_methods\":\"area: mean time: minimum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,8075,7814],\"chunks\":[1,8075,7814],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average of daily minimum temperature\"},\"time_bnds\":{\"type\":\"data\",\"attrs\":{\"time\":\"days since 1950-01-01 00:00:00\"},\"shape\":[41,2],\"chunks\":[1,2],\"dimensions\":[\"time\",\"nv\"]},\"lambert_conformal_conic\":{\"type\":\"data\",\"attrs\":{\"false_easting\":0.0,\"false_northing\":0.0,\"semi_major_axis\":6378137.0,\"grid_mapping_name\":\"lambert_conformal_conic\",\"standard_parallel\":[25.0,60.0],\"inverse_flattening\":298.257223563,\"latitude_of_projection_origin\":42.5,\"longitude_of_central_meridian\":-100.0},\"shape\":[],\"dimensions\":[]}},\"msft:container\":\"daymet-zarr\",\"cube:dimensions\":{\"x\":{\"axis\":\"x\",\"step\":1000.0,\"type\":\"spatial\",\"extent\":[-4560250.0,3252750.0],\"description\":\"x coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"y\":{\"axis\":\"y\",\"step\":-1000.0,\"type\":\"spatial\",\"extent\":[-3090000.0,4984000.0],\"description\":\"y coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"nv\":{\"type\":\"count\",\"values\":[0,1],\"description\":\"Size of the 'time_bnds' variable.\"},\"time\":{\"type\":\"temporal\",\"extent\":[\"1980-07-01T12:00:00Z\",\"2020-07-01T12:00:00Z\"],\"description\":\"24-hour day based on local time\"}},\"msft:group_keys\":[\"annual\",\"north america\"],\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"daymeteuwest\",\"msft:short_description\":\"Annual climate summaries on a 1-km grid for North America\",\"msft:region\":\"westeurope\"},{\"id\":\"daymet-monthly-na\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"license\",\"href\":\"https://science.nasa.gov/earth-science/earth-science-data/data-information-policy\",\"title\":\"EOSDIS Data Use Policy\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.3334/ORNLDAAC/1855\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/daymet-monthly-na\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Daymet Monthly North America\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/daymet-monthly-na.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Daymet monthly North America map thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://daymet-zarr/monthly/na.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"Monthly North America Daymet Azure Blob File System Zarr root\",\"description\":\"Azure Blob File System of the monthly North America Daymet Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"daymeteuwest\"}},\"zarr-https\":{\"href\":\"https://daymeteuwest.blob.core.windows.net/daymet-zarr/monthly/na.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"Monthly North America Daymet HTTPS Zarr root\",\"description\":\"HTTPS URI of the monthly North America Daymet Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-178.1333,14.0749,-53.0567,82.9143]]},\"temporal\":{\"interval\":[[\"1980-01-16T12:00:00Z\",\"2020-12-16T00:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.3334/ORNLDAAC/1855\",\"keywords\":[\"Daymet\",\"North America\",\"Temperature\",\"Precipitation\",\"Vapor Pressure\",\"Climate\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://doi.org/10.3334/ORNLDAAC/1855\",\"name\":\"ORNL DAAC\",\"roles\":[\"producer\"]}],\"description\":\"Monthly climate summaries derived from [Daymet](https://daymet.ornl.gov) Version 4 daily data at a 1 km x 1 km spatial resolution for five variables: minimum and maximum temperature, precipitation, vapor pressure, and snow water equivalent. Annual averages are provided for minimum and maximum temperature, vapor pressure, and snow water equivalent, and annual totals are provided for the precipitation variable.\\n\\n[Daymet](https://daymet.ornl.gov/) provides measurements of near-surface meteorological conditions; the main purpose is to provide data estimates where no instrumentation exists. The dataset covers the period from January 1, 1980 to the present. Each year is processed individually at the close of a calendar year. Data are in a Lambert conformal conic projection for North America and are distributed in Zarr and NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\n\\nUse the DOI at [https://doi.org/10.3334/ORNLDAAC/1855](https://doi.org/10.3334/ORNLDAAC/1855) to cite your usage of the data.\\n\\nThis dataset provides coverage for Hawaii; North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#monthly).\\n\",\"sci:citation\":\"Thornton, M.M., R. Shrestha, Y. Wei, P.E. Thornton, S. Kao, and B.E. Wilson. 2020. Daymet: Monthly Climate Summaries on a 1-km Grid for North America, Version 4. ORNL DAAC, Oak Ridge, Tennessee, USA. https://doi.org/10.3334/ORNLDAAC/1855\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"daymet\",\"cube:variables\":{\"vp\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"long_name\":\"monthly average of daily average vapor pressure\",\"cell_methods\":\"area: mean time: mean within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,8075,7814],\"chunks\":[12,2000,2000],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly average of daily average vapor pressure\"},\"lat\":{\"type\":\"auxiliary\",\"unit\":\"degrees_north\",\"attrs\":{\"units\":\"degrees_north\",\"long_name\":\"latitude coordinate\",\"standard_name\":\"latitude\"},\"shape\":[8075,7814],\"chunks\":[2000,2000],\"dimensions\":[\"y\",\"x\"],\"description\":\"latitude coordinate\"},\"lon\":{\"type\":\"auxiliary\",\"unit\":\"degrees_east\",\"attrs\":{\"units\":\"degrees_east\",\"long_name\":\"longitude coordinate\",\"standard_name\":\"longitude\"},\"shape\":[8075,7814],\"chunks\":[2000,2000],\"dimensions\":[\"y\",\"x\"],\"description\":\"longitude coordinate\"},\"swe\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"monthly total snow water equivalent\",\"cell_methods\":\"area: mean time: sum within days time: sum over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,8075,7814],\"chunks\":[12,2000,2000],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly total snow water equivalent\"},\"prcp\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"monthly total precipitation\",\"cell_methods\":\"area: mean time: sum within days time: sum over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,8075,7814],\"chunks\":[12,2000,2000],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly total precipitation\"},\"tmax\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"monthly average of daily maximum temperature\",\"cell_methods\":\"area: mean time: maximum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,8075,7814],\"chunks\":[12,2000,2000],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly average of daily maximum temperature\"},\"tmin\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"monthly average of daily minimum temperature\",\"cell_methods\":\"area: mean time: minimum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,8075,7814],\"chunks\":[12,2000,2000],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly average of daily minimum temperature\"},\"time_bnds\":{\"type\":\"data\",\"attrs\":{},\"shape\":[492,2],\"chunks\":[12,2],\"dimensions\":[\"time\",\"nv\"]},\"lambert_conformal_conic\":{\"type\":\"data\",\"attrs\":{\"false_easting\":0.0,\"false_northing\":0.0,\"semi_major_axis\":6378137.0,\"grid_mapping_name\":\"lambert_conformal_conic\",\"standard_parallel\":[25.0,60.0],\"inverse_flattening\":298.257223563,\"latitude_of_projection_origin\":42.5,\"longitude_of_central_meridian\":-100.0},\"shape\":[],\"dimensions\":[]}},\"msft:container\":\"daymet-zarr\",\"cube:dimensions\":{\"x\":{\"axis\":\"x\",\"step\":1000.0,\"type\":\"spatial\",\"extent\":[-4560250.0,3252750.0],\"description\":\"x coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"y\":{\"axis\":\"y\",\"step\":-1000.0,\"type\":\"spatial\",\"extent\":[-3090000.0,4984000.0],\"description\":\"y coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"nv\":{\"type\":\"count\",\"values\":[0,1],\"description\":\"Size of the 'time_bnds' variable.\"},\"time\":{\"type\":\"temporal\",\"extent\":[\"1980-01-16T12:00:00Z\",\"2020-12-16T00:00:00Z\"],\"description\":\"24-hour day based on local time\"}},\"msft:group_keys\":[\"monthly\",\"north america\"],\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"daymeteuwest\",\"msft:short_description\":\"Monthly climate summaries on a 1-km grid for North America\",\"msft:region\":\"westeurope\"},{\"id\":\"daymet-annual-hi\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"license\",\"href\":\"https://science.nasa.gov/earth-science/earth-science-data/data-information-policy\",\"title\":\"EOSDIS Data Use Policy\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.3334/ORNLDAAC/1852\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/daymet-annual-hi\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Daymet Annual Hawaii\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/daymet-annual-hi.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Daymet annual Hawaii map thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://daymet-zarr/annual/hi.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"Annual Hawaii Daymet Azure Blob File System Zarr root\",\"description\":\"Azure Blob File System of the annual Hawaii Daymet Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"daymeteuwest\"}},\"zarr-https\":{\"href\":\"https://daymeteuwest.blob.core.windows.net/daymet-zarr/annual/hi.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"Annual Hawaii Daymet HTTPS Zarr root\",\"description\":\"HTTPS URI of the annual Hawaii Daymet Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-160.3056,17.9539,-154.772,23.5186]]},\"temporal\":{\"interval\":[[\"1980-07-01T12:00:00Z\",\"2020-07-01T12:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.3334/ORNLDAAC/1852\",\"keywords\":[\"Daymet\",\"Hawaii\",\"Temperature\",\"Precipitation\",\"Vapor Pressure\",\"Climate\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://doi.org/10.3334/ORNLDAAC/1852\",\"name\":\"ORNL DAAC\",\"roles\":[\"producer\"]}],\"description\":\"Annual climate summaries derived from [Daymet](https://daymet.ornl.gov) Version 4 daily data at a 1 km x 1 km spatial resolution for five variables: minimum and maximum temperature, precipitation, vapor pressure, and snow water equivalent. Annual averages are provided for minimum and maximum temperature, vapor pressure, and snow water equivalent, and annual totals are provided for the precipitation variable.\\n\\n[Daymet](https://daymet.ornl.gov/) provides measurements of near-surface meteorological conditions; the main purpose is to provide data estimates where no instrumentation exists. The dataset covers the period from January 1, 1980 to the present. Each year is processed individually at the close of a calendar year. Data are in a Lambert conformal conic projection for North America and are distributed in Zarr and NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\n\\nUse the DOI at [https://doi.org/10.3334/ORNLDAAC/1852](https://doi.org/10.3334/ORNLDAAC/1852) to cite your usage of the data.\\n\\nThis dataset provides coverage for Hawaii; North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#annual). \\n\\n\",\"sci:citation\":\"Thornton, M.M., R. Shrestha, Y. Wei, P.E. Thornton, S. Kao, and B.E. Wilson. 2020. Daymet: Annual Climate Summaries on a 1-km Grid for North America, Version 4. ORNL DAAC, Oak Ridge, Tennessee, USA. https://doi.org/10.3334/ORNLDAAC/1852\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"daymet\",\"cube:variables\":{\"vp\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"long_name\":\"annual average of daily average vapor pressure\",\"cell_methods\":\"area: mean time: mean within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,584,284],\"chunks\":[1,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average of daily average vapor pressure\"},\"lat\":{\"type\":\"auxiliary\",\"unit\":\"degrees_north\",\"attrs\":{\"units\":\"degrees_north\",\"long_name\":\"latitude coordinate\",\"standard_name\":\"latitude\"},\"shape\":[584,284],\"chunks\":[584,284],\"dimensions\":[\"y\",\"x\"],\"description\":\"latitude coordinate\"},\"lon\":{\"type\":\"auxiliary\",\"unit\":\"degrees_east\",\"attrs\":{\"units\":\"degrees_east\",\"long_name\":\"longitude coordinate\",\"standard_name\":\"longitude\"},\"shape\":[584,284],\"chunks\":[584,284],\"dimensions\":[\"y\",\"x\"],\"description\":\"longitude coordinate\"},\"swe\":{\"type\":\"data\",\"unit\":\"kg/m2\",\"attrs\":{\"units\":\"kg/m2\",\"long_name\":\"annual average snow water equivalent\",\"cell_methods\":\"area: mean time: sum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,584,284],\"chunks\":[1,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average snow water equivalent\"},\"prcp\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"annual total precipitation\",\"cell_methods\":\"area: mean time: sum within days time: sum over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,584,284],\"chunks\":[1,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual total precipitation\"},\"tmax\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"annual average of daily maximum temperature\",\"cell_methods\":\"area: mean time: maximum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,584,284],\"chunks\":[1,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average of daily maximum temperature\"},\"tmin\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"annual average of daily minimum temperature\",\"cell_methods\":\"area: mean time: minimum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,584,284],\"chunks\":[1,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average of daily minimum temperature\"},\"time_bnds\":{\"type\":\"data\",\"attrs\":{\"time\":\"days since 1950-01-01 00:00:00\"},\"shape\":[41,2],\"chunks\":[1,2],\"dimensions\":[\"time\",\"nv\"]},\"lambert_conformal_conic\":{\"type\":\"data\",\"attrs\":{\"false_easting\":0.0,\"false_northing\":0.0,\"semi_major_axis\":6378137.0,\"grid_mapping_name\":\"lambert_conformal_conic\",\"standard_parallel\":[25.0,60.0],\"inverse_flattening\":298.257223563,\"latitude_of_projection_origin\":42.5,\"longitude_of_central_meridian\":-100.0},\"shape\":[],\"dimensions\":[]}},\"msft:container\":\"daymet-zarr\",\"cube:dimensions\":{\"x\":{\"axis\":\"x\",\"step\":1000.0,\"type\":\"spatial\",\"extent\":[-5802250.0,-5519250.0],\"description\":\"x coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"y\":{\"axis\":\"y\",\"step\":-1000.0,\"type\":\"spatial\",\"extent\":[-622000.0,-39000.0],\"description\":\"y coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"nv\":{\"type\":\"count\",\"values\":[0,1],\"description\":\"Size of the 'time_bnds' variable.\"},\"time\":{\"type\":\"temporal\",\"extent\":[\"1980-07-01T12:00:00Z\",\"2020-07-01T12:00:00Z\"],\"description\":\"24-hour day based on local time\"}},\"msft:group_keys\":[\"annual\",\"hawaii\"],\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"daymeteuwest\",\"msft:short_description\":\"Annual climate summaries on a 1-km grid for Hawaii\",\"msft:region\":\"westeurope\"},{\"id\":\"daymet-monthly-hi\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"license\",\"href\":\"https://science.nasa.gov/earth-science/earth-science-data/data-information-policy\",\"title\":\"EOSDIS Data Use Policy\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.3334/ORNLDAAC/1855\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/daymet-monthly-hi\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Daymet Monthly Hawaii\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/daymet-monthly-hi.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Daymet monthly Hawaii map thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://daymet-zarr/monthly/hi.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"Monthly Hawaii Daymet Azure Blob File System Zarr root\",\"description\":\"Azure Blob File System of the monthly Hawaii Daymet Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"daymeteuwest\"}},\"zarr-https\":{\"href\":\"https://daymeteuwest.blob.core.windows.net/daymet-zarr/monthly/hi.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"Monthly Hawaii Daymet HTTPS Zarr root\",\"description\":\"HTTPS URI of the monthly Hawaii Daymet Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-160.3056,17.9539,-154.772,23.5186]]},\"temporal\":{\"interval\":[[\"1980-01-16T12:00:00Z\",\"2020-12-16T00:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.3334/ORNLDAAC/1855\",\"keywords\":[\"Daymet\",\"Hawaii\",\"Temperature\",\"Precipitation\",\"Vapor Pressure\",\"Climate\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://doi.org/10.3334/ORNLDAAC/1855\",\"name\":\"ORNL DAAC\",\"roles\":[\"producer\"]}],\"description\":\"Monthly climate summaries derived from [Daymet](https://daymet.ornl.gov) Version 4 daily data at a 1 km x 1 km spatial resolution for five variables: minimum and maximum temperature, precipitation, vapor pressure, and snow water equivalent. Annual averages are provided for minimum and maximum temperature, vapor pressure, and snow water equivalent, and annual totals are provided for the precipitation variable.\\n\\n[Daymet](https://daymet.ornl.gov/) provides measurements of near-surface meteorological conditions; the main purpose is to provide data estimates where no instrumentation exists. The dataset covers the period from January 1, 1980 to the present. Each year is processed individually at the close of a calendar year. Data are in a Lambert conformal conic projection for North America and are distributed in Zarr and NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\n\\nUse the DOI at [https://doi.org/10.3334/ORNLDAAC/1855](https://doi.org/10.3334/ORNLDAAC/1855) to cite your usage of the data.\\n\\nThis dataset provides coverage for Hawaii; North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#monthly).\\n\",\"sci:citation\":\"Thornton, M.M., R. Shrestha, Y. Wei, P.E. Thornton, S. Kao, and B.E. Wilson. 2020. Daymet: Monthly Climate Summaries on a 1-km Grid for North America, Version 4. ORNL DAAC, Oak Ridge, Tennessee, USA. https://doi.org/10.3334/ORNLDAAC/1855\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"daymet\",\"cube:variables\":{\"vp\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"long_name\":\"monthly average of daily average vapor pressure\",\"cell_methods\":\"area: mean time: mean within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,584,284],\"chunks\":[12,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly average of daily average vapor pressure\"},\"lat\":{\"type\":\"auxiliary\",\"unit\":\"degrees_north\",\"attrs\":{\"units\":\"degrees_north\",\"long_name\":\"latitude coordinate\",\"standard_name\":\"latitude\"},\"shape\":[584,284],\"chunks\":[584,284],\"dimensions\":[\"y\",\"x\"],\"description\":\"latitude coordinate\"},\"lon\":{\"type\":\"auxiliary\",\"unit\":\"degrees_east\",\"attrs\":{\"units\":\"degrees_east\",\"long_name\":\"longitude coordinate\",\"standard_name\":\"longitude\"},\"shape\":[584,284],\"chunks\":[584,284],\"dimensions\":[\"y\",\"x\"],\"description\":\"longitude coordinate\"},\"swe\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"monthly total snow water equivalent\",\"cell_methods\":\"area: mean time: sum within days time: sum over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,584,284],\"chunks\":[12,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly total snow water equivalent\"},\"prcp\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"monthly total precipitation\",\"cell_methods\":\"area: mean time: sum within days time: sum over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,584,284],\"chunks\":[12,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly total precipitation\"},\"tmax\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"monthly average of daily maximum temperature\",\"cell_methods\":\"area: mean time: maximum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,584,284],\"chunks\":[12,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly average of daily maximum temperature\"},\"tmin\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"monthly average of daily minimum temperature\",\"cell_methods\":\"area: mean time: minimum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,584,284],\"chunks\":[12,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly average of daily minimum temperature\"},\"time_bnds\":{\"type\":\"data\",\"attrs\":{},\"shape\":[492,2],\"chunks\":[12,2],\"dimensions\":[\"time\",\"nv\"]},\"lambert_conformal_conic\":{\"type\":\"data\",\"attrs\":{\"false_easting\":0.0,\"false_northing\":0.0,\"semi_major_axis\":6378137.0,\"grid_mapping_name\":\"lambert_conformal_conic\",\"standard_parallel\":[25.0,60.0],\"inverse_flattening\":298.257223563,\"latitude_of_projection_origin\":42.5,\"longitude_of_central_meridian\":-100.0},\"shape\":[],\"dimensions\":[]}},\"msft:container\":\"daymet-zarr\",\"cube:dimensions\":{\"x\":{\"axis\":\"x\",\"step\":1000.0,\"type\":\"spatial\",\"extent\":[-5802250.0,-5519250.0],\"description\":\"x coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"y\":{\"axis\":\"y\",\"step\":-1000.0,\"type\":\"spatial\",\"extent\":[-622000.0,-39000.0],\"description\":\"y coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"nv\":{\"type\":\"count\",\"values\":[0,1],\"description\":\"Size of the 'time_bnds' variable.\"},\"time\":{\"type\":\"temporal\",\"extent\":[\"1980-01-16T12:00:00Z\",\"2020-12-16T00:00:00Z\"],\"description\":\"24-hour day based on local time\"}},\"msft:group_keys\":[\"monthly\",\"hawaii\"],\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"daymeteuwest\",\"msft:short_description\":\"Monthly climate summaries on a 1-km grid for Hawaii\",\"msft:region\":\"westeurope\"},{\"id\":\"daymet-monthly-pr\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"license\",\"href\":\"https://science.nasa.gov/earth-science/earth-science-data/data-information-policy\",\"title\":\"EOSDIS Data Use Policy\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.3334/ORNLDAAC/1855\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/daymet-monthly-pr\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Daymet Monthly Puerto Rico\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/daymet-monthly-pr.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Daymet monthly Puerto Rico map thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://daymet-zarr/monthly/pr.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"Monthly Puerto Rico Daymet Azure Blob File System Zarr root\",\"description\":\"Azure Blob File System of the monthly Puerto Rico Daymet Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"daymeteuwest\"}},\"zarr-https\":{\"href\":\"https://daymeteuwest.blob.core.windows.net/daymet-zarr/monthly/pr.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"Monthly Puerto Rico Daymet HTTPS Zarr root\",\"description\":\"HTTPS URI of the monthly Puerto Rico Daymet Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-67.9927,16.8444,-64.1196,19.9382]]},\"temporal\":{\"interval\":[[\"1980-01-16T12:00:00Z\",\"2020-12-16T00:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.3334/ORNLDAAC/1855\",\"keywords\":[\"Daymet\",\"Puerto Rico\",\"Temperature\",\"Precipitation\",\"Vapor Pressure\",\"Climate\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://doi.org/10.3334/ORNLDAAC/1855\",\"name\":\"ORNL DAAC\",\"roles\":[\"producer\"]}],\"description\":\"Monthly climate summaries derived from [Daymet](https://daymet.ornl.gov) Version 4 daily data at a 1 km x 1 km spatial resolution for five variables: minimum and maximum temperature, precipitation, vapor pressure, and snow water equivalent. Annual averages are provided for minimum and maximum temperature, vapor pressure, and snow water equivalent, and annual totals are provided for the precipitation variable.\\n\\n[Daymet](https://daymet.ornl.gov/) provides measurements of near-surface meteorological conditions; the main purpose is to provide data estimates where no instrumentation exists. The dataset covers the period from January 1, 1980 to the present. Each year is processed individually at the close of a calendar year. Data are in a Lambert conformal conic projection for North America and are distributed in Zarr and NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\n\\nUse the DOI at [https://doi.org/10.3334/ORNLDAAC/1855](https://doi.org/10.3334/ORNLDAAC/1855) to cite your usage of the data.\\n\\nThis dataset provides coverage for Hawaii; North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#monthly).\\n\",\"sci:citation\":\"Thornton, M.M., R. Shrestha, Y. Wei, P.E. Thornton, S. Kao, and B.E. Wilson. 2020. Daymet: Monthly Climate Summaries on a 1-km Grid for North America, Version 4. ORNL DAAC, Oak Ridge, Tennessee, USA. https://doi.org/10.3334/ORNLDAAC/1855\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"daymet\",\"cube:variables\":{\"vp\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"long_name\":\"monthly average of daily average vapor pressure\",\"cell_methods\":\"area: mean time: mean within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,231,364],\"chunks\":[12,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly average of daily average vapor pressure\"},\"lat\":{\"type\":\"auxiliary\",\"unit\":\"degrees_north\",\"attrs\":{\"units\":\"degrees_north\",\"long_name\":\"latitude coordinate\",\"standard_name\":\"latitude\"},\"shape\":[231,364],\"chunks\":[231,364],\"dimensions\":[\"y\",\"x\"],\"description\":\"latitude coordinate\"},\"lon\":{\"type\":\"auxiliary\",\"unit\":\"degrees_east\",\"attrs\":{\"units\":\"degrees_east\",\"long_name\":\"longitude coordinate\",\"standard_name\":\"longitude\"},\"shape\":[231,364],\"chunks\":[231,364],\"dimensions\":[\"y\",\"x\"],\"description\":\"longitude coordinate\"},\"swe\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"monthly total snow water equivalent\",\"cell_methods\":\"area: mean time: sum within days time: sum over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,231,364],\"chunks\":[12,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly total snow water equivalent\"},\"prcp\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"monthly total precipitation\",\"cell_methods\":\"area: mean time: sum within days time: sum over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,231,364],\"chunks\":[12,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly total precipitation\"},\"tmax\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"monthly average of daily maximum temperature\",\"cell_methods\":\"area: mean time: maximum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,231,364],\"chunks\":[12,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly average of daily maximum temperature\"},\"tmin\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"monthly average of daily minimum temperature\",\"cell_methods\":\"area: mean time: minimum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,231,364],\"chunks\":[12,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly average of daily minimum temperature\"},\"time_bnds\":{\"type\":\"data\",\"attrs\":{},\"shape\":[492,2],\"chunks\":[12,2],\"dimensions\":[\"time\",\"nv\"]},\"lambert_conformal_conic\":{\"type\":\"data\",\"attrs\":{\"false_easting\":0.0,\"false_northing\":0.0,\"semi_major_axis\":6378137.0,\"grid_mapping_name\":\"lambert_conformal_conic\",\"standard_parallel\":[25.0,60.0],\"inverse_flattening\":298.257223563,\"latitude_of_projection_origin\":42.5,\"longitude_of_central_meridian\":-100.0},\"shape\":[],\"dimensions\":[]}},\"msft:container\":\"daymet-zarr\",\"cube:dimensions\":{\"x\":{\"axis\":\"x\",\"step\":1000.0,\"type\":\"spatial\",\"extent\":[3445750.0,3808750.0],\"description\":\"x coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"y\":{\"axis\":\"y\",\"step\":-1000.0,\"type\":\"spatial\",\"extent\":[-1995000.0,-1765000.0],\"description\":\"y coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"nv\":{\"type\":\"count\",\"values\":[0,1],\"description\":\"Size of the 'time_bnds' variable.\"},\"time\":{\"type\":\"temporal\",\"extent\":[\"1980-01-16T12:00:00Z\",\"2020-12-16T00:00:00Z\"],\"description\":\"24-hour day based on local time\"}},\"msft:group_keys\":[\"monthly\",\"puerto rico\"],\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"daymeteuwest\",\"msft:short_description\":\"Monthly climate summaries on a 1-km grid for Puerto Rico\",\"msft:region\":\"westeurope\"},{\"id\":\"gnatsgo-tables\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"about\",\"href\":\"https://www.nrcs.usda.gov/wps/PA_NRCSConsumption/download?cid=nrcs142p2_051847&ext=pdf\",\"type\":\"application/pdf\",\"title\":\"gSSURGO User Guide\",\"description\":\"User guide for gSSURGO\"},{\"rel\":\"about\",\"href\":\"https://www.nrcs.usda.gov/wps/PA_NRCSConsumption/download?cid=nrcseprd1464658&ext=pdf\",\"type\":\"application/pdf\",\"title\":\"gNATSGO Overview Slides\",\"description\":\"Slides giving a high level overview of the gNATSGO dataset\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/publicdomain/zero/1.0/\",\"title\":\"CC0 1.0 Universal Public Domain Dedication\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/gnatsgo-tables\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"gNATSGO Soil Database - Tables\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gnatsgo-tables.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"gNATSGO\"},\"geoparquet-items\":{\"href\":\"abfs://items/gnatsgo-tables.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-170.8513,-14.3799,-169.4152,-14.1432],[138.0315,5.116,163.1902,10.2773],[144.6126,13.2327,144.9658,13.6572],[-159.7909,18.8994,-154.7815,22.2464],[170.969,6.0723,171.9169,8.71933],[145.0127,14.1086,145.9242,18.8172],[130.8048,2.9268,134.9834,8.0947],[157.3678,49.0546,-117.2864,71.4567],[-67.9506,17.014,-64.3973,19.3206],[-127.8881,22.8782,-65.2748,51.6039]]},\"temporal\":{\"interval\":[[\"2020-07-01T00:00:00Z\",\"2020-07-01T00:00:00Z\"]]}},\"license\":\"CC0-1.0\",\"keywords\":[\"Soils\",\"NATSGO\",\"SSURGO\",\"STATSGO2\",\"RSS\",\"USDA\",\"United States\"],\"providers\":[{\"url\":\"https://www.nrcs.usda.gov/\",\"name\":\"United States Department of Agriculture, Natural Resources Conservation Service\",\"roles\":[\"licensor\",\"producer\",\"processor\",\"host\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"description\":\"This collection contains the table data for gNATSGO. This table data can be used to determine the values of raster data cells for Items in the [gNATSGO Rasters](https://planetarycomputer.microsoft.com/dataset/gnatsgo-rasters) Collection.\\n\\nThe gridded National Soil Survey Geographic Database (gNATSGO) is a USDA-NRCS Soil & Plant Science Division (SPSD) composite database that provides complete coverage of the best available soils information for all areas of the United States and Island Territories. It was created by combining data from the Soil Survey Geographic Database (SSURGO), State Soil Geographic Database (STATSGO2), and Raster Soil Survey Databases (RSS) into a single seamless ESRI file geodatabase.\\n\\nSSURGO is the SPSD flagship soils database that has over 100 years of field-validated detailed soil mapping data. SSURGO contains soils information for more than 90 percent of the United States and island territories, but unmapped land remains. STATSGO2 is a general soil map that has soils data for all of the United States and island territories, but the data is not as detailed as the SSURGO data. The Raster Soil Surveys (RSSs) are the next generation soil survey databases developed using advanced digital soil mapping methods.\\n\\nThe gNATSGO database is composed primarily of SSURGO data, but STATSGO2 data was used to fill in the gaps. The RSSs are newer product with relatively limited spatial extent. These RSSs were merged into the gNATSGO after combining the SSURGO and STATSGO2 data. The extent of RSS is expected to increase in the coming years.\\n\\nSee the [official documentation](https://www.nrcs.usda.gov/wps/portal/nrcs/detail/soils/survey/geo/?cid=nrcseprd1464625)\",\"item_assets\":{\"data\":{\"type\":\"application/x-parquet\",\"roles\":[\"data\"],\"table:storage_options\":{\"account_name\":\"soils\"}}},\"stac_version\":\"1.0.0\",\"table:tables\":[{\"name\":\"chaashto\",\"description\":\"The Horizon AASHTO table contains the American Association of State Highway Transportation Officials classification(s) for the referenced horizon. One row in this table is marked as the representative AASHTO classification for the horizon.\"},{\"name\":\"chconsistence\",\"description\":\"The Horizon Consistence table contains descriptive terms of soil consistence -- rupture resistance, plasticity, and stickiness -- for the referenced horizon. \ One row in this table is marked as having the representative characteristics for the horizon.\"},{\"name\":\"chdesgnsuffix\",\"description\":\"The Horizon Designation Suffix table contains the designation suffix(es), one per row, \ for the referenced horizon. For example, the \\\"h\\\" and \\\"s\\\" of a Bhs horizon appear as two rows in this table.\"},{\"name\":\"chfrags\",\"description\":\"The Horizon Fragments table lists the mineral and organic fragments that generally occur in the referenced horizon. If the Volume % is greater than zero (low=5, RV=10, high=15) in a row, the kind and size of fragment in that row exists everywhere this horizon and component occur in the map unit. If the Volume % includes zero (low=0, RV=5, high=10), the kind and size of fragment may exist in some places, but not in others.\"},{\"name\":\"chorizon\",\"description\":\"The Horizon table lists the horizon(s) and related data for the referenced map unit component. If the horizon thickness is greater than zero (low=5, RV=8, high=12), the horizon exists everywhere this component occurs. If the horizon thickness includes zero (low=0, RV=1, high=3), the horizon may exist in some places, but not in other places.\\r\\nHorizons that have two distinct parts, such as E/B or E&Bt horizons, are recorded twice. Once for the characteristics of the first part; and again on another row, using the same depths and thicknesses, for the characteristics of the other part.\"},{\"name\":\"chpores\",\"description\":\"The Horizon Pores table lists the voids for the referenced horizon. If the Quantity is greater than zero (low=2, RV=5, high=10) in a row, the voids in that row exist everywhere the horizon and component occur in the map unit. If the Quantity includes zero (low=0, RV=2, high=5), the voids may exist in some places, but not in others. More than one row can be marked as an RV row because a horizon may have more than one size or shape of void.\"},{\"name\":\"chstruct\",\"description\":\"The Horizon Structure table lists the individual soil structure size, grade, and shape terms for the referenced horizon. Terms in this table are assembled into a structure group string which is recorded in the Horizon Structure Group table.\"},{\"name\":\"chstructgrp\",\"description\":\"The Horizon Structure Group table lists the ranges of soil structure for the referenced horizon. \ The row with the typically occurring structure is marked as being representative. \ The entry in this table is based on grouping of entries in the Horizon Structure table.\"},{\"name\":\"chtext\",\"description\":\"The Horizon Text table contains notes and narrative descriptions related to the referenced horizon. Some notes may provide additional information about the horizon for which there is no explicit column for such data. In many cases, the table is empty for a particular horizon.\"},{\"name\":\"chtexture\",\"description\":\"The Horizon Texture table lists the individual texture(s), or term(s) used in lieu of texture, for the referenced horizon. Only the unmodified texture terms are listed in the Horizon Texture table; modifiers are listed in the Horizon Texture Modifier table. For example, a gravelly loamy sand is shown as \\\"GR-LS\\\" in the Horizon Texture Group table, \\\"ls\\\" in the Horizon Texture table, and \\\"gr\\\" in the Horizon Texture Modifier table.\"},{\"name\":\"chtexturegrp\",\"description\":\"The Horizon Texture Group table lists the range of textures for the referenced horizon as a concatenation of horizon texture and texture modifier(s). For example, a horizon that is gravelly loamy sand in some places and gravelly loamy coarse sand in other places is shown as GR-LS on one row and GR-LCOS on another row in this table. The row with the typically occurring texture is identified as the RV row. Stratified textures are shown in one row. For example, a horizon that is stratified gravelly loamy fine sand and cobbly coarse sand is shown as SR- GR-LFS CB-COS on one row and the Stratified? column for that row is marked \\\"yes\\\". If two or more textures always occur together but are not stratified, all of the textures are listed on one row and the Stratified? column for that row is marked \\\"no\\\".\"},{\"name\":\"chtexturemod\",\"description\":\"The Horizon Texture Modifier table lists the texture modifier(s) for the referenced texture. For example, a gravelly loamy sand is shown as \\\"GR-LS\\\" in the Horizon Texture Group table, \\\"ls\\\" in the Horizon Texture table, and \\\"gr\\\" in this table.\"},{\"name\":\"chunified\",\"description\":\"The Horizon Unified table contains the Unified Soil Classification(s) for the referenced horizon. One row in the Horizon Unified table is marked as the representative Unified classification for the horizon.\"},{\"name\":\"cocanopycover\",\"description\":\"The Component Canopy Cover table lists the overstory plants that typically occur on the referenced map unit component.\"},{\"name\":\"cocropyld\",\"description\":\"The Component Crop Yield table lists commonly grown crops and their expected range in yields when grown on the referenced map unit component. Yields for the map unit as a whole are given in the Mapunit Crop Yield table.\"},{\"name\":\"codiagfeatures\",\"description\":\"The Component Diagnostic Features table lists the typical soil features, such as ochric epipedon or cambic horizon, for the referenced map unit component.\"},{\"name\":\"coecoclass\",\"description\":\"The Component Ecological Classification table identifies the ecological sites typically associated with the referenced map unit component. These may include the official NRCS forestland and rangland ecological sites, as well as those of other classification systems, such as the USFS Habitat Types.\"},{\"name\":\"coeplants\",\"description\":\"The Component Existing Plants table lists the plants, either rangeland or forestland plants, that typically occur on the referenced map unit component.\"},{\"name\":\"coerosionacc\",\"description\":\"The Component Erosion Accelerated table lists the kinds of accelerated erosion that occur on the referenced map unit component. One row in this table is marked as the representative kind of accelerated erosion for that component.\"},{\"name\":\"coforprod\",\"description\":\"The Component Forest Productivity table lists the site index and the annual productivity in cubic feet per acre per year (CAMI) of forest overstory tree species that typically occur on the referenced map unit component.\"},{\"name\":\"coforprodo\",\"description\":\"The Component Forest Productivity - Other table lists the site index and annual productivity of forest overstory tree species in units other than cubic feet per acre per year for trees that typically occur on the referenced map unit component.\"},{\"name\":\"cogeomordesc\",\"description\":\"The Component Geomorphic Description table lists the geomorphic features on which the referenced map unit component typically occurs.\"},{\"name\":\"cohydriccriteria\",\"description\":\"The Component Hydric Criteria table lists the hydric soil criteria met for those referenced map unit components that are classified as a \\\"hydric soil.\\\"\"},{\"name\":\"cointerp\",\"description\":\"The Component Interpretation table lists the predictions of behavior and limiting features for specified uses made for the referenced map unit component.\"},{\"name\":\"comonth\",\"description\":\"The Component Month table lists the monthly flooding and ponding characteristics for the referenced map unit component. This table has one row for each month of the year.\"},{\"name\":\"component\",\"description\":\"The Component table lists the map unit components identified in the referenced map unit, and selected properties of each component. If the Component % is greater than zero (low=65, RV=75, high=90) for a component, that component exists in every delineation of that mapunit. If the Component % includes zero (low=0, RV=50, high=90), the component may exist in some delineations, but not in others.\"},{\"name\":\"copm\",\"description\":\"The Component Parent Material table lists the individual parent material(s) for the referenced map unit component. In some cases where soils developed in multiple materials in a vertical sequence, that sequence will be noted. \ In other cases multiple entries with no vertical sequence noted indicates the soil may have formed in one of the materials listed.\"},{\"name\":\"copmgrp\",\"description\":\"The Component Parent Material Group table lists the concatenated string of parent material(s) in which the referenced map unit component formed based on entries in the Component Parent Material table. For example, a component formed in one parent material, such as loess, or one vertical sequence of parent materials, such as loamy glacial drift over silty residuum weathered from shale, has one row in this table. A component formed in one parent material in some locations, but another parent material (or sequence of parent materials) in other locations has two rows in this table, one for each parent material (or sequence of parent materials). One row is identified as the representative parent material.\"},{\"name\":\"copwindbreak\",\"description\":\"The Component Potential Windbreak table lists the windbreak plant species commonly recommended for the referenced map unit component. A windbreak plant listed in this table may be used alone or in combination with other plants.\"},{\"name\":\"corestrictions\",\"description\":\"The Component Restrictions table lists the root restrictive feature(s) or layer(s) for the referenced map unit component. If the thickness of the restrictive layer is greater than zero (low=5, RV=8, high=10), the restrictive layer exists in all delineations of the map unit where the component occurs. If the thickness of the restrictive layer includes zero (low=0, RV=2, high=5), the restrictive layer may exist in some delineations, but not in others. This table will be empty if the component does not have restrictive features, but could have several rows if several restrictive features occur in the soil.\"},{\"name\":\"cosoilmoist\",\"description\":\"The Component Soil Moisture table describes the typical soil moisture profile for the referenced map unit component during the month referenced in the Component Month table. The soil moisture profiles for each month, taken as a group of twelve months, describe the representative situation for the component throughout the year.\"},{\"name\":\"cosoiltemp\",\"description\":\"The Component Soil Temperature table describes the typical soil temperature profile for the referenced map unit component during the month referenced in the Component Month table. The soil temperature profiles for each month, taken as a group of twelve months, describe the representative situation for the component throughout the year.\"},{\"name\":\"cosurffrags\",\"description\":\"The Component Surface Fragments table lists the organic or mineral fragments that generally occur on the surface of the referenced map unit component. If the cover percent is greater than zero (low=0.1, RV=1, high=3) for a row in this table, the fragment is in every delineation of the map unit where the referenced component occurs. If the Cover % includes zero (low=0, RV=0.01, high=1) for a row in this table, the fragment may exist in some delineations and not in others.\"},{\"name\":\"cosurfmorphgc\",\"description\":\"The Component Three Dimensional Surface Morphometry table lists the typical geomorphic position (s) of the referenced map unit component, in three dimension terms. \ The geomorphic position(s) listed in this table apply to the geomorphic feature referenced in the Component Geomorphic Description table.\"},{\"name\":\"cosurfmorphhpp\",\"description\":\"The Component Two Dimensional Surface Morphometry table lists the geomorphic position(s) of the referenced map unit component, in two dimensional hillslope profile terms. The geomorphic position(s) listed in this table apply to the geomorphic feature referenced in the Component Geomorphic Description table.\"},{\"name\":\"cosurfmorphmr\",\"description\":\"The Component Microrelief Surface Morphometry table lists microrelief features associated with the referenced geomorphic (microfeature) feature shown in the Component Geomorphic Description table.\"},{\"name\":\"cosurfmorphss\",\"description\":\"The Component Slope Shape Surface Morphometry table lists the geomorphic shape(s) of the referenced map unit component, in slope shape terms. The slope shape terms listed in this table apply to the referenced geomorphic feature shown in the Component Geomorphic Description table.\"},{\"name\":\"cotaxfmmin\",\"description\":\"The Component Taxonomic Family Mineralogy table lists the mineralogy characteristics, as defined in Soil Taxonomy, that apply to the referenced map unit component.\"},{\"name\":\"cotaxmoistcl\",\"description\":\"The Component Taxonomic Moisture Class table provides clear identification of the intended taxonomic moisture class, as defined in Soil Taxonomy, that apply to the referenced map unit component, even though moisture class is implied at a higher taxonomic level. The class or classes listed in this table describe the representative situation for the component.\"},{\"name\":\"cotext\",\"description\":\"The Component Text table contains notes and narrative descriptions for the referenced map unit component. In many cases, the table will be empty for a particular component.\"},{\"name\":\"cotreestomng\",\"description\":\"The Component Trees To Manage table lists the trees commonly recommended for managing on the referenced map unit component.\"},{\"name\":\"cotxfmother\",\"description\":\"The Component Taxonomic Family Other Criteria table lists the other taxonomic characteristics, such as classes of coatings or permanent cracks, as defined in Soil Taxonomy, that apply to the referenced map unit component. The characteristics listed in this table describe the representative situation for the component.\"},{\"name\":\"distinterpmd\",\"description\":\"The Distribution Interp Metadata table records the set of NASIS fuzzy logic interpretations which were generated for the map unit components included in a set of distribution data.\"},{\"name\":\"distlegendmd\",\"description\":\"The Distribution Legend Metadata table records information about the legends or soil survey areas selected for inclusion in a set of distributed data. The presence of a legend in this table does not imply that all of the available data for that legend was included in the set of data that was distributed. Only certain map units and components for that legend may have been selected. The record of the criteria used for selecting map units and components may be found in the Distribution Metadata table.\"},{\"name\":\"distmd\",\"description\":\"The Distribution Metadata table records information associated with the selection of a set of data for distribution to some entity or information system external to NASIS. A set of distribution data may include only selected map units from a legend or legends, and only selected components of those map units. This table records the criteria used for selecting map units and components for inclusion in the set of distributed data. Other recorded information includes the name of the NASIS user who initiated a distribution request, and the times when that request was made, and when that request was ultimately processed.\"},{\"name\":\"laoverlap\",\"description\":\"The Legend Area Overlap table lists the geographic areas that are coincident with the soil survey area identified in the Legend table. For example, a survey area that covers two counties would have two rows in this table, one for each county. Other types of geographic areas listed might include state, MLRA, rainfall (R) factor area, climate (C) factor area, etc.\"},{\"name\":\"legend\",\"description\":\"The Legend table identifies the soil survey area that the legend is related to, and related information about that legend.\"},{\"name\":\"legendtext\",\"description\":\"The Legend Text table contains notes and narrative descriptions related to the referenced legend. Legend text is optional. In many cases, this table is empty.\"},{\"name\":\"mapunit\",\"description\":\"The Mapunit table identifies the map units included in the referenced legend. Data related the map unit as a whole are also given.\"},{\"name\":\"muaggatt\",\"description\":\"The Mapunit Aggregated Attribute table records a variety of soil attributes and interpretations that have been aggregated from the component level to a single value at the map unit level. They have been aggregated by one or more appropriate means in order to express a consolidated value or interpretation for the map unit as a whole.\"},{\"name\":\"muaoverlap\",\"description\":\"The Mapunit Area Overlap table lists the map units that exist in the overlap between the entire soil survey area and the referenced geographic area in the Legend Area Overlap table.\"},{\"name\":\"mucropyld\",\"description\":\"The Mapunit Crop Yield table lists commonly grown crops and their expected yields for the referenced map unit as a whole. Yields for individual map unit components are given in the Component Crop Yield table.\"},{\"name\":\"mutext\",\"description\":\"The Mapunit Text table contains notes and narrative descriptions related to the referenced map unit.\"},{\"name\":\"sacatalog\",\"description\":\"This table records the primary dynamic metadata associated with a soil survey area. This includes such things as survey area version, tabular data version, etc. The remaining dynamic metadata, which soil interpretations were generated for the corresponding soil survey area, is recorded in the Survey Area Interpretation table.\"},{\"name\":\"sainterp\",\"description\":\"This table records information about the soil interpretations that were generated for a soil survey area.\"},{\"name\":\"valu1\",\"description\":\"Included with the gSSURGO database, but not a part of the standard SSURGO dataset is a table called Valu1. This table contains 57 pre-summarized or 'ready to map' attributes derived from the official SSURGO database. These attribute data are pre-summarized to the map unit level using best-practice generalization methods intended to meet the needs of most users. The generalization methods include map unit component weighted averages and percent of the map unit meeting a given criteria. These themes were prepared to better meet the mapping needs of users of soil survey information and can be used with both SSURGO and gridded SSURGO (gSSURGO) datasets.\"}],\"msft:group_id\":\"gnatsgo\",\"msft:container\":\"gnatsgo-stac\",\"stac_extensions\":[\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"soils\",\"msft:short_description\":\"The gridded National Soil Survey Geographic Database (gNATSGO) is a USDA-NRCS Soil & Plant Science Division (SPSD) composite database that provides complete coverage of the best available soils information for all areas of the United States and Island Territories.\",\"msft:region\":\"westeurope\"},{\"id\":\"hgb\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"license\",\"href\":\"https://earthdata.nasa.gov/earth-observation-data/data-use-policy\",\"title\":\"EOSDIS Data Use Policy\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/hgb\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"HGB: Harmonized Global Biomass for 2010\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/hgb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Harmonized Global Biomass\"},\"geoparquet-items\":{\"href\":\"abfs://items/hgb.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-61.002778,180.0,84.0]]},\"temporal\":{\"interval\":[[\"2010-12-31T00:00:00Z\",\"2010-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Biomass\",\"Carbon\",\"ORNL\"],\"providers\":[{\"url\":\"https://daac.ornl.gov/cgi-bin/dsviewer.pl?ds_id=1763\",\"name\":\"Oak Ridge National Laboratory Distributed Active Archive Center\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://carbonplan.org\",\"name\":\"CarbonPlan\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[300]},\"description\":\"This dataset provides temporally consistent and harmonized global maps of aboveground and belowground biomass carbon density for the year 2010 at 300m resolution. The aboveground biomass map integrates land-cover-specific, remotely sensed maps of woody, grassland, cropland, and tundra biomass. Input maps were amassed from the published literature and, where necessary, updated to cover the focal extent or time period. The belowground biomass map similarly integrates matching maps derived from each aboveground biomass map and land-cover-specific empirical models. Aboveground and belowground maps were then integrated separately using ancillary maps of percent tree/land cover and a rule-based decision tree. Maps reporting the accumulated uncertainty of pixel-level estimates are also provided.\\n\",\"item_assets\":{\"aboveground\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Global above-ground biomass\"},\"belowground\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Global below-ground biomass\"},\"aboveground_uncertainty\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Uncertainty associated with global above-ground biomass\"},\"belowground_uncertainty\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Uncertainty associated with global below-ground biomass\"}},\"stac_version\":\"1.0.0\",\"msft:container\":\"cpdata\",\"stac_extensions\":[\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"cpdataeuwest\",\"msft:short_description\":\"Global maps of aboveground and belowground biomass carbon density for the year 2010 at 300m resolution\",\"msft:region\":\"westeurope\"},{\"id\":\"cop-dem-glo-30\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/cop-dem-glo-30\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Copernicus DEM GLO-30\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/cop-dem.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"COP DEM GLO-30\"},\"geoparquet-items\":{\"href\":\"abfs://items/cop-dem-glo-30.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"DSM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[30],\"platform\":[\"tandem-x\"]},\"description\":\"The Copernicus DEM is a digital surface model (DSM), which represents the surface of the Earth including buildings, infrastructure, and vegetation. This DSM is based on radar satellite data acquired during the TanDEM-X Mission, which was funded by a public-private partnership between the German Aerospace Centre (DLR) and Airbus Defence and Space.\\n\\nCopernicus DEM is available at both 30-meter and 90-meter resolution; this dataset has a horizontal resolution of approximately 30 meters.\\n\\nSee the [Product Handbook](https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf) for more information.\\n\\nSee the dataset page on OpenTopography: \\n\\n\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"copernicus-dem\",\"msft:container\":\"copernicus-dem-stac\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"elevationeuwest\",\"msft:short_description\":\"Copernicus DEM 30 is a near-global digital surface model (DSM) with a horizontal resolution of approximately 30 meters, derived from radar satellite data acquired during the TanDEM-X mission.\",\"msft:region\":\"westeurope\"},{\"id\":\"cop-dem-glo-90\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/cop-dem-glo-90\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Copernicus DEM GLO-90\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/cop-dem-glo-90.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"COP DEM GLO-90\"},\"geoparquet-items\":{\"href\":\"abfs://items/cop-dem-glo-90.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[90],\"platform\":[\"tandem-x\"]},\"description\":\"The Copernicus DEM is a digital surface model (DSM), which represents the surface of the Earth including buildings, infrastructure, and vegetation. This DSM is based on radar satellite data acquired during the TanDEM-X Mission, which was funded by a public-private partnership between the German Aerospace Centre (DLR) and Airbus Defence and Space.\\n\\nCopernicus DEM is available at both 30-meter and 90-meter resolution; this dataset has a horizontal resolution of approximately 90 meters.\\n\\nSee the [Product Handbook](https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf) for more information.\\n\\nSee the dataset page on OpenTopography: \\n\\n\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"copernicus-dem\",\"msft:container\":\"copernicus-dem-stac\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"elevationeuwest\",\"msft:short_description\":\"Copernicus DEM 90 is a near-global digital surface model (DSM) with a horizontal resolution of approximately 90 meters, derived from radar satellite data acquired during the TanDEM-X mission.\",\"msft:region\":\"westeurope\"},{\"id\":\"terraclimate\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/publicdomain/zero/1.0/legalcode\",\"type\":\"text/html\",\"title\":\"CC0-1.0 License\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/terraclimate\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"TerraClimate\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/terraclimate.png\",\"role\":[\"thumbnail\"],\"type\":\"image/png\",\"title\":\"TerraClimate thumbnail\"},\"zarr-abfs\":{\"href\":\"az://cpdata/terraclimate.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"TerraClimate Azure Blob File System Zarr root\",\"description\":\"Azure Blob File System URI of the TerraClimate Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"zarr-https\":{\"href\":\"https://cpdataeuwest.blob.core.windows.net/cpdata/terraclimate.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"TerraClimate HTTPS Zarr root\",\"description\":\"HTTPS URI of the TerraClimate Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1958-01-01T00:00:00Z\",\"2021-12-01T00:00:00Z\"]]}},\"license\":\"CC0-1.0\",\"keywords\":[\"TerraClimate\",\"Water\",\"Precipitation\",\"Temperature\",\"Vapor Pressure\",\"Climate\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"http://www.climatologylab.org/terraclimate.html\",\"name\":\"Climatology Lab\",\"roles\":[\"producer\"]},{\"url\":\"https://www.nature.com/articles/sdata2017191\",\"name\":\"Abatzoglou, J.T., S.Z. Dobrowski, S.A. Parks, K.C. Hegewisch\",\"roles\":[\"producer\"]}],\"description\":\"[TerraClimate](http://www.climatologylab.org/terraclimate.html) is a dataset of monthly climate and climatic water balance for global terrestrial surfaces from 1958 to the present. These data provide important inputs for ecological and hydrological studies at global scales that require high spatial resolution and time-varying data. All data have monthly temporal resolution and a ~4-km (1/24th degree) spatial resolution. This dataset is provided in [Zarr](https://zarr.readthedocs.io/) format.\\n\",\"stac_version\":\"1.0.0\",\"cube:variables\":{\"q\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"runoff_amount\",\"dimensions\":\"lon lat time\",\"description\":\"Runoff\",\"grid_mapping\":\"crs\",\"standard_name\":\"runoff_amount\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Runoff\"},\"ws\":{\"type\":\"data\",\"unit\":\"m/s\",\"attrs\":{\"units\":\"m/s\",\"long_name\":\"wind_speed\",\"dimensions\":\"lon lat time\",\"description\":\"Wind Speed at 10-m\",\"grid_mapping\":\"crs\",\"standard_name\":\"wind_speed\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Wind Speed at 10-m\"},\"aet\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"water_evaporation_amount\",\"dimensions\":\"lon lat time\",\"description\":\"Actual Evapotranspiration\",\"grid_mapping\":\"crs\",\"standard_name\":\"water_evaporation_amount\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Actual Evapotranspiration\"},\"def\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"water_potential_evaporation_amount_minus_water_evaporation_amount\",\"dimensions\":\"lon lat time\",\"description\":\"Climatic Water Deficit\",\"grid_mapping\":\"crs\",\"standard_name\":\"water_potential_evaporation_amount_minus_water_evaporation_amount\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Climatic Water Deficit\"},\"pet\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"water_potential_evaporation_amount\",\"dimensions\":\"lon lat time\",\"description\":\"Reference Evapotranspiration\",\"grid_mapping\":\"crs\",\"standard_name\":\"water_potential_evaporation_amount\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Reference Evapotranspiration\"},\"ppt\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"precipitation_amount\",\"dimensions\":\"lon lat time\",\"description\":\"Accumulated Precipitation\",\"grid_mapping\":\"crs\",\"standard_name\":\"precipitation_amount\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Accumulated Precipitation\"},\"swe\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"liquid_water_content_of_surface_snow\",\"dimensions\":\"lon lat time\",\"description\":\"Snow Water Equivalent at End of Month\",\"grid_mapping\":\"crs\",\"standard_name\":\"liquid_water_content_of_surface_snow\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Snow Water Equivalent at End of Month\"},\"vap\":{\"type\":\"data\",\"unit\":\"kPa\",\"attrs\":{\"units\":\"kPa\",\"long_name\":\"water_vapor_partial_pressure_in_air\",\"dimensions\":\"lon lat time\",\"description\":\"2-m Vapor Pressure\",\"grid_mapping\":\"crs\",\"standard_name\":\"water_vapor_partial_pressure_in_air\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"2-m Vapor Pressure\"},\"vpd\":{\"type\":\"data\",\"unit\":\"kPa\",\"attrs\":{\"units\":\"kPa\",\"long_name\":\"vapor_pressure_deficit\",\"dimensions\":\"lon lat time\",\"description\":\"Vapor Pressure Deficit\",\"grid_mapping\":\"crs\",\"standard_name\":\"vapor_pressure_deficit\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Vapor Pressure Deficit\"},\"pdsi\":{\"type\":\"data\",\"unit\":\"unitless\",\"attrs\":{\"units\":\"unitless\",\"long_name\":\"palmer_drought_severity_index\",\"dimensions\":\"lon lat time\",\"description\":\"Palmer Drought Severity Index\",\"grid_mapping\":\"crs\",\"standard_name\":\"palmer_drought_severity_index\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Palmer Drought Severity Index\"},\"soil\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"soil_moisture_content\",\"dimensions\":\"lon lat time\",\"description\":\"Soil Moisture at End of Month\",\"grid_mapping\":\"crs\",\"standard_name\":\"soil_moisture_content\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Soil Moisture at End of Month\"},\"srad\":{\"type\":\"data\",\"unit\":\"W/m^2\",\"attrs\":{\"units\":\"W/m^2\",\"long_name\":\"downwelling_shortwave_flux_in_air\",\"dimensions\":\"lon lat time\",\"description\":\"Downward Shortwave Radiation Flux at the Surface\",\"grid_mapping\":\"crs\",\"standard_name\":\"downwelling_shortwave_flux_in_air\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Downward Shortwave Radiation Flux at the Surface\"},\"tmax\":{\"type\":\"data\",\"unit\":\"degC\",\"attrs\":{\"units\":\"degC\",\"long_name\":\"air_temperature\",\"dimensions\":\"lon lat time\",\"description\":\"Maximum 2-m Temperature\",\"grid_mapping\":\"crs\",\"standard_name\":\"air_temperature\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Maximum 2-m Temperature\"},\"tmin\":{\"type\":\"data\",\"unit\":\"degC\",\"attrs\":{\"units\":\"degC\",\"long_name\":\"air_temperature\",\"dimensions\":\"lon lat time\",\"description\":\"Minimum 2-m Temperature\",\"grid_mapping\":\"crs\",\"standard_name\":\"air_temperature\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Minimum 2-m Temperature\"}},\"msft:container\":\"cpdata\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"type\":\"spatial\",\"extent\":[-89.97916666666664,89.97916666666667],\"description\":\"latitude\",\"reference_system\":4326},\"lon\":{\"axis\":\"x\",\"type\":\"spatial\",\"extent\":[-179.97916666666666,179.97916666666666],\"description\":\"longitude\",\"reference_system\":4326},\"time\":{\"type\":\"temporal\",\"extent\":[\"1958-01-01T00:00:00Z\",\"2021-12-01T00:00:00Z\"],\"description\":\"time\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/xarray-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"cpdataeuwest\",\"msft:short_description\":\"High-resolution global dataset of monthly climate and climatic water balance\",\"msft:region\":\"westeurope\"},{\"id\":\"nasa-nex-gddp-cmip6\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6\"},{\"rel\":\"license\",\"href\":\"https://pcmdi.llnl.gov/CMIP6/TermsOfUse/TermsOfUse6-1.html\",\"type\":\"text/html\",\"title\":\"CMIP6 Terms of Use\"},{\"rel\":\"documentation\",\"href\":\"https://www.nccs.nasa.gov/sites/default/files/NEX-GDDP-CMIP6-Tech_Note.pdf\",\"type\":\"application/pdf\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/nasa-nex-gddp-cmip6\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/nasa-nex-gddp-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"thumbnail\"},\"CESM2.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/CESM2_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"CESM2-historical references\",\"cmip6:model\":\"CESM2\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"geoparquet-items\":{\"href\":\"abfs://items/nasa-nex-gddp-cmip6.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}},\"MIROC6.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/MIROC6_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"MIROC6-historical references\",\"cmip6:model\":\"MIROC6\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"TaiESM1.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/TaiESM1_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"TaiESM1-historical references\",\"cmip6:model\":\"TaiESM1\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"CMCC-ESM2.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/CMCC-ESM2_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"CMCC-ESM2-historical references\",\"cmip6:model\":\"CMCC-ESM2\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"KIOST-ESM.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/KIOST-ESM_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"KIOST-ESM-historical references\",\"cmip6:model\":\"KIOST-ESM\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"ACCESS-CM2.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/ACCESS-CM2_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"ACCESS-CM2-historical references\",\"cmip6:model\":\"ACCESS-CM2\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"KACE-1-0-G.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/KACE-1-0-G_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"KACE-1-0-G-historical references\",\"cmip6:model\":\"KACE-1-0-G\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"MIROC-ES2L.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/MIROC-ES2L_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"MIROC-ES2L-historical references\",\"cmip6:model\":\"MIROC-ES2L\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"MRI-ESM2-0.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/MRI-ESM2-0_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"MRI-ESM2-0-historical references\",\"cmip6:model\":\"MRI-ESM2-0\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"NorESM2-LM.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/NorESM2-LM_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"NorESM2-LM-historical references\",\"cmip6:model\":\"NorESM2-LM\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"NorESM2-MM.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/NorESM2-MM_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"NorESM2-MM-historical references\",\"cmip6:model\":\"NorESM2-MM\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"CESM2-WACCM.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/CESM2-WACCM_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"CESM2-WACCM-historical references\",\"cmip6:model\":\"CESM2-WACCM\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"UKESM1-0-LL.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/UKESM1-0-LL_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"UKESM1-0-LL-historical references\",\"cmip6:model\":\"UKESM1-0-LL\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"CMCC-CM2-SR5.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/CMCC-CM2-SR5_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"CMCC-CM2-SR5-historical references\",\"cmip6:model\":\"CMCC-CM2-SR5\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"IPSL-CM6A-LR.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/IPSL-CM6A-LR_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"IPSL-CM6A-LR-historical references\",\"cmip6:model\":\"IPSL-CM6A-LR\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"MPI-ESM1-2-HR.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/MPI-ESM1-2-HR_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"MPI-ESM1-2-HR-historical references\",\"cmip6:model\":\"MPI-ESM1-2-HR\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"MPI-ESM1-2-LR.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/MPI-ESM1-2-LR_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"MPI-ESM1-2-LR-historical references\",\"cmip6:model\":\"MPI-ESM1-2-LR\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1950-01-01T00:00:00Z\",\"2100-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"CMIP6\",\"NASA\",\"Climate\",\"Humidity\",\"Precipitation\",\"Temperature\"],\"providers\":[{\"url\":\"https://www.nasa.gov/nex\",\"name\":\"NASA NEX\",\"roles\":[\"producer\"]},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"cmip6:model\":[\"ACCESS-CM2\",\"ACCESS-ESM1-5\",\"BCC-CSM2-MR\",\"CESM2\",\"CESM2-WACCM\",\"CMCC-CM2-SR5\",\"CMCC-ESM2\",\"CNRM-CM6-1\",\"CNRM-ESM2-1\",\"CanESM5\",\"EC-Earth3\",\"EC-Earth3-Veg-LR\",\"FGOALS-g3\",\"GFDL-CM4\",\"GFDL-CM4_gr2\",\"GFDL-ESM4\",\"GISS-E2-1-G\",\"HadGEM3-GC31-LL\",\"HadGEM3-GC31-MM\",\"IITM-ESM\",\"INM-CM4-8\",\"INM-CM5-0\",\"IPSL-CM6A-LR\",\"KACE-1-0-G\",\"KIOST-ESM\",\"MIROC-ES2L\",\"MIROC6\",\"MPI-ESM1-2-HR\",\"MPI-ESM1-2-LR\",\"MRI-ESM2-0\",\"NESM3\",\"NorESM2-LM\",\"NorESM2-MM\",\"TaiESM1\",\"UKESM1-0-LL\"],\"cmip6:scenario\":[\"historical\",\"ssp245\",\"ssp585\"],\"cmip6:variable\":[\"hurs\",\"huss\",\"pr\",\"rlds\",\"rsds\",\"sfcWind\",\"tas\",\"tasmax\",\"tasmin\"]},\"description\":\"The NEX-GDDP-CMIP6 dataset is comprised of global downscaled climate scenarios derived from the General Circulation Model (GCM) runs conducted under the Coupled Model Intercomparison Project Phase 6 (CMIP6) and across two of the four \u201CTier 1\u201D greenhouse gas emissions scenarios known as Shared Socioeconomic Pathways (SSPs). The CMIP6 GCM runs were developed in support of the Sixth Assessment Report of the Intergovernmental Panel on Climate Change (IPCC AR6). This dataset includes downscaled projections from ScenarioMIP model runs for which daily scenarios were produced and distributed through the Earth System Grid Federation. The purpose of this dataset is to provide a set of global, high resolution, bias-corrected climate change projections that can be used to evaluate climate change impacts on processes that are sensitive to finer-scale climate gradients and the effects of local topography on climate conditions.\\n\\nThe [NASA Center for Climate Simulation](https://www.nccs.nasa.gov/) maintains the [next-gddp-cmip6 product page](https://www.nccs.nasa.gov/services/data-collections/land-based-products/nex-gddp-cmip6) where you can find more information about these datasets. Users are encouraged to review the [technote](https://www.nccs.nasa.gov/sites/default/files/NEX-GDDP-CMIP6-Tech_Note.pdf), provided alongside the data set, where more detailed information, references and acknowledgements can be found.\\n\\nThis collection contains many NetCDF files. There is one NetCDF file per `(model, scenario, variable, year)` tuple.\\n\\n- **model** is the name of a modeling group (e.g. \\\"ACCESS-CM-2\\\"). See the `cmip6:model` summary in the STAC collection for a full list of models.\\n- **scenario** is one of \\\"historical\\\", \\\"ssp245\\\" or \\\"ssp585\\\".\\n- **variable** is one of \\\"hurs\\\", \\\"huss\\\", \\\"pr\\\", \\\"rlds\\\", \\\"rsds\\\", \\\"sfcWind\\\", \\\"tas\\\", \\\"tasmax\\\", \\\"tasmin\\\".\\n- **year** depends on the value of *scenario*. For \\\"historical\\\", the values range from 1950 to 2014 (inclusive). For \\\"ssp245\\\" and \\\"ssp585\\\", the years range from 2015 to 2100 (inclusive).\\n\\nIn addition to the NetCDF files, we provide some *experimental* **reference files** as collection-level dataset assets. These are JSON files implementing the [references specification](https://fsspec.github.io/kerchunk/spec.html).\\nThese files include the positions of data variables within the binary NetCDF files, which can speed up reading the metadata. See the example notebook for more.\",\"item_assets\":{\"pr\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Precipitation\",\"description\":\"Precipitation\"},\"tas\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Daily Near-Surface Air Temperature\",\"description\":\"Daily Near-Surface Air Temperature\"},\"hurs\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Near-Surface Relative Humidity\",\"description\":\"Near-Surface Relative Humidity\"},\"huss\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Near-Surface Specific Humidity\",\"description\":\"Near-Surface Specific Humidity\"},\"rlds\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Surface Downwelling Longwave Radiation\",\"description\":\"Surface Downwelling Longwave Radiation\"},\"rsds\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Surface Downwelling Shortwave Radiation\",\"description\":\"Surface Downwelling Shortwave Radiation\"},\"tasmax\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Daily Maximum Near-Surface Air Temperature\",\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Daily Minimum Near-Surface Air Temperature\",\"description\":\"Daily Minimum Near-Surface Air Temperature\"},\"sfcWind\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Daily-Mean Near-Surface Wind Speed\",\"description\":\"Daily-Mean Near-Surface Wind Speed\"}},\"sci:citation\":\"Climate scenarios used were from the NEX-GDDP-CMIP6 dataset, prepared by the Climate Analytics Group and NASA Ames Research Center using the NASA Earth Exchange, and distributed by the NASA Center for Climate Simulation (NCCS).\",\"stac_version\":\"1.0.0\",\"cube:variables\":{\"pr\":{\"type\":\"data\",\"unit\":\"kg m-2 s-1\",\"attrs\":{\"units\":\"kg m-2 s-1\",\"comment\":\"includes both liquid and solid phases\",\"long_name\":\"Precipitation\",\"cell_methods\":\"area: time: mean\",\"cell_measures\":\"area: areacella\",\"standard_name\":\"precipitation_flux\"},\"shape\":[365,600,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Precipitation\"},\"tas\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"near-surface (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin\",\"long_name\":\"Daily Near-Surface Air Temperature\",\"cell_methods\":\"area: mean time: maximum\",\"cell_measures\":\"area: areacella\",\"standard_name\":\"air_temperature\"},\"shape\":[365,600,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Near-Surface Air Temperature\"},\"hurs\":{\"type\":\"data\",\"unit\":\"%\",\"attrs\":{\"units\":\"%\",\"comment\":\"The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.\",\"long_name\":\"Near-Surface Relative Humidity\",\"cell_methods\":\"area: time: mean\",\"cell_measures\":\"area: areacella\",\"standard_name\":\"relative_humidity\"},\"shape\":[365,600,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Near-Surface Relative Humidity\"},\"huss\":{\"type\":\"data\",\"unit\":\"1\",\"attrs\":{\"units\":\"1\",\"comment\":\"Near-surface (usually, 2 meter) specific humidity.\",\"long_name\":\"Near-Surface Specific Humidity\",\"cell_methods\":\"area: time: mean\",\"cell_measures\":\"area: areacella\",\"standard_name\":\"specific_humidity\"},\"shape\":[365,600,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Near-Surface Specific Humidity\"},\"rlds\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"comment\":\"The surface called 'surface' means the lower boundary of the atmosphere. 'longwave' means longwave radiation. Downwelling radiation is radiation from above. It does not mean 'net downward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.\",\"long_name\":\"Surface Downwelling Longwave Radiation\",\"cell_methods\":\"area: time: mean\",\"cell_measures\":\"area: areacella\",\"standard_name\":\"surface_downwelling_longwave_flux_in_air\"},\"shape\":[365,600,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Surface Downwelling Longwave Radiation\"},\"rsds\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"comment\":\"Surface solar irradiance for UV calculations.\",\"long_name\":\"Surface Downwelling Shortwave Radiation\",\"cell_methods\":\"area: time: mean\",\"cell_measures\":\"area: areacella\",\"standard_name\":\"surface_downwelling_shortwave_flux_in_air\"},\"shape\":[365,600,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Surface Downwelling Shortwave Radiation\"},\"tasmax\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"maximum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: max')\",\"long_name\":\"Daily Maximum Near-Surface Air Temperature\",\"cell_methods\":\"area: mean time: maximum\",\"cell_measures\":\"area: areacella\",\"standard_name\":\"air_temperature\"},\"shape\":[365,600,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"minimum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: min')\",\"long_name\":\"Daily Minimum Near-Surface Air Temperature\",\"cell_methods\":\"area: mean time: minimum\",\"cell_measures\":\"area: areacella\",\"standard_name\":\"air_temperature\"},\"shape\":[365,600,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Minimum Near-Surface Air Temperature\"},\"sfcWind\":{\"type\":\"data\",\"unit\":\"m s-1\",\"attrs\":{\"units\":\"m s-1\",\"comment\":\"near-surface (usually, 10 meters) wind speed.\",\"long_name\":\"Daily-Mean Near-Surface Wind Speed\",\"cell_methods\":\"area: time: mean\",\"cell_measures\":\"area: areacella\",\"standard_name\":\"wind_speed\"},\"shape\":[365,600,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily-Mean Near-Surface Wind Speed\"}},\"msft:container\":\"nex-gddp-cmip6\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[-59.875,89.875],\"description\":\"latitude\",\"reference_system\":4326},\"lon\":{\"axis\":\"x\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[0.125,359.875],\"description\":\"longitude\",\"reference_system\":4326},\"time\":{\"step\":\"P1DT0H0M0S\",\"type\":\"temporal\",\"extent\":[\"1950-01-01T12:00:00Z\",\"2100-12-31T00:00:00Z\"],\"description\":\"time\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"nasagddp\",\"msft:short_description\":[\"Global downscaled climate scenarios derived from the General Circulation Model conducted under CMIP6.\"],\"msft:region\":\"westeurope\"},{\"id\":\"gpm-imerg-hhr\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/gpm-imerg-hhr\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"GPM IMERG\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gpm-imerg-hhr.png\",\"role\":[\"thumbnail\"],\"type\":\"image/png\",\"title\":\"gpm-imerg-hhr thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://imerg/gpm-imerg-hhr.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\"],\"description\":\"Azure Blob File System URI of the gpm-imerg-hhr Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"use_cftime\":true,\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"ai4edataeuwest\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-06-01T00:00:00Z\",\"2021-05-31T23:30:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.5067/GPM/IMERG/3B-HH/06\",\"keywords\":[\"IMERG\",\"GPM\",\"Precipitation\"],\"providers\":[{\"url\":\"https://developmentseed.org/\",\"name\":\"Development Seed\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://gpm.nasa.gov/data/directory\",\"name\":\"NASA\",\"roles\":[\"producer\"]}],\"description\":\"The Integrated Multi-satellitE Retrievals for GPM (IMERG) algorithm combines information from the [GPM satellite constellation](https://gpm.nasa.gov/missions/gpm/constellation) to estimate precipitation over the majority of the Earth's surface. This algorithm is particularly valuable over the majority of the Earth's surface that lacks precipitation-measuring instruments on the ground. Now in the latest Version 06 release of IMERG the algorithm fuses the early precipitation estimates collected during the operation of the TRMM satellite (2000 - 2015) with more recent precipitation estimates collected during operation of the GPM satellite (2014 - present). The longer the record, the more valuable it is, as researchers and application developers will attest. By being able to compare and contrast past and present data, researchers are better informed to make climate and weather models more accurate, better understand normal and extreme rain and snowfall around the world, and strengthen applications for current and future disasters, disease, resource management, energy production and food security.\\n\\nFor more, see the [IMERG homepage](https://gpm.nasa.gov/data/imerg) The [IMERG Technical documentation](https://gpm.nasa.gov/sites/default/files/2020-10/IMERG_doc_201006.pdf) provides more information on the algorithm, input datasets, and output products.\",\"sci:citation\":\"Huffman, G.J., E.F. Stocker, D.T. Bolvin, E.J. Nelkin, Jackson Tan (2019), GPM IMERG Final Precipitation L3 Half Hourly 0.1 degree x 0.1 degree V06, Greenbelt, MD, Goddard Earth Sciences Data and Information Services Center (GES DISC)\",\"stac_version\":\"1.0.0\",\"cube:variables\":{\"lat_bnds\":{\"type\":\"auxiliary\",\"unit\":\"degrees_north\",\"attrs\":{\"Units\":\"degrees_north\",\"units\":\"degrees_north\",\"coordinates\":\"lat latv\",\"DimensionNames\":\"lat,latv\"},\"shape\":[1800,2],\"chunks\":[1800,2],\"dimensions\":[\"lat\",\"latv\"]},\"lon_bnds\":{\"type\":\"auxiliary\",\"unit\":\"degrees_east\",\"attrs\":{\"Units\":\"degrees_east\",\"units\":\"degrees_east\",\"coordinates\":\"lon lonv\",\"DimensionNames\":\"lon,lonv\"},\"shape\":[3600,2],\"chunks\":[3600,2],\"dimensions\":[\"lon\",\"lonv\"]},\"time_bnds\":{\"type\":\"auxiliary\",\"attrs\":{\"Units\":\"seconds since 1970-01-01 00:00:00 UTC\",\"coordinates\":\"time nv\",\"DimensionNames\":\"time,nv\"},\"shape\":[368160,2],\"chunks\":[12,2],\"dimensions\":[\"time\",\"nv\"]},\"randomError\":{\"type\":\"data\",\"unit\":\"mm/hr\",\"attrs\":{\"Units\":\"mm/hr\",\"units\":\"mm/hr\",\"DimensionNames\":\"time,lon,lat\",\"CodeMissingValue\":\"-9999.9\"},\"shape\":[368160,3600,1800],\"chunks\":[12,3600,1800],\"dimensions\":[\"time\",\"lon\",\"lat\"]},\"HQprecipSource\":{\"type\":\"data\",\"attrs\":{\"DimensionNames\":\"time,lon,lat\",\"CodeMissingValue\":\"-9999\"},\"shape\":[368160,3600,1800],\"chunks\":[12,3600,1800],\"dimensions\":[\"time\",\"lon\",\"lat\"]},\"HQprecipitation\":{\"type\":\"data\",\"unit\":\"mm/hr\",\"attrs\":{\"Units\":\"mm/hr\",\"units\":\"mm/hr\",\"DimensionNames\":\"time,lon,lat\",\"CodeMissingValue\":\"-9999.9\"},\"shape\":[368160,3600,1800],\"chunks\":[12,3600,1800],\"dimensions\":[\"time\",\"lon\",\"lat\"]},\"IRprecipitation\":{\"type\":\"data\",\"unit\":\"mm/hr\",\"attrs\":{\"Units\":\"mm/hr\",\"units\":\"mm/hr\",\"DimensionNames\":\"time,lon,lat\",\"CodeMissingValue\":\"-9999.9\"},\"shape\":[368160,3600,1800],\"chunks\":[12,3600,1800],\"dimensions\":[\"time\",\"lon\",\"lat\"]},\"precipitationCal\":{\"type\":\"data\",\"unit\":\"mm/hr\",\"attrs\":{\"Units\":\"mm/hr\",\"units\":\"mm/hr\",\"DimensionNames\":\"time,lon,lat\",\"CodeMissingValue\":\"-9999.9\"},\"shape\":[368160,3600,1800],\"chunks\":[12,3600,1800],\"dimensions\":[\"time\",\"lon\",\"lat\"]},\"HQobservationTime\":{\"type\":\"data\",\"attrs\":{\"Units\":\"minutes\",\"DimensionNames\":\"time,lon,lat\",\"CodeMissingValue\":\"-9999\"},\"shape\":[368160,3600,1800],\"chunks\":[12,3600,1800],\"dimensions\":[\"time\",\"lon\",\"lat\"]},\"precipitationUncal\":{\"type\":\"data\",\"unit\":\"mm/hr\",\"attrs\":{\"Units\":\"mm/hr\",\"units\":\"mm/hr\",\"DimensionNames\":\"time,lon,lat\",\"CodeMissingValue\":\"-9999.9\"},\"shape\":[368160,3600,1800],\"chunks\":[12,3600,1800],\"dimensions\":[\"time\",\"lon\",\"lat\"]},\"IRkalmanFilterWeight\":{\"type\":\"data\",\"attrs\":{\"DimensionNames\":\"time,lon,lat\",\"CodeMissingValue\":\"-9999\"},\"shape\":[368160,3600,1800],\"chunks\":[12,3600,1800],\"dimensions\":[\"time\",\"lon\",\"lat\"]},\"precipitationQualityIndex\":{\"type\":\"data\",\"attrs\":{\"DimensionNames\":\"time,lon,lat\",\"CodeMissingValue\":\"-9999.9\"},\"shape\":[368160,3600,1800],\"chunks\":[12,3600,1800],\"dimensions\":[\"time\",\"lon\",\"lat\"]},\"probabilityLiquidPrecipitation\":{\"type\":\"data\",\"unit\":\"percent\",\"attrs\":{\"Units\":\"percent\",\"units\":\"percent\",\"DimensionNames\":\"time,lon,lat\",\"CodeMissingValue\":\"-9999\"},\"shape\":[368160,3600,1800],\"chunks\":[12,3600,1800],\"dimensions\":[\"time\",\"lon\",\"lat\"]}},\"msft:container\":\"imerg\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"type\":\"spatial\",\"extent\":[-89.94999694824219,89.94999694824219],\"reference_system\":4326},\"lon\":{\"axis\":\"x\",\"type\":\"spatial\",\"extent\":[-179.9499969482422,179.9499969482422],\"reference_system\":4326},\"time\":{\"step\":\"P0DT0H30M0S\",\"type\":\"temporal\",\"extent\":[\"2000-06-01T00:00:00Z\",\"2021-05-31T23:30:00Z\"]}},\"stac_extensions\":[\"https://stac-extensions.github.io/xarray-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"The Integrated Multi-satellitE Retrievals for GPM (IMERG) algorithm combines information from the GPM satellite constellation to estimate precipitation over the majority of the Earth's surface.\",\"msft:region\":\"westeurope\"},{\"id\":\"gnatsgo-rasters\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"about\",\"href\":\"https://www.nrcs.usda.gov/wps/PA_NRCSConsumption/download?cid=nrcs142p2_051847&ext=pdf\",\"type\":\"application/pdf\",\"title\":\"gSSURGO User Guide\",\"description\":\"User guide for gSSURGO\"},{\"rel\":\"about\",\"href\":\"https://www.nrcs.usda.gov/wps/PA_NRCSConsumption/download?cid=nrcseprd1464658&ext=pdf\",\"type\":\"application/pdf\",\"title\":\"gNATSGO Overview Slides\",\"description\":\"Slides giving a high level overview of the gNATSGO dataset\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/publicdomain/zero/1.0/\",\"title\":\"CC0 1.0 Universal Public Domain Dedication\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/gnatsgo-rasters\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"gNATSGO Soil Database - Rasters\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gnatsgo-rasters.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"gNATSGO\"},\"geoparquet-items\":{\"href\":\"abfs://items/gnatsgo-rasters.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-170.8513,-14.3799,-169.4152,-14.1432],[138.0315,5.116,163.1902,10.2773],[144.6126,13.2327,144.9658,13.6572],[-159.7909,18.8994,-154.7815,22.2464],[170.969,6.0723,171.9169,8.71933],[145.0127,14.1086,145.9242,18.8172],[130.8048,2.9268,134.9834,8.0947],[157.3678,49.0546,-117.2864,71.4567],[-67.9506,17.014,-64.3973,19.3206],[-127.8881,22.8782,-65.2748,51.6039]]},\"temporal\":{\"interval\":[[\"2020-07-01T00:00:00Z\",\"2020-07-01T00:00:00Z\"]]}},\"license\":\"CC0-1.0\",\"keywords\":[\"Soils\",\"NATSGO\",\"SSURGO\",\"STATSGO2\",\"RSS\",\"USDA\",\"United States\"],\"providers\":[{\"url\":\"https://www.nrcs.usda.gov/\",\"name\":\"United States Department of Agriculture, Natural Resources Conservation Service\",\"roles\":[\"licensor\",\"producer\",\"processor\",\"host\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"description\":\"This collection contains the raster data for gNATSGO. In order to use the map unit values contained in the `mukey` raster asset, you'll need to join to tables represented as Items in the [gNATSGO Tables](https://planetarycomputer.microsoft.com/dataset/gnatsgo-tables) Collection. Many items have commonly used values encoded in additional raster assets.\\n\\nThe gridded National Soil Survey Geographic Database (gNATSGO) is a USDA-NRCS Soil & Plant Science Division (SPSD) composite database that provides complete coverage of the best available soils information for all areas of the United States and Island Territories. It was created by combining data from the Soil Survey Geographic Database (SSURGO), State Soil Geographic Database (STATSGO2), and Raster Soil Survey Databases (RSS) into a single seamless ESRI file geodatabase.\\n\\nSSURGO is the SPSD flagship soils database that has over 100 years of field-validated detailed soil mapping data. SSURGO contains soils information for more than 90 percent of the United States and island territories, but unmapped land remains. STATSGO2 is a general soil map that has soils data for all of the United States and island territories, but the data is not as detailed as the SSURGO data. The Raster Soil Surveys (RSSs) are the next generation soil survey databases developed using advanced digital soil mapping methods.\\n\\nThe gNATSGO database is composed primarily of SSURGO data, but STATSGO2 data was used to fill in the gaps. The RSSs are newer product with relatively limited spatial extent. These RSSs were merged into the gNATSGO after combining the SSURGO and STATSGO2 data. The extent of RSS is expected to increase in the coming years.\\n\\nSee the [official documentation](https://www.nrcs.usda.gov/wps/portal/nrcs/detail/soils/survey/geo/?cid=nrcseprd1464625)\",\"item_assets\":{\"mukey\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"mukey\",\"description\":\"Map unit key is the unique identifier of a record in the Mapunit table. Use this column to join the Component table to the Map Unit table and the Valu1 table to the MapUnitRaster_10m raster map layer to map valu1 themes.\"},\"aws0_5\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws0_5\",\"description\":\"Available water storage estimate (AWS) in a standard zone 1 (0-5 cm depth), expressed in mm. The volume of plant available water that the soil can store in this layer based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"soc0_5\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc0_5\",\"description\":\"Soil organic carbon stock estimate (SOC) in standard layer 1 or standard zone 1 (0-5 cm depth). The concentration of organic carbon present in the soil expressed in grams C per square meter to a depth of 5 cm. NULL values are presented where data are incomplete or not available.\"},\"tk0_5a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_5a\",\"description\":\"Thickness of soil components used in standard layer 1 or standard zone 1 (0-5 cm) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk0_5s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_5s\",\"description\":\"Thickness of soil components used in standard layer 1 or standard zone 1 (0-5 cm) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"},\"aws0_20\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws0_20\",\"description\":\"Available water storage estimate (AWS) in standard zone 2 (0-20 cm depth), expressed in mm. The volume of plant available water that the soil can store in this zone based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"aws0_30\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws0_30\",\"description\":\"Available water storage estimate (AWS) in standard zone 3 (0-30 cm depth), expressed in mm. The volume of plant available water that the soil can store in this zone based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"aws5_20\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws5_20\",\"description\":\"Available water storage estimate (AWS) in standard layer 2 (5-20 cm depth), expressed in mm. The volume of plant available water that the soil can store in this layer based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"soc0_20\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc0_20\",\"description\":\"Soil organic carbon stock estimate (SOC) in standard zone 2 (0-20 cm depth). The concentration of organic carbon present in the soil expressed in grams C per square meter to a depth of 20 cm. NULL values are presented where data are incomplete or not available.\"},\"soc0_30\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc0_30\",\"description\":\"Soil organic carbon stock estimate (SOC) in standard zone 3 (0-30 cm depth). The concentration of organic carbon present in the soil expressed in grams C per square meter to a depth of 30 cm. NULL values are presented where data are incomplete or not available.\"},\"soc5_20\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc5_20\",\"description\":\"Soil organic carbon stock estimate (SOC) in standard layer 2 (5-20 cm depth). The concentration of organic carbon present in the soil expressed in grams C per square meter for the 5-20 cm layer. NULL values are presented where data are incomplete or not available.\"},\"tk0_20a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_20a\",\"description\":\"Thickness of soil components used in standard zone 2 (0-20 cm) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk0_20s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_20s\",\"description\":\"Thickness of soil components used in standard zone 2 (0-20 cm) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"},\"tk0_30a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_30a\",\"description\":\"Thickness of soil components used in standard zone 3 (0-30 cm) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk0_30s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_30s\",\"description\":\"Thickness of soil components used in standard zone 3 (0-30 cm) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"},\"tk5_20a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk5_20a\",\"description\":\"Thickness of soil components used in standard layer 2 (5-20 cm) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk5_20s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk5_20s\",\"description\":\"Thickness of soil components used in standard layer 2 (5-20 cm) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"},\"aws0_100\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws0_100\",\"description\":\"Available water storage estimate (AWS) in standard zone 4 (0-100 cm depth), expressed in mm. The volume of plant available water that the soil can store in this zone based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"aws0_150\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws0_150\",\"description\":\"Available water storage estimate (AWS) in standard zone 5 (0-150 cm depth), expressed in mm. The volume of plant available water that the soil can store in this zone based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"aws0_999\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws0_999\",\"description\":\"Available water storage estimate (AWS) in total soil profile (0 cm to the reported depth of the soil profile), expressed in mm. The volume of plant available water that the soil can store in this layer based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"aws20_50\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws20_50\",\"description\":\"Available water storage estimate (AWS) in standard layer 3 (20-50 cm depth), expressed in mm. The volume of plant available water that the soil can store in this layer based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"droughty\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"droughty\",\"description\":\"zone for commodity crops that is less than or equal to 6 inches (152 mm) expressed as \\\"1\\\" for a drought vulnerable soil landscape map unit or \\\"0\\\" for a non-droughty soil landscape map unit or NULL for miscellaneous areas (includes water bodies) or where data were not available. It is computed as a weighted average for major earthy components. Earthy components are those soil series or higher level taxa components that can support crop growth (Dobos et al., 2012). Major components are those soil components where the majorcompflag = 'Yes'\"},\"nccpi3sg\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"nccpi3sg\",\"description\":\"National Commodity Crop Productivity Index for Small Grains (weighted average) for major earthy components. Values range from .01 (low productivity) to .99 (high productivity). Earthy components are those soil series or higher level taxa components that can support crop growth (Dobos et al., 2012). Major components are those soil components where the majorcompflag = 'Yes' (SSURGO component table). NULL values are presented where data are incomplete or not available.\"},\"soc0_100\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc0_100\",\"description\":\"Soil organic carbon stock estimate (SOC) in standard zone 4 (0-100 cm depth). The concentration of organic carbon present in the soil expressed in grams C per square meter to a depth of 100 cm. NULL values are presented where data are incomplete or not available.\"},\"soc0_150\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc0_150\",\"description\":\"Soil organic carbon stock estimate (SOC) in standard zone 5 (0-150 cm depth). The concentration of organic carbon present in the soil expressed in grams C per square meter to a depth of 150 cm. NULL values are presented where data are incomplete or not available.\"},\"soc0_999\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc0_999\",\"description\":\"Soil organic carbon stock estimate (SOC) in total soil profile (0 cm to the reported depth of the soil profile). The concentration of organic carbon present in the soil expressed in grams C per square meter for the total reported soil profile depth. NULL values are presented where data are incomplete or not available.\"},\"soc20_50\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc20_50\",\"description\":\"Soil organic carbon stock estimate (SOC) in standard layer 3 (20-50 cm depth). The concentration of organic carbon present in the soil expressed in grams C per square meter for the 20-50 cm layer. NULL values are presented where data are incomplete or not available.\"},\"tk0_100a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_100a\",\"description\":\"Thickness of soil components used in standard zone 4 (0-100 cm) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk0_100s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_100s\",\"description\":\"Thickness of soil components used in standard zone 4 (0-100 cm) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"},\"tk0_150a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_150a\",\"description\":\"Thickness of soil components used in standard zone 5 (0-150 cm) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk0_150s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_150s\",\"description\":\"Thickness of soil components used in standard zone 5 (0-150 cm) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"},\"tk0_999a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_999a\",\"description\":\"Thickness of soil components used in total soil profile (0 cm to the reported depth of the soil profile) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk0_999s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_999s\",\"description\":\"Thickness of soil components used in total soil profile (0 cm to the reported depth of the soil profile) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"},\"tk20_50a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk20_50a\",\"description\":\"Thickness of soil components used in standard layer 3 (20-50 cm) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk20_50s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk20_50s\",\"description\":\"Thickness of soil components used in standard layer 3 (20-50 cm) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"},\"aws50_100\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws50_100\",\"description\":\"Available water storage estimate (AWS) in standard layer 3 (50-100 cm depth), expressed in mm. The volume of plant available water that the soil can store in this layer based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"musumcpct\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"musumcpct\",\"description\":\"The sum of the comppct_r (SSURGO component table) values for all listed components in the map unit. Useful metadata information. NULL values are presented where data are incomplete or not available.\"},\"nccpi3all\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"nccpi3all\",\"description\":\"National Commodity Crop Productivity Index that has the highest value among Corn and Soybeans, Small Grains, or Cotton (weighted average) for major earthy components. Values range from .01 (low productivity) to .99 (high productivity). Earthy components are those soil series or higher level taxa components that can support crop growth (Dobos et al., 2012). Major components are those soil components where the majorcompflag = 'Yes' (SSURGO component table). NULL values are presented where data are incomplete or not available.\"},\"nccpi3cot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"nccpi3cot\",\"description\":\"National Commodity Crop Productivity Index for Cotton (weighted average) for major earthy components. Values range from .01 (low productivity) to .99 (high productivity). Earthy components are those soil series or higher level taxa components that can support crop growth (Dobos et al., 2012). Major components are those soil components where the majorcompflag = 'Yes' (SSURGO component table). NULL values are presented where data are incomplete or not available.\"},\"nccpi3soy\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"nccpi3soy\",\"description\":\"National Commodity Crop Productivity Index for Soybeans (weighted average) for major earthy components. Values range from .01 (low productivity) to .99 (high productivity). Earthy components are those soil series or higher level taxa components that can support crop growth (Dobos et al., 2012). Major components are those soil components where the majorcompflag = 'Yes' (SSURGO component table). NULL values are presented where data are incomplete or not available.\"},\"pwsl1pomu\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"pwsl1pomu\",\"description\":\"Potential Wetland Soil Landscapes (PWSL) is expressed as the percentage of the map unit that meets the PWSL criteria. The hydric rating (soil component variable \u201Chydricrating\u201D) is an indicator of wet soils. For version 1 (pwsl1), those soil components that meet the following criteria are tagged as PWSL and their comppct_r values are summed for each map unit. Soil components with hydricrating = 'YES' are considered PWSL. Soil components with hydricrating = \u201CNO\u201D are not PWSL. Soil components with hydricrating = 'UNRANKED' are tested using other attributes, and will be considered PWSL if any of the following conditions are met: drainagecl = 'Poorly drained' or 'Very poorly drained' or the localphase or the otherph data fields contain any of the phrases \\\"drained\\\" or \\\"undrained\\\" or \\\"channeled\\\" or \\\"protected\\\" or \\\"ponded\\\" or \\\"flooded\\\". If these criteria do not determine the PWSL for a component and hydricrating = 'UNRANKED', then the map unit will be classified as PWSL if the map unit name contains any of the phrases \\\"drained\\\" or \\\"undrained\\\" or \\\"channeled\\\" or \\\"protected\\\" or \\\"ponded\\\" or \\\"flooded\\\". For version 1 (pwsl1), waterbodies are identified as \\\"999\\\" when map unit names match a list of terms that identify water or intermittent water or map units have a sum of the comppct_r for \\\"Water\\\" that is 80% or greater. NULL values are presented where data are incomplete or not available.\"},\"rootznaws\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"rootznaws\",\"description\":\"Root zone (commodity crop) available water storage estimate (RZAWS) , expressed in mm, is the volume of plant available water that the soil can store within the root zone based on all map unit earthy major components (weighted average). Earthy components are those soil series or higher level taxa components that can support crop growth (Dobos et al., 2012). Major components are those soil components where the majorcompflag = 'Yes' (SSURGO component table). NULL values are presented where data are incomplete or not available.\"},\"rootznemc\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"rootznemc\",\"description\":\"Root zone depth is the depth within the soil profile that commodity crop (cc) roots can effectively extract water and nutrients for growth. Root zone depth influences soil productivity significantly. Soil component horizon criteria for root-limiting depth include: presence of hard bedrock, soft bedrock, a fragipan, a duripan, sulfuric material, a dense layer, a layer having a pH of less than 3.5, or a layer having an electrical conductivity of more than 12 within the component soil profile. If no root-restricting zone is identified, a depth of 150 cm is used to approximate the root zone depth (Dobos et al., 2012). Root zone depth is computed for all map unit major earthy components (weighted average). Earthy components are those soil series or higher level taxa components that can support crop growth (Dobos et al., 2012). Major components are those soil components where the majorcompflag = 'Yes' (SSURGO component table). NULL values are presented where data are incomplete or not available.\"},\"soc50_100\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc50_100\",\"description\":\"Soil organic carbon stock estimate (SOC) in standard layer 4 (50-100 cm depth). The concentration of organic carbon present in the soil expressed in grams C per square meter for the 50-100 cm layer. NULL values are presented where data are incomplete or not available.\"},\"tk50_100a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk50_100a\",\"description\":\"Thickness of soil components used in standard layer 4 (50-100 cm) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk50_100s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk50_100s\",\"description\":\"Thickness of soil components used in standard layer 4 (50-100 cm) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"},\"aws100_150\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws100_150\",\"description\":\"Available water storage estimate (AWS) in standard layer 5 (100-150 cm depth), expressed in mm. The volume of plant available water that the soil can store in this layer based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"aws150_999\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws150_999\",\"description\":\"Available water storage estimate (AWS) in standard layer 6 (150 cm to the reported depth of the soil profile), expressed in mm. The volume of plant available water that the soil can store in this layer based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"musumcpcta\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"musumcpcta\",\"description\":\"The sum of the comppct_r (SSURGO component table) values used in the available water storage calculation for the map unit. Useful metadata information. NULL values are presented where data are incomplete or not available.\"},\"musumcpcts\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"musumcpcts\",\"description\":\"The sum of the comppct_r (SSURGO component table) values used in the soil organic carbon calculation for the map unit. Useful metadata information. NULL values are presented where data are incomplete or not available.\"},\"nccpi3corn\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"nccpi3corn\",\"description\":\"National Commodity Crop Productivity Index for Corn (weighted average) for major earthy components. Values range from .01 (low productivity) to .99 (high productivity). Earthy components are those soil series or higher level taxa components that can support crop growth (Dobos et al., 2012). Major components are those soil components where the majorcompflag = 'Yes' (SSURGO component table). NULL values are presented where data are incomplete or not available.\"},\"pctearthmc\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"pctearthmc\",\"description\":\"The National Commodity Crop Productivity Index map unit percent earthy is the map unit summed comppct_r for major earthy components. Earthy components are those soil series or higher level taxa components that can support crop growth (Dobos et al., 2012). Major components are those soil components where the majorcompflag = 'Yes' (SSURGO component table). Useful metadata information. NULL values are presented where data are incomplete or not available.\"},\"soc100_150\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc100_150\",\"description\":\"Soil organic carbon stock estimate (SOC) in standard layer 5 (100-150 cm depth). The concentration of organic carbon present in the soil expressed in grams C per square meter for the 100-150 cm layer. NULL values are presented where data are incomplete or not available.\"},\"soc150_999\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc150_999\",\"description\":\"Soil organic carbon stock estimate (SOC) in standard layer 6 (150 cm to the reported depth of the soil profile). The concentration of organic carbon present in the soil expressed in grams C per square meter for the 150 cm and greater depth layer. NULL values are presented where data are incomplete or not available.\"},\"tk100_150a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk100_150a\",\"description\":\"Thickness of soil components used in standard layer 5 (100-150 cm) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk100_150s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk100_150s\",\"description\":\"Thickness of soil components used in standard layer 5 (100-150 cm) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"},\"tk150_999a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk150_999a\",\"description\":\"Thickness of soil components used in standard layer 6 (150 cm to the reported depth of the soil profile) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk150_999s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk150_999s\",\"description\":\"Thickness of soil components used in standard layer 6 (150 cm to the reported depth of the soil profile) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"gnatsgo\",\"msft:container\":\"gnatsgo-stac\",\"stac_extensions\":[\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"soils\",\"msft:short_description\":\"Raster data for the gridded National Soil Survey Geographic Database (gNATSGO), a USDA-NRCS Soil & Plant Science Division (SPSD) composite database that provides complete coverage of the best available soils information for all areas of the United States and Island Territories.\",\"msft:region\":\"westeurope\"},{\"id\":\"3dep-lidar-hag\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/3d-elevation-program/about-3dep-products-services\",\"title\":\"About 3DEP Products & Services\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-hag\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS 3DEP Lidar Height above Ground\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/hag-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"},\"geoparquet-items\":{\"href\":\"abfs://items/3dep-lidar-hag.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-166.8546920006028,17.655357747708283,-64.56116757979399,71.39330810146807],[144.60180842809473,13.21774453924126,146.08202179248926,18.18369664008955]]},\"temporal\":{\"interval\":[[\"2012-01-01T00:00:00Z\",\"2022-01-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USGS\",\"3DEP\",\"COG\",\"Elevation\"],\"providers\":[{\"name\":\"Landrush\",\"roles\":[\"processor\",\"producer\"]},{\"url\":\"https://www.usgs.gov/core-science-systems/ngp/3dep/\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[2.0]},\"description\":\"This COG type is generated using the Z dimension of the [COPC data](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc) data and removes noise, water, and using [`pdal.filters.smrf`](https://pdal.io/stages/filters.smrf.html#filters-smrf) followed by [pdal.filters.hag_nn](https://pdal.io/stages/filters.hag_nn.html#filters-hag-nn).\\n\\nThe Height Above Ground Nearest Neighbor filter takes as input a point cloud with Classification set to 2 for ground points. It creates a new dimension, HeightAboveGround, that contains the normalized height values.\\n\\nGround points may be generated with [`pdal.filters.pmf`](https://pdal.io/stages/filters.pmf.html#filters-pmf) or [`pdal.filters.smrf`](https://pdal.io/stages/filters.smrf.html#filters-smrf), but you can use any method you choose, as long as the ground returns are marked.\\n\\nNormalized heights are a commonly used attribute of point cloud data. This can also be referred to as height above ground (HAG) or above ground level (AGL) heights. In the end, it is simply a measure of a point's relative height as opposed to its raw elevation value.\\n\\nThe filter finds the number of ground points nearest to the non-ground point under consideration. It calculates an average ground height weighted by the distance of each ground point from the non-ground point. The HeightAboveGround is the difference between the Z value of the non-ground point and the interpolated ground height.\\n\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"COG data\",\"raster:bands\":[{\"name\":\"HeightAboveGround\",\"unit\":\"metre\",\"sampling\":\"point\",\"data_type\":\"float32\",\"description\":\"Raster for Height Above Ground (HAG)\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"3dep-lidar\",\"msft:container\":\"usgs-3dep-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json#\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"usgslidareuwest\",\"msft:short_description\":\"3DEP Lidar collection for the Height Above Ground (HAG or Elevation) Cloud Optimized Geotiffs (COGs). All USGS HAG COG STAC items will be associated with this STAC collection.\",\"msft:region\":\"westeurope\"},{\"id\":\"io-lulc-annual-v02\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02\"},{\"rel\":\"related\",\"href\":\"https://livingatlas.arcgis.com/landcover/\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/licenses/by/4.0/\",\"type\":\"text/html\",\"title\":\"CC BY 4.0\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/io-lulc-annual-v02\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"10m Annual Land Use Land Cover (9-class) V2\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/io-lulc-annual-v02.png\",\"title\":\"10m Annual Land Use Land Cover (9-class)\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/io-lulc-annual-v02.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2017-01-01T00:00:00Z\",\"2024-01-01T00:00:00Z\"]]}},\"license\":\"CC-BY-4.0\",\"keywords\":[\"Global\",\"Land Cover\",\"Land Use\",\"Sentinel\"],\"providers\":[{\"url\":\"https://www.esri.com/\",\"name\":\"Esri\",\"roles\":[\"licensor\"]},{\"url\":\"https://www.impactobservatory.com/\",\"name\":\"Impact Observatory\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"raster:bands\":[{\"nodata\":0,\"spatial_resolution\":10}]},\"description\":\"Time series of annual global maps of land use and land cover (LULC). It currently has data from 2017-2023. The maps are derived from ESA Sentinel-2 imagery at 10m resolution. Each map is a composite of LULC predictions for 9 classes throughout the year in order to generate a representative snapshot of each year.\\n\\nThis dataset, produced by [Impact Observatory](http://impactobservatory.com/), Microsoft, and Esri, displays a global map of land use and land cover (LULC) derived from ESA Sentinel-2 imagery at 10 meter resolution for the years 2017 - 2023. Each map is a composite of LULC predictions for 9 classes throughout the year in order to generate a representative snapshot of each year. This dataset was generated by Impact Observatory, which used billions of human-labeled pixels (curated by the National Geographic Society) to train a deep learning model for land classification. Each global map was produced by applying this model to the Sentinel-2 annual scene collections from the Mircosoft Planetary Computer. Each of the maps has an assessed average accuracy of over 75%.\\n\\nThese maps have been improved from Impact Observatory\u2019s [previous release](https://planetarycomputer.microsoft.com/dataset/io-lulc-9-class) and provide a relative reduction in the amount of anomalous change between classes, particularly between \u201CBare\u201D and any of the vegetative classes \u201CTrees,\u201D \u201CCrops,\u201D \u201CFlooded Vegetation,\u201D and \u201CRangeland\u201D. This updated time series of annual global maps is also re-aligned to match the ESA UTM tiling grid for Sentinel-2 imagery.\\n\\nAll years are available under a Creative Commons BY-4.0.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Global land cover data\",\"file:values\":[{\"values\":[0],\"summary\":\"No Data\"},{\"values\":[1],\"summary\":\"Water\"},{\"values\":[2],\"summary\":\"Trees\"},{\"values\":[4],\"summary\":\"Flooded vegetation\"},{\"values\":[5],\"summary\":\"Crops\"},{\"values\":[7],\"summary\":\"Built area\"},{\"values\":[8],\"summary\":\"Bare ground\"},{\"values\":[9],\"summary\":\"Snow/ice\"},{\"values\":[10],\"summary\":\"Clouds\"},{\"values\":[11],\"summary\":\"Rangeland\"}]}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"io-land-cover\",\"msft:container\":\"io-lulc\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/label/v1.0.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Global land cover information with 9 classes for 2017-2023 at 10m resolution\"},{\"id\":\"goes-cmi\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi\"},{\"rel\":\"license\",\"href\":\"https://www.nesdisia.noaa.gov/policy.html\",\"title\":\"Public Domain\"},{\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/collection/map?collection=goes-cmi\",\"title\":\"Map of collection mosaic\",\"type\":\"text/html\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/goes-cmi\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"GOES-R Cloud & Moisture Imagery\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/goes-cmi-thumb.png\",\"title\":\"GOES CMIP\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/goes-cmi.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"W-MON\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}},\"tilejson\":{\"title\":\"Mosaic TileJSON with default rendering\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/collection/tilejson.json?collection=goes-cmi&expression=C02_2km_wm%3B0.45%2AC02_2km_wm%2B0.1%2AC03_2km_wm%2B0.45%2AC01_2km_wm%3BC01_2km_wm&nodata=-1&rescale=1%2C1000&color_formula=Gamma+RGB+2.5+Saturation+1.4+Sigmoidal+RGB+2+0.7&asset_as_band=True&resampling=bilinear&format=png\",\"type\":\"application/json\",\"roles\":[\"tiles\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-81.33,6.3,81.33],[141.7,-81.33,180.0,81.33]]},\"temporal\":{\"interval\":[[\"2017-02-28T00:16:52Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"GOES\",\"NOAA\",\"NASA\",\"Satellite\",\"Cloud\",\"Moisture\"],\"providers\":[{\"url\":\"https://www.nasa.gov/content/goes\",\"name\":\"NASA\",\"roles\":[\"producer\"]},{\"url\":\"https://www.goes-r.gov/\",\"name\":\"NOAA\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"GOES-16\",\"GOES-17\",\"GOES-18\",\"GOES-19\"],\"goes:mode\":[\"3\",\"4\",\"6\"],\"instruments\":[\"ABI\"],\"goes:image-type\":[\"FULL DISK\",\"CONUS\",\"MESOSCALE\"],\"goes:processing-level\":[\"L2\"]},\"description\":\"The GOES-R Advanced Baseline Imager (ABI) L2 Cloud and Moisture Imagery product provides 16 reflective and emissive bands at high temporal cadence over the Western Hemisphere.\\n\\nThe GOES-R series is the latest in the Geostationary Operational Environmental Satellites (GOES) program, which has been operated in a collaborative effort by NOAA and NASA since 1975. The operational GOES-R Satellites, GOES-16, GOES-17, and GOES-18, capture 16-band imagery from geostationary orbits over the Western Hemisphere via the Advance Baseline Imager (ABI) radiometer. The ABI captures 2 visible, 4 near-infrared, and 10 infrared channels at resolutions between 0.5km and 2km.\\n\\n### Geographic coverage\\n\\nThe ABI captures three levels of coverage, each at a different temporal cadence depending on the modes described below. The geographic coverage for each image is described by the `goes:image-type` STAC Item property.\\n\\n- _FULL DISK_: a circular image depicting nearly full coverage of the Western Hemisphere.\\n- _CONUS_: a 3,000 (lat) by 5,000 (lon) km rectangular image depicting the Continental U.S. (GOES-16) or the Pacific Ocean including Hawaii (GOES-17).\\n- _MESOSCALE_: a 1,000 by 1,000 km rectangular image. GOES-16 and 17 both alternate between two different mesoscale geographic regions.\\n\\n### Modes\\n\\nThere are three standard scanning modes for the ABI instrument: Mode 3, Mode 4, and Mode 6.\\n\\n- Mode _3_ consists of one observation of the full disk scene of the Earth, three observations of the continental United States (CONUS), and thirty observations for each of two distinct mesoscale views every fifteen minutes.\\n- Mode _4_ consists of the observation of the full disk scene every five minutes.\\n- Mode _6_ consists of one observation of the full disk scene of the Earth, two observations of the continental United States (CONUS), and twenty observations for each of two distinct mesoscale views every ten minutes.\\n\\nThe mode that each image was captured with is described by the `goes:mode` STAC Item property.\\n\\nSee this [ABI Scan Mode Demonstration](https://youtu.be/_c5H6R-M0s8) video for an idea of how the ABI scans multiple geographic regions over time.\\n\\n### Cloud and Moisture Imagery\\n\\nThe Cloud and Moisture Imagery product contains one or more images with pixel values identifying \\\"brightness values\\\" that are scaled to support visual analysis. Cloud and Moisture Imagery product (CMIP) files are generated for each of the sixteen ABI reflective and emissive bands. In addition, there is a multi-band product file that includes the imagery at all bands (MCMIP).\\n\\nThe Planetary Computer STAC Collection `goes-cmi` captures both the CMIP and MCMIP product files into individual STAC Items for each observation from a GOES-R satellite. It contains the original CMIP and MCMIP NetCDF files, as well as cloud-optimized GeoTIFF (COG) exports of the data from each MCMIP band (2km); the full-resolution CMIP band for bands 1, 2, 3, and 5; and a Web Mercator COG of bands 1, 2 and 3, which are useful for rendering.\\n\\nThis product is not in a standard coordinate reference system (CRS), which can cause issues with some tooling that does not handle non-standard large geographic regions.\\n\\n### For more information\\n- [Beginner\u2019s Guide to GOES-R Series Data](https://www.goes-r.gov/downloads/resources/documents/Beginners_Guide_to_GOES-R_Series_Data.pdf)\\n- [GOES-R Series Product Definition and Users\u2019 Guide: Volume 5 (Level 2A+ Products)](https://www.goes-r.gov/products/docs/PUG-L2+-vol5.pdf) ([Spanish verison](https://github.com/NOAA-Big-Data-Program/bdp-data-docs/raw/main/GOES/QuickGuides/Spanish/Guia%20introductoria%20para%20datos%20de%20la%20serie%20GOES-R%20V1.1%20FINAL2%20-%20Copy.pdf))\\n\\n\",\"item_assets\":{\"C01_1km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 01 (full resolution)\",\"eo:bands\":[{\"name\":\"ABI Band 1\",\"common_name\":\"blue\",\"description\":\"Daytime aerosol over land, coastal water mapping\",\"center_wavelength\":0.47}]},\"C01_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 01\",\"eo:bands\":[{\"name\":\"ABI Band 1\",\"common_name\":\"blue\",\"description\":\"Daytime aerosol over land, coastal water mapping\",\"center_wavelength\":0.47}]},\"C02_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 02\",\"eo:bands\":[{\"name\":\"ABI Band 2\",\"common_name\":\"red\",\"description\":\"Daytime clouds, fog, insolation, winds\",\"center_wavelength\":0.64}]},\"C03_1km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 03 (full resolution)\",\"eo:bands\":[{\"name\":\"ABI Band 3\",\"common_name\":\"nir09\",\"description\":\"Daytime vegetation, burn scar, aerosol over water, winds\",\"center_wavelength\":0.87}]},\"C03_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 03\",\"eo:bands\":[{\"name\":\"ABI Band 3\",\"common_name\":\"nir09\",\"description\":\"Daytime vegetation, burn scar, aerosol over water, winds\",\"center_wavelength\":0.87}]},\"C04_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 04\",\"eo:bands\":[{\"name\":\"ABI Band 4\",\"common_name\":\"cirrus\",\"description\":\"Daytime cirrus cloud\",\"center_wavelength\":1.38}]},\"C05_1km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 05 (full resolution)\",\"eo:bands\":[{\"name\":\"ABI Band 5\",\"common_name\":\"swir16\",\"description\":\"Daytime cloud-top phase and particle size, snow\",\"center_wavelength\":1.61}]},\"C05_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 05\",\"eo:bands\":[{\"name\":\"ABI Band 5\",\"common_name\":\"swir16\",\"description\":\"Daytime cloud-top phase and particle size, snow\",\"center_wavelength\":1.61}]},\"C06_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 06\",\"eo:bands\":[{\"name\":\"ABI Band 6\",\"common_name\":\"swir22\",\"description\":\"Daytime land, cloud properties, particle size, vegetation, snow\",\"center_wavelength\":2.25}]},\"C07_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 07\",\"eo:bands\":[{\"name\":\"ABI Band 7\",\"description\":\"Surface and cloud, fog at night, fire, winds\",\"center_wavelength\":3.89}]},\"C08_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 08\",\"eo:bands\":[{\"name\":\"ABI Band 8\",\"description\":\"High-level atmospheric water vapor, winds, rainfall\",\"center_wavelength\":6.17}]},\"C09_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 09\",\"eo:bands\":[{\"name\":\"ABI Band 9\",\"description\":\"Midlevel atmospheric water vapor, winds, rainfall\",\"center_wavelength\":6.93}]},\"C10_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 10\",\"eo:bands\":[{\"name\":\"ABI Band 10\",\"description\":\"Lower-level water vapor, winds, and silicon dioxide\",\"center_wavelength\":7.34}]},\"C11_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 11\",\"eo:bands\":[{\"name\":\"ABI Band 11\",\"description\":\"Total water for stability, cloud phase, dust, silicon dioxide, rainfall\",\"center_wavelength\":8.44}]},\"C12_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 12\",\"eo:bands\":[{\"name\":\"ABI Band 12\",\"description\":\"Total ozone, turbulence, winds\",\"center_wavelength\":9.61}]},\"C13_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 13\",\"eo:bands\":[{\"name\":\"ABI Band 13\",\"description\":\"Surface and clouds\",\"center_wavelength\":10.33}]},\"C14_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 14\",\"eo:bands\":[{\"name\":\"ABI Band 14\",\"description\":\"Imagery, sea surface temperature, clouds, rainfall\",\"center_wavelength\":11.19}]},\"C15_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 15\",\"eo:bands\":[{\"name\":\"ABI Band 15\",\"description\":\"Total water, volcanic ash, sea surface temperature\",\"center_wavelength\":12.27}]},\"C16_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 16\",\"eo:bands\":[{\"name\":\"ABI Band 16\",\"description\":\"Air temperature, cloud heights\",\"center_wavelength\":13.27}]},\"MCMIP-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery - Multiband\",\"eo:bands\":[{\"name\":\"ABI Band 1\",\"common_name\":\"blue\",\"description\":\"Daytime aerosol over land, coastal water mapping\",\"center_wavelength\":0.47},{\"name\":\"ABI Band 2\",\"common_name\":\"red\",\"description\":\"Daytime clouds, fog, insolation, winds\",\"center_wavelength\":0.64},{\"name\":\"ABI Band 3\",\"common_name\":\"nir09\",\"description\":\"Daytime vegetation, burn scar, aerosol over water, winds\",\"center_wavelength\":0.87},{\"name\":\"ABI Band 4\",\"common_name\":\"cirrus\",\"description\":\"Daytime cirrus cloud\",\"center_wavelength\":1.38},{\"name\":\"ABI Band 5\",\"common_name\":\"swir16\",\"description\":\"Daytime cloud-top phase and particle size, snow\",\"center_wavelength\":1.61},{\"name\":\"ABI Band 6\",\"common_name\":\"swir22\",\"description\":\"Daytime land, cloud properties, particle size, vegetation, snow\",\"center_wavelength\":2.25},{\"name\":\"ABI Band 7\",\"description\":\"Surface and cloud, fog at night, fire, winds\",\"center_wavelength\":3.89},{\"name\":\"ABI Band 8\",\"description\":\"High-level atmospheric water vapor, winds, rainfall\",\"center_wavelength\":6.17},{\"name\":\"ABI Band 9\",\"description\":\"Midlevel atmospheric water vapor, winds, rainfall\",\"center_wavelength\":6.93},{\"name\":\"ABI Band 10\",\"description\":\"Lower-level water vapor, winds, and silicon dioxide\",\"center_wavelength\":7.34},{\"name\":\"ABI Band 11\",\"description\":\"Total water for stability, cloud phase, dust, silicon dioxide, rainfall\",\"center_wavelength\":8.44},{\"name\":\"ABI Band 12\",\"description\":\"Total ozone, turbulence, winds\",\"center_wavelength\":9.61},{\"name\":\"ABI Band 13\",\"description\":\"Surface and clouds\",\"center_wavelength\":10.33},{\"name\":\"ABI Band 14\",\"description\":\"Imagery, sea surface temperature, clouds, rainfall\",\"center_wavelength\":11.19},{\"name\":\"ABI Band 15\",\"description\":\"Total water, volcanic ash, sea surface temperature\",\"center_wavelength\":12.27},{\"name\":\"ABI Band 16\",\"description\":\"Air temperature, cloud heights\",\"center_wavelength\":13.27}],\"description\":\"The Cloud and Moisture Imagery product contains one or more Earth-view images with pixel values identifying 'brightness values' that are scaled to support visual analysis.\"},\"C02_0.5km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 02 (full resolution)\",\"eo:bands\":[{\"name\":\"ABI Band 2\",\"common_name\":\"red\",\"description\":\"Daytime clouds, fog, insolation, winds\",\"center_wavelength\":0.64}]},\"C01_2km_wm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 01, Web Mercator\",\"eo:bands\":[{\"name\":\"ABI Band 1\",\"common_name\":\"blue\",\"description\":\"Daytime aerosol over land, coastal water mapping\",\"center_wavelength\":0.47}]},\"C02_2km_wm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 02, Web Mercator\",\"eo:bands\":[{\"name\":\"ABI Band 2\",\"common_name\":\"red\",\"description\":\"Daytime clouds, fog, insolation, winds\",\"center_wavelength\":0.64}]},\"C03_2km_wm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 03, Web Mercator\",\"eo:bands\":[{\"name\":\"ABI Band 3\",\"common_name\":\"nir09\",\"description\":\"Daytime vegetation, burn scar, aerosol over water, winds\",\"center_wavelength\":0.87}]},\"C01_DQF_1km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"quality-mask\"],\"title\":\"Cloud and Moisture Imagery data quality flags - Band 01 (full resolution)\"},\"C01_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 01\"},\"C02_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 02\"},\"C03_DQF_1km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"quality-mask\"],\"title\":\"Cloud and Moisture Imagery data quality flags - Band 03 (full resolution)\"},\"C03_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 03\"},\"C04_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 04\"},\"C05_DQF_1km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"quality-mask\"],\"title\":\"Cloud and Moisture Imagery data quality flags - Band 05 (full resolution)\"},\"C05_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 05\"},\"C06_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 06\"},\"C07_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 07\"},\"C08_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 08\"},\"C09_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 09\"},\"C10_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 10\"},\"C11_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 11\"},\"C12_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 12\"},\"C13_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 13\"},\"C14_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 14\"},\"C15_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 15\"},\"C16_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 16\"},\"CMIP_C01-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 01\",\"eo:bands\":[{\"name\":\"ABI Band 1\",\"common_name\":\"blue\",\"description\":\"Daytime aerosol over land, coastal water mapping\",\"center_wavelength\":0.47}]},\"CMIP_C02-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 02\",\"eo:bands\":[{\"name\":\"ABI Band 2\",\"common_name\":\"red\",\"description\":\"Daytime clouds, fog, insolation, winds\",\"center_wavelength\":0.64}]},\"CMIP_C03-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 03\",\"eo:bands\":[{\"name\":\"ABI Band 3\",\"common_name\":\"nir09\",\"description\":\"Daytime vegetation, burn scar, aerosol over water, winds\",\"center_wavelength\":0.87}]},\"CMIP_C04-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 04\",\"eo:bands\":[{\"name\":\"ABI Band 4\",\"common_name\":\"cirrus\",\"description\":\"Daytime cirrus cloud\",\"center_wavelength\":1.38}]},\"CMIP_C05-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 05\",\"eo:bands\":[{\"name\":\"ABI Band 5\",\"common_name\":\"swir16\",\"description\":\"Daytime cloud-top phase and particle size, snow\",\"center_wavelength\":1.61}]},\"CMIP_C06-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 06\",\"eo:bands\":[{\"name\":\"ABI Band 6\",\"common_name\":\"swir22\",\"description\":\"Daytime land, cloud properties, particle size, vegetation, snow\",\"center_wavelength\":2.25}]},\"CMIP_C07-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 07\",\"eo:bands\":[{\"name\":\"ABI Band 7\",\"description\":\"Surface and cloud, fog at night, fire, winds\",\"center_wavelength\":3.89}]},\"CMIP_C08-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 08\",\"eo:bands\":[{\"name\":\"ABI Band 8\",\"description\":\"High-level atmospheric water vapor, winds, rainfall\",\"center_wavelength\":6.17}]},\"CMIP_C09-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 09\",\"eo:bands\":[{\"name\":\"ABI Band 9\",\"description\":\"Midlevel atmospheric water vapor, winds, rainfall\",\"center_wavelength\":6.93}]},\"CMIP_C10-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 10\",\"eo:bands\":[{\"name\":\"ABI Band 10\",\"description\":\"Lower-level water vapor, winds, and silicon dioxide\",\"center_wavelength\":7.34}]},\"CMIP_C11-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 11\",\"eo:bands\":[{\"name\":\"ABI Band 11\",\"description\":\"Total water for stability, cloud phase, dust, silicon dioxide, rainfall\",\"center_wavelength\":8.44}]},\"CMIP_C12-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 12\",\"eo:bands\":[{\"name\":\"ABI Band 12\",\"description\":\"Total ozone, turbulence, winds\",\"center_wavelength\":9.61}]},\"CMIP_C13-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 13\",\"eo:bands\":[{\"name\":\"ABI Band 13\",\"description\":\"Surface and clouds\",\"center_wavelength\":10.33}]},\"CMIP_C14-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 14\",\"eo:bands\":[{\"name\":\"ABI Band 14\",\"description\":\"Imagery, sea surface temperature, clouds, rainfall\",\"center_wavelength\":11.19}]},\"CMIP_C15-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 15\",\"eo:bands\":[{\"name\":\"ABI Band 15\",\"description\":\"Total water, volcanic ash, sea surface temperature\",\"center_wavelength\":12.27}]},\"CMIP_C16-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 16\",\"eo:bands\":[{\"name\":\"ABI Band 16\",\"description\":\"Air temperature, cloud heights\",\"center_wavelength\":13.27}]},\"C02_DQF_0.5km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"quality-mask\"],\"title\":\"Cloud and Moisture Imagery data quality flags - Band 02 (full resolution)\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"goes\",\"msft:container\":\"noaa-goes-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"goeseuwest\",\"msft:short_description\":\"High temporal cadence cloud and moisture imagery over the Western Hemisphere from the Advanced Baseline Imager (ABI) instrument.\"},{\"id\":\"conus404\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.1175/BAMS-D-21-0326.1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9PHPK4F\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5065/ZYY0-Y036\"},{\"rel\":\"license\",\"href\":\"https://spdx.org/licenses/CC-BY-4.0.html\",\"type\":\"text/html\",\"title\":\"Creative Commons Attribution 4.0 International\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/conus404\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"CONUS404\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/conus404-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"CONUS404 Thumbnail\"},\"zarr-abfs\":{\"href\":\"az://noaa/conus404.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"CONUS404 Zarr root\",\"description\":\"Azure Blob File Syustem URI of the Zarr store for the CONUS404 dataset.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"azureopendatastorage\"}},\"zarr-https\":{\"href\":\"https://azureopendatastorage.blob.core.windows.net/noaa/conus404.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"CONUS404 Zarr root\",\"description\":\"HTTPS URI of the Zarr store for the CONUS404 dataset.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-137.873,17.631,-58.463,56.704]]},\"temporal\":{\"interval\":[[\"1979-10-01T00:00:00Z\",\"2022-09-30T23:00:00Z\"]]}},\"license\":\"CC-BY-4.0\",\"sci:doi\":\"10.1175/BAMS-D-21-0326.1\",\"keywords\":[\"CONUS404\",\"Hydroclimate\",\"Hydrology\",\"Inland Waters\",\"Precipitation\",\"Weather\",\"Climate\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://doi.org/10.5066/P9PHPK4F\",\"name\":\"USGS\",\"roles\":[\"producer\"]},{\"url\":\"https://doi.org/10.5065/ZYY0-Y036\",\"name\":\"NCAR\",\"roles\":[\"producer\"]}],\"description\":\"[CONUS404](https://www.usgs.gov/data/conus404-four-kilometer-long-term-regional-hydroclimate-reanalysis-over-conterminous-united) is a unique, high-resolution hydro-climate dataset appropriate for forcing hydrological models and conducting meteorological analysis over the conterminous United States. CONUS404, so named because it covers the CONterminous United States for over 40 years at 4 km resolution, was produced by the Weather Research and Forecasting (WRF) model simulations run by NCAR as part of a collaboration with the USGS Water Mission Area. The CONUS404 includes 42 years of data (water years 1980-2021) and the spatial domain extends beyond the CONUS into Canada and Mexico, thereby capturing transboundary river basins and covering all contributing areas for CONUS surface waters.\\n\\nThe CONUS404 dataset, produced using WRF version 3.9.1.1, is the successor to the CONUS1 dataset in [ds612.0](https://rda.ucar.edu/datasets/ds612.0/) (Liu, et al., 2017) with improved representation of weather and climate conditions in the central United States due to the addition of a shallow groundwater module and several other improvements in the NOAH-Multiparameterization land surface model. It also uses a more up-to-date and higher-resolution reanalysis dataset (ERA5) as input and covers a longer period than CONUS1.\",\"msft:region\":\"eastus\",\"sci:citation\":\"Rasmussen, R. M., Chen, F., Liu, C.H., Ikeda, K., Prein, A., Kim, J., Schneider, T., Dai, A., Gochis, D., Dugger, A., Zhang, Y., Jaye, A., Dudhia, J., He, C., Harrold, M., Xue, L., Chen, S., Newman, A., Dougherty, E., Abolafia-Rosenzweig, R., Lybarger, N. D., Viger, R., Lesmes, D., Skalak, K., Brakebill, J., Cline, D., Dunne, K., Rasmussen, K., & Miguez-Macho, G. (2023). CONUS404: The NCAR\u2013USGS 4-km Long-Term Regional Hydroclimate Reanalysis over the CONUS. Bulletin of the American Meteorological Society, 104(8), E1382-E1408. https://doi.org/10.1175/BAMS-D-21-0326.1\",\"stac_version\":\"1.0.0\",\"cube:variables\":{\"P\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"stagger\":\"\",\"description\":\"Total pressure (P0 + PB)\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Total pressure (P0 + PB)\"},\"U\":{\"type\":\"data\",\"unit\":\"m s-1\",\"attrs\":{\"units\":\"m s-1\",\"stagger\":\"X\",\"description\":\"U-component of wind with respect to model grid\"},\"shape\":[376944,50,1015,1368],\"chunks\":[1,1,1015,1368],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east_stag\"],\"description\":\"U-component of wind with respect to model grid\"},\"V\":{\"type\":\"data\",\"unit\":\"m s-1\",\"attrs\":{\"units\":\"m s-1\",\"stagger\":\"Y\",\"description\":\"V-component of wind with respect to model grid\"},\"shape\":[376944,50,1016,1367],\"chunks\":[1,1,1016,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north_stag\",\"west_east\"],\"description\":\"V-component of wind with respect to model grid\"},\"W\":{\"type\":\"data\",\"unit\":\"m s-1\",\"attrs\":{\"units\":\"m s-1\",\"stagger\":\"Z\",\"description\":\"W-component of wind\"},\"shape\":[376944,51,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top_stag\",\"south_north\",\"west_east\"],\"description\":\"W-component of wind\"},\"Z\":{\"type\":\"data\",\"unit\":\"m2 s-2\",\"attrs\":{\"units\":\"m2 s-2\",\"stagger\":\"Z\",\"description\":\"Geopotential height (PH + PHB)/9.81\"},\"shape\":[376944,51,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top_stag\",\"south_north\",\"west_east\"],\"description\":\"Geopotential height (PH + PHB)/9.81\"},\"LH\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"LATENT HEAT FLUX AT THE SURFACE\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"LATENT HEAT FLUX AT THE SURFACE\"},\"MU\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"stagger\":\"\",\"description\":\"dry airmass in column (MU+MUB)\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"dry airmass in column (MU+MUB)\"},\"Q2\":{\"type\":\"data\",\"unit\":\"kg kg-1\",\"attrs\":{\"units\":\"kg kg-1\",\"stagger\":\"\",\"long_name\":\"Water vapor mixing ratio at 2 meters\",\"description\":\"QV at 2 M\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"QV at 2 M\"},\"SR\":{\"type\":\"data\",\"unit\":\"-\",\"attrs\":{\"units\":\"-\",\"stagger\":\"\",\"description\":\"fraction of frozen precipitation\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"fraction of frozen precipitation\"},\"T2\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"description\":\"TEMP at 2 M\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"TEMP at 2 M\"},\"TG\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"description\":\"bulk ground temperature\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"bulk ground temperature\"},\"TK\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"description\":\"Air Temperature\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Air Temperature\"},\"TV\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"description\":\"vegetation leaf temperature\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"vegetation leaf temperature\"},\"GLW\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"DOWNWARD LONG WAVE FLUX AT GROUND SURFACE\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"DOWNWARD LONG WAVE FLUX AT GROUND SURFACE\"},\"HFX\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"UPWARD HEAT FLUX AT THE SURFACE\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"UPWARD HEAT FLUX AT THE SURFACE\"},\"LAI\":{\"type\":\"data\",\"unit\":\"m-2/m-2\",\"attrs\":{\"units\":\"m-2/m-2\",\"stagger\":\"\",\"description\":\"LEAF AREA INDEX\",\"number_of_significant_digits\":3},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"LEAF AREA INDEX\"},\"OLR\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"TOA OUTGOING LONG WAVE\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"TOA OUTGOING LONG WAVE\"},\"QFX\":{\"type\":\"data\",\"unit\":\"kg m-2 s-1\",\"attrs\":{\"units\":\"kg m-2 s-1\",\"stagger\":\"\",\"description\":\"UPWARD MOISTURE FLUX AT THE SURFACE\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"UPWARD MOISTURE FLUX AT THE SURFACE\"},\"SST\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"description\":\"SEA SURFACE TEMPERATURE\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"SEA SURFACE TEMPERATURE\"},\"TD2\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"description\":\"2-m dewpoint temperature\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"2-m dewpoint temperature\"},\"TH2\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"description\":\"POT TEMP at 2 M\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"POT TEMP at 2 M\"},\"TSK\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"description\":\"SURFACE SKIN TEMPERATURE\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"SURFACE SKIN TEMPERATURE\"},\"U10\":{\"type\":\"data\",\"unit\":\"m s-1\",\"attrs\":{\"units\":\"m s-1\",\"stagger\":\"\",\"long_name\":\"U-component wind with respect to model grid at 10 meters\",\"description\":\"U at 10 M\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"U at 10 M\"},\"UST\":{\"type\":\"data\",\"unit\":\"m s-1\",\"attrs\":{\"units\":\"m s-1\",\"stagger\":\"\",\"description\":\"U* IN SIMILARITY THEORY\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"U* IN SIMILARITY THEORY\"},\"V10\":{\"type\":\"data\",\"unit\":\"m s-1\",\"attrs\":{\"units\":\"m s-1\",\"stagger\":\"\",\"long_name\":\"V-component wind with respect to model grid at 10 meters\",\"description\":\"V at 10 M\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"V at 10 M\"},\"ZWT\":{\"type\":\"data\",\"unit\":\"m\",\"attrs\":{\"units\":\"m\",\"stagger\":\"\",\"description\":\"water table depth\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"water table depth\"},\"lat\":{\"type\":\"auxiliary\",\"unit\":\"degree_north\",\"attrs\":{\"units\":\"degree_north\",\"stagger\":\"\",\"description\":\"LATITUDE, SOUTH IS NEGATIVE\"},\"shape\":[1015,1367],\"chunks\":[882,1188],\"dimensions\":[\"south_north\",\"west_east\"],\"description\":\"LATITUDE, SOUTH IS NEGATIVE\"},\"lon\":{\"type\":\"auxiliary\",\"unit\":\"degree_east\",\"attrs\":{\"units\":\"degree_east\",\"stagger\":\"\",\"description\":\"LONGITUDE, WEST IS NEGATIVE\"},\"shape\":[1015,1367],\"chunks\":[882,1188],\"dimensions\":[\"south_north\",\"west_east\"],\"description\":\"LONGITUDE, WEST IS NEGATIVE\"},\"ACTR\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated transpiration, accumulated over prior 60 minutes\",\"description\":\"acccumlated TR\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated TR\"},\"PBLH\":{\"type\":\"data\",\"unit\":\"m\",\"attrs\":{\"units\":\"m\",\"stagger\":\"\",\"description\":\"PBL HEIGHT\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"PBL HEIGHT\"},\"PSFC\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"stagger\":\"\",\"description\":\"SFC PRESSURE\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"SFC PRESSURE\"},\"PWAT\":{\"type\":\"data\",\"unit\":\"meters\",\"attrs\":{\"units\":\"meters\",\"stagger\":\"\",\"sum_op_ncl\":\"dim_sum_n over dimension(s): bottom_top\",\"description\":\"Precipitable Water\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"Precipitable Water\"},\"QICE\":{\"type\":\"data\",\"unit\":\"kg kg-1\",\"attrs\":{\"units\":\"kg kg-1\",\"stagger\":\"\",\"description\":\"Ice mixing ratio\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Ice mixing ratio\"},\"QRFS\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated baseflow since model start time\",\"description\":\"sum baseflow\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"sum baseflow\"},\"RECH\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated water tabel recharged since model init time\",\"description\":\"Accumulated water tabel recharged\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"Accumulated water tabel recharged\"},\"SH2O\":{\"type\":\"data\",\"unit\":\"m3 m-3\",\"attrs\":{\"units\":\"m3 m-3\",\"stagger\":\"Z\",\"description\":\"SOIL LIQUID WATER\",\"number_of_significant_digits\":5},\"shape\":[376944,4,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"soil_layers_stag\",\"south_north\",\"west_east\"],\"description\":\"SOIL LIQUID WATER\"},\"SNOW\":{\"type\":\"data\",\"unit\":\"kg m-2\",\"attrs\":{\"units\":\"kg m-2\",\"stagger\":\"\",\"description\":\"SNOW WATER EQUIVALENT\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"SNOW WATER EQUIVALENT\"},\"TRAD\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"description\":\"surface radiative temperature\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"surface radiative temperature\"},\"TSLB\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"Z\",\"description\":\"SOIL TEMPERATURE\",\"number_of_significant_digits\":5},\"shape\":[376944,4,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"soil_layers_stag\",\"south_north\",\"west_east\"],\"description\":\"SOIL TEMPERATURE\"},\"TSNO\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"Z\",\"description\":\"snow temperature\",\"number_of_significant_digits\":5},\"shape\":[376944,3,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"snow_layers_stag\",\"south_north\",\"west_east\"],\"description\":\"snow temperature\"},\"ACEVB\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated latent heat flux over bare ground, accumulated over prior 60 minutes\",\"description\":\"acccumlated EVB\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated EVB\"},\"ACEVC\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated latent heat flux for canopy layer, accumulated over prior 60 minutes\",\"description\":\"acccumlated EVC\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated EVC\"},\"ACEVG\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated ground latent heat flux below canopy, accumulated over prior 60 minutes\",\"description\":\"acccumlated EVG\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated EVG\"},\"ACGHB\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated heat flux into soil or snowpack for bare ground, accumulated over prior 60 minutes\",\"description\":\"acccumlated GHB\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated GHB\"},\"ACGHV\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated heat flux into soil or snowpack under canopy, accumulated over prior 60 minutes\",\"description\":\"acccumlated GHV\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated GHV\"},\"ACIRB\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated net longwave radiation for bare ground, accumulated over prior 60 minutes\",\"description\":\"acccumlated IRB\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated IRB\"},\"ACIRC\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated net longwave radiation from canopy, accumulated over prior 60 minutes\",\"description\":\"acccumlated IRC\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated IRC\"},\"ACIRG\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated net longwave radiation from ground below canopy, accumulated over prior 60 minutes\",\"description\":\"acccumlated IRG\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated IRG\"},\"ACQRF\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated groundwater baseflow, accumulated over prior 60 minutes\",\"description\":\"accumulated baseflow\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"accumulated baseflow\"},\"ACSAV\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated solar radiation absorbed by vegetated fraction, accumulated over prior 60 minutes\",\"description\":\"acccumlated SAV\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated SAV\"},\"ACSHB\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated sensible heat flux at bare fraction, accumulated over prior 60 minutes\",\"description\":\"acccumlated SHB\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated SHB\"},\"ACSHC\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated sensible heat flux, canopy to atmosphere, accumulated over prior 60 minutes\",\"description\":\"acccumlated SHC\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated SHC\"},\"ACSHG\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated sensible heat flux from ground below canopy, accumulated over prior 60 minutes\",\"description\":\"acccumlated SHG\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated SHG\"},\"EMISS\":{\"type\":\"data\",\"unit\":\"\",\"attrs\":{\"units\":\"\",\"stagger\":\"\",\"description\":\"SURFACE EMISSIVITY\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"SURFACE EMISSIVITY\"},\"LWDNB\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS DOWNWELLING LONGWAVE FLUX AT BOTTOM\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS DOWNWELLING LONGWAVE FLUX AT BOTTOM\"},\"LWDNT\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS DOWNWELLING LONGWAVE FLUX AT TOP\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS DOWNWELLING LONGWAVE FLUX AT TOP\"},\"LWUPB\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS UPWELLING LONGWAVE FLUX AT BOTTOM\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS UPWELLING LONGWAVE FLUX AT BOTTOM\"},\"LWUPT\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS UPWELLING LONGWAVE FLUX AT TOP\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS UPWELLING LONGWAVE FLUX AT TOP\"},\"MLLCL\":{\"type\":\"data\",\"unit\":\"m\",\"attrs\":{\"units\":\"m\",\"stagger\":\"\",\"long_name\":\"Mixed-layer lifting condensation level (LCL)\",\"description\":\"MIXED-LAYER LCL\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"MIXED-LAYER LCL\"},\"O3RAD\":{\"type\":\"data\",\"unit\":\"ppmv\",\"attrs\":{\"units\":\"ppmv\",\"stagger\":\"\",\"description\":\"RADIATION 3D OZONE\",\"number_of_significant_digits\":5},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"RADIATION 3D OZONE\"},\"P_HYD\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"stagger\":\"\",\"description\":\"hydrostatic pressure\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"hydrostatic pressure\"},\"QNICE\":{\"type\":\"data\",\"unit\":\" kg-1\",\"attrs\":{\"units\":\" \ kg-1\",\"stagger\":\"\",\"description\":\"Ice Number concentration\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Ice Number concentration\"},\"QRAIN\":{\"type\":\"data\",\"unit\":\"kg kg-1\",\"attrs\":{\"units\":\"kg kg-1\",\"stagger\":\"\",\"description\":\"Rain water mixing ratio\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Rain water mixing ratio\"},\"QSLAT\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated groundwater lateral flow since model start time\",\"description\":\"sum lateral flow\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"sum lateral flow\"},\"QSNOW\":{\"type\":\"data\",\"unit\":\"kg kg-1\",\"attrs\":{\"units\":\"kg kg-1\",\"stagger\":\"\",\"description\":\"Snow mixing ratio\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Snow mixing ratio\"},\"SBLCL\":{\"type\":\"data\",\"unit\":\"m\",\"attrs\":{\"units\":\"m\",\"stagger\":\"\",\"long_name\":\"Surface-based lifting condensation level (LCL)\",\"description\":\"SURFACE-BASED LCL\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"SURFACE-BASED LCL\"},\"SMOIS\":{\"type\":\"data\",\"unit\":\"m3 m-3\",\"attrs\":{\"units\":\"m3 m-3\",\"stagger\":\"Z\",\"description\":\"SOIL MOISTURE\",\"number_of_significant_digits\":5},\"shape\":[376944,4,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"soil_layers_stag\",\"south_north\",\"west_east\"],\"description\":\"SOIL MOISTURE\"},\"SNICE\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"Z\",\"description\":\"snow layer ice\"},\"shape\":[376944,3,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"snow_layers_stag\",\"south_north\",\"west_east\"],\"description\":\"snow layer ice\"},\"SNLIQ\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"Z\",\"description\":\"snow layer liquid\"},\"shape\":[376944,3,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"snow_layers_stag\",\"south_north\",\"west_east\"],\"description\":\"snow layer liquid\"},\"SNOWC\":{\"type\":\"data\",\"unit\":\"\",\"attrs\":{\"units\":\"\",\"stagger\":\"\",\"description\":\"FLAG INDICATING SNOW COVERAGE (1 FOR SNOW COVER)\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"FLAG INDICATING SNOW COVERAGE (1 FOR SNOW COVER)\"},\"SNOWH\":{\"type\":\"data\",\"unit\":\"m\",\"attrs\":{\"units\":\"m\",\"stagger\":\"\",\"description\":\"PHYSICAL SNOW DEPTH\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"PHYSICAL SNOW DEPTH\"},\"SRH01\":{\"type\":\"data\",\"unit\":\"m2s-2\",\"attrs\":{\"units\":\"m2s-2\",\"stagger\":\"\",\"description\":\"0-1km storm-relative helicity\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"0-1km storm-relative helicity\"},\"SRH03\":{\"type\":\"data\",\"unit\":\"m2s-2\",\"attrs\":{\"units\":\"m2s-2\",\"stagger\":\"\",\"description\":\"0-3km storm-relative helicity\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"0-3km storm-relative helicity\"},\"SSTSK\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"description\":\"SKIN SEA SURFACE TEMPERATURE\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"SKIN SEA SURFACE TEMPERATURE\"},\"SWDNB\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS DOWNWELLING SHORTWAVE FLUX AT BOTTOM\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS DOWNWELLING SHORTWAVE FLUX AT BOTTOM\"},\"SWDNT\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS DOWNWELLING SHORTWAVE FLUX AT TOP\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS DOWNWELLING SHORTWAVE FLUX AT TOP\"},\"SWUPB\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS UPWELLING SHORTWAVE FLUX AT BOTTOM\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS UPWELLING SHORTWAVE FLUX AT BOTTOM\"},\"SWUPT\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS UPWELLING SHORTWAVE FLUX AT TOP\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS UPWELLING SHORTWAVE FLUX AT TOP\"},\"USHR1\":{\"type\":\"data\",\"unit\":\"s-1\",\"attrs\":{\"units\":\"s-1\",\"stagger\":\"\",\"description\":\"0-1km AGL U-component Wind Shear\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"0-1km AGL U-component Wind Shear\"},\"USHR6\":{\"type\":\"data\",\"unit\":\"s-1\",\"attrs\":{\"units\":\"s-1\",\"stagger\":\"\",\"description\":\"0-6km AGL U-component Wind Shear\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"0-6km AGL U-component Wind Shear\"},\"VSHR1\":{\"type\":\"data\",\"unit\":\"s-1\",\"attrs\":{\"units\":\"s-1\",\"stagger\":\"\",\"description\":\"0-1km AGL V-component Wind Shear\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"0-1km AGL V-component Wind Shear\"},\"VSHR6\":{\"type\":\"data\",\"unit\":\"s-1\",\"attrs\":{\"units\":\"s-1\",\"stagger\":\"\",\"description\":\"0-6km AGL V-component Wind Shear\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"0-6km AGL V-component Wind Shear\"},\"ZSNSO\":{\"type\":\"data\",\"unit\":\"m\",\"attrs\":{\"units\":\"m\",\"stagger\":\"Z\",\"description\":\"layer-bottom depth from snow surf\",\"number_of_significant_digits\":5},\"shape\":[376944,7,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"snso_layers_stag\",\"south_north\",\"west_east\"],\"description\":\"layer-bottom depth from snow surf\"},\"lat_u\":{\"type\":\"auxiliary\",\"unit\":\"degree_north\",\"attrs\":{\"units\":\"degree_north\",\"stagger\":\"X\",\"description\":\"LATITUDE, SOUTH IS NEGATIVE\"},\"shape\":[1015,1368],\"chunks\":[882,1188],\"dimensions\":[\"south_north\",\"west_east_stag\"],\"description\":\"LATITUDE, SOUTH IS NEGATIVE\"},\"lat_v\":{\"type\":\"auxiliary\",\"unit\":\"degree_north\",\"attrs\":{\"units\":\"degree_north\",\"stagger\":\"Y\",\"description\":\"LATITUDE, SOUTH IS NEGATIVE\"},\"shape\":[1016,1367],\"chunks\":[883,1187],\"dimensions\":[\"south_north_stag\",\"west_east\"],\"description\":\"LATITUDE, SOUTH IS NEGATIVE\"},\"lon_u\":{\"type\":\"auxiliary\",\"unit\":\"degree_east\",\"attrs\":{\"units\":\"degree_east\",\"stagger\":\"X\",\"description\":\"LONGITUDE, WEST IS NEGATIVE\"},\"shape\":[1015,1368],\"chunks\":[882,1188],\"dimensions\":[\"south_north\",\"west_east_stag\"],\"description\":\"LONGITUDE, WEST IS NEGATIVE\"},\"lon_v\":{\"type\":\"auxiliary\",\"unit\":\"degree_east\",\"attrs\":{\"units\":\"degree_east\",\"stagger\":\"Y\",\"description\":\"LONGITUDE, WEST IS NEGATIVE\"},\"shape\":[1016,1367],\"chunks\":[883,1187],\"dimensions\":[\"south_north_stag\",\"west_east\"],\"description\":\"LONGITUDE, WEST IS NEGATIVE\"},\"ACDEWC\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy dew rate, accumulated over prior 60 minutes\",\"description\":\"acccumlated QDEWC\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QDEWC\"},\"ACECAN\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated net evaporation of canopy water (evap + sublim - dew - frost), accumulated over prior 60 minutes\",\"description\":\"acccumlated ECAN\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated ECAN\"},\"ACEDIR\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated net soil evaporation or snowpack sublimation (evap or sublim - dew or frost), accumulated over prior 60 minutes\",\"description\":\"acccumlated EDIR\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated EDIR\"},\"ACEVAC\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy evaporation, accumulated over prior 60 minutes\",\"description\":\"acccumlated QEVAC\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QEVAC\"},\"ACFROC\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy frost, accumulated over prior 60 minutes\",\"description\":\"acccumlated QFROC\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QFROC\"},\"ACFRZC\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated refreezing of canopy liquid water, accumulated over prior 60 minutes\",\"description\":\"acccumlated QFRZC\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QFRZC\"},\"ACINTR\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy rain interception rate, accumulated over prior 60 minutes\",\"description\":\"acccumlated QINTR\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QINTR\"},\"ACINTS\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy snow interception rate, accumulated over prior 60 minutes\",\"description\":\"acccumlated QINTS\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QINTS\"},\"ACPAHB\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated precipitation advected energy to bare ground, accumulated over prior 60 minutes\",\"description\":\"acccumlated PAHB\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated PAHB\"},\"ACPAHG\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated precipitation advected energy to below canopy, accumulated over prior 60 minutes\",\"description\":\"acccumlated PAHG\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated PAHG\"},\"ACPAHV\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated precipitation advected energy to vegetation, accumulated over prior 60 minutes\",\"description\":\"acccumlated PAHV\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated PAHV\"},\"ACQLAT\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated groundwater lateral flow, accumulated over prior 60 minutes\",\"description\":\"accumulated lateral flow\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"accumulated lateral flow\"},\"ACSAGB\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated solar radiation absorbed by bare ground, accumulated over prior 60 minutes\",\"description\":\"acccumlated SAG under vegetation\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated SAG under vegetation\"},\"ACSAGV\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated solar radiation absorbed by vegetated ground, accumulated over prior 60 minutes\",\"description\":\"acccumlated SAG in bare section\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated SAG in bare section\"},\"ACSNOM\":{\"type\":\"data\",\"unit\":\"kg m-2\",\"attrs\":{\"units\":\"kg m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated total liquid water out of the snowpack since model initial time\",\"description\":\"Accumulated total liquid water out of the snowpack\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"Accumulated total liquid water out of the snowpack\"},\"ACSUBC\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy snow sublimation, accumulated over prior 60 minutes\",\"description\":\"acccumlated QSUBC\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QSUBC\"},\"ALBEDO\":{\"type\":\"data\",\"unit\":\"-\",\"attrs\":{\"units\":\"-\",\"stagger\":\"\",\"long_name\":\"Surface albedo including snow effects\",\"description\":\"ALBEDO\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ALBEDO\"},\"CANICE\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"description\":\"intercepted ice mass\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"intercepted ice mass\"},\"CANWAT\":{\"type\":\"data\",\"unit\":\"kg m-2\",\"attrs\":{\"units\":\"kg m-2\",\"stagger\":\"\",\"description\":\"CANOPY WATER\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"CANOPY WATER\"},\"CLDFRA\":{\"type\":\"data\",\"unit\":\"\",\"attrs\":{\"units\":\"\",\"stagger\":\"\",\"description\":\"CLOUD FRACTION\",\"number_of_significant_digits\":4},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"CLOUD FRACTION\"},\"COSZEN\":{\"type\":\"data\",\"unit\":\"dimensionless\",\"attrs\":{\"units\":\"dimensionless\",\"stagger\":\"\",\"description\":\"COS of SOLAR ZENITH ANGLE\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"COS of SOLAR ZENITH ANGLE\"},\"LWDNBC\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS DOWNWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS DOWNWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\"},\"LWDNTC\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS DOWNWELLING CLEAR SKY LONGWAVE FLUX AT TOP\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS DOWNWELLING CLEAR SKY LONGWAVE FLUX AT TOP\"},\"LWUPBC\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS UPWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS UPWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\"},\"LWUPTC\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS UPWELLING CLEAR SKY LONGWAVE FLUX AT TOP\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS UPWELLING CLEAR SKY LONGWAVE FLUX AT TOP\"},\"MLCAPE\":{\"type\":\"data\",\"unit\":\"J kg-1\",\"attrs\":{\"units\":\"J kg-1\",\"stagger\":\"\",\"long_name\":\"Mixed-layer convective available potential energy (CAPE)\",\"description\":\"MIXED-LAYER CAPE\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"MIXED-LAYER CAPE\"},\"MLCINH\":{\"type\":\"data\",\"unit\":\"J kg-1\",\"attrs\":{\"units\":\"J kg-1\",\"stagger\":\"\",\"long_name\":\"Mixed-layer convective inhibition up to the level of free convection (CINH)\",\"description\":\"MIXED-LAYER CINH\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"MIXED-LAYER CINH\"},\"MUCAPE\":{\"type\":\"data\",\"unit\":\"J kg-1\",\"attrs\":{\"units\":\"J kg-1\",\"stagger\":\"\",\"long_name\":\"Most-unstable convective available potential energy (CAPE)\",\"description\":\"MOST-UNSTABLE CAPE\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"MOST-UNSTABLE CAPE\"},\"MUCINH\":{\"type\":\"data\",\"unit\":\"J kg-1\",\"attrs\":{\"units\":\"J kg-1\",\"stagger\":\"\",\"long_name\":\"Most-unstable convective inhibition up to the level of free convection (CINH)\",\"description\":\"MOST-UNSTABLE CINH\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"MOST-UNSTABLE CINH\"},\"QCLOUD\":{\"type\":\"data\",\"unit\":\"kg kg-1\",\"attrs\":{\"units\":\"kg kg-1\",\"stagger\":\"\",\"description\":\"Cloud water mixing ratio\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Cloud water mixing ratio\"},\"QGRAUP\":{\"type\":\"data\",\"unit\":\"kg kg-1\",\"attrs\":{\"units\":\"kg kg-1\",\"stagger\":\"\",\"description\":\"Graupel mixing ratio\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Graupel mixing ratio\"},\"QNRAIN\":{\"type\":\"data\",\"unit\":\" kg(-1)\",\"attrs\":{\"units\":\" \ kg(-1)\",\"stagger\":\"\",\"description\":\"Rain Number concentration\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Rain Number concentration\"},\"QVAPOR\":{\"type\":\"data\",\"unit\":\"kg kg-1\",\"attrs\":{\"units\":\"kg kg-1\",\"stagger\":\"\",\"description\":\"Water vapor mixing ratio\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Water vapor mixing ratio\"},\"SBCAPE\":{\"type\":\"data\",\"unit\":\"J kg-1\",\"attrs\":{\"units\":\"J kg-1\",\"stagger\":\"\",\"long_name\":\"Surface-based convective available potential energy (CAPE)\",\"description\":\"SURFACE-BASED CAPE\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"SURFACE-BASED CAPE\"},\"SBCINH\":{\"type\":\"data\",\"unit\":\"J kg-1\",\"attrs\":{\"units\":\"J kg-1\",\"stagger\":\"\",\"long_name\":\"Surface-based convective inhibition up to the level of free convection (CINH)\",\"description\":\"SURFACE-BASED CINH\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"SURFACE-BASED CINH\"},\"SEAICE\":{\"type\":\"data\",\"unit\":\"\",\"attrs\":{\"units\":\"\",\"stagger\":\"\",\"description\":\"SEA ICE FLAG\",\"number_of_significant_digits\":3},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"SEA ICE FLAG\"},\"SMCWTD\":{\"type\":\"data\",\"unit\":\"m3 m-3\",\"attrs\":{\"units\":\"m3 m-3\",\"stagger\":\"\",\"description\":\"deep soil moisture\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"deep soil moisture\"},\"SWDNBC\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\"},\"SWDNTC\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\"},\"SWDOWN\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"DOWNWARD SHORT WAVE FLUX AT GROUND SURFACE\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"DOWNWARD SHORT WAVE FLUX AT GROUND SURFACE\"},\"SWNORM\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"NORMAL SHORT WAVE FLUX AT GROUND SURFACE (SLOPE-DEPENDENT)\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"NORMAL SHORT WAVE FLUX AT GROUND SURFACE (SLOPE-DEPENDENT)\"},\"SWUPBC\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS UPWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS UPWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\"},\"SWUPTC\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS UPWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS UPWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\"},\"U_BUNK\":{\"type\":\"data\",\"unit\":\"ms-1\",\"attrs\":{\"units\":\"ms-1\",\"stagger\":\"\",\"description\":\"U-component of Bunkers storm motion\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"U-component of Bunkers storm motion\"},\"V_BUNK\":{\"type\":\"data\",\"unit\":\"ms-1\",\"attrs\":{\"units\":\"ms-1\",\"stagger\":\"\",\"description\":\"V-component of Bunkers storm motion\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"V-component of Bunkers storm motion\"},\"ACDRIPR\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy precipitation drip rate, accumulated over prior 60 minutes\",\"description\":\"acccumlated QDRIPR\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QDRIPR\"},\"ACDRIPS\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy snow drip rate, accumulated over prior 60 minutes\",\"description\":\"acccumlated QDRIPS\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QDRIPS\"},\"ACETLSM\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated total evaporation, accumulated over prior 60 minutes\",\"description\":\"acccumlated ET\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated ET\"},\"ACETRAN\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated plant transpiration, accumulated over prior 60 minutes\",\"description\":\"acccumlated ETRAN\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated ETRAN\"},\"ACLWDNB\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated downwelling longwave radiation flux at bottom, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED DOWNWELLING LONGWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED DOWNWELLING LONGWAVE FLUX AT BOTTOM\"},\"ACLWDNT\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated downwelling longwave radiation flux at top, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED DOWNWELLING LONGWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED DOWNWELLING LONGWAVE FLUX AT TOP\"},\"ACLWUPB\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated upwelling longwave radiation flux at bottom, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED UPWELLING LONGWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED UPWELLING LONGWAVE FLUX AT BOTTOM\"},\"ACLWUPT\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated upwelling longwave radiation flux at top, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED UPWELLING LONGWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED UPWELLING LONGWAVE FLUX AT TOP\"},\"ACMELTC\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy snow melt, accumulated over prior 60 minutes\",\"description\":\"acccumlated QMELTC\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QMELTC\"},\"ACRUNSB\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated subsurface runoff, accumulated over prior 60 minutes\",\"description\":\"Accumulated RUNSB\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"Accumulated RUNSB\"},\"ACRUNSF\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated surface runoff, accumulated over prior 60 minutes\",\"description\":\"Accumulated RUNSF\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"Accumulated RUNSF\"},\"ACSNBOT\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated liquid water flux out of bottom of snowpack, accumulated over prior 60 minutes\",\"description\":\"acccumlated QSNBOT\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QSNBOT\"},\"ACSNFRO\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated snowpack frost, accumulated over prior 60 minutes\",\"description\":\"acccumlated QSNFRO\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QSNFRO\"},\"ACSNSUB\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated snowpack sublimation, accumulated over prior 60 minutes\",\"description\":\"acccumlated QSNSUB\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QSNSUB\"},\"ACSWDNB\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated downwelling shortwave radiation flux at bottom, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED DOWNWELLING SHORTWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED DOWNWELLING SHORTWAVE FLUX AT BOTTOM\"},\"ACSWDNT\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated downwelling shortwave radiation flux at top, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED DOWNWELLING SHORTWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED DOWNWELLING SHORTWAVE FLUX AT TOP\"},\"ACSWUPB\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated upwelling shortwave radiation flux at bottom, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED UPWELLING SHORTWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED UPWELLING SHORTWAVE FLUX AT BOTTOM\"},\"ACSWUPT\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated upwelling shortwave radiation flux at top, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED UPWELLING SHORTWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED UPWELLING SHORTWAVE FLUX AT TOP\"},\"ACTHROR\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy rain throughfall, accumulated over prior 60 minutes\",\"description\":\"acccumlated QTHROR\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QTHROR\"},\"ACTHROS\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy snow throughfall, accumulated over prior 60 minutes\",\"description\":\"acccumlated QTHROS\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QTHROS\"},\"RAINNCV\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"description\":\"TIME-STEP NONCONVECTIVE PRECIPITATION\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"TIME-STEP NONCONVECTIVE PRECIPITATION\"},\"ACGHFLSM\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated total ground heat flux into soil or snowpack, accumulated over prior 60 minutes\",\"description\":\"acccumlated total ground heat flux\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated total ground heat flux\"},\"ACLHFLSM\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated total latent heat flux, accumulated over prior 60 minutes\",\"description\":\"acccumlated total latent heat flux\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated total latent heat flux\"},\"ACLWDNBC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated downwelling clear sky longwave radiation flux at bottom, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED DOWNWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED DOWNWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\"},\"ACLWDNTC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated downwelling clear sky longwave radiation flux at top, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED DOWNWELLING CLEAR SKY LONGWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED DOWNWELLING CLEAR SKY LONGWAVE FLUX AT TOP\"},\"ACLWUPBC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated upwelling clear sky longwave radiation flux at bottom, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED UPWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED UPWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\"},\"ACLWUPTC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated upwelling clear sky longwave radiation flux at top, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED UPWELLING CLEAR SKY LONGWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED UPWELLING CLEAR SKY LONGWAVE FLUX AT TOP\"},\"ACPAHLSM\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated total precipitation heat flux advected to surface, accumulated over prior 60 minutes\",\"description\":\"acccumlated total precip heat flux\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated total precip heat flux\"},\"ACSHFLSM\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Acccumlated total sensible heat flux, accumulated over prior 60 minutes\",\"description\":\"acccumlated total sensible heat flux\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated total sensible heat flux\"},\"ACSWDNBC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated downwelling clear sky shortwave radiation flux at bottom, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\"},\"ACSWDNTC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated downwelling clear sky shortwave radiation flux at top, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\"},\"ACSWUPBC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated upwelling clear sky shortwave radiation flux at bottom, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED UPWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED UPWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\"},\"ACSWUPTC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated upwelling clear sky shortwave radiation flux at top accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED UPWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED UPWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\"},\"FORCPLSM\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"stagger\":\"\",\"long_name\":\"Lowest model pressure into land surface model\",\"description\":\"lowest model P into LSM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"lowest model P into LSM\"},\"FORCQLSM\":{\"type\":\"data\",\"unit\":\"kg/kg\",\"attrs\":{\"units\":\"kg/kg\",\"stagger\":\"\",\"long_name\":\"Lowest model mixing ratio into land surface model\",\"description\":\"lowest model Q into LSM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"lowest model Q into LSM\"},\"FORCTLSM\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"long_name\":\"Lowest model temperature into land surface model\",\"description\":\"lowest model T into LSM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"lowest model T into LSM\"},\"FORCWLSM\":{\"type\":\"data\",\"unit\":\"m/s\",\"attrs\":{\"units\":\"m/s\",\"stagger\":\"\",\"long_name\":\"Lowest model wind speed into land surface model\",\"description\":\"lowest model wind speed into LSM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"lowest model wind speed into LSM\"},\"FORCZLSM\":{\"type\":\"data\",\"unit\":\"m\",\"attrs\":{\"units\":\"m\",\"stagger\":\"\",\"long_name\":\"Lowest model height above ground level into land surface model\",\"description\":\"lowest model Z into LSM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"lowest model Z into LSM\"},\"QSPRINGS\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated seeping water since model start time\",\"description\":\"sum seeping water\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"sum seeping water\"},\"REFL_COM\":{\"type\":\"data\",\"unit\":\"dbZ\",\"attrs\":{\"units\":\"dbZ\",\"stagger\":\"\",\"description\":\"COMPOSITE REFLECTIVITY\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"COMPOSITE REFLECTIVITY\"},\"totalIce\":{\"type\":\"data\",\"unit\":\"kg kg-1\",\"attrs\":{\"units\":\"kg kg-1\",\"stagger\":\"\",\"sum_op_ncl\":\"dim_sum_n over dimension(s): bottom_top\",\"description\":\"Ice mixing ratio\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"Ice mixing ratio\"},\"totalLiq\":{\"type\":\"data\",\"unit\":\"kg kg-1\",\"attrs\":{\"units\":\"kg kg-1\",\"stagger\":\"\",\"sum_op_ncl\":\"dim_sum_n over dimension(s): bottom_top\",\"description\":\"Cloud water mixing ratio\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"Cloud water mixing ratio\"},\"totalVap\":{\"type\":\"data\",\"unit\":\"kg kg-1\",\"attrs\":{\"units\":\"kg kg-1\",\"stagger\":\"\",\"sum_op_ncl\":\"dim_sum_n over dimension(s): bottom_top\",\"description\":\"Water vapor mixing ratio\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"Water vapor mixing ratio\"},\"ACLWDNLSM\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated longwave downwelling radiation at land surface model, accumulated over prior 60 minutes\",\"description\":\"acccumlated LWDN\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated LWDN\"},\"ACLWUPLSM\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated longwave upwelling radiation at land surface model, accumulated over prior 60 minutes\",\"description\":\"acccumlated LWUP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated LWUP\"},\"ACPONDING\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated surface ponding from complete pack melt, accumulated over prior 60 minutes\",\"description\":\"acccumlated PONDING\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated PONDING\"},\"ACRAINLSM\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated liquid precipitation into land surface model, accumulated over prior 60 minutes\",\"description\":\"acccumlated RAINLSM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated RAINLSM\"},\"ACSNOWLSM\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated frozen precipitation into land surface model, accumulated over prior 60 minutes\",\"description\":\"acccumlated SNOWLSM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated SNOWLSM\"},\"ACSWDNLSM\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated shortwave radiation down at land surface model, accumulated over prior 60 minutes\",\"description\":\"acccumlated SWDN\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated SWDN\"},\"ACSWUPLSM\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated shortwave radiation up at land surface model, accumulated over prior 60 minutes\",\"description\":\"acccumlated SWUP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated SWUP\"},\"I_ACLWDNB\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for downwelling longwave flux at bottom accumulated since model start time\",\"description\":\"BUCKET FOR DOWNWELLING LONGWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR DOWNWELLING LONGWAVE FLUX AT BOTTOM\"},\"I_ACLWDNT\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for downwelling longwave flux at top accumulated since model start time\",\"description\":\"BUCKET FOR DOWNWELLING LONGWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR DOWNWELLING LONGWAVE FLUX AT TOP\"},\"I_ACLWUPB\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for upwelling longwave flux at bottom accumulated since model start time\",\"description\":\"BUCKET FOR UPWELLING LONGWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR UPWELLING LONGWAVE FLUX AT BOTTOM\"},\"I_ACLWUPT\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for upwelling longwave flux at top accumulated since model start time\",\"description\":\"BUCKET FOR UPWELLING LONGWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR UPWELLING LONGWAVE FLUX AT TOP\"},\"I_ACSWDNB\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for downwelling shortwave flux at bottom accumulated since model start time\",\"description\":\"BUCKET FOR DOWNWELLING SHORTWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR DOWNWELLING SHORTWAVE FLUX AT BOTTOM\"},\"I_ACSWDNT\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for downwelling shortwave flux at top accumulated since model start time\",\"description\":\"BUCKET FOR DOWNWELLING SHORTWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR DOWNWELLING SHORTWAVE FLUX AT TOP\"},\"I_ACSWUPB\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for upwelling shortwave flux at bottom accumulated since model start time\",\"description\":\"BUCKET FOR UPWELLING SHORTWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR UPWELLING SHORTWAVE FLUX AT BOTTOM\"},\"I_ACSWUPT\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for upwelling shortwave flux at top accumulated since model start time\",\"description\":\"BUCKET FOR UPWELLING SHORTWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR UPWELLING SHORTWAVE FLUX AT TOP\"},\"REFL_10CM\":{\"type\":\"data\",\"unit\":\"dBZ\",\"attrs\":{\"units\":\"dBZ\",\"stagger\":\"\",\"description\":\"Radar reflectivity (lamda = 10 cm)\",\"number_of_significant_digits\":5},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Radar reflectivity (lamda = 10 cm)\"},\"ACRAINSNOW\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Acccumlated rain on snow pack, accumulated over prior 60 minutes\",\"description\":\"acccumlated rain on snow pack\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated rain on snow pack\"},\"I_ACLWDNBC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for downwelling clear sky longwave flux at bottom accumulated since model start time\",\"description\":\"BUCKET FOR DOWNWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR DOWNWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\"},\"I_ACLWDNTC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for downwelling clear sky longwave flux at top accumulated since model start time\",\"description\":\"BUCKET FOR DOWNWELLING CLEAR SKY LONGWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR DOWNWELLING CLEAR SKY LONGWAVE FLUX AT TOP\"},\"I_ACLWUPBC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for upwelling clear sky longwave flux at bottom accumulated since model start time\",\"description\":\"BUCKET FOR UPWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR UPWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\"},\"I_ACLWUPTC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for upwelling clear sky longwave flux at top accumulated since model start time\",\"description\":\"BUCKET FOR UPWELLING CLEAR SKY LONGWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR UPWELLING CLEAR SKY LONGWAVE FLUX AT TOP\"},\"I_ACSWDNBC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for downwelling clear sky shortwave flux at bottom accumulated since model start time\",\"description\":\"BUCKET FOR DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\"},\"I_ACSWDNTC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for downwelling clear sky shortwave flux at top accumulated since model start time\",\"description\":\"BUCKET FOR DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\"},\"I_ACSWUPBC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for upwelling clear sky shortwave flux at bottom accumulated since model start time\",\"description\":\"BUCKET FOR UPWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR UPWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\"},\"I_ACSWUPTC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for upwelling clear sky shortwave flux at top accumulated since model start time\",\"description\":\"BUCKET FOR UPWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR UPWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\"},\"SNOWENERGY\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"description\":\"energy content in snow relative to 273.16\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"energy content in snow relative to 273.16\"},\"SOILENERGY\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"description\":\"energy content in soil relative to 273.16\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"energy content in soil relative to 273.16\"},\"PREC_ACC_NC\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated grid scale precipitation , accumulated over prior 60 minutes\",\"description\":\"ACCUMULATED GRID SCALE PRECIPITATION OVER prec_acc_dt PERIODS OF TIME\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED GRID SCALE PRECIPITATION OVER prec_acc_dt PERIODS OF TIME\"},\"SNOW_ACC_NC\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated snow water equivalent, accumulated over prior 60 minutes\",\"description\":\"ACCUMULATED SNOW WATER EQUIVALENT OVER prec_acc_dt PERIODS OF TIME\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED SNOW WATER EQUIVALENT OVER prec_acc_dt PERIODS OF TIME\"},\"REFL_1KM_AGL\":{\"type\":\"data\",\"unit\":\"dbZ\",\"attrs\":{\"units\":\"dbZ\",\"stagger\":\"\",\"description\":\"1KM AGL REFLECTIVITY\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"1KM AGL REFLECTIVITY\"},\"GRAUPEL_ACC_NC\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated graupel water equivalent, accumulated over prior 60 minutes\",\"description\":\"ACCUMULATED GRAUPEL WATER EQUIVALENT OVER prec_acc_dt PERIODS OF TIME\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED GRAUPEL WATER EQUIVALENT OVER prec_acc_dt PERIODS OF TIME\"}},\"msft:container\":\"noaa\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"type\":\"spatial\",\"extent\":[17.647308349609375,57.34341812133789]},\"lon\":{\"axis\":\"x\",\"type\":\"spatial\",\"extent\":[-138.73135375976562,-57.068634033203125]},\"time\":{\"step\":\"P0DT1H0M0S\",\"type\":\"temporal\",\"extent\":[\"1979-10-01T00:00:00Z\",\"2022-09-30T23:00:00Z\"],\"description\":\"time\"},\"west_east\":{\"type\":\"count\",\"extent\":[0,1366],\"description\":\"west_east index\"},\"bottom_top\":{\"type\":\"count\",\"extent\":[0,49],\"description\":\"bottom_top index\"},\"south_north\":{\"type\":\"count\",\"extent\":[0,1014],\"description\":\"south_north index\"},\"west_east_stag\":{\"type\":\"count\",\"extent\":[0,1367],\"description\":\"west_east_stag index.\"},\"bottom_top_stag\":{\"type\":\"count\",\"extent\":[0,50],\"description\":\"bottom_top_stag index\"},\"snow_layers_stag\":{\"type\":\"count\",\"extent\":[0,2],\"description\":\"snow layer index.\"},\"snso_layers_stag\":{\"type\":\"count\",\"extent\":[0,6],\"description\":\"snso layer index.\"},\"soil_layers_stag\":{\"type\":\"count\",\"extent\":[0,4],\"description\":\"soil layer index.\"},\"south_north_stag\":{\"type\":\"count\",\"extent\":[0,1015],\"description\":\"south_north_stag index.\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/xarray-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.2.0/schema.json\"],\"msft:storage_account\":\"azureopendatastorage\",\"msft:short_description\":\"High-resolution hydro-climate dataset for forcing hydrological models and meteorological analysis over the conterminous United States.\"},{\"id\":\"sentinel-1-rtc\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/licenses/by/4.0/\",\"title\":\"CC BY 4.0\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-1-rtc\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel 1 Radiometrically Terrain Corrected (RTC)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-1-rtc.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Sentinel 1 RTC\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-1-rtc.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2014-10-10T00:28:21Z\",null]]}},\"license\":\"CC-BY-4.0\",\"keywords\":[\"ESA\",\"Copernicus\",\"Sentinel\",\"C-Band\",\"SAR\",\"RTC\"],\"providers\":[{\"url\":\"https://catalyst.earth\",\"name\":\"Catalyst\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"licensor\"]}],\"summaries\":{\"platform\":[\"SENTINEL-1A\",\"SENTINEL-1B\",\"SENTINEL-1C\"],\"constellation\":[\"Sentinel-1\"],\"s1:resolution\":[\"high\"],\"s1:orbit_source\":[\"DOWNLINK\",\"POEORB\",\"PREORB\",\"RESORB\"],\"sar:looks_range\":[5],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"sar:product_type\":[\"GRD\"],\"sar:looks_azimuth\":[1],\"sar:polarizations\":[[\"VV\",\"VH\"],[\"HH\",\"HV\"],[\"VV\"],[\"VH\"],[\"HH\"]],\"sar:frequency_band\":[\"C\"],\"s1:processing_level\":[\"1\"],\"sar:instrument_mode\":[\"IW\"],\"sar:center_frequency\":[5.405],\"sar:resolution_range\":[20],\"s1:product_timeliness\":[\"NRT-10m\",\"NRT-1h\",\"NRT-3h\",\"Fast-24h\",\"Off-line\",\"Reprocessing\"],\"sar:resolution_azimuth\":[22],\"sar:pixel_spacing_range\":[10],\"sar:observation_direction\":[\"right\"],\"sar:pixel_spacing_azimuth\":[10],\"sar:looks_equivalent_number\":[4.4],\"sat:platform_international_designator\":[\"2014-016A\",\"2016-025A\",\"0000-000A\"]},\"description\":\"The [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) mission is a constellation of two polar-orbiting satellites, operating day and night performing C-band synthetic aperture radar imaging. The Sentinel-1 Radiometrically Terrain Corrected (RTC) data in this collection is a radiometrically terrain corrected product derived from the [Ground Range Detected (GRD) Level-1](https://planetarycomputer.microsoft.com/dataset/sentinel-1-grd) products produced by the European Space Agency. The RTC processing is performed by [Catalyst](https://catalyst.earth/).\\n\\nRadiometric Terrain Correction accounts for terrain variations that affect both the position of a given point on the Earth's surface and the brightness of the radar return, as expressed in radar geometry. Without treatment, the hill-slope modulations of the radiometry threaten to overwhelm weaker thematic land cover-induced backscatter differences. Additionally, comparison of backscatter from multiple satellites, modes, or tracks loses meaning.\\n\\nA Planetary Computer account is required to retrieve SAS tokens to read the RTC data. See the [documentation](http://planetarycomputer.microsoft.com/docs/concepts/sas/#when-an-account-is-needed) for more information.\\n\\n### Methodology\\n\\nThe Sentinel-1 GRD product is converted to calibrated intensity using the conversion algorithm described in the ESA technical note ESA-EOPG-CSCOP-TN-0002, [Radiometric Calibration of S-1 Level-1 Products Generated by the S-1 IPF](https://ai4edatasetspublicassets.blob.core.windows.net/assets/pdfs/sentinel-1/S1-Radiometric-Calibration-V1.0.pdf). The flat earth calibration values for gamma correction (i.e. perpendicular to the radar line of sight) are extracted from the GRD metadata. The calibration coefficients are applied as a two-dimensional correction in range (by sample number) and azimuth (by time). All available polarizations are calibrated and written as separate layers of a single file. The calibrated SAR output is reprojected to nominal map orientation with north at the top and west to the left.\\n\\nThe data is then radiometrically terrain corrected using PlanetDEM as the elevation source. The correction algorithm is nominally based upon D. Small, [\u201CFlattening Gamma: Radiometric Terrain Correction for SAR Imagery\u201D](https://ai4edatasetspublicassets.blob.core.windows.net/assets/pdfs/sentinel-1/2011_Flattening_Gamma.pdf), IEEE Transactions on Geoscience and Remote Sensing, Vol 49, No 8., August 2011, pp 3081-3093. For each image scan line, the digital elevation model is interpolated to determine the elevation corresponding to the position associated with the known near slant range distance and arc length for each input pixel. The elevations at the four corners of each pixel are estimated using bilinear resampling. The four elevations are divided into two triangular facets and reprojected onto the plane perpendicular to the radar line of sight to provide an estimate of the area illuminated by the radar for each earth flattened pixel. The uncalibrated sum at each earth flattened pixel is normalized by dividing by the flat earth surface area. The adjustment for gamma intensity is given by dividing the normalized result by the cosine of the incident angle. Pixels which are not illuminated by the radar due to the viewing geometry are flagged as shadow.\\n\\nCalibrated data is then orthorectified to the appropriate UTM projection. The orthorectified output maintains the original sample sizes (in range and azimuth) and was not shifted to any specific grid.\\n\\nRTC data is processed only for the Interferometric Wide Swath (IW) mode, which is the main acquisition mode over land and satisfies the majority of service requirements.\\n\",\"item_assets\":{\"hh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HH: horizontal transmit, horizontal receive\",\"description\":\"Terrain-corrected gamma naught values of signal transmitted with horizontal polarization and received with horizontal polarization with radiometric terrain correction applied.\",\"raster:bands\":[{\"nodata\":-32768,\"data_type\":\"float32\",\"spatial_resolution\":10}]},\"hv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HV: horizontal transmit, vertical receive\",\"description\":\"Terrain-corrected gamma naught values of signal transmitted with horizontal polarization and received with vertical polarization with radiometric terrain correction applied.\",\"raster:bands\":[{\"nodata\":-32768,\"data_type\":\"float32\",\"spatial_resolution\":10}]},\"vh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VH: vertical transmit, horizontal receive\",\"description\":\"Terrain-corrected gamma naught values of signal transmitted with vertical polarization and received with horizontal polarization with radiometric terrain correction applied.\",\"raster:bands\":[{\"nodata\":-32768,\"data_type\":\"float32\",\"spatial_resolution\":10}]},\"vv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VV: vertical transmit, vertical receive\",\"description\":\"Terrain-corrected gamma naught values of signal transmitted with vertical polarization and received with vertical polarization with radiometric terrain correction applied.\",\"raster:bands\":[{\"nodata\":-32768,\"data_type\":\"float32\",\"spatial_resolution\":10}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-1\",\"msft:container\":\"sentinel1-grd-rtc\",\"stac_extensions\":[\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"sentinel1euwestrtc\",\"msft:requires_account\":true,\"msft:short_description\":\"Radiometrically terrain corrected SAR imagery derived from the Sentinel 1 Level 1 GRD product.\",\"msft:region\":\"westeurope\"},{\"id\":\"3dep-lidar-intensity\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/3d-elevation-program/about-3dep-products-services\",\"title\":\"About 3DEP Products & Services\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-intensity\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS 3DEP Lidar Intensity\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/intensity-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"extent\":{\"spatial\":{\"bbox\":[[-166.8546920006028,17.655357747708283,-64.56116757979399,71.39330810146807],[144.60180842809473,13.21774453924126,146.08202179248926,18.18369664008955]]},\"temporal\":{\"interval\":[[\"2012-01-01T00:00:00Z\",\"2022-01-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USGS\",\"3DEP\",\"COG\",\"Intensity\"],\"providers\":[{\"name\":\"Landrush\",\"roles\":[\"processor\",\"producer\"]},{\"url\":\"https://www.usgs.gov/core-science-systems/ngp/3dep/\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[2.0]},\"description\":\"This collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc). It is a collection of Cloud Optimized GeoTIFFs representing the pulse return magnitude.\\n\\nThe values are based on the Intensity [PDAL dimension](https://pdal.io/dimensions.html) and uses [`pdal.filters.outlier`](https://pdal.io/stages/filters.outlier.html#filters-outlier) and [`pdal.filters.range`](https://pdal.io/stages/filters.range.html#filters-range) to remove outliers and noise.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"COG data\",\"raster:bands\":[{\"name\":\"Intensity\",\"unit\":\"metre\",\"sampling\":\"point\",\"data_type\":\"uint16\",\"description\":\"Intensity PDAL dimension\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"3dep-lidar\",\"msft:container\":\"usgs-3dep-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json#\"],\"msft:storage_account\":\"usgslidareuwest\",\"msft:short_description\":\"3DEP Lidar collection for the Cloud Optimized Geotiffs (COGs) based on the Intensity dimension.\",\"msft:region\":\"westeurope\"},{\"id\":\"3dep-lidar-pointsourceid\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/3d-elevation-program/about-3dep-products-services\",\"title\":\"About 3DEP Products & Services\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-pointsourceid\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS 3DEP Lidar Point Source\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/pointsourceid-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"},\"geoparquet-items\":{\"href\":\"abfs://items/3dep-lidar-pointsourceid.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-166.8546920006028,17.655357747708283,-64.56116757979399,71.39330810146807],[144.60180842809473,13.21774453924126,146.08202179248926,18.18369664008955]]},\"temporal\":{\"interval\":[[\"2012-01-01T00:00:00Z\",\"2022-01-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USGS\",\"3DEP\",\"COG\",\"PointSourceId\"],\"providers\":[{\"name\":\"Landrush\",\"roles\":[\"processor\",\"producer\"]},{\"url\":\"https://www.usgs.gov/core-science-systems/ngp/3dep/\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[5.0]},\"description\":\"This collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc). It is a collection of Cloud Optimized GeoTIFFs representing the file source ID from which the point originated. Zero indicates that the point originated in the current file.\\n\\nThis values are based on the PointSourceId [PDAL dimension](https://pdal.io/dimensions.html) and uses [`pdal.filters.outlier`](https://pdal.io/stages/filters.outlier.html#filters-outlier) and [`pdal.filters.range`](https://pdal.io/stages/filters.range.html#filters-range) to remove outliers and noise.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"COG data\",\"raster:bands\":[{\"name\":\"PointSourceId\",\"unit\":\"metre\",\"sampling\":\"point\",\"data_type\":\"int32\",\"description\":\"PointSourceId PDAL dimension\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"3dep-lidar\",\"msft:container\":\"usgs-3dep-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json#\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"usgslidareuwest\",\"msft:short_description\":\"3DEP Lidar collection for Cloud Optimized Geotiffs (COGs) using PDAL's PointSourceId dimension.\",\"msft:region\":\"westeurope\"},{\"id\":\"mtbs\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"license\",\"href\":\"https://catalog.data.gov/sl/dataset/mtbs-wildfire-burn-severity-mosaics-40c75\",\"title\":\"CC BY\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/mtbs\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MTBS: Monitoring Trends in Burn Severity\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/mtbs.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MTBS\"},\"geoparquet-items\":{\"href\":\"abfs://items/mtbs.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-166.705027,56.331164,-137.664767,69.980073],[-127.579429,23.680916,-65.871833,50.870718]]},\"temporal\":{\"interval\":[[\"1984-12-31T00:00:00Z\",\"2018-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"MTBS\",\"USGS\",\"USFS\",\"USDA\",\"Forest\",\"Fire\"],\"providers\":[{\"url\":\"https://www.mtbs.gov/\",\"name\":\"MTBS program\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://carbonplan.org\",\"name\":\"CarbonPlan\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[30]},\"description\":\"[Monitoring Trends in Burn Severity](https://www.mtbs.gov/) (MTBS) is an inter-agency program whose goal is to consistently map the burn severity and extent of large fires across the United States from 1984 to the present. This includes all fires 1000 acres or greater in the Western United States and 500 acres or greater in the Eastern United States. The burn severity mosaics in this dataset consist of thematic raster images of MTBS burn severity classes for all currently completed MTBS fires for the continental United States and Alaska.\\n\",\"item_assets\":{\"metadata\":{\"type\":\"text/html\",\"roles\":[\"metadata\"],\"title\":\"Metadata\"},\"burn-severity\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Burn severity\",\"file:values\":[{\"values\":[0],\"summary\":\"No Data\"},{\"values\":[1],\"summary\":\"Unburned to low\"},{\"values\":[2],\"summary\":\"Low\"},{\"values\":[3],\"summary\":\"Moderate\"},{\"values\":[4],\"summary\":\"High\"},{\"values\":[5],\"summary\":\"Increased Greenness\"}]}},\"stac_version\":\"1.0.0\",\"msft:container\":\"cpdata\",\"stac_extensions\":[\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"cpdataeuwest\",\"msft:short_description\":\"Annual burn severity mosaics for the continental United States and Alaska\",\"msft:region\":\"westeurope\"},{\"id\":\"noaa-c-cap\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"describedby\",\"href\":\"https://coast.noaa.gov/data/digitalcoast/pdf/ccap-product-page.pdf\",\"type\":\"application/pdf\",\"title\":\"Handout - C-CAP Products\"},{\"rel\":\"describedby\",\"href\":\"https://coast.noaa.gov/data/digitalcoast/pdf/ccap-faq-regional.pdf\",\"type\":\"application/pdf\",\"title\":\"Frequently Asked Questions\"},{\"rel\":\"describedby\",\"href\":\"https://coast.noaa.gov/data/digitalcoast/pdf/ccap-class-scheme-regional.pdf\",\"type\":\"application/pdf\",\"title\":\"C-CAP Classification Scheme and Class Definitions\"},{\"rel\":\"license\",\"href\":\"https://coast.noaa.gov/digitalcoast/data/ccapregional.html\",\"type\":\"text/html\",\"title\":\"C-CAP Regional Land Cover and Change\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-c-cap\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"C-CAP Regional Land Cover and Change\",\"assets\":{\"boundary\":{\"href\":\"https://coast.noaa.gov/data/digitalcoast/zip/ccap-mapping-bndry-wgs84.zip\",\"type\":\"application/zip\",\"title\":\"C-CAP Mapping Boundary (shp file)\"},\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-c-cap.png\",\"type\":\"image/png\",\"roles\":[\"data\"],\"title\":\"NOAA C-CAP\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-c-cap.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-160.315986,17.892786,-64.966857,49.471148],[-127.984554,22.718719,-64.966857,49.471148],[-160.315986,18.879215,-154.706564,22.271167],[-67.290869,17.892786,-65.230246,18.538629]]},\"temporal\":{\"interval\":[[\"1975-01-01T00:00:00Z\",\"2016-12-31T00:00:00Z\"],[\"1975-01-01T00:00:00Z\",\"2016-12-31T00:00:00Z\"],[\"1992-01-01T00:00:00Z\",\"2005-12-31T00:00:00Z\"],[\"2010-01-01T00:00:00Z\",\"2010-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Land Cover\",\"Land Use\",\"NOAA\",\"Coastal\"],\"providers\":[{\"url\":\"https://coast.noaa.gov/digitalcoast/data/ccapregional.html\",\"name\":\"National Oceanic and Atmospheric Administration, Office for Coastal Management\",\"roles\":[\"licensor\",\"producer\",\"processor\"]},{\"url\":\"https//planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"description\":\"Nationally standardized, raster-based inventories of land cover for the coastal areas of the U.S. Data are derived, through the Coastal Change Analysis Program, from the analysis of multiple dates of remotely sensed imagery. Two file types are available: individual dates that supply a wall-to-wall map, and change files that compare one date to another. The use of standardized data and procedures assures consistency through time and across geographies. C-CAP data forms the coastal expression of the National Land Cover Database (NLCD) and the A-16 land cover theme of the National Spatial Data Infrastructure. \ The data are updated every 5 years.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"value\":0,\"description\":\"Background\"},{\"value\":1,\"description\":\"Unclassified (Cloud, Shadow, etc)\"},{\"value\":2,\"color-hint\":\"FFFFFF\",\"description\":\"High Intensity Developed\"},{\"value\":3,\"color-hint\":\"C1C1C1\",\"description\":\"Medium Intensity Developed\"},{\"value\":4,\"color-hint\":\"979797\",\"description\":\"Low Intensity Developed\"},{\"value\":5,\"color-hint\":\"CCCA42\",\"description\":\"Developed Open Space\"},{\"value\":6,\"color-hint\":\"4E2409\",\"description\":\"Cultivated Crops\"},{\"value\":7,\"color-hint\":\"BCA05B\",\"description\":\"Pasture/Hay\"},{\"value\":8,\"color-hint\":\"EABB8E\",\"description\":\"Grassland/Herbaceous\"},{\"value\":9,\"color-hint\":\"6FEC48\",\"description\":\"Deciduous Forest\"},{\"value\":10,\"color-hint\":\"15380A\",\"description\":\"Evergreen Forest\"},{\"value\":11,\"color-hint\":\"489D48\",\"description\":\"Mixed Forest\"},{\"value\":12,\"color-hint\":\"6D6C1F\",\"description\":\"Scrub/Shrub\"},{\"value\":13,\"color-hint\":\"245A5A\",\"description\":\"Palustrine Forested Wetland\"},{\"value\":14,\"color-hint\":\"E2742D\",\"description\":\"Palustrine Scrub/Shrub Wetland\"},{\"value\":15,\"color-hint\":\"DE3BEA\",\"description\":\"Palustrine Emergent Wetland (Persistent)\"},{\"value\":16,\"color-hint\":\"37083B\",\"description\":\"Estuarine Forested Wetland\"},{\"value\":17,\"color-hint\":\"631569\",\"description\":\"Estuarine Scrub/Shrub Wetland\"},{\"value\":18,\"color-hint\":\"A028A9\",\"description\":\"Estuarine Emergent Wetland\"},{\"value\":19,\"color-hint\":\"6DEEF0\",\"description\":\"Unconsolidated Shore\"},{\"value\":20,\"color-hint\":\"F3F050\",\"description\":\"Bare Land\"},{\"value\":21,\"color-hint\":\"000A72\",\"description\":\"Open Water\"},{\"value\":22,\"color-hint\":\"0021E8\",\"description\":\"Palustrine Aquatic Bed\"},{\"value\":23,\"color-hint\":\"6777D4\",\"description\":\"Estuarine Aquatic Bed\"},{\"value\":24,\"color-hint\":\"F3D147\",\"description\":\"Tundra\"},{\"value\":25,\"color-hint\":\"BBF7EF\",\"description\":\"Perennial Ice/Snow\"}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]}},\"sci:citation\":\"National Oceanic and Atmospheric Administration, Office for Coastal Management. Name of Data Set: Coastal Change Analysis Program (C-CAP) Regional Land Cover. Charleston, SC: NOAA Office for Coastal Management. Accessed April 2022 at www.coast.noaa.gov/htdata/raster1/landcover/bulkdownload/30m_lc/.\",\"stac_version\":\"1.0.0\",\"msft:container\":\"noaa-c-cap\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Periodic coastal landcover classifications back to 1975\",\"msft:region\":\"westeurope\"},{\"id\":\"3dep-lidar-copc\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/3d-elevation-program/about-3dep-products-services\",\"title\":\"About 3DEP Products & Services\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS 3DEP Lidar Point Cloud\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/3dep-lidar-copc-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-166.8546920006028,17.655357747708283,-64.56116757979399,71.39330810146807],[144.60180842809473,13.21774453924126,146.08202179248926,18.18369664008955]]},\"temporal\":{\"interval\":[[\"2012-01-01T00:00:00Z\",\"2022-01-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USGS\",\"3DEP\",\"COG\",\"Point cloud\"],\"providers\":[{\"name\":\"Landrush\",\"roles\":[\"processor\",\"producer\"]},{\"url\":\"https://www.usgs.gov/core-science-systems/ngp/3dep/\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[2.0]},\"description\":\"This collection contains source data from the [USGS 3DEP program](https://www.usgs.gov/3d-elevation-program) reformatted into the [COPC](https://copc.io) format. A COPC file is a LAZ 1.4 file that stores point data organized in a clustered octree. It contains a VLR that describes the octree organization of data that are stored in LAZ 1.4 chunks. The end product is a one-to-one mapping of LAZ to UTM-reprojected COPC files.\\n\\nLAZ data is geospatial [LiDAR point cloud](https://en.wikipedia.org/wiki/Point_cloud) (LPC) content stored in the compressed [LASzip](https://laszip.org?) format. Data were reorganized and stored in LAZ-compatible [COPC](https://copc.io) organization for use in Planetary Computer, which supports incremental spatial access and cloud streaming.\\n\\nLPC can be summarized for construction of digital terrain models (DTM), filtered for extraction of features like vegetation and buildings, and visualized to provide a point cloud map of the physical spaces the laser scanner interacted with. LPC content from 3DEP is used to compute and extract a variety of landscape characterization products, and some of them are provided by Planetary Computer, including Height Above Ground, Relative Intensity Image, and DTM and Digital Surface Models.\\n\\nThe LAZ tiles represent a one-to-one mapping of original tiled content as provided by the [USGS 3DEP program](https://www.usgs.gov/3d-elevation-program), with the exception that the data were reprojected and normalized into appropriate UTM zones for their location without adjustment to the vertical datum. In some cases, vertical datum description may not match actual data values, especially for pre-2010 USGS 3DEP point cloud data.\\n\\nIn addition to these COPC files, various higher-level derived products are available as Cloud Optimized GeoTIFFs in [other collections](https://planetarycomputer.microsoft.com/dataset/group/3dep-lidar).\",\"item_assets\":{\"data\":{\"type\":\"application/vnd.laszip+copc\",\"roles\":[\"data\"],\"title\":\"COPC data\",\"pc:type\":\"lidar\",\"pc:encoding\":\"application/vnd.laszip+copc\"},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COPC\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"3dep-lidar\",\"msft:container\":\"usgs-3dep-copc\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/pointcloud/v1.0.0/schema.json\"],\"msft:storage_account\":\"usgslidareuwest\",\"msft:short_description\":\"Nationwide Lidar point cloud data in COPC format.\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-64A1-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/1006/MCD64_User_Guide_V61.pdf\",\"title\":\"MCD64 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MCD64A1\",\"title\":\"MCD64A1 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MCD64A1.061\",\"title\":\"LP DAAC - MCD64A1\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-64A1-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Burned Area Monthly\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-64A1-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Burned Area Monthly thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-64A1-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-11-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Imagery\",\"Global\",\"Fire\",\"MCD64A1\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Terra and Aqua combined MCD64A1 Version 6.1 Burned Area data product is a monthly, global gridded 500 meter (m) product containing per-pixel burned-area and quality information. The MCD64A1 burned-area mapping approach employs 500 m Moderate Resolution Imaging Spectroradiometer (MODIS) Surface Reflectance imagery coupled with 1 kilometer (km) MODIS active fire observations. The algorithm uses a burn sensitive Vegetation Index (VI) to create dynamic thresholds that are applied to the composite data. The VI is derived from MODIS shortwave infrared atmospherically corrected surface reflectance bands 5 and 7 with a measure of temporal texture. The algorithm identifies the date of burn for the 500 m grid cells within each individual MODIS tile. The date is encoded in a single data layer as the ordinal day of the calendar year on which the burn occurred with values assigned to unburned land pixels and additional special values reserved for missing data and water grid cells. The data layers provided in the MCD64A1 product include Burn Date, Burn Data Uncertainty, Quality Assurance, along with First Day and Last Day of reliable change detection of the year.\",\"item_assets\":{\"QA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality Assurance Indicators\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"Last_Day\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Last day of the year of reliable change detection\",\"raster:bands\":[{\"unit\":\"Day\",\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"Burn_Date\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Burn day of year\",\"raster:bands\":[{\"unit\":\"Day\",\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"First_Day\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"First day of the year of reliable change detection\",\"raster:bands\":[{\"unit\":\"Day\",\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"Burn_Date_Uncertainty\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Estimated uncertainty in burn day\",\"raster:bands\":[{\"unit\":\"Day\",\"data_type\":\"uint8\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MCD64A1.061\",\"citation\":\"Giglio, L., Justice, C., Boschetti, L., & Roy, D. (2021). MODIS/Terra+Aqua Burned Area Monthly L3 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MCD64A1.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Burned Area Monthly\",\"msft:region\":\"westeurope\"},{\"id\":\"alos-fnf-mosaic\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"handbook\",\"href\":\"https://www.eorc.jaxa.jp/ALOS/en/dataset/pdf/DatasetDescription_PALSAR2_FNF_V200.pdf\",\"type\":\"application/pdf\",\"title\":\"Global 25 m Resolution PALSAR-2/PALSAR Forest/Non-Forest Map (FNF)\",\"description\":\"Also includes data usage information\"},{\"rel\":\"license\",\"href\":\"https://earth.jaxa.jp/policy/en.html\",\"type\":\"text/html\",\"title\":\"JAXA Terms of Use of Research Data\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/alos-fnf-mosaic\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ALOS Forest/Non-Forest Annual Mosaic\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/alos-fnf-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"ALOS PALSAR MOSAIC\"},\"geoparquet-items\":{\"href\":\"abfs://items/alos-fnf-mosaic.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,85.0,180.0,-56.0]]},\"temporal\":{\"interval\":[[\"2015-01-01T00:00:00Z\",\"2020-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"version\":\"2.0.0\",\"keywords\":[\"ALOS\",\"JAXA\",\"Forest\",\"Land Cover\",\"Global\"],\"providers\":[{\"url\":\"https://www.eorc.jaxa.jp/ALOS/en/dataset/fnf_e.htm\",\"name\":\"Japan Aerospace Exploration Agency\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://developmentseed.org\",\"name\":\"Development Seed\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft Planetary Computer\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"ALOS\",\"ALOS-2\"],\"instruments\":[\"PALSAR\",\"PALSAR-2\"]},\"description\":\"The global 25m resolution SAR mosaics and forest/non-forest maps are free and open annual datasets generated by [JAXA](https://www.eorc.jaxa.jp/ALOS/en/dataset/fnf_e.htm) using the L-band Synthetic Aperture Radar sensors on the Advanced Land Observing Satellite-2 (ALOS-2 PALSAR-2), the Advanced Land Observing Satellite (ALOS PALSAR) and the Japanese Earth Resources Satellite-1 (JERS-1 SAR).\\n\\nThe global forest/non-forest maps (FNF) were generated by a Random Forest machine learning-based classification method, with the re-processed global 25m resolution [PALSAR-2 mosaic dataset](https://planetarycomputer.microsoft.com/dataset/alos-palsar-mosaic) (Ver. 2.0.0) as input. Here, the \\\"forest\\\" is defined as the tree covered land with an area larger than 0.5 ha and a canopy cover of over 10 %, in accordance with the FAO definition of forest. The classification results are presented in four categories, with two categories of forest areas: forests with a canopy cover of 90 % or more and forests with a canopy cover of 10 % to 90 %, depending on the density of the forest area.\\n\\nSee the [Product Description](https://www.eorc.jaxa.jp/ALOS/en/dataset/pdf/DatasetDescription_PALSAR2_FNF_V200.pdf) for more details.\\n\",\"item_assets\":{\"C\":{\"role\":\"data\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"C\",\"description\":\"Forest vs Non-Forest classification\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\"}],\"classification:classes\":[{\"name\":\"no_data\",\"value\":0,\"description\":\"No data\"},{\"name\":\"forest (>90%)\",\"value\":1,\"description\":\"Forest (>90% canopy cover)\"},{\"name\":\"forest (10-90%)\",\"value\":2,\"description\":\"Forest (10-90% canopy cover)\"},{\"name\":\"non_forest\",\"value\":3,\"description\":\"Non-forest\"},{\"name\":\"water\",\"value\":4,\"description\":\"Water\"}]}},\"stac_version\":\"1.0.0\",\"msft:container\":\"palsar\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/version/v1.0.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"https://pceo.blob.core.windows.net/\",\"msft:short_description\":\"Global 25m resolution map classifying \\\"forest\\\" and \\\"non-forest\\\" landcover.\",\"msft:region\":\"westeurope\"},{\"id\":\"3dep-lidar-returns\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/3d-elevation-program/about-3dep-products-services\",\"title\":\"About 3DEP Products & Services\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-returns\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS 3DEP Lidar Returns\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/numberofreturns-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"},\"geoparquet-items\":{\"href\":\"abfs://items/3dep-lidar-returns.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-166.8546920006028,17.655357747708283,-64.56116757979399,71.39330810146807],[144.60180842809473,13.21774453924126,146.08202179248926,18.18369664008955]]},\"temporal\":{\"interval\":[[\"2012-01-01T00:00:00Z\",\"2022-01-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USGS\",\"3DEP\",\"COG\",\"NumberOfReturns\"],\"providers\":[{\"name\":\"Landrush\",\"roles\":[\"processor\",\"producer\"]},{\"url\":\"https://www.usgs.gov/core-science-systems/ngp/3dep/\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[5.0]},\"description\":\"This collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc). It is a collection of Cloud Optimized GeoTIFFs representing the number of returns for a given pulse.\\n\\nThis values are based on the PointSourceId [PDAL dimension](https://pdal.io/dimensions.html) and uses [`pdal.filters.outlier`](https://pdal.io/stages/filters.outlier.html#filters-outlier) and [`pdal.filters.range`](https://pdal.io/stages/filters.range.html#filters-range) to remove outliers and noise.\\n\\nThe values are based on the NumberOfReturns [PDAL dimension](https://pdal.io/dimensions.html) and uses [`pdal.filters.outlier`](https://pdal.io/stages/filters.outlier.html#filters-outlier) and [`pdal.filters.range`](https://pdal.io/stages/filters.range.html#filters-range) to remove outliers and noise.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"COG data\",\"raster:bands\":[{\"name\":\"ReturnNumber\",\"unit\":\"metre\",\"sampling\":\"point\",\"data_type\":\"int16\",\"description\":\"Raster for ReturnNumber PDAL dimension\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"3dep-lidar\",\"msft:container\":\"usgs-3dep-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json#\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"usgslidareuwest\",\"msft:short_description\":\"3DEP Lidar collection for the Cloud Optimized Geotiffs (COGs) based on the ReturnNumber dimension.\",\"msft:region\":\"westeurope\"},{\"id\":\"mobi\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"license\",\"href\":\"https://aka.ms/mobi-license\",\"title\":\"NatureServe MoBI license\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/mobi\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MoBI: Map of Biodiversity Importance\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/mobi.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MoBI\"},\"geoparquet-items\":{\"href\":\"abfs://items/mobi.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-130.23751729209377,21.736663926419077,-63.66198266211968,49.184200486300604]]},\"temporal\":{\"interval\":[[\"2020-04-14T00:00:00Z\",\"2020-04-14T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"MoBI\",\"Natureserve\",\"United States\",\"Biodiversity\"],\"providers\":[{\"url\":\"http://natureserve.org/\",\"name\":\"NatureServe\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[990]},\"description\":\"The [Map of Biodiversity Importance](https://www.natureserve.org/conservation-tools/projects/map-biodiversity-importance) (MoBI) consists of raster maps that combine habitat information for 2,216 imperiled species occurring in the conterminous United States, using weightings based on range size and degree of protection to identify areas of high importance for biodiversity conservation. Species included in the project are those which, as of September 2018, had a global conservation status of G1 (critical imperiled) or G2 (imperiled) or which are listed as threatened or endangered at the full species level under the United States Endangered Species Act. Taxonomic groups included in the project are vertebrates (birds, mammals, amphibians, reptiles, turtles, crocodilians, and freshwater and anadromous fishes), vascular plants, selected aquatic invertebrates (freshwater mussels and crayfish) and selected pollinators (bumblebees, butterflies, and skippers).\\n\\nThere are three types of spatial data provided, described in more detail below: species richness, range-size rarity, and protection-weighted range-size rarity. For each type, this data set includes five different layers – one for all species combined, and four additional layers that break the data down by taxonomic group (vertebrates, plants, freshwater invertebrates, and pollinators) – for a total of fifteen layers.\\n\\nThese data layers are intended to identify areas of high potential value for on-the-ground biodiversity protection efforts. As a synthesis of predictive models, they cannot guarantee either the presence or absence of imperiled species at a given location. For site-specific decision-making, these data should be used in conjunction with field surveys and/or documented occurrence data, such as is available from the [NatureServe Network](https://www.natureserve.org/natureserve-network).\\n\",\"item_assets\":{\"RSR_All\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Range-size rarity for all species\"},\"RSR_Plants\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Range-size rarity for vascular plants\"},\"RSR_Vertebrates\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Range-size rarity for vertebrates\"},\"RSR_AquaticInverts\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Range-size rarity for aquatic invertebrates\"},\"PWRSR_GAP12_SUM_All\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Protection-weighted range-size rarity for all species\"},\"SpeciesRichness_All\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Species richness for all species\"},\"RSR_PollinatorInverts\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Range-size rarity for pollinators\"},\"PWRSR_GAP12_SUM_Plants\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Protection-weighted range-size rarity for vascular plants\"},\"SpeciesRichness_Plants\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Species richness for vascular plants\"},\"PWRSR_GAP12_SUM_Vertebrates\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Protection-weighted range-size rarity for vertebrates\"},\"SpeciesRichness_Vertebrates\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Species richness for vertebrates\"},\"PWRSR_GAP12_SUM_AquaticInverts\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Protection-weighted range-size rarity for aquatic invertebrates\"},\"SpeciesRichness_AquaticInverts\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Species richness for aquatic invertebrates\"},\"PWRSR_GAP12_SUM_PollinatorInverts\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Protection-weighted range-size rarity for pollinators\"},\"SpeciesRichness_PollinatorInverts\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Species richness for pollinators\"}},\"stac_version\":\"1.0.0\",\"msft:container\":\"mobi\",\"stac_extensions\":[\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Habitat information for 2,216 imperiled species occurring in the continental United States\",\"msft:region\":\"westeurope\"},{\"id\":\"landsat-c2-l2\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9IAXOVV\",\"title\":\"Landsat 4-5 TM Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9C7I13B\",\"title\":\"Landsat 7 ETM+ Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat 8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/core-science-systems/hdds/data-policy\",\"title\":\"Public Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/landsat-c2-l2\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Landsat Collection 2 Level-2\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/landsat-c2-l2-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Landsat Collection 2 Level-2 thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/landsat-c2-l2.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-90.0,180.0,90.0]]},\"temporal\":{\"interval\":[[\"1982-08-22T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Landsat\",\"USGS\",\"NASA\",\"Satellite\",\"Global\",\"Imagery\",\"Reflectance\",\"Temperature\"],\"providers\":[{\"url\":\"https://landsat.gsfc.nasa.gov/\",\"name\":\"NASA\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products\",\"name\":\"USGS\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[30,60,100,120],\"sci:doi\":[\"10.5066/P9IAXOVV\",\"10.5066/P9C7I13B\",\"10.5066/P9OGBGM6\"],\"eo:bands\":[{\"name\":\"TM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Thematic Mapper)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.07},{\"name\":\"TM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Thematic Mapper)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"TM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Thematic Mapper)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"TM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Thematic Mapper)\",\"center_wavelength\":0.83,\"full_width_half_max\":0.14},{\"name\":\"TM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"TM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Thematic Mapper)\",\"center_wavelength\":11.45,\"full_width_half_max\":2.1},{\"name\":\"TM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":2.22,\"full_width_half_max\":0.27},{\"name\":\"ETM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.07},{\"name\":\"ETM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"ETM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"ETM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.84,\"full_width_half_max\":0.13},{\"name\":\"ETM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"ETM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":11.34,\"full_width_half_max\":2.05},{\"name\":\"ETM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.28},{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol (Operational Land Imager)\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02},{\"name\":\"OLI_B2\",\"common_name\":\"blue\",\"description\":\"Visible blue (Operational Land Imager)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06},{\"name\":\"OLI_B3\",\"common_name\":\"green\",\"description\":\"Visible green (Operational Land Imager)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06},{\"name\":\"OLI_B4\",\"common_name\":\"red\",\"description\":\"Visible red (Operational Land Imager)\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04},{\"name\":\"OLI_B5\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Operational Land Imager)\",\"center_wavelength\":0.87,\"full_width_half_max\":0.03},{\"name\":\"OLI_B6\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.09},{\"name\":\"OLI_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.19},{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave infrared (Thermal Infrared Sensor)\",\"center_wavelength\":10.9,\"full_width_half_max\":0.59}],\"platform\":[\"landsat-4\",\"landsat-5\",\"landsat-7\",\"landsat-8\",\"landsat-9\"],\"instruments\":[\"tm\",\"etm+\",\"oli\",\"tirs\"],\"view:off_nadir\":{\"maximum\":15,\"minimum\":0}},\"description\":\"Landsat Collection 2 Level-2 [Science Products](https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products), consisting of atmospherically corrected [surface reflectance](https://www.usgs.gov/landsat-missions/landsat-collection-2-surface-reflectance) and [surface temperature](https://www.usgs.gov/landsat-missions/landsat-collection-2-surface-temperature) image data. Collection 2 Level-2 Science Products are available from August 22, 1982 to present.\\n\\nThis dataset represents the global archive of Level-2 data from [Landsat Collection 2](https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-2) acquired by the [Thematic Mapper](https://landsat.gsfc.nasa.gov/thematic-mapper/) onboard Landsat 4 and 5, the [Enhanced Thematic Mapper](https://landsat.gsfc.nasa.gov/the-enhanced-thematic-mapper-plus-etm/) onboard Landsat 7, and the [Operatational Land Imager](https://landsat.gsfc.nasa.gov/satellites/landsat-8/spacecraft-instruments/operational-land-imager/) and [Thermal Infrared Sensor](https://landsat.gsfc.nasa.gov/satellites/landsat-8/spacecraft-instruments/thermal-infrared-sensor/) onboard Landsat 8 and 9. Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\n\",\"item_assets\":{\"qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Quality Assessment Band (ST_QA) Surface Temperature Product\",\"raster:bands\":[{\"unit\":\"kelvin\",\"scale\":0.01,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"ang\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Angle Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients File\"},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Red Band\",\"eo:bands\":[{\"common_name\":\"red\",\"description\":\"Visible red\"}],\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Blue Band\",\"eo:bands\":[{\"common_name\":\"blue\",\"description\":\"Visible blue\"}],\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"drad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Downwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Downwelled Radiance Band (ST_DRAD) Surface Temperature Product\",\"raster:bands\":[{\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"emis\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Emissivity Band\",\"description\":\"Collection 2 Level-2 Emissivity Band (ST_EMIS) Surface Temperature Product\",\"raster:bands\":[{\"unit\":\"emissivity coefficient\",\"scale\":0.0001,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"emsd\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Emissivity Standard Deviation Band\",\"description\":\"Collection 2 Level-2 Emissivity Standard Deviation Band (ST_EMSD) Surface Temperature Product\",\"raster:bands\":[{\"unit\":\"emissivity coefficient\",\"scale\":0.0001,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"lwir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"temperature\"],\"title\":\"Surface Temperature Band\",\"eo:bands\":[{\"common_name\":\"lwir\",\"description\":\"Long-wave infrared\"}],\"description\":\"Collection 2 Level-2 Thermal Infrared Band (ST_B6) Surface Temperature\",\"raster:bands\":[{\"unit\":\"kelvin\",\"scale\":0.00341802,\"nodata\":0,\"offset\":149.0,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"trad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Thermal Radiance Band\",\"description\":\"Collection 2 Level-2 Thermal Radiance Band (ST_TRAD) Surface Temperature Product\",\"raster:bands\":[{\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"urad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Upwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Upwelled Radiance Band (ST_URAD) Surface Temperature Product\",\"raster:bands\":[{\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"atran\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Atmospheric Transmittance Band\",\"description\":\"Collection 2 Level-2 Atmospheric Transmittance Band (ST_ATRAN) Surface Temperature Product\",\"raster:bands\":[{\"scale\":0.0001,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"cdist\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Cloud Distance Band\",\"description\":\"Collection 2 Level-2 Cloud Distance Band (ST_CDIST) Surface Temperature Product\",\"raster:bands\":[{\"unit\":\"kilometer\",\"scale\":0.01,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Green Band\",\"eo:bands\":[{\"common_name\":\"green\",\"description\":\"Visible green\",\"center_wavelength\":0.56}],\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Near Infrared Band 0.8\",\"eo:bands\":[{\"common_name\":\"nir08\",\"description\":\"Near infrared\"}],\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"lwir11\":{\"gsd\":100,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"temperature\"],\"title\":\"Surface Temperature Band\",\"eo:bands\":[{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave infrared\",\"center_wavelength\":10.9,\"full_width_half_max\":0.59}],\"description\":\"Collection 2 Level-2 Thermal Infrared Band (ST_B10) Surface Temperature\",\"raster:bands\":[{\"unit\":\"kelvin\",\"scale\":0.00341802,\"nodata\":0,\"offset\":149.0,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave Infrared Band 1.6\",\"eo:bands\":[{\"common_name\":\"swir16\",\"description\":\"Short-wave infrared\"}],\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave Infrared Band 2.2\",\"eo:bands\":[{\"common_name\":\"swir22\",\"description\":\"Short-wave infrared\"}],\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 2.2 (SR_B7) Surface Reflectance\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Coastal/Aerosol Band\",\"eo:bands\":[{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection 2 Level-2 Coastal/Aerosol Band (SR_B1) Surface Reflectance\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"mtl.txt\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Product Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata File (txt)\"},\"mtl.xml\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata File (xml)\"},\"cloud_qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"],\"title\":\"Cloud Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Cloud Quality Assessment Band (SR_CLOUD_QA) Surface Reflectance Product\",\"raster:bands\":[{\"unit\":\"bit index\",\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:bitfields\":[{\"name\":\"ddv\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_ddv\",\"value\":0,\"description\":\"Pixel has no DDV\"},{\"name\":\"ddv\",\"value\":1,\"description\":\"Pixel has DDV\"}],\"description\":\"Dense Dark Vegetation (DDV)\"},{\"name\":\"cloud\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_cloud\",\"value\":0,\"description\":\"Pixel has no cloud\"},{\"name\":\"cloud\",\"value\":1,\"description\":\"Pixel has cloud\"}],\"description\":\"Cloud mask\"},{\"name\":\"cloud_shadow\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_shadow\",\"value\":0,\"description\":\"Pixel has no cloud shadow\"},{\"name\":\"shadow\",\"value\":1,\"description\":\"Pixel has cloud shadow\"}],\"description\":\"Cloud shadow mask\"},{\"name\":\"cloud_adjacent\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_adjacent\",\"value\":0,\"description\":\"Pixel is not adjacent to cloud\"},{\"name\":\"adjacent\",\"value\":1,\"description\":\"Pixel is adjacent to cloud\"}],\"description\":\"Cloud adjacency\"},{\"name\":\"snow\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_snow\",\"value\":0,\"description\":\"Pixel is not snow\"},{\"name\":\"shadow\",\"value\":1,\"description\":\"Pixel is snow\"}],\"description\":\"Snow mask\"},{\"name\":\"water\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Pixel is not water\"},{\"name\":\"water\",\"value\":1,\"description\":\"Pixel is water\"}],\"description\":\"Water mask\"}]},\"mtl.json\":{\"type\":\"application/json\",\"roles\":[\"metadata\"],\"title\":\"Product Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata File (json)\"},\"qa_pixel\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"],\"title\":\"Pixel Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality Assessment Band (QA_PIXEL)\",\"raster:bands\":[{\"unit\":\"bit index\",\"nodata\":1,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"qa_radsat\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"saturation\"],\"raster:bands\":[{\"unit\":\"bit index\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"qa_aerosol\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data-mask\",\"water-mask\"],\"title\":\"Aerosol Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product\",\"raster:bands\":[{\"unit\":\"bit index\",\"nodata\":1,\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:bitfields\":[{\"name\":\"fill\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_fill\",\"value\":0,\"description\":\"Pixel is not fill\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Pixel is fill\"}],\"description\":\"Image or fill data\"},{\"name\":\"retrieval\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_valid\",\"value\":0,\"description\":\"Pixel retrieval is not valid\"},{\"name\":\"valid\",\"value\":1,\"description\":\"Pixel retrieval is valid\"}],\"description\":\"Valid aerosol retrieval\"},{\"name\":\"water\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Pixel is not water\"},{\"name\":\"water\",\"value\":1,\"description\":\"Pixel is water\"}],\"description\":\"Water mask\"},{\"name\":\"interpolated\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_interpolated\",\"value\":0,\"description\":\"Pixel is not interpolated aerosol\"},{\"name\":\"interpolated\",\"value\":1,\"description\":\"Pixel is interpolated aerosol\"}],\"description\":\"Aerosol interpolation\"},{\"name\":\"level\",\"length\":2,\"offset\":6,\"classes\":[{\"name\":\"climatology\",\"value\":0,\"description\":\"No aerosol correction applied\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low aerosol level\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium aerosol level\"},{\"name\":\"high\",\"value\":3,\"description\":\"High aerosol level\"}],\"description\":\"Aerosol level\"}]},\"atmos_opacity\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Atmospheric Opacity Band\",\"description\":\"Collection 2 Level-2 Atmospheric Opacity Band (SR_ATMOS_OPACITY) Surface Reflectance Product\",\"raster:bands\":[{\"scale\":0.001,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"landsat\",\"msft:container\":\"landsat-c2\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"landsateuwest\",\"msft:short_description\":\"Landsat Collection 2 Level-2 data from the Thematic Mapper (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor (TIRS) onboard Landsat 8 and 9.\",\"msft:region\":\"westeurope\"},{\"id\":\"era5-pds\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"license\",\"href\":\"https://apps.ecmwf.int/datasets/licences/copernicus/\",\"type\":\"application/pdf\",\"title\":\"License to Use Copernicus Products\"},{\"rel\":\"describedby\",\"href\":\"https://confluence.ecmwf.int/display/CKB/ERA5\",\"type\":\"text/html\",\"title\":\"Project homepage\"},{\"rel\":\"describedby\",\"href\":\"https://confluence.ecmwf.int/display/CKB/How+to+acknowledge+and+cite+a+Climate+Data+Store+%28CDS%29+catalogue+entry+and+the+data+published+as+part+of+it\",\"type\":\"text/html\",\"title\":\"How to cite\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/era5-pds\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ERA5 - PDS\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/era5-thumbnail.png\",\"type\":\"image/png\",\"title\":\"Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/era5-pds.parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"media_type\":\"application/x-parquet\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"extra_fields\":{\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1979-01-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"ERA5\",\"ECMWF\",\"Precipitation\",\"Temperature\",\"Reanalysis\",\"Weather\"],\"providers\":[{\"url\":\"https://www.ecmwf.int/\",\"name\":\"ECMWF\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetos.com/\",\"name\":\"Planet OS\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"era5:kind\":[\"fc\",\"an\"]},\"description\":\"ERA5 is the fifth generation ECMWF atmospheric reanalysis of the global climate\\ncovering the period from January 1950 to present. ERA5 is produced by the\\nCopernicus Climate Change Service (C3S) at ECMWF.\\n\\nReanalysis combines model data with observations from across the world into a\\nglobally complete and consistent dataset using the laws of physics. This\\nprinciple, called data assimilation, is based on the method used by numerical\\nweather prediction centres, where every so many hours (12 hours at ECMWF) a\\nprevious forecast is combined with newly available observations in an optimal\\nway to produce a new best estimate of the state of the atmosphere, called\\nanalysis, from which an updated, improved forecast is issued. Reanalysis works\\nin the same way, but at reduced resolution to allow for the provision of a\\ndataset spanning back several decades. Reanalysis does not have the constraint\\nof issuing timely forecasts, so there is more time to collect observations, and\\nwhen going further back in time, to allow for the ingestion of improved versions\\nof the original observations, which all benefit the quality of the reanalysis\\nproduct.\\n\\nThis dataset was converted to Zarr by [Planet OS](https://planetos.com/).\\nSee [their documentation](https://github.com/planet-os/notebooks/blob/master/aws/era5-pds.md)\\nfor more.\\n\\n## STAC Metadata\\n\\nTwo types of data variables are provided: \\\"forecast\\\" (`fc`) and \\\"analysis\\\" (`an`).\\n\\n* An **analysis**, of the atmospheric conditions, is a blend of observations\\n with a previous forecast. An analysis can only provide\\n [instantaneous](https://confluence.ecmwf.int/display/CKB/Model+grid+box+and+time+step)\\n \ parameters (parameters valid at a specific time, e.g temperature at 12:00),\\n \ but not accumulated parameters, mean rates or min/max parameters.\\n* A **forecast** starts with an analysis at a specific time (the 'initialization\\n \ time'), and a model computes the atmospheric conditions for a number of\\n \ 'forecast steps', at increasing 'validity times', into the future. A forecast\\n \ can provide\\n [instantaneous](https://confluence.ecmwf.int/display/CKB/Model+grid+box+and+time+step)\\n \ parameters, accumulated parameters, mean rates, and min/max parameters.\\n\\nEach [STAC](https://stacspec.org/) item in this collection covers a single month\\nand the entire globe. There are two STAC items per month, one for each type of data\\nvariable (`fc` and `an`). The STAC items include an `ecmwf:kind` properties to\\nindicate which kind of variables that STAC item catalogs.\\n\\n## How to acknowledge, cite and refer to ERA5\\n\\nAll users of data on the Climate Data Store (CDS) disks (using either the web interface or the CDS API) must provide clear and visible attribution to the Copernicus programme and are asked to cite and reference the dataset provider:\\n\\nAcknowledge according to the [licence to use Copernicus Products](https://cds.climate.copernicus.eu/api/v2/terms/static/licence-to-use-copernicus-products.pdf).\\n\\nCite each dataset used as indicated on the relevant CDS entries (see link to \\\"Citation\\\" under References on the Overview page of the dataset entry).\\n\\nThroughout the content of your publication, the dataset used is referred to as Author (YYYY).\\n\\nThe 3-steps procedure above is illustrated with this example: [Use Case 2: ERA5 hourly data on single levels from 1979 to present](https://confluence.ecmwf.int/display/CKB/Use+Case+2%3A+ERA5+hourly+data+on+single+levels+from+1979+to+present).\\n\\nFor complete details, please refer to [How to acknowledge and cite a Climate Data Store (CDS) catalogue entry and the data published as part of it](https://confluence.ecmwf.int/display/CKB/How+to+acknowledge+and+cite+a+Climate+Data+Store+%28CDS%29+catalogue+entry+and+the+data+published+as+part+of+it).\",\"item_assets\":{\"surface_air_pressure\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Surface pressure\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"sea_surface_temperature\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Sea surface temperature\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"eastward_wind_at_10_metres\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"10 metre U wind component\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"air_temperature_at_2_metres\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"2 metre temperature\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"eastward_wind_at_100_metres\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"100 metre U wind component\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"northward_wind_at_10_metres\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"10 metre V wind component\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"northward_wind_at_100_metres\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"100 metre V wind component\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"air_pressure_at_mean_sea_level\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Mean sea level pressure\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"dew_point_temperature_at_2_metres\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"2 metre dewpoint temperature\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"precipitation_amount_1hour_Accumulation\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Total precipitation\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"air_temperature_at_2_metres_1hour_Maximum\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Maximum temperature at 2 metres since previous post-processing\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"air_temperature_at_2_metres_1hour_Minimum\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Minimum temperature at 2 metres since previous post-processing\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"integral_wrt_time_of_surface_direct_downwelling_shortwave_flux_in_air_1hour_Accumulation\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Surface solar radiation downwards\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}}},\"stac_version\":\"1.0.0\",\"cube:variables\":{\"time1_bounds\":{\"type\":\"data\",\"attrs\":{},\"shape\":[null,2],\"dimensions\":[\"time\",\"nv\"]},\"surface_air_pressure\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"nameCDM\":\"Surface_pressure_surface\",\"long_name\":\"Surface pressure\",\"nameECMWF\":\"Surface pressure\",\"product_type\":\"analysis\",\"standard_name\":\"surface_air_pressure\",\"shortNameECMWF\":\"sp\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Surface pressure\"},\"sea_surface_temperature\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"nameCDM\":\"Sea_surface_temperature_surface\",\"long_name\":\"Sea surface temperature\",\"nameECMWF\":\"Sea surface temperature\",\"product_type\":\"analysis\",\"standard_name\":\"sea_surface_temperature\",\"shortNameECMWF\":\"sst\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Sea surface temperature\"},\"eastward_wind_at_10_metres\":{\"type\":\"data\",\"unit\":\"m s**-1\",\"attrs\":{\"units\":\"m s**-1\",\"nameCDM\":\"10_metre_U_wind_component_surface\",\"long_name\":\"10 metre U wind component\",\"nameECMWF\":\"10 metre U wind component\",\"product_type\":\"analysis\",\"standard_name\":\"eastward_wind\",\"shortNameECMWF\":\"10u\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"10 metre U wind component\"},\"air_temperature_at_2_metres\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"nameCDM\":\"2_metre_temperature_surface\",\"long_name\":\"2 metre temperature\",\"nameECMWF\":\"2 metre temperature\",\"product_type\":\"analysis\",\"standard_name\":\"air_temperature\",\"shortNameECMWF\":\"2t\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"2 metre temperature\"},\"eastward_wind_at_100_metres\":{\"type\":\"data\",\"unit\":\"m s**-1\",\"attrs\":{\"units\":\"m s**-1\",\"nameCDM\":\"100_metre_U_wind_component_surface\",\"long_name\":\"100 metre U wind component\",\"nameECMWF\":\"100 metre U wind component\",\"product_type\":\"analysis\",\"standard_name\":\"eastward_wind\",\"shortNameECMWF\":\"100u\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"100 metre U wind component\"},\"northward_wind_at_10_metres\":{\"type\":\"data\",\"unit\":\"m s**-1\",\"attrs\":{\"units\":\"m s**-1\",\"nameCDM\":\"10_metre_V_wind_component_surface\",\"long_name\":\"10 metre V wind component\",\"nameECMWF\":\"10 metre V wind component\",\"product_type\":\"analysis\",\"standard_name\":\"northward_wind\",\"shortNameECMWF\":\"10v\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"10 metre V wind component\"},\"northward_wind_at_100_metres\":{\"type\":\"data\",\"unit\":\"m s**-1\",\"attrs\":{\"units\":\"m s**-1\",\"nameCDM\":\"100_metre_V_wind_component_surface\",\"long_name\":\"100 metre V wind component\",\"nameECMWF\":\"100 metre V wind component\",\"product_type\":\"analysis\",\"standard_name\":\"northward_wind\",\"shortNameECMWF\":\"100v\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"100 metre V wind component\"},\"air_pressure_at_mean_sea_level\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"nameCDM\":\"Mean_sea_level_pressure_surface\",\"long_name\":\"Mean sea level pressure\",\"nameECMWF\":\"Mean sea level pressure\",\"product_type\":\"analysis\",\"standard_name\":\"air_pressure_at_mean_sea_level\",\"shortNameECMWF\":\"msl\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Mean sea level pressure\"},\"dew_point_temperature_at_2_metres\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"nameCDM\":\"2_metre_dewpoint_temperature_surface\",\"long_name\":\"2 metre dewpoint temperature\",\"nameECMWF\":\"2 metre dewpoint temperature\",\"product_type\":\"analysis\",\"standard_name\":\"dew_point_temperature\",\"shortNameECMWF\":\"2d\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"2 metre dewpoint temperature\"},\"precipitation_amount_1hour_Accumulation\":{\"type\":\"data\",\"unit\":\"m\",\"attrs\":{\"units\":\"m\",\"nameCDM\":\"Total_precipitation_1hour_Accumulation\",\"long_name\":\"Total precipitation\",\"nameECMWF\":\"Total precipitation\",\"product_type\":\"forecast\",\"standard_name\":\"precipitation_amount\",\"shortNameECMWF\":\"tp\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Total precipitation\"},\"air_temperature_at_2_metres_1hour_Maximum\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"nameCDM\":\"Maximum_temperature_at_2_metres_since_previous_post-processing_surface_1_Hour_2\",\"long_name\":\"Maximum temperature at 2 metres since previous post-processing\",\"nameECMWF\":\"Maximum temperature at 2 metres since previous post-processing\",\"product_type\":\"forecast\",\"standard_name\":\"air_temperature\",\"shortNameECMWF\":\"mx2t\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Maximum temperature at 2 metres since previous post-processing\"},\"air_temperature_at_2_metres_1hour_Minimum\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"nameCDM\":\"Minimum_temperature_at_2_metres_since_previous_post-processing_surface_1_Hour_2\",\"long_name\":\"Minimum temperature at 2 metres since previous post-processing\",\"nameECMWF\":\"Minimum temperature at 2 metres since previous post-processing\",\"product_type\":\"forecast\",\"standard_name\":\"air_temperature\",\"shortNameECMWF\":\"mn2t\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Minimum temperature at 2 metres since previous post-processing\"},\"integral_wrt_time_of_surface_direct_downwelling_shortwave_flux_in_air_1hour_Accumulation\":{\"type\":\"data\",\"unit\":\"J m**-2\",\"attrs\":{\"units\":\"J m**-2\",\"nameCDM\":\"Surface_solar_radiation_downwards_surface_1_Hour_Accumulation\",\"long_name\":\"Surface solar radiation downwards\",\"nameECMWF\":\"Surface solar radiation downwards\",\"product_type\":\"forecast\",\"standard_name\":\"integral_wrt_time_of_surface_direct_downwelling_shortwave_flux_in_air\",\"shortNameECMWF\":\"ssrd\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Surface solar radiation downwards\"}},\"msft:container\":\"era5\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"step\":-0.25,\"type\":\"spatial\",\"extent\":[-90.0,90.0],\"description\":\"latitude\",\"reference_system\":\"epsg:4326\"},\"lon\":{\"axis\":\"x\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[0.0,359.75],\"description\":\"longitude\",\"reference_system\":\"epsg:4326\"},\"time\":{\"step\":\"P0DT1H0M0S\",\"type\":\"temporal\",\"extent\":[\"1970-01-01T00:00:00Z\",null]}},\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"cpdataeuwest\",\"msft:short_description\":\"A comprehensive reanalysis, which assimilates as many observations as possible in the upper air and near surface.\",\"msft:region\":\"westeurope\"},{\"id\":\"chloris-biomass\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"license\",\"href\":\"https://spdx.org/licenses/CC-BY-NC-SA-4.0.html\",\"title\":\"Creative Commons Attribution Non Commercial Share Alike 4.0 International\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/chloris-biomass\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Chloris Biomass\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/chloris-biomass.jpg\",\"type\":\"image/jpg\",\"roles\":[\"thumbnail\"],\"title\":\"Chloris Biomass\"},\"geoparquet-items\":{\"href\":\"abfs://items/chloris-biomass.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-179.95,-60,179.95,90]]},\"temporal\":{\"interval\":[[\"2003-07-31T00:00:00Z\",\"2019-07-31T00:00:00Z\"]]}},\"license\":\"CC-BY-NC-SA-4.0\",\"keywords\":[\"Chloris\",\"Biomass\",\"MODIS\",\"Carbon\"],\"providers\":[{\"url\":\"http://chloris.earth/\",\"name\":\"Chloris\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[4633]},\"description\":\"The Chloris Global Biomass 2003 - 2019 dataset provides estimates of stock and change in aboveground biomass for Earth's terrestrial woody vegetation ecosystems. It covers the period 2003 - 2019, at annual time steps. The global dataset has a circa 4.6 km spatial resolution.\\n\\nThe maps and data sets were generated by combining multiple remote sensing measurements from space borne satellites, processed using state-of-the-art machine learning and statistical methods, validated with field data from multiple countries. The dataset provides direct estimates of aboveground stock and change, and are not based on land use or land cover area change, and as such they include gains and losses of carbon stock in all types of woody vegetation - whether natural or plantations.\\n\\nAnnual stocks are expressed in units of tons of biomass. Annual changes in stocks are expressed in units of CO2 equivalent, i.e., the amount of CO2 released from or taken up by terrestrial ecosystems for that specific pixel.\\n\\nThe spatial data sets are available on [Microsoft\u2019s Planetary Computer](https://planetarycomputer.microsoft.com/dataset/chloris-biomass) under a Creative Common license of the type Attribution-Non Commercial-Share Alike [CC BY-NC-SA](https://spdx.org/licenses/CC-BY-NC-SA-4.0.html).\\n\\n[Chloris Geospatial](https://chloris.earth/) is a mission-driven technology company that develops software and data products on the state of natural capital for use by business, governments, and the social sector.\\n\",\"item_assets\":{\"biomass\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Annual estimates of aboveground woody biomass.\",\"raster:bands\":[{\"unit\":\"tonnes\",\"nodata\":2147483647,\"data_type\":\"uint32\"}]},\"biomass_wm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Annual estimates of aboveground woody biomass (Web Mercator).\",\"raster:bands\":[{\"unit\":\"tonnes\",\"nodata\":2147483647,\"data_type\":\"uint32\"}]},\"biomass_change\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Annual estimates of changes (gains and losses) in aboveground woody biomass from the previous year.\",\"raster:bands\":[{\"unit\":\"tonnes\",\"nodata\":-32768,\"data_type\":\"int16\"}]},\"biomass_change_wm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Annual estimates of changes (gains and losses) in aboveground woody biomass from the previous year (Web Mercator).\",\"raster:bands\":[{\"unit\":\"tonnes\",\"nodata\":-32768,\"data_type\":\"int16\"}]}},\"stac_version\":\"1.0.0\",\"msft:container\":\"chloris-biomass\",\"stac_extensions\":[\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"The Chloris Global Biomass 2003 - 2019 dataset provides estimates of stock and change in aboveground biomass for Earth's terrestrial woody vegetation ecosystems during the period 2003 - 2019, at annual time steps. The global dataset has a circa 4.6 km spatial resolution.\",\"msft:region\":\"westeurope\"},{\"id\":\"kaza-hydroforecast\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"license\",\"href\":\"https://cdla.dev/sharing-1-0/\",\"type\":\"text/html\",\"title\":\"Community Data License Agreement \u2013 Sharing, Version 1.0\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/kaza-hydroforecast\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"HydroForecast - Kwando & Upper Zambezi Rivers\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/kaza-hydroforecast-thumbnail.png\",\"type\":\"image/png\",\"title\":\"Thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[21.04494,-17.792517,23.343421,-13.08062],[23.343421,-17.792517,23.343421,-17.792517],[23.343421,-17.792517,23.343421,-17.792517],[21.04494,-15.13158,21.04494,-15.13158],[21.80157,-16.01209,21.80157,-16.01209],[22.91715,-17.38856,22.91715,-17.38856],[23.00610530305009,-17.347398048598034,23.00610530305009,-17.347398048598034],[22.669092,-14.971843,22.669092,-14.971843],[22.675487,-13.08062,22.675487,-13.08062]]},\"temporal\":{\"interval\":[[\"2022-01-01T00:00:00Z\",null]]}},\"license\":\"CDLA-Sharing-1.0\",\"version\":\"1.0.0\",\"keywords\":[\"Water\",\"HydroForecast\",\"Streamflow\",\"Hydrology\",\"Upstream Tech\"],\"providers\":[{\"url\":\"https://www.upstream.tech\",\"name\":\"Upstream Tech\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"description\":\"This dataset is a daily updated set of HydroForecast seasonal river flow forecasts at six locations in the Kwando and Upper Zambezi river basins. More details about the locations, project context, and to interactively view current and previous forecasts, visit our [public website](https://dashboard.hydroforecast.com/public/wwf-kaza).\\n\\n## Flow forecast dataset and model description\\n\\n[HydroForecast](https://www.upstream.tech/hydroforecast) is a theory-guided machine learning hydrologic model that predicts streamflow in basins across the world. For the Kwando and Upper Zambezi, HydroForecast makes daily predictions of streamflow rates using a [seasonal analog approach](https://support.upstream.tech/article/125-seasonal-analog-model-a-technical-overview). The model's output is probabilistic and the mean, median and a range of quantiles are available at each forecast step.\\n\\nThe underlying model has the following attributes: \\n\\n* Timestep: 10 days\\n* Horizon: 10 to 180 days \\n* Update frequency: daily\\n* Units: cubic meters per second (m\xB3/s)\\n \\n## Site details\\n\\nThe model produces output for six locations in the Kwando and Upper Zambezi river basins.\\n\\n* Upper Zambezi sites\\n * Zambezi at Chavuma\\n * Luanginga at Kalabo\\n* Kwando basin sites\\n * Kwando at Kongola -- total basin flows\\n * Kwando Sub-basin 1\\n * Kwando Sub-basin 2 \\n * Kwando Sub-basin 3\\n * Kwando Sub-basin 4\\n * Kwando Kongola Sub-basin\\n\\n## STAC metadata\\n\\nThere is one STAC item per location. Each STAC item has a single asset linking to a Parquet file in Azure Blob Storage.\",\"item_assets\":{\"data\":{\"type\":\"application/x-parquet\",\"roles\":[\"data\"],\"title\":\"Forecast Data\",\"description\":\"All seasonal river flow forecasts for a specific forecast site, produced by Upstream Tech's HydroForecast model\"}},\"stac_version\":\"1.0.0\",\"table:columns\":[{\"name\":\"initialization_time\",\"type\":\"timestamp\",\"description\":\"The initial timestamp in the forecast model which created this forecast step. All rows with the same initialization time are part of the same \\\"forecast\\\" and are produced at the same time.\"},{\"name\":\"valid_time\",\"type\":\"timestamp\",\"description\":\"The point in time this forecast step is predicting. valid_time = initialization_time + lead_time_hours. The discharge values in this row are the average rate from this time (inclusive) until the next valid time (exclusive).\"},{\"name\":\"lead_time_hours\",\"type\":\"int64\",\"description\":\"The number of hours ahead of the initialization time this forecast step is predicting.\"},{\"name\":\"discharge_mean\",\"type\":\"double\",\"description\":\"The mean of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_median\",\"type\":\"double\",\"description\":\"The median of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.01\",\"type\":\"double\",\"description\":\"The quantile 0.01 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.025\",\"type\":\"double\",\"description\":\"The quantile 0.025 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.05\",\"type\":\"double\",\"description\":\"The quantile 0.05 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.1\",\"type\":\"double\",\"description\":\"The quantile 0.1 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.25\",\"type\":\"double\",\"description\":\"The quantile 0.25 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.5\",\"type\":\"double\",\"description\":\"The quantile 0.5 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.75\",\"type\":\"double\",\"description\":\"The quantile 0.75 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.9\",\"type\":\"double\",\"description\":\"The quantile 0.9 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.95\",\"type\":\"double\",\"description\":\"The quantile 0.95 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.975\",\"type\":\"double\",\"description\":\"The quantile 0.975 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.99\",\"type\":\"double\",\"description\":\"The quantile 0.99 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"}],\"msft:container\":\"hydroforecast\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Seasonal river flow forecasts for the Kwando and Upper Zambezi rivers in the KAZA region of Africa, produced by Upstream Tech's HydroForecast model.\",\"msft:region\":\"westeurope\"},{\"id\":\"planet-nicfi-analytic\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"license\",\"href\":\"https://assets.planet.com/docs/Planet_ParticipantLicenseAgreement_NICFI.pdf\",\"type\":\"application/pdf\",\"title\":\"Participant License Agreement.\"},{\"rel\":\"documentation\",\"href\":\"https://assets.planet.com/docs/NICFI_UserGuidesFAQ.pdf\",\"type\":\"application/pdf\",\"title\":\"Participant License Agreement.\"},{\"rel\":\"documentation\",\"href\":\"https://www.planet.com/nicfi/\",\"type\":\"text/html\",\"title\":\"NICFI Program - Satellite Imagery and Monitoring | Planet\"},{\"rel\":\"documentation\",\"href\":\"https://developers.planet.com/nicfi/\",\"type\":\"text/html\",\"title\":\"NICFI Program Resource Center\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/planet-nicfi-analytic\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Planet-NICFI Basemaps (Analytic)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/planet-nicfi-analytic-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/planet-nicfi-analytic.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-34.161818157002,180.0,30.145127179625]]},\"temporal\":{\"interval\":[[\"2015-12-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Planet\",\"NICFI\",\"Satellite\",\"Tropics\",\"Imagery\"],\"providers\":[{\"url\":\"http://planet.com\",\"name\":\"Planet\",\"roles\":[\"processor\",\"producer\",\"licensor\"],\"description\":\"Contact Planet at [planet.com/contact-sales](https://www.planet.com/contact-sales/)\"},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[4.77],\"eo:bands\":[{\"name\":\"Blue\",\"common_name\":\"blue\",\"description\":\"visible blue\"},{\"name\":\"Green\",\"common_name\":\"green\",\"description\":\"visible green\"},{\"name\":\"Red\",\"common_name\":\"red\",\"description\":\"visible red\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}],\"planet-nicfi:cadence\":[\"biannual\",\"monthly\"],\"planet-nicfi:percent_covered\":{\"maximum\":100,\"minimum\":0}},\"description\":\"*Note: Assets in this collection are only available to winners of the [GEO-Microsoft Planetary Computer RFP](https://www.earthobservations.org/geo_blog_obs.php?id=528). Others wishing to use the data can sign up and access it from Planet at [https://www.planet.com/nicfi/](https://www.planet.com/nicfi/) and email [planetarycomputer@microsoft.com](mailto:planetarycomputer@microsoft.com).*\\n\\nThrough Norway\u2019s International Climate & Forests Initiative (NICFI), users can access Planet\u2019s high-resolution, analysis-ready mosaics of the world\u2019s tropics in order to help reduce and reverse the loss of tropical forests, combat climate change, conserve biodiversity, and facilitate sustainable development.\\n\\nIn support of NICFI\u2019s mission, you can use this data for a number of projects including, but not limited to:\\n\\n* Advance scientific research about the world\u2019s tropical forests and the critical services they provide.\\n* Implement and improve policies for sustainable forest management and land use in developing tropical forest countries and jurisdictions.\\n* Increase transparency and accountability in the tropics.\\n* Protect and improve the rights of indigenous peoples and local communities in tropical forest countries.\\n* Innovate solutions towards reducing pressure on forests from global commodities and financial markets.\\n* In short, the primary purpose of the NICFI Program is to support reducing and reversing the loss of tropical forests, contributing to combating climate change, conserving biodiversity, contributing to forest regrowth, restoration, and enhancement, and facilitating sustainable development, all of which must be Non-Commercial Use.\\n\\nTo learn how more about the NICFI program, streaming and downloading basemaps please read the [NICFI Data Program User Guide](https://assets.planet.com/docs/NICFI_UserGuidesFAQ.pdf).\\n\\nThis collection contains both monthly and biannual mosaics. Biannual mosaics are available from December 2015 - August 2020. Monthly mosaics are available from September 2020. The STAC items include a `planet-nicfi:cadence` field indicating the type of mosaic.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"description\":\"a 'ground truth' representation of spatially accurate data with minimized effects of atmosphere and sensor characteristics\"},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"planet-nicfi\",\"msft:container\":\"nicfi\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"planet\",\"msft:short_description\":\"Planet's high-resolution, analysis-ready mosaics of the world's tropics\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-17A2H-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/972/MOD17_User_Guide_V61.pdf\",\"title\":\"MOD17 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD17A2H\",\"title\":\"MOD17A2H file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD17A2H\",\"title\":\"MYD17A2H file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD17A2H.061\",\"title\":\"LP DAAC - MOD17A2H\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD17A2H.061\",\"title\":\"LP DAAC - MYD17A2H\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-17A2H-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Gross Primary Productivity 8-Day\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-17A2H-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Gross Primary Productivity 8-Day thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-17A2H-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Vegetation\",\"Global\",\"MOD17A2H\",\"MYD17A2H\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Version 6.1 Gross Primary Productivity (GPP) product is a cumulative 8-day composite of values with 500 meter (m) pixel size based on the radiation use efficiency concept that can be potentially used as inputs to data models to calculate terrestrial energy, carbon, water cycle processes, and biogeochemistry of vegetation. The Moderate Resolution Imaging Spectroradiometer (MODIS) data product includes information about GPP and Net Photosynthesis (PSN). The PSN band values are the GPP less the Maintenance Respiration (MR). The data product also contains a PSN Quality Control (QC) layer. The quality layer contains quality information for both the GPP and the PSN.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"Gpp_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Gross Primary Productivity\",\"raster:bands\":[{\"unit\":\"kg C/m^2\",\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"PsnNet_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Net Photosynthesis\",\"raster:bands\":[{\"unit\":\"kg C/m^2\",\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"Psn_QC_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality control indicators\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD17A2H.061\",\"citation\":\"Running, S., Mu, Q., & Zhao, M. (2021). MODIS/Terra Gross Primary Productivity 8-Day L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD17A2H.061\"},{\"doi\":\"10.5067/MODIS/MYD17A2H.061\",\"citation\":\"Running, S., Mu, Q., & Zhao, M. (2021). MODIS/Aqua Gross Primary Productivity 8-Day L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD17A2H.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Gross Primary Productivity 8-Day\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-11A2-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/715/MOD11_User_Guide_V61.pdf\",\"title\":\"MOD11 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD11A2\",\"title\":\"MOD11A2 file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD11A2\",\"title\":\"MYD11A2 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD11A2.061\",\"title\":\"LP DAAC - MOD11A2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD11A2.061\",\"title\":\"LP DAAC - MYD11A2\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-11A2-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Land Surface Temperature/Emissivity 8-Day\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-11A2-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Land Surface Temperature/Emissivity 8-Day thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-11A2-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Temperature\",\"MOD11A2\",\"MYD11A2\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Moderate Resolution Imaging Spectroradiometer (MODIS) Land Surface Temperature/Emissivity 8-Day Version 6.1 product provides an average 8-day per-pixel Land Surface Temperature and Emissivity (LST&E) with a 1 kilometer (km) spatial resolution in a 1,200 by 1,200 km grid. Each pixel value in the MOD11A2 is a simple average of all the corresponding MOD11A1 LST pixels collected within that 8-day period. The 8-day compositing period was chosen because twice that period is the exact ground track repeat period of the Terra and Aqua platforms. Provided along with the daytime and nighttime surface temperature bands are associated quality control assessments, observation times, view zenith angles, and clear-sky coverages along with bands 31 and 32 emissivities from land cover types.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"QC_Day\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality control for daytime LST and emissivity\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Emis_31\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 31 emissivity\",\"raster:bands\":[{\"scale\":0.002,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Emis_32\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 32 emissivity\",\"raster:bands\":[{\"scale\":0.002,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"QC_Night\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality control for nighttime LST and emissivity\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"LST_Day_1km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"temperature\"],\"title\":\"8-day daytime 1km grid Landsurface Temperature\",\"raster:bands\":[{\"unit\":\"Kelvin\",\"scale\":0.02,\"data_type\":\"uint16\",\"spatial_resolution\":1000}]},\"Day_view_angl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Average view zenith angle of daytime Land-surface Temperature\",\"raster:bands\":[{\"unit\":\"Degree\",\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Day_view_time\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Average time of daytime Landsurface Temperature observation\",\"raster:bands\":[{\"unit\":\"Hours\",\"scale\":0.1,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"LST_Night_1km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"temperature\"],\"title\":\"8-day nighttime 1km grid Landsurface Temperature\",\"raster:bands\":[{\"unit\":\"Kelvin\",\"scale\":0.02,\"data_type\":\"uint16\",\"spatial_resolution\":1000}]},\"Clear_sky_days\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"the days in clear-sky conditions and with validate LSTs\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Night_view_angl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"View zenith angle of nighttime Land-surface Temperature \",\"raster:bands\":[{\"unit\":\"Degree\",\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Night_view_time\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Average view zenith angle of nighttime Land-surface Temperature\",\"raster:bands\":[{\"unit\":\"Hours\",\"scale\":0.1,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Clear_sky_nights\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"the nights in clear-sky conditions and with validate LSTs\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD11A2.061\",\"citation\":\"Wan, Z., Hook, S., & Hulley, G. (2021). MODIS/Terra Land Surface Temperature/Emissivity 8-Day L3 Global 1km SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD11A2.061\"},{\"doi\":\"10.5067/MODIS/MYD11A2.061\",\"citation\":\"Wan, Z., Hook, S., & Hulley, G. (2021). MODIS/Aqua Land Surface Temperature/Emissivity 8-Day L3 Global 1km SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD11A2.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Land Surface Temperature/Emissivity 8-Day\",\"msft:region\":\"westeurope\"},{\"id\":\"daymet-daily-pr\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"license\",\"href\":\"https://science.nasa.gov/earth-science/earth-science-data/data-information-policy\",\"title\":\"EOSDIS Data Use Policy\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.3334/ORNLDAAC/1840\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/daymet-daily-pr\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Daymet Daily Puerto Rico\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/daymet-daily-pr.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Daymet daily Puerto Rico map thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://daymet-zarr/daily/pr.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"Daily Puerto Rico Daymet Azure Blob File System Zarr root\",\"description\":\"Azure Blob File System of the daily Puerto Rico Daymet Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"daymeteuwest\"}},\"zarr-https\":{\"href\":\"https://daymeteuwest.blob.core.windows.net/daymet-zarr/daily/pr.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"Daily Puerto Rico Daymet HTTPS Zarr root\",\"description\":\"HTTPS URI of the daily Puerto Rico Daymet Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-67.9927,16.8444,-64.1196,19.9382]]},\"temporal\":{\"interval\":[[\"1980-01-01T12:00:00Z\",\"2020-12-30T12:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.3334/ORNLDAAC/1840\",\"keywords\":[\"Daymet\",\"Puerto Rico\",\"Temperature\",\"Precipitation\",\"Vapor Pressure\",\"Weather\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://doi.org/10.3334/ORNLDAAC/1840\",\"name\":\"ORNL DAAC\",\"roles\":[\"producer\"]}],\"description\":\"Gridded estimates of daily weather parameters. [Daymet](https://daymet.ornl.gov) Version 4 variables include the following parameters: minimum temperature, maximum temperature, precipitation, shortwave radiation, vapor pressure, snow water equivalent, and day length.\\n\\n[Daymet](https://daymet.ornl.gov/) provides measurements of near-surface meteorological conditions; the main purpose is to provide data estimates where no instrumentation exists. The dataset covers the period from January 1, 1980 to the present. Each year is processed individually at the close of a calendar year. Data are in a Lambert conformal conic projection for North America and are distributed in Zarr and NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\n\\nUse the DOI at [https://doi.org/10.3334/ORNLDAAC/1840](https://doi.org/10.3334/ORNLDAAC/1840) to cite your usage of the data.\\n\\nThis dataset provides coverage for Hawaii; North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#daily).\\n\\n\",\"sci:citation\":\"Thornton, M.M., R. Shrestha, P.E. Thornton, S. Kao, Y. Wei, and B.E. Wilson. 2021. Daymet Version 4 Monthly Latency: Daily Surface Weather Data. ORNL DAAC, Oak Ridge, Tennessee, USA. https://doi.org/10.3334/ORNLDAAC/1904\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"daymet\",\"cube:variables\":{\"vp\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"long_name\":\"daily average vapor pressure\",\"cell_methods\":\"area: mean time: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,231,364],\"chunks\":[365,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily average vapor pressure\"},\"lat\":{\"type\":\"auxiliary\",\"unit\":\"degrees_north\",\"attrs\":{\"units\":\"degrees_north\",\"long_name\":\"latitude coordinate\",\"standard_name\":\"latitude\"},\"shape\":[231,364],\"chunks\":[231,364],\"dimensions\":[\"y\",\"x\"],\"description\":\"latitude coordinate\"},\"lon\":{\"type\":\"auxiliary\",\"unit\":\"degrees_east\",\"attrs\":{\"units\":\"degrees_east\",\"long_name\":\"longitude coordinate\",\"standard_name\":\"longitude\"},\"shape\":[231,364],\"chunks\":[231,364],\"dimensions\":[\"y\",\"x\"],\"description\":\"longitude coordinate\"},\"swe\":{\"type\":\"data\",\"unit\":\"kg/m2\",\"attrs\":{\"units\":\"kg/m2\",\"long_name\":\"snow water equivalent\",\"cell_methods\":\"area: mean time: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,231,364],\"chunks\":[365,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"snow water equivalent\"},\"dayl\":{\"type\":\"data\",\"unit\":\"s\",\"attrs\":{\"units\":\"s\",\"long_name\":\"daylength\",\"cell_methods\":\"area: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,231,364],\"chunks\":[365,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daylength\"},\"prcp\":{\"type\":\"data\",\"unit\":\"mm/day\",\"attrs\":{\"units\":\"mm/day\",\"long_name\":\"daily total precipitation\",\"cell_methods\":\"area: mean time: sum\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,231,364],\"chunks\":[365,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily total precipitation\"},\"srad\":{\"type\":\"data\",\"unit\":\"W/m2\",\"attrs\":{\"units\":\"W/m2\",\"long_name\":\"daylight average incident shortwave radiation\",\"cell_methods\":\"area: mean time: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,231,364],\"chunks\":[365,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daylight average incident shortwave radiation\"},\"tmax\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"daily maximum temperature\",\"cell_methods\":\"area: mean time: maximum\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,231,364],\"chunks\":[365,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily maximum temperature\"},\"tmin\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"daily minimum temperature\",\"cell_methods\":\"area: mean time: minimum\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,231,364],\"chunks\":[365,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily minimum temperature\"},\"yearday\":{\"type\":\"data\",\"attrs\":{\"long_name\":\"yearday base 1\"},\"shape\":[14965],\"chunks\":[365],\"dimensions\":[\"time\"],\"description\":\"yearday base 1\"},\"time_bnds\":{\"type\":\"data\",\"attrs\":{},\"shape\":[14965,2],\"chunks\":[365,2],\"dimensions\":[\"time\",\"nv\"]},\"lambert_conformal_conic\":{\"type\":\"data\",\"attrs\":{\"false_easting\":0.0,\"false_northing\":0.0,\"semi_major_axis\":6378137.0,\"grid_mapping_name\":\"lambert_conformal_conic\",\"standard_parallel\":[25.0,60.0],\"inverse_flattening\":298.257223563,\"latitude_of_projection_origin\":42.5,\"longitude_of_central_meridian\":-100.0},\"shape\":[],\"dimensions\":[]}},\"msft:container\":\"daymet-zarr\",\"cube:dimensions\":{\"x\":{\"axis\":\"x\",\"step\":1000.0,\"type\":\"spatial\",\"extent\":[3445750.0,3808750.0],\"description\":\"x coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"y\":{\"axis\":\"y\",\"step\":-1000.0,\"type\":\"spatial\",\"extent\":[-1995000.0,-1765000.0],\"description\":\"y coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"nv\":{\"type\":\"count\",\"values\":[0,1],\"description\":\"Size of the 'time_bnds' variable.\"},\"time\":{\"type\":\"temporal\",\"extent\":[\"1980-01-01T12:00:00Z\",\"2020-12-30T12:00:00Z\"],\"description\":\"24-hour day based on local time\"}},\"msft:group_keys\":[\"daily\",\"puerto rico\"],\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"daymeteuwest\",\"msft:short_description\":\"Daily surface weather data on a 1-km grid for Puerto Rico\",\"msft:region\":\"westeurope\"},{\"id\":\"3dep-lidar-dtm-native\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/3d-elevation-program/about-3dep-products-services\",\"title\":\"About 3DEP Products & Services\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-dtm-native\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS 3DEP Lidar Digital Terrain Model (Native)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/3dep-lidar-dtm-native-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"extent\":{\"spatial\":{\"bbox\":[[-166.8546920006028,17.655357747708283,-64.56116757979399,71.39330810146807],[144.60180842809473,13.21774453924126,146.08202179248926,18.18369664008955]]},\"temporal\":{\"interval\":[[\"2012-01-01T00:00:00Z\",\"2022-01-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USGS\",\"3DEP\",\"COG\",\"DTM\"],\"providers\":[{\"name\":\"Landrush\",\"roles\":[\"processor\",\"producer\"]},{\"url\":\"https://www.usgs.gov/core-science-systems/ngp/3dep/\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[2.0]},\"description\":\"This collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc). It creates a Digital Terrain Model (DTM) using the vendor provided (native) ground classification and [`pdal.filters.range`](https://pdal.io/stages/filters.range.html#filters-range) to output a collection of Cloud Optimized GeoTIFFs, removing all points that have been classified as noise.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"COG data\",\"raster:bands\":[{\"name\":\"Z\",\"unit\":\"metre\",\"sampling\":\"point\",\"data_type\":\"float32\",\"description\":\"Raster for Z PDAL Dimension\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"3dep-lidar\",\"msft:container\":\"usgs-3dep-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json#\"],\"msft:storage_account\":\"usgslidareuwest\",\"msft:short_description\":\"3DEP Lidar collection for the Digital Terrain Model (DTM) Cloud Optimized Geotiffs (COGs) using vendor provided ground classification.\",\"msft:region\":\"westeurope\"},{\"id\":\"3dep-lidar-classification\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/3d-elevation-program/about-3dep-products-services\",\"title\":\"About 3DEP Products & Services\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-classification\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS 3DEP Lidar Classification\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/3dep-lidar-classification-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"extent\":{\"spatial\":{\"bbox\":[[-166.8546920006028,17.655357747708283,-64.56116757979399,71.39330810146807],[144.60180842809473,13.21774453924126,146.08202179248926,18.18369664008955]]},\"temporal\":{\"interval\":[[\"2012-01-01T00:00:00Z\",\"2022-01-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USGS\",\"3DEP\",\"COG\",\"Classification\"],\"providers\":[{\"name\":\"Landrush\",\"roles\":[\"processor\",\"producer\"]},{\"url\":\"https://www.usgs.gov/core-science-systems/ngp/3dep/\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[5.0]},\"description\":\"This collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc). It uses the [ASPRS](https://www.asprs.org/) (American Society for Photogrammetry and Remote Sensing) [Lidar point classification](https://desktop.arcgis.com/en/arcmap/latest/manage-data/las-dataset/lidar-point-classification.htm). See [LAS specification](https://www.ogc.org/standards/LAS) for details.\\n\\nThis COG type is based on the Classification [PDAL dimension](https://pdal.io/dimensions.html) and uses [`pdal.filters.range`](https://pdal.io/stages/filters.range.html) to select a subset of interesting classifications. Do note that not all LiDAR collections contain a full compliment of classification labels.\\nTo remove outliers, the PDAL pipeline uses a noise filter and then outputs the Classification dimension.\\n\\nThe STAC collection implements the [`item_assets`](https://github.com/stac-extensions/item-assets) and [`classification`](https://github.com/stac-extensions/classification) extensions. These classes are displayed in the \\\"Item assets\\\" below. You can programmatically access the full list of class values and descriptions using the `classification:classes` field form the `data` asset on the STAC collection.\\n\\nClassification rasters were produced as a subset of LiDAR classification categories:\\n\\n```\\n0, Never Classified\\n1, Unclassified\\n2, Ground\\n3, Low Vegetation\\n4, Medium Vegetation\\n5, High Vegetation\\n6, Building\\n9, Water\\n10, Rail\\n11, Road\\n17, Bridge Deck\\n```\\n\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"COG data\",\"raster:bands\":[{\"name\":\"Classification\",\"unit\":\"metre\",\"sampling\":\"point\",\"data_type\":\"int16\",\"description\":\"Raster for Classification PDAL dimension, ASPRS Lidar Point Classification Standard\"}],\"classification:classes\":[{\"value\":0,\"description\":\"Never Classified\"},{\"value\":1,\"description\":\"Unclassified\"},{\"value\":2,\"description\":\"Ground\"},{\"value\":3,\"description\":\"Low Vegetation\"},{\"value\":4,\"description\":\"Medium Vegetation\"},{\"value\":5,\"description\":\"High Vegetation\"},{\"value\":6,\"description\":\"Building\"},{\"value\":9,\"description\":\"Water\"},{\"value\":10,\"description\":\"Rail\"},{\"value\":11,\"description\":\"Road\"},{\"value\":17,\"description\":\"Bridge Deck\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"3dep-lidar\",\"msft:container\":\"usgs-3dep-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\"],\"msft:storage_account\":\"usgslidareuwest\",\"msft:short_description\":\"3DEP Lidar collection for Cloud Optimized Geotiffs (COGs) created according to PDAL's Intensity dimension\",\"msft:region\":\"westeurope\"},{\"id\":\"3dep-lidar-dtm\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/3d-elevation-program/about-3dep-products-services\",\"title\":\"About 3DEP Products & Services\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-dtm\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS 3DEP Lidar Digital Terrain Model\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/dtm-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"},\"geoparquet-items\":{\"href\":\"abfs://items/3dep-lidar-dtm.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-166.8546920006028,17.655357747708283,-64.56116757979399,71.39330810146807],[144.60180842809473,13.21774453924126,146.08202179248926,18.18369664008955]]},\"temporal\":{\"interval\":[[\"2012-01-01T00:00:00Z\",\"2022-01-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USGS\",\"3DEP\",\"COG\",\"DTM\"],\"providers\":[{\"name\":\"Landrush\",\"roles\":[\"processor\",\"producer\"]},{\"url\":\"https://www.usgs.gov/core-science-systems/ngp/3dep/\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[2.0]},\"description\":\"This collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc). It creates a Digital Terrain Model (DTM) using [`pdal.filters.smrf`](https://pdal.io/stages/filters.smrf.html#filters-smrf) to output a collection of Cloud Optimized GeoTIFFs.\\n\\nThe Simple Morphological Filter (SMRF) classifies ground points based on the approach outlined in [Pingel2013](https://pdal.io/references.html#pingel2013).\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"COG data\",\"raster:bands\":[{\"type\":\"Z\",\"unit\":\"metre\",\"sampling\":\"point\",\"data_type\":\"float32\",\"description\":\"Z PDAL Dimension\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"3dep-lidar\",\"msft:container\":\"usgs-3dep-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json#\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"usgslidareuwest\",\"msft:short_description\":\"3DEP Lidar collection for the Digital Terrain Model (DTM) Cloud Optimized Geotiffs (COGs) using PDAL's filters.smrf.\",\"msft:region\":\"westeurope\"},{\"id\":\"gap\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/information-policies-and-instructions/copyrights-and-credits\",\"title\":\"Public Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/gap\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS Gap Land Cover\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gap.png\",\"type\":\"image/png\",\"roles\":[\"data\"],\"title\":\"USGS GAP\"},\"geoparquet-items\":{\"href\":\"abfs://items/gap.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}},\"original-data-ak\":{\"href\":\"https://ai4edataeuwest.blob.core.windows.net/usgs-gap/originals/gaplandcov_ak.zip\",\"type\":\"application/zip\",\"roles\":[\"data\"],\"title\":\"Alaska source data\",\"description\":\"Original source data for Alaska\"},\"original-data-hi\":{\"href\":\"https://ai4edataeuwest.blob.core.windows.net/usgs-gap/originals/gaplandcov_hi.zip\",\"type\":\"application/zip\",\"roles\":[\"data\"],\"title\":\"Hawaii source data\",\"description\":\"Original source data for Hawaii\"},\"original-data-pr\":{\"href\":\"https://ai4edataeuwest.blob.core.windows.net/usgs-gap/originals/pr_landcover.zip\",\"type\":\"application/zip\",\"roles\":[\"data\"],\"title\":\"Puerto Rico source data\",\"description\":\"Original source data for Puerto Rico\"},\"original-data-conus\":{\"href\":\"https://ai4edataeuwest.blob.core.windows.net/usgs-gap/originals/gap_landfire_nationalterrestrialecosystems2011.zip\",\"type\":\"application/zip\",\"roles\":[\"data\"],\"title\":\"CONUS source data\",\"description\":\"Original source data for the continental United States (CONUS)\"}},\"extent\":{\"spatial\":{\"bbox\":[[-127.9710481801793,22.797789263564383,-65.26634281147894,51.64692620669362],[-178.13166387448902,49.09079265233118,179.87849702345594,71.43382483774205],[-160.26640694607218,18.851824447510786,-154.66974350173518,22.295114188194738],[-67.9573345827195,17.874066536543,-65.21836408976736,18.5296513469496]]},\"temporal\":{\"interval\":[[\"1999-01-01T00:00:00Z\",\"2011-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USGS\",\"GAP\",\"LANDFIRE\",\"Land Cover\",\"United States\"],\"providers\":[{\"url\":\"https://www.usgs.gov/core-science-systems/science-analytics-and-synthesis/gap/science/land-cover\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[30],\"label:classes\":[{\"classes\":[\"0\",\"South Florida Bayhead Swamp\",\"South Florida Cypress Dome\",\"South Florida Dwarf Cypress Savanna\",\"South Florida Mangrove Swamp\",\"South Florida Hardwood Hammock\",\"Southeast Florida Coastal Strand and Maritime Hammock\",\"Southwest Florida Coastal Strand and Maritime Hammock\",\"South Florida Pine Rockland\",\"Atlantic Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Open Understory\",\"Atlantic Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Scrub/Shrub Understory\",\"Atlantic Coastal Plain Upland Longleaf Pine Woodland\",\"Atlantic Coastal Plain Xeric River Dune\",\"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Open Understory Modifier\",\"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Scrub/Shrub Modifier\",\"Florida Longleaf Pine Sandhill - Scrub/Shrub Understory Modifier\",\"Florida Longleaf Pine Sandhill- Open Understory Modifier\",\"West Gulf Coastal Plain Upland Longleaf Pine Forest and Woodland\",\"Atlantic Coastal Plain Central Maritime Forest\",\"Atlantic Coastal Plain Southern Maritime Forest\",\"Central and South Texas Coastal Fringe Forest and Woodland\",\"East Gulf Coastal Plain Limestone Forest\",\"East Gulf Coastal Plain Maritime Forest\",\"East Gulf Coastal Plain Southern Loess Bluff Forest\",\"East Gulf Coastal Plain Southern Mesic Slope Forest\",\"Mississippi Delta Maritime Forest\",\"Southern Coastal Plain Dry Upland Hardwood Forest\",\"Southern Coastal Plain Oak Dome and Hammock\",\"West Gulf Coastal Plain Chenier and Upper Texas Coastal Fringe Forest and Woodland\",\"West Gulf Coastal Plain Mesic Hardwood Forest\",\"East-Central Texas Plains Pine Forest and Woodland\",\"West Gulf Coastal Plain Pine-Hardwood Forest\",\"West Gulf Coastal Plain Sandhill Oak and Shortleaf Pine Forest and Woodland\",\"Atlantic Coastal Plain Fall-Line Sandhills Longleaf Pine Woodland - Loblolly Modifier\",\"Deciduous Plantations\",\"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Loblolly Modifier\",\"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Offsite Hardwood Modifier\",\"East Gulf Coastal Plain Near-Coast Pine Flatwoods - Offsite Hardwood Modifier\",\"Evergreen Plantation or Managed Pine\",\"California Central Valley Mixed Oak Savanna\",\"California Coastal Closed-Cone Conifer Forest and Woodland\",\"California Coastal Live Oak Woodland and Savanna\",\"California Lower Montane Blue Oak-Foothill Pine Woodland and Savanna\",\"Central and Southern California Mixed Evergreen Woodland\",\"Mediterranean California Lower Montane Black Oak-Conifer Forest and Woodland\",\"Southern California Oak Woodland and Savanna\",\"Madrean Encinal\",\"Madrean Pinyon-Juniper Woodland\",\"Madrean Pine-Oak Forest and Woodland\",\"Madrean Upper Montane Conifer-Oak Forest and Woodland\",\"Edwards Plateau Dry-Mesic Slope Forest and Woodland\",\"Edwards Plateau Limestone Savanna and Woodland\",\"Edwards Plateau Mesic Canyon\",\"Llano Uplift Acidic Forest, Woodland and Glade\",\"East Cascades Oak-Ponderosa Pine Forest and Woodland\",\"Mediterranean California Mixed Evergreen Forest\",\"Mediterranean California Mixed Oak Woodland\",\"North Pacific Dry Douglas-fir-(Madrone) Forest and Woodland\",\"North Pacific Oak Woodland\",\"Edwards Plateau Limestone Shrubland\",\"Allegheny-Cumberland Dry Oak Forest and Woodland - Hardwood\",\"Allegheny-Cumberland Dry Oak Forest and Woodland - Pine Modifier\",\"Central and Southern Appalachian Montane Oak Forest\",\"Central and Southern Appalachian Northern Hardwood Forest\",\"Central Appalachian Oak and Pine Forest\",\"Crosstimbers Oak Forest and Woodland\",\"East Gulf Coastal Plain Black Belt Calcareous Prairie and Woodland - Woodland Modifier\",\"East Gulf Coastal Plain Northern Dry Upland Hardwood Forest\",\"East Gulf Coastal Plain Northern Loess Plain Oak-Hickory Upland - Hardwood Modifier\",\"East Gulf Coastal Plain Northern Loess Plain Oak-Hickory Upland - Juniper Modifier\",\"East-Central Texas Plains Post Oak Savanna and Woodland\",\"Lower Mississippi River Dune Woodland and Forest\",\"Mississippi River Alluvial Plain Dry-Mesic Loess Slope Forest\",\"North-Central Interior Dry Oak Forest and Woodland\",\"North-Central Interior Dry-Mesic Oak Forest and Woodland\",\"Northeastern Interior Dry Oak Forest - Mixed Modifier\",\"Northeastern Interior Dry Oak Forest - Virginia/Pitch Pine Modifier\",\"Northeastern Interior Dry Oak Forest-Hardwood Modifier\",\"Northeastern Interior Dry-Mesic Oak Forest\",\"Northern Atlantic Coastal Plain Dry Hardwood Forest\",\"Crowley's Ridge Sand Forest\",\"Ouachita Montane Oak Forest\",\"Ozark-Ouachita Dry Oak Woodland\",\"Ozark-Ouachita Dry-Mesic Oak Forest\",\"Southern and Central Appalachian Oak Forest\",\"Southern and Central Appalachian Oak Forest - Xeric\",\"Southern Interior Low Plateau Dry-Mesic Oak Forest\",\"Southern Ridge and Valley Dry Calcareous Forest\",\"Southern Ridge and Valley Dry Calcareous Forest - Pine modifier\",\"East Gulf Coastal Plain Northern Dry Upland Hardwood Forest - Offsite Pine Modifier\",\"Managed Tree Plantation\",\"Ruderal forest\",\"Southern Piedmont Dry Oak-(Pine) Forest - Loblolly Pine Modifier\",\"Acadian Low-Elevation Spruce-Fir-Hardwood Forest\",\"Acadian-Appalachian Montane Spruce-Fir Forest\",\"Appalachian Hemlock-Hardwood Forest\",\"Central and Southern Appalachian Spruce-Fir Forest\",\"0\",\"Laurentian-Acadian Northern Hardwoods Forest\",\"Laurentian-Acadian Northern Pine-(Oak) Forest\",\"Laurentian-Acadian Pine-Hemlock-Hardwood Forest\",\"Paleozoic Plateau Bluff and Talus\",\"Southern Appalachian Northern Hardwood Forest\",\"Atlantic Coastal Plain Dry and Dry-Mesic Oak Forest\",\"Atlantic Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Offsite Hardwood\",\"East Gulf Coastal Plain Interior Shortleaf Pine-Oak Forest - Hardwood Modifier\",\"East Gulf Coastal Plain Interior Shortleaf Pine-Oak Forest - Mixed Modifier\",\"Ozark-Ouachita Shortleaf Pine-Bluestem Woodland\",\"Ozark-Ouachita Shortleaf Pine-Oak Forest and Woodland\",\"Southeastern Interior Longleaf Pine Woodland\",\"Southern Appalachian Low Mountain Pine Forest\",\"Southern Piedmont Dry Oak-(Pine) Forest\",\"Southern Piedmont Dry Oak-(Pine) Forest - Hardwood Modifier\",\"Southern Piedmont Dry Oak-(Pine) Forest - Mixed Modifier\",\"Southern Piedmont Dry Oak-Heath Forest - Mixed Modifier\",\"Eastern Great Plains Tallgrass Aspen Parkland\",\"Northwestern Great Plains Aspen Forest and Parkland\",\"Northwestern Great Plains Shrubland\",\"Western Great Plains Dry Bur Oak Forest and Woodland\",\"Western Great Plains Wooded Draw and Ravine\",\"Southern Atlantic Coastal Plain Mesic Hardwood Forest\",\"East Gulf Coastal Plain Northern Loess Bluff Forest\",\"East Gulf Coastal Plain Northern Mesic Hardwood Forest\",\"North-Central Interior Beech-Maple Forest\",\"North-Central Interior Maple-Basswood Forest\",\"Ozark-Ouachita Mesic Hardwood Forest\",\"South-Central Interior Mesophytic Forest\",\"Southern and Central Appalachian Cove Forest\",\"Crowley's Ridge Mesic Loess Slope Forest\",\"Southern Piedmont Mesic Forest\",\"Appalachian Shale Barrens\",\"Atlantic Coastal Plain Northern Maritime Forest\",\"Laurentian Pine-Oak Barrens\",\"Northeastern Interior Pine Barrens\",\"Northern Atlantic Coastal Plain Pitch Pine Barrens\",\"Southern Appalachian Montane Pine Forest and Woodland\",\"East Cascades Mesic Montane Mixed-Conifer Forest and Woodland\",\"Middle Rocky Mountain Montane Douglas-fir Forest and Woodland\",\"Northern Rocky Mountain Dry-Mesic Montane Mixed Conifer Forest\",\"Northern Rocky Mountain Foothill Conifer Wooded Steppe\",\"Northern Rocky Mountain Mesic Montane Mixed Conifer Forest\",\"Northern Rocky Mountain Ponderosa Pine Woodland and Savanna\",\"Northern Rocky Mountain Western Larch Savanna\",\"Northwestern Great Plains - Black Hills Ponderosa Pine Woodland and Savanna\",\"Rocky Mountain Foothill Limber Pine-Juniper Woodland\",\"Inter-Mountain Basins Aspen-Mixed Conifer Forest and Woodland\",\"Inter-Mountain Basins Subalpine Limber-Bristlecone Pine Woodland\",\"Northern Rocky Mountain Subalpine Woodland and Parkland\",\"Rocky Mountain Aspen Forest and Woodland\",\"Rocky Mountain Lodgepole Pine Forest\",\"Rocky Mountain Poor-Site Lodgepole Pine Forest\",\"Rocky Mountain Subalpine Dry-Mesic Spruce-Fir Forest and Woodland\",\"Rocky Mountain Subalpine Mesic Spruce-Fir Forest and Woodland\",\"Rocky Mountain Subalpine-Montane Limber-Bristlecone Pine Woodland\",\"Rocky Mountain Bigtooth Maple Ravine Woodland\",\"Southern Rocky Mountain Dry-Mesic Montane Mixed Conifer Forest and Woodland\",\"Southern Rocky Mountain Mesic Montane Mixed Conifer Forest and Woodland\",\"Southern Rocky Mountain Ponderosa Pine Savanna\",\"Southern Rocky Mountain Ponderosa Pine Woodland\",\"California Montane Jeffrey Pine-(Ponderosa Pine) Woodland\",\"Klamath-Siskiyou Lower Montane Serpentine Mixed Conifer Woodland\",\"Klamath-Siskiyou Upper Montane Serpentine Mixed Conifer Woodland\",\"Mediterranean California Dry-Mesic Mixed Conifer Forest and Woodland\",\"Mediterranean California Mesic Mixed Conifer Forest and Woodland\",\"Sierran-Intermontane Desert Western White Pine-White Fir Woodland\",\"California Coastal Redwood Forest\",\"North Pacific Broadleaf Landslide Forest and Shrubland\",\"North Pacific Dry-Mesic Silver Fir-Western Hemlock-Douglas-fir Forest\",\"North Pacific Hypermaritime Sitka Spruce Forest\",\"North Pacific Hypermaritime Western Red-cedar-Western Hemlock Forest\",\"North Pacific Lowland Mixed Hardwood-Conifer Forest and Woodland\",\"North Pacific Maritime Dry-Mesic Douglas-fir-Western Hemlock Forest\",\"North Pacific Maritime Mesic-Wet Douglas-fir-Western Hemlock Forest\",\"North Pacific Mesic Western Hemlock-Silver Fir Forest\",\"North Pacific Wooded Volcanic Flowage\",\"Mediterranean California Red Fir Forest\",\"Mediterranean California Subalpine Woodland\",\"North Pacific Maritime Mesic Subalpine Parkland\",\"North Pacific Mountain Hemlock Forest\",\"Northern California Mesic Subalpine Woodland\",\"Northern Pacific Mesic Subalpine Woodland\",\"Sierra Nevada Subalpine Lodgepole Pine Forest and Woodland\",\"Columbia Plateau Western Juniper Woodland and Savanna\",\"Great Basin Pinyon-Juniper Woodland\",\"Inter-Mountain Basins Curl-leaf Mountain Mahogany Woodland and Shrubland\",\"Inter-Mountain Basins Juniper Savanna\",\"Colorado Plateau Pinyon-Juniper Shrubland\",\"Colorado Plateau Pinyon-Juniper Woodland\",\"Southern Rocky Mountain Juniper Woodland and Savanna\",\"Southern Rocky Mountain Pinyon-Juniper Woodland\",\"Northwestern Great Plains Floodplain\",\"Northwestern Great Plains Riparian\",\"Western Great Plains Floodplain\",\"Western Great Plains Floodplain Systems\",\"Western Great Plains Riparian Woodland and Shrubland\",\"Central Appalachian Floodplain - Forest Modifier\",\"Central Appalachian Riparian - Forest Modifier\",\"Central Interior and Appalachian Floodplain Systems\",\"Central Interior and Appalachian Riparian Systems\",\"Laurentian-Acadian Floodplain Systems\",\"Ozark-Ouachita Riparian\",\"South-Central Interior Large Floodplain\",\"South-Central Interior Large Floodplain - Forest Modifier\",\"South-Central Interior Small Stream and Riparian\",\"North-Central Interior and Appalachian Rich Swamp\",\"0\",\"0\",\"Laurentian-Acadian Swamp Systems\",\"North-Central Interior Wet Flatwoods\",\"0\",\"South-Central Interior / Upper Coastal Plain Wet Flatwoods\",\"0\",\"Southern Piedmont/Ridge and Valley Upland Depression Swamp\",\"Atlantic Coastal Plain Blackwater Stream Floodplain Forest - Forest Modifier\",\"Atlantic Coastal Plain Brownwater Stream Floodplain Forest\",\"Atlantic Coastal Plain Northern Tidal Wooded Swamp\",\"Atlantic Coastal Plain Small Blackwater River Floodplain Forest\",\"Atlantic Coastal Plain Small Brownwater River Floodplain Forest\",\"Atlantic Coastal Plain Southern Tidal Wooded Swamp\",\"East Gulf Coastal Plain Large River Floodplain Forest - Forest Modifier\",\"East Gulf Coastal Plain Small Stream and River Floodplain Forest\",\"East Gulf Coastal Plain Tidal Wooded Swamp\",\"0\",\"Southeastern Great Plains Riparian Forest\",\"Southeastern Great Plains Floodplain Forest\",\"Mississippi River Bottomland Depression\",\"Mississippi River Floodplain and Riparian Forest\",\"Mississippi River Low Floodplain (Bottomland) Forest\",\"Mississippi River Riparian Forest\",\"Red River Large Floodplain Forest\",\"Southern Coastal Plain Blackwater River Floodplain Forest\",\"Southern Piedmont Large Floodplain Forest - Forest Modifier\",\"Southern Piedmont Small Floodplain and Riparian Forest\",\"West Gulf Coastal Plain Large River Floodplain Forest\",\"West Gulf Coastal Plain Near-Coast Large River Swamp\",\"West Gulf Coastal Plain Small Stream and River Forest\",\"Atlantic Coastal Plain Streamhead Seepage Swamp - Pocosin - and Baygall\",\"Gulf and Atlantic Coastal Plain Swamp Systems\",\"Southern Coastal Plain Hydric Hammock\",\"Southern Coastal Plain Seepage Swamp and Baygall\",\"West Gulf Coastal Plain Seepage Swamp and Baygall\",\"Atlantic Coastal Plain Nonriverine Swamp and Wet Hardwood Forest - Taxodium/Nyssa Modifier\",\"Atlantic Coastal Plain Nonriverine Swamp and Wet Hardwood Forest - Oak Dominated Modifier\",\"East Gulf Coastal Plain Southern Loblolly-Hardwood Flatwoods\",\"Lower Mississippi River Bottomland Depressions - Forest Modifier\",\"Lower Mississippi River Flatwoods\",\"Northern Atlantic Coastal Plain Basin Swamp and Wet Hardwood Forest\",\"Southern Coastal Plain Nonriverine Basin Swamp\",\"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Bay/Gum Modifier\",\"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Pine Modifier\",\"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Taxodium Modifier\",\"West Gulf Coastal Plain Nonriverine Wet Hardwood Flatwoods\",\"West Gulf Coastal Plain Pine-Hardwood Flatwoods\",\"Edwards Plateau Riparian\",\"Atlantic Coastal Plain Clay-Based Carolina Bay Forested Wetland\",\"Atlantic Coastal Plain Clay-Based Carolina Bay Herbaceous Wetland\",\"Atlantic Coastal Plain Southern Wet Pine Savanna and Flatwoods\",\"Central Atlantic Coastal Plain Wet Longleaf Pine Savanna and Flatwoods\",\"Central Florida Pine Flatwoods\",\"East Gulf Coastal Plain Near-Coast Pine Flatwoods\",\"East Gulf Coastal Plain Near-Coast Pine Flatwoods - Open Understory Modifier\",\"East Gulf Coastal Plain Near-Coast Pine Flatwoods - Scrub/Shrub Understory Modifier\",\"South Florida Pine Flatwoods\",\"Southern Coastal Plain Nonriverine Cypress Dome\",\"West Gulf Coastal Plain Wet Longleaf Pine Savanna and Flatwoods\",\"Columbia Basin Foothill Riparian Woodland and Shrubland\",\"Great Basin Foothill and Lower Montane Riparian Woodland and Shrubland\",\"0\",\"Northern Rocky Mountain Conifer Swamp\",\"Northern Rocky Mountain Lower Montane Riparian Woodland and Shrubland\",\"Rocky Mountain Lower Montane Riparian Woodland and Shrubland\",\"Rocky Mountain Montane Riparian Systems\",\"Rocky Mountain Subalpine-Montane Riparian Woodland\",\"North Pacific Hardwood-Conifer Swamp\",\"North Pacific Lowland Riparian Forest and Shrubland\",\"North Pacific Montane Riparian Woodland and Shrubland\",\"North Pacific Shrub Swamp\",\"California Central Valley Riparian Woodland and Shrubland\",\"Mediterranean California Foothill and Lower Montane Riparian Woodland\",\"Mediterranean California Serpentine Foothill and Lower Montane Riparian Woodland and Seep\",\"North American Warm Desert Lower Montane Riparian Woodland and Shrubland\",\"North American Warm Desert Riparian Systems\",\"North American Warm Desert Riparian Woodland and Shrubland\",\"Tamaulipan Floodplain\",\"Tamaulipan Riparian Systems\",\"Boreal Aspen-Birch Forest\",\"Boreal Jack Pine-Black Spruce Forest\",\"Boreal White Spruce-Fir-Hardwood Forest\",\"Boreal-Laurentian Conifer Acidic Swamp and Treed Poor Fen\",\"Eastern Boreal Floodplain\",\"South Florida Shell Hash Beach\",\"Southeast Florida Beach\",\"Southwest Florida Beach\",\"South Florida Everglades Sawgrass Marsh\",\"South Florida Freshwater Slough and Gator Hole\",\"South Florida Wet Marl Prairie\",\"California Maritime Chaparral\",\"California Mesic Chaparral\",\"California Xeric Serpentine Chaparral\",\"Klamath-Siskiyou Xeromorphic Serpentine Savanna and Chaparral\",\"Mediterranean California Mesic Serpentine Woodland and Chaparral\",\"Northern and Central California Dry-Mesic Chaparral\",\"Southern California Dry-Mesic Chaparral\",\"Southern California Coastal Scrub\",\"California Central Valley and Southern Coastal Grassland\",\"California Mesic Serpentine Grassland\",\"Columbia Basin Foothill and Canyon Dry Grassland\",\"Columbia Basin Palouse Prairie\",\"North Pacific Alpine and Subalpine Dry Grassland\",\"North Pacific Montane Grassland\",\"North Pacific Montane Shrubland\",\"Northern Rocky Mountain Lower Montane, Foothill and Valley Grassland\",\"Northern Rocky Mountain Montane-Foothill Deciduous Shrubland\",\"Northern Rocky Mountain Subalpine Deciduous Shrubland\",\"Northern Rocky Mountain Subalpine-Upper Montane Grassland\",\"Southern Rocky Mountain Montane-Subalpine Grassland\",\"Rocky Mountain Gambel Oak-Mixed Montane Shrubland\",\"Rocky Mountain Lower Montane-Foothill Shrubland\",\"California Northern Coastal Grassland\",\"North Pacific Herbaceous Bald and Bluff\",\"North Pacific Hypermaritime Shrub and Herbaceous Headland\",\"Willamette Valley Upland Prairie and Savanna\",\"Mediterranean California Subalpine Meadow\",\"Rocky Mountain Subalpine-Montane Mesic Meadow\",\"Central Mixedgrass Prairie\",\"Northwestern Great Plains Mixedgrass Prairie\",\"Western Great Plains Foothill and Piedmont Grassland\",\"Western Great Plains Tallgrass Prairie\",\"Western Great Plains Sand Prairie\",\"Western Great Plains Sandhill Steppe\",\"Western Great Plains Mesquite Woodland and Shrubland\",\"Western Great Plains Shortgrass Prairie\",\"Arkansas Valley Prairie and Woodland\",\"Central Tallgrass Prairie\",\"North-Central Interior Oak Savanna\",\"North-Central Interior Sand and Gravel Tallgrass Prairie\",\"North-Central Oak Barrens\",\"Northern Tallgrass Prairie\",\"Southeastern Great Plains Tallgrass Prairie\",\"Texas Blackland Tallgrass Prairie\",\"Texas-Louisiana Coastal Prairie\",\"Central Appalachian Pine-Oak Rocky Woodland\",\"Southern Appalachian Grass and Shrub Bald\",\"Southern Appalachian Grass and Shrub Bald - Herbaceous Modifier\",\"Southern Appalachian Grass and Shrub Bald - Shrub Modifier\",\"Central Appalachian Alkaline Glade and Woodland\",\"Central Interior Highlands Calcareous Glade and Barrens\",\"Central Interior Highlands Dry Acidic Glade and Barrens\",\"Cumberland Sandstone Glade and Barrens\",\"Great Lakes Alvar\",\"Nashville Basin Limestone Glade\",\"Southern Ridge and Valley / Cumberland Dry Calcareous Forest\",\"Southern Piedmont Glade and Barrens\",\"East Gulf Coastal Plain Black Belt Calcareous Prairie and Woodland - Herbaceous Modifier\",\"East Gulf Coastal Plain Jackson Prairie and Woodland\",\"Eastern Highland Rim Prairie and Barrens - Dry Modifier\",\"Coahuilan Chaparral\",\"Madrean Oriental Chaparral\",\"Mogollon Chaparral\",\"Sonora-Mojave Semi-Desert Chaparral\",\"California Montane Woodland and Chaparral\",\"Great Basin Semi-Desert Chaparral\",\"Florida Dry Prairie\",\"Florida Peninsula Inland Scrub\",\"West Gulf Coastal Plain Catahoula Barrens\",\"West Gulf Coastal Plain Nepheline Syenite Glade\",\"East Gulf Coastal Plain Jackson Plain Dry Flatwoods - Open Understory Modifier\",\"West Gulf Coastal Plain Northern Calcareous Prairie\",\"West Gulf Coastal Plain Southern Calcareous Prairie\",\"Acadian-Appalachian Subalpine Woodland and Heath-Krummholz\",\"Atlantic and Gulf Coastal Plain Interdunal Wetland\",\"Atlantic Coastal Plain Southern Dune and Maritime Grassland\",\"Central and Upper Texas Coast Dune and Coastal Grassland\",\"East Gulf Coastal Plain Dune and Coastal Grassland\",\"Great Lakes Dune\",\"Northern Atlantic Coastal Plain Dune and Swale\",\"Northern Atlantic Coastal Plain Heathland and Grassland\",\"South Texas Dune and Coastal Grassland\",\"South Texas Sand Sheet Grassland\",\"Southwest Florida Dune and Coastal Grassland\",\"North Pacific Coastal Cliff and Bluff\",\"North Pacific Maritime Coastal Sand Dune and Strand\",\"Northern California Coastal Scrub\",\"Mediterranean California Coastal Bluff\",\"Mediterranean California Northern Coastal Dune\",\"Mediterranean California Southern Coastal Dune\",\"Atlantic Coastal Plain Northern Sandy Beach\",\"Atlantic Coastal Plain Sea Island Beach\",\"Atlantic Coastal Plain Southern Beach\",\"Florida Panhandle Beach Vegetation\",\"Louisiana Beach\",\"Northern Atlantic Coastal Plain Sandy Beach\",\"Texas Coastal Bend Beach\",\"Upper Texas Coast Beach\",\"0\",\"Mediterranean California Serpentine Fen\",\"Mediterranean California Subalpine-Montane Fen\",\"North Pacific Bog and Fen\",\"Rocky Mountain Subalpine-Montane Fen\",\"Atlantic Coastal Plain Peatland Pocosin\",\"Southern and Central Appalachian Bog and Fen\",\"Atlantic Coastal Plain Central Fresh-Oligohaline Tidal Marsh\",\"Atlantic Coastal Plain Embayed Region Tidal Freshwater Marsh\",\"Atlantic Coastal Plain Northern Fresh and Oligohaline Tidal Marsh\",\"Florida Big Bend Fresh-Oligohaline Tidal Marsh\",\"Atlantic Coastal Plain Depression Pondshore\",\"Atlantic Coastal Plain Large Natural Lakeshore\",\"Central Florida Herbaceous Pondshore\",\"Central Florida Herbaceous Seep\",\"East Gulf Coastal Plain Savanna and Wet Prairie\",\"East Gulf Coastal Plain Depression Pondshore\",\"Floridian Highlands Freshwater Marsh\",\"Southern Coastal Plain Herbaceous Seepage Bog\",\"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Clethra Modifier\",\"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Nupea Modifier\",\"Texas-Louisiana Coastal Prairie Slough\",\"Central Interior and Appalachian Shrub-Herbaceous Wetland Systems\",\"Great Lakes Coastal Marsh Systems\",\"0\",\"0\",\"Laurentian-Acadian Shrub-Herbaceous Wetland Systems\",\"0\",\"Eastern Great Plains Wet Meadow, Prairie and Marsh\",\"Great Lakes Wet-Mesic Lakeplain Prairie\",\"Great Plains Prairie Pothole\",\"Western Great Plains Closed Depression Wetland\",\"Western Great Plains Depressional Wetland Systems\",\"Western Great Plains Open Freshwater Depression Wetland\",\"Cumberland Riverscour\",\"Inter-Mountain Basins Interdunal Swale Wetland\",\"North Pacific Avalanche Chute Shrubland\",\"North Pacific Intertidal Freshwater Wetland\",\"Temperate Pacific Freshwater Emergent Marsh\",\"Temperate Pacific Freshwater Mudflat\",\"Columbia Plateau Vernal Pool\",\"Northern California Claypan Vernal Pool\",\"Northern Rocky Mountain Wooded Vernal Pool\",\"Columbia Plateau Silver Sagebrush Seasonally Flooded Shrub-Steppe\",\"Rocky Mountain Alpine-Montane Wet Meadow\",\"Rocky Mountain Subalpine-Montane Riparian Shrubland\",\"Temperate Pacific Montane Wet Meadow\",\"Willamette Valley Wet Prairie\",\"Chihuahuan-Sonoran Desert Bottomland and Swale Grassland\",\"North American Arid West Emergent Marsh\",\"North American Warm Desert Riparian Mesquite Bosque\",\"Western Great Plains Saline Depression Wetland\",\"Acadian Salt Marsh and Estuary Systems\",\"Atlantic Coastal Plain Central Salt and Brackish Tidal Marsh\",\"Atlantic Coastal Plain Embayed Region Tidal Salt and Brackish Marsh\",\"Atlantic Coastal Plain Indian River Lagoon Tidal Marsh\",\"Atlantic Coastal Plain Northern Tidal Salt Marsh\",\"Florida Big Bend Salt-Brackish Tidal Marsh\",\"Gulf and Atlantic Coastal Plain Tidal Marsh Systems\",\"Mississippi Sound Salt and Brackish Tidal Marsh\",\"Texas Saline Coastal Prairie\",\"Temperate Pacific Tidal Salt and Brackish Marsh\",\"Inter-Mountain Basins Alkaline Closed Depression\",\"Inter-Mountain Basins Greasewood Flat\",\"Inter-Mountain Basins Playa\",\"North American Warm Desert Playa\",\"Apacherian-Chihuahuan Mesquite Upland Scrub\",\"Apacherian-Chihuahuan Semi-Desert Grassland and Steppe\",\"Chihuahuan Creosotebush, Mixed Desert and Thorn Scrub\",\"Chihuahuan Gypsophilous Grassland and Steppe\",\"Chihuahuan Loamy Plains Desert Grassland\",\"Chihuahuan Mixed Desert and Thorn Scrub\",\"Chihuahuan Sandy Plains Semi-Desert Grassland\",\"Chihuahuan Stabilized Coppice Dune and Sand Flat Scrub\",\"Chihuahuan Succulent Desert Scrub\",\"Madrean Juniper Savanna\",\"Mojave Mid-Elevation Mixed Desert Scrub\",\"North American Warm Desert Active and Stabilized Dune\",\"Sonora-Mojave Creosotebush-White Bursage Desert Scrub\",\"Sonoran Mid-Elevation Desert Scrub\",\"Sonoran Paloverde-Mixed Cacti Desert Scrub\",\"Chihuahuan Mixed Salt Desert Scrub\",\"Sonora-Mojave Mixed Salt Desert Scrub\",\"North American Warm Desert Wash\",\"South Texas Lomas\",\"Tamaulipan Calcareous Thornscrub\",\"Tamaulipan Clay Grassland\",\"Tamaulipan Mesquite Upland Scrub\",\"Tamaulipan Mixed Deciduous Thornscrub\",\"Tamaulipan Savanna Grassland\",\"Inter-Mountain Basins Mat Saltbush Shrubland\",\"Inter-Mountain Basins Mixed Salt Desert Scrub\",\"Inter-Mountain Basins Wash\",\"Columbia Plateau Steppe and Grassland\",\"Great Basin Xeric Mixed Sagebrush Shrubland\",\"Inter-Mountain Basins Big Sagebrush Shrubland\",\"Inter-Mountain Basins Big Sagebrush Steppe\",\"Inter-Mountain Basins Montane Sagebrush Steppe\",\"Colorado Plateau Mixed Low Sagebrush Shrubland\",\"Columbia Plateau Low Sagebrush Steppe\",\"Columbia Plateau Scabland Shrubland\",\"Wyoming Basins Dwarf Sagebrush Shrubland and Steppe\",\"Colorado Plateau Blackbrush-Mormon-tea Shrubland\",\"Inter-Mountain Basins Semi-Desert Grassland\",\"Inter-Mountain Basins Semi-Desert Shrub Steppe\",\"Southern Colorado Plateau Sand Shrubland\",\"Acadian-Appalachian Alpine Tundra\",\"Rocky Mountain Alpine Dwarf-Shrubland\",\"Rocky Mountain Alpine Fell-Field\",\"Rocky Mountain Alpine Turf\",\"Mediterranean California Alpine Dry Tundra\",\"Mediterranean California Alpine Fell-Field\",\"North Pacific Dry and Mesic Alpine Dwarf-Shrubland, Fell-field and Meadow\",\"Rocky Mountain Alpine Tundra/Fell-field/Dwarf-shrub Map Unit\",\"Temperate Pacific Intertidal Mudflat\",\"Mediterranean California Eelgrass Bed\",\"North Pacific Maritime Eelgrass Bed\",\"South-Central Interior Large Floodplain - Herbaceous Modifier\",\"East Gulf Coastal Plain Large River Floodplain Forest - Herbaceous Modifier\",\"Temperate Pacific Freshwater Aquatic Bed\",\"Central California Coast Ranges Cliff and Canyon\",\"Mediterranean California Serpentine Barrens\",\"Southern California Coast Ranges Cliff and Canyon\",\"Central Interior Acidic Cliff and Talus\",\"Central Interior Calcareous Cliff and Talus\",\"East Gulf Coastal Plain Dry Chalk Bluff\",\"North-Central Appalachian Acidic Cliff and Talus\",\"North-Central Appalachian Circumneutral Cliff and Talus\",\"Southern Appalachian Montane Cliff\",\"Southern Interior Acid Cliff\",\"Southern Interior Calcareous Cliff\",\"Southern Piedmont Cliff\",\"Southern Appalachian Granitic Dome\",\"Southern Appalachian Rocky Summit\",\"Southern Piedmont Granite Flatrock\",\"Rocky Mountain Cliff, Canyon and Massive Bedrock\",\"Klamath-Siskiyou Cliff and Outcrop\",\"North Pacific Montane Massive Bedrock, Cliff and Talus\",\"North Pacific Serpentine Barren\",\"North Pacific Active Volcanic Rock and Cinder Land\",\"Sierra Nevada Cliff and Canyon\",\"Western Great Plains Badland\",\"Southwestern Great Plains Canyon\",\"Western Great Plains Cliff and Outcrop\",\"North American Warm Desert Badland\",\"North American Warm Desert Bedrock Cliff and Outcrop\",\"North American Warm Desert Pavement\",\"North American Warm Desert Volcanic Rockland\",\"Colorado Plateau Mixed Bedrock Canyon and Tableland\",\"Columbia Plateau Ash and Tuff Badland\",\"Geysers and Hot Springs\",\"Inter-Mountain Basins Active and Stabilized Dune\",\"Inter-Mountain Basins Cliff and Canyon\",\"Inter-Mountain Basins Shale Badland\",\"Inter-Mountain Basins Volcanic Rock and Cinder Land\",\"Rocky Mountain Alpine Bedrock and Scree\",\"Mediterranean California Alpine Bedrock and Scree\",\"North Pacific Alpine and Subalpine Bedrock and Scree\",\"Unconsolidated Shore\",\"Undifferentiated Barren Land\",\"North American Alpine Ice Field\",\"Orchards Vineyards and Other High Structure Agriculture\",\"Cultivated Cropland\",\"Pasture/Hay\",\"Introduced Upland Vegetation - Annual Grassland\",\"Introduced Upland Vegetation - Perennial Grassland and Forbland\",\"Modified/Managed Southern Tall Grassland\",\"Introduced Upland Vegetation - Shrub\",\"Introduced Riparian and Wetland Vegetation\",\"Introduced Upland Vegetation - Treed\",\"0\",\"Disturbed, Non-specific\",\"Recently Logged Areas\",\"Harvested Forest - Grass/Forb Regeneration\",\"Harvested Forest-Shrub Regeneration\",\"Harvested Forest - Northwestern Conifer Regeneration\",\"Recently Burned\",\"Recently burned grassland\",\"Recently burned shrubland\",\"Recently burned forest\",\"Disturbed/Successional - Grass/Forb Regeneration\",\"Disturbed/Successional - Shrub Regeneration\",\"Disturbed/Successional - Recently Chained Pinyon-Juniper\",\"Open Water (Aquaculture)\",\"Open Water (Brackish/Salt)\",\"Open Water (Fresh)\",\"Quarries, Mines, Gravel Pits and Oil Wells\",\"Developed, Open Space\",\"Developed, Low Intensity\",\"Developed, Medium Intensity\",\"Developed, High Intensity\"]}]},\"description\":\"The [USGS GAP/LANDFIRE National Terrestrial Ecosystems data](https://www.sciencebase.gov/catalog/item/573cc51be4b0dae0d5e4b0c5), based on the [NatureServe Terrestrial Ecological Systems](https://www.natureserve.org/products/terrestrial-ecological-systems-united-states), are the foundation of the most detailed, consistent map of vegetation available for the United States. These data facilitate planning and management for biological diversity on a regional and national scale.\\n\\nThis dataset includes the [land cover](https://www.usgs.gov/core-science-systems/science-analytics-and-synthesis/gap/science/land-cover) component of the GAP/LANDFIRE project.\\n\\n\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"GeoTIFF data\",\"file:values\":[{\"values\":[0],\"summary\":\"0\"},{\"values\":[1],\"summary\":\"South Florida Bayhead Swamp\"},{\"values\":[2],\"summary\":\"South Florida Cypress Dome\"},{\"values\":[3],\"summary\":\"South Florida Dwarf Cypress Savanna\"},{\"values\":[4],\"summary\":\"South Florida Mangrove Swamp\"},{\"values\":[5],\"summary\":\"South Florida Hardwood Hammock\"},{\"values\":[6],\"summary\":\"Southeast Florida Coastal Strand and Maritime Hammock\"},{\"values\":[7],\"summary\":\"Southwest Florida Coastal Strand and Maritime Hammock\"},{\"values\":[8],\"summary\":\"South Florida Pine Rockland\"},{\"values\":[9],\"summary\":\"Atlantic Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Open Understory\"},{\"values\":[10],\"summary\":\"Atlantic Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Scrub/Shrub Understory\"},{\"values\":[11],\"summary\":\"Atlantic Coastal Plain Upland Longleaf Pine Woodland\"},{\"values\":[12],\"summary\":\"Atlantic Coastal Plain Xeric River Dune\"},{\"values\":[13],\"summary\":\"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Open Understory Modifier\"},{\"values\":[14],\"summary\":\"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Scrub/Shrub Modifier\"},{\"values\":[15],\"summary\":\"Florida Longleaf Pine Sandhill - Scrub/Shrub Understory Modifier\"},{\"values\":[16],\"summary\":\"Florida Longleaf Pine Sandhill- Open Understory Modifier\"},{\"values\":[17],\"summary\":\"West Gulf Coastal Plain Upland Longleaf Pine Forest and Woodland\"},{\"values\":[18],\"summary\":\"Atlantic Coastal Plain Central Maritime Forest\"},{\"values\":[19],\"summary\":\"Atlantic Coastal Plain Southern Maritime Forest\"},{\"values\":[20],\"summary\":\"Central and South Texas Coastal Fringe Forest and Woodland\"},{\"values\":[21],\"summary\":\"East Gulf Coastal Plain Limestone Forest\"},{\"values\":[22],\"summary\":\"East Gulf Coastal Plain Maritime Forest\"},{\"values\":[23],\"summary\":\"East Gulf Coastal Plain Southern Loess Bluff Forest\"},{\"values\":[24],\"summary\":\"East Gulf Coastal Plain Southern Mesic Slope Forest\"},{\"values\":[25],\"summary\":\"Mississippi Delta Maritime Forest\"},{\"values\":[26],\"summary\":\"Southern Coastal Plain Dry Upland Hardwood Forest\"},{\"values\":[27],\"summary\":\"Southern Coastal Plain Oak Dome and Hammock\"},{\"values\":[28],\"summary\":\"West Gulf Coastal Plain Chenier and Upper Texas Coastal Fringe Forest and Woodland\"},{\"values\":[29],\"summary\":\"West Gulf Coastal Plain Mesic Hardwood Forest\"},{\"values\":[30],\"summary\":\"East-Central Texas Plains Pine Forest and Woodland\"},{\"values\":[31],\"summary\":\"West Gulf Coastal Plain Pine-Hardwood Forest\"},{\"values\":[32],\"summary\":\"West Gulf Coastal Plain Sandhill Oak and Shortleaf Pine Forest and Woodland\"},{\"values\":[33],\"summary\":\"Atlantic Coastal Plain Fall-Line Sandhills Longleaf Pine Woodland - Loblolly Modifier\"},{\"values\":[34],\"summary\":\"Deciduous Plantations\"},{\"values\":[35],\"summary\":\"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Loblolly Modifier\"},{\"values\":[36],\"summary\":\"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Offsite Hardwood Modifier\"},{\"values\":[37],\"summary\":\"East Gulf Coastal Plain Near-Coast Pine Flatwoods - Offsite Hardwood Modifier\"},{\"values\":[38],\"summary\":\"Evergreen Plantation or Managed Pine\"},{\"values\":[39],\"summary\":\"California Central Valley Mixed Oak Savanna\"},{\"values\":[40],\"summary\":\"California Coastal Closed-Cone Conifer Forest and Woodland\"},{\"values\":[41],\"summary\":\"California Coastal Live Oak Woodland and Savanna\"},{\"values\":[42],\"summary\":\"California Lower Montane Blue Oak-Foothill Pine Woodland and Savanna\"},{\"values\":[43],\"summary\":\"Central and Southern California Mixed Evergreen Woodland\"},{\"values\":[44],\"summary\":\"Mediterranean California Lower Montane Black Oak-Conifer Forest and Woodland\"},{\"values\":[45],\"summary\":\"Southern California Oak Woodland and Savanna\"},{\"values\":[46],\"summary\":\"Madrean Encinal\"},{\"values\":[47],\"summary\":\"Madrean Pinyon-Juniper Woodland\"},{\"values\":[48],\"summary\":\"Madrean Pine-Oak Forest and Woodland\"},{\"values\":[49],\"summary\":\"Madrean Upper Montane Conifer-Oak Forest and Woodland\"},{\"values\":[50],\"summary\":\"Edwards Plateau Dry-Mesic Slope Forest and Woodland\"},{\"values\":[51],\"summary\":\"Edwards Plateau Limestone Savanna and Woodland\"},{\"values\":[52],\"summary\":\"Edwards Plateau Mesic Canyon\"},{\"values\":[53],\"summary\":\"Llano Uplift Acidic Forest, Woodland and Glade\"},{\"values\":[54],\"summary\":\"East Cascades Oak-Ponderosa Pine Forest and Woodland\"},{\"values\":[55],\"summary\":\"Mediterranean California Mixed Evergreen Forest\"},{\"values\":[56],\"summary\":\"Mediterranean California Mixed Oak Woodland\"},{\"values\":[57],\"summary\":\"North Pacific Dry Douglas-fir-(Madrone) Forest and Woodland\"},{\"values\":[58],\"summary\":\"North Pacific Oak Woodland\"},{\"values\":[59],\"summary\":\"Edwards Plateau Limestone Shrubland\"},{\"values\":[60],\"summary\":\"Allegheny-Cumberland Dry Oak Forest and Woodland - Hardwood\"},{\"values\":[61],\"summary\":\"Allegheny-Cumberland Dry Oak Forest and Woodland - Pine Modifier\"},{\"values\":[62],\"summary\":\"Central and Southern Appalachian Montane Oak Forest\"},{\"values\":[63],\"summary\":\"Central and Southern Appalachian Northern Hardwood Forest\"},{\"values\":[64],\"summary\":\"Central Appalachian Oak and Pine Forest\"},{\"values\":[65],\"summary\":\"Crosstimbers Oak Forest and Woodland\"},{\"values\":[66],\"summary\":\"East Gulf Coastal Plain Black Belt Calcareous Prairie and Woodland - Woodland Modifier\"},{\"values\":[67],\"summary\":\"East Gulf Coastal Plain Northern Dry Upland Hardwood Forest\"},{\"values\":[68],\"summary\":\"East Gulf Coastal Plain Northern Loess Plain Oak-Hickory Upland - Hardwood Modifier\"},{\"values\":[69],\"summary\":\"East Gulf Coastal Plain Northern Loess Plain Oak-Hickory Upland - Juniper Modifier\"},{\"values\":[70],\"summary\":\"East-Central Texas Plains Post Oak Savanna and Woodland\"},{\"values\":[71],\"summary\":\"Lower Mississippi River Dune Woodland and Forest\"},{\"values\":[72],\"summary\":\"Mississippi River Alluvial Plain Dry-Mesic Loess Slope Forest\"},{\"values\":[73],\"summary\":\"North-Central Interior Dry Oak Forest and Woodland\"},{\"values\":[74],\"summary\":\"North-Central Interior Dry-Mesic Oak Forest and Woodland\"},{\"values\":[75],\"summary\":\"Northeastern Interior Dry Oak Forest - Mixed Modifier\"},{\"values\":[76],\"summary\":\"Northeastern Interior Dry Oak Forest - Virginia/Pitch Pine Modifier\"},{\"values\":[77],\"summary\":\"Northeastern Interior Dry Oak Forest-Hardwood Modifier\"},{\"values\":[78],\"summary\":\"Northeastern Interior Dry-Mesic Oak Forest\"},{\"values\":[79],\"summary\":\"Northern Atlantic Coastal Plain Dry Hardwood Forest\"},{\"values\":[80],\"summary\":\"Crowley's Ridge Sand Forest\"},{\"values\":[81],\"summary\":\"Ouachita Montane Oak Forest\"},{\"values\":[82],\"summary\":\"Ozark-Ouachita Dry Oak Woodland\"},{\"values\":[83],\"summary\":\"Ozark-Ouachita Dry-Mesic Oak Forest\"},{\"values\":[84],\"summary\":\"Southern and Central Appalachian Oak Forest\"},{\"values\":[85],\"summary\":\"Southern and Central Appalachian Oak Forest - Xeric\"},{\"values\":[86],\"summary\":\"Southern Interior Low Plateau Dry-Mesic Oak Forest\"},{\"values\":[87],\"summary\":\"Southern Ridge and Valley Dry Calcareous Forest\"},{\"values\":[88],\"summary\":\"Southern Ridge and Valley Dry Calcareous Forest - Pine modifier\"},{\"values\":[89],\"summary\":\"East Gulf Coastal Plain Northern Dry Upland Hardwood Forest - Offsite Pine Modifier\"},{\"values\":[90],\"summary\":\"Managed Tree Plantation\"},{\"values\":[91],\"summary\":\"Ruderal forest\"},{\"values\":[92],\"summary\":\"Southern Piedmont Dry Oak-(Pine) Forest - Loblolly Pine Modifier\"},{\"values\":[93],\"summary\":\"Acadian Low-Elevation Spruce-Fir-Hardwood Forest\"},{\"values\":[94],\"summary\":\"Acadian-Appalachian Montane Spruce-Fir Forest\"},{\"values\":[95],\"summary\":\"Appalachian Hemlock-Hardwood Forest\"},{\"values\":[96],\"summary\":\"Central and Southern Appalachian Spruce-Fir Forest\"},{\"values\":[97],\"summary\":\"0\"},{\"values\":[98],\"summary\":\"Laurentian-Acadian Northern Hardwoods Forest\"},{\"values\":[99],\"summary\":\"Laurentian-Acadian Northern Pine-(Oak) Forest\"},{\"values\":[100],\"summary\":\"Laurentian-Acadian Pine-Hemlock-Hardwood Forest\"},{\"values\":[101],\"summary\":\"Paleozoic Plateau Bluff and Talus\"},{\"values\":[102],\"summary\":\"Southern Appalachian Northern Hardwood Forest\"},{\"values\":[103],\"summary\":\"Atlantic Coastal Plain Dry and Dry-Mesic Oak Forest\"},{\"values\":[104],\"summary\":\"Atlantic Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Offsite Hardwood\"},{\"values\":[105],\"summary\":\"East Gulf Coastal Plain Interior Shortleaf Pine-Oak Forest - Hardwood Modifier\"},{\"values\":[106],\"summary\":\"East Gulf Coastal Plain Interior Shortleaf Pine-Oak Forest - Mixed Modifier\"},{\"values\":[107],\"summary\":\"Ozark-Ouachita Shortleaf Pine-Bluestem Woodland\"},{\"values\":[108],\"summary\":\"Ozark-Ouachita Shortleaf Pine-Oak Forest and Woodland\"},{\"values\":[109],\"summary\":\"Southeastern Interior Longleaf Pine Woodland\"},{\"values\":[110],\"summary\":\"Southern Appalachian Low Mountain Pine Forest\"},{\"values\":[111],\"summary\":\"Southern Piedmont Dry Oak-(Pine) Forest\"},{\"values\":[112],\"summary\":\"Southern Piedmont Dry Oak-(Pine) Forest - Hardwood Modifier\"},{\"values\":[113],\"summary\":\"Southern Piedmont Dry Oak-(Pine) Forest - Mixed Modifier\"},{\"values\":[114],\"summary\":\"Southern Piedmont Dry Oak-Heath Forest - Mixed Modifier\"},{\"values\":[115],\"summary\":\"Eastern Great Plains Tallgrass Aspen Parkland\"},{\"values\":[116],\"summary\":\"Northwestern Great Plains Aspen Forest and Parkland\"},{\"values\":[117],\"summary\":\"Northwestern Great Plains Shrubland\"},{\"values\":[118],\"summary\":\"Western Great Plains Dry Bur Oak Forest and Woodland\"},{\"values\":[119],\"summary\":\"Western Great Plains Wooded Draw and Ravine\"},{\"values\":[120],\"summary\":\"Southern Atlantic Coastal Plain Mesic Hardwood Forest\"},{\"values\":[121],\"summary\":\"East Gulf Coastal Plain Northern Loess Bluff Forest\"},{\"values\":[122],\"summary\":\"East Gulf Coastal Plain Northern Mesic Hardwood Forest\"},{\"values\":[123],\"summary\":\"North-Central Interior Beech-Maple Forest\"},{\"values\":[124],\"summary\":\"North-Central Interior Maple-Basswood Forest\"},{\"values\":[125],\"summary\":\"Ozark-Ouachita Mesic Hardwood Forest\"},{\"values\":[126],\"summary\":\"South-Central Interior Mesophytic Forest\"},{\"values\":[127],\"summary\":\"Southern and Central Appalachian Cove Forest\"},{\"values\":[128],\"summary\":\"Crowley's Ridge Mesic Loess Slope Forest\"},{\"values\":[129],\"summary\":\"Southern Piedmont Mesic Forest\"},{\"values\":[130],\"summary\":\"Appalachian Shale Barrens\"},{\"values\":[131],\"summary\":\"Atlantic Coastal Plain Northern Maritime Forest\"},{\"values\":[132],\"summary\":\"Laurentian Pine-Oak Barrens\"},{\"values\":[133],\"summary\":\"Northeastern Interior Pine Barrens\"},{\"values\":[134],\"summary\":\"Northern Atlantic Coastal Plain Pitch Pine Barrens\"},{\"values\":[135],\"summary\":\"Southern Appalachian Montane Pine Forest and Woodland\"},{\"values\":[136],\"summary\":\"East Cascades Mesic Montane Mixed-Conifer Forest and Woodland\"},{\"values\":[137],\"summary\":\"Middle Rocky Mountain Montane Douglas-fir Forest and Woodland\"},{\"values\":[138],\"summary\":\"Northern Rocky Mountain Dry-Mesic Montane Mixed Conifer Forest\"},{\"values\":[139],\"summary\":\"Northern Rocky Mountain Foothill Conifer Wooded Steppe\"},{\"values\":[140],\"summary\":\"Northern Rocky Mountain Mesic Montane Mixed Conifer Forest\"},{\"values\":[141],\"summary\":\"Northern Rocky Mountain Ponderosa Pine Woodland and Savanna\"},{\"values\":[142],\"summary\":\"Northern Rocky Mountain Western Larch Savanna\"},{\"values\":[143],\"summary\":\"Northwestern Great Plains - Black Hills Ponderosa Pine Woodland and Savanna\"},{\"values\":[144],\"summary\":\"Rocky Mountain Foothill Limber Pine-Juniper Woodland\"},{\"values\":[145],\"summary\":\"Inter-Mountain Basins Aspen-Mixed Conifer Forest and Woodland\"},{\"values\":[146],\"summary\":\"Inter-Mountain Basins Subalpine Limber-Bristlecone Pine Woodland\"},{\"values\":[147],\"summary\":\"Northern Rocky Mountain Subalpine Woodland and Parkland\"},{\"values\":[148],\"summary\":\"Rocky Mountain Aspen Forest and Woodland\"},{\"values\":[149],\"summary\":\"Rocky Mountain Lodgepole Pine Forest\"},{\"values\":[150],\"summary\":\"Rocky Mountain Poor-Site Lodgepole Pine Forest\"},{\"values\":[151],\"summary\":\"Rocky Mountain Subalpine Dry-Mesic Spruce-Fir Forest and Woodland\"},{\"values\":[152],\"summary\":\"Rocky Mountain Subalpine Mesic Spruce-Fir Forest and Woodland\"},{\"values\":[153],\"summary\":\"Rocky Mountain Subalpine-Montane Limber-Bristlecone Pine Woodland\"},{\"values\":[154],\"summary\":\"Rocky Mountain Bigtooth Maple Ravine Woodland\"},{\"values\":[155],\"summary\":\"Southern Rocky Mountain Dry-Mesic Montane Mixed Conifer Forest and Woodland\"},{\"values\":[156],\"summary\":\"Southern Rocky Mountain Mesic Montane Mixed Conifer Forest and Woodland\"},{\"values\":[157],\"summary\":\"Southern Rocky Mountain Ponderosa Pine Savanna\"},{\"values\":[158],\"summary\":\"Southern Rocky Mountain Ponderosa Pine Woodland\"},{\"values\":[159],\"summary\":\"California Montane Jeffrey Pine-(Ponderosa Pine) Woodland\"},{\"values\":[160],\"summary\":\"Klamath-Siskiyou Lower Montane Serpentine Mixed Conifer Woodland\"},{\"values\":[161],\"summary\":\"Klamath-Siskiyou Upper Montane Serpentine Mixed Conifer Woodland\"},{\"values\":[162],\"summary\":\"Mediterranean California Dry-Mesic Mixed Conifer Forest and Woodland\"},{\"values\":[163],\"summary\":\"Mediterranean California Mesic Mixed Conifer Forest and Woodland\"},{\"values\":[164],\"summary\":\"Sierran-Intermontane Desert Western White Pine-White Fir Woodland\"},{\"values\":[165],\"summary\":\"California Coastal Redwood Forest\"},{\"values\":[166],\"summary\":\"North Pacific Broadleaf Landslide Forest and Shrubland\"},{\"values\":[167],\"summary\":\"North Pacific Dry-Mesic Silver Fir-Western Hemlock-Douglas-fir Forest\"},{\"values\":[168],\"summary\":\"North Pacific Hypermaritime Sitka Spruce Forest\"},{\"values\":[169],\"summary\":\"North Pacific Hypermaritime Western Red-cedar-Western Hemlock Forest\"},{\"values\":[170],\"summary\":\"North Pacific Lowland Mixed Hardwood-Conifer Forest and Woodland\"},{\"values\":[171],\"summary\":\"North Pacific Maritime Dry-Mesic Douglas-fir-Western Hemlock Forest\"},{\"values\":[172],\"summary\":\"North Pacific Maritime Mesic-Wet Douglas-fir-Western Hemlock Forest\"},{\"values\":[173],\"summary\":\"North Pacific Mesic Western Hemlock-Silver Fir Forest\"},{\"values\":[174],\"summary\":\"North Pacific Wooded Volcanic Flowage\"},{\"values\":[175],\"summary\":\"Mediterranean California Red Fir Forest\"},{\"values\":[176],\"summary\":\"Mediterranean California Subalpine Woodland\"},{\"values\":[177],\"summary\":\"North Pacific Maritime Mesic Subalpine Parkland\"},{\"values\":[178],\"summary\":\"North Pacific Mountain Hemlock Forest\"},{\"values\":[179],\"summary\":\"Northern California Mesic Subalpine Woodland\"},{\"values\":[180],\"summary\":\"Northern Pacific Mesic Subalpine Woodland\"},{\"values\":[181],\"summary\":\"Sierra Nevada Subalpine Lodgepole Pine Forest and Woodland\"},{\"values\":[182],\"summary\":\"Columbia Plateau Western Juniper Woodland and Savanna\"},{\"values\":[183],\"summary\":\"Great Basin Pinyon-Juniper Woodland\"},{\"values\":[184],\"summary\":\"Inter-Mountain Basins Curl-leaf Mountain Mahogany Woodland and Shrubland\"},{\"values\":[185],\"summary\":\"Inter-Mountain Basins Juniper Savanna\"},{\"values\":[186],\"summary\":\"Colorado Plateau Pinyon-Juniper Shrubland\"},{\"values\":[187],\"summary\":\"Colorado Plateau Pinyon-Juniper Woodland\"},{\"values\":[188],\"summary\":\"Southern Rocky Mountain Juniper Woodland and Savanna\"},{\"values\":[189],\"summary\":\"Southern Rocky Mountain Pinyon-Juniper Woodland\"},{\"values\":[190],\"summary\":\"Northwestern Great Plains Floodplain\"},{\"values\":[191],\"summary\":\"Northwestern Great Plains Riparian\"},{\"values\":[192],\"summary\":\"Western Great Plains Floodplain\"},{\"values\":[193],\"summary\":\"Western Great Plains Floodplain Systems\"},{\"values\":[194],\"summary\":\"Western Great Plains Riparian Woodland and Shrubland\"},{\"values\":[195],\"summary\":\"Central Appalachian Floodplain - Forest Modifier\"},{\"values\":[196],\"summary\":\"Central Appalachian Riparian - Forest Modifier\"},{\"values\":[197],\"summary\":\"Central Interior and Appalachian Floodplain Systems\"},{\"values\":[198],\"summary\":\"Central Interior and Appalachian Riparian Systems\"},{\"values\":[199],\"summary\":\"Laurentian-Acadian Floodplain Systems\"},{\"values\":[200],\"summary\":\"Ozark-Ouachita Riparian\"},{\"values\":[201],\"summary\":\"South-Central Interior Large Floodplain\"},{\"values\":[202],\"summary\":\"South-Central Interior Large Floodplain - Forest Modifier\"},{\"values\":[203],\"summary\":\"South-Central Interior Small Stream and Riparian\"},{\"values\":[204],\"summary\":\"North-Central Interior and Appalachian Rich Swamp\"},{\"values\":[205],\"summary\":\"0\"},{\"values\":[206],\"summary\":\"0\"},{\"values\":[207],\"summary\":\"Laurentian-Acadian Swamp Systems\"},{\"values\":[208],\"summary\":\"North-Central Interior Wet Flatwoods\"},{\"values\":[209],\"summary\":\"0\"},{\"values\":[210],\"summary\":\"South-Central Interior / Upper Coastal Plain Wet Flatwoods\"},{\"values\":[211],\"summary\":\"0\"},{\"values\":[212],\"summary\":\"Southern Piedmont/Ridge and Valley Upland Depression Swamp\"},{\"values\":[213],\"summary\":\"Atlantic Coastal Plain Blackwater Stream Floodplain Forest - Forest Modifier\"},{\"values\":[214],\"summary\":\"Atlantic Coastal Plain Brownwater Stream Floodplain Forest\"},{\"values\":[215],\"summary\":\"Atlantic Coastal Plain Northern Tidal Wooded Swamp\"},{\"values\":[216],\"summary\":\"Atlantic Coastal Plain Small Blackwater River Floodplain Forest\"},{\"values\":[217],\"summary\":\"Atlantic Coastal Plain Small Brownwater River Floodplain Forest\"},{\"values\":[218],\"summary\":\"Atlantic Coastal Plain Southern Tidal Wooded Swamp\"},{\"values\":[219],\"summary\":\"East Gulf Coastal Plain Large River Floodplain Forest - Forest Modifier\"},{\"values\":[220],\"summary\":\"East Gulf Coastal Plain Small Stream and River Floodplain Forest\"},{\"values\":[221],\"summary\":\"East Gulf Coastal Plain Tidal Wooded Swamp\"},{\"values\":[222],\"summary\":\"0\"},{\"values\":[223],\"summary\":\"Southeastern Great Plains Riparian Forest\"},{\"values\":[224],\"summary\":\"Southeastern Great Plains Floodplain Forest\"},{\"values\":[225],\"summary\":\"Mississippi River Bottomland Depression\"},{\"values\":[226],\"summary\":\"Mississippi River Floodplain and Riparian Forest\"},{\"values\":[227],\"summary\":\"Mississippi River Low Floodplain (Bottomland) Forest\"},{\"values\":[228],\"summary\":\"Mississippi River Riparian Forest\"},{\"values\":[229],\"summary\":\"Red River Large Floodplain Forest\"},{\"values\":[230],\"summary\":\"Southern Coastal Plain Blackwater River Floodplain Forest\"},{\"values\":[231],\"summary\":\"Southern Piedmont Large Floodplain Forest - Forest Modifier\"},{\"values\":[232],\"summary\":\"Southern Piedmont Small Floodplain and Riparian Forest\"},{\"values\":[233],\"summary\":\"West Gulf Coastal Plain Large River Floodplain Forest\"},{\"values\":[234],\"summary\":\"West Gulf Coastal Plain Near-Coast Large River Swamp\"},{\"values\":[235],\"summary\":\"West Gulf Coastal Plain Small Stream and River Forest\"},{\"values\":[236],\"summary\":\"Atlantic Coastal Plain Streamhead Seepage Swamp - Pocosin - and Baygall\"},{\"values\":[237],\"summary\":\"Gulf and Atlantic Coastal Plain Swamp Systems\"},{\"values\":[238],\"summary\":\"Southern Coastal Plain Hydric Hammock\"},{\"values\":[239],\"summary\":\"Southern Coastal Plain Seepage Swamp and Baygall\"},{\"values\":[240],\"summary\":\"West Gulf Coastal Plain Seepage Swamp and Baygall\"},{\"values\":[241],\"summary\":\"Atlantic Coastal Plain Nonriverine Swamp and Wet Hardwood Forest - Taxodium/Nyssa Modifier\"},{\"values\":[242],\"summary\":\"Atlantic Coastal Plain Nonriverine Swamp and Wet Hardwood Forest - Oak Dominated Modifier\"},{\"values\":[243],\"summary\":\"East Gulf Coastal Plain Southern Loblolly-Hardwood Flatwoods\"},{\"values\":[244],\"summary\":\"Lower Mississippi River Bottomland Depressions - Forest Modifier\"},{\"values\":[245],\"summary\":\"Lower Mississippi River Flatwoods\"},{\"values\":[246],\"summary\":\"Northern Atlantic Coastal Plain Basin Swamp and Wet Hardwood Forest\"},{\"values\":[247],\"summary\":\"Southern Coastal Plain Nonriverine Basin Swamp\"},{\"values\":[248],\"summary\":\"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Bay/Gum Modifier\"},{\"values\":[249],\"summary\":\"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Pine Modifier\"},{\"values\":[250],\"summary\":\"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Taxodium Modifier\"},{\"values\":[251],\"summary\":\"West Gulf Coastal Plain Nonriverine Wet Hardwood Flatwoods\"},{\"values\":[252],\"summary\":\"West Gulf Coastal Plain Pine-Hardwood Flatwoods\"},{\"values\":[253],\"summary\":\"Edwards Plateau Riparian\"},{\"values\":[254],\"summary\":\"Atlantic Coastal Plain Clay-Based Carolina Bay Forested Wetland\"},{\"values\":[255],\"summary\":\"Atlantic Coastal Plain Clay-Based Carolina Bay Herbaceous Wetland\"},{\"values\":[256],\"summary\":\"Atlantic Coastal Plain Southern Wet Pine Savanna and Flatwoods\"},{\"values\":[257],\"summary\":\"Central Atlantic Coastal Plain Wet Longleaf Pine Savanna and Flatwoods\"},{\"values\":[258],\"summary\":\"Central Florida Pine Flatwoods\"},{\"values\":[259],\"summary\":\"East Gulf Coastal Plain Near-Coast Pine Flatwoods\"},{\"values\":[260],\"summary\":\"East Gulf Coastal Plain Near-Coast Pine Flatwoods - Open Understory Modifier\"},{\"values\":[261],\"summary\":\"East Gulf Coastal Plain Near-Coast Pine Flatwoods - Scrub/Shrub Understory Modifier\"},{\"values\":[262],\"summary\":\"South Florida Pine Flatwoods\"},{\"values\":[263],\"summary\":\"Southern Coastal Plain Nonriverine Cypress Dome\"},{\"values\":[264],\"summary\":\"West Gulf Coastal Plain Wet Longleaf Pine Savanna and Flatwoods\"},{\"values\":[265],\"summary\":\"Columbia Basin Foothill Riparian Woodland and Shrubland\"},{\"values\":[266],\"summary\":\"Great Basin Foothill and Lower Montane Riparian Woodland and Shrubland\"},{\"values\":[267],\"summary\":\"0\"},{\"values\":[268],\"summary\":\"Northern Rocky Mountain Conifer Swamp\"},{\"values\":[269],\"summary\":\"Northern Rocky Mountain Lower Montane Riparian Woodland and Shrubland\"},{\"values\":[270],\"summary\":\"Rocky Mountain Lower Montane Riparian Woodland and Shrubland\"},{\"values\":[271],\"summary\":\"Rocky Mountain Montane Riparian Systems\"},{\"values\":[272],\"summary\":\"Rocky Mountain Subalpine-Montane Riparian Woodland\"},{\"values\":[273],\"summary\":\"North Pacific Hardwood-Conifer Swamp\"},{\"values\":[274],\"summary\":\"North Pacific Lowland Riparian Forest and Shrubland\"},{\"values\":[275],\"summary\":\"North Pacific Montane Riparian Woodland and Shrubland\"},{\"values\":[276],\"summary\":\"North Pacific Shrub Swamp\"},{\"values\":[277],\"summary\":\"California Central Valley Riparian Woodland and Shrubland\"},{\"values\":[278],\"summary\":\"Mediterranean California Foothill and Lower Montane Riparian Woodland\"},{\"values\":[279],\"summary\":\"Mediterranean California Serpentine Foothill and Lower Montane Riparian Woodland and Seep\"},{\"values\":[280],\"summary\":\"North American Warm Desert Lower Montane Riparian Woodland and Shrubland\"},{\"values\":[281],\"summary\":\"North American Warm Desert Riparian Systems\"},{\"values\":[282],\"summary\":\"North American Warm Desert Riparian Woodland and Shrubland\"},{\"values\":[283],\"summary\":\"Tamaulipan Floodplain\"},{\"values\":[284],\"summary\":\"Tamaulipan Riparian Systems\"},{\"values\":[285],\"summary\":\"Boreal Aspen-Birch Forest\"},{\"values\":[286],\"summary\":\"Boreal Jack Pine-Black Spruce Forest\"},{\"values\":[287],\"summary\":\"Boreal White Spruce-Fir-Hardwood Forest\"},{\"values\":[288],\"summary\":\"Boreal-Laurentian Conifer Acidic Swamp and Treed Poor Fen\"},{\"values\":[289],\"summary\":\"Eastern Boreal Floodplain\"},{\"values\":[290],\"summary\":\"South Florida Shell Hash Beach\"},{\"values\":[291],\"summary\":\"Southeast Florida Beach\"},{\"values\":[292],\"summary\":\"Southwest Florida Beach\"},{\"values\":[293],\"summary\":\"South Florida Everglades Sawgrass Marsh\"},{\"values\":[294],\"summary\":\"South Florida Freshwater Slough and Gator Hole\"},{\"values\":[295],\"summary\":\"South Florida Wet Marl Prairie\"},{\"values\":[296],\"summary\":\"California Maritime Chaparral\"},{\"values\":[297],\"summary\":\"California Mesic Chaparral\"},{\"values\":[298],\"summary\":\"California Xeric Serpentine Chaparral\"},{\"values\":[299],\"summary\":\"Klamath-Siskiyou Xeromorphic Serpentine Savanna and Chaparral\"},{\"values\":[300],\"summary\":\"Mediterranean California Mesic Serpentine Woodland and Chaparral\"},{\"values\":[301],\"summary\":\"Northern and Central California Dry-Mesic Chaparral\"},{\"values\":[302],\"summary\":\"Southern California Dry-Mesic Chaparral\"},{\"values\":[303],\"summary\":\"Southern California Coastal Scrub\"},{\"values\":[304],\"summary\":\"California Central Valley and Southern Coastal Grassland\"},{\"values\":[305],\"summary\":\"California Mesic Serpentine Grassland\"},{\"values\":[306],\"summary\":\"Columbia Basin Foothill and Canyon Dry Grassland\"},{\"values\":[307],\"summary\":\"Columbia Basin Palouse Prairie\"},{\"values\":[308],\"summary\":\"North Pacific Alpine and Subalpine Dry Grassland\"},{\"values\":[309],\"summary\":\"North Pacific Montane Grassland\"},{\"values\":[310],\"summary\":\"North Pacific Montane Shrubland\"},{\"values\":[311],\"summary\":\"Northern Rocky Mountain Lower Montane, Foothill and Valley Grassland\"},{\"values\":[312],\"summary\":\"Northern Rocky Mountain Montane-Foothill Deciduous Shrubland\"},{\"values\":[313],\"summary\":\"Northern Rocky Mountain Subalpine Deciduous Shrubland\"},{\"values\":[314],\"summary\":\"Northern Rocky Mountain Subalpine-Upper Montane Grassland\"},{\"values\":[315],\"summary\":\"Southern Rocky Mountain Montane-Subalpine Grassland\"},{\"values\":[316],\"summary\":\"Rocky Mountain Gambel Oak-Mixed Montane Shrubland\"},{\"values\":[317],\"summary\":\"Rocky Mountain Lower Montane-Foothill Shrubland\"},{\"values\":[318],\"summary\":\"California Northern Coastal Grassland\"},{\"values\":[319],\"summary\":\"North Pacific Herbaceous Bald and Bluff\"},{\"values\":[320],\"summary\":\"North Pacific Hypermaritime Shrub and Herbaceous Headland\"},{\"values\":[321],\"summary\":\"Willamette Valley Upland Prairie and Savanna\"},{\"values\":[322],\"summary\":\"Mediterranean California Subalpine Meadow\"},{\"values\":[323],\"summary\":\"Rocky Mountain Subalpine-Montane Mesic Meadow\"},{\"values\":[324],\"summary\":\"Central Mixedgrass Prairie\"},{\"values\":[325],\"summary\":\"Northwestern Great Plains Mixedgrass Prairie\"},{\"values\":[326],\"summary\":\"Western Great Plains Foothill and Piedmont Grassland\"},{\"values\":[327],\"summary\":\"Western Great Plains Tallgrass Prairie\"},{\"values\":[328],\"summary\":\"Western Great Plains Sand Prairie\"},{\"values\":[329],\"summary\":\"Western Great Plains Sandhill Steppe\"},{\"values\":[330],\"summary\":\"Western Great Plains Mesquite Woodland and Shrubland\"},{\"values\":[331],\"summary\":\"Western Great Plains Shortgrass Prairie\"},{\"values\":[332],\"summary\":\"Arkansas Valley Prairie and Woodland\"},{\"values\":[333],\"summary\":\"Central Tallgrass Prairie\"},{\"values\":[334],\"summary\":\"North-Central Interior Oak Savanna\"},{\"values\":[335],\"summary\":\"North-Central Interior Sand and Gravel Tallgrass Prairie\"},{\"values\":[336],\"summary\":\"North-Central Oak Barrens\"},{\"values\":[337],\"summary\":\"Northern Tallgrass Prairie\"},{\"values\":[338],\"summary\":\"Southeastern Great Plains Tallgrass Prairie\"},{\"values\":[339],\"summary\":\"Texas Blackland Tallgrass Prairie\"},{\"values\":[340],\"summary\":\"Texas-Louisiana Coastal Prairie\"},{\"values\":[341],\"summary\":\"Central Appalachian Pine-Oak Rocky Woodland\"},{\"values\":[342],\"summary\":\"Southern Appalachian Grass and Shrub Bald\"},{\"values\":[343],\"summary\":\"Southern Appalachian Grass and Shrub Bald - Herbaceous Modifier\"},{\"values\":[344],\"summary\":\"Southern Appalachian Grass and Shrub Bald - Shrub Modifier\"},{\"values\":[345],\"summary\":\"Central Appalachian Alkaline Glade and Woodland\"},{\"values\":[346],\"summary\":\"Central Interior Highlands Calcareous Glade and Barrens\"},{\"values\":[347],\"summary\":\"Central Interior Highlands Dry Acidic Glade and Barrens\"},{\"values\":[348],\"summary\":\"Cumberland Sandstone Glade and Barrens\"},{\"values\":[349],\"summary\":\"Great Lakes Alvar\"},{\"values\":[350],\"summary\":\"Nashville Basin Limestone Glade\"},{\"values\":[351],\"summary\":\"Southern Ridge and Valley / Cumberland Dry Calcareous Forest\"},{\"values\":[352],\"summary\":\"Southern Piedmont Glade and Barrens\"},{\"values\":[353],\"summary\":\"East Gulf Coastal Plain Black Belt Calcareous Prairie and Woodland - Herbaceous Modifier\"},{\"values\":[354],\"summary\":\"East Gulf Coastal Plain Jackson Prairie and Woodland\"},{\"values\":[355],\"summary\":\"Eastern Highland Rim Prairie and Barrens - Dry Modifier\"},{\"values\":[356],\"summary\":\"Coahuilan Chaparral\"},{\"values\":[357],\"summary\":\"Madrean Oriental Chaparral\"},{\"values\":[358],\"summary\":\"Mogollon Chaparral\"},{\"values\":[359],\"summary\":\"Sonora-Mojave Semi-Desert Chaparral\"},{\"values\":[360],\"summary\":\"California Montane Woodland and Chaparral\"},{\"values\":[361],\"summary\":\"Great Basin Semi-Desert Chaparral\"},{\"values\":[362],\"summary\":\"Florida Dry Prairie\"},{\"values\":[363],\"summary\":\"Florida Peninsula Inland Scrub\"},{\"values\":[364],\"summary\":\"West Gulf Coastal Plain Catahoula Barrens\"},{\"values\":[365],\"summary\":\"West Gulf Coastal Plain Nepheline Syenite Glade\"},{\"values\":[366],\"summary\":\"East Gulf Coastal Plain Jackson Plain Dry Flatwoods - Open Understory Modifier\"},{\"values\":[367],\"summary\":\"West Gulf Coastal Plain Northern Calcareous Prairie\"},{\"values\":[368],\"summary\":\"West Gulf Coastal Plain Southern Calcareous Prairie\"},{\"values\":[369],\"summary\":\"Acadian-Appalachian Subalpine Woodland and Heath-Krummholz\"},{\"values\":[370],\"summary\":\"Atlantic and Gulf Coastal Plain Interdunal Wetland\"},{\"values\":[371],\"summary\":\"Atlantic Coastal Plain Southern Dune and Maritime Grassland\"},{\"values\":[372],\"summary\":\"Central and Upper Texas Coast Dune and Coastal Grassland\"},{\"values\":[373],\"summary\":\"East Gulf Coastal Plain Dune and Coastal Grassland\"},{\"values\":[374],\"summary\":\"Great Lakes Dune\"},{\"values\":[375],\"summary\":\"Northern Atlantic Coastal Plain Dune and Swale\"},{\"values\":[376],\"summary\":\"Northern Atlantic Coastal Plain Heathland and Grassland\"},{\"values\":[377],\"summary\":\"South Texas Dune and Coastal Grassland\"},{\"values\":[378],\"summary\":\"South Texas Sand Sheet Grassland\"},{\"values\":[379],\"summary\":\"Southwest Florida Dune and Coastal Grassland\"},{\"values\":[380],\"summary\":\"North Pacific Coastal Cliff and Bluff\"},{\"values\":[381],\"summary\":\"North Pacific Maritime Coastal Sand Dune and Strand\"},{\"values\":[382],\"summary\":\"Northern California Coastal Scrub\"},{\"values\":[383],\"summary\":\"Mediterranean California Coastal Bluff\"},{\"values\":[384],\"summary\":\"Mediterranean California Northern Coastal Dune\"},{\"values\":[385],\"summary\":\"Mediterranean California Southern Coastal Dune\"},{\"values\":[386],\"summary\":\"Atlantic Coastal Plain Northern Sandy Beach\"},{\"values\":[387],\"summary\":\"Atlantic Coastal Plain Sea Island Beach\"},{\"values\":[388],\"summary\":\"Atlantic Coastal Plain Southern Beach\"},{\"values\":[389],\"summary\":\"Florida Panhandle Beach Vegetation\"},{\"values\":[390],\"summary\":\"Louisiana Beach\"},{\"values\":[391],\"summary\":\"Northern Atlantic Coastal Plain Sandy Beach\"},{\"values\":[392],\"summary\":\"Texas Coastal Bend Beach\"},{\"values\":[393],\"summary\":\"Upper Texas Coast Beach\"},{\"values\":[394],\"summary\":\"0\"},{\"values\":[395],\"summary\":\"Mediterranean California Serpentine Fen\"},{\"values\":[396],\"summary\":\"Mediterranean California Subalpine-Montane Fen\"},{\"values\":[397],\"summary\":\"North Pacific Bog and Fen\"},{\"values\":[398],\"summary\":\"Rocky Mountain Subalpine-Montane Fen\"},{\"values\":[399],\"summary\":\"Atlantic Coastal Plain Peatland Pocosin\"},{\"values\":[400],\"summary\":\"Southern and Central Appalachian Bog and Fen\"},{\"values\":[401],\"summary\":\"Atlantic Coastal Plain Central Fresh-Oligohaline Tidal Marsh\"},{\"values\":[402],\"summary\":\"Atlantic Coastal Plain Embayed Region Tidal Freshwater Marsh\"},{\"values\":[403],\"summary\":\"Atlantic Coastal Plain Northern Fresh and Oligohaline Tidal Marsh\"},{\"values\":[404],\"summary\":\"Florida Big Bend Fresh-Oligohaline Tidal Marsh\"},{\"values\":[405],\"summary\":\"Atlantic Coastal Plain Depression Pondshore\"},{\"values\":[406],\"summary\":\"Atlantic Coastal Plain Large Natural Lakeshore\"},{\"values\":[407],\"summary\":\"Central Florida Herbaceous Pondshore\"},{\"values\":[408],\"summary\":\"Central Florida Herbaceous Seep\"},{\"values\":[409],\"summary\":\"East Gulf Coastal Plain Savanna and Wet Prairie\"},{\"values\":[410],\"summary\":\"East Gulf Coastal Plain Depression Pondshore\"},{\"values\":[411],\"summary\":\"Floridian Highlands Freshwater Marsh\"},{\"values\":[412],\"summary\":\"Southern Coastal Plain Herbaceous Seepage Bog\"},{\"values\":[413],\"summary\":\"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Clethra Modifier\"},{\"values\":[414],\"summary\":\"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Nupea Modifier\"},{\"values\":[415],\"summary\":\"Texas-Louisiana Coastal Prairie Slough\"},{\"values\":[416],\"summary\":\"Central Interior and Appalachian Shrub-Herbaceous Wetland Systems\"},{\"values\":[417],\"summary\":\"Great Lakes Coastal Marsh Systems\"},{\"values\":[418],\"summary\":\"0\"},{\"values\":[419],\"summary\":\"0\"},{\"values\":[420],\"summary\":\"Laurentian-Acadian Shrub-Herbaceous Wetland Systems\"},{\"values\":[421],\"summary\":\"0\"},{\"values\":[422],\"summary\":\"Eastern Great Plains Wet Meadow, Prairie and Marsh\"},{\"values\":[423],\"summary\":\"Great Lakes Wet-Mesic Lakeplain Prairie\"},{\"values\":[424],\"summary\":\"Great Plains Prairie Pothole\"},{\"values\":[425],\"summary\":\"Western Great Plains Closed Depression Wetland\"},{\"values\":[426],\"summary\":\"Western Great Plains Depressional Wetland Systems\"},{\"values\":[427],\"summary\":\"Western Great Plains Open Freshwater Depression Wetland\"},{\"values\":[428],\"summary\":\"Cumberland Riverscour\"},{\"values\":[429],\"summary\":\"Inter-Mountain Basins Interdunal Swale Wetland\"},{\"values\":[430],\"summary\":\"North Pacific Avalanche Chute Shrubland\"},{\"values\":[431],\"summary\":\"North Pacific Intertidal Freshwater Wetland\"},{\"values\":[432],\"summary\":\"Temperate Pacific Freshwater Emergent Marsh\"},{\"values\":[433],\"summary\":\"Temperate Pacific Freshwater Mudflat\"},{\"values\":[434],\"summary\":\"Columbia Plateau Vernal Pool\"},{\"values\":[435],\"summary\":\"Northern California Claypan Vernal Pool\"},{\"values\":[436],\"summary\":\"Northern Rocky Mountain Wooded Vernal Pool\"},{\"values\":[437],\"summary\":\"Columbia Plateau Silver Sagebrush Seasonally Flooded Shrub-Steppe\"},{\"values\":[438],\"summary\":\"Rocky Mountain Alpine-Montane Wet Meadow\"},{\"values\":[439],\"summary\":\"Rocky Mountain Subalpine-Montane Riparian Shrubland\"},{\"values\":[440],\"summary\":\"Temperate Pacific Montane Wet Meadow\"},{\"values\":[441],\"summary\":\"Willamette Valley Wet Prairie\"},{\"values\":[442],\"summary\":\"Chihuahuan-Sonoran Desert Bottomland and Swale Grassland\"},{\"values\":[443],\"summary\":\"North American Arid West Emergent Marsh\"},{\"values\":[444],\"summary\":\"North American Warm Desert Riparian Mesquite Bosque\"},{\"values\":[445],\"summary\":\"Western Great Plains Saline Depression Wetland\"},{\"values\":[446],\"summary\":\"Acadian Salt Marsh and Estuary Systems\"},{\"values\":[447],\"summary\":\"Atlantic Coastal Plain Central Salt and Brackish Tidal Marsh\"},{\"values\":[448],\"summary\":\"Atlantic Coastal Plain Embayed Region Tidal Salt and Brackish Marsh\"},{\"values\":[449],\"summary\":\"Atlantic Coastal Plain Indian River Lagoon Tidal Marsh\"},{\"values\":[450],\"summary\":\"Atlantic Coastal Plain Northern Tidal Salt Marsh\"},{\"values\":[451],\"summary\":\"Florida Big Bend Salt-Brackish Tidal Marsh\"},{\"values\":[452],\"summary\":\"Gulf and Atlantic Coastal Plain Tidal Marsh Systems\"},{\"values\":[453],\"summary\":\"Mississippi Sound Salt and Brackish Tidal Marsh\"},{\"values\":[454],\"summary\":\"Texas Saline Coastal Prairie\"},{\"values\":[455],\"summary\":\"Temperate Pacific Tidal Salt and Brackish Marsh\"},{\"values\":[456],\"summary\":\"Inter-Mountain Basins Alkaline Closed Depression\"},{\"values\":[457],\"summary\":\"Inter-Mountain Basins Greasewood Flat\"},{\"values\":[458],\"summary\":\"Inter-Mountain Basins Playa\"},{\"values\":[459],\"summary\":\"North American Warm Desert Playa\"},{\"values\":[460],\"summary\":\"Apacherian-Chihuahuan Mesquite Upland Scrub\"},{\"values\":[461],\"summary\":\"Apacherian-Chihuahuan Semi-Desert Grassland and Steppe\"},{\"values\":[462],\"summary\":\"Chihuahuan Creosotebush, Mixed Desert and Thorn Scrub\"},{\"values\":[463],\"summary\":\"Chihuahuan Gypsophilous Grassland and Steppe\"},{\"values\":[464],\"summary\":\"Chihuahuan Loamy Plains Desert Grassland\"},{\"values\":[465],\"summary\":\"Chihuahuan Mixed Desert and Thorn Scrub\"},{\"values\":[466],\"summary\":\"Chihuahuan Sandy Plains Semi-Desert Grassland\"},{\"values\":[467],\"summary\":\"Chihuahuan Stabilized Coppice Dune and Sand Flat Scrub\"},{\"values\":[468],\"summary\":\"Chihuahuan Succulent Desert Scrub\"},{\"values\":[469],\"summary\":\"Madrean Juniper Savanna\"},{\"values\":[470],\"summary\":\"Mojave Mid-Elevation Mixed Desert Scrub\"},{\"values\":[471],\"summary\":\"North American Warm Desert Active and Stabilized Dune\"},{\"values\":[472],\"summary\":\"Sonora-Mojave Creosotebush-White Bursage Desert Scrub\"},{\"values\":[473],\"summary\":\"Sonoran Mid-Elevation Desert Scrub\"},{\"values\":[474],\"summary\":\"Sonoran Paloverde-Mixed Cacti Desert Scrub\"},{\"values\":[475],\"summary\":\"Chihuahuan Mixed Salt Desert Scrub\"},{\"values\":[476],\"summary\":\"Sonora-Mojave Mixed Salt Desert Scrub\"},{\"values\":[477],\"summary\":\"North American Warm Desert Wash\"},{\"values\":[478],\"summary\":\"South Texas Lomas\"},{\"values\":[479],\"summary\":\"Tamaulipan Calcareous Thornscrub\"},{\"values\":[480],\"summary\":\"Tamaulipan Clay Grassland\"},{\"values\":[481],\"summary\":\"Tamaulipan Mesquite Upland Scrub\"},{\"values\":[482],\"summary\":\"Tamaulipan Mixed Deciduous Thornscrub\"},{\"values\":[483],\"summary\":\"Tamaulipan Savanna Grassland\"},{\"values\":[484],\"summary\":\"Inter-Mountain Basins Mat Saltbush Shrubland\"},{\"values\":[485],\"summary\":\"Inter-Mountain Basins Mixed Salt Desert Scrub\"},{\"values\":[486],\"summary\":\"Inter-Mountain Basins Wash\"},{\"values\":[487],\"summary\":\"Columbia Plateau Steppe and Grassland\"},{\"values\":[488],\"summary\":\"Great Basin Xeric Mixed Sagebrush Shrubland\"},{\"values\":[489],\"summary\":\"Inter-Mountain Basins Big Sagebrush Shrubland\"},{\"values\":[490],\"summary\":\"Inter-Mountain Basins Big Sagebrush Steppe\"},{\"values\":[491],\"summary\":\"Inter-Mountain Basins Montane Sagebrush Steppe\"},{\"values\":[492],\"summary\":\"Colorado Plateau Mixed Low Sagebrush Shrubland\"},{\"values\":[493],\"summary\":\"Columbia Plateau Low Sagebrush Steppe\"},{\"values\":[494],\"summary\":\"Columbia Plateau Scabland Shrubland\"},{\"values\":[495],\"summary\":\"Wyoming Basins Dwarf Sagebrush Shrubland and Steppe\"},{\"values\":[496],\"summary\":\"Colorado Plateau Blackbrush-Mormon-tea Shrubland\"},{\"values\":[497],\"summary\":\"Inter-Mountain Basins Semi-Desert Grassland\"},{\"values\":[498],\"summary\":\"Inter-Mountain Basins Semi-Desert Shrub Steppe\"},{\"values\":[499],\"summary\":\"Southern Colorado Plateau Sand Shrubland\"},{\"values\":[500],\"summary\":\"Acadian-Appalachian Alpine Tundra\"},{\"values\":[501],\"summary\":\"Rocky Mountain Alpine Dwarf-Shrubland\"},{\"values\":[502],\"summary\":\"Rocky Mountain Alpine Fell-Field\"},{\"values\":[503],\"summary\":\"Rocky Mountain Alpine Turf\"},{\"values\":[504],\"summary\":\"Mediterranean California Alpine Dry Tundra\"},{\"values\":[505],\"summary\":\"Mediterranean California Alpine Fell-Field\"},{\"values\":[506],\"summary\":\"North Pacific Dry and Mesic Alpine Dwarf-Shrubland, Fell-field and Meadow\"},{\"values\":[507],\"summary\":\"Rocky Mountain Alpine Tundra/Fell-field/Dwarf-shrub Map Unit\"},{\"values\":[508],\"summary\":\"Temperate Pacific Intertidal Mudflat\"},{\"values\":[509],\"summary\":\"Mediterranean California Eelgrass Bed\"},{\"values\":[510],\"summary\":\"North Pacific Maritime Eelgrass Bed\"},{\"values\":[511],\"summary\":\"South-Central Interior Large Floodplain - Herbaceous Modifier\"},{\"values\":[512],\"summary\":\"East Gulf Coastal Plain Large River Floodplain Forest - Herbaceous Modifier\"},{\"values\":[513],\"summary\":\"Temperate Pacific Freshwater Aquatic Bed\"},{\"values\":[514],\"summary\":\"Central California Coast Ranges Cliff and Canyon\"},{\"values\":[515],\"summary\":\"Mediterranean California Serpentine Barrens\"},{\"values\":[516],\"summary\":\"Southern California Coast Ranges Cliff and Canyon\"},{\"values\":[517],\"summary\":\"Central Interior Acidic Cliff and Talus\"},{\"values\":[518],\"summary\":\"Central Interior Calcareous Cliff and Talus\"},{\"values\":[519],\"summary\":\"East Gulf Coastal Plain Dry Chalk Bluff\"},{\"values\":[520],\"summary\":\"North-Central Appalachian Acidic Cliff and Talus\"},{\"values\":[521],\"summary\":\"North-Central Appalachian Circumneutral Cliff and Talus\"},{\"values\":[522],\"summary\":\"Southern Appalachian Montane Cliff\"},{\"values\":[523],\"summary\":\"Southern Interior Acid Cliff\"},{\"values\":[524],\"summary\":\"Southern Interior Calcareous Cliff\"},{\"values\":[525],\"summary\":\"Southern Piedmont Cliff\"},{\"values\":[526],\"summary\":\"Southern Appalachian Granitic Dome\"},{\"values\":[527],\"summary\":\"Southern Appalachian Rocky Summit\"},{\"values\":[528],\"summary\":\"Southern Piedmont Granite Flatrock\"},{\"values\":[529],\"summary\":\"Rocky Mountain Cliff, Canyon and Massive Bedrock\"},{\"values\":[530],\"summary\":\"Klamath-Siskiyou Cliff and Outcrop\"},{\"values\":[531],\"summary\":\"North Pacific Montane Massive Bedrock, Cliff and Talus\"},{\"values\":[532],\"summary\":\"North Pacific Serpentine Barren\"},{\"values\":[533],\"summary\":\"North Pacific Active Volcanic Rock and Cinder Land\"},{\"values\":[534],\"summary\":\"Sierra Nevada Cliff and Canyon\"},{\"values\":[535],\"summary\":\"Western Great Plains Badland\"},{\"values\":[536],\"summary\":\"Southwestern Great Plains Canyon\"},{\"values\":[537],\"summary\":\"Western Great Plains Cliff and Outcrop\"},{\"values\":[538],\"summary\":\"North American Warm Desert Badland\"},{\"values\":[539],\"summary\":\"North American Warm Desert Bedrock Cliff and Outcrop\"},{\"values\":[540],\"summary\":\"North American Warm Desert Pavement\"},{\"values\":[541],\"summary\":\"North American Warm Desert Volcanic Rockland\"},{\"values\":[542],\"summary\":\"Colorado Plateau Mixed Bedrock Canyon and Tableland\"},{\"values\":[543],\"summary\":\"Columbia Plateau Ash and Tuff Badland\"},{\"values\":[544],\"summary\":\"Geysers and Hot Springs\"},{\"values\":[545],\"summary\":\"Inter-Mountain Basins Active and Stabilized Dune\"},{\"values\":[546],\"summary\":\"Inter-Mountain Basins Cliff and Canyon\"},{\"values\":[547],\"summary\":\"Inter-Mountain Basins Shale Badland\"},{\"values\":[548],\"summary\":\"Inter-Mountain Basins Volcanic Rock and Cinder Land\"},{\"values\":[549],\"summary\":\"Rocky Mountain Alpine Bedrock and Scree\"},{\"values\":[550],\"summary\":\"Mediterranean California Alpine Bedrock and Scree\"},{\"values\":[551],\"summary\":\"North Pacific Alpine and Subalpine Bedrock and Scree\"},{\"values\":[552],\"summary\":\"Unconsolidated Shore\"},{\"values\":[553],\"summary\":\"Undifferentiated Barren Land\"},{\"values\":[554],\"summary\":\"North American Alpine Ice Field\"},{\"values\":[555],\"summary\":\"Orchards Vineyards and Other High Structure Agriculture\"},{\"values\":[556],\"summary\":\"Cultivated Cropland\"},{\"values\":[557],\"summary\":\"Pasture/Hay\"},{\"values\":[558],\"summary\":\"Introduced Upland Vegetation - Annual Grassland\"},{\"values\":[559],\"summary\":\"Introduced Upland Vegetation - Perennial Grassland and Forbland\"},{\"values\":[560],\"summary\":\"Modified/Managed Southern Tall Grassland\"},{\"values\":[561],\"summary\":\"Introduced Upland Vegetation - Shrub\"},{\"values\":[562],\"summary\":\"Introduced Riparian and Wetland Vegetation\"},{\"values\":[563],\"summary\":\"Introduced Upland Vegetation - Treed\"},{\"values\":[564],\"summary\":\"0\"},{\"values\":[565],\"summary\":\"Disturbed, Non-specific\"},{\"values\":[566],\"summary\":\"Recently Logged Areas\"},{\"values\":[567],\"summary\":\"Harvested Forest - Grass/Forb Regeneration\"},{\"values\":[568],\"summary\":\"Harvested Forest-Shrub Regeneration\"},{\"values\":[569],\"summary\":\"Harvested Forest - Northwestern Conifer Regeneration\"},{\"values\":[570],\"summary\":\"Recently Burned\"},{\"values\":[571],\"summary\":\"Recently burned grassland\"},{\"values\":[572],\"summary\":\"Recently burned shrubland\"},{\"values\":[573],\"summary\":\"Recently burned forest\"},{\"values\":[574],\"summary\":\"Disturbed/Successional - Grass/Forb Regeneration\"},{\"values\":[575],\"summary\":\"Disturbed/Successional - Shrub Regeneration\"},{\"values\":[576],\"summary\":\"Disturbed/Successional - Recently Chained Pinyon-Juniper\"},{\"values\":[577],\"summary\":\"Open Water (Aquaculture)\"},{\"values\":[578],\"summary\":\"Open Water (Brackish/Salt)\"},{\"values\":[579],\"summary\":\"Open Water (Fresh)\"},{\"values\":[580],\"summary\":\"Quarries, Mines, Gravel Pits and Oil Wells\"},{\"values\":[581],\"summary\":\"Developed, Open Space\"},{\"values\":[582],\"summary\":\"Developed, Low Intensity\"},{\"values\":[583],\"summary\":\"Developed, Medium Intensity\"},{\"values\":[584],\"summary\":\"Developed, High Intensity\"}]}},\"stac_version\":\"1.0.0\",\"msft:container\":\"usgs-gap\",\"stac_extensions\":[\"https://stac-extensions.github.io/label/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"U.S.-wide land cover information for 2011\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-17A2HGF-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/972/MOD17_User_Guide_V61.pdf\",\"title\":\"MOD17 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD17A2HGF\",\"title\":\"MOD17A2HGF file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD17A2HGF\",\"title\":\"MYD17A2HGF file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD17A2HGF.061\",\"title\":\"LP DAAC - MOD17A2HGF\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD17A2HGF.061\",\"title\":\"LP DAAC - MYD17A2HGF\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-17A2HGF-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Gross Primary Productivity 8-Day Gap-Filled\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-17A2HGF-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Gross Primary Productivity 8-Day Gap-Filled thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-17A2HGF-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Vegetation\",\"Global\",\"MOD17A2HGF\",\"MYD17A2HGF\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Version 6.1 Gross Primary Productivity (GPP) product is a cumulative 8-day composite of values with 500 meter (m) pixel size based on the radiation use efficiency concept that can be potentially used as inputs to data models to calculate terrestrial energy, carbon, water cycle processes, and biogeochemistry of vegetation. The Moderate Resolution Imaging Spectroradiometer (MODIS) data product includes information about GPP and Net Photosynthesis (PSN). The PSN band values are the GPP less the Maintenance Respiration (MR). The data product also contains a PSN Quality Control (QC) layer. The quality layer contains quality information for both the GPP and the PSN. This product will be generated at the end of each year when the entire yearly 8-day 15A2H is available. Hence, the gap-filled A2HGF is the improved 17, which has cleaned the poor-quality inputs from 8-day Leaf Area Index and Fraction of Photosynthetically Active Radiation (FPAR/LAI) based on the Quality Control (QC) label for every pixel. If any LAI/FPAR pixel did not meet the quality screening criteria, its value is determined through linear interpolation. However, users cannot get this product in near-real time because it will be generated only at the end of a given year.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"Gpp_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Gross Primary Productivity\",\"raster:bands\":[{\"unit\":\"kg C/m^2\",\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"PsnNet_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Net Photosynthesis\",\"raster:bands\":[{\"unit\":\"kg C/m^2\",\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"Psn_QC_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality control indicators\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD17A2HGF.061\",\"citation\":\"Running, S., & Zhao, M. (2021). MODIS/Terra Gross Primary Productivity Gap-Filled 8-Day L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD17A2HGF.061\"},{\"doi\":\"10.5067/MODIS/MYD17A2HGF.061\",\"citation\":\"Running, S., & Zhao, M. (2021). MODIS/Aqua Gross Primary Productivity Gap-Filled 8-Day L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD17A2HGF.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Gross Primary Productivity 8-Day Gap-Filled\",\"msft:region\":\"westeurope\"},{\"id\":\"planet-nicfi-visual\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"license\",\"href\":\"https://assets.planet.com/docs/Planet_ParticipantLicenseAgreement_NICFI.pdf\",\"type\":\"application/pdf\",\"title\":\"Participant License Agreement.\"},{\"rel\":\"documentation\",\"href\":\"https://assets.planet.com/docs/NICFI_UserGuidesFAQ.pdf\",\"type\":\"application/pdf\",\"title\":\"Participant License Agreement.\"},{\"rel\":\"documentation\",\"href\":\"https://www.planet.com/nicfi/\",\"type\":\"text/html\",\"title\":\"NICFI Program - Satellite Imagery and Monitoring | Planet\"},{\"rel\":\"documentation\",\"href\":\"https://developers.planet.com/nicfi/\",\"type\":\"text/html\",\"title\":\"NICFI Program Resource Center\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/planet-nicfi-visual\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Planet-NICFI Basemaps (Visual)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/planet-nicfi-visual-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/planet-nicfi-visual.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-34.161818157002,180.0,30.145127179625]]},\"temporal\":{\"interval\":[[\"2015-12-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Planet\",\"NICFI\",\"Satellite\",\"Tropics\",\"Imagery\"],\"providers\":[{\"url\":\"http://planet.com\",\"name\":\"Planet\",\"roles\":[\"processor\",\"producer\",\"licensor\"],\"description\":\"Contact Planet at [planet.com/contact-sales](https://www.planet.com/contact-sales/)\"},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[4.77],\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\",\"description\":\"visible red\"},{\"name\":\"Green\",\"common_name\":\"green\",\"description\":\"visible green\"},{\"name\":\"Blue\",\"common_name\":\"blue\",\"description\":\"visible blue\"}],\"planet-nicfi:cadence\":[\"biannual\",\"monthly\"],\"planet-nicfi:percent_covered\":{\"maximum\":100,\"minimum\":0}},\"description\":\"*Note: Assets in this collection are only available to winners of the [GEO-Microsoft Planetary Computer RFP](https://www.earthobservations.org/geo_blog_obs.php?id=528). Others wishing to use the data can sign up and access it from Planet at [https://www.planet.com/nicfi/](https://www.planet.com/nicfi/) and email [planetarycomputer@microsoft.com](mailto:planetarycomputer@microsoft.com).*\\n\\nThrough Norway\u2019s International Climate & Forests Initiative (NICFI), users can access Planet\u2019s high-resolution, analysis-ready mosaics of the world\u2019s tropics in order to help reduce and reverse the loss of tropical forests, combat climate change, conserve biodiversity, and facilitate sustainable development.\\n\\nIn support of NICFI\u2019s mission, you can use this data for a number of projects including, but not limited to:\\n\\n* Advance scientific research about the world\u2019s tropical forests and the critical services they provide.\\n* Implement and improve policies for sustainable forest management and land use in developing tropical forest countries and jurisdictions.\\n* Increase transparency and accountability in the tropics.\\n* Protect and improve the rights of indigenous peoples and local communities in tropical forest countries.\\n* Innovate solutions towards reducing pressure on forests from global commodities and financial markets.\\n* In short, the primary purpose of the NICFI Program is to support reducing and reversing the loss of tropical forests, contributing to combating climate change, conserving biodiversity, contributing to forest regrowth, restoration, and enhancement, and facilitating sustainable development, all of which must be Non-Commercial Use.\\n\\nTo learn how more about the NICFI program, streaming and downloading basemaps please read the [NICFI Data Program User Guide](https://assets.planet.com/docs/NICFI_UserGuidesFAQ.pdf).\\n\\nThis collection contains both monthly and biannual mosaics. Biannual mosaics are available from December 2015 - August 2020. Monthly mosaics are available from September 2020. The STAC items include a `planet-nicfi:cadence` field indicating the type of mosaic.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"description\":\"a 'true-colour' representation of spatially accurate data with minimized haze, illumination, and topographic effects\"},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"planet-nicfi\",\"msft:container\":\"nicfi\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"planet\",\"msft:short_description\":\"Planet's high-resolution, analysis-ready mosaics of the world's tropics\",\"msft:region\":\"westeurope\"},{\"id\":\"gbif\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"license\",\"href\":\"https://www.gbif.org/terms\",\"type\":\"text/html\",\"title\":\"GBIF Terms of Use\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/gbif\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Global Biodiversity Information Facility (GBIF)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gbif.png\",\"type\":\"image/png\",\"title\":\"Forest Inventory and Analysis\"},\"geoparquet-items\":{\"href\":\"abfs://items/gbif.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-13T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"GBIF\",\"Biodiversity\",\"Species\"],\"providers\":[{\"url\":\"https://www.gbif.org/\",\"name\":\"Global Biodiversity Information Facility\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"description\":\"The [Global Biodiversity Information Facility](https://www.gbif.org) (GBIF) is an international network and data infrastructure funded by the world's governments, providing global data that document the occurrence of species. GBIF currently integrates datasets documenting over 1.6 billion species occurrences.\\n\\nThe GBIF occurrence dataset combines data from a wide array of sources, including specimen-related data from natural history museums, observations from citizen science networks, and automated environmental surveys. While these data are constantly changing at [GBIF.org](https://www.gbif.org), periodic snapshots are taken and made available here. \\n\\nData are stored in [Parquet](https://parquet.apache.org/) format; the Parquet file schema is described below. Most field names correspond to [terms from the Darwin Core standard](https://dwc.tdwg.org/terms/), and have been interpreted by GBIF's systems to align taxonomy, location, dates, etc. Additional information may be retrieved using the [GBIF API](https://www.gbif.org/developer/summary).\\n\\nPlease refer to the GBIF [citation guidelines](https://www.gbif.org/citation-guidelines) for information about how to cite GBIF data in publications.. For analyses using the whole dataset, please use the following citation:\\n\\n> GBIF.org ([Date]) GBIF Occurrence Data [DOI of dataset]\\n\\nFor analyses where data are significantly filtered, please track the datasetKeys used and use a \\\"[derived dataset](https://www.gbif.org/citation-guidelines#derivedDatasets)\\\" record for citing the data.\\n\\nThe [GBIF data blog](https://data-blog.gbif.org/categories/gbif/) contains a number of articles that can help you analyze GBIF data.\\n\",\"item_assets\":{\"data\":{\"type\":\"application/x-parquet\",\"roles\":[\"data\"],\"title\":\"Dataset root\",\"table:storage_options\":{\"account_name\":\"ai4edataeuwest\"}}},\"stac_version\":\"1.0.0\",\"table:columns\":[{\"name\":\"gbifid\",\"type\":\"int64\",\"description\":\"GBIF's identifier for the occurrence\"},{\"name\":\"datasetkey\",\"type\":\"byte_array\",\"description\":\"GBIF's UUID for the [dataset](https://www.gbif.org/developer/registry#datasets) containing this occurrence\"},{\"name\":\"occurrenceid\",\"type\":\"byte_array\",\"description\":\"See [dwc:occurrenceID](https://dwc.tdwg.org/terms/#occurrenceID).\"},{\"name\":\"kingdom\",\"type\":\"byte_array\",\"description\":\"See [dwc:kingdom](https://dwc.tdwg.org/terms/#kingdom). This field has been aligned with the [GBIF backbone taxonomy](https://doi.org/10.15468/39omei).\"},{\"name\":\"phylum\",\"type\":\"byte_array\",\"description\":\"See [dwc:phylum](https://dwc.tdwg.org/terms/#phylum). This field has been aligned with the GBIF backbone taxonomy.\"},{\"name\":\"class\",\"type\":\"byte_array\",\"description\":\"See [dwc:class](https://dwc.tdwg.org/terms/#class). This field has been aligned with the GBIF backbone taxonomy.\"},{\"name\":\"order\",\"type\":\"byte_array\",\"description\":\"See [dwc:order](https://dwc.tdwg.org/terms/#order). This field has been aligned with the GBIF backbone taxonomy.\"},{\"name\":\"family\",\"type\":\"byte_array\",\"description\":\"See [dwc:family](https://dwc.tdwg.org/terms/#family). This field has been aligned with the GBIF backbone taxonomy.\"},{\"name\":\"genus\",\"type\":\"byte_array\",\"description\":\"See [dwc:genus](https://dwc.tdwg.org/terms/#genus). This field has been aligned with the GBIF backbone taxonomy.\"},{\"name\":\"species\",\"type\":\"byte_array\",\"description\":\"See [dwc:species](https://dwc.tdwg.org/terms/#species). This field has been aligned with the GBIF backbone taxonomy.\"},{\"name\":\"infraspecificepithet\",\"type\":\"byte_array\",\"description\":\"See [dwc:infraspecificEpithet](https://dwc.tdwg.org/terms/#infraspecificEpithet). \ This field has been aligned with the GBIF backbone taxonomy.\"},{\"name\":\"taxonrank\",\"type\":\"byte_array\",\"description\":\"See [dwc:taxonRank](https://dwc.tdwg.org/terms/#taxonRank). This field has been aligned with the GBIF backbone taxonomy.\"},{\"name\":\"scientificname\",\"type\":\"byte_array\",\"description\":\"See [dwc:scientificName](https://dwc.tdwg.org/terms/#scientificName). This field has been aligned with the GBIF backbone taxonomy.\"},{\"name\":\"verbatimscientificname\",\"type\":\"byte_array\",\"description\":\"The scientific name as provided by the data publisher\"},{\"name\":\"verbatimscientificnameauthorship\",\"type\":\"byte_array\",\"description\":\"The scientific name authorship provided by the data publisher.\"},{\"name\":\"countrycode\",\"type\":\"byte_array\",\"description\":\"See [dwc:countryCode](https://dwc.tdwg.org/terms/#countryCode). GBIF's interpretation has set this to an ISO 3166-2 code.\"},{\"name\":\"locality\",\"type\":\"byte_array\",\"description\":\"See [dwc:locality](https://dwc.tdwg.org/terms/#locality).\"},{\"name\":\"stateprovince\",\"type\":\"byte_array\",\"description\":\"See [dwc:stateProvince](https://dwc.tdwg.org/terms/#stateProvince).\"},{\"name\":\"occurrencestatus\",\"type\":\"byte_array\",\"description\":\"See [dwc:occurrenceStatus](https://dwc.tdwg.org/terms/#occurrenceStatus). Either the value `PRESENT` or `ABSENT`. **Many users will wish to filter for `PRESENT` data.**\"},{\"name\":\"individualcount\",\"type\":\"int32\",\"description\":\"See [dwc:individualCount](https://dwc.tdwg.org/terms/#individualCount).\"},{\"name\":\"publishingorgkey\",\"type\":\"byte_array\",\"description\":\"GBIF's UUID for the [organization](https://www.gbif.org/developer/registry#organizations) publishing this occurrence.\"},{\"name\":\"decimallatitude\",\"type\":\"double\",\"description\":\"See [dwc:decimalLatitude](https://dwc.tdwg.org/terms/#decimalLatitude). GBIF's interpretation has normalized this to a WGS84 coordinate.\"},{\"name\":\"decimallongitude\",\"type\":\"double\",\"description\":\"See [dwc:decimalLongitude](https://dwc.tdwg.org/terms/#decimalLongitude). GBIF's interpretation has normalized this to a WGS84 coordinate.\"},{\"name\":\"coordinateuncertaintyinmeters\",\"type\":\"double\",\"description\":\"See [dwc:coordinateUncertaintyInMeters](https://dwc.tdwg.org/terms/#coordinateUncertaintyInMeters).\"},{\"name\":\"coordinateprecision\",\"type\":\"double\",\"description\":\"See [dwc:coordinatePrecision](https://dwc.tdwg.org/terms/#coordinatePrecision).\"},{\"name\":\"elevation\",\"type\":\"double\",\"description\":\"See [dwc:elevation](https://dwc.tdwg.org/terms/#elevation). If provided by the data publisher, GBIF's interpretation has normalized this value to metres.\"},{\"name\":\"elevationaccuracy\",\"type\":\"double\",\"description\":\"See [dwc:elevationAccuracy](https://dwc.tdwg.org/terms/#elevationAccuracy). If provided by the data publisher, GBIF's interpretation has normalized this value to metres.\"},{\"name\":\"depth\",\"type\":\"double\",\"description\":\"See [dwc:depth](https://dwc.tdwg.org/terms/#depth). If provided by the data publisher, GBIF's interpretation has normalized this value to metres.\"},{\"name\":\"depthaccuracy\",\"type\":\"double\",\"description\":\"See [dwc:depthAccuracy](https://dwc.tdwg.org/terms/#depthAccuracy). If provided by the data publisher, GBIF's interpretation has normalized this value to metres.\"},{\"name\":\"eventdate\",\"type\":\"byte_array\",\"description\":\"See [dwc:eventDate](https://dwc.tdwg.org/terms/#eventDate). GBIF's interpretation has normalized this value to an ISO 8601 date with a local time.\"},{\"name\":\"day\",\"type\":\"int32\",\"description\":\"See [dwc:day](https://dwc.tdwg.org/terms/#day).\"},{\"name\":\"month\",\"type\":\"int32\",\"description\":\"See [dwc:month](https://dwc.tdwg.org/terms/#month).\"},{\"name\":\"year\",\"type\":\"int32\",\"description\":\"See [dwc:year](https://dwc.tdwg.org/terms/#year).\"},{\"name\":\"taxonkey\",\"type\":\"int32\",\"description\":\"The numeric identifier for the [taxon](https://www.gbif.org/developer/species#nameUsages) in GBIF's backbone taxonomy corresponding to `scientificname`.\"},{\"name\":\"specieskey\",\"type\":\"int32\",\"description\":\"The numeric identifier for the taxon in GBIF's backbone taxonomy corresponding to `species`.\"},{\"name\":\"basisofrecord\",\"type\":\"byte_array\",\"description\":\"See [dwc:basisOfRecord](https://dwc.tdwg.org/terms/#basisOfRecord). One of `PRESERVED_SPECIMEN`, `FOSSIL_SPECIMEN`, `LIVING_SPECIMEN`, `OBSERVATION`, `HUMAN_OBSERVATION`, `MACHINE_OBSERVATION`, `MATERIAL_SAMPLE`, `LITERATURE`, `UNKNOWN`.\"},{\"name\":\"institutioncode\",\"type\":\"byte_array\",\"description\":\"See [dwc:institutionCode](https://dwc.tdwg.org/terms/#institutionCode).\"},{\"name\":\"collectioncode\",\"type\":\"byte_array\",\"description\":\"See [dwc:collectionCode](https://dwc.tdwg.org/terms/#collectionCode).\"},{\"name\":\"catalognumber\",\"type\":\"byte_array\",\"description\":\"See [dwc:catalogNumber](https://dwc.tdwg.org/terms/#catalogNumber).\"},{\"name\":\"recordnumber\",\"type\":\"byte_array\",\"description\":\"See [dwc:recordNumber](https://dwc.tdwg.org/terms/#recordNumber).\"},{\"name\":\"identifiedby\",\"type\":\"byte_array\",\"description\":\"See [dwc:identifiedBy](https://dwc.tdwg.org/terms/#identifiedBy).\"},{\"name\":\"dateidentified\",\"type\":\"byte_array\",\"description\":\"See [dwc:dateIdentified](https://dwc.tdwg.org/terms/#dateIdentified). An ISO 8601 date.\"},{\"name\":\"license\",\"type\":\"byte_array\",\"description\":\"See [dwc:license](https://dwc.tdwg.org/terms/#license). Either [`CC0_1_0`](https://creativecommons.org/publicdomain/zero/1.0/) or [`CC_BY_4_0`](https://creativecommons.org/licenses/by/4.0/). `CC_BY_NC_4_0` records are not present in this snapshot.\"},{\"name\":\"rightsholder\",\"type\":\"byte_array\",\"description\":\"See [dwc:rightsHolder](https://dwc.tdwg.org/terms/#rightsHolder).\"},{\"name\":\"recordedby\",\"type\":\"byte_array\",\"description\":\"See [dwc:recordedBy](https://dwc.tdwg.org/terms/#recordedBy).\"},{\"name\":\"typestatus\",\"type\":\"byte_array\",\"description\":\"See [dwc:typeStatus](https://dwc.tdwg.org/terms/#typeStatus).\"},{\"name\":\"establishmentmeans\",\"type\":\"byte_array\",\"description\":\"See [dwc:establishmentMeans](https://dwc.tdwg.org/terms/#establishmentMeans).\"},{\"name\":\"lastinterpreted\",\"type\":\"byte_array\",\"description\":\"The ISO 8601 date when the record was last processed by GBIF. Data are reprocessed for several reasons, including changes to the backbone taxonomy, so this date is not necessarily the date the occurrence record last changed.\"},{\"name\":\"mediatype\",\"type\":\"byte_array\",\"description\":\"See [dwc:mediaType](https://dwc.tdwg.org/terms/#mediaType). May contain `StillImage`, `MovingImage` or `Sound` (from [enumeration](http://api.gbif.org/v1/enumeration/basic/MediaType), detailing whether the occurrence has this media available.\"},{\"name\":\"issue\",\"type\":\"byte_array\",\"description\":\"A list of [issues](https://gbif.github.io/gbif-api/apidocs/org/gbif/api/vocabulary/OccurrenceIssue.html) encountered by GBIF in processing this record. More details are available on these issues and flags in [this blog post](https://data-blog.gbif.org/post/issues-and-flags/).\"}],\"msft:container\":\"gbif\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Global biodiversity observation records, documenting over 1.6 billion species occurrences\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-17A3HGF-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/972/MOD17_User_Guide_V61.pdf\",\"title\":\"MOD17 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD17A3HGF\",\"title\":\"MOD17A3HGF file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD17A3HGF\",\"title\":\"MYD17A3HGF file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD17A3HGF.061\",\"title\":\"LP DAAC - MOD17A3HGF\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD17A3HGF.061\",\"title\":\"LP DAAC - MYD17A3HGF\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-17A3HGF-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Net Primary Production Yearly Gap-Filled\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-17A3HGF-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Net Primary Production Yearly Gap-Filled thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-17A3HGF-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Vegetation\",\"Global\",\"MOD17A3HGF\",\"MYD17A3HGF\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Version 6.1 product provides information about annual Net Primary Production (NPP) at 500 meter (m) pixel resolution. Annual Moderate Resolution Imaging Spectroradiometer (MODIS) NPP is derived from the sum of all 8-day Net Photosynthesis (PSN) products (MOD17A2H) from the given year. The PSN value is the difference of the Gross Primary Productivity (GPP) and the Maintenance Respiration (MR). The product will be generated at the end of each year when the entire yearly 8-day 15A2H is available. Hence, the gap-filled product is the improved 17, which has cleaned the poor-quality inputs from 8-day Leaf Area Index and Fraction of Photosynthetically Active Radiation (LAI/FPAR) based on the Quality Control (QC) label for every pixel. If any LAI/FPAR pixel did not meet the quality screening criteria, its value is determined through linear interpolation. However, users cannot get this product in near-real time because it will be generated only at the end of a given year.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"Gpp_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Gross Primary Productivity\",\"raster:bands\":[{\"unit\":\"kg C/m^2\",\"scale\":0.0001,\"data_type\":\"uint16\",\"spatial_resolution\":500}]},\"Npp_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Net Primary Productivity\",\"raster:bands\":[{\"unit\":\"kg C/m^2\",\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"Npp_QC_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality control\",\"raster:bands\":[{\"unit\":\"Percent\",\"data_type\":\"uint8\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD17A3HGF.061\",\"citation\":\"Running, S., & Zhao, M. (2021). MODIS/Terra Net Primary Production Gap-Filled Yearly L4 Global 500 m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD17A3HGF.061\"},{\"doi\":\"10.5067/MODIS/MYD17A3HGF.061\",\"citation\":\"Running, S., & Zhao, M. (2021). MODIS/Aqua Net Primary Production Gap-Filled Yearly L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD17A3HGF.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Net Primary Production Yearly Gap-Filled\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-09A1-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/925/MOD09_User_Guide_V61.pdf\",\"title\":\"MOD09 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD09A1\",\"title\":\"MOD09A1 file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD09A1\",\"title\":\"MYD09A1 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD09A1.061\",\"title\":\"LP DAAC - MOD09A1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD09A1.061\",\"title\":\"LP DAAC - MYD09A1\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-09A1-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Surface Reflectance 8-Day (500m)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-09A1-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Surface Reflectance 8-Day (500m) thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-09A1-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Imagery\",\"Global\",\"Reflectance\",\"MOD09A1\",\"MYD09A1\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Moderate Resolution Imaging Spectroradiometer (MODIS) 09A1 Version 6.1 product provides an estimate of the surface spectral reflectance of MODIS Bands 1 through 7 corrected for atmospheric conditions such as gasses, aerosols, and Rayleigh scattering. Along with the seven 500 meter (m) reflectance bands are two quality layers and four observation bands. For each pixel, a value is selected from all the acquisitions within the 8-day composite period. The criteria for the pixel choice include cloud and solar zenith. When several acquisitions meet the criteria the pixel with the minimum channel 3 (blue) value is used.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"sur_refl_b01\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Surface Reflectance Band 1 (620-670 nm)\",\"eo:bands\":[{\"name\":\"sur_refl_b01\",\"common_name\":\"red\",\"center_wavelength\":0.645,\"full_width_half_max\":0.5}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"sur_refl_b02\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Surface Reflectance Band 2 (841-876 nm)\",\"eo:bands\":[{\"name\":\"sur_refl_b02\",\"common_name\":\"nir08\",\"center_wavelength\":0.8585,\"full_width_half_max\":0.35}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"sur_refl_b03\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Surface Reflectance Band 3 (459-479 nm)\",\"eo:bands\":[{\"name\":\"sur_refl_b03\",\"common_name\":\"blue\",\"center_wavelength\":0.469,\"full_width_half_max\":0.2}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"sur_refl_b04\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Surface Reflectance Band 4 (545-565 nm)\",\"eo:bands\":[{\"name\":\"sur_refl_b04\",\"common_name\":\"green\",\"center_wavelength\":0.555,\"full_width_half_max\":0.2}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"sur_refl_b05\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Surface Reflectance Band 5 (1230-1250 nm)\",\"eo:bands\":[{\"name\":\"sur_refl_b05\",\"common_name\":\"lwir12\",\"center_wavelength\":1.24,\"full_width_half_max\":0.2}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"sur_refl_b06\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Surface Reflectance Band 6 (1628-1652 nm)\",\"eo:bands\":[{\"name\":\"sur_refl_b06\",\"common_name\":\"swir16\",\"center_wavelength\":1.64,\"full_width_half_max\":0.24}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"sur_refl_b07\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Surface Reflectance Band 7 (2105-2155 nm)\",\"eo:bands\":[{\"name\":\"sur_refl_b07\",\"common_name\":\"swir22\",\"center_wavelength\":2.13,\"full_width_half_max\":0.5}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"sur_refl_raz\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"MODIS relative azimuth angle\",\"raster:bands\":[{\"unit\":\"Degree\",\"scale\":0.01,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"sur_refl_szen\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"MODIS solar zenith angle\",\"raster:bands\":[{\"unit\":\"Degree\",\"scale\":0.01,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"sur_refl_vzen\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"MODIS view zenith angle\",\"raster:bands\":[{\"unit\":\"Degree\",\"scale\":0.01,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"sur_refl_qc_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface reflectance 500m band quality control flags\",\"raster:bands\":[{\"data_type\":\"uint32\",\"spatial_resolution\":500}]},\"sur_refl_state_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface reflectance 500m state flags\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":500}]},\"sur_refl_day_of_year\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Day of the year for the pixel\",\"raster:bands\":[{\"unit\":\"Julian Day\",\"data_type\":\"uint16\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD09A1.061\",\"citation\":\"Vermote, E. (2021). MODIS/Terra Surface Reflectance 8-Day L3 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD09A1.061\"},{\"doi\":\"10.5067/MODIS/MYD09A1.061\",\"citation\":\"Vermote, E. (2021). MODIS/Aqua Surface Reflectance 8-Day L3 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD09A1.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Surface Reflectance 8-Day (500m)\",\"msft:region\":\"westeurope\"},{\"id\":\"alos-dem\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"license\",\"href\":\"https://earth.jaxa.jp/policy/en.html\",\"title\":\"JAXA Terms of Use of Research Data\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/alos-dem\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ALOS World 3D-30m\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/alos-dem.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"ALOS DEM\"},\"geoparquet-items\":{\"href\":\"abfs://items/alos-dem.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2016-12-07T00:00:00Z\",\"2016-12-07T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"ALOS\",\"PRISM\",\"JAXA\",\"DEM\",\"DSM\",\"Elevation\"],\"providers\":[{\"url\":\"https://www.eorc.jaxa.jp/ALOS/en/aw3d30/index.htm\",\"name\":\"Japan Aerospace Exploration Agency\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://doi.org/10.5069/G94M92HB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[30],\"platform\":[\"alos\"],\"instruments\":[\"prism\"]},\"description\":\"The \\\"ALOS World 3D-30m\\\" (AW3D30) dataset is a 30 meter resolution global digital surface model (DSM), developed by the Japan Aerospace Exploration Agency (JAXA). AWD30 was constructed from the Panchromatic Remote-sensing Instrument for Stereo Mapping (PRISM) on board Advanced Land Observing Satellite (ALOS), operated from 2006 to 2011.\\n\\nSee the [Product Description](https://www.eorc.jaxa.jp/ALOS/en/aw3d30/aw3d30v3.2_product_e_e1.2.pdf) for more details.\\n\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]}},\"stac_version\":\"1.0.0\",\"msft:container\":\"alos-dem\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"ALOS World 3D is a global digital surface model (DSM) with a horizontal resolution of approximately 30 meters, constructed from the Panchromatic Remote-sensing Instrument for Stereo Mapping (PRISM) on board Advanced Land Observing Satellite (ALOS).\",\"msft:region\":\"westeurope\"},{\"id\":\"alos-palsar-mosaic\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"handbook\",\"href\":\"https://www.eorc.jaxa.jp/ALOS/en/dataset/pdf/DatasetDescription_PALSAR2_Mosaic_V200.pdf\",\"type\":\"application/pdf\",\"title\":\"Global 25 m Resolution PALSAR-2/PALSAR Mosaic (MOS)\",\"description\":\"Also includes data usage information\"},{\"rel\":\"license\",\"href\":\"https://earth.jaxa.jp/policy/en.html\",\"type\":\"text/html\",\"title\":\"JAXA Terms of Use of Research Data\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/alos-palsar-mosaic\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ALOS PALSAR Annual Mosaic\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/alos-palsar-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"ALOS PALSAR MOSAIC\"},\"geoparquet-items\":{\"href\":\"abfs://items/alos-palsar-mosaic.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,85.0,180.0,-56.0]]},\"temporal\":{\"interval\":[[\"2015-01-01T00:00:00Z\",\"2021-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"version\":\"2.0.0\",\"keywords\":[\"ALOS\",\"JAXA\",\"Remote Sensing\",\"Global\"],\"providers\":[{\"url\":\"https://www.eorc.jaxa.jp/ALOS/en/dataset/fnf_e.htm\",\"name\":\"Japan Aerospace Exploration Agency\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://developmentseed.org\",\"name\":\"Development Seed\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft Planetary Computer\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"ALOS\",\"ALOS-2\"],\"instruments\":[\"PALSAR\",\"PALSAR-2\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"sar:polarizations\":[[\"HH\",\"HV\"],[\"HH\",\"HV\",\"VH\",\"VV\"]],\"sar:instrument_mode\":[\"F\",\"U\"],\"sar:observation_direction\":[\"left\",\"right\"],\"palsar:number_of_polarizations\":[\"D\",\"Q\"]},\"description\":\"Global 25 m Resolution PALSAR-2/PALSAR Mosaic (MOS)\",\"item_assets\":{\"HH\":{\"role\":\"data\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"HH\",\"description\":\"HH polarization backscattering coefficient, 16-bit DN.\"},\"HV\":{\"role\":\"data\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"HV\",\"description\":\"HV polarization backscattering coefficient, 16-bit DN.\"},\"VH\":{\"role\":\"data\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"VH\",\"description\":\"VH polarization backscattering coefficient, 16-bit DN (high-sensitive beam quad-mode only).\"},\"VV\":{\"role\":\"data\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"VV\",\"description\":\"VV polarization backscattering coefficient, 16-bit DN (high-sensitive beam quad-mode only).\"},\"date\":{\"role\":\"date\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"date\",\"description\":\"Observation date (days since Jan 1, 1970).\"},\"mask\":{\"role\":\"data-mask\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"mask\",\"description\":\"Quality Mask\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\"}],\"classification:classes\":[{\"name\":\"no_data\",\"value\":0,\"description\":\"No data\"},{\"name\":\"water\",\"value\":50,\"description\":\"Water\"},{\"name\":\"lay_over\",\"value\":100,\"description\":\"Lay over\"},{\"name\":\"shadowing\",\"value\":150,\"description\":\"Shadowing\"},{\"name\":\"land\",\"value\":255,\"description\":\"Land\"}]},\"linci\":{\"role\":\"local-incidence-angle\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"linci\",\"description\":\"Local incidence angle (degrees).\"},\"metadata\":{\"type\":\"application/xml\",\"title\":\"metadata\",\"description\":\"Product metadata file\"}},\"stac_version\":\"1.0.0\",\"msft:container\":\"palsar\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/version/v1.0.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"https://pceo.blob.core.windows.net/\",\"msft:short_description\":\"Global 25m resolution SAR image mosaic.\",\"msft:region\":\"westeurope\"},{\"id\":\"deltares-water-availability\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"documentation\",\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/aod_docs/pc-deltares-water-availability-documentation.pdf\",\"type\":\"application/pdf\",\"title\":\"User Guide\"},{\"rel\":\"license\",\"href\":\"https://cdla.dev/permissive-1-0/\",\"type\":\"text/html\",\"title\":\"Community Data License Agreement - Permissive, Version 1.0\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/deltares-water-availability\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Deltares Global Water Availability\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.azureedge.net/assets/pc_thumbnails/additional_datasets/deltares-reservoir.jpg\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,90.0,180.0,-90.0]]},\"temporal\":{\"interval\":[[\"1970-01-01T00:00:00Z\",\"2020-12-31T00:00:00Z\"]]}},\"license\":\"CDLA-Permissive-1.0\",\"keywords\":[\"Deltares\",\"Water availability\",\"Reservoir\",\"Water\",\"Precipitation\"],\"providers\":[{\"url\":\"https://www.deltares.nl/en/\",\"name\":\"Deltares\",\"roles\":[\"producer\"]},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"deltares:reservoir\":[\"ERA5\",\"CHIRPS\",\"EOBS\",\"NLDAS\",\"BOM\"]},\"description\":\"[Deltares](https://www.deltares.nl/en/) has produced a hydrological model approach to simulate historical daily reservoir variations for 3,236 locations across the globe for the period 1970-2020 using the distributed [wflow_sbm](https://deltares.github.io/Wflow.jl/stable/model_docs/model_configurations/) model. The model outputs long-term daily information on reservoir volume, inflow and outflow dynamics, as well as information on upstream hydrological forcing.\\n\\nThey hydrological model was forced with 5 different precipitation products. Two products (ERA5 and CHIRPS) are available at the global scale, while for Europe, USA and Australia a regional product was use (i.e. EOBS, NLDAS and BOM, respectively). Using these different precipitation products, it becomes possible to assess the impact of uncertainty in the model forcing. A different number of basins upstream of reservoirs are simulated, given the spatial coverage of each precipitation product.\\n\\nSee the complete [methodology documentation](https://ai4edatasetspublicassets.blob.core.windows.net/assets/aod_docs/pc-deltares-water-availability-documentation.pdf) for more information.\\n\\n## Dataset coverages\\n\\n| Name | Scale | Period | Number of basins |\\n|--------|--------------------------|-----------|------------------|\\n| ERA5 | Global | 1967-2020 | 3236 |\\n| CHIRPS | Global (+/- 50 latitude) | 1981-2020 | 2951 |\\n| EOBS | Europe/North Africa | 1979-2020 | 682 |\\n| NLDAS | USA | 1979-2020 | 1090 |\\n| BOM | Australia | 1979-2020 | 116 |\\n\\n## STAC Metadata\\n\\nThis STAC collection includes one STAC item per dataset. The item includes a `deltares:reservoir` property that can be used to query for the URL of a specific dataset.\\n\\n## Contact\\n\\nFor questions about this dataset, contact [`aiforearthdatasets@microsoft.com`](mailto:aiforearthdatasets@microsoft.com?subject=deltares-floods%20question).\",\"item_assets\":{\"data\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Flood Map\",\"description\":\"Inundation maps of flood depth using a model that takes into account water level attenuation and is forced by sea level.\"},\"index\":{\"type\":\"application/json\",\"roles\":[\"index\"],\"title\":\"Index file\",\"description\":\"Kerchunk index file.\"}},\"stac_version\":\"1.0.0\",\"cube:variables\":{\"P\":{\"type\":\"data\",\"unit\":\"mm per day\",\"attrs\":{\"units\":\"mm per day\",\"description\":\"Average precipitation upstream of reservoir\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Average precipitation upstream of reservoir\"},\"ETa\":{\"type\":\"data\",\"unit\":\"mm per day\",\"attrs\":{\"units\":\"mm per day\",\"description\":\"Average simulated actual evapotransporation upstream of reservoir\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Average simulated actual evapotransporation upstream of reservoir\"},\"PET\":{\"type\":\"data\",\"unit\":\"mm per day\",\"attrs\":{\"units\":\"mm per day\",\"description\":\"Average potential evapotranspiration upstream of reservoir\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Average potential evapotranspiration upstream of reservoir\"},\"Melt\":{\"type\":\"data\",\"unit\":\"mm per day\",\"attrs\":{\"units\":\"mm per day\",\"description\":\"Average simulated snow melt upstream of reservoir\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Average simulated snow melt upstream of reservoir\"},\"Snow\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"description\":\"Average simulated snow depth upstream of reservoir\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Average simulated snow depth upstream of reservoir\"},\"Temp\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"description\":\"Average surface temperature upstream of reservoir\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Average surface temperature upstream of reservoir\"},\"P_res\":{\"type\":\"data\",\"unit\":\"mm per day\",\"attrs\":{\"units\":\"mm per day\",\"description\":\"Precipitation reservoir\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Precipitation reservoir\"},\"S_res\":{\"type\":\"data\",\"unit\":\"m3\",\"attrs\":{\"units\":\"m3\",\"description\":\"Simulated reservoir volume\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Simulated reservoir volume\"},\"Ea_res\":{\"type\":\"data\",\"unit\":\"mm per day\",\"attrs\":{\"units\":\"mm per day\",\"description\":\"Simulated actual evaporation reservoir\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Simulated actual evaporation reservoir\"},\"Qin_res\":{\"type\":\"data\",\"unit\":\"m3 per s\",\"attrs\":{\"units\":\"m3 per s\",\"description\":\"Simulated reservoir inflow (surface+subsurface)\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Simulated reservoir inflow (surface+subsurface)\"},\"FracFull\":{\"type\":\"data\",\"unit\":\"m3\",\"attrs\":{\"units\":\"m3\",\"description\":\"Simulated reservoir volume\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Simulated reservoir volume\"},\"Qout_res\":{\"type\":\"data\",\"unit\":\"m3 per s\",\"attrs\":{\"units\":\"m3 per s\",\"description\":\"Simulated reservoir outflow\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Simulated reservoir outflow\"},\"latitude\":{\"type\":\"data\",\"unit\":\"degrees\",\"attrs\":{\"units\":\"degrees\",\"description\":\"Latitude of reservoir\"},\"dimensions\":[\"GrandID\"],\"description\":\"Latitude of reservoir\"},\"longitude\":{\"type\":\"data\",\"unit\":\"degrees\",\"attrs\":{\"units\":\"degrees\",\"description\":\"Longitude of reservoir\"},\"dimensions\":[\"GrandID\"],\"description\":\"Longitude of reservoir\"}},\"msft:container\":\"reservoirs\",\"cube:dimensions\":{\"time\":{\"step\":\"P1DT0H0M0S\",\"type\":\"temporal\",\"extent\":[null,\"2020-12-31T00:00:00Z\"]},\"GrandID\":{\"type\":\"identifier\",\"extent\":[null,null],\"description\":\"GrandID number of the reservoir of interest\"},\"ksathorfrac\":{\"type\":\"level\",\"values\":[5,20,50,100,250],\"description\":\"Five different value lateral anisotropy values used\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"deltaresreservoirssa\",\"msft:short_description\":\"Historical daily reservoir variations.\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-16A3GF-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/931/MOD16_User_Guide_V61.pdf\",\"title\":\"MOD16 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD16A3GF\",\"title\":\"MOD16A3GF file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD16A3GF\",\"title\":\"MYD16A3GF file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD16A3GF.061\",\"title\":\"LP DAAC - MOD16A3GF\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD16A3GF.061\",\"title\":\"LP DAAC - MYD16A3GF\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-16A3GF-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Net Evapotranspiration Yearly Gap-Filled\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-16A3GF-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Net Evapotranspiration Yearly Gap-Filled thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-16A3GF-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2001-01-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Vegetation\",\"MOD16A3GF\",\"MYD16A3GF\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Moderate Resolution Imaging Spectroradiometer (MODIS) MOD16A3GF Version 6.1 Evapotranspiration/Latent Heat Flux (ET/LE) product is a year-end gap-filled yearly composite dataset produced at 500 meter (m) pixel resolution. The algorithm used for the MOD16 data product collection is based on the logic of the Penman-Monteith equation, which includes inputs of daily meteorological reanalysis data along with MODIS remotely sensed data products such as vegetation property dynamics, albedo, and land cover. The product will be generated at the end of each year when the entire yearly 8-day MOD15A2H/MYD15A2H is available. Hence, the gap-filled product is the improved 16, which has cleaned the poor-quality inputs from yearly Leaf Area Index and Fraction of Photosynthetically Active Radiation (LAI/FPAR) based on the Quality Control (QC) label for every pixel. If any LAI/FPAR pixel did not meet the quality screening criteria, its value is determined through linear interpolation. However, users cannot get this product in near-real time because it will be generated only at the end of a given year. Provided in the product are layers for composited ET, LE, Potential ET (PET), and Potential LE (PLE) along with a quality control layer. Two low resolution browse images, ET and LE, are also available for each granule. The pixel values for the two Evapotranspiration layers (ET and PET) are the sum for all days within the defined year, and the pixel values for the two Latent Heat layers (LE and PLE) are the average of all days within the defined year.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"ET_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Total of Evapotranspiration\",\"raster:bands\":[{\"unit\":\"kg/m^2/year\",\"scale\":0.1,\"data_type\":\"uint16\",\"spatial_resolution\":500}]},\"LE_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Average of Latent Heat Flux\",\"raster:bands\":[{\"unit\":\"J/m^2/day\",\"scale\":10000,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"PET_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Total Potential Evapotranspiration\",\"raster:bands\":[{\"unit\":\"kg/m^2/year\",\"scale\":0.1,\"data_type\":\"uint16\",\"spatial_resolution\":500}]},\"PLE_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Average of Potential Latent Heat Flux\",\"raster:bands\":[{\"unit\":\"J/m^2/day\",\"scale\":10000,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"ET_QC_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Evapotranspiration Quality Assessment\",\"raster:bands\":[{\"unit\":\"Percent\",\"data_type\":\"uint8\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD16A3GF.061\",\"citation\":\"Running, S., Mu, Q., Zhao, M., & Moreno, A. (2021). MODIS/Terra Net Evapotranspiration Gap-Filled Yearly L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD16A3GF.061\"},{\"doi\":\"10.5067/MODIS/MYD16A3GF.061\",\"citation\":\"Running, S., Mu, Q., Zhao, M., & Moreno, A. (2021). MODIS/Aqua Net Evapotranspiration Gap-Filled Yearly L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD16A3GF.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Net Evapotranspiration Yearly Gap-Filled\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-21A2-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/620/MOD21_User_Guide_V61.pdf\",\"title\":\"MOD21 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD21A2\",\"title\":\"MOD21A2 file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD21A2\",\"title\":\"MYD21A2 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD21A2.061\",\"title\":\"LP DAAC - MOD21A2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD21A2.061\",\"title\":\"LP DAAC - MYD21A2\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-21A2-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Land Surface Temperature/3-Band Emissivity 8-Day\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-21A2-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Land Surface Temperature/3-Band Emissivity 8-Day thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-21A2-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-16T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Temperature\",\"MOD21A2\",\"MYD21A2\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"A suite of Moderate Resolution Imaging Spectroradiometer (MODIS) Land Surface Temperature and Emissivity (LST&E) products are available in Collection 6.1. The MOD21 Land Surface Temperatuer (LST) algorithm differs from the algorithm of the MOD11 LST products, in that the MOD21 algorithm is based on the ASTER Temperature/Emissivity Separation (TES) technique, whereas the MOD11 uses the split-window technique. The MOD21 TES algorithm uses a physics-based algorithm to dynamically retrieve both the LST and spectral emissivity simultaneously from the MODIS thermal infrared bands 29, 31, and 32. The TES algorithm is combined with an improved Water Vapor Scaling (WVS) atmospheric correction scheme to stabilize the retrieval during very warm and humid conditions. This dataset is an 8-day composite LST product at 1,000 meter spatial resolution that uses an algorithm based on a simple averaging method. The algorithm calculates the average from all the cloud free 21A1D and 21A1N daily acquisitions from the 8-day period. Unlike the 21A1 data sets where the daytime and nighttime acquisitions are separate products, the 21A2 contains both daytime and nighttime acquisitions as separate Science Dataset (SDS) layers within a single Hierarchical Data Format (HDF) file. The LST, Quality Control (QC), view zenith angle, and viewing time have separate day and night SDS layers, while the values for the MODIS emissivity bands 29, 31, and 32 are the average of both the nighttime and daytime acquisitions. Additional details regarding the method used to create this Level 3 (L3) product are available in the Algorithm Theoretical Basis Document (ATBD).\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"QC_Day\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Day Quality Control\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Emis_29\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Average Day/Night Band 29 emissivity\",\"raster:bands\":[{\"scale\":0.002,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Emis_31\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Average Day/Night Band 31 emissivity\",\"raster:bands\":[{\"scale\":0.002,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Emis_32\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Average Day/Night Band 32 emissivity\",\"raster:bands\":[{\"scale\":0.002,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"QC_Night\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Night Quality Control\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"LST_Day_1KM\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Day Land Surface Temperature\",\"raster:bands\":[{\"unit\":\"Kelvin\",\"scale\":0.02,\"data_type\":\"uint16\",\"spatial_resolution\":1000}]},\"LST_Night_1KM\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Night Land Surface Temperature\",\"raster:bands\":[{\"unit\":\"Kelvin\",\"scale\":0.02,\"data_type\":\"uint16\",\"spatial_resolution\":1000}]},\"View_Time_Day\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Day Time of Observation\",\"raster:bands\":[{\"unit\":\"Hours\",\"scale\":0.1,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"View_Angle_Day\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Day view zenith angle\",\"raster:bands\":[{\"unit\":\"Degree\",\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"View_Time_Night\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Night Time of Observation\",\"raster:bands\":[{\"unit\":\"Hours\",\"scale\":0.1,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"View_Angle_Night\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Night view zenith angle\",\"raster:bands\":[{\"unit\":\"Degree\",\"data_type\":\"uint8\",\"spatial_resolution\":1000}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD21A2.061\",\"citation\":\"Hulley, G., & Hook, S. (2021). MODIS/Terra Land Surface Temperature/3-Band Emissivity 8-Day L3 Global 1km SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD21A2.061\"},{\"doi\":\"10.5067/MODIS/MYD21A2.061\",\"citation\":\"Hulley, G. (2021). MODIS/Aqua Land Surface Temperature/3-Band Emissivity 8-Day L3 Global 1km SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD21A2.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Land Surface Temperature/3-Band Emissivity 8-Day\",\"msft:region\":\"westeurope\"},{\"id\":\"us-census\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"license\",\"href\":\"https://www.census.gov/about/policies/open-gov/open-data.html\",\"type\":\"text/html\",\"title\":\"U.S. Census Open Data Policy\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/us-census\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"US Census\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/us-census.png\",\"type\":\"image/png\",\"title\":\"US Census\"},\"geoparquet-items\":{\"href\":\"abfs://items/us-census.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-124.763068,24.523096,-66.949895,49.384358],[-179.148909,51.214183,-129.974167,71.365162],[172.461667,51.357688,179.77847,53.01075],[-178.334698,18.910361,-154.806773,28.402123],[144.618068,13.234189,144.956712,13.654383],[-67.945404,17.88328,-65.220703,18.515683],[144.886331,14.110472,146.064818,20.553802],[-65.085452,17.673976,-64.564907,18.412655],[-171.089874,-14.548699,-168.1433,-11.046934],[-178.334698,18.910361,-154.806773,28.402123]]},\"temporal\":{\"interval\":[[\"2021-08-01T00:00:00Z\",\"2021-08-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"US Census Bureau\",\"Administrative boundaries\",\"Population\",\"Demographics\"],\"providers\":[{\"url\":\"https://www.census.gov/en.html\",\"name\":\"United States Census Bureau\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://makepath.com/\",\"name\":\"makepath\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"description\":\"The [2020 Census](https://www.census.gov/programs-surveys/decennial-census/decade/2020/2020-census-main.html) counted every person living in the United States and the five U.S. territories. It marked the 24th census in U.S. history and the first time that households were invited to respond to the census online.\\n\\nThe tables included on the Planetary Computer provide information on population and geographic boundaries at various levels of cartographic aggregation.\\n\",\"item_assets\":{\"data\":{\"type\":\"application/x-parquet\",\"roles\":[\"data\"],\"title\":\"Dataset root\",\"table:storage_options\":{\"account_name\":\"ai4edataeuwest\"}}},\"stac_version\":\"1.0.0\",\"table:tables\":[{\"name\":\"American Indian/Alaska Native Areas/Hawaiian Home Lands (AIANNH)\",\"description\":\"This file contains data for legal and statistical [American Indian/Alaska Native Areas/Hawaiian Home Lands (AIANNH)](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_1) entities published by the US Census Bureau.\",\"msft:item_name\":\"cb_2020_us_aiannh_500k\"},{\"name\":\"American Indian Tribal Subdivisions (AITSN)\",\"description\":\"This file contains data on [American Indian Tribal Subdivisions](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_1). These areas are the legally defined subdivisions of American Indian Reservations (AIR), Oklahoma Tribal Statistical Areas (OTSA), and Off-Reservation Trust Land (ORTL).\",\"msft:item_name\":\"cb_2020_us_aitsn_500k\"},{\"name\":\"Alaska Native Regional Corporations (ANRC)\",\"description\":\"This file contains data on [Alaska Native Regional Corporations](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_1), which are corporations created according to the Alaska Native Claims Settlement Act. \",\"msft:item_name\":\"cb_2020_02_anrc_500k\"},{\"name\":\"Tribal Block Groups (TBG)\",\"description\":\"This file includes data on [Tribal Block Groups](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_26), which are subdivisions of Tribal Census Tracts. These block groups can extend over multiple AIRs and ORTLs due to areas not meeting Block Group minimum population thresholds.\",\"msft:item_name\":\"cb_2020_us_tbg_500k\"},{\"name\":\"Tribal Census Tracts (TTRACT)\",\"description\":\"This file includes data on [Tribal Census Tracts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_27) which are relatively small statistical subdivisions of AIRs and ORTLs defined by federally recognized tribal government officials in partnership with the Census Bureau. Due to population thresholds, the Tracts may consist of multiple non-contiguous areas.\",\"msft:item_name\":\"cb_2020_us_ttract_500k\"},{\"name\":\"Census Block Groups (BG)\",\"description\":\"This file contains data on [Census Block Groups](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_4). These groups are the second smallest geographic grouping. They consist of clusters of blocks within the same census tract that share the same first digit of their 4-character census block number. Census Block Groups generally contain between 600 and 3,000 people and generally cover contiguous areas.\",\"msft:item_name\":\"cb_2020_us_bg_500k\"},{\"name\":\"Census Tracts (TRACT)\",\"description\":\"This file contains data on [Census Tracts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_13) which are small and relatively permanent statistical subdivisions of a county or equivalent entity. Tract population size is generally between 1,200 and 8,000 people with an ideal size of 4,000. Boundaries tend to follow visible and identifiable features and are usually contiguous areas.\",\"msft:item_name\":\"cb_2020_us_tract_500k\"},{\"name\":\"Congressional Districts: 116th Congress (CD116)\",\"description\":\"This file contains data on the [Congressional Districts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_9) for the 116th Congress. \",\"msft:item_name\":\"cb_2020_us_cd116_500k\"},{\"name\":\"Consolidated Cities (CONCITY)\",\"description\":\"This file contains data on [Consolidated Cities](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_8). These are areas where one or several other incorporated places in a county or Minor Civil Division are included in a consolidated government but still exist as separate legal entities.\",\"msft:item_name\":\"cb_2020_us_concity_500k\"},{\"name\":\"Counties (COUNTY)\",\"description\":\"This file contains data on [Counties and Equivalent Entities](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_12). These are the primary legal divisions of states. Most states use the term \\\"counties,\\\" but other terms such as \\\"Parishes,\\\" \\\"Municipios,\\\" or \\\"Independent Cities\\\" may be used. \",\"msft:item_name\":\"cb_2020_us_county_500k\"},{\"name\":\"Counties within Congressional Districts: 116th Congress (COUNTY_within_CD116)\",\"description\":\"This file contains data on Counties within Congressional Districts.\",\"msft:item_name\":\"cb_2020_us_county_within_cd116_500k\"},{\"name\":\"County Subdivisions (COUSUB)\",\"description\":\"This file contains [County Subdivisions](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_11), which are the primary divisions of counties and equivalent entities. These divisions vary from state to state and include Barrios, Purchases, Townships, and other types of legal and statistical entities. \",\"msft:item_name\":\"cb_2020_us_cousub_500k\"},{\"name\":\"Divisions (DIVISION)\",\"description\":\"This file contains data on [Divisions](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_10) of the US. This file is similar to the Regions file but contains more divisions and encompasses several states per division.\",\"msft:item_name\":\"cb_2020_us_division_500k\"},{\"name\":\"Core Based Statistical Areas (CBSAs)\",\"description\":\"This file contains data on [Core Based Statistical Areas (CBSAs)](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_7). This encompasses all metropolitan and micropolitan statistical areas.\",\"msft:item_name\":\"cb_2020_us_cbsa_500k\"},{\"name\":\"Combined Statistical Areas (CSA)\",\"description\":\"This file contains data on [Combined Statistical Areas](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_7), which are areas that consist of two or more adjacent CBSAs that have significant employment interchanges.\",\"msft:item_name\":\"cb_2020_us_csa_500k\"},{\"name\":\"Metropolitan Divisions (METDIV)\",\"description\":\"This file contains data on [Metropolitan Divisions](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_7). These areas are groupings of counties or equivalent entities within a metropolitan statistical area with a core of 2.5 million inhabitants and one or more main counties that represent employment centers, plus adjacent counties with commuting ties.\",\"msft:item_name\":\"cb_2020_us_metdiv_500k\"},{\"name\":\"New England City and Town Areas (NECTA)\",\"description\":\"This file contains [New England City and Town Areas](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_7), which encompass metropolitan and micropolitan statistical areas and urban clusters in New England.\",\"msft:item_name\":\"cb_2020_us_necta_500k\"},{\"name\":\"New England City and Town Area Division (NECTADIV)\",\"description\":\"This file contains [New England City and Town Areas Divisions](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_7), which are smaller groupings of cities and towns in New England that contain a single core of 2.5 million inhabitants. Each division must have a total population of 100,000 or more.\",\"msft:item_name\":\"cb_2020_us_nectadiv_500k\"},{\"name\":\"Combined New England City and Town Areas (CNECTA)\",\"description\":\"This file contains data on [Combined New England City and Town Areas](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_7), consisting of two or more adjacent NECTAs that have significant employment interchanges.\",\"msft:item_name\":\"cb_2020_us_cnecta_500k\"},{\"name\":\"Places (PLACE)\",\"description\":\"This file contains [Places](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_14) which are Incorporated Places (legal entities) and Census Designated Places (CDPs, statistical entities). An incorporated place usually is a city, town, village, or borough but can have other legal descriptions. CDPs are settled concentrations of population that are identifiable by name but are not legally incorporated.\",\"msft:item_name\":\"cb_2020_us_place_500k\"},{\"name\":\"Regions (REGION)\",\"description\":\"This file contains [Regions](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_10) of the US and encompasses several states per division.\",\"msft:item_name\":\"cb_2020_us_region_500k\"},{\"name\":\"School Districts - Elementary (ELSD)\",\"description\":\"This file contains [Elementary School Districts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_23), referring to districts with elementary schools.\",\"msft:item_name\":\"cb_2020_us_elsd_500k\"},{\"name\":\"School Districts - Secondary (SCSD)\",\"description\":\"This file contains [Secondary School Districts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_23), referring to districts with secondary schools.\",\"msft:item_name\":\"cb_2020_us_scsd_500k\"},{\"name\":\"School Districts - Unified (UNSD)\",\"description\":\"This file contains [Unified School Districts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_23), referring to districts that provide education to children of all school ages. Unified school districts can have both secondary and elementary schools.\",\"msft:item_name\":\"cb_2020_us_unsd_500k\"},{\"name\":\"State Legislative Districts - Lower Chamber (SLDL)\",\"description\":\"This file contains [Lower Chamber State Legislative Districts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_24).\",\"msft:item_name\":\"cb_2020_us_sldl_500k\"},{\"name\":\"State Legislative Districts - Upper Chamber (SLDU)\",\"description\":\"This file contains [Upper Chamber State Legislative Districts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_24).\",\"msft:item_name\":\"cb_2020_us_sldu_500k\"},{\"name\":\"States (STATE)\",\"description\":\"This file contains the [US States and State Equivalent Entities](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_25). Within Census Bureau datasets, the District of Columbia, Puerto Rico, and the Island Areas (American Samoa, the Commonwealth of the Northern Mariana Islands, Guam, and the US Virgin Islands) are treated as statistical equivalents of states alongside the 50 US states.\",\"msft:item_name\":\"cb_2020_us_state_500k\"},{\"name\":\"Subbarrios (SUBBARRIO)\",\"description\":\"This file contains [Subbarrios](https://www.census.gov/programs-surveys/geography/about/glossary.html#pr), which are legally defined subdivisions of Minor Civil Division in Puerto Rico. They don\\\"t exist within every Minor Civil Division and don\\\"t always cover the entire Minor Civil Division where they do exist.\",\"msft:item_name\":\"cb_2020_72_subbarrio_500k\"},{\"name\":\"United States Outline\",\"description\":\"This file contains the [United States Outline](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_30) shapefile. This contains all 50 US states plus the District of Columbia, Puerto Rico, and the Island Areas (American Samoa, the Commonwealth of the Northern Mariana Islands, Guam, and the US Virgin Islands). There is only one feature within this dataset.\",\"msft:item_name\":\"cb_2020_us_nation_5m\"},{\"name\":\"Voting Districts (VTD)\",\"description\":\"This file contains all [US Voting Districts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_31), which are geographic features established by state, local and tribal governments to conduct elections.\",\"msft:item_name\":\"cb_2020_us_vtd_500k\"}],\"msft:container\":\"us-census\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"United States population counts at various levels of cartographic aggregation\",\"msft:region\":\"westeurope\"},{\"id\":\"jrc-gsw\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.1038/nature20584\"},{\"rel\":\"license\",\"href\":\"https://www.copernicus.eu/en/about-copernicus/international-cooperation\",\"title\":\"Copernicus Open Access Policy\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/jrc-gsw\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"JRC Global Surface Water\",\"assets\":{\"guide\":{\"href\":\"https://storage.cloud.google.com/global-surface-water/downloads_ancillary/DataUsersGuidev2020.pdf\",\"type\":\"application/pdf\",\"roles\":[\"metadata\"],\"title\":\"Users Guide\",\"description\":\"Data users guide and description of the JRC GSW datasets\"},\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/jrc-gsw.png\",\"title\":\"European Commission Joint Research Centre - Global Surface Water\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/jrc-gsw.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-56.0,180.0,78.0]]},\"temporal\":{\"interval\":[[\"1984-03-01T00:00:00Z\",\"2020-12-31T11:59:59Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.1038/nature20584\",\"keywords\":[\"Global\",\"Water\",\"Landsat\"],\"providers\":[{\"url\":\"https://global-surface-water.appspot.com/\",\"name\":\"European Commission Joint Research Centre\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://developers.google.com/earth-engine/datasets/tags/jrc\",\"name\":\"Google\",\"roles\":[\"producer\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"description\":\"Global surface water products from the European Commission Joint Research Centre, based on Landsat 5, 7, and 8 imagery. Layers in this collection describe the occurrence, change, and seasonality of surface water from 1984-2020. Complete documentation for each layer is available in the [Data Users Guide](https://storage.cloud.google.com/global-surface-water/downloads_ancillary/DataUsersGuidev2020.pdf).\\n\",\"item_assets\":{\"change\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Occurrence Change Intensity\",\"description\":\"Change in water occurrence between the two periods (1984-1999) and (2000-2020)\"},\"extent\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Maximum Water Extent\",\"description\":\"Binary indicator of whether water was ever present (from 1984-2020)\",\"file:values\":[{\"values\":[0],\"summary\":\"Not water\"},{\"values\":[1],\"summary\":\"Water\"}]},\"occurrence\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Occurrence\",\"description\":\"Frequency with which water was present from March 1984 to December 2020\"},\"recurrence\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Recurrence\",\"description\":\"Frequency with which water returns from year to year\"},\"seasonality\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Seasonality\",\"description\":\"Number of months that water was present from January 2020 to December 2020\"},\"transitions\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Transitions\",\"description\":\"Categorical change in surface water status from 1984 to 2020\",\"file:values\":[{\"values\":[1],\"summary\":\"Permanent\"},{\"values\":[2],\"summary\":\"New permanent\"},{\"values\":[3],\"summary\":\"Lost permanent\"},{\"values\":[4],\"summary\":\"Seasonal\"},{\"values\":[5],\"summary\":\"New seasonal\"},{\"values\":[6],\"summary\":\"Lost seasonal\"},{\"values\":[7],\"summary\":\"Seasonal to permanent\"},{\"values\":[8],\"summary\":\"Permanent to seasonal\"},{\"values\":[9],\"summary\":\"Ephemeral permanent\"},{\"values\":[10],\"summary\":\"Ephemeral seasonal\"}]}},\"sci:citation\":\"Jean-Francois Pekel, Andrew Cottam, Noel Gorelick, Alan S. Belward, High-resolution mapping of global surface water and its long-term changes. Nature 540, 418-422 (2016)\",\"stac_version\":\"1.0.0\",\"msft:container\":\"jrc-gsw\",\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Global surface water distribution and dynamics from 1984 to 2020\",\"msft:region\":\"westeurope\"},{\"id\":\"deltares-floods\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"documentation\",\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/aod_docs/11206409-003-ZWS-0003_v0.1-Planetary-Computer-Deltares-global-flood-docs.pdf\",\"type\":\"application/pdf\",\"title\":\"User Guide\"},{\"rel\":\"license\",\"href\":\"https://cdla.dev/permissive-1-0/\",\"type\":\"text/html\",\"title\":\"Community Data License Agreement - Permissive, Version 1.0\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/deltares-floods\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Deltares Global Flood Maps\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.azureedge.net/assets/pc_thumbnails/additional_datasets/deltares-flood.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,90.0,180.0,-90.0]]},\"temporal\":{\"interval\":[[\"2018-01-01T00:00:00Z\",\"2018-12-31T00:00:00Z\"],[\"2050-01-01T00:00:00Z\",\"2050-12-31T00:00:00Z\"]]}},\"license\":\"CDLA-Permissive-1.0\",\"keywords\":[\"Deltares\",\"Flood\",\"Sea level rise\",\"Water\",\"Global\"],\"providers\":[{\"url\":\"https://www.deltares.nl/en/\",\"name\":\"Deltares\",\"roles\":[\"producer\"]},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"deltares:dem_name\":[\"NASADEM\",\"MERITDEM\",\"LIDAR\"],\"deltares:resolution\":[\"90m\",\"1km\",\"5km\"],\"deltares:return_period\":[0,2,5,10,25,50,100,250],\"deltares:sea_level_year\":[2018,2050]},\"description\":\"[Deltares](https://www.deltares.nl/en/) has produced inundation maps of flood depth using a model that takes into account water level attenuation and is forced by sea level. At the coastline, the model is forced by extreme water levels containing surge and tide from GTSMip6. The water level at the coastline is extended landwards to all areas that are hydrodynamically connected to the coast following a \u2018bathtub\u2019 like approach and calculates the flood depth as the difference between the water level and the topography. Unlike a simple 'bathtub' model, this model attenuates the water level over land with a maximum attenuation factor of 0.5\u2009m\u2009km-1. The attenuation factor simulates the dampening of the flood levels due to the roughness over land.\\n\\nIn its current version, the model does not account for varying roughness over land and permanent water bodies such as rivers and lakes, and it does not account for the compound effects of waves, rainfall, and river discharge on coastal flooding. It also does not include the mitigating effect of coastal flood protection. Flood extents must thus be interpreted as the area that is potentially exposed to flooding without coastal protection.\\n\\nSee the complete [methodology documentation](https://ai4edatasetspublicassets.blob.core.windows.net/assets/aod_docs/11206409-003-ZWS-0003_v0.1-Planetary-Computer-Deltares-global-flood-docs.pdf) for more information.\\n\\n## Digital elevation models (DEMs)\\n\\nThis documentation will refer to three DEMs:\\n\\n* `NASADEM` is the SRTM-derived [NASADEM](https://planetarycomputer.microsoft.com/dataset/nasadem) product.\\n* `MERITDEM` is the [Multi-Error-Removed Improved Terrain DEM](http://hydro.iis.u-tokyo.ac.jp/~yamadai/MERIT_DEM/), derived from SRTM and AW3D.\\n* `LIDAR` is the [Global LiDAR Lowland DTM (GLL_DTM_v1)](https://data.mendeley.com/datasets/v5x4vpnzds/1).\\n\\n## Global datasets\\n\\nThis collection includes multiple global flood datasets derived from three different DEMs (`NASA`, `MERIT`, and `LIDAR`) and at different resolutions. Not all DEMs have all resolutions:\\n\\n* `NASADEM` and `MERITDEM` are available at `90m` and `1km` resolutions\\n* `LIDAR` is available at `5km` resolution\\n\\n## Historic event datasets\\n\\nThis collection also includes historical storm event data files that follow similar DEM and resolution conventions. Not all storms events are available for each DEM and resolution combination, but generally follow the format of:\\n\\n`events/[DEM]_[resolution]-wm_final/[storm_name]_[event_year]_masked.nc`\\n\\nFor example, a flood map for the MERITDEM-derived 90m flood data for the \\\"Omar\\\" storm in 2008 is available at:\\n\\n\\n\\n## Contact\\n\\nFor questions about this dataset, contact [`aiforearthdatasets@microsoft.com`](mailto:aiforearthdatasets@microsoft.com?subject=deltares-floods%20question).\",\"item_assets\":{\"data\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Flood Map\",\"description\":\"Inundation maps of flood depth using a model that takes into account water level attenuation and is forced by sea level.\"},\"index\":{\"type\":\"application/json\",\"roles\":[\"index\"],\"title\":\"Index file\",\"description\":\"Kerchunk index file.\"}},\"stac_version\":\"1.0.0\",\"cube:variables\":{\"inun\":{\"type\":\"data\",\"unit\":\"m\",\"attrs\":{\"units\":\"m\",\"long_name\":\"Coastal flooding\",\"standard_name\":\"water_surface_height_above_reference_datum\"},\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Coastal flooding\"},\"projection\":{\"type\":\"data\",\"attrs\":{\"EPSG_code\":\"EPSG:4326\",\"long_name\":\"wgs84\",\"proj4_params\":\"+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs\",\"grid_mapping_name\":\"latitude_longitude\"},\"shape\":[],\"dimensions\":[],\"description\":\"wgs84\"}},\"msft:container\":\"floods\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"type\":\"spatial\",\"extent\":[-89.97500000000002,89.975],\"description\":\"latitude\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"GeographicCRS\",\"datum\":{\"id\":{\"code\":6326,\"authority\":\"EPSG\"},\"name\":\"World Geodetic System 1984\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"WGS 84\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}}},\"lon\":{\"axis\":\"x\",\"type\":\"spatial\",\"extent\":[-179.975,179.97500000000005],\"description\":\"longitude\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"GeographicCRS\",\"datum\":{\"id\":{\"code\":6326,\"authority\":\"EPSG\"},\"name\":\"World Geodetic System 1984\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"WGS 84\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}}},\"time\":{\"type\":\"temporal\",\"extent\":[\"2010-01-01T00:00:00Z\",\"2010-01-01T00:00:00Z\"],\"description\":\"time\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"deltaresfloodssa\",\"msft:short_description\":\"Global estimates of coastal inundation under various sea level rise conditions and return periods.\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-43A4-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061\"},{\"rel\":\"help\",\"href\":\"https://www.umb.edu/spectralmass/terra_aqua_modis/v006\",\"title\":\"User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MCD43A4\",\"title\":\"MCD43A4 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MCD43A4.061\",\"title\":\"LP DAAC - MCD43A4\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-43A4-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-43A4-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-43A4-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-16T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Imagery\",\"Global\",\"Reflectance\",\"MCD43A4\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Moderate Resolution Imaging Spectroradiometer (MODIS) MCD43A4 Version 6.1 Nadir Bidirectional Reflectance Distribution Function (BRDF)-Adjusted Reflectance (NBAR) dataset is produced daily using 16 days of Terra and Aqua MODIS data at 500 meter (m) resolution. The view angle effects are removed from the directional reflectances, resulting in a stable and consistent NBAR product. Data are temporally weighted to the ninth day which is reflected in the Julian date in the file name. Users are urged to use the band specific quality flags to isolate the highest quality full inversion results for their own science applications as described in the User Guide. The MCD43A4 provides NBAR and simplified mandatory quality layers for MODIS bands 1 through 7. Essential quality information provided in the corresponding MCD43A2 data file should be consulted when using this product.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"Nadir_Reflectance_Band1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"NBAR at local solar noon for Band 1\",\"eo:bands\":[{\"name\":\"Nadir_Reflectance_Band1\",\"common_name\":\"red\",\"center_wavelength\":0.645,\"full_width_half_max\":0.5}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"Nadir_Reflectance_Band2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"NBAR at local solar noon for Band 2\",\"eo:bands\":[{\"name\":\"Nadir_Reflectance_Band2\",\"common_name\":\"nir08\",\"center_wavelength\":0.8585,\"full_width_half_max\":0.35}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"Nadir_Reflectance_Band3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"NBAR at local solar noon for Band 3\",\"eo:bands\":[{\"name\":\"Nadir_Reflectance_Band3\",\"common_name\":\"blue\",\"center_wavelength\":0.469,\"full_width_half_max\":0.2}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"Nadir_Reflectance_Band4\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"NBAR at local solar noon for Band 4\",\"eo:bands\":[{\"name\":\"Nadir_Reflectance_Band4\",\"common_name\":\"green\",\"center_wavelength\":0.555,\"full_width_half_max\":0.2}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"Nadir_Reflectance_Band5\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"NBAR at local solar noon for Band 5\",\"eo:bands\":[{\"name\":\"Nadir_Reflectance_Band5\",\"common_name\":\"lwir12\",\"center_wavelength\":1.24,\"full_width_half_max\":0.2}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"Nadir_Reflectance_Band6\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"NBAR at local solar noon for Band 6\",\"eo:bands\":[{\"name\":\"Nadir_Reflectance_Band6\",\"common_name\":\"swir16\",\"center_wavelength\":1.64,\"full_width_half_max\":0.24}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"Nadir_Reflectance_Band7\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"NBAR at local solar noon for Band 7\",\"eo:bands\":[{\"name\":\"Nadir_Reflectance_Band7\",\"common_name\":\"swir22\",\"center_wavelength\":2.13,\"full_width_half_max\":0.5}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"BRDF_Albedo_Band_Mandatory_Quality_Band1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"BRDF Albedo Mandatory Quality for Band 1\",\"eo:bands\":[{\"name\":\"BRDF_Albedo_Band_Mandatory_Quality_Band1\"}],\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}],\"classification:classes\":[{\"value\":0,\"description\":\"Processed, good quality (full BRDF inversions)\"},{\"value\":1,\"description\":\"Processed, see other QA (magnitude BRDF inversions)\"}]},\"BRDF_Albedo_Band_Mandatory_Quality_Band2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"BRDF Albedo Mandatory Quality for Band 2\",\"eo:bands\":[{\"name\":\"BRDF_Albedo_Band_Mandatory_Quality_Band2\"}],\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}],\"classification:classes\":[{\"value\":0,\"description\":\"Processed, good quality (full BRDF inversions)\"},{\"value\":1,\"description\":\"Processed, see other QA (magnitude BRDF inversions)\"}]},\"BRDF_Albedo_Band_Mandatory_Quality_Band3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"BRDF Albedo Mandatory Quality for Band 3\",\"eo:bands\":[{\"name\":\"BRDF_Albedo_Band_Mandatory_Quality_Band3\"}],\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}],\"classification:classes\":[{\"value\":0,\"description\":\"Processed, good quality (full BRDF inversions)\"},{\"value\":1,\"description\":\"Processed, see other QA (magnitude BRDF inversions)\"}]},\"BRDF_Albedo_Band_Mandatory_Quality_Band4\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"BRDF Albedo Mandatory Quality for Band 4\",\"eo:bands\":[{\"name\":\"BRDF_Albedo_Band_Mandatory_Quality_Band4\"}],\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}],\"classification:classes\":[{\"value\":0,\"description\":\"Processed, good quality (full BRDF inversions)\"},{\"value\":1,\"description\":\"Processed, see other QA (magnitude BRDF inversions)\"}]},\"BRDF_Albedo_Band_Mandatory_Quality_Band5\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"BRDF Albedo Mandatory Quality for Band 5\",\"eo:bands\":[{\"name\":\"BRDF_Albedo_Band_Mandatory_Quality_Band5\"}],\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}],\"classification:classes\":[{\"value\":0,\"description\":\"Processed, good quality (full BRDF inversions)\"},{\"value\":1,\"description\":\"Processed, see other QA (magnitude BRDF inversions)\"}]},\"BRDF_Albedo_Band_Mandatory_Quality_Band6\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"BRDF Albedo Mandatory Quality for Band 6\",\"eo:bands\":[{\"name\":\"BRDF_Albedo_Band_Mandatory_Quality_Band6\"}],\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}],\"classification:classes\":[{\"value\":0,\"description\":\"Processed, good quality (full BRDF inversions)\"},{\"value\":1,\"description\":\"Processed, see other QA (magnitude BRDF inversions)\"}]},\"BRDF_Albedo_Band_Mandatory_Quality_Band7\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"BRDF Albedo Mandatory Quality for Band 7\",\"eo:bands\":[{\"name\":\"BRDF_Albedo_Band_Mandatory_Quality_Band7\"}],\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}],\"classification:classes\":[{\"value\":0,\"description\":\"Processed, good quality (full BRDF inversions)\"},{\"value\":1,\"description\":\"Processed, see other QA (magnitude BRDF inversions)\"}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MCD43A4.061\",\"citation\":\"Schaaf, C., & Wang, Z. (2021). MODIS/Terra+Aqua BRDF/Albedo Nadir BRDF Adjusted Ref Daily L3 Global - 500m V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MCD43A4.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-09Q1-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/925/MOD09_User_Guide_V61.pdf\",\"title\":\"MOD09 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD09Q1\",\"title\":\"MOD09Q1 file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD09Q1\",\"title\":\"MYD09Q1 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD09Q1.061\",\"title\":\"LP DAAC - MOD09Q1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD09Q1.061\",\"title\":\"LP DAAC - MYD09Q1\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-09Q1-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Surface Reflectance 8-Day (250m)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-09Q1-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Surface Reflectance 8-Day (250m) thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-09Q1-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Imagery\",\"Global\",\"Reflectance\",\"MOD09Q1\",\"MYD09Q1\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The 09Q1 Version 6.1 product provides an estimate of the surface spectral reflectance of Moderate Resolution Imaging Spectroradiometer (MODIS) Bands 1 and 2, corrected for atmospheric conditions such as gasses, aerosols, and Rayleigh scattering. Provided along with the 250 meter (m) surface reflectance bands are two quality layers. For each pixel, a value is selected from all the acquisitions within the 8-day composite period. The criteria for the pixel choice include cloud and solar zenith. When several acquisitions meet the criteria the pixel with the minimum channel 3 (blue) value is used.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"sur_refl_b01\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Surface Reflectance Band 1 (620-670 nm)\",\"eo:bands\":[{\"name\":\"sur_refl_b01\",\"common_name\":\"red\",\"center_wavelength\":0.645,\"full_width_half_max\":0.5}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"sur_refl_b02\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Surface Reflectance Band 2 (841-876 nm)\",\"eo:bands\":[{\"name\":\"sur_refl_b02\",\"common_name\":\"nir08\",\"center_wavelength\":0.8585,\"full_width_half_max\":0.35}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"sur_refl_qc_250m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Reflectance 250m Band Quality Control flags\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":250}]},\"sur_refl_state_250m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Reflectance 250m State flags\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":250}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD09Q1.061\",\"citation\":\"Vermote, E. (2021). MODIS/Terra Surface Reflectance 8-Day L3 Global 250m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD09Q1.061\"},{\"doi\":\"10.5067/MODIS/MYD09Q1.061\",\"citation\":\"Vermote, E. (2021). MODIS/Aqua Surface Reflectance 8-Day L3 Global 250m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD09Q1.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Surface Reflectance 8-Day (250m)\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-14A1-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/1005/MOD14_User_Guide_V61.pdf\",\"title\":\"MOD14 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD14A1\",\"title\":\"MOD14A1 file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD14A1\",\"title\":\"MYD14A1 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD14A1.061\",\"title\":\"LP DAAC - MOD14A1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD14A1.061\",\"title\":\"LP DAAC - MYD14A1\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-14A1-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Thermal Anomalies/Fire Daily\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-14A1-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Thermal Anomalies/Fire Daily thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-14A1-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Fire\",\"MOD14A1\",\"MYD14A1\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Moderate Resolution Imaging Spectroradiometer (MODIS) Thermal Anomalies and Fire Daily Version 6.1 data are generated every eight days at 1 kilometer (km) spatial resolution as a Level 3 product. MOD14A1 contains eight consecutive days of fire data conveniently packaged into a single file. The Science Dataset (SDS) layers include the fire mask, pixel quality indicators, maximum fire radiative power (MaxFRP), and the position of the fire pixel within the scan. Each layer consists of daily per pixel information for each of the eight days of data acquisition.\",\"item_assets\":{\"QA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Pixel quality indicators\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"MaxFRP\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Maximum Fire Radiative Power\",\"raster:bands\":[{\"unit\":\"Megawatts\",\"scale\":0.1,\"data_type\":\"uint32\",\"spatial_resolution\":1000},{\"unit\":\"Megawatts\",\"scale\":0.1,\"data_type\":\"uint32\",\"spatial_resolution\":1000},{\"unit\":\"Megawatts\",\"scale\":0.1,\"data_type\":\"uint32\",\"spatial_resolution\":1000},{\"unit\":\"Megawatts\",\"scale\":0.1,\"data_type\":\"uint32\",\"spatial_resolution\":1000},{\"unit\":\"Megawatts\",\"scale\":0.1,\"data_type\":\"uint32\",\"spatial_resolution\":1000},{\"unit\":\"Megawatts\",\"scale\":0.1,\"data_type\":\"uint32\",\"spatial_resolution\":1000},{\"unit\":\"Megawatts\",\"scale\":0.1,\"data_type\":\"uint32\",\"spatial_resolution\":1000},{\"unit\":\"Megawatts\",\"scale\":0.1,\"data_type\":\"uint32\",\"spatial_resolution\":1000}]},\"sample\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Position of fire pixel within scan\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":1000},{\"data_type\":\"uint16\",\"spatial_resolution\":1000},{\"data_type\":\"uint16\",\"spatial_resolution\":1000},{\"data_type\":\"uint16\",\"spatial_resolution\":1000},{\"data_type\":\"uint16\",\"spatial_resolution\":1000},{\"data_type\":\"uint16\",\"spatial_resolution\":1000},{\"data_type\":\"uint16\",\"spatial_resolution\":1000},{\"data_type\":\"uint16\",\"spatial_resolution\":1000}]},\"FireMask\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Confidence of fire\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000}],\"classification:classes\":[{\"value\":0,\"description\":\"Not processed (missing input data)\"},{\"value\":1,\"description\":\"Not processed (obsolete; not used since Collection 1)\"},{\"value\":2,\"description\":\"Not processed (other reason)\"},{\"value\":3,\"description\":\"Non-fire water pixel\"},{\"value\":4,\"description\":\"Cloud (land or water)\"},{\"value\":5,\"description\":\"Non-fire land pixel\"},{\"value\":6,\"description\":\"Unknown (land or water)\"},{\"value\":7,\"description\":\"Fire (low confidence, land or water)\"},{\"value\":8,\"description\":\"Fire (nominal confidence, land or water)\"},{\"value\":9,\"description\":\"Fire (high confidence, land or water)\"}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD14A1.061\",\"citation\":\"Giglio, L., & Justice, C. (2021). MODIS/Terra Thermal Anomalies/Fire Daily L3 Global 1km SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD14A1.061\"},{\"doi\":\"10.5067/MODIS/MYD14A1.061\",\"citation\":\"Giglio, L., & Justice, C. (2021). MODIS/Aqua Thermal Anomalies/Fire Daily L3 Global 1km SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD14A1.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Thermal Anomalies/Fire Daily\",\"msft:region\":\"westeurope\"},{\"id\":\"hrea\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/licenses/by/4.0/\",\"title\":\"CC BY 4.0\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/hrea\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"HREA: High Resolution Electricity Access\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/hrea.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"HREA\"},\"geoparquet-items\":{\"href\":\"abfs://items/hrea.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-117.413972,-55.54235,-53.092722,32.718434],[-25.361528,-34.838027,50.759908,37.552639],[34.957638,-11.655904,157.037723,38.612083],[155.392502,-20.251178,172.171458,14.721388]]},\"temporal\":{\"interval\":[[\"2012-12-31T00:00:00Z\",\"2019-12-31T00:00:00Z\"]]}},\"license\":\"CC-BY-4.0\",\"keywords\":[\"HREA\",\"Electricity\",\"VIIRS\"],\"providers\":[{\"url\":\"http://www-personal.umich.edu/~brianmin/HREA/index.html/\",\"name\":\"University of Michigan\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[30,460]},\"description\":\"The [HREA](http://www-personal.umich.edu/~brianmin/HREA/index.html) project aims to provide open access to new indicators of electricity access and reliability across the world. Leveraging satellite imagery with computational methods, these high-resolution data provide new tools to track progress toward reliable and sustainable energy access across the world.\\n\\nThis dataset includes settlement-level measures of electricity access, reliability, and usage for 89 nations, derived from nightly VIIRS satellite imagery. Specifically, this dataset provides the following annual values at country-level granularity:\\n\\n1. **Access**: Predicted likelihood that a settlement is electrified, based on night-by-night comparisons of each settlement against matched uninhabited areas over a calendar year.\\n\\n2. **Reliability**: Proportion of nights a settlement is statistically brighter than matched uninhabited areas. Areas with more frequent power outages or service interruptions have lower rates.\\n\\n3. **Usage**: Higher levels of brightness indicate more robust usage of outdoor lighting, which is highly correlated with overall energy consumption.\\n\\n4. **Nighttime Lights**: Annual composites of VIIRS nighttime light output.\\n\\nFor more information and methodology, please visit the [HREA website](http://www-personal.umich.edu/~brianmin/HREA/index.html).\\n\",\"item_assets\":{\"lightscore\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Probability of electrification\"},\"light-composite\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Nighttime light annual composite\"},\"night-proportion\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Proportion of nights a settlement is brighter than uninhabited areas\"},\"estimated-brightness\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Estimated brightness levels\"}},\"stac_version\":\"1.0.0\",\"msft:container\":\"hrea\",\"stac_extensions\":[\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"hreadatasa\",\"msft:short_description\":\"Settlement-level measures of electricity access, reliability, and usage derived from VIIRS satellite imagery\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-13Q1-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/621/MOD13_User_Guide_V61.pdf\",\"title\":\"MOD13 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD13Q1\",\"title\":\"MOD13Q1 file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD13Q1\",\"title\":\"MYD13Q1 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD13Q1.061\",\"title\":\"LP DAAC - MOD13Q1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD13Q1.061\",\"title\":\"LP DAAC - MYD13Q1\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-13Q1-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Vegetation Indices 16-Day (250m)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-13Q1-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Vegetation Indices 16-Day (250m) thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-13Q1-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Vegetation\",\"MOD13Q1\",\"MYD13Q1\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Moderate Resolution Imaging Spectroradiometer (MODIS) Vegetation Indices Version 6.1 data are generated every 16 days at 250 meter (m) spatial resolution as a Level 3 product. The MOD13Q1 product provides two primary vegetation layers. The first is the Normalized Difference Vegetation Index (NDVI) which is referred to as the continuity index to the existing National Oceanic and Atmospheric Administration-Advanced Very High Resolution Radiometer (NOAA-AVHRR) derived NDVI. The second vegetation layer is the Enhanced Vegetation Index (EVI), which has improved sensitivity over high biomass regions. The algorithm chooses the best available pixel value from all the acquisitions from the 16 day period. The criteria used is low clouds, low view angle, and the highest NDVI/EVI value. Along with the vegetation layers and the two quality layers, the HDF file will have MODIS reflectance bands 1 (red), 2 (near-infrared), 3 (blue), and 7 (mid-infrared), as well as four observation layers.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"250m_16_days_EVI\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"16 day EVI\",\"raster:bands\":[{\"unit\":\"EVI\",\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"250m_16_days_NDVI\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"16 day NDVI\",\"raster:bands\":[{\"unit\":\"NDVI\",\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"250m_16_days_VI_Quality\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VI quality indicators\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":250}]},\"250m_16_days_MIR_reflectance\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Reflectance Band 7\",\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"250m_16_days_NIR_reflectance\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Reflectance Band 2\",\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"250m_16_days_red_reflectance\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Reflectance Band 1\",\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"250m_16_days_blue_reflectance\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Reflectance Band 3\",\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"250m_16_days_sun_zenith_angle\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Sun zenith angle of VI pixel\",\"raster:bands\":[{\"unit\":\"Degree\",\"scale\":0.01,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"250m_16_days_pixel_reliability\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality reliability of VI pixel\",\"raster:bands\":[{\"unit\":\"Rank\",\"data_type\":\"int8\",\"spatial_resolution\":250}],\"classification:classes\":[{\"value\":0,\"description\":\"Good data, use with confidence\"},{\"value\":1,\"description\":\"Marginal data, useful, but look at other QA information\"},{\"value\":2,\"description\":\"Snow/Ice Target covered with snow/ice\"},{\"value\":3,\"description\":\"Cloudy data\"}]},\"250m_16_days_view_zenith_angle\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"View zenith angle of VI Pixel\",\"raster:bands\":[{\"unit\":\"Degree\",\"scale\":0.01,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"250m_16_days_relative_azimuth_angle\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Relative azimuth angle of VI pixel\",\"raster:bands\":[{\"unit\":\"Degree\",\"scale\":0.01,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"250m_16_days_composite_day_of_the_year\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Day of year VI pixel\",\"raster:bands\":[{\"unit\":\"Julian Day\",\"data_type\":\"int16\",\"spatial_resolution\":250}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD13Q1.061\",\"citation\":\"Didan, K. (2021). MODIS/Terra Vegetation Indices 16-Day L3 Global 250m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD13Q1.061\"},{\"doi\":\"10.5067/MODIS/MYD13Q1.061\",\"citation\":\"Didan, K. (2021). MODIS/Aqua Vegetation Indices 16-Day L3 Global 250m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD13Q1.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Vegetation Indices 16-Day (250m)\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-14A2-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/1005/MOD14_User_Guide_V61.pdf\",\"title\":\"MOD14 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD14A2\",\"title\":\"MOD14A2 file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD14A2\",\"title\":\"MYD14A2 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD14A2.061\",\"title\":\"LP DAAC - MOD14A2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD14A2.061\",\"title\":\"LP DAAC - MYD14A2\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-14A2-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Thermal Anomalies/Fire 8-Day\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-14A2-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Thermal Anomalies/Fire 8-Day thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-14A2-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Fire\",\"MOD14A2\",\"MYD14A2\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Moderate Resolution Imaging Spectroradiometer (MODIS) Thermal Anomalies and Fire 8-Day Version 6.1 data are generated at 1 kilometer (km) spatial resolution as a Level 3 product. The MOD14A2 gridded composite contains the maximum value of the individual fire pixel classes detected during the eight days of acquisition. The Science Dataset (SDS) layers include the fire mask and pixel quality indicators.\",\"item_assets\":{\"QA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Pixel quality indicators\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"FireMask\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Confidence of fire\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000}],\"classification:classes\":[{\"value\":0,\"description\":\"Not processed (missing input data)\"},{\"value\":1,\"description\":\"Not processed (obsolete; not used since Collection 1)\"},{\"value\":2,\"description\":\"Not processed (other reason)\"},{\"value\":3,\"description\":\"Non-fire water pixel\"},{\"value\":4,\"description\":\"Cloud (land or water)\"},{\"value\":5,\"description\":\"Non-fire land pixel\"},{\"value\":6,\"description\":\"Unknown (land or water)\"},{\"value\":7,\"description\":\"Fire (low confidence, land or water)\"},{\"value\":8,\"description\":\"Fire (nominal confidence, land or water)\"},{\"value\":9,\"description\":\"Fire (high confidence, land or water)\"}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD14A2.061\",\"citation\":\"Giglio, L., & Justice, C. (2021). MODIS/Terra Thermal Anomalies/Fire 8-Day L3 Global 1km SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD14A2.061\"},{\"doi\":\"10.5067/MODIS/MYD14A2.061\",\"citation\":\"Giglio, L., & Justice, C. (2021). MODIS/Aqua Thermal Anomalies/Fire 8-Day L3 Global 1km SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD14A2.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Thermal Anomalies/Fire 8-Day\",\"msft:region\":\"westeurope\"},{\"id\":\"sentinel-2-l2a\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"license\",\"href\":\"https://scihub.copernicus.eu/twiki/pub/SciHubWebPortal/TermsConditions/Sentinel_Data_Terms_and_Conditions.pdf\",\"title\":\"Copernicus Sentinel data terms\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-2-l2a\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-2 Level-2A\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-2.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Sentinel 2 L2A\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-2-l2a.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"W-MON\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Global\",\"Imagery\",\"Reflectance\"],\"providers\":[{\"url\":\"https://sentinel.esa.int/web/sentinel/missions/sentinel-2\",\"name\":\"ESA\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://www.esri.com/\",\"name\":\"Esri\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[10,20,60],\"eo:bands\":[{\"name\":\"AOT\",\"description\":\"aerosol optical thickness\"},{\"gsd\":60,\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"coastal aerosol\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"gsd\":10,\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"visible blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"gsd\":10,\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"visible green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"gsd\":10,\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"visible red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"gsd\":20,\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"vegetation classification red edge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"gsd\":20,\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"vegetation classification red edge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"gsd\":20,\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"vegetation classification red edge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"gsd\":10,\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"near infrared\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"gsd\":20,\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"vegetation classification red edge\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"gsd\":60,\"name\":\"B09\",\"description\":\"water vapor\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"gsd\":20,\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"short-wave infrared, snow/ice/cloud classification\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"gsd\":20,\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"short-wave infrared, snow/ice/cloud classification\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"platform\":[\"Sentinel-2A\",\"Sentinel-2B\"],\"instruments\":[\"msi\"],\"constellation\":[\"sentinel-2\"],\"view:off_nadir\":[0]},\"description\":\"The [Sentinel-2](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) program provides global imagery in thirteen spectral bands at 10m-60m resolution and a revisit time of approximately five days. This dataset represents the global Sentinel-2 archive, from 2016 to the present, processed to L2A (bottom-of-atmosphere) using [Sen2Cor](https://step.esa.int/main/snap-supported-plugins/sen2cor/) and converted to [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\",\"item_assets\":{\"AOT\":{\"gsd\":10.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol optical thickness (AOT)\"},\"B01\":{\"gsd\":60.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band 1 - Coastal aerosol\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}]},\"B02\":{\"gsd\":10.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band 2 - Blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}]},\"B03\":{\"gsd\":10.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band 3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}]},\"B04\":{\"gsd\":10.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band 4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}]},\"B05\":{\"gsd\":20.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band 5 - Vegetation red edge 1\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}]},\"B06\":{\"gsd\":20.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band 6 - Vegetation red edge 2\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}]},\"B07\":{\"gsd\":20.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band 7 - Vegetation red edge 3\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}]},\"B08\":{\"gsd\":10.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band 8 - NIR\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}]},\"B09\":{\"gsd\":60.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water vapor\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}]},\"B11\":{\"gsd\":20.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band 11 - SWIR (1.6)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}]},\"B12\":{\"gsd\":20.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band 12 - SWIR (2.2)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]},\"B8A\":{\"gsd\":20.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band 8A - Vegetation red edge 4\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}]},\"SCL\":{\"gsd\":20.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene classfication map (SCL)\"},\"WVP\":{\"gsd\":10.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water vapour (WVP)\"},\"visual\":{\"gsd\":10.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band 4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band 3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band 2 - Blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"SAFE manifest\"},\"granule-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Granule metadata\"},\"inspire-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"INSPIRE metadata\"},\"product-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product metadata\"},\"datastrip-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Datastrip metadata\"}},\"stac_version\":\"1.0.0\",\"msft:container\":\"sentinel2-l2\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"sentinel2l2a01\",\"msft:short_description\":\"The Sentinel-2 program provides global imagery in thirteen spectral bands at 10m-60m resolution and a revisit time of approximately five days. This dataset contains the global Sentinel-2 archive, from 2016 to the present, processed to L2A (bottom-of-atmosphere).\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-15A2H-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/926/MOD15_User_Guide_V61.pdf\",\"title\":\"MOD15 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MCD15A2H\",\"title\":\"MCD15A2H file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD15A2H\",\"title\":\"MOD15A2H file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD15A2H\",\"title\":\"MYD15A2H file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MCD15A2H.061\",\"title\":\"LP DAAC - MCD15A2H\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD15A2H.061\",\"title\":\"LP DAAC - MOD15A2H\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD15A2H.061\",\"title\":\"LP DAAC - MYD15A2H\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-15A2H-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Leaf Area Index/FPAR 8-Day\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-15A2H-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Leaf Area Index/FPAR 8-Day thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-15A2H-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2002-07-04T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Vegetation\",\"MCD15A2H\",\"MOD15A2H\",\"MYD15A2H\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Version 6.1 Moderate Resolution Imaging Spectroradiometer (MODIS) Level 4, Combined Fraction of Photosynthetically Active Radiation (FPAR), and Leaf Area Index (LAI) product is an 8-day composite dataset with 500 meter pixel size. The algorithm chooses the best pixel available from within the 8-day period. LAI is defined as the one-sided green leaf area per unit ground area in broadleaf canopies and as one-half the total needle surface area per unit ground area in coniferous canopies. FPAR is defined as the fraction of incident photosynthetically active radiation (400-700 nm) absorbed by the green elements of a vegetation canopy.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"Lai_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Leaf Area Index\",\"description\":\"The one-sided green leaf area per unit ground area in broadleaf canopies and as one-half the total needle surface area per unit ground area in coniferous canopies\",\"raster:bands\":[{\"unit\":\"m^2/m^2\",\"scale\":0.1,\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"Fpar_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Fraction of Photosynthetically Active Radiation\",\"description\":\"The fraction of incident photosynthetically active radiation (400-700 nm) absorbed by the green elements of a vegetation canopy.\",\"raster:bands\":[{\"unit\":\"Percent\",\"scale\":0.01,\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"FparLai_QC\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality for FPAR and LAI\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"FparExtra_QC\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Extra detail Quality for FPAR and LAI\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"LaiStdDev_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Standard deviation of LAI\",\"raster:bands\":[{\"unit\":\"m^2/m^2\",\"scale\":0.1,\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"FparStdDev_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Standard deviation of FPAR\",\"raster:bands\":[{\"unit\":\"Percent\",\"scale\":0.01,\"data_type\":\"uint8\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MCD15A2H.061\",\"citation\":\"Myneni, R., Knyazikhin, Y., & Park, T. (2021). MODIS/Terra+Aqua Leaf Area Index/FPAR 8-Day L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MCD15A2H.061\"},{\"doi\":\"10.5067/MODIS/MOD15A2H.061\",\"citation\":\"Myneni, R., Knyazikhin, Y., & Park, T. (2021). MODIS/Terra Leaf Area Index/FPAR 8-Day L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD15A2H.061\"},{\"doi\":\"10.5067/MODIS/MYD15A2H.061\",\"citation\":\"Myneni, R., Knyazikhin, Y., & Park, T. (2021). MODIS/Aqua Leaf Area Index/FPAR 8-Day L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD15A2H.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Leaf Area Index/FPAR 8-Day\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-11A1-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/715/MOD11_User_Guide_V61.pdf\",\"title\":\"MOD11 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD11A1\",\"title\":\"MOD11A1 file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD11A1\",\"title\":\"MYD11A1 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD11A1.061\",\"title\":\"LP DAAC - MOD11A1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD11A1.061\",\"title\":\"LP DAAC - MYD11A1\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-11A1-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Land Surface Temperature/Emissivity Daily\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-11A1-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Land Surface Temperature/Emissivity Daily thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-11A1-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-24T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Temperature\",\"MOD11A1\",\"MYD11A1\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Moderate Resolution Imaging Spectroradiometer (MODIS) Land Surface Temperature/Emissivity Daily Version 6.1 product provides daily per-pixel Land Surface Temperature and Emissivity (LST&E) with 1 kilometer (km) spatial resolution in a 1,200 by 1,200 km grid. The pixel temperature value is derived from the MOD11_L2 swath product. Above 30 degrees latitude, some pixels may have multiple observations where the criteria for clear-sky are met. When this occurs, the pixel value is a result of the average of all qualifying observations. Provided along with the daytime and nighttime surface temperature bands are associated quality control assessments, observation times, view zenith angles, and clear-sky coverages along with bands 31 and 32 emissivities from land cover types\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"QC_Day\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality control for daytime LST and emissivity\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Emis_31\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 31 emissivity\",\"raster:bands\":[{\"scale\":0.002,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Emis_32\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 32 emissivity\",\"raster:bands\":[{\"scale\":0.002,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"QC_Night\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality control for nighttime LST and emissivity\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"LST_Day_1km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"temperature\"],\"title\":\"Daily daytime 1km grid Land-surface Temperature\",\"raster:bands\":[{\"unit\":\"Kelvin\",\"scale\":0.02,\"data_type\":\"uint16\",\"spatial_resolution\":1000}]},\"Clear_day_cov\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Day clear-sky coverage\",\"raster:bands\":[{\"scale\":0.0005,\"data_type\":\"uint16\",\"spatial_resolution\":1000}]},\"Day_view_angl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"View zenith angle of daytime Landsurface Temperature\",\"raster:bands\":[{\"unit\":\"Degree\",\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Day_view_time\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"(local solar) Time of daytime Land-surface Temperature observation\",\"raster:bands\":[{\"unit\":\"Hours\",\"scale\":0.1,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"LST_Night_1km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"temperature\"],\"title\":\"Daily nighttime 1km grid Land-surface Temperature\",\"raster:bands\":[{\"unit\":\"Kelvin\",\"scale\":0.02,\"data_type\":\"uint16\",\"spatial_resolution\":1000}]},\"Clear_night_cov\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Night clear-sky coverage\",\"raster:bands\":[{\"scale\":0.0005,\"data_type\":\"uint16\",\"spatial_resolution\":1000}]},\"Night_view_angl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"View zenith angle of nighttime Landsurface Temperature\",\"raster:bands\":[{\"unit\":\"Degree\",\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Night_view_time\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"(local solar) Time of nighttime Landsurface Temperature observation\",\"raster:bands\":[{\"unit\":\"Hours\",\"scale\":0.1,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD11A1.061\",\"citation\":\"Wan, Z., Hook, S., & Hulley, G. (2021). MODIS/Terra Land Surface Temperature/Emissivity Daily L3 Global 1km SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD11A1.061\"},{\"doi\":\"10.5067/MODIS/MYD11A1.061\",\"citation\":\"Wan, Z., Hook, S., & Hulley, G. (2021). MODIS/Aqua Land Surface Temperature/Emissivity Daily L3 Global 1km SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD11A1.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Land Surface Temperature/Emissivity Daily\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-15A3H-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/926/MOD15_User_Guide_V61.pdf\",\"title\":\"MOD15 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MCD15A3H\",\"title\":\"MCD15A3H file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MCD15A3H.061\",\"title\":\"LP DAAC - MCD15A3H\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-15A3H-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Leaf Area Index/FPAR 4-Day\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-15A3H-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Leaf Area Index/FPAR 4-Day thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-15A3H-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2002-07-04T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Vegetation\",\"MCD15A3H\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The MCD15A3H Version 6.1 Moderate Resolution Imaging Spectroradiometer (MODIS) Level 4, Combined Fraction of Photosynthetically Active Radiation (FPAR), and Leaf Area Index (LAI) product is a 4-day composite data set with 500 meter pixel size. The algorithm chooses the best pixel available from all the acquisitions of both MODIS sensors located on NASA's Terra and Aqua satellites from within the 4-day period. LAI is defined as the one-sided green leaf area per unit ground area in broadleaf canopies and as one-half the total needle surface area per unit ground area in coniferous canopies. FPAR is defined as the fraction of incident photosynthetically active radiation (400-700 nm) absorbed by the green elements of a vegetation canopy.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"Lai_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Leaf Area Index\",\"raster:bands\":[{\"unit\":\"m^2/m^2\",\"scale\":0.1,\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"Fpar_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Fraction of Photosynthetically Active Radiation\",\"raster:bands\":[{\"unit\":\"Percent\",\"scale\":0.01,\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"FparLai_QC\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality for FPAR and LAI\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"FparExtra_QC\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Extra detail Quality for FPAR and LAI\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"LaiStdDev_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Standard deviation of LAI\",\"raster:bands\":[{\"unit\":\"m^2/m^2\",\"scale\":0.1,\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"FparStdDev_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Standard deviation of FPAR\",\"raster:bands\":[{\"unit\":\"Percent\",\"scale\":0.01,\"data_type\":\"uint8\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MCD15A3H.061\",\"citation\":\"Myneni, R., Knyazikhin, Y., & Park, T. (2021). MODIS/Terra+Aqua Leaf Area Index/FPAR 4-Day L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MCD15A3H.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Leaf Area Index/FPAR 4-Day\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-13A1-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/621/MOD13_User_Guide_V61.pdf\",\"title\":\"MOD13 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD13A1\",\"title\":\"MOD13A1 file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD13A1\",\"title\":\"MYD13A1 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD13A1.061\",\"title\":\"LP DAAC - MOD13A1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD13A1.061\",\"title\":\"LP DAAC - MYD13A1\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-13A1-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Vegetation Indices 16-Day (500m)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-13A1-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Vegetation Indices 16-Day (500m) thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-13A1-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Vegetation\",\"MOD13A1\",\"MYD13A1\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Moderate Resolution Imaging Spectroradiometer (MODIS) Vegetation Indices 16-Day Version 6.1 product provides Vegetation Index (VI) values at a per pixel basis at 500 meter (m) spatial resolution. There are two primary vegetation layers. The first is the Normalized Difference Vegetation Index (NDVI), which is referred to as the continuity index to the existing National Oceanic and Atmospheric Administration-Advanced Very High Resolution Radiometer (NOAA-AVHRR) derived NDVI. The second vegetation layer is the Enhanced Vegetation Index (EVI), which has improved sensitivity over high biomass regions. The algorithm for this product chooses the best available pixel value from all the acquisitions from the 16 day period. The criteria used is low clouds, low view angle, and the highest NDVI/EVI value. Provided along with the vegetation layers and two quality assurance (QA) layers are reflectance bands 1 (red), 2 (near-infrared), 3 (blue), and 7 (mid-infrared), as well as four observation layers.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"500m_16_days_EVI\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"500m 16 days EVI\",\"raster:bands\":[{\"unit\":\"EVI\",\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"500m_16_days_NDVI\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"500m 16 days NDVI\",\"raster:bands\":[{\"unit\":\"NDVI\",\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"500m_16_days_VI_Quality\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VI quality indicators\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":500}]},\"500m_16_days_MIR_reflectance\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Reflectance Band 7\",\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"500m_16_days_NIR_reflectance\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Reflectance Band 2\",\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"500m_16_days_red_reflectance\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Reflectance Band 1\",\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"500m_16_days_blue_reflectance\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Reflectance Band 3\",\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"500m_16_days_sun_zenith_angle\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Sun zenith angle of VI pixel\",\"raster:bands\":[{\"unit\":\"Degree\",\"scale\":0.01,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"500m_16_days_pixel_reliability\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality reliability of VI pixel\",\"raster:bands\":[{\"unit\":\"Rank\",\"data_type\":\"int8\",\"spatial_resolution\":500}],\"classification:classes\":[{\"value\":0,\"description\":\"Good data, use with confidence\"},{\"value\":1,\"description\":\"Marginal data, useful, but look at other QA information\"},{\"value\":2,\"description\":\"Snow/Ice Target covered with snow/ice\"},{\"value\":3,\"description\":\"Cloudy data\"}]},\"500m_16_days_view_zenith_angle\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"View zenith angle of VI Pixel\",\"raster:bands\":[{\"unit\":\"Degree\",\"scale\":0.01,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"500m_16_days_relative_azimuth_angle\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Relative azimuth angle of VI pixel\",\"raster:bands\":[{\"unit\":\"Degree\",\"scale\":0.01,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"500m_16_days_composite_day_of_the_year\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Day of year VI pixel\",\"raster:bands\":[{\"unit\":\"Julian Day\",\"data_type\":\"int16\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD13A1.061\",\"citation\":\"Didan, K. (2021). MODIS/Terra Vegetation Indices 16-Day L3 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD13A1.061\"},{\"doi\":\"10.5067/MODIS/MYD13A1.061\",\"citation\":\"Didan, K. (2021). MODIS/Aqua Vegetation Indices 16-Day L3 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD13A1.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Vegetation Indices 16-Day (500m)\",\"msft:region\":\"westeurope\"},{\"id\":\"daymet-daily-na\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"license\",\"href\":\"https://science.nasa.gov/earth-science/earth-science-data/data-information-policy\",\"title\":\"EOSDIS Data Use Policy\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.3334/ORNLDAAC/1840\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/daymet-daily-na\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Daymet Daily North America\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/daymet-daily-na.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Daymet daily North America map thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://daymet-zarr/daily/na.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"Daily North America Daymet Azure Blob File System Zarr root\",\"description\":\"Azure Blob File System of the daily North America Daymet Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"daymeteuwest\"}},\"zarr-https\":{\"href\":\"https://daymeteuwest.blob.core.windows.net/daymet-zarr/daily/na.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"Daily North America Daymet HTTPS Zarr root\",\"description\":\"HTTPS URI of the daily North America Daymet Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-178.1333,14.0749,-53.0567,82.9143]]},\"temporal\":{\"interval\":[[\"1980-01-01T12:00:00Z\",\"2020-12-30T12:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.3334/ORNLDAAC/1840\",\"keywords\":[\"Daymet\",\"North America\",\"Temperature\",\"Precipitation\",\"Vapor Pressure\",\"Weather\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://doi.org/10.3334/ORNLDAAC/1840\",\"name\":\"ORNL DAAC\",\"roles\":[\"producer\"]}],\"description\":\"Gridded estimates of daily weather parameters. [Daymet](https://daymet.ornl.gov) Version 4 variables include the following parameters: minimum temperature, maximum temperature, precipitation, shortwave radiation, vapor pressure, snow water equivalent, and day length.\\n\\n[Daymet](https://daymet.ornl.gov/) provides measurements of near-surface meteorological conditions; the main purpose is to provide data estimates where no instrumentation exists. The dataset covers the period from January 1, 1980 to the present. Each year is processed individually at the close of a calendar year. Data are in a Lambert conformal conic projection for North America and are distributed in Zarr and NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\n\\nUse the DOI at [https://doi.org/10.3334/ORNLDAAC/1840](https://doi.org/10.3334/ORNLDAAC/1840) to cite your usage of the data.\\n\\nThis dataset provides coverage for Hawaii; North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#daily).\\n\\n\",\"sci:citation\":\"Thornton, M.M., R. Shrestha, P.E. Thornton, S. Kao, Y. Wei, and B.E. Wilson. 2021. Daymet Version 4 Monthly Latency: Daily Surface Weather Data. ORNL DAAC, Oak Ridge, Tennessee, USA. https://doi.org/10.3334/ORNLDAAC/1904\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"daymet\",\"cube:variables\":{\"vp\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"long_name\":\"daily average vapor pressure\",\"cell_methods\":\"area: mean time: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,8075,7814],\"chunks\":[365,284,584],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily average vapor pressure\"},\"lat\":{\"type\":\"auxiliary\",\"unit\":\"degrees_north\",\"attrs\":{\"units\":\"degrees_north\",\"long_name\":\"latitude coordinate\",\"standard_name\":\"latitude\"},\"shape\":[8075,7814],\"chunks\":[284,584],\"dimensions\":[\"y\",\"x\"],\"description\":\"latitude coordinate\"},\"lon\":{\"type\":\"auxiliary\",\"unit\":\"degrees_east\",\"attrs\":{\"units\":\"degrees_east\",\"long_name\":\"longitude coordinate\",\"standard_name\":\"longitude\"},\"shape\":[8075,7814],\"chunks\":[284,584],\"dimensions\":[\"y\",\"x\"],\"description\":\"longitude coordinate\"},\"swe\":{\"type\":\"data\",\"unit\":\"kg/m2\",\"attrs\":{\"units\":\"kg/m2\",\"long_name\":\"snow water equivalent\",\"cell_methods\":\"area: mean time: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,8075,7814],\"chunks\":[365,284,584],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"snow water equivalent\"},\"dayl\":{\"type\":\"data\",\"unit\":\"s\",\"attrs\":{\"units\":\"s\",\"long_name\":\"daylength\",\"cell_methods\":\"area: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,8075,7814],\"chunks\":[365,284,584],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daylength\"},\"prcp\":{\"type\":\"data\",\"unit\":\"mm/day\",\"attrs\":{\"units\":\"mm/day\",\"long_name\":\"daily total precipitation\",\"cell_methods\":\"area: mean time: sum\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,8075,7814],\"chunks\":[365,284,584],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily total precipitation\"},\"srad\":{\"type\":\"data\",\"unit\":\"W/m2\",\"attrs\":{\"units\":\"W/m2\",\"long_name\":\"daylight average incident shortwave radiation\",\"cell_methods\":\"area: mean time: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,8075,7814],\"chunks\":[365,284,584],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daylight average incident shortwave radiation\"},\"tmax\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"daily maximum temperature\",\"cell_methods\":\"area: mean time: maximum\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,8075,7814],\"chunks\":[365,284,584],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily maximum temperature\"},\"tmin\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"daily minimum temperature\",\"cell_methods\":\"area: mean time: minimum\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,8075,7814],\"chunks\":[365,284,584],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily minimum temperature\"},\"yearday\":{\"type\":\"data\",\"attrs\":{\"long_name\":\"day of year (DOY) starting with day 1 on January 1st\"},\"shape\":[14965],\"chunks\":[365],\"dimensions\":[\"time\"],\"description\":\"day of year (DOY) starting with day 1 on January 1st\"},\"time_bnds\":{\"type\":\"data\",\"attrs\":{},\"shape\":[14965,2],\"chunks\":[365,2],\"dimensions\":[\"time\",\"nv\"]},\"lambert_conformal_conic\":{\"type\":\"data\",\"attrs\":{\"false_easting\":0.0,\"false_northing\":0.0,\"semi_major_axis\":6378137.0,\"grid_mapping_name\":\"lambert_conformal_conic\",\"standard_parallel\":[25.0,60.0],\"inverse_flattening\":298.257223563,\"latitude_of_projection_origin\":42.5,\"longitude_of_central_meridian\":-100.0},\"shape\":[],\"dimensions\":[]}},\"msft:container\":\"daymet-zarr\",\"cube:dimensions\":{\"x\":{\"axis\":\"x\",\"step\":1000.0,\"type\":\"spatial\",\"extent\":[-4560250.0,3252750.0],\"description\":\"x coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"y\":{\"axis\":\"y\",\"step\":-1000.0,\"type\":\"spatial\",\"extent\":[-3090000.0,4984000.0],\"description\":\"y coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"nv\":{\"type\":\"count\",\"values\":[0,1],\"description\":\"Size of the 'time_bnds' variable.\"},\"time\":{\"type\":\"temporal\",\"extent\":[\"1980-01-01T12:00:00Z\",\"2020-12-30T12:00:00Z\"],\"description\":\"24-hour day based on local time\"}},\"msft:group_keys\":[\"daily\",\"north america\"],\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"daymeteuwest\",\"msft:short_description\":\"Daily surface weather data on a 1-km grid for North America\",\"msft:region\":\"westeurope\"},{\"id\":\"nrcan-landcover\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"license\",\"href\":\"https://open.canada.ca/en/open-government-licence-canada\",\"title\":\"Open Government Licence - Canada\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/nrcan-landcover\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Land Cover of Canada\",\"assets\":{\"metadata\":{\"href\":\"https://open.canada.ca/data/en/dataset/4e615eae-b90c-420b-adee-2ca35896caf6.jsonld\",\"type\":\"application/json\",\"roles\":[\"metadata\"],\"title\":\"Land cover of Canada metadata\"},\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/nrcan-landcover.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Land cover of Canada thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/nrcan-landcover.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-141.003,41.6755,-52.6174,83.1139]]},\"temporal\":{\"interval\":[[\"2015-01-01T00:00:00Z\",\"2020-01-01T00:00:00Z\"]]}},\"license\":\"OGL-Canada-2.0\",\"keywords\":[\"Land Cover\",\"Remote Sensing\",\"Landsat\",\"North America\",\"Canada\"],\"providers\":[{\"url\":\"https://www.nrcan.gc.ca/maps-tools-publications/satellite-imagery-air-photos/application-development/land-cover/21755\",\"name\":\"Natural Resources Canada | Ressources naturelles Canada\",\"roles\":[\"licensor\",\"processor\",\"producer\"]},{\"url\":\"https://sparkgeo.com\",\"name\":\"Sparkgeo\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"proj:epsg\":[3978],\"label:type\":[\"raster\"],\"label:tasks\":[\"classification\"],\"label:classes\":[{\"name\":\"\",\"classes\":[\"Temperate or sub-polar needleleaf forest\",\"Sub-polar taiga needleleaf forest\",\"Temperate or sub-polar broadleaf deciduous forest\",\"Mixed forest\",\"Temperate or sub-polar shrubland\",\"Temperate or sub-polar grassland\",\"Sub-polar or polar shrubland-lichen-moss\",\"Sub-polar or polar grassland-lichen-moss\",\"Sub-polar or polar barren-lichen-moss\",\"Wetland\",\"Cropland\",\"Barren lands\",\"Urban\",\"Water\",\"Snow and Ice\"]}]},\"description\":\"Collection of Land Cover products for Canada as produced by Natural Resources Canada using Landsat satellite imagery. This collection of cartographic products offers classified Land Cover of Canada at a 30 metre scale, updated on a 5 year basis.\",\"item_assets\":{\"metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"],\"title\":\"Land cover of Canada metadata\"},\"landcover\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"labels\",\"labels-raster\"],\"title\":\"Land cover of Canada COG\",\"proj:epsg\":3978,\"file:values\":[{\"values\":[1],\"summary\":\"Temperate or sub-polar needleleaf forest\"},{\"values\":[2],\"summary\":\"Sub-polar taiga needleleaf forest\"},{\"values\":[5],\"summary\":\"Temperate or sub-polar broadleaf deciduous forest\"},{\"values\":[6],\"summary\":\"Mixed forest\"},{\"values\":[8],\"summary\":\"Temperate or sub-polar shrubland\"},{\"values\":[10],\"summary\":\"Temperate or sub-polar grassland\"},{\"values\":[11],\"summary\":\"Sub-polar or polar shrubland-lichen-moss\"},{\"values\":[12],\"summary\":\"Sub-polar or polar grassland-lichen-moss\"},{\"values\":[13],\"summary\":\"Sub-polar or polar barren-lichen-moss\"},{\"values\":[14],\"summary\":\"Wetland\"},{\"values\":[15],\"summary\":\"Cropland\"},{\"values\":[16],\"summary\":\"Barren lands\"},{\"values\":[17],\"summary\":\"Urban\"},{\"values\":[18],\"summary\":\"Water\"},{\"values\":[19],\"summary\":\"Snow and Ice\"}],\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}]}},\"stac_version\":\"1.0.0\",\"msft:container\":\"landcover\",\"stac_extensions\":[\"https://stac-extensions.github.io/label/v1.0.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"nrcanlandcovereuwest\",\"msft:short_description\":\"Collection of Land Cover products for Canada as produced by Natural Resources Canada using Landsat satellite imagery. This collection of cartographic products offers classified Land Cover of Canada at a 30 metre scale, updated on a 5 year basis.\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-10A2-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD10A2.061\",\"title\":\"MODIS/Terra Snow Cover 8-Day L3 Global 500m SIN Grid, Version 61\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD10A2.061\",\"title\":\"MODIS/Aqua Snow Cover 8-Day L3 Global 500m SIN Grid, Version 61\"},{\"rel\":\"license\",\"href\":\"https://nsidc.org/data/data-programs/nsidc-daac/citing-nsidc-daac\",\"title\":\"Use and Copyright | National Snow and Ice Data Center\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-10A2-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Snow Cover 8-day\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-10A2-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Snow Cover 8-day thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-10A2-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Snow\",\"MOD10A2\",\"MYD10A2\"],\"providers\":[{\"url\":\"https://nsidc.org\",\"name\":\"National Snow and Ice Data Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"This global Level-3 (L3) data set provides the maximum snow cover extent observed over an eight-day period within 10degx10deg MODIS sinusoidal grid tiles. Tiles are generated by compositing 500 m observations from the 'MODIS Snow Cover Daily L3 Global 500m Grid' data set. A bit flag index is used to track the eight-day snow/no-snow chronology for each 500 m cell.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"Maximum_Snow_Extent\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Maximum snow extent over the 8-day period.\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}],\"classification:classes\":[{\"value\":0,\"description\":\"missing data\"},{\"value\":1,\"description\":\"no decision\"},{\"value\":11,\"description\":\"night\"},{\"value\":25,\"description\":\"no snow\"},{\"value\":37,\"description\":\"lake\"},{\"value\":39,\"description\":\"ocean\"},{\"value\":50,\"description\":\"cloud\"},{\"value\":100,\"description\":\"lake ice\"},{\"value\":200,\"description\":\"snow\"},{\"value\":254,\"description\":\"detector saturated\"}]},\"Eight_Day_Snow_Cover\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Snow chronology bit flags for each day in the eight-day observation period.\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD10A2.061\",\"citation\":\"Hall, D. K., & Riggs, G. A. (2021). MODIS/Terra Snow Cover 8-Day L3 Global 500m Grid, Version 61 [Data set]. NASA National Snow and Ice Data Center DAAC. https://doi.org/10.5067/MODIS/MOD10A2.061\"},{\"doi\":\"10.5067/MODIS/MYD10A2.061\",\"citation\":\"Hall, D. K., & Riggs, G. A. (2021). MODIS/Aqua Snow Cover 8-Day L3 Global 500m Grid, Version 61 [Data set]. NASA National Snow and Ice Data Center DAAC. https://doi.org/10.5067/MODIS/MYD10A2.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Snow Cover 8-day\",\"msft:region\":\"westeurope\"},{\"id\":\"ecmwf-forecast\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/licenses/by/4.0/\",\"type\":\"text/html\",\"title\":\"CC-BY-4.0 license\"},{\"rel\":\"documentation\",\"href\":\"https://confluence.ecmwf.int/display/UDOC/ECMWF+Open+Data+-+Real+Time\",\"type\":\"text/html\",\"title\":\"ECMWF Open Data (Real Time) documentation\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/ecmwf-forecast\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ECMWF Open Data (real-time)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/ecmwf-forecast-thumbnail-proj.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-180,90,180,-90]]},\"temporal\":{\"interval\":[[null,null]]}},\"license\":\"CC-BY-4.0\",\"keywords\":[\"ECMWF\",\"forecast\",\"weather\"],\"providers\":[{\"url\":\"https://www.ecmwf.int/\",\"name\":\"ECMWF\",\"roles\":[\"producer\"]}],\"summaries\":{\"ecmwf:types\":[\"ef\",\"ep\",\"fc\",\"tf\"],\"ecmwf:streams\":[\"enfo\",\"mmsf\",\"oper\",\"scda\",\"scwv\",\"waef\",\"wave\"],\"ecmwf:pressure_levels\":[1000,925,850,700,500,300,250,200,50],\"ecmwf:reference_times\":[\"00\",\"06\",\"12\",\"18\"]},\"description\":\"The [ECMWF catalog of real-time products](https://www.ecmwf.int/en/forecasts/datasets/catalogue-ecmwf-real-time-products) offers real-time meterological and oceanographic productions from the ECMWF forecast system. Users should consult the [ECMWF Forecast User Guide](https://confluence.ecmwf.int/display/FUG/1+Introduction) for detailed information on each of the products.\\n\\n## Overview of products\\n\\nThe following diagram shows the publishing schedule of the various products.\\n\\n
\\n\\nThe vertical axis shows the various products, defined below, which are grouped by combinations of `stream`, `forecast type`, and `reference time`. The horizontal axis shows *forecast times* in 3-hour intervals out from the reference time. A black square over a particular forecast time, or step, indicates that a forecast is made for that forecast time, for that particular `stream`, `forecast type`, `reference time` combination.\\n\\n* **stream** is the forecasting system that produced the data. The values are available in the `ecmwf:stream` summary of the STAC collection. They are:\\n \ * `enfo`: [ensemble forecast](https://confluence.ecmwf.int/display/FUG/ENS+-+Ensemble+Forecasts), atmospheric fields\\n * `mmsf`: [multi-model seasonal forecasts](https://confluence.ecmwf.int/display/FUG/Long-Range+%28Seasonal%29+Forecast) fields from the ECMWF model only.\\n * `oper`: [high-resolution forecast](https://confluence.ecmwf.int/display/FUG/HRES+-+High-Resolution+Forecast), atmospheric fields \\n * `scda`: short cut-off high-resolution forecast, atmospheric fields (also known as \\\"high-frequency products\\\")\\n * `scwv`: short cut-off high-resolution forecast, ocean wave fields (also known as \\\"high-frequency products\\\") and\\n * `waef`: [ensemble forecast](https://confluence.ecmwf.int/display/FUG/ENS+-+Ensemble+Forecasts), ocean wave fields,\\n * `wave`: wave model\\n* **type** is the forecast type. The values are available in the `ecmwf:type` summary of the STAC collection. They are:\\n * `fc`: forecast\\n * `ef`: ensemble forecast\\n * `pf`: ensemble probabilities\\n * `tf`: trajectory forecast for tropical cyclone tracks\\n* **reference time** is the hours after midnight when the model was run. Each stream / type will produce assets for different forecast times (steps from the reference datetime) depending on the reference time.\\n\\nVisit the [ECMWF's User Guide](https://confluence.ecmwf.int/display/UDOC/ECMWF+Open+Data+-+Real+Time) for more details on each of the various products.\\n\\nAssets are available for the previous 30 days.\\n\\n## Asset overview\\n\\nThe data are provided as [GRIB2 files](https://confluence.ecmwf.int/display/CKB/What+are+GRIB+files+and+how+can+I+read+them).\\nAdditionally, [index files](https://confluence.ecmwf.int/display/UDOC/ECMWF+Open+Data+-+Real+Time#ECMWFOpenDataRealTime-IndexFilesIndexfiles) are provided, which can be used to read subsets of the data from Azure Blob Storage.\\n\\nWithin each `stream`, `forecast type`, `reference time`, the structure of the data are mostly consistent. Each GRIB2 file will have the\\nsame data variables, coordinates (aside from `time` as the *reference time* changes and `step` as the *forecast time* changes). The exception\\nis the `enfo-ep` and `waef-ep` products, which have more `step`s in the 240-hour forecast than in the 360-hour forecast. \\n\\nSee the example notebook for more on how to access the data.\\n\\n## STAC metadata\\n\\nThe Planetary Computer provides a single STAC item per GRIB2 file. Each GRIB2 file is global in extent, so every item has the same\\n`bbox` and `geometry`.\\n\\nA few custom properties are available on each STAC item, which can be used in searches to narrow down the data to items of interest:\\n\\n* `ecmwf:stream`: The forecasting system (see above for definitions). The full set of values is available in the Collection's summaries.\\n* `ecmwf:type`: The forecast type (see above for definitions). The full set of values is available in the Collection's summaries.\\n* `ecmwf:step`: The offset from the reference datetime, expressed as ``, for example `\\\"3h\\\"` means \\\"3 hours from the reference datetime\\\". \\n* `ecmwf:reference_datetime`: The datetime when the model was run. This indicates when the forecast *was made*, rather than when it's valid for.\\n* `ecmwf:forecast_datetime`: The datetime for which the forecast is valid. This is also set as the item's `datetime`.\\n\\nSee the example notebook for more on how to use the STAC metadata to query for particular data.\\n\\n## Attribution\\n\\nThe products listed and described on this page are available to the public and their use is governed by the [Creative Commons CC-4.0-BY license and the ECMWF Terms of Use](https://apps.ecmwf.int/datasets/licences/general/). This means that the data may be redistributed and used commercially, subject to appropriate attribution.\\n\\nThe following wording should be attached to the use of this ECMWF dataset: \\n\\n1. Copyright statement: Copyright \\\"\xA9 [year] European Centre for Medium-Range Weather Forecasts (ECMWF)\\\".\\n2. Source [www.ecmwf.int](http://www.ecmwf.int/)\\n3. License Statement: This data is published under a Creative Commons Attribution 4.0 International (CC BY 4.0). [https://creativecommons.org/licenses/by/4.0/](https://creativecommons.org/licenses/by/4.0/)\\n4. Disclaimer: ECMWF does not accept any liability whatsoever for any error or omission in the data, their availability, or for any loss or damage arising from their use.\\n5. Where applicable, an indication if the material has been modified and an indication of previous modifications.\\n\\nThe following wording shall be attached to services created with this ECMWF dataset:\\n\\n1. Copyright statement: Copyright \\\"This service is based on data and products of the European Centre for Medium-Range Weather Forecasts (ECMWF)\\\".\\n2. Source www.ecmwf.int\\n3. License Statement: This ECMWF data is published under a Creative Commons Attribution 4.0 International (CC BY 4.0). [https://creativecommons.org/licenses/by/4.0/](https://creativecommons.org/licenses/by/4.0/)\\n4. Disclaimer: ECMWF does not accept any liability whatsoever for any error or omission in the data, their availability, or for any loss or damage arising from their use.\\n5. Where applicable, an indication if the material has been modified and an indication of previous modifications\\n\\n## More information\\n\\nFor more, see the [ECMWF's User Guide](https://confluence.ecmwf.int/display/UDOC/ECMWF+Open+Data+-+Real+Time) and [example notebooks](https://github.com/ecmwf/notebook-examples/tree/master/opencharts).\",\"item_assets\":{\"data\":{\"type\":\"application/wmo-GRIB2\",\"roles\":[\"data\"],\"title\":\"GRIB2 data file\",\"description\":\"The forecast data, as a grib2 file. Subsets of the data can be loaded using information from the associated index file.\"},\"index\":{\"type\":\"application/x-ndjson\",\"roles\":[\"index\"],\"title\":\"Index file\",\"description\":\"The index file contains information on each message within the GRIB2 file.\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:container\":\"ecmwf\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"ECMWF Open Data (Real Time) forecasts\"},{\"id\":\"noaa-mrms-qpe-24h-pass2\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2\"},{\"rel\":\"license\",\"href\":\"https://www.nssl.noaa.gov/projects/mrms/nmq_data_policy_OGCrevised.pdf\",\"type\":\"application/pdf\",\"title\":\"MRMS Dataset Sharing Policy\"},{\"rel\":\"about\",\"href\":\"https://mrms.nssl.noaa.gov\",\"type\":\"text/html\",\"title\":\"MRMS Homepage\"},{\"rel\":\"about\",\"href\":\"https://vlab.noaa.gov/web/wdtd/-/multi-sensor-qpe-1?selectedFolder=9234881\",\"type\":\"text/html\",\"title\":\"MRMS QPE Technical Product Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-mrms-qpe-24h-pass2\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"NOAA MRMS QPE 24-Hour Pass 2\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-mrms-qpe-24h-pass2-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"NOAA MRMS QPE 24-Hour Pass 2 Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-mrms-qpe-24h-pass2.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"QS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-176.0,9.0,150.0,72.0],[-130.0,20.0,-60.0,55.0],[-164.0,15.0,-151.0,26.0],[140.0,9.0,150.0,18.0],[-176.0,50.0,-126.0,72.0],[-90.0,10.0,-60.0,25.0]]},\"temporal\":{\"interval\":[[\"2022-07-21T20:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NOAA\",\"MRMS\",\"QPE\",\"Precipitation\",\"Weather\",\"United States\",\"Guam\",\"Caribbean\"],\"providers\":[{\"url\":\"https://www.nssl.noaa.gov/projects/mrms\",\"name\":\"NOAA National Severe Storms Laboratory\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"noaa_mrms_qpe:pass\":[2],\"noaa_mrms_qpe:period\":[24],\"noaa_mrms_qpe:region\":[\"CONUS\",\"HAWAII\",\"GUAM\",\"ALASKA\",\"CARIB\"]},\"description\":\"The [Multi-Radar Multi-Sensor (MRMS) Quantitative Precipitation Estimation (QPE)](https://www.nssl.noaa.gov/projects/mrms/) products are seamless 1-km mosaics of precipitation accumulation covering the continental United States, Alaska, Hawaii, the Caribbean, and Guam. The products are automatically generated through integration of data from multiple radars and radar networks, surface and satellite observations, numerical weather prediction (NWP) models, and climatology. The products are updated hourly at the top of the hour.\\n\\nMRMS QPE is available as a \\\"Pass 1\\\" or \\\"Pass 2\\\" product. The Pass 1 product is available with a 60-minute latency and includes 60-65% of gauges. The Pass 2 product has a higher latency of 120 minutes, but includes 99% of gauges. The Pass 1 and Pass 2 products are broken into 1-, 3-, 6-, 12-, 24-, 48-, and 72-hour accumulation sub-products.\\n\\nThis Collection contains the **24-Hour Pass 2** sub-product, i.e., 24-hour cumulative precipitation accumulation with a 2-hour latency. The data are available in [Cloud Optimized GeoTIFF](https://www.cogeo.org/) format as well as the original source GRIB2 format files. The GRIB2 files are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\",\"item_assets\":{\"cog\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Processed Cloud Optimized GeoTIFF file\",\"raster:bands\":[{\"unit\":\"mm\",\"data_type\":\"float64\",\"spatial_resolution\":1000}]},\"grib2\":{\"type\":\"application/wmo-GRIB2\",\"roles\":[\"data\"],\"title\":\"Original GRIB2 file\",\"raster:bands\":[{\"unit\":\"mm\",\"data_type\":\"float64\",\"spatial_resolution\":1000}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-mrms-qpe\",\"msft:container\":\"mrms-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/noaa-mrms-qpe/v1.0.0/schema.json\"],\"msft:storage_account\":\"mrms\",\"msft:short_description\":\"Integrated multi-sensor cumulative precipitation estimate for the past 24 hours with a 2-hour latency.\",\"msft:region\":\"westeurope\"},{\"id\":\"nasadem\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"Public Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/nasadem\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"NASADEM HGT v001\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/nasadem.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"NASADEM\"},\"geoparquet-items\":{\"href\":\"abfs://items/nasadem.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-179.000139,-56.000139,179.000139,61.000139]]},\"temporal\":{\"interval\":[[\"2000-02-20T00:00:00Z\",\"2000-02-20T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"JPL\",\"Elevation\",\"DEM\",\"USGS\",\"NGA\",\"SRTM\"],\"providers\":[{\"url\":\"https://earthdata.nasa.gov/esds/competitive-programs/measures/nasadem\",\"name\":\"NASA\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://trs.jpl.nasa.gov/handle/2014/46123\",\"name\":\"JPL\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://lpdaac.usgs.gov/products/nasadem_hgtv001/\",\"name\":\"USGS\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://doi.org/10.5069/G93T9FD9\",\"name\":\"OpenTopography\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[30]},\"description\":\"[NASADEM](https://earthdata.nasa.gov/esds/competitive-programs/measures/nasadem) provides global topographic data at 1 arc-second (~30m) horizontal resolution, derived primarily from data captured via the [Shuttle Radar Topography Mission](https://www2.jpl.nasa.gov/srtm/) (SRTM).\\n\\n\",\"item_assets\":{\"elevation\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Elevation\"}},\"stac_version\":\"1.0.0\",\"msft:container\":\"nasadem-cog\",\"stac_extensions\":[\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"nasademeuwest\",\"msft:short_description\":\"Global topographic data at 1 arc-second (~30m) horizontal resolution, derived primarily from data captured via the Shuttle Radar Topography Mission\",\"msft:region\":\"westeurope\"},{\"id\":\"io-lulc\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"related\",\"href\":\"https://livingatlas.arcgis.com/landcover/\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/licenses/by/4.0/\",\"type\":\"text/html\",\"title\":\"CC BY 4.0\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/io-lulc\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Esri 10-Meter Land Cover (10-class)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/io-lulc.png\",\"title\":\"Esri 10-Meter Land Cover\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/io-lulc.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2017-01-01T00:00:00Z\",\"2021-01-01T00:00:00Z\"]]}},\"license\":\"CC-BY-4.0\",\"keywords\":[\"Global\",\"Land Cover\",\"Land Use\",\"Sentinel\"],\"providers\":[{\"url\":\"https://www.esri.com/\",\"name\":\"Esri\",\"roles\":[\"licensor\"]},{\"url\":\"https://www.impactobservatory.com/\",\"name\":\"Impact Observatory\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"raster:bands\":[{\"nodata\":0,\"spatial_resolution\":10}],\"label:classes\":[{\"name\":\"\",\"classes\":[\"nodata\",\"water\",\"trees\",\"grass\",\"flooded veg\",\"crops\",\"scrub\",\"built area\",\"bare\",\"snow/ice\",\"clouds\"]}]},\"description\":\"__Note__: _A new version of this item is available for your use. This mature version of the map remains available for use in existing applications. This item will be retired in December 2024. There is 2020 data available in the newer [9-class dataset](https://planetarycomputer.microsoft.com/dataset/io-lulc-9-class)._\\n\\nGlobal estimates of 10-class land use/land cover (LULC) for 2020, derived from ESA Sentinel-2 imagery at 10m resolution. This dataset was generated by [Impact Observatory](http://impactobservatory.com/), who used billions of human-labeled pixels (curated by the National Geographic Society) to train a deep learning model for land classification. The global map was produced by applying this model to the relevant yearly Sentinel-2 scenes on the Planetary Computer.\\n\\nThis dataset is also available on the [ArcGIS Living Atlas of the World](https://livingatlas.arcgis.com/landcover/).\\n\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Global land cover data\",\"file:values\":[{\"values\":[0],\"summary\":\"No Data\"},{\"values\":[1],\"summary\":\"Water\"},{\"values\":[2],\"summary\":\"Trees\"},{\"values\":[3],\"summary\":\"Grass\"},{\"values\":[4],\"summary\":\"Flooded vegetation\"},{\"values\":[5],\"summary\":\"Crops\"},{\"values\":[6],\"summary\":\"Scrub/shrub\"},{\"values\":[7],\"summary\":\"Built area\"},{\"values\":[8],\"summary\":\"Bare ground\"},{\"values\":[9],\"summary\":\"Snow/ice\"},{\"values\":[10],\"summary\":\"Clouds\"}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"io-land-cover\",\"msft:container\":\"io-lulc\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/label/v1.0.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Global land cover information for 2020 at 10m resolution\",\"msft:region\":\"westeurope\"},{\"id\":\"landsat-c2-l1\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9AF14YV\",\"title\":\"Landsat 1-5 MSS Collection 2 Level-1\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/core-science-systems/hdds/data-policy\",\"title\":\"Public Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/landsat-c2-l1\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Landsat Collection 2 Level-1\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/landsat-c2-l1-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Landsat Collection 2 Level-1 thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/landsat-c2-l1.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-90.0,180.0,90.0]]},\"temporal\":{\"interval\":[[\"1972-07-25T00:00:00Z\",\"2013-01-07T23:23:59Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Landsat\",\"USGS\",\"NASA\",\"Satellite\",\"Global\",\"Imagery\"],\"providers\":[{\"url\":\"https://landsat.gsfc.nasa.gov/\",\"name\":\"NASA\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://www.usgs.gov/landsat-missions/landsat-collection-2-level-1-data\",\"name\":\"USGS\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[79],\"sci:doi\":[\"10.5066/P9AF14YV\"],\"eo:bands\":[{\"name\":\"B4\",\"common_name\":\"green\",\"description\":\"Visible green (Landsat 1-3 Band B4)\",\"center_wavelength\":0.55,\"full_width_half_max\":0.1},{\"name\":\"B5\",\"common_name\":\"red\",\"description\":\"Visible red (Landsat 1-3 Band B5)\",\"center_wavelength\":0.65,\"full_width_half_max\":0.1},{\"name\":\"B6\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Landsat 1-3 Band B6)\",\"center_wavelength\":0.75,\"full_width_half_max\":0.1},{\"name\":\"B7\",\"common_name\":\"nir09\",\"description\":\"Near infrared (Landsat 1-3 Band B7)\",\"center_wavelength\":0.95,\"full_width_half_max\":0.3},{\"name\":\"B1\",\"common_name\":\"green\",\"description\":\"Visible green (Landsat 4-5 Band B1)\",\"center_wavelength\":0.55,\"full_width_half_max\":0.1},{\"name\":\"B2\",\"common_name\":\"red\",\"description\":\"Visible red (Landsat 4-5 Band B2)\",\"center_wavelength\":0.65,\"full_width_half_max\":0.1},{\"name\":\"B3\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Landsat 4-5 Band B3)\",\"center_wavelength\":0.75,\"full_width_half_max\":0.1},{\"name\":\"B4\",\"common_name\":\"nir09\",\"description\":\"Near infrared (Landsat 4-5 Band B4)\",\"center_wavelength\":0.95,\"full_width_half_max\":0.3}],\"platform\":[\"landsat-1\",\"landsat-2\",\"landsat-3\",\"landsat-4\",\"landsat-5\"],\"instruments\":[\"mss\"],\"view:off_nadir\":[0]},\"description\":\"Landsat Collection 2 Level-1 data, consisting of quantized and calibrated scaled Digital Numbers (DN) representing the multispectral image data. These [Level-1](https://www.usgs.gov/landsat-missions/landsat-collection-2-level-1-data) data can be [rescaled](https://www.usgs.gov/landsat-missions/using-usgs-landsat-level-1-data-product) to top of atmosphere (TOA) reflectance and/or radiance. Thermal band data can be rescaled to TOA brightness temperature.\\n\\nThis dataset represents the global archive of Level-1 data from [Landsat Collection 2](https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-2) acquired by the [Multispectral Scanner System](https://landsat.gsfc.nasa.gov/multispectral-scanner-system/) onboard Landsat 1 through Landsat 5 from July 7, 1972 to January 7, 2013. Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\n\",\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Red Band\",\"eo:bands\":[{\"common_name\":\"red\",\"description\":\"Visible red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.1}],\"raster:bands\":[{\"unit\":\"watt/steradian/square_meter/micrometer\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":60}]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Green Band\",\"eo:bands\":[{\"common_name\":\"green\",\"description\":\"Visible green\",\"center_wavelength\":0.55,\"full_width_half_max\":0.1}],\"raster:bands\":[{\"unit\":\"watt/steradian/square_meter/micrometer\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":60}]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Near Infrared Band 0.8\",\"eo:bands\":[{\"common_name\":\"nir08\",\"description\":\"Near infrared\",\"center_wavelength\":0.75,\"full_width_half_max\":0.1}],\"raster:bands\":[{\"unit\":\"watt/steradian/square_meter/micrometer\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":60}]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Near Infrared Band 0.9\",\"eo:bands\":[{\"common_name\":\"nir09\",\"description\":\"Near infrared\",\"center_wavelength\":0.95,\"full_width_half_max\":0.3}],\"raster:bands\":[{\"unit\":\"watt/steradian/square_meter/micrometer\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":60}]},\"mtl.txt\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Product Metadata File (txt)\",\"description\":\"Collection 2 Level-1 Product Metadata File (txt)\"},\"mtl.xml\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata File (xml)\"},\"mtl.json\":{\"type\":\"application/json\",\"roles\":[\"metadata\"],\"title\":\"Product Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata File (json)\"},\"qa_pixel\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"cloud\"],\"title\":\"Pixel Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality Assessment Band (QA_PIXEL)\",\"raster:bands\":[{\"unit\":\"bit index\",\"nodata\":1,\"data_type\":\"uint16\",\"spatial_resolution\":60}],\"classification:bitfields\":[{\"name\":\"fill\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_fill\",\"value\":0,\"description\":\"Image data\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Fill data\"}],\"description\":\"Image or fill data\"},{\"name\":\"cloud\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_cloud\",\"value\":0,\"description\":\"Cloud confidence is not high\"},{\"name\":\"cloud\",\"value\":1,\"description\":\"High confidence cloud\"}],\"description\":\"Cloud mask\"},{\"name\":\"cloud_confidence\",\"length\":2,\"offset\":8,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence cloud\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cloud\"}],\"description\":\"Cloud confidence levels\"}]},\"qa_radsat\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"saturation\"],\"title\":\"Radiometric Saturation and Dropped Pixel Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation and Dropped Pixel Quality Assessment Band (QA_RADSAT)\",\"raster:bands\":[{\"unit\":\"bit index\",\"data_type\":\"uint16\",\"spatial_resolution\":60}],\"classification:bitfields\":[{\"name\":\"band1\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band 1 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 1 saturated\"}],\"description\":\"Band 1 radiometric saturation\"},{\"name\":\"band2\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band 2 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 2 saturated\"}],\"description\":\"Band 2 radiometric saturation\"},{\"name\":\"band3\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band 3 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 3 saturated\"}],\"description\":\"Band 3 radiometric saturation\"},{\"name\":\"band4\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band 4 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 4 saturated\"}],\"description\":\"Band 4 radiometric saturation\"},{\"name\":\"band5\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band 5 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 5 saturated\"}],\"description\":\"Band 5 radiometric saturation\"},{\"name\":\"band6\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band 6 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 6 saturated\"}],\"description\":\"Band 6 radiometric saturation\"},{\"name\":\"band7\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band 7 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 7 saturated\"}],\"description\":\"Band 7 radiometric saturation\"},{\"name\":\"dropped\",\"length\":1,\"offset\":9,\"classes\":[{\"name\":\"not_dropped\",\"value\":0,\"description\":\"Detector has a value - pixel present\"},{\"name\":\"dropped\",\"value\":1,\"description\":\"Detector does not have a value - no data\"}],\"description\":\"Dropped pixel\"}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"landsat\",\"msft:container\":\"landsat-c2\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"landsateuwest\",\"msft:short_description\":\"Landsat Collection 2 Level-1 data from the Multispectral Scanner System (MSS) onboard Landsat 1 through Landsat 5.\",\"msft:region\":\"westeurope\"},{\"id\":\"drcog-lulc\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc\"},{\"rel\":\"license\",\"href\":\"https://drcog.org/legal-terms\",\"type\":\"text/html\",\"title\":\"DRCOG Legal Terms\"},{\"rel\":\"describedby\",\"href\":\"https://gis.drcog.org/rdc/supplemental/lulc_pilot_report.zip\",\"type\":\"application/zip\",\"title\":\"Supplemental Information\"},{\"rel\":\"original\",\"href\":\"https://landcoverarchive.s3.amazonaws.com/2018/lulc_pilot_raster_2018.zip\",\"type\":\"application/zip\",\"title\":\"Land_Cover_Raster_Data_2018\"},{\"rel\":\"original\",\"href\":\"https://landcoverarchive.s3.amazonaws.com/2020/DRCOG_2020_Landcover.zip\",\"type\":\"application/zip\",\"title\":\"Land_Cover_Raster_Data_2020\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/drcog-lulc\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Denver Regional Council of Governments Land Use Land Cover\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/drcog-lulc.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"DRCOG LULC\"},\"geoparquet-items\":{\"href\":\"abfs://items/drcog-lulc.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-105.93962510864995,39.10438697007073,-103.66801443832743,40.320593119647256],[-105.54671456161505,39.54013841830152,-104.46335720577567,39.94430501943824]]},\"temporal\":{\"interval\":[[\"2018-01-01T00:00:00Z\",\"2020-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Land Cover\",\"Land Use\",\"NAIP\",\"USDA\"],\"providers\":[{\"url\":\"https://drcog.org/services-and-resources/data-maps-and-modeling/regional-land-use-land-cover-project\",\"name\":\"Denver Regional Council of Governments\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"mission\":[\"2018 DRCOG LULC pilot study covering 1,000 square miles\",\"2020 DRCOG LULC study covering 6,000 square miles\"]},\"description\":\"The [Denver Regional Council of Governments (DRCOG) Land Use/Land Cover (LULC)](https://drcog.org/services-and-resources/data-maps-and-modeling/regional-land-use-land-cover-project) datasets are developed in partnership with the [Babbit Center for Land and Water Policy](https://www.lincolninst.edu/our-work/babbitt-center-land-water-policy) and the [Chesapeake Conservancy](https://www.chesapeakeconservancy.org/)'s Conservation Innovation Center (CIC). DRCOG LULC includes 2018 data at 3.28ft (1m) resolution covering 1,000 square miles and 2020 data at 1ft resolution covering 6,000 square miles of the Denver, Colorado region. The classification data is derived from the USDA's 1m National Agricultural Imagery Program (NAIP) aerial imagery and leaf-off aerial ortho-imagery captured as part of the [Denver Regional Aerial Photography Project](https://drcog.org/services-and-resources/data-maps-and-modeling/denver-regional-aerial-photography-project) (6in resolution everywhere except the mountainous regions to the west, which are 1ft resolution).\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"DRCOG LULC\",\"description\":\"Denver Regional Council of Governments (DRCOG) Land Use Land Cover (LULC) Classifications\",\"raster:bands\":[{\"unit\":\"usft\",\"sampling\":\"area\",\"data_type\":\"uint8\",\"description\":\"Classification values\"}],\"classification:classes\":[{\"value\":1,\"color_hint\":\"FF0000\",\"description\":\"Structures\"},{\"value\":2,\"color_hint\":\"B2B2B2\",\"description\":\"Impervious Surfaces\"},{\"value\":3,\"color_hint\":\"00A9E6\",\"description\":\"Water\"},{\"value\":4,\"color_hint\":\"C7D79E\",\"description\":\"Prairie/Grassland/Natural Ground Cover\"},{\"value\":5,\"color_hint\":\"267300\",\"description\":\"Tree Canopy\"},{\"value\":6,\"color_hint\":\"70A800\",\"description\":\"Turf/Irrigated Land\"},{\"value\":7,\"color_hint\":\"FFEBAF\",\"description\":\"Barren Land\"},{\"value\":8,\"color_hint\":\"FFAE42\",\"description\":\"Cropland\"}]}},\"stac_version\":\"1.0.0\",\"msft:container\":\"drcog-lulc\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.1.0/schema.json\"],\"msft:storage_account\":\"landcoverdata\",\"msft:short_description\":\"2018 and 2020 Land Use/Land Cover classification of the Denver, Colorado region.\",\"msft:region\":\"westeurope\"},{\"id\":\"chesapeake-lc-7\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"describedby\",\"href\":\"https://www.chesapeakeconservancy.org/wp-content/uploads/2020/06/Chesapeake_Conservancy_LandCover101Guide_June2020.pdf\",\"type\":\"application/pdf\",\"title\":\"User Guide\"},{\"rel\":\"license\",\"href\":\"https://www.chesapeakeconservancy.org/conservation-innovation-center/precision-conservation/chesapeake-bay-program/\",\"type\":\"text/html\",\"title\":\"Data Availability Description\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/chesapeake-lc-7\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Chesapeake Land Cover (7-class)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/chesapeake-lc-7-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Chesapeake Land Cover (7-class) Thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-81.14658496196135,36.21291717905733,-73.27357561029186,44.77821441524524]]},\"temporal\":{\"interval\":[[\"2013-01-01T00:00:00Z\",\"2014-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Land Cover\",\"Chesapeake Bay Watershed\",\"Chesapeake Conservancy\"],\"providers\":[{\"url\":\"https://www.chesapeakeconservancy.org/conservation-innovation-center/high-resolution-data/land-cover-data-project/\",\"name\":\"Chesapeake Conservancy Conservation Innovation Center\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"description\":\"A high-resolution 1-meter [land cover data product](https://www.chesapeakeconservancy.org/conservation-innovation-center/high-resolution-data/land-cover-data-project/) in raster format for the entire Chesapeake Bay watershed based on 2013-2014 imagery from the National Agriculture Imagery Program (NAIP). The product area encompasses over 250,000 square kilometers in New York, Pennsylvania, Maryland, Delaware, West Virginia, Virginia, and the District of Columbia. The dataset was created by the [Chesapeake Conservancy](https://www.chesapeakeconservancy.org/) [Conservation Innovation Center](https://www.chesapeakeconservancy.org/conservation-innovation-center/) for the [Chesapeake Bay Program](https://www.chesapeakebay.net/), which is a regional partnership of EPA, other federal, state, and local agencies and governments, nonprofits, and academic institutions, that leads and directs Chesapeake Bay restoration efforts. \\n\\nThe dataset is composed of a uniform set of 7 land cover classes. Additional information is available in a [User Guide](https://www.chesapeakeconservancy.org/wp-content/uploads/2020/06/Chesapeake_Conservancy_LandCover101Guide_June2020.pdf). Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Land Cover Classes\",\"raster:bands\":[{\"nodata\":15,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":1}],\"classification:classes\":[{\"value\":1,\"color-hint\":\"00C5FF\",\"description\":\"Water\"},{\"value\":2,\"color-hint\":\"267300\",\"description\":\"Tree Canopy and Shrubs\"},{\"value\":3,\"color-hint\":\"A3FF73\",\"description\":\"Low Vegetation\"},{\"value\":4,\"color-hint\":\"FFAA00\",\"description\":\"Barren\"},{\"value\":5,\"color-hint\":\"9C9C9C\",\"description\":\"Impervious Surfaces\"},{\"value\":6,\"color-hint\":\"000000\",\"description\":\"Impervious Roads\"},{\"value\":7,\"color-hint\":\"C500FF\",\"description\":\"Aberdeen Proving Ground\"}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"chesapeake-lulc\",\"msft:container\":\"chesapeake\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\"],\"msft:storage_account\":\"landcoverdata\",\"msft:short_description\":\"Chesapeake Bay Watershed land cover product with 7 classes at 1m resolution.\",\"msft:region\":\"westeurope\"},{\"id\":\"chesapeake-lc-13\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"describedby\",\"href\":\"https://www.chesapeakeconservancy.org/wp-content/uploads/2020/06/Chesapeake_Conservancy_LandCover101Guide_June2020.pdf\",\"type\":\"application/pdf\",\"title\":\"User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://www.chesapeakeconservancy.org/wp-content/uploads/2020/03/LC_Class_Descriptions.pdf\",\"type\":\"application/pdf\",\"title\":\"Class Descriptions\"},{\"rel\":\"license\",\"href\":\"https://www.chesapeakeconservancy.org/conservation-innovation-center/precision-conservation/chesapeake-bay-program/\",\"type\":\"text/html\",\"title\":\"Data Availability Description\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/chesapeake-lc-13\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Chesapeake Land Cover (13-class)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/chesapeake-lc-13-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Chesapeake Land Cover (13-class) Thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-81.14658496196135,36.21291717905733,-73.27357561029186,44.77821441524524]]},\"temporal\":{\"interval\":[[\"2013-01-01T00:00:00Z\",\"2014-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Land Cover\",\"Chesapeake Bay Watershed\",\"Chesapeake Conservancy\"],\"providers\":[{\"url\":\"https://www.chesapeakeconservancy.org/conservation-innovation-center/high-resolution-data/land-cover-data-project/\",\"name\":\"Chesapeake Conservancy Conservation Innovation Center\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"description\":\"A high-resolution 1-meter [land cover data product](https://www.chesapeakeconservancy.org/conservation-innovation-center/high-resolution-data/land-cover-data-project/) in raster format for the entire Chesapeake Bay watershed based on 2013-2014 imagery from the National Agriculture Imagery Program (NAIP). The product area encompasses over 250,000 square kilometers in New York, Pennsylvania, Maryland, Delaware, West Virginia, Virginia, and the District of Columbia. The dataset was created by the [Chesapeake Conservancy](https://www.chesapeakeconservancy.org/) [Conservation Innovation Center](https://www.chesapeakeconservancy.org/conservation-innovation-center/) for the [Chesapeake Bay Program](https://www.chesapeakebay.net/), which is a regional partnership of EPA, other federal, state, and local agencies and governments, nonprofits, and academic institutions, that leads and directs Chesapeake Bay restoration efforts. \\n\\nThe dataset is composed of 13 land cover classes, although not all classes are used in all areas. Additional information is available in a [User Guide](https://www.chesapeakeconservancy.org/wp-content/uploads/2020/06/Chesapeake_Conservancy_LandCover101Guide_June2020.pdf) and [Class Description](https://www.chesapeakeconservancy.org/wp-content/uploads/2020/03/LC_Class_Descriptions.pdf) document. Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Land Cover Classes\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":1}],\"classification:classes\":[{\"value\":1,\"color-hint\":\"00C5FF\",\"description\":\"Water\"},{\"value\":2,\"color-hint\":\"00A884\",\"description\":\"Emergent Wetlands\"},{\"value\":3,\"color-hint\":\"267300\",\"description\":\"Tree Canopy\"},{\"value\":4,\"color-hint\":\"4CE600\",\"description\":\"Shrubland\"},{\"value\":5,\"color-hint\":\"A3FF73\",\"description\":\"Low Vegetation\"},{\"value\":6,\"color-hint\":\"FFAA00\",\"description\":\"Barren\"},{\"value\":7,\"color-hint\":\"FF0000\",\"description\":\"Structures\"},{\"value\":8,\"color-hint\":\"9C9C9C\",\"description\":\"Impervious Surfaces\"},{\"value\":9,\"color-hint\":\"000000\",\"description\":\"Impervious Roads\"},{\"value\":10,\"color-hint\":\"737300\",\"description\":\"Tree Canopy over Structures\"},{\"value\":11,\"color-hint\":\"E6E600\",\"description\":\"Tree Canopy over Impervious Surfaces\"},{\"value\":12,\"color-hint\":\"FFFF73\",\"description\":\"Tree Canopy over impervious Roads\"},{\"value\":13,\"color-hint\":\"C500FF\",\"description\":\"Aberdeen Proving Ground\"}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"chesapeake-lulc\",\"msft:container\":\"chesapeake\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\"],\"msft:storage_account\":\"landcoverdata\",\"msft:short_description\":\"Chesapeake Bay Watershed land cover product with 13 classes at 1m resolution.\",\"msft:region\":\"westeurope\"},{\"id\":\"chesapeake-lu\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"describedby\",\"href\":\"https://www.chesapeakeconservancy.org/wp-content/uploads/2018/11/2013-Phase-6-Mapped-Land-Use-Definitions-Updated-PC-11302018.pdf\",\"type\":\"application/pdf\",\"title\":\"Class Descriptions\"},{\"rel\":\"license\",\"href\":\"https://www.chesapeakeconservancy.org/conservation-innovation-center/precision-conservation/chesapeake-bay-program/\",\"type\":\"text/html\",\"title\":\"Data Availability Description\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/chesapeake-lu\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Chesapeake Land Use\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/chesapeake-lu-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Chesapeake Land Use Thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-81.14648244566828,36.18730972451623,-73.11082086653798,44.7781991560751]]},\"temporal\":{\"interval\":[[\"2013-01-01T00:00:00Z\",\"2014-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Land Use\",\"Chesapeake Bay Watershed\",\"Chesapeake Conservancy\"],\"providers\":[{\"url\":\"https://www.chesapeakeconservancy.org/conservation-innovation-center/high-resolution-data/land-use-data-project/\",\"name\":\"Chesapeake Conservancy Conservation Innovation Center\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"description\":\"A high-resolution 1-meter [land use data product](https://www.chesapeakeconservancy.org/conservation-innovation-center/high-resolution-data/land-use-data-project/) in raster format for the entire Chesapeake Bay watershed. The dataset was created by modifying the 2013-2014 high-resolution [land cover dataset](https://www.chesapeakeconservancy.org/conservation-innovation-center/high-resolution-data/land-cover-data-project/) using 13 ancillary datasets including data on zoning, land use, parcel boundaries, landfills, floodplains, and wetlands. The product area encompasses over 250,000 square kilometers in New York, Pennsylvania, Maryland, Delaware, West Virginia, Virginia, and the District of Columbia. The dataset was created by the [Chesapeake Conservancy](https://www.chesapeakeconservancy.org/) [Conservation Innovation Center](https://www.chesapeakeconservancy.org/conservation-innovation-center/) for the [Chesapeake Bay Program](https://www.chesapeakebay.net/), which is a regional partnership of EPA, other federal, state, and local agencies and governments, nonprofits, and academic institutions that leads and directs Chesapeake Bay restoration efforts.\\n\\nThe dataset is composed of 17 land use classes in Virginia and 16 classes in all other jurisdictions. Additional information is available in a land use [Class Description](https://www.chesapeakeconservancy.org/wp-content/uploads/2018/11/2013-Phase-6-Mapped-Land-Use-Definitions-Updated-PC-11302018.pdf) document. Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Land Use Classes\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":1}],\"classification:classes\":[{\"value\":1,\"color-hint\":\"000000\",\"description\":\"Impervious Roads\"},{\"value\":2,\"color-hint\":\"730000\",\"description\":\"Impervious Non-Roads\"},{\"value\":3,\"color-hint\":\"55FF00\",\"description\":\"Tree Canopy over Impervious Surfaces\"},{\"value\":4,\"color-hint\":\"0070FF\",\"description\":\"Water\"},{\"value\":5,\"color-hint\":\"00FFC5\",\"description\":\"Tidal Wetlands\"},{\"value\":6,\"color-hint\":\"00E6A9\",\"description\":\"Floodplain Wetlands\"},{\"value\":7,\"color-hint\":\"00E6A9\",\"description\":\"Other Wetlands\"},{\"value\":8,\"color-hint\":\"267300\",\"description\":\"Forest\"},{\"value\":9,\"color-hint\":\"AAFF00\",\"description\":\"Tree Canopy over Turf Grass\"},{\"value\":10,\"color-hint\":\"A87000\",\"description\":\"Mixed Open\"},{\"value\":11,\"color-hint\":\"FFBEE8\",\"description\":\"Fractional Turf (small)\"},{\"value\":12,\"color-hint\":\"FFBEE8\",\"description\":\"Fractional Turf (medium)\"},{\"value\":13,\"color-hint\":\"FFBEE8\",\"description\":\"Fractional Turf (large)\"},{\"value\":14,\"color-hint\":\"C500FF\",\"description\":\"Fractional Impervious\"},{\"value\":15,\"color-hint\":\"FFFF73\",\"description\":\"Turf Grass\"},{\"value\":16,\"color-hint\":\"E69800\",\"description\":\"Cropland\"},{\"value\":17,\"color-hint\":\"E69800\",\"description\":\"Pasture/Hay\"}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"chesapeake-lulc\",\"msft:container\":\"chesapeake\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\"],\"msft:storage_account\":\"landcoverdata\",\"msft:short_description\":\"Chesapeake Bay Watershed land use product with 17 classes at 1m resolution.\",\"msft:region\":\"westeurope\"},{\"id\":\"noaa-mrms-qpe-1h-pass1\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1\"},{\"rel\":\"license\",\"href\":\"https://www.nssl.noaa.gov/projects/mrms/nmq_data_policy_OGCrevised.pdf\",\"type\":\"application/pdf\",\"title\":\"MRMS Dataset Sharing Policy\"},{\"rel\":\"about\",\"href\":\"https://mrms.nssl.noaa.gov\",\"type\":\"text/html\",\"title\":\"MRMS Homepage\"},{\"rel\":\"about\",\"href\":\"https://vlab.noaa.gov/web/wdtd/-/multi-sensor-qpe-1?selectedFolder=9234881\",\"type\":\"text/html\",\"title\":\"MRMS QPE Technical Product Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-mrms-qpe-1h-pass1\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"NOAA MRMS QPE 1-Hour Pass 1\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-mrms-qpe-1h-pass1-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"NOAA MRMS QPE 1-Hour Pass 1 Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-mrms-qpe-1h-pass1.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"QS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-176.0,9.0,150.0,72.0],[-130.0,20.0,-60.0,55.0],[-164.0,15.0,-151.0,26.0],[140.0,9.0,150.0,18.0],[-176.0,50.0,-126.0,72.0],[-90.0,10.0,-60.0,25.0]]},\"temporal\":{\"interval\":[[\"2022-07-21T20:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NOAA\",\"MRMS\",\"QPE\",\"Precipitation\",\"Weather\",\"United States\",\"Guam\",\"Caribbean\"],\"providers\":[{\"url\":\"https://www.nssl.noaa.gov/projects/mrms\",\"name\":\"NOAA National Severe Storms Laboratory\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"noaa_mrms_qpe:pass\":[1],\"noaa_mrms_qpe:period\":[1],\"noaa_mrms_qpe:region\":[\"CONUS\",\"HAWAII\",\"GUAM\",\"ALASKA\",\"CARIB\"]},\"description\":\"The [Multi-Radar Multi-Sensor (MRMS) Quantitative Precipitation Estimation (QPE)](https://www.nssl.noaa.gov/projects/mrms/) products are seamless 1-km mosaics of precipitation accumulation covering the continental United States, Alaska, Hawaii, the Caribbean, and Guam. The products are automatically generated through integration of data from multiple radars and radar networks, surface and satellite observations, numerical weather prediction (NWP) models, and climatology. The products are updated hourly at the top of the hour.\\n\\nMRMS QPE is available as a \\\"Pass 1\\\" or \\\"Pass 2\\\" product. The Pass 1 product is available with a 60-minute latency and includes 60-65% of gauges. The Pass 2 product has a higher latency of 120 minutes, but includes 99% of gauges. The Pass 1 and Pass 2 products are broken into 1-, 3-, 6-, 12-, 24-, 48-, and 72-hour accumulation sub-products.\\n\\nThis Collection contains the **1-Hour Pass 1** sub-product, i.e., 1-hour cumulative precipitation accumulation with a 1-hour latency. The data are available in [Cloud Optimized GeoTIFF](https://www.cogeo.org/) format as well as the original source GRIB2 format files. The GRIB2 files are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\n\",\"item_assets\":{\"cog\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Processed Cloud Optimized GeoTIFF file\",\"raster:bands\":[{\"unit\":\"mm\",\"data_type\":\"float64\",\"spatial_resolution\":1000}]},\"grib2\":{\"type\":\"application/wmo-GRIB2\",\"roles\":[\"data\"],\"title\":\"Original GRIB2 file\",\"raster:bands\":[{\"unit\":\"mm\",\"data_type\":\"float64\",\"spatial_resolution\":1000}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-mrms-qpe\",\"msft:container\":\"mrms-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/noaa-mrms-qpe/v1.0.0/schema.json\"],\"msft:storage_account\":\"mrms\",\"msft:short_description\":\"Integrated multi-sensor cumulative precipation estimate for the past hour with a 1-hour latency.\",\"msft:region\":\"westeurope\"},{\"id\":\"noaa-mrms-qpe-1h-pass2\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2\"},{\"rel\":\"license\",\"href\":\"https://www.nssl.noaa.gov/projects/mrms/nmq_data_policy_OGCrevised.pdf\",\"type\":\"application/pdf\",\"title\":\"MRMS Dataset Sharing Policy\"},{\"rel\":\"about\",\"href\":\"https://mrms.nssl.noaa.gov\",\"type\":\"text/html\",\"title\":\"MRMS Homepage\"},{\"rel\":\"about\",\"href\":\"https://vlab.noaa.gov/web/wdtd/-/multi-sensor-qpe-1?selectedFolder=9234881\",\"type\":\"text/html\",\"title\":\"MRMS QPE Technical Product Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-mrms-qpe-1h-pass2\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"NOAA MRMS QPE 1-Hour Pass 2\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-mrms-qpe-1h-pass2-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"NOAA MRMS QPE 1-Hour Pass 2 Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-mrms-qpe-1h-pass2.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"QS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-176.0,9.0,150.0,72.0],[-130.0,20.0,-60.0,55.0],[-164.0,15.0,-151.0,26.0],[140.0,9.0,150.0,18.0],[-176.0,50.0,-126.0,72.0],[-90.0,10.0,-60.0,25.0]]},\"temporal\":{\"interval\":[[\"2022-07-21T20:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NOAA\",\"MRMS\",\"QPE\",\"Precipitation\",\"Weather\",\"United States\",\"Guam\",\"Caribbean\"],\"providers\":[{\"url\":\"https://www.nssl.noaa.gov/projects/mrms\",\"name\":\"NOAA National Severe Storms Laboratory\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"noaa_mrms_qpe:pass\":[2],\"noaa_mrms_qpe:period\":[1],\"noaa_mrms_qpe:region\":[\"CONUS\",\"HAWAII\",\"GUAM\",\"ALASKA\",\"CARIB\"]},\"description\":\"The [Multi-Radar Multi-Sensor (MRMS) Quantitative Precipitation Estimation (QPE)](https://www.nssl.noaa.gov/projects/mrms/) products are seamless 1-km mosaics of precipitation accumulation covering the continental United States, Alaska, Hawaii, the Caribbean, and Guam. The products are automatically generated through integration of data from multiple radars and radar networks, surface and satellite observations, numerical weather prediction (NWP) models, and climatology. The products are updated hourly at the top of the hour.\\n\\nMRMS QPE is available as a \\\"Pass 1\\\" or \\\"Pass 2\\\" product. The Pass 1 product is available with a 60-minute latency and includes 60-65% of gauges. The Pass 2 product has a higher latency of 120 minutes, but includes 99% of gauges. The Pass 1 and Pass 2 products are broken into 1-, 3-, 6-, 12-, 24-, 48-, and 72-hour accumulation sub-products.\\n\\nThis Collection contains the **1-Hour Pass 2** sub-product, i.e., 1-hour cumulative precipitation accumulation with a 2-hour latency. The data are available in [Cloud Optimized GeoTIFF](https://www.cogeo.org/) format as well as the original source GRIB2 format files. The GRIB2 files are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\n\",\"item_assets\":{\"cog\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Processed Cloud Optimized GeoTIFF file\",\"raster:bands\":[{\"unit\":\"mm\",\"data_type\":\"float64\",\"spatial_resolution\":1000}]},\"grib2\":{\"type\":\"application/wmo-GRIB2\",\"roles\":[\"data\"],\"title\":\"Original GRIB2 file\",\"raster:bands\":[{\"unit\":\"mm\",\"data_type\":\"float64\",\"spatial_resolution\":1000}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-mrms-qpe\",\"msft:container\":\"mrms-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/noaa-mrms-qpe/v1.0.0/schema.json\"],\"msft:storage_account\":\"mrms\",\"msft:short_description\":\"Integrated multi-sensor cumulative precipation estimate for the past hour with a 2-hour latency.\",\"msft:region\":\"westeurope\"},{\"id\":\"noaa-nclimgrid-monthly\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.7289/V5SX6B56\",\"type\":\"text/html\",\"title\":\"NOAA Monthly U.S. Climate Gridded Dataset (NClimGrid)\"},{\"rel\":\"license\",\"href\":\"https://www.ncei.noaa.gov/access/metadata/landing-page/bin/iso?id=gov.noaa.ncdc:C00332#Constraints\",\"type\":\"text/html\",\"title\":\"NClimGrid Data Use and Access Constraints\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/access/metadata/landing-page/bin/iso?id=gov.noaa.ncdc:C00332\",\"type\":\"text/html\",\"title\":\"Product Landing Page\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-nclimgrid-monthly\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-nclimgrid-monthly-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Monthly NOAA NClimGrid Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-nclimgrid-monthly.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-124.708333,24.541666,-66.999995,49.375001]]},\"temporal\":{\"interval\":[[\"1895-01-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.7289/V5SX6B56\",\"keywords\":[\"United States\",\"NOAA\",\"NClimGrid\",\"Climate\",\"Precipitation\",\"Temperature\"],\"providers\":[{\"url\":\"https://www.ncei.noaa.gov/\",\"name\":\"NOAA National Centers for Environmental Information\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"description\":\"The [NOAA U.S. Climate Gridded Dataset (NClimGrid)](https://www.ncei.noaa.gov/access/metadata/landing-page/bin/iso?id=gov.noaa.ncdc:C00332) consists of four climate variables derived from the [Global Historical Climatology Network daily (GHCNd)](https://www.ncei.noaa.gov/products/land-based-station/global-historical-climatology-network-daily) dataset: maximum temperature, minimum temperature, average temperature, and precipitation. The data is provided in 1/24 degree lat/lon (nominal 5x5 kilometer) grids for the Continental United States (CONUS). \\n\\nNClimGrid data is available in monthly and daily temporal intervals, with the daily data further differentiated as \\\"prelim\\\" (preliminary) or \\\"scaled\\\". Preliminary daily data is available within approximately three days of collection. Once a calendar month of preliminary daily data has been collected, it is scaled to match the corresponding monthly value. Monthly data is available from 1895 to the present. Daily preliminary and daily scaled data is available from 1951 to the present. \\n\\nThis Collection contains **Monthly** data. See the journal publication [\\\"Improved Historical Temperature and Precipitation Time Series for U.S. Climate Divisions\\\"](https://journals.ametsoc.org/view/journals/apme/53/5/jamc-d-13-0248.1.xml) for more information about monthly gridded data.\\n\\nUsers of all NClimGrid data product should be aware that [NOAA advertises](https://www.ncei.noaa.gov/access/metadata/landing-page/bin/iso?id=gov.noaa.ncdc:C00332) that:\\n>\\\"On an annual basis, approximately one year of 'final' NClimGrid data is submitted to replace the initially supplied 'preliminary' data for the same time period. Users should be sure to ascertain which level of data is required for their research.\\\"\\n\\nThe source NetCDF files are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\n\\n*Note*: The Planetary Computer currently has STAC metadata for just the monthly collection. We'll have STAC metadata for daily data in our next release. In the meantime, you can access the daily NetCDF data directly from Blob Storage using the storage container at `https://nclimgridwesteurope.blob.core.windows.net/nclimgrid`. See https://planetarycomputer.microsoft.com/docs/concepts/data-catalog/#access-patterns for more.*\\n\",\"item_assets\":{\"prcp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Monthly Precipitation (mm)\",\"raster:bands\":[{\"unit\":\"mm\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tavg\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Monthly Average Temperature (degree Celsius)\",\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmax\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Monthly Maximmum Temperature (degree Celsius)\",\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmin\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Monthly Minimum Temperature (degree Celsius)\",\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]}},\"sci:citation\":\"Vose, Russell S., Applequist, Scott, Squires, Mike, Durre, Imke, Menne, Matthew J., Williams, Claude N. Jr., Fenimore, Chris, Gleason, Karin, and Arndt, Derek (2014): NOAA Monthly U.S. Climate Gridded Dataset (NClimGrid), Version 1. NOAA National Centers for Environmental Information. DOI:10.7289/V5SX6B56.\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-nclimgrid\",\"msft:container\":\"nclimgrid-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.1175/JAMC-D-13-0248.1\",\"citation\":\"Vose, R. S., Applequist, S., Squires, M., Durre, I., Menne, M. J., Williams, C. N., Jr., Fenimore, C., Gleason, K., & Arndt, D. (2014). Improved Historical Temperature and Precipitation Time Series for U.S. Climate Divisions, Journal of Applied Meteorology and Climatology, 53(5), 1232-1251.\"}],\"msft:storage_account\":\"nclimgridwesteurope\",\"msft:short_description\":\"Gridded surface observations of monthly temperature and precipitation for the continental United States\",\"msft:region\":\"westeurope\"},{\"id\":\"usda-cdl\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"about\",\"href\":\"https://www.nass.usda.gov/Research_and_Science/Cropland/SARS1a.php\",\"title\":\"Product Landing Page\"},{\"rel\":\"license\",\"href\":\"https://www.nass.usda.gov/Research_and_Science/Cropland/sarsfaqs2.php#Section3_5.0\",\"title\":\"Redistribution information\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/usda-cdl\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USDA Cropland Data Layers (CDLs)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/usda-cdl-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"USDA Cropland Data Layer (CDL) thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-127.887212,22.94027,-65.345507,51.603492]]},\"temporal\":{\"interval\":[[\"2008-01-01T00:00:00Z\",\"2021-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USDA\",\"United States\",\"Land Cover\",\"Land Use\",\"Agriculture\"],\"providers\":[{\"url\":\"https://www.nass.usda.gov/\",\"name\":\"United States Department of Agriculture - National Agricultural Statistics Service\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"usda_cdl:type\":[\"cropland\",\"frequency\",\"cultivated\"]},\"description\":\"The Cropland Data Layer (CDL) is a product of the USDA National Agricultural Statistics Service (NASS) with the mission \\\"to provide timely, accurate and useful statistics in service to U.S. agriculture\\\" (Johnson and Mueller, 2010, p. 1204). The CDL is a crop-specific land cover classification product of more than 100 crop categories grown in the United States. CDLs are derived using a supervised land cover classification of satellite imagery. The supervised classification relies on first manually identifying pixels within certain images, often called training sites, which represent the same crop or land cover type. Using these training sites, a spectral signature is developed for each crop type that is then used by the analysis software to identify all other pixels in the satellite image representing the same crop. Using this method, a new CDL is compiled annually and released to the public a few months after the end of the growing season.\\n\\nThis collection includes Cropland, Confidence, Cultivated, and Frequency products.\\n\\n- Cropland: Crop-specific land cover data created annually. There are currently four individual crop frequency data layers that represent four major crops: corn, cotton, soybeans, and wheat.\\n- Confidence: The predicted confidence associated with an output pixel. A value of zero indicates low confidence, while a value of 100 indicates high confidence.\\n- Cultivated: cultivated and non-cultivated land cover for CONUS based on land cover information derived from the 2017 through 2021 Cropland products.\\n- Frequency: crop specific planting frequency based on land cover information derived from the 2008 through 2021 Cropland products.\\n\\nFor more, visit the [Cropland Data Layer homepage](https://www.nass.usda.gov/Research_and_Science/Cropland/SARS1a.php).\",\"item_assets\":{\"corn\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"nodata\":255,\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"wheat\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"nodata\":255,\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"cotton\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"nodata\":255,\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"cropland\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"value\":1,\"color_hint\":\"FFD200\",\"description\":\"Corn\"},{\"value\":2,\"color_hint\":\"FF2525\",\"description\":\"Cotton\"},{\"value\":3,\"color_hint\":\"00A8E3\",\"description\":\"Rice\"},{\"value\":4,\"color_hint\":\"FF9E0A\",\"description\":\"Sorghum\"},{\"value\":5,\"color_hint\":\"256F00\",\"description\":\"Soybeans\"},{\"value\":6,\"color_hint\":\"FFFF00\",\"description\":\"Sunflower\"},{\"value\":10,\"color_hint\":\"6FA400\",\"description\":\"Peanuts\"},{\"value\":11,\"color_hint\":\"00AE4A\",\"description\":\"Tobacco\"},{\"value\":12,\"color_hint\":\"DDA40A\",\"description\":\"Sweet Corn\"},{\"value\":13,\"color_hint\":\"DDA40A\",\"description\":\"Pop or Orn Corn\"},{\"value\":14,\"color_hint\":\"7DD2FF\",\"description\":\"Mint\"},{\"value\":21,\"color_hint\":\"E1007B\",\"description\":\"Barley\"},{\"value\":22,\"color_hint\":\"886153\",\"description\":\"Durum Wheat\"},{\"value\":23,\"color_hint\":\"D7B56B\",\"description\":\"Spring Wheat\"},{\"value\":24,\"color_hint\":\"A46F00\",\"description\":\"Winter Wheat\"},{\"value\":25,\"color_hint\":\"D59EBB\",\"description\":\"Other Small Grains\"},{\"value\":26,\"color_hint\":\"6F6F00\",\"description\":\"Winter Wheat/Soybeans\"},{\"value\":27,\"color_hint\":\"AC007B\",\"description\":\"Rye\"},{\"value\":28,\"color_hint\":\"9F5888\",\"description\":\"Oats\"},{\"value\":29,\"color_hint\":\"6F0048\",\"description\":\"Millet\"},{\"value\":30,\"color_hint\":\"D59EBB\",\"description\":\"Speltz\"},{\"value\":31,\"color_hint\":\"D1FF00\",\"description\":\"Canola\"},{\"value\":32,\"color_hint\":\"7D99FF\",\"description\":\"Flaxseed\"},{\"value\":33,\"color_hint\":\"D5D500\",\"description\":\"Safflower\"},{\"value\":34,\"color_hint\":\"D1FF00\",\"description\":\"Rape Seed\"},{\"value\":35,\"color_hint\":\"00AE4A\",\"description\":\"Mustard\"},{\"value\":36,\"color_hint\":\"FFA4E1\",\"description\":\"Alfalfa\"},{\"value\":37,\"color_hint\":\"A4F18B\",\"description\":\"Other Hay/Non Alfalfa\"},{\"value\":38,\"color_hint\":\"00AE4A\",\"description\":\"Camelina\"},{\"value\":39,\"color_hint\":\"D59EBB\",\"description\":\"Buckwheat\"},{\"value\":41,\"color_hint\":\"A800E3\",\"description\":\"Sugarbeets\"},{\"value\":42,\"color_hint\":\"A40000\",\"description\":\"Dry Beans\"},{\"value\":43,\"color_hint\":\"6F2500\",\"description\":\"Potatoes\"},{\"value\":44,\"color_hint\":\"00AE4A\",\"description\":\"Other Crops\"},{\"value\":45,\"color_hint\":\"B07DFF\",\"description\":\"Sugarcane\"},{\"value\":46,\"color_hint\":\"6F2500\",\"description\":\"Sweet Potatoes\"},{\"value\":47,\"color_hint\":\"FF6666\",\"description\":\"Misc. Vegs & Fruits\"},{\"value\":48,\"color_hint\":\"FF6666\",\"description\":\"Watermelons\"},{\"value\":49,\"color_hint\":\"FFCC66\",\"description\":\"Onions\"},{\"value\":50,\"color_hint\":\"FF6666\",\"description\":\"Cucumbers\"},{\"value\":51,\"color_hint\":\"00AE4A\",\"description\":\"Chick Peas\"},{\"value\":52,\"color_hint\":\"00DDAE\",\"description\":\"Lentils\"},{\"value\":53,\"color_hint\":\"53FF00\",\"description\":\"Peas\"},{\"value\":54,\"color_hint\":\"F1A277\",\"description\":\"Tomatoes\"},{\"value\":55,\"color_hint\":\"FF6666\",\"description\":\"Caneberries\"},{\"value\":56,\"color_hint\":\"00AE4A\",\"description\":\"Hops\"},{\"value\":57,\"color_hint\":\"7DD2FF\",\"description\":\"Herbs\"},{\"value\":58,\"color_hint\":\"E8BEFF\",\"description\":\"Clover/Wildflowers\"},{\"value\":59,\"color_hint\":\"AEFFDD\",\"description\":\"Sod/Grass Seed\"},{\"value\":60,\"color_hint\":\"00AE4A\",\"description\":\"Switchgrass\"},{\"value\":61,\"color_hint\":\"BEBE77\",\"description\":\"Fallow/Idle Cropland\"},{\"value\":63,\"color_hint\":\"92CC92\",\"description\":\"Forest\"},{\"value\":64,\"color_hint\":\"C5D59E\",\"description\":\"Shrubland\"},{\"value\":65,\"color_hint\":\"CCBEA2\",\"description\":\"Barren\"},{\"value\":66,\"color_hint\":\"FF00FF\",\"description\":\"Cherries\"},{\"value\":67,\"color_hint\":\"FF8EAA\",\"description\":\"Peaches\"},{\"value\":68,\"color_hint\":\"B9004F\",\"description\":\"Apples\"},{\"value\":69,\"color_hint\":\"6F4488\",\"description\":\"Grapes\"},{\"value\":70,\"color_hint\":\"007777\",\"description\":\"Christmas Trees\"},{\"value\":71,\"color_hint\":\"B09A6F\",\"description\":\"Other Tree Crops\"},{\"value\":72,\"color_hint\":\"FFFF7D\",\"description\":\"Citrus\"},{\"value\":74,\"color_hint\":\"B56F5B\",\"description\":\"Pecans\"},{\"value\":75,\"color_hint\":\"00A482\",\"description\":\"Almonds\"},{\"value\":76,\"color_hint\":\"E9D5AE\",\"description\":\"Walnuts\"},{\"value\":77,\"color_hint\":\"B09A6F\",\"description\":\"Pears\"},{\"value\":81,\"color_hint\":\"F1F1F1\",\"description\":\"Clouds/No Data\"},{\"value\":82,\"color_hint\":\"9A9A9A\",\"description\":\"Developed\"},{\"value\":83,\"color_hint\":\"4A6fA2\",\"description\":\"Water\"},{\"value\":87,\"color_hint\":\"7DB0B0\",\"description\":\"Wetlands\"},{\"value\":88,\"color_hint\":\"E8FFBE\",\"description\":\"Nonag/Undefined\"},{\"value\":92,\"color_hint\":\"00FFFF\",\"description\":\"Aquaculture\"},{\"value\":111,\"color_hint\":\"4A6FA2\",\"description\":\"Open Water\"},{\"value\":112,\"color_hint\":\"D2E1F8\",\"description\":\"Perennial Ice/Snow\"},{\"value\":121,\"color_hint\":\"9A9A9A\",\"description\":\"Developed/Open Space\"},{\"value\":122,\"color_hint\":\"9A9A9A\",\"description\":\"Developed/Low Intensity\"},{\"value\":123,\"color_hint\":\"9A9A9A\",\"description\":\"Developed/Med Intensity\"},{\"value\":124,\"color_hint\":\"9A9A9A\",\"description\":\"Developed/High Intensity\"},{\"value\":131,\"color_hint\":\"CCBEA2\",\"description\":\"Barren\"},{\"value\":141,\"color_hint\":\"92CC92\",\"description\":\"Deciduous Forest\"},{\"value\":142,\"color_hint\":\"92CC92\",\"description\":\"Evergreen Forest\"},{\"value\":143,\"color_hint\":\"92CC92\",\"description\":\"Mixed Forest\"},{\"value\":152,\"color_hint\":\"C5D59E\",\"description\":\"Shrubland\"},{\"value\":176,\"color_hint\":\"E8FFBE\",\"description\":\"Grassland/Pasture\"},{\"value\":190,\"color_hint\":\"7DB0B0\",\"description\":\"Woody Wetlands\"},{\"value\":195,\"color_hint\":\"7DB0B0\",\"description\":\"Herbaceous Wetlands\"},{\"value\":204,\"color_hint\":\"00FF8B\",\"description\":\"Pistachios\"},{\"value\":205,\"color_hint\":\"D59EBB\",\"description\":\"Triticale\"},{\"value\":206,\"color_hint\":\"FF6666\",\"description\":\"Carrots\"},{\"value\":207,\"color_hint\":\"FF6666\",\"description\":\"Asparagus\"},{\"value\":208,\"color_hint\":\"FF6666\",\"description\":\"Garlic\"},{\"value\":209,\"color_hint\":\"FF6666\",\"description\":\"Cantaloupes\"},{\"value\":210,\"color_hint\":\"FF8EAA\",\"description\":\"Prunes\"},{\"value\":211,\"color_hint\":\"334833\",\"description\":\"Olives\"},{\"value\":212,\"color_hint\":\"E36F25\",\"description\":\"Oranges\"},{\"value\":213,\"color_hint\":\"FF6666\",\"description\":\"Honeydew Melons\"},{\"value\":214,\"color_hint\":\"FF6666\",\"description\":\"Broccoli\"},{\"value\":215,\"color_hint\":\"66994B\",\"description\":\"Avocados\"},{\"value\":216,\"color_hint\":\"FF6666\",\"description\":\"Peppers\"},{\"value\":217,\"color_hint\":\"B09A6F\",\"description\":\"Pomegranates\"},{\"value\":218,\"color_hint\":\"FF8EAA\",\"description\":\"Nectarines\"},{\"value\":219,\"color_hint\":\"FF6666\",\"description\":\"Greens\"},{\"value\":220,\"color_hint\":\"FF8EAA\",\"description\":\"Plums\"},{\"value\":221,\"color_hint\":\"FF6666\",\"description\":\"Strawberreis\"},{\"value\":222,\"color_hint\":\"FF6666\",\"description\":\"Squash\"},{\"value\":223,\"color_hint\":\"FF8EAA\",\"description\":\"Apricots\"},{\"value\":224,\"color_hint\":\"00AE4A\",\"description\":\"Vetch\"},{\"value\":225,\"color_hint\":\"FFD200\",\"description\":\"Winter Wheat/Corn\"},{\"value\":226,\"color_hint\":\"FFD200\",\"description\":\"Oats/Corn\"},{\"value\":227,\"color_hint\":\"FF6666\",\"description\":\"Lettuce\"},{\"value\":228,\"color_hint\":\"FF6666\",\"description\":\"Triticale/Corn\"},{\"value\":229,\"color_hint\":\"FF6666\",\"description\":\"Pumpkins\"},{\"value\":230,\"color_hint\":\"886153\",\"description\":\"Lettuce/Durum Wheat\"},{\"value\":231,\"color_hint\":\"FF6666\",\"description\":\"Lettuce/Cataloupe\"},{\"value\":232,\"color_hint\":\"FF2525\",\"description\":\"Lettuce/Cotton\"},{\"value\":233,\"color_hint\":\"A1007B\",\"description\":\"Lettuce/Barley\"},{\"value\":234,\"color_hint\":\"FF9E0A\",\"description\":\"Durum Wheat/Sorghum\"},{\"value\":235,\"color_hint\":\"FF9E0A\",\"description\":\"Barley/Sorghum\"},{\"value\":236,\"color_hint\":\"A46F00\",\"description\":\"Winter Wheat/Sorghum\"},{\"value\":237,\"color_hint\":\"FFD200\",\"description\":\"Barley/Corn\"},{\"value\":238,\"color_hint\":\"A46F00\",\"description\":\"Winter Wheat/Cotton\"},{\"value\":239,\"color_hint\":\"256F00\",\"description\":\"Soybeans/Cotton\"},{\"value\":240,\"color_hint\":\"256F00\",\"description\":\"Soybeans/Oats \"},{\"value\":241,\"color_hint\":\"FFD200\",\"description\":\"Corn/Soybeans\"},{\"value\":242,\"color_hint\":\"000099\",\"description\":\"Blueberries\"},{\"value\":243,\"color_hint\":\"FF6666\",\"description\":\"Cabbage\"},{\"value\":244,\"color_hint\":\"FF6666\",\"description\":\"Cauliflower\"},{\"value\":245,\"color_hint\":\"FF6666\",\"description\":\"Celery\"},{\"value\":246,\"color_hint\":\"FF6666\",\"description\":\"Radishes\"},{\"value\":247,\"color_hint\":\"FF6666\",\"description\":\"Turnips\"},{\"value\":248,\"color_hint\":\"FF6666\",\"description\":\"Eggplants\"},{\"value\":249,\"color_hint\":\"FF6666\",\"description\":\"Gourds\"},{\"value\":250,\"color_hint\":\"FF6666\",\"description\":\"Cranberries\"},{\"value\":254,\"color_hint\":\"256F00\",\"description\":\"Barley/Soybeans\"}]},\"soybeans\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"nodata\":255,\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"confidence\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"cultivated\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"value\":1,\"color_hint\":\"000000\",\"description\":\"Non-Cultivated\"},{\"value\":2,\"color_hint\":\"006300\",\"description\":\"Cultivated\"}]}},\"stac_version\":\"1.0.0\",\"msft:container\":\"usda-cdl\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.1.0/schema.json\"],\"msft:storage_account\":\"landcoverdata\",\"msft:short_description\":\"The UDA Cropland Data Layer is an annual raster, geo-referenced, crop-specific land cover data layer produced using satellite imagery and extensive agricultural ground truth collected during the current growing season.\",\"msft:region\":\"westeurope\"},{\"id\":\"eclipse\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"license\",\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/aod_docs/Microsoft%20Project%20Eclipse%20API%20Terms%20of%20Use_Mar%202022.pdf\",\"type\":\"application/pdf\",\"title\":\"Terms of use\"},{\"rel\":\"cite-as\",\"href\":\"https://www.microsoft.com/en-us/research/uploads/prod/2022/05/ACM_2022-IPSN_FINAL_Eclipse.pdf\",\"type\":\"application/pdf\",\"title\":\"Eclipse: An End-to-End Platform for Low-Cost, Hyperlocal Environment Sensing in Cities\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/eclipse\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Urban Innovation Eclipse Sensor Data\",\"assets\":{\"data\":{\"href\":\"abfs://eclipse/Chicago/\",\"type\":\"application/x-parquet\",\"roles\":[\"data\"],\"title\":\"Full dataset\",\"description\":\"Full parquet dataset\",\"table:storage_options\":{\"account_name\":\"ai4edataeuwest\"}},\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/eclipse-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Urban Innovation Chicago Sensors\"},\"geoparquet-items\":{\"href\":\"abfs://items/eclipse.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-87.94011408252348,41.64454312178303,-87.5241371038952,42.023038586147585]]},\"temporal\":{\"interval\":[[\"2021-01-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Eclipse\",\"PM25\",\"air pollution\"],\"providers\":[{\"url\":\"https://www.microsoft.com/en-us/research/urban-innovation-research/\",\"name\":\"Urban Innovation\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"description\":\"The [Project Eclipse](https://www.microsoft.com/en-us/research/project/project-eclipse/) Network is a low-cost air quality sensing network for cities and a research project led by the [Urban Innovation Group]( https://www.microsoft.com/en-us/research/urban-innovation-research/) at Microsoft Research.\\n\\nProject Eclipse currently includes over 100 locations in Chicago, Illinois, USA.\\n\\nThis network was deployed starting in July, 2021, through a collaboration with the City of Chicago, the Array of Things Project, JCDecaux Chicago, and the Environmental Law and Policy Center as well as local environmental justice organizations in the city. [This talk]( https://www.microsoft.com/en-us/research/video/technology-demo-project-eclipse-hyperlocal-air-quality-monitoring-for-cities/) documents the network design and data calibration strategy.\\n\\n## Storage resources\\n\\nData are stored in [Parquet](https://parquet.apache.org/) files in Azure Blob Storage in the West Europe Azure region, in the following blob container:\\n\\n`https://ai4edataeuwest.blob.core.windows.net/eclipse`\\n\\nWithin that container, the periodic occurrence snapshots are stored in `Chicago/YYYY-MM-DD`, where `YYYY-MM-DD` corresponds to the date of the snapshot.\\nEach snapshot contains a sensor readings from the next 7-days in Parquet format starting with date on the folder name YYYY-MM-DD.\\nTherefore, the data files for the first snapshot are at\\n\\n`https://ai4edataeuwest.blob.core.windows.net/eclipse/chicago/2022-01-01/data_*.parquet\\n\\nThe Parquet file schema is as described below. \\n\\n## Additional Documentation\\n\\nFor details on Calibration of Pm2.5, O3 and NO2, please see [this PDF](https://ai4edatasetspublicassets.blob.core.windows.net/assets/aod_docs/Calibration_Doc_v1.1.pdf).\\n\\n## License and attribution\\nPlease cite: Daepp, Cabral, Ranganathan et al. (2022) [Eclipse: An End-to-End Platform for Low-Cost, Hyperlocal Environmental Sensing in Cities. ACM/IEEE Information Processing in Sensor Networks. Milan, Italy.](https://www.microsoft.com/en-us/research/uploads/prod/2022/05/ACM_2022-IPSN_FINAL_Eclipse.pdf)\\n\\n## Contact\\n\\nFor questions about this dataset, contact [`msrurbanops@microsoft.com`](mailto:msrurbanops@microsoft.com?subject=eclipse%20question) \\n\\n\\n## Learn more\\n\\nThe [Eclipse Project](https://www.microsoft.com/en-us/research/urban-innovation-research/) contains an overview of the Project Eclipse at Microsoft Research.\\n\\n\",\"item_assets\":{\"data\":{\"type\":\"application/x-parquet\",\"roles\":[\"data\"],\"title\":\"Weekly dataset\",\"table:storage_options\":{\"account_name\":\"ai4edataeuwest\"}}},\"sci:citation\":\"Daepp, Cabral, Ranganathan et al. (2022) Eclipse: An End-to-End Platform for Low-Cost, Hyperlocal Environmental Sensing in Cities. ACM/IEEE Information Processing in Sensor Networks. Milan, Italy. Eclipse: An End-to-End Platform for Low-Cost, Hyperlocal Environmental Sensing in Cities\",\"stac_version\":\"1.0.0\",\"table:columns\":[{\"name\":\"City\",\"type\":\"byte_array\",\"description\":\"City where the Microsoft Eclipse device is deployed\"},{\"name\":\"DeviceId\",\"type\":\"int32\",\"description\":\"Id for a given device\"},{\"name\":\"LocationName\",\"type\":\"byte_array\",\"description\":\"Unique string describing the device location\"},{\"name\":\"Latitude\",\"type\":\"double\",\"description\":\"Latitude of the device location\"},{\"name\":\"Longitude\",\"type\":\"double\",\"description\":\"Longitude of the device location\"},{\"name\":\"ReadingDateTimeUTC\",\"type\":\"int96\",\"description\":\"The UTC date time string (like 2022-03-04 20:27:25.000) when the reading from the Eclipse sensor was recorded\"},{\"name\":\"PM25\",\"type\":\"double\",\"description\":\"Uncalibrated Fine particulate matter (PM 2.5) in \xB5g/m\xB3\"},{\"name\":\"CalibratedPM25\",\"type\":\"double\",\"description\":\"Calibrated PM 2.5 in \xB5g/m\xB3\"},{\"name\":\"CalibratedO3\",\"type\":\"double\",\"description\":\"Calibrated Ozone in PPB\"},{\"name\":\"CalibratedNO2\",\"type\":\"double\",\"description\":\"Calibrated Nitrogen Dioxide in PPB\"},{\"name\":\"CO\",\"type\":\"double\",\"description\":\"Uncalibrated Carbon monoxide (CO) in PPM\"},{\"name\":\"Temperature\",\"type\":\"double\",\"description\":\"Degree Celsius\"},{\"name\":\"Humidity\",\"type\":\"double\",\"description\":\"Relative humidity\"},{\"name\":\"BatteryLevel\",\"type\":\"double\",\"description\":\"Device battery level in Volts\"},{\"name\":\"PercentBattery\",\"type\":\"double\",\"description\":\"Percent of device battery\"},{\"name\":\"CellSignal\",\"type\":\"double\",\"description\":\"Cellular signal strength in dB\"}],\"msft:container\":\"eclipse\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"A network of low-cost air quality sensing network for cities and led by the Urban Innovation Group at Microsoft Research\",\"msft:region\":\"westeurope\"},{\"id\":\"esa-cci-lc\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc\"},{\"rel\":\"license\",\"href\":\"https://cds.climate.copernicus.eu/api/v2/terms/static/satellite-land-cover.pdf\",\"type\":\"text/html\",\"title\":\"ESA CCI license\"},{\"rel\":\"license\",\"href\":\"https://cds.climate.copernicus.eu/api/v2/terms/static/licence-to-use-copernicus-products.pdf\",\"type\":\"text/html\",\"title\":\"COPERNICUS license\"},{\"rel\":\"license\",\"href\":\"https://cds.climate.copernicus.eu/api/v2/terms/static/vito-proba-v.pdf\",\"type\":\"text/html\",\"title\":\"VITO License\"},{\"rel\":\"about\",\"href\":\"https://cds.climate.copernicus.eu/cdsapp#!/dataset/satellite-land-cover\",\"type\":\"text/html\",\"title\":\"Product Landing Page\"},{\"rel\":\"about\",\"href\":\"https://datastore.copernicus-climate.eu/documents/satellite-land-cover/D5.3.1_PUGS_ICDR_LC_v2.1.x_PRODUCTS_v1.1.pdf\",\"type\":\"application/pdf\",\"title\":\"Product user guide for version 2.1\"},{\"rel\":\"about\",\"href\":\"https://datastore.copernicus-climate.eu/documents/satellite-land-cover/D3.3.11-v1.0_PUGS_CDR_LC-CCI_v2.0.7cds_Products_v1.0.1_APPROVED_Ver1.pdf\",\"type\":\"application/pdf\",\"title\":\"Product user guide for version 2.0\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.24381/cds.006f2c9a\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/esa-cci-lc\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/esa-cci-lc-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"ESA CCI Land Cover COGs Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/esa-cci-lc.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-90.0,180.0,90.0]]},\"temporal\":{\"interval\":[[\"1992-01-01T00:00:00Z\",\"2020-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.24381/cds.006f2c9a\",\"keywords\":[\"Land Cover\",\"ESA\",\"CCI\",\"Global\"],\"providers\":[{\"url\":\"https://vito.be\",\"name\":\"VITO\",\"roles\":[\"licensor\"],\"description\":\"Provides the PROBA-V source data (for v2.0).\"},{\"url\":\"https://uclouvain.be\",\"name\":\"UCLouvain\",\"roles\":[\"producer\"],\"description\":\"UCLouvain produces the dataset (v2.1) for the ESA Climate Change Initiative.\"},{\"url\":\"https://brockmann-consult.de\",\"name\":\"Brockmann Consult\",\"roles\":[\"processor\"],\"description\":\"Brockmann Consult is responsible for the required pre-processing and the distribution of the dataset (v2.1).\"},{\"url\":\"http://esa-landcover-cci.org\",\"name\":\"ESA Climate Change Initiative\",\"roles\":[\"licensor\"],\"description\":\"The ESA Climate Change Initiative (CCI) is leading the product creation.\"},{\"url\":\"https://copernicus.eu\",\"name\":\"Copernicus\",\"roles\":[\"licensor\"],\"description\":\"Hosts the data on the Copernicus Climate Data Store (CDS).\"},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"esa_cci_lc:version\":[\"2.0.7cds\",\"2.1.1\"]},\"description\":\"The ESA Climate Change Initiative (CCI) [Land Cover dataset](https://cds.climate.copernicus.eu/cdsapp#!/dataset/satellite-land-cover?tab=overview) provides consistent global annual land cover maps at 300m spatial resolution from 1992 to 2020. The land cover classes are defined using the United Nations Food and Agriculture Organization's (UN FAO) [Land Cover Classification System](https://www.fao.org/land-water/land/land-governance/land-resources-planning-toolbox/category/details/en/c/1036361/) (LCCS). In addition to the land cover maps, four quality flags are produced to document the reliability of the classification and change detection. \\n\\nThe data in this Collection have been converted from the [original NetCDF data](https://planetarycomputer.microsoft.com/dataset/esa-cci-lc-netcdf) to a set of tiled [Cloud Optimized GeoTIFFs](https://www.cogeo.org/) (COGs).\\n\",\"item_assets\":{\"lccs_class\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Land Cover Class Defined in the Land Cover Classification System\",\"description\":\"Land cover class per pixel, defined using the Land Cover Classification System developed by the United Nations Food and Agriculture Organization.\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":300}],\"classification:classes\":[{\"name\":\"no-data\",\"value\":0,\"no_data\":true,\"color_hint\":\"000000\",\"description\":\"No data\"},{\"name\":\"cropland-1\",\"value\":10,\"color_hint\":\"FFFF64\",\"description\":\"Cropland, rainfed\"},{\"name\":\"cropland-1a\",\"value\":11,\"regional\":true,\"color_hint\":\"FFFF64\",\"description\":\"Cropland, rainfed, herbaceous cover\"},{\"name\":\"cropland-1b\",\"value\":12,\"regional\":true,\"color_hint\":\"FFFF00\",\"description\":\"Cropland, rainfed, tree, or shrub cover\"},{\"name\":\"cropland-2\",\"value\":20,\"color_hint\":\"AAF0F0\",\"description\":\"Cropland, irrigated or post-flooding\"},{\"name\":\"cropland-3\",\"value\":30,\"color_hint\":\"DCF064\",\"description\":\"Mosaic cropland (>50%) / natural vegetation (tree, shrub, herbaceous cover) (<50%)\"},{\"name\":\"natural-veg\",\"value\":40,\"color_hint\":\"C8C864\",\"description\":\"Mosaic natural vegetation (tree, shrub, herbaceous cover) (>50%) / cropland (<50%)\"},{\"name\":\"tree-1\",\"value\":50,\"color_hint\":\"006400\",\"description\":\"Tree cover, broadleaved, evergreen, closed to open (>15%)\"},{\"name\":\"tree-2\",\"value\":60,\"color_hint\":\"00A000\",\"description\":\"Tree cover, broadleaved, deciduous, closed to open (>15%)\"},{\"name\":\"tree-2a\",\"value\":61,\"regional\":true,\"color_hint\":\"00A000\",\"description\":\"Tree cover, broadleaved, deciduous, closed (>40%)\"},{\"name\":\"tree-2b\",\"value\":62,\"regional\":true,\"color_hint\":\"AAC800\",\"description\":\"Tree cover, broadleaved, deciduous, open (15-40%)\"},{\"name\":\"tree-3\",\"value\":70,\"color_hint\":\"003C00\",\"description\":\"Tree cover, needleleaved, evergreen, closed to open (>15%)\"},{\"name\":\"tree-3a\",\"value\":71,\"regional\":true,\"color_hint\":\"003C00\",\"description\":\"Tree cover, needleleaved, evergreen, closed (>40%)\"},{\"name\":\"tree-3b\",\"value\":72,\"regional\":true,\"color_hint\":\"005000\",\"description\":\"Tree cover, needleleaved, evergreen, open (15-40%)\"},{\"name\":\"tree-4\",\"value\":80,\"color_hint\":\"285000\",\"description\":\"Tree cover, needleleaved, deciduous, closed to open (>15%)\"},{\"name\":\"tree-4a\",\"value\":81,\"regional\":true,\"color_hint\":\"285000\",\"description\":\"Tree cover, needleleaved, deciduous, closed (>40%)\"},{\"name\":\"tree-4b\",\"value\":82,\"regional\":true,\"color_hint\":\"286400\",\"description\":\"Tree cover, needleleaved, deciduous, open (15-40%)\"},{\"name\":\"tree-5\",\"value\":90,\"color_hint\":\"788200\",\"description\":\"Tree cover, mixed leaf type (broadleaved and needleleaved)\"},{\"name\":\"tree-shrub\",\"value\":100,\"color_hint\":\"8CA000\",\"description\":\"Mosaic tree and shrub (>50%) / herbaceous cover (<50%)\"},{\"name\":\"herbaceous\",\"value\":110,\"color_hint\":\"BE9600\",\"description\":\"Mosaic herbaceous cover (>50%) / tree and shrub (<50%)\"},{\"name\":\"shrubland\",\"value\":120,\"color_hint\":\"966400\",\"description\":\"Shrubland\"},{\"name\":\"shrubland-a\",\"value\":121,\"regional\":true,\"color_hint\":\"966400\",\"description\":\"Evergreen shrubland\"},{\"name\":\"shrubland-b\",\"value\":122,\"regional\":true,\"color_hint\":\"966400\",\"description\":\"Deciduous shrubland\"},{\"name\":\"grassland\",\"value\":130,\"color_hint\":\"FFB432\",\"description\":\"Grassland\"},{\"name\":\"lichens-moses\",\"value\":140,\"color_hint\":\"FFDCD2\",\"description\":\"Lichens and mosses\"},{\"name\":\"sparse-veg\",\"value\":150,\"color_hint\":\"FFEBAF\",\"description\":\"Sparse vegetation (tree, shrub, herbaceous cover) (<15%)\"},{\"name\":\"sparse-veg-a\",\"value\":151,\"regional\":true,\"color_hint\":\"FFC864\",\"description\":\"Sparse tree (<15%)\"},{\"name\":\"sparse-veg-b\",\"value\":152,\"regional\":true,\"color_hint\":\"FFD278\",\"description\":\"Sparse shrub (<15%)\"},{\"name\":\"sparse-veg-c\",\"value\":153,\"regional\":true,\"color_hint\":\"FFEBAF\",\"description\":\"Sparse herbaceous cover (<15%)\"},{\"name\":\"flooded-tree-1\",\"value\":160,\"color_hint\":\"00785A\",\"description\":\"Tree cover, flooded, fresh or brackish water\"},{\"name\":\"flooded-tree-2\",\"value\":170,\"color_hint\":\"009678\",\"description\":\"Tree cover, flooded, saline water\"},{\"name\":\"flooded-shrub-herbaceous\",\"value\":180,\"color_hint\":\"00DC82\",\"description\":\"Shrub or herbaceous cover, flooded, fresh/saline/brackish water\"},{\"name\":\"urban\",\"value\":190,\"color_hint\":\"C31400\",\"description\":\"Urban areas\"},{\"name\":\"bare\",\"value\":200,\"color_hint\":\"FFF5D7\",\"description\":\"Bare areas\"},{\"name\":\"bare-a\",\"value\":201,\"regional\":true,\"color_hint\":\"DCDCDC\",\"description\":\"Consolidated bare areas\"},{\"name\":\"bare-b\",\"value\":202,\"regional\":true,\"color_hint\":\"FFF5D7\",\"description\":\"Unconsolidated bare areas\"},{\"name\":\"water\",\"value\":210,\"color_hint\":\"0046C8\",\"description\":\"Water bodies\"},{\"name\":\"snow-ice\",\"value\":220,\"color_hint\":\"FFFFFF\",\"description\":\"Permanent snow and ice\"}]},\"change_count\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"quality\"],\"title\":\"Number of Class Changes\",\"description\":\"Number of years where land cover class changes have occurred, since 1992. 0 for stable, greater than 0 for changes.\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":300}]},\"processed_flag\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"quality\"],\"title\":\"Land Cover Map Processed Area Flag\",\"description\":\"Flag to mark areas that could not be classified.\",\"raster:bands\":[{\"nodata\":255,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":300}],\"classification:classes\":[{\"name\":\"not_processed\",\"value\":0,\"description\":\"Not processed\"},{\"name\":\"processed\",\"value\":1,\"description\":\"Processed\"}]},\"observation_count\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"quality\"],\"title\":\"Number of Valid Observations\",\"description\":\"Number of valid satellite observations that have contributed to each pixel's classification.\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"uint16\",\"spatial_resolution\":300}]},\"current_pixel_state\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"quality\"],\"title\":\"Land Cover Pixel Type Mask\",\"description\":\"Pixel identification from satellite surface reflectance observations, mainly distinguishing between land, water, and snow/ice.\",\"raster:bands\":[{\"nodata\":255,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":300}],\"classification:classes\":[{\"name\":\"land\",\"value\":1,\"description\":\"Clear land\"},{\"name\":\"water\",\"value\":2,\"description\":\"Clear water\"},{\"name\":\"snow\",\"value\":3,\"description\":\"Clear snow / ice\"},{\"name\":\"cloud\",\"value\":4,\"description\":\"Cloud\"},{\"name\":\"cloud_shadow\",\"value\":5,\"description\":\"Cloud shadow\"},{\"name\":\"filled\",\"value\":6,\"description\":\"Filled\"}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"esa-cci-lc\",\"msft:container\":\"esa-cci-lc\",\"stac_extensions\":[\"https://stac-extensions.github.io/classification/v1.1.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"landcoverdata\",\"msft:short_description\":\"Tiled ESA CCI global land cover maps in COG format\",\"msft:region\":\"westeurope\"},{\"id\":\"esa-cci-lc-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf\"},{\"rel\":\"license\",\"href\":\"https://cds.climate.copernicus.eu/api/v2/terms/static/satellite-land-cover.pdf\",\"type\":\"text/html\",\"title\":\"ESA CCI license\"},{\"rel\":\"license\",\"href\":\"https://cds.climate.copernicus.eu/api/v2/terms/static/licence-to-use-copernicus-products.pdf\",\"type\":\"text/html\",\"title\":\"COPERNICUS license\"},{\"rel\":\"license\",\"href\":\"https://cds.climate.copernicus.eu/api/v2/terms/static/vito-proba-v.pdf\",\"type\":\"text/html\",\"title\":\"VITO License\"},{\"rel\":\"about\",\"href\":\"https://cds.climate.copernicus.eu/cdsapp#!/dataset/satellite-land-cover\",\"type\":\"text/html\",\"title\":\"Product Landing Page\"},{\"rel\":\"about\",\"href\":\"https://datastore.copernicus-climate.eu/documents/satellite-land-cover/D5.3.1_PUGS_ICDR_LC_v2.1.x_PRODUCTS_v1.1.pdf\",\"type\":\"application/pdf\",\"title\":\"Product user guide for version 2.1\"},{\"rel\":\"about\",\"href\":\"https://datastore.copernicus-climate.eu/documents/satellite-land-cover/D3.3.11-v1.0_PUGS_CDR_LC-CCI_v2.0.7cds_Products_v1.0.1_APPROVED_Ver1.pdf\",\"type\":\"application/pdf\",\"title\":\"Product user guide for version 2.0\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.24381/cds.006f2c9a\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/esa-cci-lc-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ESA Climate Change Initiative Land Cover Maps (NetCDF)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/esa-cci-lc-netcdf-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"ESA CCI Land Cover NetCDF Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/esa-cci-lc-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-90.0,180.0,90.0]]},\"temporal\":{\"interval\":[[\"1992-01-01T00:00:00Z\",\"2020-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.24381/cds.006f2c9a\",\"keywords\":[\"Land Cover\",\"ESA\",\"CCI\",\"Global\"],\"providers\":[{\"url\":\"https://vito.be\",\"name\":\"VITO\",\"roles\":[\"licensor\"],\"description\":\"Provides the PROBA-V source data (for v2.0).\"},{\"url\":\"https://uclouvain.be\",\"name\":\"UCLouvain\",\"roles\":[\"producer\"],\"description\":\"UCLouvain produces the dataset (v2.1) for the ESA Climate Change Initiative.\"},{\"url\":\"https://brockmann-consult.de\",\"name\":\"Brockmann Consult\",\"roles\":[\"processor\"],\"description\":\"Brockmann Consult is responsible for the required pre-processing and the distribution of the dataset (v2.1).\"},{\"url\":\"http://esa-landcover-cci.org\",\"name\":\"ESA Climate Change Initiative\",\"roles\":[\"licensor\"],\"description\":\"The ESA Climate Change Initiative (CCI) is leading the product creation.\"},{\"url\":\"https://copernicus.eu\",\"name\":\"Copernicus\",\"roles\":[\"licensor\"],\"description\":\"Hosts the data on the Copernicus Climate Data Store (CDS).\"},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"esa_cci_lc:version\":[\"2.0.7cds\",\"2.1.1\"]},\"description\":\"The ESA Climate Change Initiative (CCI) [Land Cover dataset](https://cds.climate.copernicus.eu/cdsapp#!/dataset/satellite-land-cover?tab=overview) provides consistent global annual land cover maps at 300m spatial resolution from 1992 to 2020. The land cover classes are defined using the United Nations Food and Agriculture Organization's (UN FAO) [Land Cover Classification System](https://www.fao.org/land-water/land/land-governance/land-resources-planning-toolbox/category/details/en/c/1036361/) (LCCS). In addition to the land cover maps, four quality flags are produced to document the reliability of the classification and change detection. \\n\\nThe data in this Collection are the original NetCDF files accessed from the [Copernicus Climate Data Store](https://cds.climate.copernicus.eu/#!/home). We recommend users use the [`esa-cci-lc` Collection](planetarycomputer.microsoft.com/dataset/esa-cci-lc), which provides the data as Cloud Optimized GeoTIFFs.\",\"item_assets\":{\"netcdf\":{\"type\":\"application/netcdf\",\"roles\":[\"data\",\"quality\"],\"title\":\"ESA CCI Land Cover NetCDF 4 File\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"esa-cci-lc\",\"msft:container\":\"esa-cci-lc\",\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"landcoverdata\",\"msft:short_description\":\"ESA CCI global land cover maps in NetCDF format\",\"msft:region\":\"westeurope\"},{\"id\":\"fws-nwi\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"describedby\",\"href\":\"https://www.fws.gov/wetlands/Data/metadata/FWS_Wetlands.xml\",\"type\":\"application/xml\",\"title\":\"Wetlands metadata\"},{\"rel\":\"about\",\"href\":\"https://www.fws.gov/sites/default/files/documents/national-wetlands-inventory-fact-sheet.pdf\",\"type\":\"application/pdf\",\"title\":\"Project Fact Sheet\"},{\"rel\":\"about\",\"href\":\"https://www.fws.gov/program/national-wetlands-inventory\",\"type\":\"text/html\",\"title\":\"Project Landing Page\"},{\"rel\":\"license\",\"href\":\"http://www.usa.gov/publicdomain/label/1.0/\",\"type\":\"text/html\",\"title\":\"US Public Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/fws-nwi\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"FWS National Wetlands Inventory\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/fws-nwi-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"FWS National Wetlands Inventory thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-64.54958,13.16667,144.6,71.99633],[144.6,13.16667,180.0,71.99633],[-180.0,13.16667,-64.54958,71.99633]]},\"temporal\":{\"interval\":[[\"2022-10-01T00:00:00Z\",\"2022-10-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USFWS\",\"Wetlands\",\"United States\"],\"providers\":[{\"url\":\"https://www.fws.gov\",\"name\":\"U.S. Fish and Wildlife Service\",\"email\":\"wetlands_team@fws.gov\",\"roles\":[\"producer\",\"licensor\"],\"description\":\"The U.S. Fish and Wildlife Service is the principal federal agency tasked with providing information to the public on the extent and status of the nation's wetland and deepwater habitats, as well as changes to these habitats over time.\"},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"fws_nwi:state\":[\"Alabama\",\"Alaska\",\"Arizona\",\"Arkansas\",\"California\",\"Colorado\",\"Connecticut\",\"Delaware\",\"District of Columbia\",\"Florida\",\"Georgia\",\"Hawaii\",\"Idaho\",\"Illinois\",\"Indiana\",\"Iowa\",\"Kansas\",\"Kentucky\",\"Louisiana\",\"Maine\",\"Maryland\",\"Massachusetts\",\"Michigan\",\"Minnesota\",\"Mississippi\",\"Missouri\",\"Montana\",\"Nebraska\",\"Nevada\",\"New Hampshire\",\"New Jersey\",\"New Mexico\",\"New York\",\"North Carolina\",\"North Dakota\",\"Ohio\",\"Oklahoma\",\"Oregon\",\"Pacific Trust Islands\",\"Pennsylvania\",\"Puerto Rico and Virgin Islands\",\"Rhode Island\",\"South Carolina\",\"South Dakota\",\"Tennessee\",\"Texas\",\"Utah\",\"Vermont\",\"Virginia\",\"Washington\",\"West Virginia\",\"Wisconsin\",\"Wyoming\"],\"fws_nwi:content\":[\"riparian\",\"historic_wetlands\",\"wetlands\"],\"fws_nwi:state_code\":[\"AL\",\"AK\",\"AZ\",\"AR\",\"CA\",\"CO\",\"CT\",\"DE\",\"DC\",\"FL\",\"GA\",\"HI\",\"ID\",\"IL\",\"IN\",\"IA\",\"KS\",\"KY\",\"LA\",\"ME\",\"MD\",\"MA\",\"MI\",\"MN\",\"MS\",\"MO\",\"MT\",\"NE\",\"NV\",\"NH\",\"NJ\",\"NM\",\"NY\",\"NC\",\"ND\",\"OH\",\"OK\",\"OR\",\"PacTrust\",\"PA\",\"PRVI\",\"RI\",\"SC\",\"SD\",\"TN\",\"TX\",\"UT\",\"VT\",\"VA\",\"WA\",\"WV\",\"WI\",\"WY\"]},\"description\":\"The Wetlands Data Layer is the product of over 45 years of work by the National Wetlands Inventory (NWI) and its collaborators and currently contains more than 35 million wetland and deepwater features. This dataset, covering the conterminous United States, Hawaii, Puerto Rico, the Virgin Islands, Guam, the major Northern Mariana Islands and Alaska, continues to grow at a rate of 50 to 100 million acres annually as data are updated.\\n\\n**NOTE:** Due to the variation in use and analysis of this data by the end user, each state's wetlands data extends beyond the state boundary. Each state includes wetlands data that intersect the 1:24,000 quadrangles that contain part of that state (1:2,000,000 source data). This allows the user to clip the data to their specific analysis datasets. Beware that two adjacent states will contain some of the same data along their borders.\\n\\nFor more information, visit the National Wetlands Inventory [homepage](https://www.fws.gov/program/national-wetlands-inventory).\\n\\n## STAC Metadata\\n\\nIn addition to the `zip` asset in every STAC item, each item has its own assets unique to its wetlands. In general, each item will have several assets, each linking to a [geoparquet](https://github.com/opengeospatial/geoparquet) asset with data for the entire region or a sub-region within that state. Use the `cloud-optimized` [role](https://github.com/radiantearth/stac-spec/blob/master/item-spec/item-spec.md#asset-roles) to select just the geoparquet assets. See the Example Notebook for more.\",\"item_assets\":{\"zip\":{\"type\":\"application/zip\",\"roles\":[\"data\",\"archive\",\"source\"]}},\"stac_version\":\"1.0.0\",\"msft:container\":\"fws-nwi\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Vector dataset containing wetlands boundaries and identification across the United States.\",\"msft:region\":\"westeurope\"},{\"id\":\"usgs-lcmap-conus-v13\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13\"},{\"rel\":\"about\",\"href\":\"https://www.usgs.gov/special-topics/lcmap/collection-13-conus-science-products\",\"type\":\"text/html\",\"title\":\"LCMAP CONUS Science Products\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/special-topics/lcmap/collection-13-conus-science-products\",\"type\":\"text/html\",\"title\":\"Proprietary, Unrestricted\"},{\"rel\":\"source\",\"href\":\"https://www.usgs.gov/special-topics/lcmap/lcmap-data-access\",\"type\":\"text/html\",\"title\":\"USGS Data Access Options\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.1016/j.rse.2019.111356\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.1016/j.rse.2014.01.011\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9C46NG0\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/usgs-lcmap-conus-v13\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS LCMAP CONUS Collection 1.3\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/usgs-lcmap-conus-v13-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"USGS LCMAP CONUS 1.3 Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/usgs-lcmap-conus-v13.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-129.27732,21.805095,-63.11843,52.92172]]},\"temporal\":{\"interval\":[[\"1985-01-01T00:00:00Z\",\"2021-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.5066/P9C46NG0\",\"keywords\":[\"USGS\",\"LCMAP\",\"Land Cover\",\"Land Cover Change\",\"CONUS\"],\"providers\":[{\"url\":\"https://www.usgs.gov/special-topics/lcmap\",\"name\":\"United States Geological Survey\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"usgs_lcmap:vertical_tile\":{\"maximum\":20,\"minimum\":0},\"usgs_lcmap:horizontal_tile\":{\"maximum\":32,\"minimum\":1}},\"description\":\"The [Land Change Monitoring, Assessment, and Projection](https://www.usgs.gov/special-topics/lcmap) (LCMAP) product provides land cover mapping and change monitoring from the U.S. Geological Survey's [Earth Resources Observation and Science](https://www.usgs.gov/centers/eros) (EROS) Center. LCMAP's Science Products are developed by applying time-series modeling on a per-pixel basis to [Landsat Analysis Ready Data](https://www.usgs.gov/landsat-missions/landsat-us-analysis-ready-data) (ARD) using an implementation of the [Continuous Change Detection and Classification](https://doi.org/10.1016/j.rse.2014.01.011) (CCDC) algorithm. All available clear (non-cloudy) U.S. Landsat ARD observations are fit to a harmonic model to predict future Landsat-like surface reflectance. Where Landsat surface reflectance observations differ significantly from those predictions, a change is identified. Attributes of the resulting model sequences (e.g., start/end dates, residuals, model coefficients) are then used to produce a set of land surface change products and as inputs to the subsequent classification to thematic land cover. \\n\\nThis [STAC](https://stacspec.org/en) Collection contains [LCMAP CONUS Collection 1.3](https://www.usgs.gov/special-topics/lcmap/collection-13-conus-science-products), which was released in August 2022 for years 1985-2021. The data are tiled according to the Landsat ARD tile grid and consist of [Cloud Optimized GeoTIFFs](https://www.cogeo.org/) (COGs) and corresponding metadata files. Note that the provided COGs differ slightly from those in the USGS source data. They have been reprocessed to add overviews, \\\"nodata\\\" values where appropriate, and an updated projection definition.\\n\",\"item_assets\":{\"dates\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Landsat Observation Dates\",\"description\":\"Landsat observation dates used as input to the CCDC algorithm.\"},\"lcpri\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Primary Land Cover\",\"description\":\"Land cover classification consisting of eight general land cover types. The most likely land cover according to the modeling process.\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"name\":\"nodata\",\"value\":0,\"color_hint\":\"000000\",\"description\":\"No Data\"},{\"name\":\"developed\",\"value\":1,\"color_hint\":\"ff3232\",\"description\":\"Developed\"},{\"name\":\"cropland\",\"value\":2,\"color_hint\":\"be8c5a\",\"description\":\"Cropland\"},{\"name\":\"grass_shrub\",\"value\":3,\"color_hint\":\"e6f0d2\",\"description\":\"Grass/Shrub\"},{\"name\":\"tree_cover\",\"value\":4,\"color_hint\":\"1c6330\",\"description\":\"Tree Cover\"},{\"name\":\"water\",\"value\":5,\"color_hint\":\"0070ff\",\"description\":\"Water\"},{\"name\":\"wetlands\",\"value\":6,\"color_hint\":\"b3d9ff\",\"description\":\"Wetlands\"},{\"name\":\"ice_snow\",\"value\":7,\"color_hint\":\"ffffff\",\"description\":\"Snow/Ice\"},{\"name\":\"barren\",\"value\":8,\"color_hint\":\"b3aea3\",\"description\":\"Barren\"}]},\"lcsec\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Secondary Land Cover\",\"description\":\"Land cover classification consisting of eight general land cover types. The second most likely land cover according to the modeling process.\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"name\":\"nodata\",\"value\":0,\"color_hint\":\"000000\",\"description\":\"No Data\"},{\"name\":\"developed\",\"value\":1,\"color_hint\":\"ff3232\",\"description\":\"Developed\"},{\"name\":\"cropland\",\"value\":2,\"color_hint\":\"be8c5a\",\"description\":\"Cropland\"},{\"name\":\"grass_shrub\",\"value\":3,\"color_hint\":\"e6f0d2\",\"description\":\"Grass/Shrub\"},{\"name\":\"tree_cover\",\"value\":4,\"color_hint\":\"1c6330\",\"description\":\"Tree Cover\"},{\"name\":\"water\",\"value\":5,\"color_hint\":\"0070ff\",\"description\":\"Water\"},{\"name\":\"wetlands\",\"value\":6,\"color_hint\":\"b3d9ff\",\"description\":\"Wetlands\"},{\"name\":\"ice_snow\",\"value\":7,\"color_hint\":\"ffffff\",\"description\":\"Snow/Ice\"},{\"name\":\"barren\",\"value\":8,\"color_hint\":\"b3aea3\",\"description\":\"Barren\"}]},\"scmag\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Change Magnitude\",\"description\":\"The spectral strength or intensity of a time series model 'break' when spectral observations have diverged from the model predictions.\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"float32\",\"spatial_resolution\":30}]},\"scmqa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Model Quality\",\"description\":\"Information regarding the type of time series model applied to the current product year.\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"name\":\"no_model\",\"value\":0,\"description\":\"No model established for July 1st of current year.\"},{\"name\":\"simple_model\",\"value\":4,\"description\":\"A partial, 4-coefficient harmonic model.\"},{\"name\":\"advanced_model\",\"value\":6,\"description\":\"A partial, 6-coefficient harmonic model.\"},{\"name\":\"full_model\",\"value\":8,\"description\":\"A full, 8-coefficient harmonic model.\"},{\"name\":\"start_fit\",\"value\":14,\"description\":\"A simple model at the beginning of a time series where sparse and/or highly variable spectral measurements prevent establishment of a harmonic model.\"},{\"name\":\"end_fit\",\"value\":24,\"description\":\"A simple model at the end of a time series where there are insufficient observations and/or time to establish a new harmonic model following a model break.\"},{\"name\":\"insufficient_clear\",\"value\":44,\"description\":\"A simple model for the entire time series in cases where fewer than 25% of input observations are labeled as 'Clear' or 'Water' by the U.S. Landsat ARD per-pixel quality band (PIXELQA).\"},{\"name\":\"persistent_snow\",\"value\":54,\"description\":\"A simple model for the entire time series in cases where 75% or more of input observations are labeled as 'Snow' by the U.S. Landsat ARD per-pixel quality band (PIXELQA).\"}]},\"browse\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"USGS Browse Image\",\"description\":\"Image generated by USGS for viewing LCMAP classification data in web applications.\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"lcachg\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Annual Land Cover Change\",\"description\":\"Synthesis of Primary Land Cover of current and previous year identifying changes in land cover class.\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"name\":\"nodata\",\"value\":0,\"color_hint\":\"000000\",\"description\":\"No Data\"},{\"name\":\"developed\",\"value\":1,\"color_hint\":\"ff3232\",\"description\":\"Developed\"},{\"name\":\"cropland\",\"value\":2,\"color_hint\":\"be8c5a\",\"description\":\"Cropland\"},{\"name\":\"grass_shrub\",\"value\":3,\"color_hint\":\"e6f0d2\",\"description\":\"Grass/Shrub\"},{\"name\":\"tree_cover\",\"value\":4,\"color_hint\":\"1c6330\",\"description\":\"Tree Cover\"},{\"name\":\"water\",\"value\":5,\"color_hint\":\"0070ff\",\"description\":\"Water\"},{\"name\":\"wetlands\",\"value\":6,\"color_hint\":\"b3d9ff\",\"description\":\"Wetlands\"},{\"name\":\"ice_snow\",\"value\":7,\"color_hint\":\"ffffff\",\"description\":\"Snow/Ice\"},{\"name\":\"barren\",\"value\":8,\"color_hint\":\"b3aea3\",\"description\":\"Barren\"},{\"name\":\"1_to_2\",\"value\":12,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Cropland\"},{\"name\":\"1_to_3\",\"value\":13,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Grass/Shrub\"},{\"name\":\"1_to_4\",\"value\":14,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Tree Cover\"},{\"name\":\"1_to_5\",\"value\":15,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Water\"},{\"name\":\"1_to_6\",\"value\":16,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Wetlands\"},{\"name\":\"1_to_7\",\"value\":17,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Snow/Ice\"},{\"name\":\"1_to_8\",\"value\":18,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Barren\"},{\"name\":\"2_to_1\",\"value\":21,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Developed\"},{\"name\":\"2_to_3\",\"value\":23,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Grass/Shrub\"},{\"name\":\"2_to_4\",\"value\":24,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Tree Cover\"},{\"name\":\"2_to_5\",\"value\":25,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Water\"},{\"name\":\"2_to_6\",\"value\":26,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Wetlands\"},{\"name\":\"2_to_7\",\"value\":27,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Snow/Ice\"},{\"name\":\"2_to_8\",\"value\":28,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Barren\"},{\"name\":\"3_to_1\",\"value\":31,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Developed\"},{\"name\":\"3_to_2\",\"value\":32,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Cropland\"},{\"name\":\"3_to_4\",\"value\":34,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Tree Cover\"},{\"name\":\"3_to_5\",\"value\":35,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Water\"},{\"name\":\"3_to_6\",\"value\":36,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Wetlands\"},{\"name\":\"3_to_7\",\"value\":37,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Snow/Ice\"},{\"name\":\"3_to_8\",\"value\":38,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Barren\"},{\"name\":\"4_to_1\",\"value\":41,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Developed\"},{\"name\":\"4_to_2\",\"value\":42,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Cropland\"},{\"name\":\"4_to_3\",\"value\":43,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Grass/Shrub\"},{\"name\":\"4_to_5\",\"value\":45,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Water\"},{\"name\":\"4_to_6\",\"value\":46,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Wetlands\"},{\"name\":\"4_to_7\",\"value\":47,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Snow/Ice\"},{\"name\":\"4_to_8\",\"value\":48,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Barren\"},{\"name\":\"5_to_1\",\"value\":51,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Developed\"},{\"name\":\"5_to_2\",\"value\":52,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Cropland\"},{\"name\":\"5_to_3\",\"value\":53,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Grass/Shrub\"},{\"name\":\"5_to_4\",\"value\":54,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Tree Cover\"},{\"name\":\"5_to_6\",\"value\":56,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Wetlands\"},{\"name\":\"5_to_7\",\"value\":57,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Snow/Ice\"},{\"name\":\"5_to_8\",\"value\":58,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Barren\"},{\"name\":\"6_to_1\",\"value\":61,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Developed\"},{\"name\":\"6_to_2\",\"value\":62,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Cropland\"},{\"name\":\"6_to_3\",\"value\":63,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Grass/Shrub\"},{\"name\":\"6_to_4\",\"value\":64,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Tree Cover\"},{\"name\":\"6_to_5\",\"value\":65,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Water\"},{\"name\":\"6_to_7\",\"value\":67,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Snow/Ice\"},{\"name\":\"6_to_8\",\"value\":68,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Barren\"},{\"name\":\"7_to_1\",\"value\":71,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Developed\"},{\"name\":\"7_to_2\",\"value\":72,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Cropland\"},{\"name\":\"7_to_3\",\"value\":73,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Grass/Shrub\"},{\"name\":\"7_to_4\",\"value\":74,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Tree Cover\"},{\"name\":\"7_to_5\",\"value\":75,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Water\"},{\"name\":\"7_to_6\",\"value\":76,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Wetlands\"},{\"name\":\"7_to_8\",\"value\":78,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Barren\"},{\"name\":\"8_to_1\",\"value\":81,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Developed\"},{\"name\":\"8_to_2\",\"value\":82,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Cropland\"},{\"name\":\"8_to_3\",\"value\":83,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Grass/Shrub\"},{\"name\":\"8_to_4\",\"value\":84,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Tree Cover\"},{\"name\":\"8_to_5\",\"value\":85,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Water\"},{\"name\":\"8_to_6\",\"value\":86,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Wetlands\"},{\"name\":\"8_to_7\",\"value\":87,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Snow/Ice\"}]},\"sclast\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Time Since Last Change\",\"description\":\"Time, in days, since the last identified Spectral Change (SCTIME).\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"scstab\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Spectral Stability Period\",\"description\":\"Measure of the amount of time in days that a pixel has been in its current spectral state as of July 1st. Current spectral state can refer to both during stable time series segments or a period outside of stable time series segments.\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"sctime\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Time of Spectral Change\",\"description\":\"Represents the timing of a spectral change within the current product year as the day of year the change occurred.\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"lcpconf\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Primary Land Cover Confidence\",\"description\":\"Provides provenance tracking and a measure of confidence that the Primary Land Cover label matches the training data.\",\"file:values\":[{\"values\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100],\"summary\":\"Measure of confidence that the Primary Land Cover label matches the training data.\"},{\"values\":[151],\"summary\":\"Time series model identified as transition from a Grass/Shrub class to a Tree Cover class. Primary Land Cover class assignment based on secondary analysis.\"},{\"values\":[152],\"summary\":\"Time series model identified as transition from a Tree Cover class to a Grass/Shrub class. Primary Land cover class assignment based on secondary analysis.\"},{\"values\":[201],\"summary\":\"No stable time series models were produced for this location. Primary Land Cover was assigned the land cover class present in NLCD-2001 (cross-walked to LCMAP Level 1 classification schema, see LCMAP Science Product Guide for more information).\"},{\"values\":[202],\"summary\":\"Insufficient data available to extend most recent time series model past July 1st of current year. Land cover assigned the last identified cover class from earlier year.\"},{\"values\":[211],\"summary\":\"July 1st falls in a gap between two stable time series models of the same land cover class. Primary Land Cover assigned the primary land cover class of those before/after models.\"},{\"values\":[212],\"summary\":\"July 1st falls in a gap between two stable time series models of differing land cover class. If July 1st is before the 'break date' of the earlier model, Primary Land Cover is assigned the primary land cover class of that earlier model. Otherwise, Primary Land Cover is assigned the primary land cover class of the subsequent, later model.\"},{\"values\":[213],\"summary\":\"Insufficient data available to establish a stable time series model at the beginning of the time series prior to July 1st of the current year. Primary Land Cover assigned the primary land cover class of 1st subsequent model.\"},{\"values\":[214],\"summary\":\"Insufficient data available to establish a new stable time series model following a break near the end of the time series prior to July 1st of the current year. Primary Land Cover assigned the last identified primary land cover class from earlier year.\"}],\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"lcsconf\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Secondary Land Cover Confidence\",\"description\":\"Provides provenance tracking and a measure of confidence that the Secondary Land Cover label matches the training data.\",\"file:values\":[{\"values\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100],\"summary\":\"Measure of confidence that the Secondary Land Cover label matches the training data.\"},{\"values\":[151],\"summary\":\"Time series model identified as transition from a Grass/Shrub class to a Tree Cover class in Primary Land Cover. Primary Land Cover class assignment based on secondary analysis and Secondary Land Cover class assigned logical opposite of Primary.\"},{\"values\":[152],\"summary\":\"Time series model identified as transition from a Tree Cover class to a Grass/Shrub class in Primary Land Cover. Primary Land Cover class assignment based on secondary analysis and Secondary Land Cover class assigned logical opposite of Primary.\"},{\"values\":[201],\"summary\":\"No stable time series models were produced for this location. Secondary Land Cover assigned the land cover class present in NLCD-2001 (cross-walked to LCMAP classification schema, see LCMAP Science Product Guide for more information).\"},{\"values\":[202],\"summary\":\"Insufficient data available to extend most recent time series model past July 1st of current year. Secondary Land Cover assigned the last identified secondary cover class from earlier year.\"},{\"values\":[211],\"summary\":\"July 1st falls in a gap between two stable time series models of the same secondary land cover class. Secondary Land Cover assigned the land cover class of those before/after models.\"},{\"values\":[212],\"summary\":\"July 1st falls in a gap between two stable time series models of differing secondary land cover classes. If July 1st is before the 'break date' of the earlier model, Secondary Land Cover is assigned the secondary land cover class of the earlier model. Otherwise, Secondary Land Cover is assigned the secondary land cover class of the subsequent model.\"},{\"values\":[213],\"summary\":\"Insufficient data available to establish a stable time series model at the beginning of the time series prior to July 1st of the current year. Secondary Land Cover assigned the secondary land cover class of 1st subsequent model.\"},{\"values\":[214],\"summary\":\"Insufficient data available to establish a new stable time series model following a break near the end of the time series prior to July 1st of the current year. Secondary Land Cover assigned the last identified secondary cover class from earlier year.\"}],\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"lcpri_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Primary Land Cover Metadata\",\"description\":\"Primary Land Cover product metadata\"},\"lcsec_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Secondary Land Cover Metadata\",\"description\":\"Secondary Land Cover product metadata\"},\"scmag_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Change Magnitude Metadata\",\"description\":\"Change Magnitude product metadata\"},\"scmqa_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Model Quality Metadata\",\"description\":\"Model Quality product metadata\"},\"lcachg_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Annual Land Cover Change Metadata\",\"description\":\"Annual Land Cover Change product metadata\"},\"sclast_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Time Since Last Change Metadata\",\"description\":\"Time Since Last Change product metadata\"},\"scstab_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Spectral Stability Period Metadata\",\"description\":\"Spectral Stability Period product metadata\"},\"sctime_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Time of Spectral Change Metadata\",\"description\":\"Time of Spectral Change product metadata\"},\"lcpconf_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Primary Land Cover Confidence Metadata\",\"description\":\"Primary Land Cover Confidence product metadata\"},\"lcsconf_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Secondary Land Cover Confidence Metadata\",\"description\":\"Secondary Land Cover Confidence product metadata\"}},\"sci:citation\":\"U.S. Geological Survey (USGS), 2022, Land Change Monitoring, Assessment, and Projection (LCMAP) Collection 1.3 Science Products for the Conterminous United States: USGS data release\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"usgs-lcmap\",\"msft:container\":\"lcmap\",\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.1.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.1016/j.rse.2019.111356\",\"citation\":\"Brown, J.F., Tollerud, H.J., Barber, C.P., Zhou, Q., Dwyer, J.L., Vogelmann, J.E., Loveland, T.R., Woodcock, C.E., Stehman, S.V., Zhu, Z., Pengra, B.W., Smith, K., Horton, J.A., Xian, G., Auch, R.F., Sohl, T.L., Sayler, K.L., Gallant, A.L., Zelenak, D., Reker, R.R., and Rover, J., 2020, Lessons learned implementing an operational continuous United States national land change monitoring capability-The Land Change Monitoring, Assessment, and Projection (LCMAP) approach: Remote Sensing of Environment, v. 238, article 111356\"},{\"doi\":\"10.1016/j.rse.2014.01.011\",\"citation\":\"Zhu, Z., and Woodcock, C.E., 2014, Continuous change detection and classification of land cover using all available Landsat data: Remote Sensing of Environment, v. 144, p. 152-171\"}],\"msft:storage_account\":\"landcoverdata\",\"msft:short_description\":\"USGS Land Change Monitoring, Assessment, and Projection (LCMAP) Collection 1.3 Science Products for the Conterminous United States.\",\"msft:region\":\"westeurope\"},{\"id\":\"usgs-lcmap-hawaii-v10\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10\"},{\"rel\":\"about\",\"href\":\"https://www.usgs.gov/special-topics/lcmap/collection-1-hawaii-science-products\",\"type\":\"text/html\",\"title\":\"LCMAP Hawaii Science Products\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/special-topics/lcmap/collection-1-hawaii-science-products\",\"type\":\"text/html\",\"title\":\"Proprietary, Unrestricted\"},{\"rel\":\"source\",\"href\":\"https://www.usgs.gov/special-topics/lcmap/lcmap-data-access\",\"type\":\"text/html\",\"title\":\"USGS Data Access Options\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.1016/j.jag.2022.103015\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.1016/j.rse.2019.111356\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P91E8M23\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/usgs-lcmap-hawaii-v10\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS LCMAP Hawaii Collection 1.0\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/usgs-lcmap-hawaii-v10-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"USGS LCMAP Hawaii 1.0 Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/usgs-lcmap-hawaii-v10.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-161.27577,18.505136,-154.058649,22.624478]]},\"temporal\":{\"interval\":[[\"2000-01-01T00:00:00Z\",\"2020-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.5066/P91E8M23\",\"keywords\":[\"USGS\",\"LCMAP\",\"Land Cover\",\"Land Cover Change\",\"Hawaii\"],\"providers\":[{\"url\":\"https://www.usgs.gov/special-topics/lcmap\",\"name\":\"United States Geological Survey\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"usgs_lcmap:vertical_tile\":{\"maximum\":2,\"minimum\":0},\"usgs_lcmap:horizontal_tile\":{\"maximum\":4,\"minimum\":0}},\"description\":\"The [Land Change Monitoring, Assessment, and Projection](https://www.usgs.gov/special-topics/lcmap) (LCMAP) product provides land cover mapping and change monitoring from the U.S. Geological Survey's [Earth Resources Observation and Science](https://www.usgs.gov/centers/eros) (EROS) Center. LCMAP's Science Products are developed by applying time-series modeling on a per-pixel basis to [Landsat Analysis Ready Data](https://www.usgs.gov/landsat-missions/landsat-us-analysis-ready-data) (ARD) using an implementation of the [Continuous Change Detection and Classification](https://doi.org/10.1016/j.rse.2014.01.011) (CCDC) algorithm. All available clear (non-cloudy) U.S. Landsat ARD observations are fit to a harmonic model to predict future Landsat-like surface reflectance. Where Landsat surface reflectance observations differ significantly from those predictions, a change is identified. Attributes of the resulting model sequences (e.g., start/end dates, residuals, model coefficients) are then used to produce a set of land surface change products and as inputs to the subsequent classification to thematic land cover. \\n\\nThis [STAC](https://stacspec.org/en) Collection contains [LCMAP Hawaii Collection 1.0](https://www.usgs.gov/special-topics/lcmap/collection-1-hawaii-science-products), which was released in January 2022 for years 2000-2020. The data are tiled according to the Landsat ARD tile grid and consist of [Cloud Optimized GeoTIFFs](https://www.cogeo.org/) (COGs) and corresponding metadata files. Note that the provided COGs differ slightly from those in the USGS source data. They have been reprocessed to add overviews, \\\"nodata\\\" values where appropriate, and an updated projection definition.\\n\",\"item_assets\":{\"dates\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Landsat Observation Dates\",\"description\":\"Landsat observation dates used as input to the CCDC algorithm.\"},\"lcpri\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Primary Land Cover\",\"description\":\"Land cover classification consisting of eight general land cover types. The most likely land cover according to the modeling process.\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"name\":\"nodata\",\"value\":0,\"color_hint\":\"000000\",\"description\":\"No Data\"},{\"name\":\"developed\",\"value\":1,\"color_hint\":\"ff3232\",\"description\":\"Developed\"},{\"name\":\"cropland\",\"value\":2,\"color_hint\":\"be8c5a\",\"description\":\"Cropland\"},{\"name\":\"grass_shrub\",\"value\":3,\"color_hint\":\"e6f0d2\",\"description\":\"Grass/Shrub\"},{\"name\":\"tree_cover\",\"value\":4,\"color_hint\":\"1c6330\",\"description\":\"Tree Cover\"},{\"name\":\"water\",\"value\":5,\"color_hint\":\"0070ff\",\"description\":\"Water\"},{\"name\":\"wetlands\",\"value\":6,\"color_hint\":\"b3d9ff\",\"description\":\"Wetlands\"},{\"name\":\"ice_snow\",\"value\":7,\"color_hint\":\"ffffff\",\"description\":\"Snow/Ice\"},{\"name\":\"barren\",\"value\":8,\"color_hint\":\"b3aea3\",\"description\":\"Barren\"}]},\"lcsec\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Secondary Land Cover\",\"description\":\"Land cover classification consisting of eight general land cover types. The second most likely land cover according to the modeling process.\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"name\":\"nodata\",\"value\":0,\"color_hint\":\"000000\",\"description\":\"No Data\"},{\"name\":\"developed\",\"value\":1,\"color_hint\":\"ff3232\",\"description\":\"Developed\"},{\"name\":\"cropland\",\"value\":2,\"color_hint\":\"be8c5a\",\"description\":\"Cropland\"},{\"name\":\"grass_shrub\",\"value\":3,\"color_hint\":\"e6f0d2\",\"description\":\"Grass/Shrub\"},{\"name\":\"tree_cover\",\"value\":4,\"color_hint\":\"1c6330\",\"description\":\"Tree Cover\"},{\"name\":\"water\",\"value\":5,\"color_hint\":\"0070ff\",\"description\":\"Water\"},{\"name\":\"wetlands\",\"value\":6,\"color_hint\":\"b3d9ff\",\"description\":\"Wetlands\"},{\"name\":\"ice_snow\",\"value\":7,\"color_hint\":\"ffffff\",\"description\":\"Snow/Ice\"},{\"name\":\"barren\",\"value\":8,\"color_hint\":\"b3aea3\",\"description\":\"Barren\"}]},\"scmag\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Change Magnitude\",\"description\":\"The spectral strength or intensity of a time series model 'break' when spectral observations have diverged from the model predictions.\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"float32\",\"spatial_resolution\":30}]},\"scmqa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Model Quality\",\"description\":\"Information regarding the type of time series model applied to the current product year.\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"name\":\"no_model\",\"value\":0,\"description\":\"No model established for July 1st of current year.\"},{\"name\":\"simple_model\",\"value\":4,\"description\":\"A partial, 4-coefficient harmonic model.\"},{\"name\":\"advanced_model\",\"value\":6,\"description\":\"A partial, 6-coefficient harmonic model.\"},{\"name\":\"full_model\",\"value\":8,\"description\":\"A full, 8-coefficient harmonic model.\"},{\"name\":\"start_fit\",\"value\":14,\"description\":\"A simple model at the beginning of a time series where sparse and/or highly variable spectral measurements prevent establishment of a harmonic model.\"},{\"name\":\"end_fit\",\"value\":24,\"description\":\"A simple model at the end of a time series where there are insufficient observations and/or time to establish a new harmonic model following a model break.\"},{\"name\":\"insufficient_clear\",\"value\":44,\"description\":\"A simple model for the entire time series in cases where fewer than 25% of input observations are labeled as 'Clear' or 'Water' by the U.S. Landsat ARD per-pixel quality band (PIXELQA).\"},{\"name\":\"persistent_snow\",\"value\":54,\"description\":\"A simple model for the entire time series in cases where 75% or more of input observations are labeled as 'Snow' by the U.S. Landsat ARD per-pixel quality band (PIXELQA).\"}]},\"browse\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"USGS Browse Image\",\"description\":\"Image generated by USGS for viewing LCMAP classification data in web applications.\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"lcachg\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Annual Land Cover Change\",\"description\":\"Synthesis of Primary Land Cover of current and previous year identifying changes in land cover class.\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"name\":\"nodata\",\"value\":0,\"color_hint\":\"000000\",\"description\":\"No Data\"},{\"name\":\"developed\",\"value\":1,\"color_hint\":\"ff3232\",\"description\":\"Developed\"},{\"name\":\"cropland\",\"value\":2,\"color_hint\":\"be8c5a\",\"description\":\"Cropland\"},{\"name\":\"grass_shrub\",\"value\":3,\"color_hint\":\"e6f0d2\",\"description\":\"Grass/Shrub\"},{\"name\":\"tree_cover\",\"value\":4,\"color_hint\":\"1c6330\",\"description\":\"Tree Cover\"},{\"name\":\"water\",\"value\":5,\"color_hint\":\"0070ff\",\"description\":\"Water\"},{\"name\":\"wetlands\",\"value\":6,\"color_hint\":\"b3d9ff\",\"description\":\"Wetlands\"},{\"name\":\"ice_snow\",\"value\":7,\"color_hint\":\"ffffff\",\"description\":\"Snow/Ice\"},{\"name\":\"barren\",\"value\":8,\"color_hint\":\"b3aea3\",\"description\":\"Barren\"},{\"name\":\"1_to_2\",\"value\":12,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Cropland\"},{\"name\":\"1_to_3\",\"value\":13,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Grass/Shrub\"},{\"name\":\"1_to_4\",\"value\":14,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Tree Cover\"},{\"name\":\"1_to_5\",\"value\":15,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Water\"},{\"name\":\"1_to_6\",\"value\":16,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Wetlands\"},{\"name\":\"1_to_7\",\"value\":17,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Snow/Ice\"},{\"name\":\"1_to_8\",\"value\":18,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Barren\"},{\"name\":\"2_to_1\",\"value\":21,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Developed\"},{\"name\":\"2_to_3\",\"value\":23,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Grass/Shrub\"},{\"name\":\"2_to_4\",\"value\":24,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Tree Cover\"},{\"name\":\"2_to_5\",\"value\":25,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Water\"},{\"name\":\"2_to_6\",\"value\":26,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Wetlands\"},{\"name\":\"2_to_7\",\"value\":27,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Snow/Ice\"},{\"name\":\"2_to_8\",\"value\":28,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Barren\"},{\"name\":\"3_to_1\",\"value\":31,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Developed\"},{\"name\":\"3_to_2\",\"value\":32,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Cropland\"},{\"name\":\"3_to_4\",\"value\":34,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Tree Cover\"},{\"name\":\"3_to_5\",\"value\":35,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Water\"},{\"name\":\"3_to_6\",\"value\":36,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Wetlands\"},{\"name\":\"3_to_7\",\"value\":37,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Snow/Ice\"},{\"name\":\"3_to_8\",\"value\":38,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Barren\"},{\"name\":\"4_to_1\",\"value\":41,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Developed\"},{\"name\":\"4_to_2\",\"value\":42,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Cropland\"},{\"name\":\"4_to_3\",\"value\":43,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Grass/Shrub\"},{\"name\":\"4_to_5\",\"value\":45,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Water\"},{\"name\":\"4_to_6\",\"value\":46,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Wetlands\"},{\"name\":\"4_to_7\",\"value\":47,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Snow/Ice\"},{\"name\":\"4_to_8\",\"value\":48,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Barren\"},{\"name\":\"5_to_1\",\"value\":51,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Developed\"},{\"name\":\"5_to_2\",\"value\":52,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Cropland\"},{\"name\":\"5_to_3\",\"value\":53,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Grass/Shrub\"},{\"name\":\"5_to_4\",\"value\":54,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Tree Cover\"},{\"name\":\"5_to_6\",\"value\":56,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Wetlands\"},{\"name\":\"5_to_7\",\"value\":57,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Snow/Ice\"},{\"name\":\"5_to_8\",\"value\":58,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Barren\"},{\"name\":\"6_to_1\",\"value\":61,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Developed\"},{\"name\":\"6_to_2\",\"value\":62,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Cropland\"},{\"name\":\"6_to_3\",\"value\":63,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Grass/Shrub\"},{\"name\":\"6_to_4\",\"value\":64,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Tree Cover\"},{\"name\":\"6_to_5\",\"value\":65,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Water\"},{\"name\":\"6_to_7\",\"value\":67,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Snow/Ice\"},{\"name\":\"6_to_8\",\"value\":68,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Barren\"},{\"name\":\"7_to_1\",\"value\":71,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Developed\"},{\"name\":\"7_to_2\",\"value\":72,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Cropland\"},{\"name\":\"7_to_3\",\"value\":73,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Grass/Shrub\"},{\"name\":\"7_to_4\",\"value\":74,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Tree Cover\"},{\"name\":\"7_to_5\",\"value\":75,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Water\"},{\"name\":\"7_to_6\",\"value\":76,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Wetlands\"},{\"name\":\"7_to_8\",\"value\":78,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Barren\"},{\"name\":\"8_to_1\",\"value\":81,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Developed\"},{\"name\":\"8_to_2\",\"value\":82,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Cropland\"},{\"name\":\"8_to_3\",\"value\":83,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Grass/Shrub\"},{\"name\":\"8_to_4\",\"value\":84,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Tree Cover\"},{\"name\":\"8_to_5\",\"value\":85,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Water\"},{\"name\":\"8_to_6\",\"value\":86,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Wetlands\"},{\"name\":\"8_to_7\",\"value\":87,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Snow/Ice\"}]},\"sclast\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Time Since Last Change\",\"description\":\"Time, in days, since the last identified Spectral Change (SCTIME).\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"scstab\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Spectral Stability Period\",\"description\":\"Measure of the amount of time in days that a pixel has been in its current spectral state as of July 1st. Current spectral state can refer to both during stable time series segments or a period outside of stable time series segments.\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"sctime\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Time of Spectral Change\",\"description\":\"Represents the timing of a spectral change within the current product year as the day of year the change occurred.\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"lcpconf\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Primary Land Cover Confidence\",\"description\":\"Provides provenance tracking and a measure of confidence that the Primary Land Cover label matches the training data.\",\"file:values\":[{\"values\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100],\"summary\":\"Measure of confidence that the Primary Land Cover label matches the training data.\"},{\"values\":[151],\"summary\":\"Time series model identified as transition from a Grass/Shrub class to a Tree Cover class. Primary Land Cover class assignment based on secondary analysis.\"},{\"values\":[152],\"summary\":\"Time series model identified as transition from a Tree Cover class to a Grass/Shrub class. Primary Land cover class assignment based on secondary analysis.\"},{\"values\":[201],\"summary\":\"No stable time series models were produced for this location. Primary Land Cover was assigned the land cover class present in NLCD-2001 (cross-walked to LCMAP Level 1 classification schema, see LCMAP Science Product Guide for more information).\"},{\"values\":[202],\"summary\":\"Insufficient data available to extend most recent time series model past July 1st of current year. Land cover assigned the last identified cover class from earlier year.\"},{\"values\":[211],\"summary\":\"July 1st falls in a gap between two stable time series models of the same land cover class. Primary Land Cover assigned the primary land cover class of those before/after models.\"},{\"values\":[212],\"summary\":\"July 1st falls in a gap between two stable time series models of differing land cover class. If July 1st is before the 'break date' of the earlier model, Primary Land Cover is assigned the primary land cover class of that earlier model. Otherwise, Primary Land Cover is assigned the primary land cover class of the subsequent, later model.\"},{\"values\":[213],\"summary\":\"Insufficient data available to establish a stable time series model at the beginning of the time series prior to July 1st of the current year. Primary Land Cover assigned the primary land cover class of 1st subsequent model.\"},{\"values\":[214],\"summary\":\"Insufficient data available to establish a new stable time series model following a break near the end of the time series prior to July 1st of the current year. Primary Land Cover assigned the last identified primary land cover class from earlier year.\"}],\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"lcsconf\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Secondary Land Cover Confidence\",\"description\":\"Provides provenance tracking and a measure of confidence that the Secondary Land Cover label matches the training data.\",\"file:values\":[{\"values\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100],\"summary\":\"Measure of confidence that the Secondary Land Cover label matches the training data.\"},{\"values\":[151],\"summary\":\"Time series model identified as transition from a Grass/Shrub class to a Tree Cover class in Primary Land Cover. Primary Land Cover class assignment based on secondary analysis and Secondary Land Cover class assigned logical opposite of Primary.\"},{\"values\":[152],\"summary\":\"Time series model identified as transition from a Tree Cover class to a Grass/Shrub class in Primary Land Cover. Primary Land Cover class assignment based on secondary analysis and Secondary Land Cover class assigned logical opposite of Primary.\"},{\"values\":[201],\"summary\":\"No stable time series models were produced for this location. Secondary Land Cover assigned the land cover class present in NLCD-2001 (cross-walked to LCMAP classification schema, see LCMAP Science Product Guide for more information).\"},{\"values\":[202],\"summary\":\"Insufficient data available to extend most recent time series model past July 1st of current year. Secondary Land Cover assigned the last identified secondary cover class from earlier year.\"},{\"values\":[211],\"summary\":\"July 1st falls in a gap between two stable time series models of the same secondary land cover class. Secondary Land Cover assigned the land cover class of those before/after models.\"},{\"values\":[212],\"summary\":\"July 1st falls in a gap between two stable time series models of differing secondary land cover classes. If July 1st is before the 'break date' of the earlier model, Secondary Land Cover is assigned the secondary land cover class of the earlier model. Otherwise, Secondary Land Cover is assigned the secondary land cover class of the subsequent model.\"},{\"values\":[213],\"summary\":\"Insufficient data available to establish a stable time series model at the beginning of the time series prior to July 1st of the current year. Secondary Land Cover assigned the secondary land cover class of 1st subsequent model.\"},{\"values\":[214],\"summary\":\"Insufficient data available to establish a new stable time series model following a break near the end of the time series prior to July 1st of the current year. Secondary Land Cover assigned the last identified secondary cover class from earlier year.\"}],\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"lcpri_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Primary Land Cover Metadata\",\"description\":\"Primary Land Cover product metadata\"},\"lcsec_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Secondary Land Cover Metadata\",\"description\":\"Secondary Land Cover product metadata\"},\"scmag_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Change Magnitude Metadata\",\"description\":\"Change Magnitude product metadata\"},\"scmqa_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Model Quality Metadata\",\"description\":\"Model Quality product metadata\"},\"lcachg_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Annual Land Cover Change Metadata\",\"description\":\"Annual Land Cover Change product metadata\"},\"sclast_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Time Since Last Change Metadata\",\"description\":\"Time Since Last Change product metadata\"},\"scstab_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Spectral Stability Period Metadata\",\"description\":\"Spectral Stability Period product metadata\"},\"sctime_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Time of Spectral Change Metadata\",\"description\":\"Time of Spectral Change product metadata\"},\"lcpconf_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Primary Land Cover Confidence Metadata\",\"description\":\"Primary Land Cover Confidence product metadata\"},\"lcsconf_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Secondary Land Cover Confidence Metadata\",\"description\":\"Secondary Land Cover Confidence product metadata\"}},\"sci:citation\":\"U.S. Geological Survey (USGS), 2022, Land Change Monitoring, Assessment, and Projection (LCMAP) Collection 1.0 Science Products for Hawaii: USGS data release\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"usgs-lcmap\",\"msft:container\":\"lcmap\",\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.1.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.1016/j.jag.2022.103015\",\"citation\":\"Li, C., Xian, G., Wellington, D., Smith, K., Horton, J., & Zhou, Q., 2022, Development of the LCMAP annual land cover product across Hawaii: International Journal of Applied Earth Observation and Geoinformation, v. 113, article 103015.\"},{\"doi\":\"10.1016/j.rse.2019.111356\",\"citation\":\"Brown, J.F., Tollerud, H.J., Barber, C.P., Zhou, Q., Dwyer, J.L., Vogelmann, J.E., Loveland, T.R., Woodcock, C.E., Stehman, S.V., Zhu, Z., Pengra, B.W., Smith, K., Horton, J.A., Xian, G., Auch, R.F., Sohl, T.L., Sayler, K.L., Gallant, A.L., Zelenak, D., Reker, R.R., and Rover, J., 2020, Lessons learned implementing an operational continuous United States national land change monitoring capability-The Land Change Monitoring, Assessment, and Projection (LCMAP) approach: Remote Sensing of Environment, v. 238, article 111356\"}],\"msft:storage_account\":\"landcoverdata\",\"msft:short_description\":\"USGS Land Change Monitoring, Assessment, and Projection (LCMAP) Collection 1.0 Science Products for Hawaii\",\"msft:region\":\"westeurope\"},{\"id\":\"noaa-climate-normals-tabular\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.1175/BAMS-D-11-00197.1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.1175/BAMS-D-11-00173.1\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/products/land-based-station/us-climate-normals\",\"type\":\"text/html\",\"title\":\"NOAA U.S. Climate Normals Landing Page\"},{\"rel\":\"license\",\"href\":\"https://www.noaa.gov/information-technology/open-data-dissemination\",\"type\":\"text/html\",\"title\":\"NOAA Open Data Dissemination\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-climate-normals-tabular\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"NOAA US Tabular Climate Normals\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-climate-normals-tabular-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"NOAA U.S. Tabular Climate Normals Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-climate-normals-tabular.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-177.38333,-14.3306,174.1,71.3214]]},\"temporal\":{\"interval\":[[\"1981-01-01T00:00:00Z\",\"2020-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"NOAA\",\"Climate Normals\",\"Weather\",\"Surface Observations\",\"Climatology\",\"CONUS\"],\"providers\":[{\"url\":\"https://www.ncei.noaa.gov/\",\"name\":\"NOAA National Centers for Environmental Information\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"noaa_climate_normals:period\":[\"1981-2010\",\"1991-2020\",\"2006-2020\"],\"noaa_climate_normals:frequency\":[\"hourly\",\"daily\",\"monthly\",\"annualseasonal\"]},\"description\":\"The [NOAA United States Climate Normals](https://www.ncei.noaa.gov/products/land-based-station/us-climate-normals) provide information about typical climate conditions for thousands of weather station locations across the United States. Normals act both as a ruler to compare current weather and as a predictor of conditions in the near future. The official normals are calculated for a uniform 30 year period, and consist of annual/seasonal, monthly, daily, and hourly averages and statistics of temperature, precipitation, and other climatological variables for each weather station. \\n\\nNOAA produces Climate Normals in accordance with the [World Meteorological Organization](https://public.wmo.int/en) (WMO), of which the United States is a member. The WMO requires each member nation to compute 30-year meteorological quantity averages at least every 30 years, and recommends an update each decade, in part to incorporate newer weather stations. The 1991\u20132020 U.S. Climate Normals are the latest in a series of decadal normals first produced in the 1950s. \\n\\nThis Collection contains tabular weather variable data at weather station locations in GeoParquet format, converted from the source CSV files. The source NetCDF files are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\n\\nData are provided for annual/seasonal, monthly, daily, and hourly frequencies for the following time periods:\\n\\n- Legacy 30-year normals (1981\u20132010)\\n- Supplemental 15-year normals (2006\u20132020)\\n\",\"item_assets\":{\"geoparquet\":{\"type\":\"application/x-parquet\",\"roles\":[\"data\"],\"title\":\"Dataset root\",\"table:storage_options\":{\"account_name\":\"noaanormals\"}}},\"msft:region\":\"eastus\",\"stac_version\":\"1.0.0\",\"table:tables\":[{\"name\":\"1981_2010-hourly\",\"description\":\"Hourly Climate Normals for Period 1981-2010\"},{\"name\":\"1981_2010-daily\",\"description\":\"Daily Climate Normals for Period 1981-2010\"},{\"name\":\"1981_2010-monthly\",\"description\":\"Monthly Climate Normals for Period 1981-2010\"},{\"name\":\"1981_2010-annualseasonal\",\"description\":\"Annual/Seasonal Climate Normals for Period 1981-2010\"},{\"name\":\"1991_2020-hourly\",\"description\":\"Hourly Climate Normals for Period 1991-2020\"},{\"name\":\"1991_2020-daily\",\"description\":\"Daily Climate Normals for Period 1991-2020\"},{\"name\":\"1991_2020-monthly\",\"description\":\"Monthly Climate Normals for Period 1991-2020\"},{\"name\":\"1991_2020-annualseasonal\",\"description\":\"Annual/Seasonal Climate Normals for Period 1991-2020\"},{\"name\":\"2006_2020-hourly\",\"description\":\"Hourly Climate Normals for Period 2006-2020\"},{\"name\":\"2006_2020-daily\",\"description\":\"Daily Climate Normals for Period 2006-2020\"},{\"name\":\"2006_2020-monthly\",\"description\":\"Monthly Climate Normals for Period 2006-2020\"},{\"name\":\"2006_2020-annualseasonal\",\"description\":\"Annual/Seasonal Climate Normals for Period 2006-2020\"}],\"msft:group_id\":\"noaa-climate-normals\",\"msft:container\":\"climate-normals-geoparquet\",\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.1175/BAMS-D-11-00197.1\",\"citation\":\"Arguez, A., I. Durre, S. Applequist, R. Vose, M. Squires, X. Yin, R. Heim, and T. Owen, 2012: NOAA's 1981-2010 climate normals: An overview. Bull. Amer. Meteor. Soc., 93, 1687-1697. DOI: 10.1175/BAMS-D-11-00197.1.\"},{\"doi\":\"10.1175/BAMS-D-11-00173.1\",\"citation\":\"Applequist, S., A. Arguez, I. Durre, M. Squires, R. Vose, and X. Yin, 2012: 1981-2010 U.S. Hourly Normals. Bulletin of the American Meteorological Society, 93, 1637-1640. DOI: 10.1175/BAMS-D-11-00173.1.\"}],\"msft:storage_account\":\"noaanormals\",\"msft:short_description\":\"Tabular Climate Normal data for over 15,000 United States weather station locations in GeoParquet format.\"},{\"id\":\"noaa-climate-normals-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/products/land-based-station/us-climate-normals\",\"type\":\"text/html\",\"title\":\"NOAA U.S. Climate Normals Landing Page\"},{\"rel\":\"license\",\"href\":\"https://www.noaa.gov/information-technology/open-data-dissemination\",\"type\":\"text/html\",\"title\":\"NOAA Open Data Dissemination\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/sites/default/files/2022-04/Readme_Monthly_Gridded_Normals.pdf\",\"type\":\"application/pdf\",\"title\":\"Readme for Monthly Gridded Normals\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/sites/default/files/2022-04/Documentation_Monthly_Gridded_Normals.pdf\",\"type\":\"application/pdf\",\"title\":\"Documentation for Monthly Gridded Normals\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-climate-normals-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"NOAA US Gridded Climate Normals (NetCDF)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-climate-normals-netcdf-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"NOAA U.S. Gridded Climate Normals (NetCDF) Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-climate-normals-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-124.708333,24.541666,-66.999995,49.375001]]},\"temporal\":{\"interval\":[[\"1901-01-01T00:00:00Z\",\"2020-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"NOAA\",\"Climate Normals\",\"Weather\",\"Surface Observations\",\"Climatology\",\"CONUS\"],\"providers\":[{\"url\":\"https://www.ncei.noaa.gov/\",\"name\":\"NOAA National Centers for Environmental Information\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"noaa_climate_normals:period\":[\"1901-2000\",\"1991-2020\",\"2006-2020\"],\"noaa_climate_normals:frequency\":[\"daily\",\"monthly\"]},\"description\":\"The [NOAA Gridded United States Climate Normals](https://www.ncei.noaa.gov/products/land-based-station/us-climate-normals#tab-1027) provide a continuous grid of temperature and precipitation data across the contiguous United States (CONUS). The grids are derived from NOAA's [NClimGrid dataset](https://planetarycomputer.microsoft.com/dataset/group/noaa-nclimgrid), and resolutions (nominal 5x5 kilometer) and spatial extents (CONUS) therefore match that of NClimGrid. Monthly, seasonal, and annual gridded normals are computed from simple averages of the NClimGrid data and are provided for three time-periods: 1901\u20132020, 1991\u20132020, and 2006\u20132020. Daily gridded normals are smoothed for a smooth transition from one day to another and are provided for two time-periods: 1991\u20132020, and 2006\u20132020.\\n\\nNOAA produces Climate Normals in accordance with the [World Meteorological Organization](https://public.wmo.int/en) (WMO), of which the United States is a member. The WMO requires each member nation to compute 30-year meteorological quantity averages at least every 30 years, and recommends an update each decade, in part to incorporate newer weather stations. The 1991\u20132020 U.S. Climate Normals are the latest in a series of decadal normals first produced in the 1950s. \\n\\nThe data in this Collection are the original NetCDF files provided by NOAA's National Centers for Environmental Information. This Collection contains gridded data for the following frequencies and time periods:\\n\\n- Annual, seasonal, and monthly normals\\n - 100-year (1901\u20132000)\\n - 30-year (1991\u20132020)\\n \ - 15-year (2006\u20132020)\\n- Daily normals\\n - 30-year (1991\u20132020)\\n \ - 15-year (2006\u20132020)\\n\\nFor most use-cases, we recommend using the [`noaa-climate-normals-gridded`](https://planetarycomputer.microsoft.com/dataset/noaa-climate-normals-gridded) collection, which contains the same data in Cloud Optimized GeoTIFF format. The NetCDF files are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\n\",\"item_assets\":{\"netcdf\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"]}},\"msft:region\":\"eastus\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-climate-normals\",\"msft:container\":\"gridded-normals\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"noaanormals\",\"msft:short_description\":\"Gridded Climate Normals for the contiguous United States in the original NetCDF format provided by NOAA's National Centers for Environmental Information.\"},{\"id\":\"goes-glm\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"license\",\"href\":\"https://www.ncei.noaa.gov/access/metadata/landing-page/bin/iso?id=gov.noaa.ncdc:C01527\",\"title\":\"License\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/access/metadata/landing-page/bin/iso?id=gov.noaa.ncdc:C01527\",\"type\":\"text/html\",\"title\":\"Product Landing Page\"},{\"rel\":\"about\",\"href\":\"https://www.goes-r.gov/users/docs/PUG-main-vol1.pdf\",\"type\":\"application/pdf\",\"title\":\"Product Definition and Users' Guide (PUG) Vol.1 Main\"},{\"rel\":\"about\",\"href\":\"https://www.goes-r.gov/products/docs/PUG-L2+-vol5.pdf\",\"type\":\"application/pdf\",\"title\":\"Product Definition and Users' Guide (PUG) Vol.5 Level 2+ Products\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.7289/V5KH0KK6\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/goes-glm\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"GOES-R Lightning Detection\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/goes-glm-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"GOES GLM Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/goes-glm.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"QS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-66.56,-8.44,66.56],[156.44,-66.56,180.0,66.56]]},\"temporal\":{\"interval\":[[\"2018-02-13T16:10:00Z\",null]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.7289/V5KH0KK6\",\"keywords\":[\"GOES\",\"NOAA\",\"NASA\",\"Satellite\",\"Lightning\",\"Weather\"],\"providers\":[{\"url\":\"https://www.nasa.gov/content/goes\",\"name\":\"NASA\",\"roles\":[\"producer\"]},{\"url\":\"https://www.goes-r.gov/\",\"name\":\"NOAA\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[8000],\"mission\":[\"GOES\"],\"platform\":[\"GOES-16\",\"GOES-17\",\"GOES-18\",\"GOES-19\"],\"instruments\":[\"FM1\",\"FM2\"],\"constellation\":[\"GOES\"],\"processing:level\":[\"L2\"],\"goes:orbital-slot\":[\"West\",\"East\",\"Test\"]},\"description\":\"The [Geostationary Lightning Mapper (GLM)](https://www.goes-r.gov/spacesegment/glm.html) is a single-channel, near-infrared optical transient detector that can detect the momentary changes in an optical scene, indicating the presence of lightning. GLM measures total lightning (in-cloud, cloud-to-cloud and cloud-to-ground) activity continuously over the Americas and adjacent ocean regions with near-uniform spatial resolution of approximately 10 km. GLM collects information such as the frequency, location and extent of lightning discharges to identify intensifying thunderstorms and tropical cyclones. Trends in total lightning available from the GLM provide critical information to forecasters, allowing them to focus on developing severe storms much earlier and before these storms produce damaging winds, hail or even tornadoes.\\n\\nThe GLM data product consists of a hierarchy of earth-located lightning radiant energy measures including events, groups, and flashes:\\n\\n- Lightning events are detected by the instrument.\\n- Lightning groups are a collection of one or more lightning events that satisfy temporal and spatial coincidence thresholds.\\n- Similarly, lightning flashes are a collection of one or more lightning groups that satisfy temporal and spatial coincidence thresholds.\\n\\nThe product includes the relationship among lightning events, groups, and flashes, and the area coverage of lightning groups and flashes. The product also includes processing and data quality metadata, and satellite state and location information. \\n\\nThe NetCDF files are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\",\"item_assets\":{\"netcdf\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Original NetCDF4 file\"}},\"msft:region\":\"westeurope\",\"sci:citation\":\"GOES-R Algorithm Working Group and GOES-R Series Program, (2018): NOAA GOES-R Series Geostationary Lightning Mapper (GLM) Level 2 Lightning Detection: Events, Groups, and Flashes. NOAA National Centers for Environmental Information. doi:10.7289/V5KH0KK6.\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"goes\",\"msft:container\":\"noaa-goes-geoparquet\",\"stac_extensions\":[\"https://stac-extensions.github.io/goes/v1.0.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"goeseuwest\",\"msft:short_description\":\"Continuous lightning detection over the Western Hemisphere from the Geostationary Lightning Mapper (GLM) instrument.\"},{\"id\":\"sentinel-1-grd\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"Copernicus Sentinel data terms\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-1-grd\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel 1 Level-1 Ground Range Detected (GRD)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-1-grd.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Sentinel 1 GRD\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-1-grd.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2014-10-10T00:28:21Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"ESA\",\"Copernicus\",\"Sentinel\",\"C-Band\",\"SAR\",\"GRD\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"platform\":[\"SENTINEL-1A\",\"SENTINEL-1B\",\"SENTINEL-1C\"],\"constellation\":[\"Sentinel-1\"],\"s1:resolution\":[\"full\",\"high\",\"medium\"],\"s1:orbit_source\":[\"DOWNLINK\",\"POEORB\",\"PREORB\",\"RESORB\"],\"sar:looks_range\":[5,6,3,2],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"sar:product_type\":[\"GRD\"],\"sar:looks_azimuth\":[1,6,2],\"sar:polarizations\":[[\"VV\",\"VH\"],[\"HH\",\"HV\"],[\"VV\"],[\"VH\"],[\"HH\"],[\"HV\"]],\"sar:frequency_band\":[\"C\"],\"s1:processing_level\":[\"1\"],\"sar:instrument_mode\":[\"IW\",\"EW\",\"SM\"],\"sar:center_frequency\":[5.405],\"sar:resolution_range\":[20,23,50,93,9],\"s1:product_timeliness\":[\"NRT-10m\",\"NRT-1h\",\"NRT-3h\",\"Fast-24h\",\"Off-line\",\"Reprocessing\"],\"sar:resolution_azimuth\":[22,23,50,87,9],\"sar:pixel_spacing_range\":[10,25,40,3.5],\"sar:observation_direction\":[\"right\"],\"sar:pixel_spacing_azimuth\":[10,25,40,3.5],\"sar:looks_equivalent_number\":[4.4,29.7,2.7,10.7,3.7],\"sat:platform_international_designator\":[\"2014-016A\",\"2016-025A\",\"0000-000A\"]},\"description\":\"The [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) mission is a constellation of two polar-orbiting satellites, operating day and night performing C-band synthetic aperture radar imaging. The Level-1 Ground Range Detected (GRD) products in this Collection consist of focused SAR data that has been detected, multi-looked and projected to ground range using the Earth ellipsoid model WGS84. The ellipsoid projection of the GRD products is corrected using the terrain height specified in the product general annotation. The terrain height used varies in azimuth but is constant in range (but can be different for each IW/EW sub-swath).\\n\\nGround range coordinates are the slant range coordinates projected onto the ellipsoid of the Earth. Pixel values represent detected amplitude. Phase information is lost. The resulting product has approximately square resolution pixels and square pixel spacing with reduced speckle at a cost of reduced spatial resolution.\\n\\nFor the IW and EW GRD products, multi-looking is performed on each burst individually. All bursts in all sub-swaths are then seamlessly merged to form a single, contiguous, ground range, detected image per polarization.\\n\\nFor more information see the [ESA documentation](https://sentinel.esa.int/web/sentinel/user-guides/sentinel-1-sar/product-types-processing-levels/level-1)\\n\\n### Terrain Correction\\n\\nUsers might want to geometrically or radiometrically terrain correct the Sentinel-1 GRD data from this collection. The [Sentinel-1-RTC Collection](https://planetarycomputer.microsoft.com/dataset/sentinel-1-rtc) collection is a global radiometrically terrain corrected dataset derived from Sentinel-1 GRD. Additionally, users can terrain-correct on the fly using [any DEM available on the Planetary Computer](https://planetarycomputer.microsoft.com/catalog?tags=DEM). See [Customizable radiometric terrain correction](https://planetarycomputer.microsoft.com/docs/tutorials/customizable-rtc-sentinel1/) for more.\",\"item_assets\":{\"hh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HH: horizontal transmit, horizontal receive\",\"description\":\"Amplitude of signal transmitted with horizontal polarization and received with horizontal polarization with radiometric terrain correction applied.\"},\"hv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HV: horizontal transmit, vertical receive\",\"description\":\"Amplitude of signal transmitted with horizontal polarization and received with vertical polarization with radiometric terrain correction applied.\"},\"vh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VH: vertical transmit, horizontal receive\",\"description\":\"Amplitude of signal transmitted with vertical polarization and received with horizontal polarization with radiometric terrain correction applied.\"},\"vv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VV: vertical transmit, vertical receive\",\"description\":\"Amplitude of signal transmitted with vertical polarization and received with vertical polarization with radiometric terrain correction applied.\"},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Preview Image\",\"description\":\"An averaged, decimated preview image in PNG format. Single polarisation products are represented with a grey scale image. Dual polarisation products are represented by a single composite colour image in RGB with the red channel (R) representing the co-polarisation VV or HH), the green channel (G) represents the cross-polarisation (VH or HV) and the blue channel (B) represents the ratio of the cross an co-polarisations.\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Manifest File\",\"description\":\"General product metadata in XML format. Contains a high-level textual description of the product and references to all of product's components, the product metadata, including the product identification and the resource references, and references to the physical location of each component file contained in the product.\"},\"schema-noise-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\"},\"schema-noise-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\"},\"schema-noise-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\"},\"schema-noise-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\"},\"schema-product-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\"},\"schema-product-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\"},\"schema-product-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\"},\"schema-product-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\"},\"schema-calibration-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\"},\"schema-calibration-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\"},\"schema-calibration-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\"},\"schema-calibration-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-1\",\"msft:container\":\"s1-grd\",\"stac_extensions\":[\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"sentinel1euwest\",\"msft:short_description\":\"Sentinel-1 Level-1 Ground Range Detected (GRD) products consist of focused SAR data that has been detected, multi-looked and projected to ground range using an Earth ellipsoid model.\",\"msft:region\":\"westeurope\"},{\"id\":\"noaa-climate-normals-gridded\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/products/land-based-station/us-climate-normals\",\"type\":\"text/html\",\"title\":\"NOAA U.S. Climate Normals Landing Page\"},{\"rel\":\"license\",\"href\":\"https://www.noaa.gov/information-technology/open-data-dissemination\",\"type\":\"text/html\",\"title\":\"NOAA Open Data Dissemination\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/sites/default/files/2022-04/Readme_Monthly_Gridded_Normals.pdf\",\"type\":\"application/pdf\",\"title\":\"Readme for Monthly Gridded Normals\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/sites/default/files/2022-04/Documentation_Monthly_Gridded_Normals.pdf\",\"type\":\"application/pdf\",\"title\":\"Documentation for Monthly Gridded Normals\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-climate-normals-gridded\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-climate-normals-gridded-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"NOAA U.S. Gridded Climate Normals (Cloud-Optimized GeoTIFF) Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-climate-normals-gridded.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-124.708333,24.541666,-66.999995,49.375001]]},\"temporal\":{\"interval\":[[\"1901-01-01T00:00:00Z\",\"2020-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"NOAA\",\"Climate Normals\",\"Weather\",\"Surface Observations\",\"Climatology\",\"CONUS\"],\"providers\":[{\"url\":\"https://www.ncei.noaa.gov/\",\"name\":\"NOAA National Centers for Environmental Information\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"noaa_climate_normals:period\":[\"1901-2000\",\"1991-2020\",\"2006-2020\"],\"noaa_climate_normals:frequency\":[\"daily\",\"monthly\",\"seasonal\",\"annual\"]},\"description\":\"The [NOAA Gridded United States Climate Normals](https://www.ncei.noaa.gov/products/land-based-station/us-climate-normals#tab-1027) provide a continuous grid of temperature and precipitation data across the contiguous United States (CONUS). The grids are derived from NOAA's [NClimGrid dataset](https://planetarycomputer.microsoft.com/dataset/group/noaa-nclimgrid), and resolutions (nominal 5x5 kilometer) and spatial extents (CONUS) therefore match that of NClimGrid. Monthly, seasonal, and annual gridded normals are computed from simple averages of the NClimGrid data and are provided for three time-periods: 1901\u20132020, 1991\u20132020, and 2006\u20132020. Daily gridded normals are smoothed for a smooth transition from one day to another and are provided for two time-periods: 1991\u20132020, and 2006\u20132020.\\n\\nNOAA produces Climate Normals in accordance with the [World Meteorological Organization](https://public.wmo.int/en) (WMO), of which the United States is a member. The WMO requires each member nation to compute 30-year meteorological quantity averages at least every 30 years, and recommends an update each decade, in part to incorporate newer weather stations. The 1991\u20132020 U.S. Climate Normals are the latest in a series of decadal normals first produced in the 1950s. \\n\\nThis Collection contains gridded data for the following frequencies and time periods:\\n\\n- Annual, seasonal, and monthly normals\\n - 100-year (1901\u20132000)\\n \ - 30-year (1991\u20132020)\\n - 15-year (2006\u20132020)\\n- Daily normals\\n - 30-year (1991\u20132020)\\n - 15-year (2006\u20132020)\\n\\nThe data in this Collection have been converted from the original NetCDF format to Cloud Optimized GeoTIFFs (COGs). The source NetCDF files are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\n\\n## STAC Metadata\\n\\nThe STAC items in this collection contain several custom fields that can be used to further filter the data.\\n\\n* `noaa_climate_normals:period`: Climate normal time period. This can be \\\"1901-2000\\\", \\\"1991-2020\\\", or \\\"2006-2020\\\".\\n* `noaa_climate_normals:frequency`: Climate normal temporal interval (frequency). This can be \\\"daily\\\", \\\"monthly\\\", \\\"seasonal\\\" , or \\\"annual\\\"\\n* `noaa_climate_normals:time_index`: Time step index, e.g., month of year (1-12).\\n\\nThe `description` field of the assets varies by frequency. Using `prcp_norm` as an example, the descriptions are\\n\\n* annual: \\\"Annual precipitation normals from monthly precipitation normal values\\\"\\n* seasonal: \\\"Seasonal precipitation normals (WSSF) from monthly normals\\\"\\n* monthly: \\\"Monthly precipitation normals from monthly precipitation values\\\"\\n* daily: \\\"Precipitation normals from daily averages\\\"\\n\\nCheck the assets on individual items for the appropriate description.\\n\\nThe STAC keys for most assets consist of two abbreviations. A \\\"variable\\\":\\n\\n\\n| Abbreviation | Description |\\n| ------------ | ---------------------------------------- |\\n| prcp | Precipitation over the time period |\\n| tavg | Mean temperature over the time period |\\n| tmax | Maximum temperature over the time period |\\n| tmin | Minimum temperature over the time period |\\n\\nAnd an \\\"aggregation\\\":\\n\\n| Abbreviation | Description \ |\\n| ------------ | ------------------------------------------------------------------------------ |\\n| max | Maximum of the variable over the time period |\\n| min | Minimum of the variable over the time period |\\n| std | Standard deviation of the value over the time period |\\n| flag | An count of the number of inputs (months, years, etc.) to calculate the normal |\\n| norm | The normal for the variable over the time period |\\n\\nSo, for example, `prcp_max` for monthly data is the \\\"Maximum values of all input monthly precipitation normal values\\\".\\n\",\"item_assets\":{\"prcp_max\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"millimeter\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"prcp_min\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"millimeter\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"prcp_std\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"millimeter\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tavg_max\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tavg_min\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tavg_std\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmax_max\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmax_min\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmax_std\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmin_max\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmin_min\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmin_std\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"prcp_flag\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"months\",\"nodata\":0,\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"prcp_norm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"millimeter\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tavg_flag\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"months\",\"nodata\":0,\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tavg_norm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmax_flag\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"months\",\"nodata\":0,\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmax_norm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmin_flag\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"months\",\"nodata\":0,\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmin_norm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"m2dprcp_norm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"description\":\"Month-To-Day Precipitation normals\",\"raster:bands\":[{\"unit\":\"millimeter\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"y2dprcp_norm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"description\":\"Year-To-Day Precipitation normals\",\"raster:bands\":[{\"unit\":\"millimeter\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]}},\"msft:region\":\"eastus\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-climate-normals\",\"msft:container\":\"gridded-normals-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"],\"msft:storage_account\":\"noaanormals\",\"msft:short_description\":\"Gridded Climate Normals for the contiguous United States in Cloud Optimized GeoTIFF (COG) format.\"},{\"id\":\"aster-l1t\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/core-science-systems/hdds/data-policy\",\"title\":\"Public Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/aster-l1t\",\"type\":\"text/html\",\"title\":\"Human readable dataset overview and reference\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/aster-l1t\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ASTER L1T\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/aster.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"ASTER L1T\"},\"geoparquet-items\":{\"href\":\"abfs://items/aster-l1t.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-03-04T12:00:00Z\",\"2006-12-31T12:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"ASTER\",\"USGS\",\"NASA\",\"Satellite\",\"Global\"],\"providers\":[{\"url\":\"https://terra.nasa.gov/about/terra-instruments/aster\",\"name\":\"NASA\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://lpdaac.usgs.gov/data/get-started-data/collection-overview/missions/aster-overview/\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[15,30,90],\"eo:bands\":[{\"gsd\":15,\"name\":\"VNIR_Band1\",\"common_name\":\"green\",\"description\":\"visible yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"gsd\":15,\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"gsd\":15,\"name\":\"VNIR_Band3N\",\"common_name\":\"nir08\",\"description\":\"near infrared\",\"center_wavelength\":0.82,\"full_width_half_max\":0.08},{\"gsd\":30,\"name\":\"SWIR_Band4\",\"common_name\":\"swir16\",\"description\":\"short-wave infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"gsd\":30,\"name\":\"SWIR_Band5\",\"common_name\":\"swir22\",\"description\":\"short-wave infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band6\",\"common_name\":\"swir22\",\"description\":\"short-wave infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band7\",\"common_name\":\"swir22\",\"description\":\"short-wave infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"gsd\":30,\"name\":\"SWIR_Band8\",\"description\":\"short-wave infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"gsd\":30,\"name\":\"SWIR_Band9\",\"description\":\"short-wave infrared\",\"center_wavelength\":2.395,\"full_width_half_max\":0.07},{\"gsd\":90,\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"gsd\":90,\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal infrared\",\"center_wavelength\":11.3,\"full_width_half_max\":0.7}],\"platform\":[\"terra\"],\"instruments\":[\"aster\"]},\"description\":\"The [ASTER](https://terra.nasa.gov/about/terra-instruments/aster) instrument, launched on-board NASA's [Terra](https://terra.nasa.gov/) satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. ASTER images provide information about land surface temperature, color, elevation, and mineral composition.\\n\\nThis dataset represents ASTER [L1T](https://lpdaac.usgs.gov/products/ast_l1tv003/) data from 2000-2006. L1T images have been terrain-corrected and rotated to a north-up UTM projection. Images are in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\n\",\"item_assets\":{\"TIR\":{\"roles\":[\"data\"],\"title\":\"TIR Swath data\",\"eo:bands\":[{\"gsd\":90,\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"gsd\":90,\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal infrared\",\"center_wavelength\":11.3,\"full_width_half_max\":0.7}],\"raster:bands\":[{\"name\":\"TIR_Band10\",\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":90},{\"name\":\"TIR_Band11\",\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":90},{\"name\":\"TIR_Band12\",\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":90},{\"name\":\"TIR_Band13\",\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":90},{\"name\":\"TIR_Band14\",\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":90}]},\"xml\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"XML metadata\"},\"SWIR\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR Swath data\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SWIR_Band4\",\"common_name\":\"swir\",\"description\":\"short-wave infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"gsd\":30,\"name\":\"SWIR_Band5\",\"common_name\":\"swir\",\"description\":\"short-wave infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band6\",\"common_name\":\"swir\",\"description\":\"short-wave infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band7\",\"common_name\":\"swir\",\"description\":\"short-wave infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"gsd\":30,\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"gsd\":30,\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave infrared\",\"center_wavelength\":2.395,\"full_width_half_max\":0.07}],\"raster:bands\":[{\"name\":\"SWIR_Band4\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":30},{\"name\":\"SWIR_Band5\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":30},{\"name\":\"SWIR_Band6\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":30},{\"name\":\"SWIR_Band7\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":30},{\"name\":\"SWIR_Band8\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":30},{\"name\":\"SWIR_Band9\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"VNIR\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR Swath data\",\"eo:bands\":[{\"gsd\":15,\"name\":\"VNIR_Band1\",\"common_name\":\"yellow/green\",\"description\":\"visible yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"gsd\":15,\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"gsd\":15,\"name\":\"VNIR_Band3N\",\"common_name\":\"near infrared\",\"description\":\"near infrared\",\"center_wavelength\":0.82,\"full_width_half_max\":0.08}],\"raster:bands\":[{\"name\":\"VNIR_Band1\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":15},{\"name\":\"VNIR_Band2\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":15},{\"name\":\"VNIR_Band3N\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":15}]},\"qa-txt\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"QA browse file\",\"description\":\"Geometric quality assessment report.\"},\"qa-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"QA browse file\",\"description\":\"Single-band black and white reduced resolution browse overlaid with red, green, and blue (RGB) markers for GCPs used during the geometric verification quality check.\"},\"tir-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"Standalone reduced resolution TIR\"},\"vnir-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"VNIR browse file\",\"description\":\"Standalone reduced resolution VNIR\"}},\"stac_version\":\"1.0.0\",\"msft:container\":\"aster\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"astersa\",\"msft:short_description\":\"The ASTER instrument, launched on-board NASA's Terra satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. This dataset contains ASTER data from 2000-2006.\",\"msft:region\":\"westeurope\"},{\"id\":\"cil-gdpcir-cc-by-sa\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa\"},{\"rel\":\"license\",\"href\":\"https://spdx.org/licenses/CC-BY-SA-4.0.html\",\"type\":\"text/html\",\"title\":\"Creative Commons Attribution Share Alike 4.0 International\"},{\"rel\":\"cite-as\",\"href\":\"https://zenodo.org/record/6403794\",\"type\":\"text/html\"},{\"rel\":\"describedby\",\"href\":\"https://github.com/ClimateImpactLab/downscaleCMIP6/\",\"type\":\"text/html\",\"title\":\"Project homepage\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by-sa\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gdpcir.png\",\"type\":\"image/png\",\"title\":\"Thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1950-01-01T00:00:00Z\",\"2100-12-31T00:00:00Z\"]]}},\"license\":\"CC-BY-SA-4.0\",\"sci:doi\":\"10.5194/egusphere-2022-1513\",\"keywords\":[\"CMIP6\",\"Climate Impact Lab\",\"Rhodium Group\",\"Precipitation\",\"Temperature\"],\"providers\":[{\"url\":\"https://impactlab.org/\",\"name\":\"Climate Impact Lab\",\"roles\":[\"producer\"]},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"cmip6:variable\":[\"pr\",\"tasmax\",\"tasmin\"],\"cmip6:source_id\":[\"CanESM5\"],\"cmip6:experiment_id\":[\"historical\",\"ssp126\",\"ssp245\",\"ssp370\",\"ssp585\"],\"cmip6:institution_id\":[\"BCC\",\"CAS\",\"CCCma\",\"CMCC\",\"CSIRO\",\"CSIRO-ARCCSS\",\"DKRZ\",\"EC-Earth-Consortium\",\"INM\",\"MIROC\",\"MOHC\",\"MPI-M\",\"NCC\",\"NOAA-GFDL\",\"NUIST\"]},\"description\":\"The World Climate Research Programme's [6th Coupled Model Intercomparison Project (CMIP6)](https://www.wcrp-climate.org/wgcm-cmip/wgcm-cmip6) represents an enormous advance in the quality, detail, and scope of climate modeling.\\n\\nThe [Global Downscaled Projections for Climate Impacts Research](https://github.com/ClimateImpactLab/downscaleCMIP6) dataset makes this modeling more applicable to understanding the impacts of changes in the climate on humans and society with two key developments: trend-preserving bias correction and downscaling. In this dataset, the [Climate Impact Lab](https://impactlab.org) provides global, daily minimum and maximum air temperature at the surface (`tasmin` and `tasmax`) and daily cumulative surface precipitation (`pr`) corresponding to the CMIP6 historical, ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 scenarios for 25 global climate models on a 1/4-degree regular global grid.\\n\\n## Accessing the data\\n\\nGDPCIR data can be accessed on the Microsoft Planetary Computer. The dataset is made of of three collections, distinguished by data license:\\n* [Public domain (CC0-1.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0)\\n* [Attribution (CC BY 4.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by)\\n* [Attribution-ShareAlike (CC BY SA 4.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by-sa)\\n\\nEach modeling center with bias corrected and downscaled data in this collection falls into one of these license categories - see the [table below](/dataset/cil-gdpcir-cc-by-sa#available-institutions-models-and-scenarios-by-license-collection) to see which model is in each collection, and see the section below on [Citing, Licensing, and using data produced by this project](/dataset/cil-gdpcir-cc-by-sa#citing-licensing-and-using-data-produced-by-this-project) for citations and additional information about each license.\\n\\n## Data format & contents\\n\\nThe data is stored as partitioned zarr stores (see [https://zarr.readthedocs.io](https://zarr.readthedocs.io)), each of which includes thousands of data and metadata files covering the full time span of the experiment. Historical zarr stores contain just over 50 GB, while SSP zarr stores contain nearly 70GB. Each store is stored as a 32-bit float, with dimensions time (daily datetime), lat (float latitude), and lon (float longitude). The data is chunked at each interval of 365 days and 90 degree interval of latitude and longitude. Therefore, each chunk is `(365, 360, 360)`, with each chunk occupying approximately 179MB in memory.\\n\\nHistorical data is daily, excluding leap days, from Jan 1, 1950 to Dec 31, 2014; SSP data is daily, excluding leap days, from Jan 1, 2015 to either Dec 31, 2099 or Dec 31, 2100, depending on data availability in the source GCM.\\n\\nThe spatial domain covers all 0.25-degree grid cells, indexed by the grid center, with grid edges on the quarter-degree, using a -180 to 180 longitude convention. Thus, the \u201Clon\u201D coordinate extends from -179.875 to 179.875, and the \u201Clat\u201D coordinate extends from -89.875 to 89.875, with intermediate values at each 0.25-degree increment between (e.g. -179.875, -179.625, -179.375, etc).\\n\\n## Available institutions, models, and scenarios by license collection\\n\\n| Modeling institution | Source model | Available experiments \ | License collection |\\n| -------------------- | ----------------- | ------------------------------------------ | ---------------------- |\\n| CAS | FGOALS-g3 [^1] | SSP2-4.5, SSP3-7.0, and SSP5-8.5 \ | Public domain datasets |\\n| INM | INM-CM4-8 \ | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets |\\n| INM | INM-CM5-0 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets |\\n| BCC | BCC-CSM2-MR \ | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40] |\\n| CMCC | CMCC-CM2-SR5 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 \ | CC-BY-40] |\\n| CMCC | CMCC-ESM2 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 | CC-BY-40] |\\n| CSIRO-ARCCSS | ACCESS-CM2 | SSP2-4.5 and SSP3-7.0 | CC-BY-40] |\\n| CSIRO | ACCESS-ESM1-5 | SSP1-2.6, SSP2-4.5, and SSP3-7.0 | CC-BY-40] |\\n| MIROC | MIROC-ES2L | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40] \ |\\n| MIROC | MIROC6 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40] |\\n| MOHC | HadGEM3-GC31-LL | SSP1-2.6, SSP2-4.5, and SSP5-8.5 | CC-BY-40] \ |\\n| MOHC | UKESM1-0-LL | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40] |\\n| MPI-M | MPI-ESM1-2-LR | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40] \ |\\n| MPI-M/DKRZ [^2] | MPI-ESM1-2-HR | SSP1-2.6 and SSP5-8.5 | CC-BY-40] |\\n| NCC | NorESM2-LM | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40] \ |\\n| NCC | NorESM2-MM | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40] |\\n| NOAA-GFDL | GFDL-CM4 | SSP2-4.5 and SSP5-8.5 | CC-BY-40] \ |\\n| NOAA-GFDL | GFDL-ESM4 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40] |\\n| NUIST | NESM3 | SSP1-2.6, SSP2-4.5, and SSP5-8.5 | CC-BY-40] \ |\\n| EC-Earth-Consortium | EC-Earth3 | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40] |\\n| EC-Earth-Consortium \ | EC-Earth3-AerChem | ssp370 | CC-BY-40] \ |\\n| EC-Earth-Consortium | EC-Earth3-CC | ssp245 and ssp585 | CC-BY-40] |\\n| EC-Earth-Consortium \ | EC-Earth3-Veg | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40] \ |\\n| EC-Earth-Consortium | EC-Earth3-Veg-LR | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40] |\\n| CCCma | CanESM5 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 | CC-BY-SA-40] \ |\\n\\n*Notes:*\\n\\n[^1]: At the time of running, no ssp1-2.6 precipitation data was available. Therefore, we provide `tasmin` and `tamax` for this model and experiment, but not `pr`. All other model/experiment combinations in the above table include all three variables.\\n\\n[^2]: The institution which ran MPI-ESM1-2-HR\u2019s historical (CMIP) simulations is `MPI-M`, while the future (ScenarioMIP) simulations were run by `DKRZ`. Therefore, the institution component of `MPI-ESM1-2-HR` filepaths differ between `historical` and `SSP` scenarios.\\n\\n## Project methods\\n\\nThis project makes use of statistical bias correction and downscaling algorithms, which are specifically designed to accurately represent changes in the extremes. For this reason, we selected Quantile Delta Mapping (QDM), following the method introduced by [Cannon et al. (2015)](https://doi.org/10.1175/JCLI-D-14-00754.1), which preserves quantile-specific trends from the GCM while fitting the full distribution for a given day-of-year to a reference dataset (ERA5).\\n\\nWe then introduce a similar method tailored to increase spatial resolution while preserving extreme behavior, Quantile-Preserving Localized-Analog Downscaling (QPLAD).\\n\\nTogether, these methods provide a robust means to handle both the central and tail behavior seen in climate model output, while aligning the full distribution to a state-of-the-art reanalysis dataset and providing the spatial granularity needed to study surface impacts.\\n\\nFor further documentation, see [Global downscaled projections for climate impacts research (GDPCIR): preserving extremes for modeling future climate impacts](https://egusphere.copernicus.org/preprints/2023/egusphere-2022-1513/) (EGUsphere, 2022 [preprint]).\\n\\n## Citing, licensing, and using data produced by this project\\n\\nProjects making use of the data produced as part of the Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CIL GDPCIR) project are requested to cite both this project and the source datasets from which these results are derived. Additionally, the use of data derived from some GCMs *requires* citations, and some modeling centers impose licensing restrictions & requirements on derived works. See each GCM's license info in the links below for more information.\\n\\n### CIL GDPCIR\\n\\nUsers are requested to cite this project in derived works. Our method documentation paper may be cited using the following:\\n\\n> Gergel, D. R., Malevich, S. B., McCusker, K. E., Tenezakis, E., Delgado, M. T., Fish, M. A., and Kopp, R. E.: Global downscaled projections for climate impacts research (GDPCIR): preserving extremes for modeling future climate impacts, EGUsphere [preprint], https://doi.org/10.5194/egusphere-2022-1513, 2023. \\n\\nThe code repository may be cited using the following:\\n\\n> Diana Gergel, Kelly McCusker, Brewster Malevich, Emile Tenezakis, Meredith Fish, Michael Delgado (2022). ClimateImpactLab/downscaleCMIP6: (v1.0.0). Zenodo. https://doi.org/10.5281/zenodo.6403794\\n\\n### ERA5\\n\\nAdditionally, we request you cite the historical dataset used in bias correction and downscaling, ERA5. See the [ECMWF guide to citing a dataset on the Climate Data Store](https://confluence.ecmwf.int/display/CKB/How+to+acknowledge+and+cite+a+Climate+Data+Store+%28CDS%29+catalogue+entry+and+the+data+published+as+part+of+it):\\n\\n> Hersbach, H, et al. The ERA5 global reanalysis. Q J R Meteorol Soc.2020; 146: 1999\u20132049. DOI: [10.1002/qj.3803](https://doi.org/10.1002/qj.3803)\\n>\\n> Mu\xF1oz Sabater, J., (2019): ERA5-Land hourly data from 1981 to present. Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\n>\\n> Mu\xF1oz Sabater, J., (2021): ERA5-Land hourly data from 1950 to 1980. Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\n\\n### GCM-specific citations & licenses\\n\\nThe CMIP6 simulation data made available through the Earth System Grid Federation (ESGF) are subject to Creative Commons [BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) or [BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) licenses. The Climate Impact Lab has reached out to each of the modeling institutions to request waivers from these terms so the outputs of this project may be used with fewer restrictions, and has been granted permission to release the data using the licenses listed here.\\n\\n#### Public Domain Datasets\\n\\nThe following bias corrected and downscaled model simulations are available in the public domain using a [CC0 1.0 Universal Public Domain Declaration](https://creativecommons.org/publicdomain/zero/1.0/). Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0.\\n\\n* **FGOALS-g3**\\n\\n License description: [data_licenses/FGOALS-g3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/FGOALS-g3.txt)\\n\\n \ CMIP Citation:\\n\\n > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6 CMIP*. Version 20190826. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1783\\n\\n ScenarioMIP Citation:\\n\\n \ > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190818; SSP2-4.5 version 20190818; SSP3-7.0 version 20190820; SSP5-8.5 tasmax version 20190819; SSP5-8.5 tasmin version 20190819; SSP5-8.5 pr version 20190818. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2056\\n\\n\\n* **INM-CM4-8**\\n\\n License description: [data_licenses/INM-CM4-8.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/INM-CM4-8.txt)\\n\\n \ CMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8 model output prepared for CMIP6 CMIP*. Version 20190530. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1422\\n\\n ScenarioMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8 model output prepared for CMIP6 ScenarioMIP*. Version 20190603. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12321\\n\\n\\n* **INM-CM5-0**\\n\\n \ License description: [data_licenses/INM-CM5-0.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/INM-CM5-0.txt)\\n\\n \ CMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0 model output prepared for CMIP6 CMIP*. Version 20190610. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1423\\n\\n ScenarioMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190619; SSP2-4.5 version 20190619; SSP3-7.0 version 20190618; SSP5-8.5 version 20190724. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12322\\n\\n\\n#### CC-BY-4.0\\n\\nThe following bias corrected and downscaled model simulations are licensed under a [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/). Note that this license requires citation of the source model output (included here). Please see https://creativecommons.org/licenses/by/4.0/ for more information. Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by.\\n\\n* **ACCESS-CM2**\\n\\n License description: [data_licenses/ACCESS-CM2.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/ACCESS-CM2.txt)\\n\\n \ CMIP Citation:\\n\\n > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2281\\n\\n ScenarioMIP Citation:\\n\\n \ > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2285\\n\\n\\n* **ACCESS-ESM1-5**\\n\\n \ License description: [data_licenses/ACCESS-ESM1-5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/ACCESS-ESM1-5.txt)\\n\\n \ CMIP Citation:\\n\\n > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2288\\n\\n ScenarioMIP Citation:\\n\\n \ > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 ScenarioMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2291\\n\\n\\n* **BCC-CSM2-MR**\\n\\n License description: [data_licenses/BCC-CSM2-MR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/BCC-CSM2-MR.txt)\\n\\n \ CMIP Citation:\\n\\n > Xin, Xiaoge; Zhang, Jie; Zhang, Fang; Wu, Tongwen; Shi, Xueli; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei, Min **(2018)**. *BCC BCC-CSM2MR model output prepared for CMIP6 CMIP*. Version 20181126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1725\\n\\n \ ScenarioMIP Citation:\\n\\n > Xin, Xiaoge; Wu, Tongwen; Shi, Xueli; Zhang, Fang; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei, Min **(2019)**. *BCC BCC-CSM2MR model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190315; SSP2-4.5 version 20190318; SSP3-7.0 version 20190318; SSP5-8.5 version 20190318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1732\\n\\n\\n* **CMCC-CM2-SR5**\\n\\n License description: [data_licenses/CMCC-CM2-SR5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CMCC-CM2-SR5.txt)\\n\\n \ CMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5 model output prepared for CMIP6 CMIP*. Version 20200616. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1362\\n\\n ScenarioMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200717; SSP2-4.5 version 20200617; SSP3-7.0 version 20200622; SSP5-8.5 version 20200622. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1365\\n\\n\\n* **CMCC-ESM2**\\n\\n License description: [data_licenses/CMCC-ESM2.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CMCC-ESM2.txt)\\n\\n \ CMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele; Butensch\xF6n, Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 CMIP*. Version 20210114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13164\\n\\n \ ScenarioMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele; Butensch\xF6n, Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20210126; SSP2-4.5 version 20210129; SSP3-7.0 version 20210202; SSP5-8.5 version 20210126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13168\\n\\n\\n* **EC-Earth3-AerChem**\\n\\n License description: [data_licenses/EC-Earth3-AerChem.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-AerChem.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 CMIP*. Version 20200624. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.639\\n\\n \ ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 ScenarioMIP*. Version 20200827. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.724\\n\\n\\n* **EC-Earth3-CC**\\n\\n License description: [data_licenses/EC-Earth3-CC.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-CC.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth-3-CC model output prepared for CMIP6 CMIP*. Version 20210113. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.640\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2021)**. *EC-Earth-Consortium EC-Earth3-CC model output prepared for CMIP6 ScenarioMIP*. Version 20210113. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.15327\\n\\n\\n* **EC-Earth3-Veg-LR**\\n\\n License description: [data_licenses/EC-Earth3-Veg-LR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-Veg-LR.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 CMIP*. Version 20200217. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.643\\n\\n \ ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20201201; SSP2-4.5 version 20201123; SSP3-7.0 version 20201123; SSP5-8.5 version 20201201. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.728\\n\\n\\n* **EC-Earth3-Veg**\\n\\n License description: [data_licenses/EC-Earth3-Veg.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-Veg.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3-Veg model output prepared for CMIP6 CMIP*. Version 20200225. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.642\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3-Veg model output prepared for CMIP6 ScenarioMIP*. Version 20200225. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.727\\n\\n\\n* **EC-Earth3**\\n\\n License description: [data_licenses/EC-Earth3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3 model output prepared for CMIP6 CMIP*. Version 20200310. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.181\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3 model output prepared for CMIP6 ScenarioMIP*. Version 20200310. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.251\\n\\n\\n* **GFDL-CM4**\\n\\n License description: [data_licenses/GFDL-CM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-CM4.txt)\\n\\n \ CMIP Citation:\\n\\n > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Bushuk, Mitchell; Dunne, Krista A.; Dussin, Raphael; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, P.C.D; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4 model output*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1402\\n\\n ScenarioMIP Citation:\\n\\n \ > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, Chris; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.9242\\n\\n\\n* **GFDL-ESM4**\\n\\n \ License description: [data_licenses/GFDL-ESM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-ESM4.txt)\\n\\n \ CMIP Citation:\\n\\n > Krasting, John P.; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Silvers, Levi; Wyman, Bruce; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Dussin, Raphael; Guo, Huan; He, Jian; Held, Isaac M; Horowitz, Larry W.; Lin, Pu; Milly, P.C.D; Shevliakova, Elena; Stock, Charles; Winton, Michael; Wittenberg, Andrew T.; Xie, Yuanyu; Zhao, Ming **(2018)**. *NOAA-GFDL GFDL-ESM4 model output prepared for CMIP6 CMIP*. Version 20190726. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1407\\n\\n ScenarioMIP Citation:\\n\\n \ > John, Jasmin G; Blanton, Chris; McHugh, Colleen; Radhakrishnan, Aparna; Rand, Kristopher; Vahlenkamp, Hans; Wilson, Chandin; Zadeh, Niki T.; Dunne, John P.; Dussin, Raphael; Horowitz, Larry W.; Krasting, John P.; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Ploshay, Jeffrey; Shevliakova, Elena; Silvers, Levi; Stock, Charles; Winton, Michael; Zeng, Yujin **(2018)**. *NOAA-GFDL GFDL-ESM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1414\\n\\n\\n* **HadGEM3-GC31-LL**\\n\\n License description: [data_licenses/HadGEM3-GC31-LL.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/HadGEM3-GC31-LL.txt)\\n\\n \ CMIP Citation:\\n\\n > Ridley, Jeff; Menary, Matthew; Kuhlbrodt, Till; Andrews, Martin; Andrews, Tim **(2018)**. *MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP*. Version 20190624. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.419\\n\\n ScenarioMIP Citation:\\n\\n \ > Good, Peter **(2019)**. *MOHC HadGEM3-GC31-LL model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200114; SSP2-4.5 version 20190908; SSP5-8.5 version 20200114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.10845\\n\\n\\n* **MIROC-ES2L**\\n\\n License description: [data_licenses/MIROC-ES2L.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MIROC-ES2L.txt)\\n\\n \ CMIP Citation:\\n\\n > Hajima, Tomohiro; Abe, Manabu; Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogura, Tomoo; Ogochi, Koji; Watanabe, Michio; Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio; Tachiiri, Kaoru **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 CMIP*. Version 20191129. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.902\\n\\n \ ScenarioMIP Citation:\\n\\n > Tachiiri, Kaoru; Abe, Manabu; Hajima, Tomohiro; Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogochi, Koji; Watanabe, Michio; Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 ScenarioMIP*. Version 20200318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.936\\n\\n\\n* **MIROC6**\\n\\n License description: [data_licenses/MIROC6.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MIROC6.txt)\\n\\n \ CMIP Citation:\\n\\n > Tatebe, Hiroaki; Watanabe, Masahiro **(2018)**. *MIROC MIROC6 model output prepared for CMIP6 CMIP*. Version 20191016. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.881\\n\\n ScenarioMIP Citation:\\n\\n > Shiogama, Hideo; Abe, Manabu; Tatebe, Hiroaki **(2019)**. *MIROC MIROC6 model output prepared for CMIP6 ScenarioMIP*. Version 20191016. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.898\\n\\n\\n* **MPI-ESM1-2-HR**\\n\\n License description: [data_licenses/MPI-ESM1-2-HR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MPI-ESM1-2-HR.txt)\\n\\n \ CMIP Citation:\\n\\n > Jungclaus, Johann; Bittner, Matthias; Wieners, Karl-Hermann; Wachsmann, Fabian; Schupfner, Martin; Legutke, Stephanie; Giorgetta, Marco; Reick, Christian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Esch, Monika; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-HR model output prepared for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.741\\n\\n \ ScenarioMIP Citation:\\n\\n > Schupfner, Martin; Wieners, Karl-Hermann; Wachsmann, Fabian; Steger, Christian; Bittner, Matthias; Jungclaus, Johann; Fr\xFCh, Barbara; Pankatz, Klaus; Giorgetta, Marco; Reick, Christian; Legutke, Stephanie; Esch, Monika; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *DKRZ MPI-ESM1.2-HR model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2450\\n\\n\\n* **MPI-ESM1-2-LR**\\n\\n License description: [data_licenses/MPI-ESM1-2-LR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MPI-ESM1-2-LR.txt)\\n\\n \ CMIP Citation:\\n\\n > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Legutke, Stephanie; Schupfner, Martin; Wachsmann, Fabian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.742\\n\\n \ ScenarioMIP Citation:\\n\\n > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.793\\n\\n\\n* **NESM3**\\n\\n \ License description: [data_licenses/NESM3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NESM3.txt)\\n\\n \ CMIP Citation:\\n\\n > Cao, Jian; Wang, Bin **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 CMIP*. Version 20190812. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2021\\n\\n ScenarioMIP Citation:\\n\\n \ > Cao, Jian **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190806; SSP2-4.5 version 20190805; SSP5-8.5 version 20190811. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2027\\n\\n\\n* **NorESM2-LM**\\n\\n License description: [data_licenses/NorESM2-LM.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NorESM2-LM.txt)\\n\\n \ CMIP Citation:\\n\\n > Seland, \xD8yvind; Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 CMIP*. Version 20190815. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.502\\n\\n ScenarioMIP Citation:\\n\\n \ > Seland, \xD8yvind; Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.604\\n\\n\\n* **NorESM2-MM**\\n\\n License description: [data_licenses/NorESM2-MM.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NorESM2-MM.txt)\\n\\n \ CMIP Citation:\\n\\n > Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Seland, \xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.506\\n\\n ScenarioMIP Citation:\\n\\n \ > Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Seland, \xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.608\\n\\n\\n* **UKESM1-0-LL**\\n\\n License description: [data_licenses/UKESM1-0-LL.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/UKESM1-0-LL.txt)\\n\\n \ CMIP Citation:\\n\\n > Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Mulcahy, Jane; Sellar, Alistair; Walton, Jeremy; Jones, Colin **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 CMIP*. Version 20190627. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1569\\n\\n \ ScenarioMIP Citation:\\n\\n > Good, Peter; Sellar, Alistair; Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Kuhlbrodt, Till; Walton, Jeremy **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190708; SSP2-4.5 version 20190715; SSP3-7.0 version 20190726; SSP5-8.5 version 20190726. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1567\\n\\n\\n#### CC-BY-SA-4.0\\n\\nThe following bias corrected and downscaled model simulations are licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/). Note that this license requires citation of the source model output (included here) and requires that derived works be shared under the same license. Please see https://creativecommons.org/licenses/by-sa/4.0/ for more information. Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by-sa.\\n\\n* **CanESM5**\\n\\n License description: [data_licenses/CanESM5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CanESM5.txt)\\n\\n \ CMIP Citation:\\n\\n > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model output prepared for CMIP6 CMIP*. Version 20190429. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1303\\n\\n ScenarioMIP Citation:\\n\\n > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model output prepared for CMIP6 ScenarioMIP*. Version 20190429. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1317\\n\\n## Acknowledgements\\n\\nThis work is the result of many years worth of work by members of the [Climate Impact Lab](https://impactlab.org), but would not have been possible without many contributions from across the wider scientific and computing communities.\\n\\nSpecifically, we would like to acknowledge the World Climate Research Programme's Working Group on Coupled Modeling, which is responsible for CMIP, and we would like to thank the climate modeling groups for producing and making their model output available. We would particularly like to thank the modeling institutions whose results are included as an input to this repository (listed above) for their contributions to the CMIP6 project and for responding to and granting our requests for license waivers.\\n\\nWe would also like to thank Lamont-Doherty Earth Observatory, the [Pangeo Consortium](https://github.com/pangeo-data) (and especially the [ESGF Cloud Data Working Group](https://pangeo-data.github.io/pangeo-cmip6-cloud/#)) and Google Cloud and the Google Public Datasets program for making the [CMIP6 Google Cloud collection](https://console.cloud.google.com/marketplace/details/noaa-public/cmip6) possible. In particular we're extremely grateful to [Ryan Abernathey](https://github.com/rabernat), [Naomi Henderson](https://github.com/naomi-henderson), [Charles Blackmon-Luca](https://github.com/charlesbluca), [Aparna Radhakrishnan](https://github.com/aradhakrishnanGFDL), [Julius Busecke](https://github.com/jbusecke), and [Charles Stern](https://github.com/cisaacstern) for the huge amount of work they've done to translate the ESGF CMIP6 netCDF archives into consistently-formattted, analysis-ready zarr stores on Google Cloud.\\n\\nWe're also grateful to the [xclim developers](https://github.com/Ouranosinc/xclim/graphs/contributors) ([DOI: 10.5281/zenodo.2795043](https://doi.org/10.5281/zenodo.2795043)), in particular [Pascal Bourgault](https://github.com/aulemahal), [David Huard](https://github.com/huard), and [Travis Logan](https://github.com/tlogan2000), for implementing the QDM bias correction method in the xclim python package, supporting our QPLAD implementation into the package, and ongoing support in integrating dask into downscaling workflows. For method advice and useful conversations, we would like to thank Keith Dixon, Dennis Adams-Smith, and [Joe Hamman](https://github.com/jhamman).\\n\\n## Financial support\\n\\nThis research has been supported by The Rockefeller Foundation and the Microsoft AI for Earth Initiative.\\n\\n## Additional links:\\n\\n* CIL GDPCIR project homepage: [github.com/ClimateImpactLab/downscaleCMIP6](https://github.com/ClimateImpactLab/downscaleCMIP6)\\n* Project listing on zenodo: https://doi.org/10.5281/zenodo.6403794\\n* Climate Impact Lab homepage: [impactlab.org](https://impactlab.org)\",\"item_assets\":{\"pr\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Precipitation\",\"description\":\"Precipitation\"},\"tasmax\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Daily Maximum Near-Surface Air Temperature\",\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Daily Minimum Near-Surface Air Temperature\",\"description\":\"Daily Minimum Near-Surface Air Temperature\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"cil-gdpcir\",\"cube:variables\":{\"pr\":{\"type\":\"data\",\"unit\":\"mm day-1\",\"attrs\":{\"units\":\"mm day-1\"},\"dimensions\":[\"time\",\"lat\",\"lon\"]},\"tasmax\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"maximum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: max')\",\"long_name\":\"Daily Maximum Near-Surface Air Temperature\",\"coordinates\":\"height\",\"cell_methods\":\"area: mean time: maximum (interval: 5 minutes)\",\"cell_measures\":\"area: areacella\",\"original_name\":\"TREFHTMX\",\"standard_name\":\"air_temperature\"},\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"minimum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: min')\",\"long_name\":\"Daily Minimum Near-Surface Air Temperature\",\"coordinates\":\"height\",\"cell_methods\":\"area: mean time: minimum (interval: 5 minutes)\",\"cell_measures\":\"area: areacella\",\"original_name\":\"TREFHTMN\",\"standard_name\":\"air_temperature\"},\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Minimum Near-Surface Air Temperature\"}},\"msft:container\":\"cil-gdpcir\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[-89.875,89.875],\"reference_system\":\"epsg:4326\"},\"lon\":{\"axis\":\"x\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[-179.875,179.875],\"reference_system\":\"epsg:4326\"},\"time\":{\"step\":\"P1DT0H0M0S\",\"type\":\"temporal\",\"extent\":[\"1950-01-01T12:00:00Z\",\"2100-12-31T12:00:00Z\"],\"description\":\"time\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\"msft:storage_account\":\"rhgeuwest\",\"msft:short_description\":\"Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)\",\"msft:region\":\"westeurope\"},{\"id\":\"naip\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"license\",\"href\":\"https://www.fsa.usda.gov/help/policies-and-links/\",\"title\":\"Public Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/naip\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"NAIP: National Agriculture Imagery Program\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/naip.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"NAIP thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/naip.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-124.784,24.744,-66.951,49.346],[-156.003,19.059,-154.809,20.127],[-67.316,17.871,-65.596,18.565],[-64.94,17.622,-64.56,17.814]]},\"temporal\":{\"interval\":[[\"2010-01-01T00:00:00Z\",\"2023-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"NAIP\",\"Aerial\",\"Imagery\",\"USDA\",\"AFPO\",\"Agriculture\",\"United States\"],\"providers\":[{\"url\":\"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/\",\"name\":\"USDA Farm Service Agency\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://www.esri.com/\",\"name\":\"Esri\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[0.3,0.6,1.0],\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\",\"description\":\"visible red\"},{\"name\":\"Green\",\"common_name\":\"green\",\"description\":\"visible green\"},{\"name\":\"Blue\",\"common_name\":\"blue\",\"description\":\"visible blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"description\":\"The [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/) (NAIP) \\nprovides U.S.-wide, high-resolution aerial imagery, with four spectral bands (R, G, B, IR). \\nNAIP is administered by the [Aerial Field Photography Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/) (AFPO) \\nwithin the [US Department of Agriculture](https://www.usda.gov/) (USDA). \\nData are captured at least once every three years for each state. \\nThis dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\nYou can visualize the coverage of current and past collections [here](https://naip-usdaonline.hub.arcgis.com/). \\n\",\"item_assets\":{\"image\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"name\":\"Blue\",\"common_name\":\"blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"metadata\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"FGDC Metdata\"},\"thumbnail\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:container\":\"naip\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"naipeuwest\",\"msft:short_description\":\"NAIP provides US-wide, high-resolution aerial imagery. This dataset includes NAIP images from 2010 to the present.\"},{\"id\":\"io-lulc-9-class\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class\"},{\"rel\":\"related\",\"href\":\"https://livingatlas.arcgis.com/landcover/\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/licenses/by/4.0/\",\"type\":\"text/html\",\"title\":\"CC BY 4.0\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/io-lulc-9-class\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"10m Annual Land Use Land Cover (9-class) V1\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/io-lulc-9-class.png\",\"title\":\"10m Annual Land Use Land Cover (9-class)\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/io-lulc-9-class.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2017-01-01T00:00:00Z\",\"2023-01-01T00:00:00Z\"]]}},\"license\":\"CC-BY-4.0\",\"keywords\":[\"Global\",\"Land Cover\",\"Land Use\",\"Sentinel\"],\"providers\":[{\"url\":\"https://www.esri.com/\",\"name\":\"Esri\",\"roles\":[\"licensor\"]},{\"url\":\"https://www.impactobservatory.com/\",\"name\":\"Impact Observatory\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"raster:bands\":[{\"nodata\":0,\"spatial_resolution\":10}]},\"description\":\"__Note__: _A new version of this item is available for your use. This mature version of the map remains available for use in existing applications. This item will be retired in December 2024. There is 2023 data available in the newer [9-class v2 dataset](https://planetarycomputer.microsoft.com/dataset/io-lulc-annual-v02)._\\n\\nTime series of annual global maps of land use and land cover (LULC). It currently has data from 2017-2022. The maps are derived from ESA Sentinel-2 imagery at 10m resolution. Each map is a composite of LULC predictions for 9 classes throughout the year in order to generate a representative snapshot of each year.\\n\\nThis dataset was generated by [Impact Observatory](http://impactobservatory.com/), who used billions of human-labeled pixels (curated by the National Geographic Society) to train a deep learning model for land classification. The global map was produced by applying this model to the Sentinel-2 annual scene collections on the Planetary Computer. Each of the maps has an assessed average accuracy of over 75%.\\n\\nThis map uses an updated model from the [10-class model](https://planetarycomputer.microsoft.com/dataset/io-lulc) and combines Grass(formerly class 3) and Scrub (formerly class 6) into a single Rangeland class (class 11). The original Esri 2020 Land Cover collection uses 10 classes (Grass and Scrub separate) and an older version of the underlying deep learning model. The Esri 2020 Land Cover map was also produced by Impact Observatory. The map remains available for use in existing applications. New applications should use the updated version of 2020 once it is available in this collection, especially when using data from multiple years of this time series, to ensure consistent classification.\\n\\nAll years are available under a Creative Commons BY-4.0.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Global land cover data\",\"file:values\":[{\"values\":[0],\"summary\":\"No Data\"},{\"values\":[1],\"summary\":\"Water\"},{\"values\":[2],\"summary\":\"Trees\"},{\"values\":[4],\"summary\":\"Flooded vegetation\"},{\"values\":[5],\"summary\":\"Crops\"},{\"values\":[7],\"summary\":\"Built area\"},{\"values\":[8],\"summary\":\"Bare ground\"},{\"values\":[9],\"summary\":\"Snow/ice\"},{\"values\":[10],\"summary\":\"Clouds\"},{\"values\":[11],\"summary\":\"Rangeland\"}]}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"io-land-cover\",\"msft:container\":\"io-lulc\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/label/v1.0.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Global land cover information with 9 classes for 2017-2022 at 10m resolution\"},{\"id\":\"io-biodiversity\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/licenses/by/4.0/\",\"type\":\"text/html\",\"title\":\"CC BY 4.0\"},{\"rel\":\"about\",\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pdfs/io-biodiversity/Biodiversity_Intactness_whitepaper.pdf\",\"type\":\"application/pdf\",\"title\":\"Technical White Paper\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/io-biodiversity\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Biodiversity Intactness\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/io-biodiversity-thumb.png\",\"title\":\"Biodiversity Intactness\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/io-biodiversity.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2017-01-01T00:00:00Z\",\"2020-12-31T23:59:59Z\"]]}},\"license\":\"CC-BY-4.0\",\"keywords\":[\"Global\",\"Biodiversity\"],\"providers\":[{\"url\":\"https://www.impactobservatory.com/\",\"name\":\"Impact Observatory\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://www.vizzuality.com/\",\"name\":\"Vizzuality\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"version\":[\"v1\"]},\"description\":\"Generated by [Impact Observatory](https://www.impactobservatory.com/), in collaboration with [Vizzuality](https://www.vizzuality.com/), these datasets estimate terrestrial Biodiversity Intactness as 100-meter gridded maps for the years 2017-2020.\\n\\nMaps depicting the intactness of global biodiversity have become a critical tool for spatial planning and management, monitoring the extent of biodiversity across Earth, and identifying critical remaining intact habitat. Yet, these maps are often years out of date by the time they are available to scientists and policy-makers. The datasets in this STAC Collection build on past studies that map Biodiversity Intactness using the [PREDICTS database](https://onlinelibrary.wiley.com/doi/full/10.1002/ece3.2579) of spatially referenced observations of biodiversity across 32,000 sites from over 750 studies. The approach differs from previous work by modeling the relationship between observed biodiversity metrics and contemporary, global, geospatial layers of human pressures, with the intention of providing a high resolution monitoring product into the future.\\n\\nBiodiversity intactness is estimated as a combination of two metrics: Abundance, the quantity of individuals, and Compositional Similarity, how similar the composition of species is to an intact baseline. Linear mixed effects models are fit to estimate the predictive capacity of spatial datasets of human pressures on each of these metrics and project results spatially across the globe. These methods, as well as comparisons to other leading datasets and guidance on interpreting results, are further explained in a methods [white paper](https://ai4edatasetspublicassets.blob.core.windows.net/assets/pdfs/io-biodiversity/Biodiversity_Intactness_whitepaper.pdf) entitled \u201CGlobal 100m Projections of Biodiversity Intactness for the years 2017-2020.\u201D\\n\\nAll years are available under a Creative Commons BY-4.0 license.\\n\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Biodiversity Intactness\",\"description\":\"Terrestrial biodiversity intactness at 100m resolution\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"float32\",\"spatial_resolution\":100}]}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:container\":\"impact\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"pcdata01euw\",\"msft:short_description\":\"Global terrestrial biodiversity intactness at 100m resolution for years 2017-2020\"},{\"id\":\"noaa-cdr-sea-surface-temperature-whoi\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi\"},{\"rel\":\"license\",\"href\":\"https://www.ncei.noaa.gov/pub/data/sds/cdr/CDRs/Sea%20Surface%20Temperature%20-%20WHOI/UseAgreement_01B-27a.pdf\",\"type\":\"application/pdf\",\"title\":\"NOAA CDR Sea Surface Temperature - WHOI Use Agreement\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/products/climate-data-records/sea-surface-temperature-whoi\",\"type\":\"text/html\",\"title\":\"Sea Surface Temperature - WHOI CDR\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.7289/V5FB510W\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-cdr-sea-surface-temperature-whoi\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sea Surface Temperature - WHOI CDR\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-cdr-sea-surface-temperature-whoi-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Sea Surface Temperature - WHOI CDR thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-cdr-sea-surface-temperature-whoi.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-90,180,90]]},\"temporal\":{\"interval\":[[\"1988-01-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.7289/V5FB510W\",\"keywords\":[\"Global\",\"Climate\",\"NOAA\",\"Ocean\",\"Temperature\"],\"providers\":[{\"url\":\"https://www.ncei.noaa.gov/\",\"name\":\"National Centers for Environmental Information\",\"roles\":[\"producer\",\"processor\",\"licensor\"],\"description\":\"NCEI is the Nation's leading authority for environmental data, and manage one of the largest archives of atmospheric, coastal, geophysical, and oceanic research in the world. NCEI contributes to the NESDIS mission by developing new products and services that span the science disciplines and enable better data discovery.\"},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"description\":\"The Sea Surface Temperature-Woods Hole Oceanographic Institution (WHOI) Climate Data Record (CDR) is one of three CDRs which combine to form the NOAA Ocean Surface Bundle (OSB) CDR. The resultant sea surface temperature (SST) data are produced through modeling the diurnal variability in combination with AVHRR SST observations. The final record is output to a 3-hourly 0.25\xB0 resolution grid over the global ice-free oceans from January 1988\u2014present.\\n\\nThese Cloud Optimized GeoTIFFs (COGs) were created from NetCDF files which are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\nFor the NetCDF files, see collection `noaa-cdr-sea-surface-temperature-whoi-netcdf`.\\n\",\"item_assets\":{\"fill_missing_qc\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"nodata\":\"nan\",\"data_type\":\"float32\"}]},\"sea_surface_temperature\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\"}]}},\"msft:region\":\"eastus\",\"sci:citation\":\"Clayson, Carol Anne; Brown, Jeremiah; and NOAA CDR Program (2016). NOAA Climate Data Record (CDR) of Sea Surface Temperature - WHOI, Version 2. NOAA National Climatic Data Center. doi:10.7289/V5FB510W\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-cdr\",\"msft:container\":\"sea-surface-temperature-whoi\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"],\"msft:storage_account\":\"noaacdr\",\"msft:short_description\":\"The Sea Surface Temperature-Woods Hole Oceanographic Institution (WHOI) Climate Data Record (CDR) is one of three CDRs which combine to form the NOAA Ocean Surface Bundle (OSB) CDR. The resultant sea surface temperature (SST) data are produced through modeling the diurnal variability in combination with AVHRR SST observations.\"},{\"id\":\"noaa-cdr-ocean-heat-content\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content\"},{\"rel\":\"license\",\"href\":\"https://www.ncei.noaa.gov/pub/data/sds/cdr/CDRs/Ocean_Heat_Content/UseAgreement_01B-41.pdf\",\"type\":\"application/pdf\",\"title\":\"NOAA CDR Ocean Heat Content Use Agreement\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/products/climate-data-records/global-ocean-heat-content\",\"type\":\"text/html\",\"title\":\"Global Ocean Heat Content CDR\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.7289/v53f4mvp\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-cdr-ocean-heat-content\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Global Ocean Heat Content CDR\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-cdr-ocean-heat-content-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Global Ocean Heat Content CDR thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-cdr-ocean-heat-content.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-90.0,180.0,90.0]]},\"temporal\":{\"interval\":[[\"1972-03-01T00:00:00Z\",\"2022-03-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.7289/v53f4mvp\",\"keywords\":[\"Global\",\"Climate\",\"NOAA\",\"Temperature\",\"Ocean\"],\"providers\":[{\"url\":\"https://www.ncei.noaa.gov/\",\"name\":\"National Centers for Environmental Information\",\"roles\":[\"producer\",\"processor\",\"licensor\"],\"description\":\"NCEI is the Nation's leading authority for environmental data, and manage one of the largest archives of atmospheric, coastal, geophysical, and oceanic research in the world. NCEI contributes to the NESDIS mission by developing new products and services that span the science disciplines and enable better data discovery.\"},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"noaa_cdr:interval\":[\"monthly\",\"seasonal\",\"yearly\",\"pentadal\"],\"noaa_cdr:max_depth\":[100,700,2000]},\"description\":\"The Ocean Heat Content Climate Data Record (CDR) is a set of ocean heat content anomaly (OHCA) time-series for 1955-present on 3-monthly, yearly, and pentadal (five-yearly) scales. This CDR quantifies ocean heat content change over time, which is an essential metric for understanding climate change and the Earth's energy budget. It provides time-series for multiple depth ranges in the global ocean and each of the major basins (Atlantic, Pacific, and Indian) divided by hemisphere (Northern, Southern).\\n\\nThese Cloud Optimized GeoTIFFs (COGs) were created from NetCDF files which are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\nFor the NetCDF files, see collection `noaa-cdr-ocean-heat-content-netcdf`.\\n\",\"item_assets\":{\"heat_content\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Ocean Heat Content anomalies from WOA09\",\"raster:bands\":[{\"unit\":\"10^18 joules\",\"nodata\":\"nan\",\"data_type\":\"float32\"}]},\"mean_salinity\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Mean salinity anomalies from WOA09\",\"raster:bands\":[{\"nodata\":\"nan\",\"data_type\":\"float32\"}]},\"mean_temperature\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Mean temperature anomalies from WOA09\",\"raster:bands\":[{\"unit\":\"degrees Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\"}]},\"mean_halosteric_sea_level\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Mean halosteric sea level anomalies from WOA09\",\"raster:bands\":[{\"unit\":\"millimeters\",\"nodata\":\"nan\",\"data_type\":\"float32\"}]},\"mean_thermosteric_sea_level\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Mean thermosteric sea level anomalies from WOA09\",\"raster:bands\":[{\"unit\":\"millimeters\",\"nodata\":\"nan\",\"data_type\":\"float32\"}]},\"mean_total_steric_sea_level\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Mean total steric sea level anomalies from WOA09\",\"raster:bands\":[{\"unit\":\"millimeters\",\"nodata\":\"nan\",\"data_type\":\"float32\"}]}},\"msft:region\":\"eastus\",\"sci:citation\":\"Levitus, Sydney; Antonov, John I.; Boyer, Tim P.; Baranova, Olga K.; Garc\xEDa, Hern\xE1n E.; Locarnini, Ricardo A.; Mishonov, Alexey V.; Reagan, James R.; [Seidov, Dan; Yarosh, Evgeney; Zweng, Melissa M. (2017). NCEI ocean heat content, temperature anomalies, salinity anomalies, thermosteric sea level anomalies, halosteric sea level anomalies, and total steric sea level anomalies from 1955 to present calculated from in situ oceanographic subsurface profile data (NCEI Accession 0164586). NOAA National Centers for Environmental Information. Dataset. https://doi.org/10.7289/v53f4mvp.\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-cdr\",\"msft:container\":\"ocean-heat-content\",\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"noaacdr\",\"msft:short_description\":\"The Ocean Heat Content Climate Data Record (CDR) is a set of ocean heat content anomaly (OHCA) time-series for 1955-present on 3-monthly, yearly, and pentadal (five-yearly) scales.\"},{\"id\":\"cil-gdpcir-cc0\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0\"},{\"rel\":\"license\",\"href\":\"https://spdx.org/licenses/CC0-1.0.html\",\"type\":\"text/html\",\"title\":\"Creative Commons Zero v1.0 Universal\"},{\"rel\":\"cite-as\",\"href\":\"https://zenodo.org/record/6403794\",\"type\":\"text/html\"},{\"rel\":\"describedby\",\"href\":\"https://github.com/ClimateImpactLab/downscaleCMIP6/\",\"type\":\"text/html\",\"title\":\"Project homepage\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gdpcir.png\",\"type\":\"image/png\",\"title\":\"Thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1950-01-01T00:00:00Z\",\"2100-12-31T00:00:00Z\"]]}},\"license\":\"CC0-1.0\",\"sci:doi\":\"10.5194/egusphere-2022-1513\",\"keywords\":[\"CMIP6\",\"Climate Impact Lab\",\"Rhodium Group\",\"Precipitation\",\"Temperature\"],\"providers\":[{\"url\":\"https://impactlab.org/\",\"name\":\"Climate Impact Lab\",\"roles\":[\"producer\"]},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"cmip6:variable\":[\"pr\",\"tasmax\",\"tasmin\"],\"cmip6:source_id\":[\"FGOALS-g3\",\"INM-CM4-8\",\"INM-CM5-0\"],\"cmip6:experiment_id\":[\"historical\",\"ssp126\",\"ssp245\",\"ssp370\",\"ssp585\"],\"cmip6:institution_id\":[\"BCC\",\"CAS\",\"CCCma\",\"CMCC\",\"CSIRO\",\"CSIRO-ARCCSS\",\"DKRZ\",\"EC-Earth-Consortium\",\"INM\",\"MIROC\",\"MOHC\",\"MPI-M\",\"NCC\",\"NOAA-GFDL\",\"NUIST\"]},\"description\":\"The World Climate Research Programme's [6th Coupled Model Intercomparison Project (CMIP6)](https://www.wcrp-climate.org/wgcm-cmip/wgcm-cmip6) represents an enormous advance in the quality, detail, and scope of climate modeling.\\n\\nThe [Global Downscaled Projections for Climate Impacts Research](https://github.com/ClimateImpactLab/downscaleCMIP6) dataset makes this modeling more applicable to understanding the impacts of changes in the climate on humans and society with two key developments: trend-preserving bias correction and downscaling. In this dataset, the [Climate Impact Lab](https://impactlab.org) provides global, daily minimum and maximum air temperature at the surface (`tasmin` and `tasmax`) and daily cumulative surface precipitation (`pr`) corresponding to the CMIP6 historical, ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 scenarios for 25 global climate models on a 1/4-degree regular global grid.\\n\\n## Accessing the data\\n\\nGDPCIR data can be accessed on the Microsoft Planetary Computer. The dataset is made of of three collections, distinguished by data license:\\n* [Public domain (CC0-1.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0)\\n* [Attribution (CC BY 4.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by)\\n\\nEach modeling center with bias corrected and downscaled data in this collection falls into one of these license categories - see the [table below](/dataset/cil-gdpcir-cc0#available-institutions-models-and-scenarios-by-license-collection) to see which model is in each collection, and see the section below on [Citing, Licensing, and using data produced by this project](/dataset/cil-gdpcir-cc0#citing-licensing-and-using-data-produced-by-this-project) for citations and additional information about each license.\\n\\n## Data format & contents\\n\\nThe data is stored as partitioned zarr stores (see [https://zarr.readthedocs.io](https://zarr.readthedocs.io)), each of which includes thousands of data and metadata files covering the full time span of the experiment. Historical zarr stores contain just over 50 GB, while SSP zarr stores contain nearly 70GB. Each store is stored as a 32-bit float, with dimensions time (daily datetime), lat (float latitude), and lon (float longitude). The data is chunked at each interval of 365 days and 90 degree interval of latitude and longitude. Therefore, each chunk is `(365, 360, 360)`, with each chunk occupying approximately 180MB in memory.\\n\\nHistorical data is daily, excluding leap days, from Jan 1, 1950 to Dec 31, 2014; SSP data is daily, excluding leap days, from Jan 1, 2015 to either Dec 31, 2099 or Dec 31, 2100, depending on data availability in the source GCM.\\n\\nThe spatial domain covers all 0.25-degree grid cells, indexed by the grid center, with grid edges on the quarter-degree, using a -180 to 180 longitude convention. Thus, the \u201Clon\u201D coordinate extends from -179.875 to 179.875, and the \u201Clat\u201D coordinate extends from -89.875 to 89.875, with intermediate values at each 0.25-degree increment between (e.g. -179.875, -179.625, -179.375, etc).\\n\\n## Available institutions, models, and scenarios by license collection\\n\\n| Modeling institution | Source model | Available experiments \ | License collection |\\n| -------------------- | ----------------- | ------------------------------------------ | ---------------------- |\\n| CAS | FGOALS-g3 [^1] | SSP2-4.5, SSP3-7.0, and SSP5-8.5 \ | Public domain datasets |\\n| INM | INM-CM4-8 \ | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets |\\n| INM | INM-CM5-0 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets |\\n| BCC | BCC-CSM2-MR \ | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| CMCC | CMCC-CM2-SR5 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 \ | CC-BY-40 |\\n| CMCC | CMCC-ESM2 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 | CC-BY-40 |\\n| CSIRO-ARCCSS | ACCESS-CM2 | SSP2-4.5 and SSP3-7.0 | CC-BY-40 |\\n| CSIRO | ACCESS-ESM1-5 | SSP1-2.6, SSP2-4.5, and SSP3-7.0 | CC-BY-40 |\\n| MIROC | MIROC-ES2L | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| MIROC | MIROC6 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| MOHC | HadGEM3-GC31-LL | SSP1-2.6, SSP2-4.5, and SSP5-8.5 | CC-BY-40 \ |\\n| MOHC | UKESM1-0-LL | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| MPI-M | MPI-ESM1-2-LR | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| MPI-M/DKRZ [^2] | MPI-ESM1-2-HR | SSP1-2.6 and SSP5-8.5 | CC-BY-40 |\\n| NCC | NorESM2-LM | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| NCC | NorESM2-MM | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| NOAA-GFDL \ | GFDL-CM4 | SSP2-4.5 and SSP5-8.5 | CC-BY-40 |\\n| NOAA-GFDL | GFDL-ESM4 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| NUIST | NESM3 | SSP1-2.6, SSP2-4.5, and SSP5-8.5 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3 | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 |\\n| EC-Earth-Consortium \ | EC-Earth3-AerChem | ssp370 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3-CC | ssp245 and ssp585 | CC-BY-40 |\\n| EC-Earth-Consortium \ | EC-Earth3-Veg | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3-Veg-LR | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 |\\n| CCCma | CanESM5 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 | CC-BY-40[^3] \ |\\n\\n*Notes:*\\n\\n[^1]: At the time of running, no ssp1-2.6 precipitation data was available. Therefore, we provide `tasmin` and `tamax` for this model and experiment, but not `pr`. All other model/experiment combinations in the above table include all three variables.\\n\\n[^2]: The institution which ran MPI-ESM1-2-HR\u2019s historical (CMIP) simulations is `MPI-M`, while the future (ScenarioMIP) simulations were run by `DKRZ`. Therefore, the institution component of `MPI-ESM1-2-HR` filepaths differ between `historical` and `SSP` scenarios.\\n\\n[^3]: This dataset was previously licensed as [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/), but was relicensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0) in March, 2023. \\n\\n## Project methods\\n\\nThis project makes use of statistical bias correction and downscaling algorithms, which are specifically designed to accurately represent changes in the extremes. For this reason, we selected Quantile Delta Mapping (QDM), following the method introduced by [Cannon et al. (2015)](https://doi.org/10.1175/JCLI-D-14-00754.1), which preserves quantile-specific trends from the GCM while fitting the full distribution for a given day-of-year to a reference dataset (ERA5).\\n\\nWe then introduce a similar method tailored to increase spatial resolution while preserving extreme behavior, Quantile-Preserving Localized-Analog Downscaling (QPLAD).\\n\\nTogether, these methods provide a robust means to handle both the central and tail behavior seen in climate model output, while aligning the full distribution to a state-of-the-art reanalysis dataset and providing the spatial granularity needed to study surface impacts.\\n\\nFor further documentation, see [Global downscaled projections for climate impacts research (GDPCIR): preserving extremes for modeling future climate impacts](https://egusphere.copernicus.org/preprints/2023/egusphere-2022-1513/) (EGUsphere, 2022 [preprint]).\\n\\n\\n## Citing, licensing, and using data produced by this project\\n\\nProjects making use of the data produced as part of the Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CIL GDPCIR) project are requested to cite both this project and the source datasets from which these results are derived. Additionally, the use of data derived from some GCMs *requires* citations, and some modeling centers impose licensing restrictions & requirements on derived works. See each GCM's license info in the links below for more information.\\n\\n### CIL GDPCIR\\n\\nUsers are requested to cite this project in derived works. Our method documentation paper may be cited using the following:\\n\\n> Gergel, D. R., Malevich, S. B., McCusker, K. E., Tenezakis, E., Delgado, M. T., Fish, M. A., and Kopp, R. E.: Global downscaled projections for climate impacts research (GDPCIR): preserving extremes for modeling future climate impacts, EGUsphere [preprint], https://doi.org/10.5194/egusphere-2022-1513, 2023. \\n\\nThe code repository may be cited using the following:\\n\\n> Diana Gergel, Kelly McCusker, Brewster Malevich, Emile Tenezakis, Meredith Fish, Michael Delgado (2022). ClimateImpactLab/downscaleCMIP6: (v1.0.0). Zenodo. https://doi.org/10.5281/zenodo.6403794\\n\\n### ERA5\\n\\nAdditionally, we request you cite the historical dataset used in bias correction and downscaling, ERA5. See the [ECMWF guide to citing a dataset on the Climate Data Store](https://confluence.ecmwf.int/display/CKB/How+to+acknowledge+and+cite+a+Climate+Data+Store+%28CDS%29+catalogue+entry+and+the+data+published+as+part+of+it):\\n\\n> Hersbach, H, et al. The ERA5 global reanalysis. Q J R Meteorol Soc.2020; 146: 1999\u20132049. DOI: [10.1002/qj.3803](https://doi.org/10.1002/qj.3803)\\n>\\n> Mu\xF1oz Sabater, J., (2019): ERA5-Land hourly data from 1981 to present. Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\n>\\n> Mu\xF1oz Sabater, J., (2021): ERA5-Land hourly data from 1950 to 1980. Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\n\\n### GCM-specific citations & licenses\\n\\nThe CMIP6 simulation data made available through the Earth System Grid Federation (ESGF) are subject to Creative Commons [BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) or [BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) licenses. The Climate Impact Lab has reached out to each of the modeling institutions to request waivers from these terms so the outputs of this project may be used with fewer restrictions, and has been granted permission to release the data using the licenses listed here.\\n\\n#### Public Domain Datasets\\n\\nThe following bias corrected and downscaled model simulations are available in the public domain using a [CC0 1.0 Universal Public Domain Declaration](https://creativecommons.org/publicdomain/zero/1.0/). Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0.\\n\\n* **FGOALS-g3**\\n\\n License description: [data_licenses/FGOALS-g3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/FGOALS-g3.txt)\\n\\n \ CMIP Citation:\\n\\n > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6 CMIP*. Version 20190826. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1783\\n\\n ScenarioMIP Citation:\\n\\n \ > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190818; SSP2-4.5 version 20190818; SSP3-7.0 version 20190820; SSP5-8.5 tasmax version 20190819; SSP5-8.5 tasmin version 20190819; SSP5-8.5 pr version 20190818. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2056\\n\\n\\n* **INM-CM4-8**\\n\\n License description: [data_licenses/INM-CM4-8.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/INM-CM4-8.txt)\\n\\n \ CMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8 model output prepared for CMIP6 CMIP*. Version 20190530. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1422\\n\\n ScenarioMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8 model output prepared for CMIP6 ScenarioMIP*. Version 20190603. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12321\\n\\n\\n* **INM-CM5-0**\\n\\n \ License description: [data_licenses/INM-CM5-0.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/INM-CM5-0.txt)\\n\\n \ CMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0 model output prepared for CMIP6 CMIP*. Version 20190610. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1423\\n\\n ScenarioMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190619; SSP2-4.5 version 20190619; SSP3-7.0 version 20190618; SSP5-8.5 version 20190724. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12322\\n\\n\\n#### CC-BY-4.0\\n\\nThe following bias corrected and downscaled model simulations are licensed under a [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/). Note that this license requires citation of the source model output (included here). Please see https://creativecommons.org/licenses/by/4.0/ for more information. Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by.\\n\\n* **ACCESS-CM2**\\n\\n License description: [data_licenses/ACCESS-CM2.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/ACCESS-CM2.txt)\\n\\n \ CMIP Citation:\\n\\n > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2281\\n\\n ScenarioMIP Citation:\\n\\n \ > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2285\\n\\n\\n* **ACCESS-ESM1-5**\\n\\n \ License description: [data_licenses/ACCESS-ESM1-5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/ACCESS-ESM1-5.txt)\\n\\n \ CMIP Citation:\\n\\n > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2288\\n\\n ScenarioMIP Citation:\\n\\n \ > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 ScenarioMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2291\\n\\n\\n* **BCC-CSM2-MR**\\n\\n License description: [data_licenses/BCC-CSM2-MR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/BCC-CSM2-MR.txt)\\n\\n \ CMIP Citation:\\n\\n > Xin, Xiaoge; Zhang, Jie; Zhang, Fang; Wu, Tongwen; Shi, Xueli; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei, Min **(2018)**. *BCC BCC-CSM2MR model output prepared for CMIP6 CMIP*. Version 20181126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1725\\n\\n \ ScenarioMIP Citation:\\n\\n > Xin, Xiaoge; Wu, Tongwen; Shi, Xueli; Zhang, Fang; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei, Min **(2019)**. *BCC BCC-CSM2MR model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190315; SSP2-4.5 version 20190318; SSP3-7.0 version 20190318; SSP5-8.5 version 20190318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1732\\n\\n\\n* **CMCC-CM2-SR5**\\n\\n License description: [data_licenses/CMCC-CM2-SR5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CMCC-CM2-SR5.txt)\\n\\n \ CMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5 model output prepared for CMIP6 CMIP*. Version 20200616. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1362\\n\\n ScenarioMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200717; SSP2-4.5 version 20200617; SSP3-7.0 version 20200622; SSP5-8.5 version 20200622. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1365\\n\\n\\n* **CMCC-ESM2**\\n\\n License description: [data_licenses/CMCC-ESM2.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CMCC-ESM2.txt)\\n\\n \ CMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele; Butensch\xF6n, Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 CMIP*. Version 20210114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13164\\n\\n \ ScenarioMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele; Butensch\xF6n, Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20210126; SSP2-4.5 version 20210129; SSP3-7.0 version 20210202; SSP5-8.5 version 20210126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13168\\n\\n\\n* **EC-Earth3-AerChem**\\n\\n License description: [data_licenses/EC-Earth3-AerChem.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-AerChem.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 CMIP*. Version 20200624. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.639\\n\\n \ ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 ScenarioMIP*. Version 20200827. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.724\\n\\n\\n* **EC-Earth3-CC**\\n\\n License description: [data_licenses/EC-Earth3-CC.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-CC.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth-3-CC model output prepared for CMIP6 CMIP*. Version 20210113. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.640\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2021)**. *EC-Earth-Consortium EC-Earth3-CC model output prepared for CMIP6 ScenarioMIP*. Version 20210113. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.15327\\n\\n\\n* **EC-Earth3-Veg-LR**\\n\\n License description: [data_licenses/EC-Earth3-Veg-LR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-Veg-LR.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 CMIP*. Version 20200217. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.643\\n\\n \ ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20201201; SSP2-4.5 version 20201123; SSP3-7.0 version 20201123; SSP5-8.5 version 20201201. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.728\\n\\n\\n* **EC-Earth3-Veg**\\n\\n License description: [data_licenses/EC-Earth3-Veg.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-Veg.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3-Veg model output prepared for CMIP6 CMIP*. Version 20200225. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.642\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3-Veg model output prepared for CMIP6 ScenarioMIP*. Version 20200225. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.727\\n\\n\\n* **EC-Earth3**\\n\\n License description: [data_licenses/EC-Earth3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3 model output prepared for CMIP6 CMIP*. Version 20200310. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.181\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3 model output prepared for CMIP6 ScenarioMIP*. Version 20200310. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.251\\n\\n\\n* **GFDL-CM4**\\n\\n License description: [data_licenses/GFDL-CM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-CM4.txt)\\n\\n \ CMIP Citation:\\n\\n > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Bushuk, Mitchell; Dunne, Krista A.; Dussin, Raphael; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, P.C.D; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4 model output*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1402\\n\\n ScenarioMIP Citation:\\n\\n \ > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, Chris; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.9242\\n\\n\\n* **GFDL-ESM4**\\n\\n \ License description: [data_licenses/GFDL-ESM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-ESM4.txt)\\n\\n \ CMIP Citation:\\n\\n > Krasting, John P.; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Silvers, Levi; Wyman, Bruce; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Dussin, Raphael; Guo, Huan; He, Jian; Held, Isaac M; Horowitz, Larry W.; Lin, Pu; Milly, P.C.D; Shevliakova, Elena; Stock, Charles; Winton, Michael; Wittenberg, Andrew T.; Xie, Yuanyu; Zhao, Ming **(2018)**. *NOAA-GFDL GFDL-ESM4 model output prepared for CMIP6 CMIP*. Version 20190726. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1407\\n\\n ScenarioMIP Citation:\\n\\n \ > John, Jasmin G; Blanton, Chris; McHugh, Colleen; Radhakrishnan, Aparna; Rand, Kristopher; Vahlenkamp, Hans; Wilson, Chandin; Zadeh, Niki T.; Dunne, John P.; Dussin, Raphael; Horowitz, Larry W.; Krasting, John P.; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Ploshay, Jeffrey; Shevliakova, Elena; Silvers, Levi; Stock, Charles; Winton, Michael; Zeng, Yujin **(2018)**. *NOAA-GFDL GFDL-ESM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1414\\n\\n\\n* **HadGEM3-GC31-LL**\\n\\n License description: [data_licenses/HadGEM3-GC31-LL.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/HadGEM3-GC31-LL.txt)\\n\\n \ CMIP Citation:\\n\\n > Ridley, Jeff; Menary, Matthew; Kuhlbrodt, Till; Andrews, Martin; Andrews, Tim **(2018)**. *MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP*. Version 20190624. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.419\\n\\n ScenarioMIP Citation:\\n\\n \ > Good, Peter **(2019)**. *MOHC HadGEM3-GC31-LL model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200114; SSP2-4.5 version 20190908; SSP5-8.5 version 20200114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.10845\\n\\n\\n* **MIROC-ES2L**\\n\\n License description: [data_licenses/MIROC-ES2L.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MIROC-ES2L.txt)\\n\\n \ CMIP Citation:\\n\\n > Hajima, Tomohiro; Abe, Manabu; Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogura, Tomoo; Ogochi, Koji; Watanabe, Michio; Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio; Tachiiri, Kaoru **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 CMIP*. Version 20191129. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.902\\n\\n \ ScenarioMIP Citation:\\n\\n > Tachiiri, Kaoru; Abe, Manabu; Hajima, Tomohiro; Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogochi, Koji; Watanabe, Michio; Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 ScenarioMIP*. Version 20200318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.936\\n\\n\\n* **MIROC6**\\n\\n License description: [data_licenses/MIROC6.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MIROC6.txt)\\n\\n \ CMIP Citation:\\n\\n > Tatebe, Hiroaki; Watanabe, Masahiro **(2018)**. *MIROC MIROC6 model output prepared for CMIP6 CMIP*. Version 20191016. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.881\\n\\n ScenarioMIP Citation:\\n\\n > Shiogama, Hideo; Abe, Manabu; Tatebe, Hiroaki **(2019)**. *MIROC MIROC6 model output prepared for CMIP6 ScenarioMIP*. Version 20191016. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.898\\n\\n\\n* **MPI-ESM1-2-HR**\\n\\n License description: [data_licenses/MPI-ESM1-2-HR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MPI-ESM1-2-HR.txt)\\n\\n \ CMIP Citation:\\n\\n > Jungclaus, Johann; Bittner, Matthias; Wieners, Karl-Hermann; Wachsmann, Fabian; Schupfner, Martin; Legutke, Stephanie; Giorgetta, Marco; Reick, Christian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Esch, Monika; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-HR model output prepared for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.741\\n\\n \ ScenarioMIP Citation:\\n\\n > Schupfner, Martin; Wieners, Karl-Hermann; Wachsmann, Fabian; Steger, Christian; Bittner, Matthias; Jungclaus, Johann; Fr\xFCh, Barbara; Pankatz, Klaus; Giorgetta, Marco; Reick, Christian; Legutke, Stephanie; Esch, Monika; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *DKRZ MPI-ESM1.2-HR model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2450\\n\\n\\n* **MPI-ESM1-2-LR**\\n\\n License description: [data_licenses/MPI-ESM1-2-LR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MPI-ESM1-2-LR.txt)\\n\\n \ CMIP Citation:\\n\\n > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Legutke, Stephanie; Schupfner, Martin; Wachsmann, Fabian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.742\\n\\n \ ScenarioMIP Citation:\\n\\n > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.793\\n\\n\\n* **NESM3**\\n\\n \ License description: [data_licenses/NESM3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NESM3.txt)\\n\\n \ CMIP Citation:\\n\\n > Cao, Jian; Wang, Bin **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 CMIP*. Version 20190812. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2021\\n\\n ScenarioMIP Citation:\\n\\n \ > Cao, Jian **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190806; SSP2-4.5 version 20190805; SSP5-8.5 version 20190811. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2027\\n\\n\\n* **NorESM2-LM**\\n\\n License description: [data_licenses/NorESM2-LM.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NorESM2-LM.txt)\\n\\n \ CMIP Citation:\\n\\n > Seland, \xD8yvind; Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 CMIP*. Version 20190815. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.502\\n\\n ScenarioMIP Citation:\\n\\n \ > Seland, \xD8yvind; Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.604\\n\\n\\n* **NorESM2-MM**\\n\\n License description: [data_licenses/NorESM2-MM.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NorESM2-MM.txt)\\n\\n \ CMIP Citation:\\n\\n > Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Seland, \xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.506\\n\\n ScenarioMIP Citation:\\n\\n \ > Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Seland, \xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.608\\n\\n\\n* **UKESM1-0-LL**\\n\\n License description: [data_licenses/UKESM1-0-LL.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/UKESM1-0-LL.txt)\\n\\n \ CMIP Citation:\\n\\n > Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Mulcahy, Jane; Sellar, Alistair; Walton, Jeremy; Jones, Colin **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 CMIP*. Version 20190627. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1569\\n\\n \ ScenarioMIP Citation:\\n\\n > Good, Peter; Sellar, Alistair; Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Kuhlbrodt, Till; Walton, Jeremy **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190708; SSP2-4.5 version 20190715; SSP3-7.0 version 20190726; SSP5-8.5 version 20190726. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1567\\n\\n\\n* **CanESM5**\\n\\n License description: [data_licenses/CanESM5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CanESM5.txt). Note: this dataset was previously licensed\\n under CC BY-SA 4.0, but was relicensed as CC BY 4.0 in March, 2023.\\n\\n CMIP Citation:\\n\\n > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model output prepared for CMIP6 CMIP*. Version 20190429. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1303\\n\\n ScenarioMIP Citation:\\n\\n \ > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model output prepared for CMIP6 ScenarioMIP*. Version 20190429. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1317\\n\\n## Acknowledgements\\n\\nThis work is the result of many years worth of work by members of the [Climate Impact Lab](https://impactlab.org), but would not have been possible without many contributions from across the wider scientific and computing communities.\\n\\nSpecifically, we would like to acknowledge the World Climate Research Programme's Working Group on Coupled Modeling, which is responsible for CMIP, and we would like to thank the climate modeling groups for producing and making their model output available. We would particularly like to thank the modeling institutions whose results are included as an input to this repository (listed above) for their contributions to the CMIP6 project and for responding to and granting our requests for license waivers.\\n\\nWe would also like to thank Lamont-Doherty Earth Observatory, the [Pangeo Consortium](https://github.com/pangeo-data) (and especially the [ESGF Cloud Data Working Group](https://pangeo-data.github.io/pangeo-cmip6-cloud/#)) and Google Cloud and the Google Public Datasets program for making the [CMIP6 Google Cloud collection](https://console.cloud.google.com/marketplace/details/noaa-public/cmip6) possible. In particular we're extremely grateful to [Ryan Abernathey](https://github.com/rabernat), [Naomi Henderson](https://github.com/naomi-henderson), [Charles Blackmon-Luca](https://github.com/charlesbluca), [Aparna Radhakrishnan](https://github.com/aradhakrishnanGFDL), [Julius Busecke](https://github.com/jbusecke), and [Charles Stern](https://github.com/cisaacstern) for the huge amount of work they've done to translate the ESGF CMIP6 netCDF archives into consistently-formattted, analysis-ready zarr stores on Google Cloud.\\n\\nWe're also grateful to the [xclim developers](https://github.com/Ouranosinc/xclim/graphs/contributors) ([DOI: 10.5281/zenodo.2795043](https://doi.org/10.5281/zenodo.2795043)), in particular [Pascal Bourgault](https://github.com/aulemahal), [David Huard](https://github.com/huard), and [Travis Logan](https://github.com/tlogan2000), for implementing the QDM bias correction method in the xclim python package, supporting our QPLAD implementation into the package, and ongoing support in integrating dask into downscaling workflows. For method advice and useful conversations, we would like to thank Keith Dixon, Dennis Adams-Smith, and [Joe Hamman](https://github.com/jhamman).\\n\\n## Financial support\\n\\nThis research has been supported by The Rockefeller Foundation and the Microsoft AI for Earth Initiative.\\n\\n## Additional links:\\n\\n* CIL GDPCIR project homepage: [github.com/ClimateImpactLab/downscaleCMIP6](https://github.com/ClimateImpactLab/downscaleCMIP6)\\n* Project listing on zenodo: https://doi.org/10.5281/zenodo.6403794\\n* Climate Impact Lab homepage: [impactlab.org](https://impactlab.org)\",\"item_assets\":{\"pr\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Precipitation\",\"description\":\"Precipitation\"},\"tasmax\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Daily Maximum Near-Surface Air Temperature\",\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Daily Minimum Near-Surface Air Temperature\",\"description\":\"Daily Minimum Near-Surface Air Temperature\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"cil-gdpcir\",\"cube:variables\":{\"pr\":{\"type\":\"data\",\"unit\":\"mm day-1\",\"attrs\":{\"units\":\"mm day-1\"},\"dimensions\":[\"time\",\"lat\",\"lon\"]},\"tasmax\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"maximum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: max')\",\"long_name\":\"Daily Maximum Near-Surface Air Temperature\",\"coordinates\":\"height\",\"cell_methods\":\"area: mean time: maximum (interval: 5 minutes)\",\"cell_measures\":\"area: areacella\",\"original_name\":\"TREFHTMX\",\"standard_name\":\"air_temperature\"},\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"minimum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: min')\",\"long_name\":\"Daily Minimum Near-Surface Air Temperature\",\"coordinates\":\"height\",\"cell_methods\":\"area: mean time: minimum (interval: 5 minutes)\",\"cell_measures\":\"area: areacella\",\"original_name\":\"TREFHTMN\",\"standard_name\":\"air_temperature\"},\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Minimum Near-Surface Air Temperature\"}},\"msft:container\":\"cil-gdpcir\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[-89.875,89.875],\"reference_system\":\"epsg:4326\"},\"lon\":{\"axis\":\"x\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[-179.875,179.875],\"reference_system\":\"epsg:4326\"},\"time\":{\"step\":\"P1DT0H0M0S\",\"type\":\"temporal\",\"extent\":[\"1950-01-01T12:00:00Z\",\"2100-12-31T12:00:00Z\"],\"description\":\"time\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\"msft:storage_account\":\"rhgeuwest\",\"msft:short_description\":\"Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CC0-1.0)\"},{\"id\":\"cil-gdpcir-cc-by\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by\"},{\"rel\":\"license\",\"href\":\"https://spdx.org/licenses/CC-BY-4.0.html\",\"type\":\"text/html\",\"title\":\"Creative Commons Attribution 4.0 International\"},{\"rel\":\"cite-as\",\"href\":\"https://zenodo.org/record/6403794\",\"type\":\"text/html\"},{\"rel\":\"describedby\",\"href\":\"https://github.com/ClimateImpactLab/downscaleCMIP6/\",\"type\":\"text/html\",\"title\":\"Project homepage\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gdpcir.png\",\"type\":\"image/png\",\"title\":\"Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/cil-gdpcir-cc-by.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1950-01-01T00:00:00Z\",\"2100-12-31T00:00:00Z\"]]}},\"license\":\"CC-BY-4.0\",\"sci:doi\":\"10.5194/egusphere-2022-1513\",\"keywords\":[\"CMIP6\",\"Climate Impact Lab\",\"Rhodium Group\",\"Precipitation\",\"Temperature\"],\"providers\":[{\"url\":\"https://impactlab.org/\",\"name\":\"Climate Impact Lab\",\"roles\":[\"producer\"]},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"cmip6:variable\":[\"pr\",\"tasmax\",\"tasmin\"],\"cmip6:source_id\":[\"BCC-CSM2-MR\",\"ACCESS-ESM1-5\",\"ACCESS-CM2\",\"MIROC-ES2L\",\"MIROC6\",\"NorESM2-LM\",\"NorESM2-MM\",\"GFDL-CM4\",\"GFDL-ESM4\",\"NESM3\",\"MPI-ESM1-2-HR\",\"HadGEM3-GC31-LL\",\"UKESM1-0-LL\",\"MPI-ESM1-2-LR\",\"EC-Earth3\",\"EC-Earth3-AerChem\",\"EC-Earth3-CC\",\"EC-Earth3-Veg\",\"EC-Earth3-Veg-LR\",\"CMCC-CM2-SR5\",\"CMCC-ESM2\"],\"cmip6:experiment_id\":[\"historical\",\"ssp126\",\"ssp245\",\"ssp370\",\"ssp585\"],\"cmip6:institution_id\":[\"BCC\",\"CAS\",\"CCCma\",\"CMCC\",\"CSIRO\",\"CSIRO-ARCCSS\",\"DKRZ\",\"EC-Earth-Consortium\",\"INM\",\"MIROC\",\"MOHC\",\"MPI-M\",\"NCC\",\"NOAA-GFDL\",\"NUIST\"]},\"description\":\"The World Climate Research Programme's [6th Coupled Model Intercomparison Project (CMIP6)](https://www.wcrp-climate.org/wgcm-cmip/wgcm-cmip6) represents an enormous advance in the quality, detail, and scope of climate modeling.\\n\\nThe [Global Downscaled Projections for Climate Impacts Research](https://github.com/ClimateImpactLab/downscaleCMIP6) dataset makes this modeling more applicable to understanding the impacts of changes in the climate on humans and society with two key developments: trend-preserving bias correction and downscaling. In this dataset, the [Climate Impact Lab](https://impactlab.org) provides global, daily minimum and maximum air temperature at the surface (`tasmin` and `tasmax`) and daily cumulative surface precipitation (`pr`) corresponding to the CMIP6 historical, ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 scenarios for 25 global climate models on a 1/4-degree regular global grid.\\n\\n## Accessing the data\\n\\nGDPCIR data can be accessed on the Microsoft Planetary Computer. The dataset is made of of three collections, distinguished by data license:\\n* [Public domain (CC0-1.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0)\\n* [Attribution (CC BY 4.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by)\\n\\nEach modeling center with bias corrected and downscaled data in this collection falls into one of these license categories - see the [table below](/dataset/cil-gdpcir-cc-by#available-institutions-models-and-scenarios-by-license-collection) to see which model is in each collection, and see the section below on [Citing, Licensing, and using data produced by this project](/dataset/cil-gdpcir-cc-by#citing-licensing-and-using-data-produced-by-this-project) for citations and additional information about each license.\\n\\n## Data format & contents\\n\\nThe data is stored as partitioned zarr stores (see [https://zarr.readthedocs.io](https://zarr.readthedocs.io)), each of which includes thousands of data and metadata files covering the full time span of the experiment. Historical zarr stores contain just over 50 GB, while SSP zarr stores contain nearly 70GB. Each store is stored as a 32-bit float, with dimensions time (daily datetime), lat (float latitude), and lon (float longitude). The data is chunked at each interval of 365 days and 90 degree interval of latitude and longitude. Therefore, each chunk is `(365, 360, 360)`, with each chunk occupying approximately 180MB in memory.\\n\\nHistorical data is daily, excluding leap days, from Jan 1, 1950 to Dec 31, 2014; SSP data is daily, excluding leap days, from Jan 1, 2015 to either Dec 31, 2099 or Dec 31, 2100, depending on data availability in the source GCM.\\n\\nThe spatial domain covers all 0.25-degree grid cells, indexed by the grid center, with grid edges on the quarter-degree, using a -180 to 180 longitude convention. Thus, the \u201Clon\u201D coordinate extends from -179.875 to 179.875, and the \u201Clat\u201D coordinate extends from -89.875 to 89.875, with intermediate values at each 0.25-degree increment between (e.g. -179.875, -179.625, -179.375, etc).\\n\\n## Available institutions, models, and scenarios by license collection\\n\\n| Modeling institution | Source model | Available experiments \ | License collection |\\n| -------------------- | ----------------- | ------------------------------------------ | ---------------------- |\\n| CAS | FGOALS-g3 [^1] | SSP2-4.5, SSP3-7.0, and SSP5-8.5 \ | Public domain datasets |\\n| INM | INM-CM4-8 \ | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets |\\n| INM | INM-CM5-0 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets |\\n| BCC | BCC-CSM2-MR \ | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| CMCC | CMCC-CM2-SR5 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 \ | CC-BY-40 |\\n| CMCC | CMCC-ESM2 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 | CC-BY-40 |\\n| CSIRO-ARCCSS | ACCESS-CM2 | SSP2-4.5 and SSP3-7.0 | CC-BY-40 |\\n| CSIRO | ACCESS-ESM1-5 | SSP1-2.6, SSP2-4.5, and SSP3-7.0 | CC-BY-40 |\\n| MIROC | MIROC-ES2L | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| MIROC | MIROC6 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| MOHC | HadGEM3-GC31-LL | SSP1-2.6, SSP2-4.5, and SSP5-8.5 | CC-BY-40 \ |\\n| MOHC | UKESM1-0-LL | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| MPI-M | MPI-ESM1-2-LR | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| MPI-M/DKRZ [^2] | MPI-ESM1-2-HR | SSP1-2.6 and SSP5-8.5 | CC-BY-40 |\\n| NCC | NorESM2-LM | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| NCC | NorESM2-MM | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| NOAA-GFDL \ | GFDL-CM4 | SSP2-4.5 and SSP5-8.5 | CC-BY-40 |\\n| NOAA-GFDL | GFDL-ESM4 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| NUIST | NESM3 | SSP1-2.6, SSP2-4.5, and SSP5-8.5 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3 | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 |\\n| EC-Earth-Consortium \ | EC-Earth3-AerChem | ssp370 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3-CC | ssp245 and ssp585 | CC-BY-40 |\\n| EC-Earth-Consortium \ | EC-Earth3-Veg | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3-Veg-LR | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 |\\n| CCCma | CanESM5 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 | CC-BY-40[^3] \ |\\n\\n*Notes:*\\n\\n[^1]: At the time of running, no ssp1-2.6 precipitation data was available. Therefore, we provide `tasmin` and `tamax` for this model and experiment, but not `pr`. All other model/experiment combinations in the above table include all three variables.\\n\\n[^2]: The institution which ran MPI-ESM1-2-HR\u2019s historical (CMIP) simulations is `MPI-M`, while the future (ScenarioMIP) simulations were run by `DKRZ`. Therefore, the institution component of `MPI-ESM1-2-HR` filepaths differ between `historical` and `SSP` scenarios.\\n\\n[^3]: This dataset was previously licensed as [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/), but was relicensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0) in March, 2023. \\n\\n## Project methods\\n\\nThis project makes use of statistical bias correction and downscaling algorithms, which are specifically designed to accurately represent changes in the extremes. For this reason, we selected Quantile Delta Mapping (QDM), following the method introduced by [Cannon et al. (2015)](https://doi.org/10.1175/JCLI-D-14-00754.1), which preserves quantile-specific trends from the GCM while fitting the full distribution for a given day-of-year to a reference dataset (ERA5).\\n\\nWe then introduce a similar method tailored to increase spatial resolution while preserving extreme behavior, Quantile-Preserving Localized-Analog Downscaling (QPLAD).\\n\\nTogether, these methods provide a robust means to handle both the central and tail behavior seen in climate model output, while aligning the full distribution to a state-of-the-art reanalysis dataset and providing the spatial granularity needed to study surface impacts.\\n\\nFor further documentation, see [Global downscaled projections for climate impacts research (GDPCIR): preserving extremes for modeling future climate impacts](https://egusphere.copernicus.org/preprints/2023/egusphere-2022-1513/) (EGUsphere, 2022 [preprint]).\\n\\n## Citing, licensing, and using data produced by this project\\n\\nProjects making use of the data produced as part of the Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CIL GDPCIR) project are requested to cite both this project and the source datasets from which these results are derived. Additionally, the use of data derived from some GCMs *requires* citations, and some modeling centers impose licensing restrictions & requirements on derived works. See each GCM's license info in the links below for more information.\\n\\n### CIL GDPCIR\\n\\nUsers are requested to cite this project in derived works. Our method documentation paper may be cited using the following:\\n\\n> Gergel, D. R., Malevich, S. B., McCusker, K. E., Tenezakis, E., Delgado, M. T., Fish, M. A., and Kopp, R. E.: Global downscaled projections for climate impacts research (GDPCIR): preserving extremes for modeling future climate impacts, EGUsphere [preprint], https://doi.org/10.5194/egusphere-2022-1513, 2023. \\n\\nThe code repository may be cited using the following:\\n\\n> Diana Gergel, Kelly McCusker, Brewster Malevich, Emile Tenezakis, Meredith Fish, Michael Delgado (2022). ClimateImpactLab/downscaleCMIP6: (v1.0.0). Zenodo. https://doi.org/10.5281/zenodo.6403794\\n\\n### ERA5\\n\\nAdditionally, we request you cite the historical dataset used in bias correction and downscaling, ERA5. See the [ECMWF guide to citing a dataset on the Climate Data Store](https://confluence.ecmwf.int/display/CKB/How+to+acknowledge+and+cite+a+Climate+Data+Store+%28CDS%29+catalogue+entry+and+the+data+published+as+part+of+it):\\n\\n> Hersbach, H, et al. The ERA5 global reanalysis. Q J R Meteorol Soc.2020; 146: 1999\u20132049. DOI: [10.1002/qj.3803](https://doi.org/10.1002/qj.3803)\\n>\\n> Mu\xF1oz Sabater, J., (2019): ERA5-Land hourly data from 1981 to present. Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\n>\\n> Mu\xF1oz Sabater, J., (2021): ERA5-Land hourly data from 1950 to 1980. Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\n\\n### GCM-specific citations & licenses\\n\\nThe CMIP6 simulation data made available through the Earth System Grid Federation (ESGF) are subject to Creative Commons [BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) or [BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) licenses. The Climate Impact Lab has reached out to each of the modeling institutions to request waivers from these terms so the outputs of this project may be used with fewer restrictions, and has been granted permission to release the data using the licenses listed here.\\n\\n#### Public Domain Datasets\\n\\nThe following bias corrected and downscaled model simulations are available in the public domain using a [CC0 1.0 Universal Public Domain Declaration](https://creativecommons.org/publicdomain/zero/1.0/). Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0.\\n\\n* **FGOALS-g3**\\n\\n License description: [data_licenses/FGOALS-g3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/FGOALS-g3.txt)\\n\\n \ CMIP Citation:\\n\\n > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6 CMIP*. Version 20190826. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1783\\n\\n ScenarioMIP Citation:\\n\\n \ > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190818; SSP2-4.5 version 20190818; SSP3-7.0 version 20190820; SSP5-8.5 tasmax version 20190819; SSP5-8.5 tasmin version 20190819; SSP5-8.5 pr version 20190818. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2056\\n\\n\\n* **INM-CM4-8**\\n\\n License description: [data_licenses/INM-CM4-8.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/INM-CM4-8.txt)\\n\\n \ CMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8 model output prepared for CMIP6 CMIP*. Version 20190530. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1422\\n\\n ScenarioMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8 model output prepared for CMIP6 ScenarioMIP*. Version 20190603. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12321\\n\\n\\n* **INM-CM5-0**\\n\\n \ License description: [data_licenses/INM-CM5-0.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/INM-CM5-0.txt)\\n\\n \ CMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0 model output prepared for CMIP6 CMIP*. Version 20190610. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1423\\n\\n ScenarioMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190619; SSP2-4.5 version 20190619; SSP3-7.0 version 20190618; SSP5-8.5 version 20190724. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12322\\n\\n\\n#### CC-BY-4.0\\n\\nThe following bias corrected and downscaled model simulations are licensed under a [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/). Note that this license requires citation of the source model output (included here). Please see https://creativecommons.org/licenses/by/4.0/ for more information. Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by.\\n\\n* **ACCESS-CM2**\\n\\n License description: [data_licenses/ACCESS-CM2.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/ACCESS-CM2.txt)\\n\\n \ CMIP Citation:\\n\\n > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2281\\n\\n ScenarioMIP Citation:\\n\\n \ > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2285\\n\\n\\n* **ACCESS-ESM1-5**\\n\\n \ License description: [data_licenses/ACCESS-ESM1-5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/ACCESS-ESM1-5.txt)\\n\\n \ CMIP Citation:\\n\\n > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2288\\n\\n ScenarioMIP Citation:\\n\\n \ > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 ScenarioMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2291\\n\\n\\n* **BCC-CSM2-MR**\\n\\n License description: [data_licenses/BCC-CSM2-MR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/BCC-CSM2-MR.txt)\\n\\n \ CMIP Citation:\\n\\n > Xin, Xiaoge; Zhang, Jie; Zhang, Fang; Wu, Tongwen; Shi, Xueli; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei, Min **(2018)**. *BCC BCC-CSM2MR model output prepared for CMIP6 CMIP*. Version 20181126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1725\\n\\n \ ScenarioMIP Citation:\\n\\n > Xin, Xiaoge; Wu, Tongwen; Shi, Xueli; Zhang, Fang; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei, Min **(2019)**. *BCC BCC-CSM2MR model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190315; SSP2-4.5 version 20190318; SSP3-7.0 version 20190318; SSP5-8.5 version 20190318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1732\\n\\n\\n* **CMCC-CM2-SR5**\\n\\n License description: [data_licenses/CMCC-CM2-SR5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CMCC-CM2-SR5.txt)\\n\\n \ CMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5 model output prepared for CMIP6 CMIP*. Version 20200616. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1362\\n\\n ScenarioMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200717; SSP2-4.5 version 20200617; SSP3-7.0 version 20200622; SSP5-8.5 version 20200622. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1365\\n\\n\\n* **CMCC-ESM2**\\n\\n License description: [data_licenses/CMCC-ESM2.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CMCC-ESM2.txt)\\n\\n \ CMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele; Butensch\xF6n, Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 CMIP*. Version 20210114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13164\\n\\n \ ScenarioMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele; Butensch\xF6n, Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20210126; SSP2-4.5 version 20210129; SSP3-7.0 version 20210202; SSP5-8.5 version 20210126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13168\\n\\n\\n* **EC-Earth3-AerChem**\\n\\n License description: [data_licenses/EC-Earth3-AerChem.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-AerChem.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 CMIP*. Version 20200624. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.639\\n\\n \ ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 ScenarioMIP*. Version 20200827. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.724\\n\\n\\n* **EC-Earth3-CC**\\n\\n License description: [data_licenses/EC-Earth3-CC.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-CC.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth-3-CC model output prepared for CMIP6 CMIP*. Version 20210113. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.640\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2021)**. *EC-Earth-Consortium EC-Earth3-CC model output prepared for CMIP6 ScenarioMIP*. Version 20210113. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.15327\\n\\n\\n* **EC-Earth3-Veg-LR**\\n\\n License description: [data_licenses/EC-Earth3-Veg-LR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-Veg-LR.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 CMIP*. Version 20200217. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.643\\n\\n \ ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20201201; SSP2-4.5 version 20201123; SSP3-7.0 version 20201123; SSP5-8.5 version 20201201. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.728\\n\\n\\n* **EC-Earth3-Veg**\\n\\n License description: [data_licenses/EC-Earth3-Veg.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-Veg.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3-Veg model output prepared for CMIP6 CMIP*. Version 20200225. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.642\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3-Veg model output prepared for CMIP6 ScenarioMIP*. Version 20200225. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.727\\n\\n\\n* **EC-Earth3**\\n\\n License description: [data_licenses/EC-Earth3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3 model output prepared for CMIP6 CMIP*. Version 20200310. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.181\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3 model output prepared for CMIP6 ScenarioMIP*. Version 20200310. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.251\\n\\n\\n* **GFDL-CM4**\\n\\n License description: [data_licenses/GFDL-CM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-CM4.txt)\\n\\n \ CMIP Citation:\\n\\n > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Bushuk, Mitchell; Dunne, Krista A.; Dussin, Raphael; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, P.C.D; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4 model output*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1402\\n\\n ScenarioMIP Citation:\\n\\n \ > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, Chris; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.9242\\n\\n\\n* **GFDL-ESM4**\\n\\n \ License description: [data_licenses/GFDL-ESM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-ESM4.txt)\\n\\n \ CMIP Citation:\\n\\n > Krasting, John P.; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Silvers, Levi; Wyman, Bruce; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Dussin, Raphael; Guo, Huan; He, Jian; Held, Isaac M; Horowitz, Larry W.; Lin, Pu; Milly, P.C.D; Shevliakova, Elena; Stock, Charles; Winton, Michael; Wittenberg, Andrew T.; Xie, Yuanyu; Zhao, Ming **(2018)**. *NOAA-GFDL GFDL-ESM4 model output prepared for CMIP6 CMIP*. Version 20190726. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1407\\n\\n ScenarioMIP Citation:\\n\\n \ > John, Jasmin G; Blanton, Chris; McHugh, Colleen; Radhakrishnan, Aparna; Rand, Kristopher; Vahlenkamp, Hans; Wilson, Chandin; Zadeh, Niki T.; Dunne, John P.; Dussin, Raphael; Horowitz, Larry W.; Krasting, John P.; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Ploshay, Jeffrey; Shevliakova, Elena; Silvers, Levi; Stock, Charles; Winton, Michael; Zeng, Yujin **(2018)**. *NOAA-GFDL GFDL-ESM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1414\\n\\n\\n* **HadGEM3-GC31-LL**\\n\\n License description: [data_licenses/HadGEM3-GC31-LL.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/HadGEM3-GC31-LL.txt)\\n\\n \ CMIP Citation:\\n\\n > Ridley, Jeff; Menary, Matthew; Kuhlbrodt, Till; Andrews, Martin; Andrews, Tim **(2018)**. *MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP*. Version 20190624. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.419\\n\\n ScenarioMIP Citation:\\n\\n \ > Good, Peter **(2019)**. *MOHC HadGEM3-GC31-LL model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200114; SSP2-4.5 version 20190908; SSP5-8.5 version 20200114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.10845\\n\\n\\n* **MIROC-ES2L**\\n\\n License description: [data_licenses/MIROC-ES2L.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MIROC-ES2L.txt)\\n\\n \ CMIP Citation:\\n\\n > Hajima, Tomohiro; Abe, Manabu; Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogura, Tomoo; Ogochi, Koji; Watanabe, Michio; Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio; Tachiiri, Kaoru **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 CMIP*. Version 20191129. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.902\\n\\n \ ScenarioMIP Citation:\\n\\n > Tachiiri, Kaoru; Abe, Manabu; Hajima, Tomohiro; Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogochi, Koji; Watanabe, Michio; Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 ScenarioMIP*. Version 20200318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.936\\n\\n\\n* **MIROC6**\\n\\n License description: [data_licenses/MIROC6.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MIROC6.txt)\\n\\n \ CMIP Citation:\\n\\n > Tatebe, Hiroaki; Watanabe, Masahiro **(2018)**. *MIROC MIROC6 model output prepared for CMIP6 CMIP*. Version 20191016. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.881\\n\\n ScenarioMIP Citation:\\n\\n > Shiogama, Hideo; Abe, Manabu; Tatebe, Hiroaki **(2019)**. *MIROC MIROC6 model output prepared for CMIP6 ScenarioMIP*. Version 20191016. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.898\\n\\n\\n* **MPI-ESM1-2-HR**\\n\\n License description: [data_licenses/MPI-ESM1-2-HR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MPI-ESM1-2-HR.txt)\\n\\n \ CMIP Citation:\\n\\n > Jungclaus, Johann; Bittner, Matthias; Wieners, Karl-Hermann; Wachsmann, Fabian; Schupfner, Martin; Legutke, Stephanie; Giorgetta, Marco; Reick, Christian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Esch, Monika; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-HR model output prepared for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.741\\n\\n \ ScenarioMIP Citation:\\n\\n > Schupfner, Martin; Wieners, Karl-Hermann; Wachsmann, Fabian; Steger, Christian; Bittner, Matthias; Jungclaus, Johann; Fr\xFCh, Barbara; Pankatz, Klaus; Giorgetta, Marco; Reick, Christian; Legutke, Stephanie; Esch, Monika; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *DKRZ MPI-ESM1.2-HR model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2450\\n\\n\\n* **MPI-ESM1-2-LR**\\n\\n License description: [data_licenses/MPI-ESM1-2-LR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MPI-ESM1-2-LR.txt)\\n\\n \ CMIP Citation:\\n\\n > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Legutke, Stephanie; Schupfner, Martin; Wachsmann, Fabian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.742\\n\\n \ ScenarioMIP Citation:\\n\\n > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.793\\n\\n\\n* **NESM3**\\n\\n \ License description: [data_licenses/NESM3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NESM3.txt)\\n\\n \ CMIP Citation:\\n\\n > Cao, Jian; Wang, Bin **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 CMIP*. Version 20190812. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2021\\n\\n ScenarioMIP Citation:\\n\\n \ > Cao, Jian **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190806; SSP2-4.5 version 20190805; SSP5-8.5 version 20190811. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2027\\n\\n\\n* **NorESM2-LM**\\n\\n License description: [data_licenses/NorESM2-LM.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NorESM2-LM.txt)\\n\\n \ CMIP Citation:\\n\\n > Seland, \xD8yvind; Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 CMIP*. Version 20190815. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.502\\n\\n ScenarioMIP Citation:\\n\\n \ > Seland, \xD8yvind; Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.604\\n\\n\\n* **NorESM2-MM**\\n\\n License description: [data_licenses/NorESM2-MM.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NorESM2-MM.txt)\\n\\n \ CMIP Citation:\\n\\n > Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Seland, \xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.506\\n\\n ScenarioMIP Citation:\\n\\n \ > Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Seland, \xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.608\\n\\n\\n* **UKESM1-0-LL**\\n\\n License description: [data_licenses/UKESM1-0-LL.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/UKESM1-0-LL.txt)\\n\\n \ CMIP Citation:\\n\\n > Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Mulcahy, Jane; Sellar, Alistair; Walton, Jeremy; Jones, Colin **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 CMIP*. Version 20190627. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1569\\n\\n \ ScenarioMIP Citation:\\n\\n > Good, Peter; Sellar, Alistair; Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Kuhlbrodt, Till; Walton, Jeremy **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190708; SSP2-4.5 version 20190715; SSP3-7.0 version 20190726; SSP5-8.5 version 20190726. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1567\\n\\n* **CanESM5**\\n\\n License description: [data_licenses/CanESM5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CanESM5.txt). Note: this dataset was previously licensed\\n under CC BY-SA 4.0, but was relicensed as CC BY 4.0 in March, 2023.\\n\\n CMIP Citation:\\n\\n > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model output prepared for CMIP6 CMIP*. Version 20190429. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1303\\n\\n ScenarioMIP Citation:\\n\\n \ > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model output prepared for CMIP6 ScenarioMIP*. Version 20190429. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1317\\n\\n## Acknowledgements\\n\\nThis work is the result of many years worth of work by members of the [Climate Impact Lab](https://impactlab.org), but would not have been possible without many contributions from across the wider scientific and computing communities.\\n\\nSpecifically, we would like to acknowledge the World Climate Research Programme's Working Group on Coupled Modeling, which is responsible for CMIP, and we would like to thank the climate modeling groups for producing and making their model output available. We would particularly like to thank the modeling institutions whose results are included as an input to this repository (listed above) for their contributions to the CMIP6 project and for responding to and granting our requests for license waivers.\\n\\nWe would also like to thank Lamont-Doherty Earth Observatory, the [Pangeo Consortium](https://github.com/pangeo-data) (and especially the [ESGF Cloud Data Working Group](https://pangeo-data.github.io/pangeo-cmip6-cloud/#)) and Google Cloud and the Google Public Datasets program for making the [CMIP6 Google Cloud collection](https://console.cloud.google.com/marketplace/details/noaa-public/cmip6) possible. In particular we're extremely grateful to [Ryan Abernathey](https://github.com/rabernat), [Naomi Henderson](https://github.com/naomi-henderson), [Charles Blackmon-Luca](https://github.com/charlesbluca), [Aparna Radhakrishnan](https://github.com/aradhakrishnanGFDL), [Julius Busecke](https://github.com/jbusecke), and [Charles Stern](https://github.com/cisaacstern) for the huge amount of work they've done to translate the ESGF CMIP6 netCDF archives into consistently-formattted, analysis-ready zarr stores on Google Cloud.\\n\\nWe're also grateful to the [xclim developers](https://github.com/Ouranosinc/xclim/graphs/contributors) ([DOI: 10.5281/zenodo.2795043](https://doi.org/10.5281/zenodo.2795043)), in particular [Pascal Bourgault](https://github.com/aulemahal), [David Huard](https://github.com/huard), and [Travis Logan](https://github.com/tlogan2000), for implementing the QDM bias correction method in the xclim python package, supporting our QPLAD implementation into the package, and ongoing support in integrating dask into downscaling workflows. For method advice and useful conversations, we would like to thank Keith Dixon, Dennis Adams-Smith, and [Joe Hamman](https://github.com/jhamman).\\n\\n## Financial support\\n\\nThis research has been supported by The Rockefeller Foundation and the Microsoft AI for Earth Initiative.\\n\\n## Additional links:\\n\\n* CIL GDPCIR project homepage: [github.com/ClimateImpactLab/downscaleCMIP6](https://github.com/ClimateImpactLab/downscaleCMIP6)\\n* Project listing on zenodo: https://doi.org/10.5281/zenodo.6403794\\n* Climate Impact Lab homepage: [impactlab.org](https://impactlab.org)\",\"item_assets\":{\"pr\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Precipitation\",\"description\":\"Precipitation\"},\"tasmax\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Daily Maximum Near-Surface Air Temperature\",\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Daily Minimum Near-Surface Air Temperature\",\"description\":\"Daily Minimum Near-Surface Air Temperature\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"cil-gdpcir\",\"cube:variables\":{\"pr\":{\"type\":\"data\",\"unit\":\"mm day-1\",\"attrs\":{\"units\":\"mm day-1\"},\"dimensions\":[\"time\",\"lat\",\"lon\"]},\"tasmax\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"maximum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: max')\",\"long_name\":\"Daily Maximum Near-Surface Air Temperature\",\"coordinates\":\"height\",\"cell_methods\":\"area: mean time: maximum (interval: 5 minutes)\",\"cell_measures\":\"area: areacella\",\"original_name\":\"TREFHTMX\",\"standard_name\":\"air_temperature\"},\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"minimum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: min')\",\"long_name\":\"Daily Minimum Near-Surface Air Temperature\",\"coordinates\":\"height\",\"cell_methods\":\"area: mean time: minimum (interval: 5 minutes)\",\"cell_measures\":\"area: areacella\",\"original_name\":\"TREFHTMN\",\"standard_name\":\"air_temperature\"},\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Minimum Near-Surface Air Temperature\"}},\"msft:container\":\"cil-gdpcir\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[-89.875,89.875],\"reference_system\":\"epsg:4326\"},\"lon\":{\"axis\":\"x\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[-179.875,179.875],\"reference_system\":\"epsg:4326\"},\"time\":{\"step\":\"P1DT0H0M0S\",\"type\":\"temporal\",\"extent\":[\"1950-01-01T12:00:00Z\",\"2100-12-31T12:00:00Z\"],\"description\":\"time\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\"msft:storage_account\":\"rhgeuwest\",\"msft:short_description\":\"Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)\"},{\"id\":\"noaa-cdr-sea-surface-temperature-whoi-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf\"},{\"rel\":\"license\",\"href\":\"https://www.ncei.noaa.gov/pub/data/sds/cdr/CDRs/Sea%20Surface%20Temperature%20-%20WHOI/UseAgreement_01B-27a.pdf\",\"type\":\"application/pdf\",\"title\":\"NOAA CDR Sea Surface Temperature - WHOI Use Agreement\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/products/climate-data-records/sea-surface-temperature-whoi\",\"type\":\"text/html\",\"title\":\"Sea Surface Temperature - WHOI CDR\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.7289/V5FB510W\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-cdr-sea-surface-temperature-whoi-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sea Surface Temperature - WHOI CDR NetCDFs\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-cdr-sea-surface-temperature-whoi-netcdf-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Sea Surface Temperature - WHOI (NetCDF) CDR thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-cdr-sea-surface-temperature-whoi-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-90,180,90]]},\"temporal\":{\"interval\":[[\"1988-01-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.7289/V5FB510W\",\"keywords\":[\"Global\",\"Climate\",\"NOAA\",\"Ocean\",\"Temperature\"],\"providers\":[{\"url\":\"https://www.ncei.noaa.gov/\",\"name\":\"National Centers for Environmental Information\",\"roles\":[\"producer\",\"processor\",\"licensor\"],\"description\":\"NCEI is the Nation's leading authority for environmental data, and manage one of the largest archives of atmospheric, coastal, geophysical, and oceanic research in the world. NCEI contributes to the NESDIS mission by developing new products and services that span the science disciplines and enable better data discovery.\"},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"description\":\"The Sea Surface Temperature-Woods Hole Oceanographic Institution (WHOI) Climate Data Record (CDR) is one of three CDRs which combine to form the NOAA Ocean Surface Bundle (OSB) CDR. The resultant sea surface temperature (SST) data are produced through modeling the diurnal variability in combination with AVHRR SST observations. The final record is output to a 3-hourly 0.25\xB0 resolution grid over the global ice-free oceans from January 1988\u2014present.\\n\\nThis is a NetCDF-only collection, for Cloud-Optimized GeoTIFFs use collection `noaa-cdr-sea-surface-temperature-whoi`.\\nThe NetCDF files are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\n\",\"item_assets\":{\"netcdf\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"]}},\"msft:region\":\"eastus\",\"sci:citation\":\"Clayson, Carol Anne; Brown, Jeremiah; and NOAA CDR Program (2016). NOAA Climate Data Record (CDR) of Sea Surface Temperature - WHOI, Version 2. NOAA National Climatic Data Center. doi:10.7289/V5FB510W\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-cdr\",\"msft:container\":\"sea-surface-temperature-whoi\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"],\"msft:storage_account\":\"noaacdr\",\"msft:short_description\":\"The Sea Surface Temperature-Woods Hole Oceanographic Institution (WHOI) Climate Data Record (CDR) is one of three CDRs which combine to form the NOAA Ocean Surface Bundle (OSB) CDR. The resultant sea surface temperature (SST) data are produced through modeling the diurnal variability in combination with AVHRR SST observations.\"},{\"id\":\"noaa-cdr-sea-surface-temperature-optimum-interpolation\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation\"},{\"rel\":\"license\",\"href\":\"https://www.ncei.noaa.gov/pub/data/sds/cdr/CDRs/Sea_Surface_Temperature_Optimum_Interpolation/UseAgreement_01B-09.pdf\",\"type\":\"application/pdf\",\"title\":\"NOAA CDR Sea Surface Temperature - Optimum Interpolation Use Agreement\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/products/climate-data-records/sea-surface-temperature-optimum-interpolation\",\"type\":\"text/html\",\"title\":\"Sea Surface Temperature - Optimum Interpolation CDR\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.25921/RE9P-PT57\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-cdr-sea-surface-temperature-optimum-interpolation\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sea Surface Temperature - Optimum Interpolation CDR\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-cdr-sea-surface-temperature-optimum-interpolation-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Sea Surface Temperature - Optimum Interpolation CDR thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-cdr-sea-surface-temperature-optimum-interpolation.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-90.0,180.0,90.0]]},\"temporal\":{\"interval\":[[\"1981-09-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.25921/RE9P-PT57\",\"keywords\":[\"Global\",\"Climate\",\"NOAA\",\"Temperature\",\"Ocean\"],\"providers\":[{\"url\":\"https://www.ncei.noaa.gov/\",\"name\":\"National Centers for Environmental Information\",\"roles\":[\"producer\",\"processor\",\"licensor\"],\"description\":\"NCEI is the Nation's leading authority for environmental data, and manage one of the largest archives of atmospheric, coastal, geophysical, and oceanic research in the world. NCEI contributes to the NESDIS mission by developing new products and services that span the science disciplines and enable better data discovery.\"},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"description\":\"The NOAA 1/4\xB0 daily Optimum Interpolation Sea Surface Temperature (or daily OISST) Climate Data Record (CDR) provides complete ocean temperature fields constructed by combining bias-adjusted observations from different platforms (satellites, ships, buoys) on a regular global grid, with gaps filled in by interpolation. The main input source is satellite data from the Advanced Very High Resolution Radiometer (AVHRR), which provides high temporal-spatial coverage from late 1981-present. This input must be adjusted to the buoys due to erroneous cold SST data following the Mt Pinatubo and El Chichon eruptions. Applications include climate modeling, resource management, ecological studies on annual to daily scales.\\n\\nThese Cloud Optimized GeoTIFFs (COGs) were created from NetCDF files which are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\nFor the NetCDF files, see collection `noaa-cdr-sea-surface-temperature-optimum-interpolation-netcdf`.\\n\",\"item_assets\":{\"err\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"Celsius\",\"scale\":0.009999999776482582,\"nodata\":-999,\"data_type\":\"int16\"}]},\"ice\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"%\",\"scale\":0.009999999776482582,\"nodata\":-999,\"data_type\":\"int16\"}]},\"sst\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"Celsius\",\"scale\":0.009999999776482582,\"nodata\":-999,\"data_type\":\"int16\"}]},\"anom\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"Celsius\",\"scale\":0.009999999776482582,\"nodata\":-999,\"data_type\":\"int16\"}]},\"netcdf\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"]}},\"msft:region\":\"eastus\",\"sci:citation\":\"Huang, Boyin; Liu, Chunying; Banzon, Viva F.; Freeman, Eric; Graham, Garrett; Hankins, Bill; Smith, Thomas M.; Zhang, Huai-Min. (2020): NOAA 0.25-degree Daily Optimum Interpolation Sea Surface Temperature (OISST), Version 2.1. NOAA National Centers for Environmental Information. https://doi.org/10.25921/RE9P-PT57.\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-cdr\",\"msft:container\":\"sea-surface-temperature-optimum-interpolation\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"],\"msft:storage_account\":\"noaacdr\",\"msft:short_description\":\"The NOAA 1/4\xB0 daily Optimum Interpolation Sea Surface Temperature (or daily OISST) Climate Data Record (CDR) provides complete ocean temperature fields constructed by combining bias-adjusted observations from different platforms (satellites, ships, buoys) on a regular global grid, with gaps filled in by interpolation.\"},{\"id\":\"modis-10A1-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD10A1.061\",\"title\":\"MODIS/Terra Snow Cover Daily L3 Global 500m SIN Grid, Version 61\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD10A1.061\",\"title\":\"MODIS/Aqua Snow Cover Daily L3 Global 500m SIN Grid, Version 61\"},{\"rel\":\"license\",\"href\":\"https://nsidc.org/data/data-programs/nsidc-daac/citing-nsidc-daac\",\"title\":\"Use and Copyright | National Snow and Ice Data Center\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-10A1-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Snow Cover Daily\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-10A1-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Snow Cover Daily thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-10A1-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-24T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Snow\",\"MOD10A1\",\"MYD10A1\"],\"providers\":[{\"url\":\"https://nsidc.org\",\"name\":\"National Snow and Ice Data Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"This global Level-3 (L3) data set provides a daily composite of snow cover and albedo derived from the 'MODIS Snow Cover 5-Min L2 Swath 500m' data set. Each data granule is a 10degx10deg tile projected to a 500 m sinusoidal grid.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"NDSI\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Raw NDSI values (i.e. prior to screening).\",\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"orbit_pnt\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Pointer to the orbit of the swath mapped into each grid cell.\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"granule_pnt\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Pointer for identifying the swath mapped into each grid cell.\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"NDSI_Snow_Cover\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Gridded NDSI snow cover and data flag values.\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"Snow_Albedo_Daily_Tile\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Daily snow albedo corresponding to the NDSI_Snow_Cover parameter.\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"NDSI_Snow_Cover_Basic_QA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"A general estimate of the quality of the algorithm result.\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}],\"classification:classes\":[{\"value\":0,\"description\":\"best\"},{\"value\":1,\"description\":\"good\"},{\"value\":2,\"description\":\"ok\"},{\"value\":3,\"description\":\"poor (not used)\"},{\"value\":4,\"description\":\"other (not used)\"}]},\"NDSI_Snow_Cover_Algorithm_Flags_QA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Algorithm-specific bit flags set for data screens and for inland water.\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD10A1.061\",\"citation\":\"Hall, D. K., & Riggs, G. A. (2021). MODIS/Aqua Snow Cover Daily L3 Global 500m Grid, Version 61 [Data set]. NASA National Snow and Ice Data Center DAAC. https://doi.org/10.5067/MODIS/MOD10A1.061\"},{\"doi\":\"10.5067/MODIS/MYD10A1.061\",\"citation\":\"Hall, D. K., & Riggs, G. A. (2021). MODIS/Aqua Snow Cover Daily L3 Global 500m Grid, Version 61 [Data set]. NASA National Snow and Ice Data Center DAAC. https://doi.org/10.5067/MODIS/MYD10A1.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Snow Cover Daily\",\"msft:region\":\"westeurope\"},{\"id\":\"sentinel-5p-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinel.esa.int/web/sentinel/missions/sentinel-5p\",\"type\":\"text/html\",\"title\":\"Sentinel-5 Precursor Mission\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-5p-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-5P Level-2\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-5p-l2-netcdf-thumb.png\",\"title\":\"Sentinel-5P Level-2 NetCDF Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-5p-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2018-04-30T00:18:50Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"ESA\",\"Copernicus\",\"Sentinel\",\"Air Quality\",\"Climate Change\",\"Forecasting\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"platform\":[\"Sentinel 5 Precursor\"],\"instruments\":[\"TROPOMI\"],\"constellation\":[\"Sentinel-5P\"],\"s5p:product_name\":[\"aer-ai\",\"aer-lh\",\"ch4\",\"cloud\",\"co\",\"hcho\",\"no2\",\"np-bd3\",\"np-bd6\",\"np-bd7\",\"o3-tcl\",\"o3\",\"so2\"],\"s5p:product_type\":[\"L2__AER_AI\",\"L2__AER_LH\",\"L2__CH4___\",\"L2__CLOUD_\",\"L2__CO____\",\"L2__HCHO__\",\"L2__NO2___\",\"L2__NP_BD3\",\"L2__NP_BD6\",\"L2__NP_BD7\",\"L2__O3_TCL\",\"L2__O3____\",\"L2__SO2___\"],\"s5p:processing_mode\":[\"NRTI\",\"OFFL\",\"RPRO\"],\"s5p:collection_identifier\":[\"01\",\"02\",\"03\"],\"sat:platform_international_designator\":[\"2017-064A\"]},\"description\":\"The Copernicus [Sentinel-5 Precursor](https://sentinels.copernicus.eu/web/sentinel/missions/sentinel-5p) mission provides high spatio-temporal resolution measurements of the Earth's atmosphere. The mission consists of one satellite carrying the [TROPOspheric Monitoring Instrument](http://www.tropomi.eu/) (TROPOMI). The satellite flies in loose formation with NASA's [Suomi NPP](https://www.nasa.gov/mission_pages/NPP/main/index.html) spacecraft, allowing utilization of co-located cloud mask data provided by the [Visible Infrared Imaging Radiometer Suite](https://www.nesdis.noaa.gov/current-satellite-missions/currently-flying/joint-polar-satellite-system/visible-infrared-imaging) (VIIRS) instrument onboard Suomi NPP during processing of the TROPOMI methane product.\\n\\nThe Sentinel-5 Precursor mission aims to reduce the global atmospheric data gap between the retired [ENVISAT](https://earth.esa.int/eogateway/missions/envisat) and [AURA](https://www.nasa.gov/mission_pages/aura/main/index.html) missions and the future [Sentinel-5](https://sentinels.copernicus.eu/web/sentinel/missions/sentinel-5) mission. Sentinel-5 Precursor [Level 2 data](http://www.tropomi.eu/data-products/level-2-products) provide total columns of ozone, sulfur dioxide, nitrogen dioxide, carbon monoxide and formaldehyde, tropospheric columns of ozone, vertical profiles of ozone and cloud & aerosol information. These measurements are used for improving air quality forecasts and monitoring the concentrations of atmospheric constituents.\\n\\nThis STAC Collection provides Sentinel-5 Precursor Level 2 data, in NetCDF format, since April 2018 for the following products:\\n\\n* [`L2__AER_AI`](http://www.tropomi.eu/data-products/uv-aerosol-index): Ultraviolet aerosol index\\n* [`L2__AER_LH`](http://www.tropomi.eu/data-products/aerosol-layer-height): Aerosol layer height\\n* [`L2__CH4___`](http://www.tropomi.eu/data-products/methane): Methane (CH4) total column\\n* [`L2__CLOUD_`](http://www.tropomi.eu/data-products/cloud): Cloud fraction, albedo, and top pressure\\n* [`L2__CO____`](http://www.tropomi.eu/data-products/carbon-monoxide): Carbon monoxide (CO) total column\\n* [`L2__HCHO__`](http://www.tropomi.eu/data-products/formaldehyde): Formaldehyde (HCHO) total column\\n* [`L2__NO2___`](http://www.tropomi.eu/data-products/nitrogen-dioxide): Nitrogen dioxide (NO2) total column\\n* [`L2__O3____`](http://www.tropomi.eu/data-products/total-ozone-column): Ozone (O3) total column\\n* [`L2__O3_TCL`](http://www.tropomi.eu/data-products/tropospheric-ozone-column): Ozone (O3) tropospheric column\\n* [`L2__SO2___`](http://www.tropomi.eu/data-products/sulphur-dioxide): Sulfur dioxide (SO2) total column\\n* [`L2__NP_BD3`](http://www.tropomi.eu/data-products/auxiliary): Cloud from the Suomi NPP mission, band 3\\n* [`L2__NP_BD6`](http://www.tropomi.eu/data-products/auxiliary): Cloud from the Suomi NPP mission, band 6\\n* [`L2__NP_BD7`](http://www.tropomi.eu/data-products/auxiliary): Cloud from the Suomi NPP mission, band 7\\n\",\"item_assets\":{\"co\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Carbon Monoxide Total Column\"},\"o3\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Ozone Total Column\"},\"ch4\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Methane Total Column\"},\"no2\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Nitrogen Dioxide Total Column\"},\"so2\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Sulphur Dioxide Total Column\"},\"hcho\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Formaldehyde Total Column\"},\"cloud\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud Fraction, Albedo, and Top Pressure\"},\"aer-ai\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Ultraviolet Aerosol Index\"},\"aer-lh\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Aerosol Layer Height\"},\"np-bd3\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"VIIRS/NPP Band 3 Cloud Mask\"},\"np-bd6\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"VIIRS/NPP Band 6 Cloud Mask\"},\"np-bd7\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"VIIRS/NPP Band 7 Cloud Mask\"},\"o3-tcl\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Ozone Tropospheric Column\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:container\":\"sentinel-5p\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"sentinel5euwest\",\"msft:short_description\":\"Sentinel-5P Level 2 atmospheric monitoring products in NetCDF format\"},{\"id\":\"sentinel-3-olci-wfr-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-olci/product-types/level-2-water\",\"type\":\"text/html\",\"title\":\"Sentinel-3 Water (LRR and LFR) Product User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-olci-wfr-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 Water (Full Resolution)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-olci-wfr-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 OLCI WFR L2 NetCDF Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-olci-wfr-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2017-11-01T00:07:01.738487Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"ESA\",\"Copernicus\",\"Sentinel\",\"Water\",\"Ocean\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"eo:bands\":[{\"name\":\"Oa01\",\"description\":\"Band 1 - Aerosol correction, improved water constituent retrieval\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015},{\"name\":\"Oa02\",\"description\":\"Band 2 - Yellow substance and detrital pigments (turbidity)\",\"center_wavelength\":0.4125,\"full_width_half_max\":0.01},{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa04\",\"description\":\"Band 4 - Chlorophyll\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01},{\"name\":\"Oa05\",\"description\":\"Band 5 - Chlorophyll, sediment, turbidity, red tide\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01},{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01},{\"name\":\"Oa07\",\"description\":\"Band 7 - Sediment loading\",\"center_wavelength\":0.62,\"full_width_half_max\":0.01},{\"name\":\"Oa08\",\"description\":\"Band 8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\",\"center_wavelength\":0.665,\"full_width_half_max\":0.01},{\"name\":\"Oa09\",\"description\":\"Band 9 - Improved fluorescence retrieval\",\"center_wavelength\":0.67375,\"full_width_half_max\":0.0075},{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa11\",\"description\":\"Band 11 - Chlorophyll fluorescence baseline, red edge transition\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01},{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075},{\"name\":\"Oa16\",\"description\":\"Band 16 - Atmospheric / aerosol correction\",\"center_wavelength\":0.77875,\"full_width_half_max\":0.015},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"Oa19\",\"description\":\"Band 19 - Water vapour absorption, vegetation monitoring (maximum REFLECTANCE)\",\"center_wavelength\":0.9,\"full_width_half_max\":0.01},{\"name\":\"Oa21\",\"description\":\"Band 21 - Water vapour absorption, atmospheric / aerosol correction\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04}],\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"OLCI\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"olci-wfr\"],\"s3:product_type\":[\"OL_2_WFR___\"],\"sat:orbit_state\":[\"descending\",\"ascending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides Sentinel-3 Full Resolution [OLCI Level-2 Water][olci-l2] products containing data on water-leaving reflectance, ocean color, and more.\\n\\n## Data files\\n\\nThis dataset includes data on:\\n\\n- Surface directional reflectance\\n- Chlorophyll-a concentration\\n- Suspended matter concentration\\n- Energy flux\\n- Aerosol load\\n- Integrated water vapor column\\n\\nEach variable is contained within NetCDF files. Error estimates are available for each product.\\n\\n## Processing overview\\n\\nThe values in the data files have been converted from Top of Atmosphere radiance to reflectance, and include various corrections for gaseous absorption and pixel classification. More information about the product and data processing can be found in the [User Guide](https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-olci/product-types/level-2-water) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-olci/level-2/processing).\\n\\nThis Collection contains Level-2 data in NetCDF files from November 2017 to present.\\n\\n[olci-l2]: https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-olci/level-2/ocean-products\\n\",\"item_assets\":{\"iwv\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"Oa19\",\"description\":\"Band 19 - Water vapour absorption, vegetation monitoring (maximum REFLECTANCE)\",\"center_wavelength\":0.9,\"full_width_half_max\":0.01}],\"description\":\"Integrated water vapour column\"},\"par\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Photosynthetically active radiation\"},\"trsp\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa04\",\"description\":\"Band 4 - Chlorophyll\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01},{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01}],\"description\":\"Transparency properties of water\"},\"wqsf\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Water quality and science flags\"},\"w-aer\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa05\",\"description\":\"Band 5 - Chlorophyll, sediment, turbidity, red tide\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01},{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02}],\"description\":\"Aerosol over water\"},\"chl-nn\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa01\",\"description\":\"Band 1 - Aerosol correction, improved water constituent retrieval\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015},{\"name\":\"Oa02\",\"description\":\"Band 2 - Yellow substance and detrital pigments (turbidity)\",\"center_wavelength\":0.4125,\"full_width_half_max\":0.01},{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa04\",\"description\":\"Band 4 - Chlorophyll\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01},{\"name\":\"Oa05\",\"description\":\"Band 5 - Chlorophyll, sediment, turbidity, red tide\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01},{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01},{\"name\":\"Oa07\",\"description\":\"Band 7 - Sediment loading\",\"center_wavelength\":0.62,\"full_width_half_max\":0.01},{\"name\":\"Oa08\",\"description\":\"Band 8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\",\"center_wavelength\":0.665,\"full_width_half_max\":0.01},{\"name\":\"Oa09\",\"description\":\"Band 9 - Improved fluorescence retrieval\",\"center_wavelength\":0.67375,\"full_width_half_max\":0.0075},{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa11\",\"description\":\"Band 11 - Chlorophyll fluorescence baseline, red edge transition\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01},{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075},{\"name\":\"Oa16\",\"description\":\"Band 16 - Atmospheric / aerosol correction\",\"center_wavelength\":0.77875,\"full_width_half_max\":0.015},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"Oa21\",\"description\":\"Band 21 - Water vapour absorption, atmospheric / aerosol correction\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04}],\"description\":\"Neural net chlorophyll concentration\"},\"iop-nn\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa01\",\"description\":\"Band 1 - Aerosol correction, improved water constituent retrieval\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015},{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075},{\"name\":\"Oa16\",\"description\":\"Band 16 - Atmospheric / aerosol correction\",\"center_wavelength\":0.77875,\"full_width_half_max\":0.015},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"Oa21\",\"description\":\"Band 21 - Water vapour absorption, atmospheric / aerosol correction\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04}],\"description\":\"Inherent optical properties of water\"},\"tsm-nn\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa01\",\"description\":\"Band 1 - Aerosol correction, improved water constituent retrieval\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015},{\"name\":\"Oa02\",\"description\":\"Band 2 - Yellow substance and detrital pigments (turbidity)\",\"center_wavelength\":0.4125,\"full_width_half_max\":0.01},{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa04\",\"description\":\"Band 4 - Chlorophyll\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01},{\"name\":\"Oa05\",\"description\":\"Band 5 - Chlorophyll, sediment, turbidity, red tide\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01},{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01},{\"name\":\"Oa07\",\"description\":\"Band 7 - Sediment loading\",\"center_wavelength\":0.62,\"full_width_half_max\":0.01},{\"name\":\"Oa08\",\"description\":\"Band 8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\",\"center_wavelength\":0.665,\"full_width_half_max\":0.01},{\"name\":\"Oa09\",\"description\":\"Band 9 - Improved fluorescence retrieval\",\"center_wavelength\":0.67375,\"full_width_half_max\":0.0075},{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa11\",\"description\":\"Band 11 - Chlorophyll fluorescence baseline, red edge transition\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01},{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075},{\"name\":\"Oa16\",\"description\":\"Band 16 - Atmospheric / aerosol correction\",\"center_wavelength\":0.77875,\"full_width_half_max\":0.015},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"Oa21\",\"description\":\"Band 21 - Water vapour absorption, atmospheric / aerosol correction\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04}],\"description\":\"Total suspended matter concentration\"},\"chl-oc4me\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa04\",\"description\":\"Band 4 - Chlorophyll\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01},{\"name\":\"Oa05\",\"description\":\"Band 5 - Chlorophyll, sediment, turbidity, red tide\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01},{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01}],\"description\":\"OC4Me algorithm chlorophyll concentration\"},\"tie-meteo\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Tie-point meteo annotations\"},\"browse-jpg\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"description\":\"Preview image produced by the European Organisation for the Exploitation of Meteorological Satellites (EUMETSAT)\"},\"eop-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"Metadata produced by the European Organisation for the Exploitation of Meteorological Satellites (EUMETSAT)\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"},\"tie-geometries\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Tie-point geometry annotations\"},\"geo-coordinates\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Geo coordinate annotations\"},\"instrument-data\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Instrument annotations\"},\"oa01-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa01\",\"description\":\"Band 1 - Aerosol correction, improved water constituent retrieval\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015}],\"description\":\"Reflectance for OLCI acquisition band Oa01\"},\"oa02-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa02\",\"description\":\"Band 2 - Yellow substance and detrital pigments (turbidity)\",\"center_wavelength\":0.4125,\"full_width_half_max\":0.01}],\"description\":\"Reflectance for OLCI acquisition band Oa02\"},\"oa03-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01}],\"description\":\"Reflectance for OLCI acquisition band Oa03\"},\"oa04-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa04\",\"description\":\"Band 4 - Chlorophyll\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01}],\"description\":\"Reflectance for OLCI acquisition band Oa04\"},\"oa05-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa05\",\"description\":\"Band 5 - Chlorophyll, sediment, turbidity, red tide\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01}],\"description\":\"Reflectance for OLCI acquisition band Oa05\"},\"oa06-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01}],\"description\":\"Reflectance for OLCI acquisition band Oa06\"},\"oa07-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa07\",\"description\":\"Band 7 - Sediment loading\",\"center_wavelength\":0.62,\"full_width_half_max\":0.01}],\"description\":\"Reflectance for OLCI acquisition band Oa07\"},\"oa08-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa08\",\"description\":\"Band 8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\",\"center_wavelength\":0.665,\"full_width_half_max\":0.01}],\"description\":\"Reflectance for OLCI acquisition band Oa08\"},\"oa09-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa09\",\"description\":\"Band 9 - Improved fluorescence retrieval\",\"center_wavelength\":0.67375,\"full_width_half_max\":0.0075}],\"description\":\"Reflectance for OLCI acquisition band Oa09\"},\"oa10-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075}],\"description\":\"Reflectance for OLCI acquisition band Oa10\"},\"oa11-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa11\",\"description\":\"Band 11 - Chlorophyll fluorescence baseline, red edge transition\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01}],\"description\":\"Reflectance for OLCI acquisition band Oa11\"},\"oa12-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075}],\"description\":\"Reflectance for OLCI acquisition band Oa12\"},\"oa16-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa16\",\"description\":\"Band 16 - Atmospheric / aerosol correction\",\"center_wavelength\":0.77875,\"full_width_half_max\":0.015}],\"description\":\"Reflectance for OLCI acquisition band Oa16\"},\"oa17-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02}],\"description\":\"Reflectance for OLCI acquisition band Oa17\"},\"oa18-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01}],\"description\":\"Reflectance for OLCI acquisition band Oa18\"},\"oa21-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa21\",\"description\":\"Band 21 - Water vapour absorption, atmospheric / aerosol correction\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04}],\"description\":\"Reflectance for OLCI acquisition band Oa21\"},\"time-coordinates\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Time coordinate annotations\"},\"tie-geo-coordinates\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Tie-point geo coordinate annotations\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 Land Full Resolution water and atmospheric geophysical products (OLCI WFR).\"},{\"id\":\"noaa-cdr-ocean-heat-content-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf\"},{\"rel\":\"license\",\"href\":\"https://www.ncei.noaa.gov/pub/data/sds/cdr/CDRs/Ocean_Heat_Content/UseAgreement_01B-41.pdf\",\"type\":\"application/pdf\",\"title\":\"NOAA CDR Ocean Heat Content Use Agreement\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/products/climate-data-records/global-ocean-heat-content\",\"type\":\"text/html\",\"title\":\"Global Ocean Heat Content CDR\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.7289/v53f4mvp\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-cdr-ocean-heat-content-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Global Ocean Heat Content CDR NetCDFs\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-cdr-ocean-heat-content-netcdf-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Global Ocean Heat Content (NetCDF) CDR thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-cdr-ocean-heat-content-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-90.0,180.0,90.0]]},\"temporal\":{\"interval\":[[\"1972-03-01T00:00:00Z\",\"2022-03-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.7289/v53f4mvp\",\"keywords\":[\"Global\",\"Climate\",\"NOAA\",\"Temperature\",\"Ocean\"],\"providers\":[{\"url\":\"https://www.ncei.noaa.gov/\",\"name\":\"National Centers for Environmental Information\",\"roles\":[\"producer\",\"processor\",\"licensor\"],\"description\":\"NCEI is the Nation's leading authority for environmental data, and manage one of the largest archives of atmospheric, coastal, geophysical, and oceanic research in the world. NCEI contributes to the NESDIS mission by developing new products and services that span the science disciplines and enable better data discovery.\"},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"noaa_cdr:interval\":[\"monthly\",\"seasonal\",\"yearly\",\"pentadal\"],\"noaa_cdr:max_depth\":[100,700,2000]},\"description\":\"The Ocean Heat Content Climate Data Record (CDR) is a set of ocean heat content anomaly (OHCA) time-series for 1955-present on 3-monthly, yearly, and pentadal (five-yearly) scales. This CDR quantifies ocean heat content change over time, which is an essential metric for understanding climate change and the Earth's energy budget. It provides time-series for multiple depth ranges in the global ocean and each of the major basins (Atlantic, Pacific, and Indian) divided by hemisphere (Northern, Southern).\\n\\nThis is a NetCDF-only collection, for Cloud-Optimized GeoTIFFs use collection `noaa-cdr-ocean-heat-content`.\\nThe NetCDF files are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\n\",\"item_assets\":{\"netcdf\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"]}},\"msft:region\":\"eastus\",\"sci:citation\":\"Levitus, Sydney; Antonov, John I.; Boyer, Tim P.; Baranova, Olga K.; Garc\xEDa, Hern\xE1n E.; Locarnini, Ricardo A.; Mishonov, Alexey V.; Reagan, James R.; [Seidov, Dan; Yarosh, Evgeney; Zweng, Melissa M. (2017). NCEI ocean heat content, temperature anomalies, salinity anomalies, thermosteric sea level anomalies, halosteric sea level anomalies, and total steric sea level anomalies from 1955 to present calculated from in situ oceanographic subsurface profile data (NCEI Accession 0164586). NOAA National Centers for Environmental Information. Dataset. https://doi.org/10.7289/v53f4mvp.\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-cdr\",\"msft:container\":\"ocean-heat-content\",\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"noaacdr\",\"msft:short_description\":\"The Ocean Heat Content Climate Data Record (CDR) is a set of ocean heat content anomaly (OHCA) time-series for 1955-present on 3-monthly, yearly, and pentadal (five-yearly) scales.\"},{\"id\":\"hls2-l30\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/hls2-l30\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/hls2-l30.webp\",\"type\":\"image/webp\",\"title\":\"HLS2 Landsat Collection Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/hls2-l30.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"W-MON\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2020-01-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Landsat\",\"HLS\",\"Satellite\",\"Global\",\"Imagery\"],\"providers\":[{\"url\":\"https://doi.org/10.5067/HLS/HLSL30.002\",\"name\":\"LP DAAC\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[30],\"platform\":[\"Landsat 8\",\"Landsat 9\"]},\"description\":\"Harmonized Landsat Sentinel-2 (HLS) Version 2.0 provides consistent surface reflectance (SR)\\nand top of atmosphere (TOA) brightness data from the Operational Land Imager (OLI) aboard the\\njoint NASA/USGS Landsat 8 and Landsat 9 satellites and the Multi-Spectral Instrument (MSI)\\naboard the ESA (European Space Agency) Sentinel-2A, Sentinel-2B, and Sentinel-2C satellites.\\nThe combined measurement enables global observations of the land every 2-3 days at 30 meter\\n(m) spatial resolution. The HLS-S30 and HLS-L30 products are gridded to the same resolution and\\nMilitary Grid Reference System (MGRS) tiling system and are \\\"stackable\\\" for time series analysis.\\nThis dataset is in the form of cloud-optimized GeoTIFFs. The HLS v2.0 data is generated by NASA's\\nIMPACT team at Marshall Space Flight Center. The product latency is 1.7 days, from the satellite\\noverpass to the HLS data availability at NASA's Land Processes Distributed Active Archive Center\\n(LP DAAC). For more information see LP DAAC's\\n[HLS Overview](https://lpdaac.usgs.gov/data/get-started-data/collection-overview/missions/harmonized-landsat-sentinel-2-hls-overview/).\\n\\nThis collection contains HLS data collected from Landsat-8 and Landsat-9.\\nHLS data generated from Sentinel-2 satellites can be found in a separate collection.\\n\",\"item_assets\":{\"B01\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Coastal Aerosol\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.48,\"full_width_half_max\":0.02}]},\"B02\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Blue\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.44,\"full_width_half_max\":0.06}]},\"B03\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Green\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}]},\"B04\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Red\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}]},\"B05\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"NIR Narrow\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"nir\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}]},\"B06\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR 1\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}]},\"B07\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR 2\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}]},\"B09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Cirrus\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"cirrus\",\"center_wavelength\":1.37,\"full_width_half_max\":0.02}]},\"B10\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Thermal Infrared 1\",\"eo:bands\":[{\"name\":\"B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}]},\"B11\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Thermal Infrared 2\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"lwir12\",\"center_wavelength\":12.0,\"full_width_half_max\":1.0}]},\"SAA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SAA\",\"eo:bands\":[{\"name\":\"SAA\"}]},\"SZA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SZA\",\"eo:bands\":[{\"name\":\"SZA\"}]},\"VAA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VAA\",\"eo:bands\":[{\"name\":\"VAA\"}]},\"VZA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VZA\",\"eo:bands\":[{\"name\":\"VZA\"}]},\"Fmask\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Fmask\",\"eo:bands\":[{\"name\":\"Fmask\"}]}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"hls2\",\"msft:container\":\"hls2\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\"msft:storage_account\":\"hls2euwest\",\"msft:short_description\":\"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data\"},{\"id\":\"sentinel-3-synergy-aod-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/level-2-aod\",\"type\":\"text/html\",\"title\":\"Sentinel-3 Global Aerosol Product User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-synergy-aod-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 Global Aerosol\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-synergy-aod-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 Global Aerosol Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-synergy-aod-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2020-04-16T19:36:28.012367Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Global\",\"Aerosol\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"eo:bands\":[{\"name\":\"SYN_1600\",\"description\":\"SLSTR nadir and oblique channel S5\",\"center_wavelength\":1.61,\"full_width_half_max\":0.06},{\"name\":\"SYN_2250\",\"description\":\"SLSTR nadir and oblique channel S6\",\"center_wavelength\":2.25,\"full_width_half_max\":0.05},{\"name\":\"SYN_440\",\"description\":\"OLCI channel Oa03\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"SYN_550\",\"description\":\"SLSTR nadir and oblique channel S1\",\"center_wavelength\":0.55,\"full_width_half_max\":0.02},{\"name\":\"SYN_670\",\"description\":\"SLSTR nadir and oblique channel S2\",\"center_wavelength\":0.659,\"full_width_half_max\":0.02},{\"name\":\"SYN_865\",\"description\":\"OLCI channel Oa17, SLSTR nadir and oblique channel S2\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02}],\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"OLCI\",\"SLSTR\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"synergy-aod\"],\"s3:product_type\":[\"SY_2_AOD___\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides the Sentinel-3 [Synergy Level-2 Aerosol Optical Depth](https://sentinels.copernicus.eu/web/sentinel/level-2-aod) product, which is a downstream development of the Sentinel-2 Level-1 [OLCI Full Resolution](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-olci/data-formats/level-1) and [SLSTR Radiances and Brightness Temperatures](https://sentinels.copernicus.eu/web/sentinel/user-guides/Sentinel-3-slstr/data-formats/level-1) products. The dataset provides both retrieved and diagnostic global aerosol parameters at super-pixel (4.5 km x 4.5 km) resolution in a single NetCDF file for all regions over land and ocean free of snow/ice cover, excluding high cloud fraction data. The retrieved and derived aerosol parameters are:\\n\\n- Aerosol Optical Depth (AOD) at 440, 550, 670, 985, 1600 and 2250 nm\\n- Error estimates (i.e. standard deviation) in AOD at 440, 550, 670, 985, 1600 and 2250 nm\\n- Single Scattering Albedo (SSA) at 440, 550, 670, 985, 1600 and 2250 nm\\n- Fine-mode AOD at 550nm\\n- Aerosol Angstrom parameter between 550 and 865nm\\n- Dust AOD at 550nm\\n- Aerosol absorption optical depth at 550nm\\n\\nAtmospherically corrected nadir surface directional reflectances at 440, 550, 670, 985, 1600 and 2250 nm at super-pixel (4.5 km x 4.5 km) resolution are also provided. More information about the product and data processing can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/level-2-aod) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-synergy/products-algorithms/level-2-aod-algorithms-and-products).\\n\\nThis Collection contains Level-2 data in NetCDF files from April 2020 to present.\\n\",\"item_assets\":{\"ntc-aod\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN_440\",\"description\":\"OLCI channel Oa03\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"SYN_550\",\"description\":\"SLSTR nadir and oblique channel S1\",\"center_wavelength\":0.55,\"full_width_half_max\":0.02},{\"name\":\"SYN_670\",\"description\":\"SLSTR nadir and oblique channel S2\",\"center_wavelength\":0.659,\"full_width_half_max\":0.02},{\"name\":\"SYN_865\",\"description\":\"OLCI channel Oa17, SLSTR nadir and oblique channel S2\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"SYN_1600\",\"description\":\"SLSTR nadir and oblique channel S5\",\"center_wavelength\":1.61,\"full_width_half_max\":0.06},{\"name\":\"SYN_2250\",\"description\":\"SLSTR nadir and oblique channel S6\",\"center_wavelength\":2.25,\"full_width_half_max\":0.05}],\"description\":\"Global aerosol parameters\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 global aerosol and surface reflectance at super-pixel (4.5km) resolution (SYNERGY AOD).\"},{\"id\":\"sentinel-3-synergy-v10-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vg1-v10\",\"type\":\"text/html\",\"title\":\"Sentinel-3 10-Day Surface Reflectance and NDVI Product (SPOT VEGETATION) User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-synergy-v10-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-synergy-v10-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION) Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-synergy-v10-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-56.0,180.0,75.0]]},\"temporal\":{\"interval\":[[\"2018-09-27T11:17:21Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Reflectance\",\"NDVI\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"eo:bands\":[{\"name\":\"B0\",\"description\":\"OLCI channels Oa02, Oa03\",\"center_wavelength\":0.45,\"full_width_half_max\":0.02},{\"name\":\"B2\",\"description\":\"OLCI channels Oa06, Oa07, Oa08, Oa09, Oa10\",\"center_wavelength\":0.645,\"full_width_half_max\":0.035},{\"name\":\"B3\",\"description\":\"OLCI channels Oa16, Oa17, Oa18, Oa21\",\"center_wavelength\":0.835,\"full_width_half_max\":0.055},{\"name\":\"MIR\",\"description\":\"SLSTR nadir and oblique channels S5, S6\",\"center_wavelength\":1.665,\"full_width_half_max\":0.085}],\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"OLCI\",\"SLSTR\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"synergy-v10\"],\"s3:product_type\":[\"SY_2_V10___\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides the Sentinel-3 [Synergy Level-2 10-Day Surface Reflectance and NDVI](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vg1-v10) products, which are SPOT VEGETATION Continuity Products similar to those obtained from the [VEGETATION instrument](https://docs.terrascope.be/#/Satellites/SPOT-VGT/MissionInstruments) onboard the SPOT-4 and SPOT-5 satellites. The primary variables are a maximum Normalized Difference Vegetation Index (NDVI) composite, which is derived from ground reflectance during a 10-day window, and four surface reflectance bands:\\n\\n- B0 (Blue, 450nm)\\n- B2 (Red, 645nm)\\n- B3 (NIR, 835nm)\\n- MIR (SWIR, 1665nm)\\n\\nThe four reflectance bands have center wavelengths matching those on the original SPOT VEGETATION instrument. The NDVI variable, which is an indicator of the amount of vegetation, is derived from the B3 and B2 bands.\\n\\n## Data files\\n\\nThe four reflectance bands and NDVI values are each contained in dedicated NetCDF files. Additional metadata are delivered in annotation NetCDF files, each containing a single variable, including the geometric viewing and illumination conditions, the total water vapour and ozone columns, and the aerosol optical depth.\\n\\nEach 10-day product is delivered as a set of 10 rectangular scenes:\\n\\n- AFRICA\\n- NORTH_AMERICA\\n- SOUTH_AMERICA\\n- CENTRAL_AMERICA\\n- NORTH_ASIA\\n- WEST_ASIA\\n- SOUTH_EAST_ASIA\\n- ASIAN_ISLANDS\\n- AUSTRALASIA\\n- EUROPE\\n\\nMore information about the product and data processing can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vg1-v10) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-synergy/vgt-s/v10-product).\\n\\nThis Collection contains Level-2 data in NetCDF files from September 2018 to present.\\n\",\"item_assets\":{\"ag\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Aerosol optical thickness data\"},\"b0\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B0\",\"description\":\"OLCI channels Oa02, Oa03\",\"center_wavelength\":0.45,\"full_width_half_max\":0.02}],\"description\":\"Surface Reflectance Data Set associated with VGT-B0 channel\"},\"b2\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B2\",\"description\":\"OLCI channels Oa06, Oa07, Oa08, Oa09, Oa10\",\"center_wavelength\":0.645,\"full_width_half_max\":0.035}],\"description\":\"Surface Reflectance Data Set associated with VGT-B2 channel\"},\"b3\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B3\",\"description\":\"OLCI channels Oa16, Oa17, Oa18, Oa21\",\"center_wavelength\":0.835,\"full_width_half_max\":0.055}],\"description\":\"Surface Reflectance Data Set associated with VGT-B3 channel\"},\"og\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Total Ozone column data\"},\"sm\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Status Map data\"},\"tg\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Synthesis time data\"},\"mir\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"MIR\",\"description\":\"SLSTR nadir and oblique channels S5, S6\",\"center_wavelength\":1.665,\"full_width_half_max\":0.085}],\"description\":\"Surface Reflectance Data Set associated with VGT-MIR channel\"},\"saa\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Solar azimuth angle data\"},\"sza\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Solar zenith angle data\"},\"vaa\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"View azimuth angle data\"},\"vza\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"View zenith angle data\"},\"wvg\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Total column Water vapour data\"},\"ndvi\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B2\",\"description\":\"OLCI channels Oa06, Oa07, Oa08, Oa09, Oa10\",\"center_wavelength\":0.645,\"full_width_half_max\":0.035},{\"name\":\"B3\",\"description\":\"OLCI channels Oa16, Oa17, Oa18, Oa21\",\"center_wavelength\":0.835,\"full_width_half_max\":0.055}],\"description\":\"Normalised difference vegetation index\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 10-day surface reflectance and NDVI (SYNERGY V10, a SPOT VEGETATION Continuity Product).\"},{\"id\":\"sentinel-3-olci-lfr-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-olci/product-types/level-2-land\",\"type\":\"text/html\",\"title\":\"Sentinel-3 Land (LRR and LFR) Product User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-olci-lfr-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 Land (Full Resolution)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-olci-lfr-l2-netcdf-thumb.png\",\"title\":\"Sentinel-5P Level-2 NetCDF Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-olci-lfr-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2016-04-25T11:33:47.368562Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"ESA\",\"Copernicus\",\"Sentinel\",\"Land\",\"Biomass\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"eo:bands\":[{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa11\",\"description\":\"Band 11 - Chlorophyll fluorescence baseline, red edge transition\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01},{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"Oa19\",\"description\":\"Band 19 - Water vapour absorption, vegetation monitoring (maximum REFLECTANCE)\",\"center_wavelength\":0.9,\"full_width_half_max\":0.01}],\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"OLCI\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"olci-lfr\"],\"s3:product_type\":[\"OL_2_LFR___\"],\"sat:orbit_state\":[\"descending\",\"ascending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This collection provides Sentinel-3 Full Resolution [OLCI Level-2 Land][olci-l2] products containing data on global vegetation, chlorophyll, and water vapor.\\n\\n## Data files\\n\\nThis dataset includes data on three primary variables:\\n\\n* OLCI global vegetation index file\\n* terrestrial Chlorophyll index file\\n* integrated water vapor over water file.\\n\\nEach variable is contained within a separate NetCDF file, and is cataloged as an asset in each Item.\\n\\nSeveral associated variables are also provided in the annotations data files:\\n\\n* rectified reflectance for red and NIR channels (RC681 and RC865)\\n* classification, quality and science flags (LQSF)\\n* common data such as the ortho-geolocation of land pixels, solar and satellite angles, atmospheric and meteorological data, time stamp or instrument information. These variables are inherited from Level-1B products.\\n\\nThis full resolution product offers a spatial sampling of approximately 300 m.\\n\\n## Processing overview\\n\\nThe values in the data files have been converted from Top of Atmosphere radiance to reflectance, and include various corrections for gaseous absorption and pixel classification. More information about the product and data processing can be found in the [User Guide](https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-olci/product-types/level-2-land) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-olci/level-2/processing).\\n\\nThis Collection contains Level-2 data in NetCDF files from April 2016 to present.\\n\\n[olci-l2]: https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-olci/level-2/land-products\\n\",\"item_assets\":{\"iwv\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"Oa19\",\"description\":\"Band 19 - Water vapour absorption, vegetation monitoring (maximum REFLECTANCE)\",\"center_wavelength\":0.9,\"full_width_half_max\":0.01}],\"description\":\"Integrated water vapour column\"},\"lqsf\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Land quality and science flags\"},\"ogvi\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02}],\"description\":\"OLCI Global Vegetation Index (OGVI)\"},\"otci\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa11\",\"description\":\"Band 11 - Chlorophyll fluorescence baseline, red edge transition\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01},{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075}],\"description\":\"OLCI Terrestrial Chlorophyll Index (OTCI)\"},\"gifapar\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02}],\"description\":\"Green instantaneous Fraction of Absorbed Photosynthetically Active Radiation (FAPAR)\"},\"rc-ogvi\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02}],\"description\":\"Rectified reflectance\"},\"tie-meteo\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Tie-point meteo annotations\"},\"rc-gifapar\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Rectified reflectance\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"},\"tie-geometries\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Tie-point geometry annotations\"},\"geo-coordinates\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Geo coordinate annotations\"},\"instrument-data\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Instrument annotations\"},\"time-coordinates\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Time coordinate annotations\"},\"tie-geo-coordinates\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Tie-point geo coordinate annotations\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 Land Full Resolution vegetation index, chlorophyll index, and water vapor (OLCI LFR).\"},{\"id\":\"sentinel-3-sral-lan-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-altimetry/product-types\",\"type\":\"text/html\",\"title\":\"Sentinel-3 Land Radar Altimetry Product User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-sral-lan-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 Land Radar Altimetry\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-sral-lan-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 Land Radar Altimetry Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-sral-lan-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"QS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-81.5,180,81.5]]},\"temporal\":{\"interval\":[[\"2016-03-01T14:07:51.632846Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Radar\",\"Altimetry\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"SRAL\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"sral-lan\"],\"s3:product_type\":[\"SR_2_LAN___\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides Sentinel-3 [SRAL Level-2 Land Altimetry](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-altimetry/level-2-algorithms-products) products, which contain data on land radar altimetry measurements. Each product contains three NetCDF files:\\n\\n- A reduced data file containing a subset of the 1 Hz Ku-band parameters.\\n- A standard data file containing the standard 1 Hz and 20 Hz Ku- and C-band parameters.\\n- An enhanced data file containing the standard 1 Hz and 20 Hz Ku- and C-band parameters along with the waveforms and parameters necessary to reprocess the data.\\n\\nMore information about the product and data processing can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-altimetry/overview) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-altimetry).\\n\\nThis Collection contains Level-2 data in NetCDF files from March 2016 to present.\\n\",\"item_assets\":{\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"},\"reduced-measurement\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Reduced measurement data file\",\"s3:altimetry_bands\":[{\"band_width\":0.32,\"description\":\"Band Ku - Range measurements\",\"frequency_band\":\"Ku\",\"center_frequency\":13.575000064}]},\"enhanced-measurement\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Enhanced measurement data file\",\"s3:altimetry_bands\":[{\"band_width\":0.29,\"description\":\"Band C - Ionospheric correction\",\"frequency_band\":\"C\",\"center_frequency\":5.409999872},{\"band_width\":0.32,\"description\":\"Band Ku - Range measurements\",\"frequency_band\":\"Ku\",\"center_frequency\":13.575000064}]},\"standard-measurement\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Standard measurement data file\",\"s3:altimetry_bands\":[{\"band_width\":0.29,\"description\":\"Band C - Ionospheric correction\",\"frequency_band\":\"C\",\"center_frequency\":5.409999872},{\"band_width\":0.32,\"description\":\"Band Ku - Range measurements\",\"frequency_band\":\"Ku\",\"center_frequency\":13.575000064}]}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 radar altimetry over land (SRAL LAN).\"},{\"id\":\"sentinel-3-slstr-lst-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-slstr/product-types/level-2-lst\",\"type\":\"text/html\",\"title\":\"Sentinel-3 Land Surface Temperature Product User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-slstr-lst-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 Land Surface Temperature\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-slstr-lst-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 Land Surface Temperature Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-slstr-lst-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"W\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2016-04-19T01:35:17.188500Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Temperature\",\"Land\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"eo:bands\":[{\"name\":\"S8\",\"description\":\"Band 8 - SST, LST, Active fire\",\"center_wavelength\":10.854,\"full_width_half_max\":0.776},{\"name\":\"S9\",\"description\":\"Band 9 - SST, LST\",\"center_wavelength\":12.0225,\"full_width_half_max\":0.905}],\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"SLSTR\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"slstr-lst\"],\"s3:product_type\":[\"SL_2_LST___\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides Sentinel-3 [SLSTR Level-2 Land Surface Temperature](https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-slstr/product-types/level-2-lst) products containing data on land surface temperature measurements on a 1km grid. Radiance is measured in two channels to determine the temperature of the Earth's surface skin in the instrument field of view, where the term \\\"skin\\\" refers to the top surface of bare soil or the effective emitting temperature of vegetation canopies as viewed from above.\\n\\n## Data files\\n\\nThe dataset includes data on the primary measurement variable, land surface temperature, in a single NetCDF file, `LST_in.nc`. A second file, `LST_ancillary.nc`, contains several ancillary variables:\\n\\n- Normalized Difference Vegetation Index\\n- Surface biome classification\\n- Fractional vegetation cover\\n- Total water vapor column\\n\\nIn addition to the primary and ancillary data files, a standard set of annotation data files provide meteorological information, geolocation and time coordinates, geometry information, and quality flags. More information about the product and data processing can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-slstr/product-types/level-2-lst) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-slstr/level-2/lst-processing).\\n\\nThis Collection contains Level-2 data in NetCDF files from April 2016 to present.\\n\\n## STAC Item geometries\\n\\nThe Collection contains small \\\"chips\\\" and long \\\"stripes\\\" of data collected along the satellite direction of travel. Approximately five percent of the STAC Items describing long stripes of data contain geometries that encompass a larger area than an exact concave hull of the data extents. This may require additional filtering when searching the Collection for Items that spatially intersect an area of interest.\\n\",\"item_assets\":{\"lst-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"S8\",\"description\":\"Band 8 - SST, LST, Active fire\",\"center_wavelength\":10.854,\"full_width_half_max\":0.776},{\"name\":\"S9\",\"description\":\"Band 9 - SST, LST\",\"center_wavelength\":12.0225,\"full_width_half_max\":0.905}],\"description\":\"Land Surface Temperature (LST) values\"},\"slstr-met-tx\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Meteorological parameters regridded onto the 16km tie points\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"},\"slstr-time-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Time annotations for the 1km grid\"},\"slstr-flags-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Global flags for the 1km TIR grid, nadir view\"},\"lst-ancillary-ds\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"LST ancillary measurement dataset\"},\"slstr-indices-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Scan, pixel and detector indices annotations for the 1km TIR grid, nadir view\"},\"slstr-geodetic-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Full resolution geodetic coordinates for the 1km TIR grid, nadir view\"},\"slstr-geodetic-tx\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"16km geodetic coordinates\"},\"slstr-geometry-tn\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"16km solar and satellite geometry annotations, nadir view\"},\"slstr-cartesian-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Full resolution cartesian coordinates for the 1km TIR grid, nadir view\"},\"slstr-cartesian-tx\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"16km cartesian coordinates\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 land surface temperature (SLSTR LST).\"},{\"id\":\"sentinel-3-slstr-wst-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-slstr/product-types/level-2-wst\",\"type\":\"text/html\",\"title\":\"Sentinel-3 Sea Surface Temperature Product User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-slstr-wst-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 Sea Surface Temperature\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-slstr-wst-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 Sea Surface Temperature Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-slstr-wst-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2017-10-31T23:59:57.451604Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Temperature\",\"Ocean\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"eo:bands\":[{\"name\":\"S7\",\"description\":\"Band 7 - SST, LST, Active fire\",\"center_wavelength\":3.742,\"full_width_half_max\":0.398},{\"name\":\"S8\",\"description\":\"Band 8 - SST, LST, Active fire\",\"center_wavelength\":10.854,\"full_width_half_max\":0.776},{\"name\":\"S9\",\"description\":\"Band 9 - SST, LST\",\"center_wavelength\":12.0225,\"full_width_half_max\":0.905}],\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"SLSTR\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"slstr-wst\"],\"s3:product_type\":[\"SL_2_WST___\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides Sentinel-3 [SLSTR Level-2 Water Surface Temperature](https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-slstr/product-types/level-2-wst) products containing data on sea surface temperature measurements on a 1km grid. Each product consists of a single NetCDF file containing all data variables:\\n\\n- Sea Surface Temperature (SST) value\\n- SST total uncertainty\\n- Latitude and longitude coordinates\\n- SST time deviation\\n- Single Sensor Error Statistic (SSES) bias and standard deviation estimate\\n- Contextual parameters such as wind speed at 10 m and fractional sea-ice contamination\\n- Quality flag\\n- Satellite zenith angle\\n- Top Of Atmosphere (TOA) Brightness Temperature (BT)\\n- TOA noise equivalent BT\\n\\nMore information about the product and data processing can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-slstr/product-types/level-2-wst) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-slstr/level-2/sst-processing).\\n\\nThis Collection contains Level-2 data in NetCDF files from October 2017 to present.\\n\",\"item_assets\":{\"l2p\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"S7\",\"description\":\"Band 7 - SST, LST, Active fire\",\"center_wavelength\":3.742,\"full_width_half_max\":0.398},{\"name\":\"S8\",\"description\":\"Band 8 - SST, LST, Active fire\",\"center_wavelength\":10.854,\"full_width_half_max\":0.776},{\"name\":\"S9\",\"description\":\"Band 9 - SST, LST\",\"center_wavelength\":12.0225,\"full_width_half_max\":0.905}],\"description\":\"Skin Sea Surface Temperature (SST) values\"},\"browse-jpg\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"description\":\"Preview image produced by the European Organisation for the Exploitation of Meteorological Satellites (EUMETSAT)\"},\"eop-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"Metadata produced by the European Organisation for the Exploitation of Meteorological Satellites (EUMETSAT)\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 sea surface temperature (SLSTR WST).\"},{\"id\":\"sentinel-3-sral-wat-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-altimetry/product-types\",\"type\":\"text/html\",\"title\":\"Sentinel-3 Ocean Radar Altimetry Product User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-sral-wat-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 Ocean Radar Altimetry\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-sral-wat-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 Ocean Radar Altimetry Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-sral-wat-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"QS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-81.5,180,81.5]]},\"temporal\":{\"interval\":[[\"2017-01-28T00:59:14.149496Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Radar\",\"Altimetry\",\"Ocean\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"SRAL\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"sral-wat\"],\"s3:product_type\":[\"SR_2_WAT___\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides Sentinel-3 [SRAL Level-2 Ocean Altimetry](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-altimetry/level-2-algorithms-products) products, which contain data on ocean radar altimetry measurements. Each product contains three NetCDF files:\\n\\n- A reduced data file containing a subset of the 1 Hz Ku-band parameters.\\n- A standard data file containing the standard 1 Hz and 20 Hz Ku- and C-band parameters.\\n- An enhanced data file containing the standard 1 Hz and 20 Hz Ku- and C-band parameters along with the waveforms and parameters necessary to reprocess the data.\\n\\nMore information about the product and data processing can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-altimetry/overview) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-altimetry).\\n\\nThis Collection contains Level-2 data in NetCDF files from January 2017 to present.\\n\",\"item_assets\":{\"eop-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"Product metadata file produced by the European Organisation for the Exploitation of Meteorological Satellites (EUMETSAT)\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"},\"reduced-measurement\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Reduced measurement data file\",\"s3:altimetry_bands\":[{\"band_width\":0.32,\"description\":\"Band Ku - Range measurements\",\"frequency_band\":\"Ku\",\"center_frequency\":13.575000064}]},\"enhanced-measurement\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Enhanced measurement data file\",\"s3:altimetry_bands\":[{\"band_width\":0.29,\"description\":\"Band C - Ionospheric correction\",\"frequency_band\":\"C\",\"center_frequency\":5.409999872},{\"band_width\":0.32,\"description\":\"Band Ku - Range measurements\",\"frequency_band\":\"Ku\",\"center_frequency\":13.575000064}]},\"standard-measurement\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Standard measurement data file\",\"s3:altimetry_bands\":[{\"band_width\":0.29,\"description\":\"Band C - Ionospheric correction\",\"frequency_band\":\"C\",\"center_frequency\":5.409999872},{\"band_width\":0.32,\"description\":\"Band Ku - Range measurements\",\"frequency_band\":\"Ku\",\"center_frequency\":13.575000064}]}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 radar altimetry over ocean (SRAL WAT).\"},{\"id\":\"hls2-s30\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/hls2-s30\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/hls2-s30.webp\",\"type\":\"image/webp\",\"title\":\"HLS2 Sentinel Collection Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/hls2-s30.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"W-MON\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2020-01-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Landsat\",\"HLS\",\"Satellite\",\"Global\",\"Imagery\"],\"providers\":[{\"url\":\"https://www.esa.int/Applications/Observing_the_Earth/Copernicus/Sentinel-2\",\"name\":\"ESA\",\"roles\":[\"producer\"]},{\"url\":\"https://doi.org/10.5067/HLS/HLSL30.002\",\"name\":\"LP DAAC\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[30],\"platform\":[\"Sentinel-2A\",\"Sentinel-2B\",\"Sentinel-2C\"]},\"description\":\"Harmonized Landsat Sentinel-2 (HLS) Version 2.0 provides consistent surface reflectance (SR)\\nand top of atmosphere (TOA) brightness data from the Operational Land Imager (OLI) aboard the\\njoint NASA/USGS Landsat 8 and Landsat 9 satellites and the Multi-Spectral Instrument (MSI)\\naboard the ESA (European Space Agency) Sentinel-2A, Sentinel-2B, and Sentinel-2C satellites.\\nThe combined measurement enables global observations of the land every 2-3 days at 30 meter\\n(m) spatial resolution. The HLS-S30 and HLS-L30 products are gridded to the same resolution and\\nMilitary Grid Reference System (MGRS) tiling system and are \\\"stackable\\\" for time series analysis.\\nThis dataset is in the form of cloud-optimized GeoTIFFs. The HLS v2.0 data is generated by NASA's\\nIMPACT team at Marshall Space Flight Center. The product latency is 1.7 days, from the satellite\\noverpass to the HLS data availability at NASA's Land Processes Distributed Active Archive Center\\n(LP DAAC). For more information see LP DAAC's\\n[HLS Overview](https://lpdaac.usgs.gov/data/get-started-data/collection-overview/missions/harmonized-landsat-sentinel-2-hls-overview/).\\n\\nThis collection contains HLS data collected from Sentinel-2A, Sentinel-2B, and Sentinel-2C.\\nHLS data generated from Landsat can be found in a separate collection.\\n\",\"item_assets\":{\"B01\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Coastal Aerosol\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.4439,\"full_width_half_max\":0.027}]},\"B02\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Blue\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.4966,\"full_width_half_max\":0.098}]},\"B03\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Green\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}]},\"B04\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Red\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.6645,\"full_width_half_max\":0.038}]},\"B05\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Red-Edge 1\",\"eo:bands\":[{\"name\":\"B05\",\"center_wavelength\":0.7039,\"full_width_half_max\":0.019}]},\"B06\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Red-Edge 2\",\"eo:bands\":[{\"name\":\"B06\",\"center_wavelength\":0.7402,\"full_width_half_max\":0.018}]},\"B07\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Red-Edge 3\",\"eo:bands\":[{\"name\":\"B07\",\"center_wavelength\":0.7825,\"full_width_half_max\":0.028}]},\"B08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"NIR Broad\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.8351,\"full_width_half_max\":0.145}]},\"B09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water Vapor\",\"eo:bands\":[{\"name\":\"B09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}]},\"B10\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Cirrus\",\"eo:bands\":[{\"name\":\"B10\",\"common_name\":\"cirrus\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075}]},\"B11\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR 1\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.6137,\"full_width_half_max\":0.143}]},\"B12\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR 2\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.22024,\"full_width_half_max\":0.242}]},\"B8A\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"NIR Narrow\",\"eo:bands\":[{\"name\":\"B8A\",\"center_wavelength\":0.8648,\"full_width_half_max\":0.033}]},\"SAA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SAA\",\"eo:bands\":[{\"name\":\"SAA\"}]},\"SZA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SZA\",\"eo:bands\":[{\"name\":\"SZA\"}]},\"VAA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VAA\",\"eo:bands\":[{\"name\":\"VAA\"}]},\"VZA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VZA\",\"eo:bands\":[{\"name\":\"VZA\"}]},\"Fmask\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Fmask\",\"eo:bands\":[{\"name\":\"Fmask\"}]}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"hls2\",\"msft:container\":\"hls2\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\"msft:storage_account\":\"hls2euwest\",\"msft:short_description\":\"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data\"},{\"id\":\"ms-buildings\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"license\",\"href\":\"https://github.com/microsoft/GlobalMLBuildingFootprints/blob/main/LICENSE\",\"type\":\"text/html\",\"title\":\"ODbL-1.0 License\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/ms-buildings\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Microsoft Building Footprints\",\"assets\":{\"delta\":{\"href\":\"az://footprints/delta/2023-04-25/ml-buildings.parquet/\",\"title\":\"Delta table\",\"description\":\"Delta table with latest buildings footprints partitioned by Region and quadkey.\",\"table:storage_options\":{\"account_name\":\"bingmlbuildings\"}},\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/msbuildings-thumbnail.png\",\"type\":\"image/png\",\"title\":\"Thumbnail\"},\"global-footprints\":{\"title\":\"Global Bing ML building footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/vector/collections/ms-buildings/tilesets/global-footprints/tilejson.json\",\"type\":\"application/json\",\"roles\":[\"tiles\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,90.0,180.0,-90.0]]},\"temporal\":{\"interval\":[[\"2014-01-01T00:00:00Z\",null]]}},\"license\":\"ODbL-1.0\",\"keywords\":[\"Bing Maps\",\"Buildings\",\"geoparquet\",\"Microsoft\",\"Footprint\",\"Delta\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"producer\",\"processor\",\"host\"]}],\"summaries\":{\"msbuildings:processing-date\":[\"2023-04-25\"]},\"description\":\"Bing Maps is releasing open building footprints around the world. We have detected over 999 million buildings from Bing Maps imagery between 2014 and 2021 including Maxar and Airbus imagery. The data is freely available for download and use under ODbL. This dataset complements our other releases.\\n\\nFor more information, see the [GlobalMLBuildingFootprints](https://github.com/microsoft/GlobalMLBuildingFootprints/) repository on GitHub.\\n\\n## Building footprint creation\\n\\nThe building extraction is done in two stages:\\n\\n1. Semantic Segmentation \u2013 Recognizing building pixels on an aerial image using deep neural networks (DNNs)\\n2. Polygonization \u2013 Converting building pixel detections into polygons\\n\\n**Stage 1: Semantic Segmentation**\\n\\n![Semantic segmentation](https://raw.githubusercontent.com/microsoft/GlobalMLBuildingFootprints/main/images/segmentation.jpg)\\n\\n**Stage 2: Polygonization**\\n\\n![Polygonization](https://github.com/microsoft/GlobalMLBuildingFootprints/raw/main/images/polygonization.jpg)\\n\\n## Data assets\\n\\nThe building footprints are provided as a set of [geoparquet](https://github.com/opengeospatial/geoparquet) datasets in [Delta][delta] table format.\\nThe data are partitioned by\\n\\n1. Region\\n2. quadkey at [Bing Map Tiles][tiles] level 9\\n\\nEach `(Region, quadkey)` pair will have one or more geoparquet files, depending on the density of the of the buildings in that area.\\n\\nNote that older items in this dataset are *not* spatially partitioned. We recommend using data with a processing date\\nof 2023-04-25 or newer. This processing date is part of the URL for each parquet file and is captured in the STAC metadata\\nfor each item (see below).\\n\\n## Delta Format\\n\\nThe collection-level asset under the `delta` key gives you the fsspec-style URL\\nto the Delta table. This can be used to efficiently query for matching partitions\\nby `Region` and `quadkey`. See the notebook for an example using Python.\\n\\n## STAC metadata\\n\\nThis STAC collection has one STAC item per region. The `msbuildings:region`\\nproperty can be used to filter items to a specific region, and the `msbuildings:quadkey`\\nproperty can be used to filter items to a specific quadkey (though you can also search\\nby the `geometry`).\\n\\nNote that older STAC items are not spatially partitioned. We recommend filtering on\\nitems with an `msbuildings:processing-date` of `2023-04-25` or newer. See the collection\\nsummary for `msbuildings:processing-date` for a list of valid values.\\n\\n[delta]: https://delta.io/\\n[tiles]: https://learn.microsoft.com/en-us/bingmaps/articles/bing-maps-tile-system\\n\",\"item_assets\":{\"data\":{\"type\":\"application/x-parquet\",\"roles\":[\"data\"],\"title\":\"Building Footprints\",\"description\":\"Parquet dataset with the building footprints for this region.\",\"table:storage_options\":{\"account_name\":\"bingmlbuildings\"}}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"table:columns\":[{\"name\":\"geometry\",\"type\":\"byte_array\",\"description\":\"Building footprint polygons\"}],\"msft:container\":\"footprints\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"bingmlbuildings\",\"msft:short_description\":\"Machine learning detected buildings footprints.\"},{\"id\":\"sentinel-3-slstr-frp-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-slstr/product-types/level-2-frp\",\"type\":\"text/html\",\"title\":\"Sentinel-3 Fire Radiative Power Product User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-slstr-frp-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 Fire Radiative Power\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-slstr-frp-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 Fire Radiative Power Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-slstr-frp-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"W\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2020-08-08T23:11:15.617203Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Temperature\",\"Fire\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"eo:bands\":[{\"name\":\"F1\",\"description\":\"Band 10 - Active fire\",\"center_wavelength\":3.742,\"full_width_half_max\":0.398},{\"name\":\"S5\",\"description\":\"Band 5 - Cloud clearing, ice, snow, vegetation monitoring\",\"center_wavelength\":1.6134,\"full_width_half_max\":0.06068},{\"name\":\"S6\",\"description\":\"Band 6 - Vegetation state and cloud clearing\",\"center_wavelength\":2.2557,\"full_width_half_max\":0.05015},{\"name\":\"S7\",\"description\":\"Band 7 - SST, LST, Active fire\",\"center_wavelength\":3.742,\"full_width_half_max\":0.398}],\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"SLSTR\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"slstr-frp\"],\"s3:product_type\":[\"SL_2_FRP___\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides Sentinel-3 [SLSTR Level-2 Fire Radiative Power](https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-slstr/product-types/level-2-frp) (FRP) products containing data on fires detected over land and ocean.\\n\\n## Data files\\n\\nThe primary measurement data is contained in the `FRP_in.nc` file and provides FRP and uncertainties, projected onto a 1km grid, for fires detected in the thermal infrared (TIR) spectrum over land. Since February 2022, FRP and uncertainties are also provided for fires detected in the short wave infrared (SWIR) spectrum over both land and ocean, with the delivered data projected onto a 500m grid. The latter SWIR-detected fire data is only available for night-time measurements and is contained in the `FRP_an.nc` or `FRP_bn.nc` files.\\n\\nIn addition to the measurement data files, a standard set of annotation data files provide meteorological information, geolocation and time coordinates, geometry information, and quality flags.\\n\\n## Processing\\n\\nThe TIR fire detection is based on measurements from the S7 and F1 bands of the [SLSTR instrument](https://sentinels.copernicus.eu/web/sentinel/technical-guides/sentinel-3-slstr/instrument); SWIR fire detection is based on the S5 and S6 bands. More information about the product and data processing can be found in the [User Guide](https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-slstr/product-types/level-2-frp) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-slstr/level-2/frp-processing).\\n\\nThis Collection contains Level-2 data in NetCDF files from August 2020 to present.\\n\",\"item_assets\":{\"frp-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"S5\",\"description\":\"Band 5 - Cloud clearing, ice, snow, vegetation monitoring\",\"center_wavelength\":1.6134,\"full_width_half_max\":0.06068},{\"name\":\"S6\",\"description\":\"Band 6 - Vegetation state and cloud clearing\",\"center_wavelength\":2.2557,\"full_width_half_max\":0.05015},{\"name\":\"S7\",\"description\":\"Band 7 - SST, LST, Active fire\",\"center_wavelength\":3.742,\"full_width_half_max\":0.398},{\"name\":\"F1\",\"description\":\"Band 10 - Active fire\",\"center_wavelength\":3.742,\"full_width_half_max\":0.398}],\"description\":\"Fire Radiative Power (FRP) dataset\"},\"slstr-met-tx\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Meteorological parameters regridded onto the 16km tie points\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"},\"slstr-time-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Time annotations for the 1 KM grid\"},\"slstr-flags-fn\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Global flags for the 1km F1 grid, nadir view\"},\"slstr-flags-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Global flags for the 1km TIR grid, nadir view\"},\"slstr-indices-fn\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Scan, pixel and detector annotations for the 1km F1 grid, nadir view\"},\"slstr-indices-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Scan, pixel and detector annotations for the 1km TIR grid, nadir view\"},\"slstr-geodetic-fn\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Full resolution geodetic coordinates for the 1km F1 grid, nadir view\"},\"slstr-geodetic-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Full resolution geodetic coordinates for the 1km TIR grid, nadir view\"},\"slstr-geodetic-tx\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"16km geodetic coordinates\"},\"slstr-geometry-tn\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"16km solar and satellite geometry annotations, nadir view\"},\"slstr-cartesian-fn\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Full resolution cartesian coordinates for the 1km F1 grid, nadir view\"},\"slstr-cartesian-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Full resolution cartesian coordinates for the 1km TIR grid, nadir view\"},\"slstr-cartesian-tx\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"16km cartesian coordinates\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 fire detection over land (SLSTR FRP).\"},{\"id\":\"sentinel-3-synergy-syn-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-syn\",\"type\":\"text/html\",\"title\":\"Sentinel-3 Land Surface Reflectance and Aerosol Product User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-synergy-syn-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 Land Surface Reflectance and Aerosol\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-synergy-syn-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 Land Surface Reflectance and Aerosol Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-synergy-syn-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"W\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2018-09-22T16:51:00.001276Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Land\",\"Reflectance\",\"Aerosol\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"eo:bands\":[{\"name\":\"Oa01\",\"description\":\"Band 1 - Aerosol correction, improved water constituent retrieval\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015},{\"name\":\"Oa02\",\"description\":\"Band 2 - Yellow substance and detrital pigments (turbidity)\",\"center_wavelength\":0.4125,\"full_width_half_max\":0.01},{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa04\",\"description\":\"Band 4 - Chlorophyll\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01},{\"name\":\"Oa05\",\"description\":\"Band 5 - Chlorophyll, sediment, turbidity, red tide\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01},{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01},{\"name\":\"Oa07\",\"description\":\"Band 7 - Sediment loading\",\"center_wavelength\":0.62,\"full_width_half_max\":0.01},{\"name\":\"Oa08\",\"description\":\"Band 8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\",\"center_wavelength\":0.665,\"full_width_half_max\":0.01},{\"name\":\"Oa09\",\"description\":\"Band 9 - Improved fluorescence retrieval\",\"center_wavelength\":0.67375,\"full_width_half_max\":0.0075},{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa11\",\"description\":\"Band 11 - Chlorophyll fluorescence baseline, red edge transition\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01},{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075},{\"name\":\"Oa13\",\"description\":\"Band 13 - O2 absorption / aerosol correction\",\"center_wavelength\":0.76125,\"full_width_half_max\":0.0025},{\"name\":\"Oa16\",\"description\":\"Band 16 - Atmospheric / aerosol correction\",\"center_wavelength\":0.77875,\"full_width_half_max\":0.015},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"Oa19\",\"description\":\"Band 19 - Water vapour absorption, vegetation monitoring (maximum REFLECTANCE)\",\"center_wavelength\":0.9,\"full_width_half_max\":0.01},{\"name\":\"Oa21\",\"description\":\"Band 21 - Water vapour absorption, atmospheric / aerosol correction\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04},{\"name\":\"S1\",\"description\":\"Band 1 - Cloud screening, vegetation monitoring, aerosol\",\"center_wavelength\":0.55427,\"full_width_half_max\":0.01926},{\"name\":\"S2\",\"description\":\"Band 2 - NDVI, vegetation monitoring, aerosol\",\"center_wavelength\":0.65947,\"full_width_half_max\":0.01925},{\"name\":\"S3\",\"description\":\"Band 3 - NDVI, cloud flagging, pixel co-registration\",\"center_wavelength\":0.868,\"full_width_half_max\":0.0206},{\"name\":\"S4\",\"description\":\"Band 4 - Cirrus detection over land\",\"center_wavelength\":1.3748,\"full_width_half_max\":0.0208},{\"name\":\"S5\",\"description\":\"Band 5 - Cloud clearing, ice, snow, vegetation monitoring\",\"center_wavelength\":1.6134,\"full_width_half_max\":0.06068},{\"name\":\"S6\",\"description\":\"Band 6 - Vegetation state and cloud clearing\",\"center_wavelength\":2.2557,\"full_width_half_max\":0.05015},{\"name\":\"SYN01\",\"description\":\"OLCI channel Oa01\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015},{\"name\":\"SYN02\",\"description\":\"OLCI channel Oa02\",\"center_wavelength\":0.4125,\"full_width_half_max\":0.01},{\"name\":\"SYN03\",\"description\":\"OLCI channel Oa03\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"SYN04\",\"description\":\"OLCI channel Oa04\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01},{\"name\":\"SYN05\",\"description\":\"OLCI channel Oa05\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01},{\"name\":\"SYN06\",\"description\":\"OLCI channel Oa06\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01},{\"name\":\"SYN07\",\"description\":\"OLCI channel Oa07\",\"center_wavelength\":0.62,\"full_width_half_max\":0.01},{\"name\":\"SYN08\",\"description\":\"OLCI channel Oa08\",\"center_wavelength\":0.665,\"full_width_half_max\":0.01},{\"name\":\"SYN09\",\"description\":\"OLCI channel Oa09\",\"center_wavelength\":0.67375,\"full_width_half_max\":0.0075},{\"name\":\"SYN10\",\"description\":\"OLCI channel Oa10\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"SYN11\",\"description\":\"OLCI channel Oa11\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01},{\"name\":\"SYN12\",\"description\":\"OLCI channel Oa12\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075},{\"name\":\"SYN13\",\"description\":\"OLCI channel Oa16\",\"center_wavelength\":0.7785,\"full_width_half_max\":0.015},{\"name\":\"SYN14\",\"description\":\"OLCI channel Oa17\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"SYN15\",\"description\":\"OLCI channel Oa18\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"SYN16\",\"description\":\"OLCI channel Oa21\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04},{\"name\":\"SYN17\",\"description\":\"SLSTR nadir channel S1\",\"center_wavelength\":0.555,\"full_width_half_max\":0.02},{\"name\":\"SYN18\",\"description\":\"SLSTR nadir channel S2\",\"center_wavelength\":0.659,\"full_width_half_max\":0.02},{\"name\":\"SYN19\",\"description\":\"SLSTR nadir channel S3\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"SYN20\",\"description\":\"SLSTR nadir channel S5\",\"center_wavelength\":1.61,\"full_width_half_max\":0.06},{\"name\":\"SYN21\",\"description\":\"SLSTR nadir channel S6\",\"center_wavelength\":2.25,\"full_width_half_max\":0.05},{\"name\":\"SYN22\",\"description\":\"SLSTR oblique channel S1\",\"center_wavelength\":0.555,\"full_width_half_max\":0.02},{\"name\":\"SYN23\",\"description\":\"SLSTR oblique channel S2\",\"center_wavelength\":0.659,\"full_width_half_max\":0.02},{\"name\":\"SYN24\",\"description\":\"SLSTR oblique channel S3\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"SYN25\",\"description\":\"SLSTR oblique channel S5\",\"center_wavelength\":1.61,\"full_width_half_max\":0.06},{\"name\":\"SYN26\",\"description\":\"SLSTR oblique channel S6\",\"center_wavelength\":2.25,\"full_width_half_max\":0.05}],\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"OLCI\",\"SLSTR\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"synergy-syn\"],\"s3:product_type\":[\"SY_2_SYN___\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides the Sentinel-3 [Synergy Level-2 Land Surface Reflectance and Aerosol](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-syn) product, which contains data on Surface Directional Reflectance, Aerosol Optical Thickness, and an Angstrom coefficient estimate over land.\\n\\n## Data Files\\n\\nIndividual NetCDF files for the following variables:\\n\\n- Surface Directional Reflectance (SDR) with their associated error estimates for the sun-reflective [SLSTR](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-slstr) channels (S1 to S6 for both nadir and oblique views, except S4) and for all [OLCI](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-olci) channels, except for the oxygen absorption bands Oa13, Oa14, Oa15, and the water vapor bands Oa19 and Oa20.\\n- Aerosol optical thickness at 550nm with error estimates.\\n- Angstrom coefficient at 550nm.\\n\\nMore information about the product and data processing can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-syn) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-synergy/level-2/syn-level-2-product).\\n\\nThis Collection contains Level-2 data in NetCDF files from September 2018 to present.\\n\",\"item_assets\":{\"time\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Time stamps annotation\"},\"syn-amin\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"L2 Aerosol model index number data\"},\"syn-flags\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Classification and quality Flags associated with OLCI, SLSTR and SYNERGY products\"},\"syn-ato550\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"S1\",\"description\":\"Band 1 - Cloud screening, vegetation monitoring, aerosol\",\"center_wavelength\":0.55427,\"full_width_half_max\":0.01926},{\"name\":\"S2\",\"description\":\"Band 2 - NDVI, vegetation monitoring, aerosol\",\"center_wavelength\":0.65947,\"full_width_half_max\":0.01925},{\"name\":\"S3\",\"description\":\"Band 3 - NDVI, cloud flagging, pixel co-registration\",\"center_wavelength\":0.868,\"full_width_half_max\":0.0206},{\"name\":\"S5\",\"description\":\"Band 5 - Cloud clearing, ice, snow, vegetation monitoring\",\"center_wavelength\":1.6134,\"full_width_half_max\":0.06068},{\"name\":\"S6\",\"description\":\"Band 6 - Vegetation state and cloud clearing\",\"center_wavelength\":2.2557,\"full_width_half_max\":0.05015},{\"name\":\"Oa01\",\"description\":\"Band 1 - Aerosol correction, improved water constituent retrieval\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015},{\"name\":\"Oa02\",\"description\":\"Band 2 - Yellow substance and detrital pigments (turbidity)\",\"center_wavelength\":0.4125,\"full_width_half_max\":0.01},{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa04\",\"description\":\"Band 4 - Chlorophyll\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01},{\"name\":\"Oa05\",\"description\":\"Band 5 - Chlorophyll, sediment, turbidity, red tide\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01},{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01},{\"name\":\"Oa07\",\"description\":\"Band 7 - Sediment loading\",\"center_wavelength\":0.62,\"full_width_half_max\":0.01},{\"name\":\"Oa08\",\"description\":\"Band 8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\",\"center_wavelength\":0.665,\"full_width_half_max\":0.01},{\"name\":\"Oa09\",\"description\":\"Band 9 - Improved fluorescence retrieval\",\"center_wavelength\":0.67375,\"full_width_half_max\":0.0075},{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa11\",\"description\":\"Band 11 - Chlorophyll fluorescence baseline, red edge transition\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01},{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075},{\"name\":\"Oa16\",\"description\":\"Band 16 - Atmospheric / aerosol correction\",\"center_wavelength\":0.77875,\"full_width_half_max\":0.015},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"Oa21\",\"description\":\"Band 21 - Water vapour absorption, atmospheric / aerosol correction\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04}],\"description\":\"Aerosol Optical Thickness Data Set\"},\"geolocation\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"High resolution georeferencing data\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"},\"tiepoints-olci\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Low resolution georeferencing data and Sun and View angles associated with OLCI products\"},\"tiepoints-meteo\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"ECMWF meteorology data\"},\"tiepoints-slstr-n\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Low resolution georeferencing data and Sun and View angles associated with SLSTR nadir view products\"},\"tiepoints-slstr-o\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Low resolution georeferencing data and Sun and View angles associated with SLSTR oblique view products\"},\"syn-angstrom-exp550\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"S1\",\"description\":\"Band 1 - Cloud screening, vegetation monitoring, aerosol\",\"center_wavelength\":0.55427,\"full_width_half_max\":0.01926},{\"name\":\"S2\",\"description\":\"Band 2 - NDVI, vegetation monitoring, aerosol\",\"center_wavelength\":0.65947,\"full_width_half_max\":0.01925},{\"name\":\"S3\",\"description\":\"Band 3 - NDVI, cloud flagging, pixel co-registration\",\"center_wavelength\":0.868,\"full_width_half_max\":0.0206},{\"name\":\"S5\",\"description\":\"Band 5 - Cloud clearing, ice, snow, vegetation monitoring\",\"center_wavelength\":1.6134,\"full_width_half_max\":0.06068},{\"name\":\"S6\",\"description\":\"Band 6 - Vegetation state and cloud clearing\",\"center_wavelength\":2.2557,\"full_width_half_max\":0.05015},{\"name\":\"Oa01\",\"description\":\"Band 1 - Aerosol correction, improved water constituent retrieval\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015},{\"name\":\"Oa02\",\"description\":\"Band 2 - Yellow substance and detrital pigments (turbidity)\",\"center_wavelength\":0.4125,\"full_width_half_max\":0.01},{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa04\",\"description\":\"Band 4 - Chlorophyll\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01},{\"name\":\"Oa05\",\"description\":\"Band 5 - Chlorophyll, sediment, turbidity, red tide\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01},{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01},{\"name\":\"Oa07\",\"description\":\"Band 7 - Sediment loading\",\"center_wavelength\":0.62,\"full_width_half_max\":0.01},{\"name\":\"Oa08\",\"description\":\"Band 8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\",\"center_wavelength\":0.665,\"full_width_half_max\":0.01},{\"name\":\"Oa09\",\"description\":\"Band 9 - Improved fluorescence retrieval\",\"center_wavelength\":0.67375,\"full_width_half_max\":0.0075},{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa11\",\"description\":\"Band 11 - Chlorophyll fluorescence baseline, red edge transition\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01},{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075},{\"name\":\"Oa16\",\"description\":\"Band 16 - Atmospheric / aerosol correction\",\"center_wavelength\":0.77875,\"full_width_half_max\":0.015},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"Oa21\",\"description\":\"Band 21 - Water vapour absorption, atmospheric / aerosol correction\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04}],\"description\":\"Aerosol Angstrom Exponent Data Set\"},\"syn-s1n-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN17\",\"description\":\"SLSTR nadir channel S1\",\"center_wavelength\":0.555,\"full_width_half_max\":0.02}],\"description\":\"Surface directional reflectance associated with SLSTR channel 01 acquired in nadir view\"},\"syn-s1o-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN22\",\"description\":\"SLSTR oblique channel S1\",\"center_wavelength\":0.555,\"full_width_half_max\":0.02}],\"description\":\"Surface directional reflectance associated with SLSTR channel 01 acquired in oblique view\"},\"syn-s2n-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN18\",\"description\":\"SLSTR nadir channel S2\",\"center_wavelength\":0.659,\"full_width_half_max\":0.02}],\"description\":\"Surface directional reflectance associated with SLSTR channel 02 acquired in nadir view\"},\"syn-s2o-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN23\",\"description\":\"SLSTR oblique channel S2\",\"center_wavelength\":0.659,\"full_width_half_max\":0.02}],\"description\":\"Surface directional reflectance associated with SLSTR channel 02 acquired in oblique view\"},\"syn-s3n-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN19\",\"description\":\"SLSTR nadir channel S3\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02}],\"description\":\"Surface directional reflectance associated with SLSTR channel 03 acquired in nadir view\"},\"syn-s3o-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN24\",\"description\":\"SLSTR oblique channel S3\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02}],\"description\":\"Surface directional reflectance associated with SLSTR channel 03 acquired in oblique view\"},\"syn-s5n-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN20\",\"description\":\"SLSTR nadir channel S5\",\"center_wavelength\":1.61,\"full_width_half_max\":0.06}],\"description\":\"Surface directional reflectance associated with SLSTR channel 05 acquired in nadir view\"},\"syn-s5o-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN25\",\"description\":\"SLSTR oblique channel S5\",\"center_wavelength\":1.61,\"full_width_half_max\":0.06}],\"description\":\"Surface directional reflectance associated with SLSTR channel 05 acquired in oblique view\"},\"syn-s6n-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN21\",\"description\":\"SLSTR nadir channel S6\",\"center_wavelength\":2.25,\"full_width_half_max\":0.05}],\"description\":\"Surface directional reflectance associated with SLSTR channel 06 acquired in nadir view\"},\"syn-s6o-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN26\",\"description\":\"SLSTR oblique channel S6\",\"center_wavelength\":2.25,\"full_width_half_max\":0.05}],\"description\":\"Surface directional reflectance associated with SLSTR channel 06 acquired in oblique view\"},\"syn-oa01-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN01\",\"description\":\"OLCI channel Oa01\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015}],\"description\":\"Surface directional reflectance associated with OLCI channel 01\"},\"syn-oa02-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN02\",\"description\":\"OLCI channel Oa02\",\"center_wavelength\":0.4125,\"full_width_half_max\":0.01}],\"description\":\"Surface directional reflectance associated with OLCI channel 02\"},\"syn-oa03-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN03\",\"description\":\"OLCI channel Oa03\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01}],\"description\":\"Surface directional reflectance associated with OLCI channel 03\"},\"syn-oa04-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN04\",\"description\":\"OLCI channel Oa04\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01}],\"description\":\"Surface directional reflectance associated with OLCI channel 04\"},\"syn-oa05-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN05\",\"description\":\"OLCI channel Oa05\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01}],\"description\":\"Surface directional reflectance associated with OLCI channel 05\"},\"syn-oa06-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN06\",\"description\":\"OLCI channel Oa06\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01}],\"description\":\"Surface directional reflectance associated with OLCI channel 06\"},\"syn-oa07-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN07\",\"description\":\"OLCI channel Oa07\",\"center_wavelength\":0.62,\"full_width_half_max\":0.01}],\"description\":\"Surface directional reflectance associated with OLCI channel 07\"},\"syn-oa08-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN08\",\"description\":\"OLCI channel Oa08\",\"center_wavelength\":0.665,\"full_width_half_max\":0.01}],\"description\":\"Surface directional reflectance associated with OLCI channel 08\"},\"syn-oa09-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN09\",\"description\":\"OLCI channel Oa09\",\"center_wavelength\":0.67375,\"full_width_half_max\":0.0075}],\"description\":\"Surface directional reflectance associated with OLCI channel 09\"},\"syn-oa10-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN10\",\"description\":\"OLCI channel Oa10\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075}],\"description\":\"Surface directional reflectance associated with OLCI channel 10\"},\"syn-oa11-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN11\",\"description\":\"OLCI channel Oa11\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01}],\"description\":\"Surface directional reflectance associated with OLCI channel 11\"},\"syn-oa12-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN12\",\"description\":\"OLCI channel Oa12\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075}],\"description\":\"Surface directional reflectance associated with OLCI channel 12\"},\"syn-oa16-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN13\",\"description\":\"OLCI channel Oa16\",\"center_wavelength\":0.7785,\"full_width_half_max\":0.015}],\"description\":\"Surface directional reflectance associated with OLCI channel 16\"},\"syn-oa17-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN14\",\"description\":\"OLCI channel Oa17\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02}],\"description\":\"Surface directional reflectance associated with OLCI channel 17\"},\"syn-oa18-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN15\",\"description\":\"OLCI channel Oa18\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01}],\"description\":\"Surface directional reflectance associated with OLCI channel 18\"},\"syn-oa21-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN16\",\"description\":\"OLCI channel Oa21\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04}],\"description\":\"Surface directional reflectance associated with OLCI channel 21\"},\"syn-sdr-removed-pixels\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"S1\",\"description\":\"Band 1 - Cloud screening, vegetation monitoring, aerosol\",\"center_wavelength\":0.55427,\"full_width_half_max\":0.01926},{\"name\":\"S2\",\"description\":\"Band 2 - NDVI, vegetation monitoring, aerosol\",\"center_wavelength\":0.65947,\"full_width_half_max\":0.01925},{\"name\":\"S3\",\"description\":\"Band 3 - NDVI, cloud flagging, pixel co-registration\",\"center_wavelength\":0.868,\"full_width_half_max\":0.0206},{\"name\":\"S4\",\"description\":\"Band 4 - Cirrus detection over land\",\"center_wavelength\":1.3748,\"full_width_half_max\":0.0208},{\"name\":\"S6\",\"description\":\"Band 6 - Vegetation state and cloud clearing\",\"center_wavelength\":2.2557,\"full_width_half_max\":0.05015},{\"name\":\"Oa01\",\"description\":\"Band 1 - Aerosol correction, improved water constituent retrieval\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015},{\"name\":\"Oa02\",\"description\":\"Band 2 - Yellow substance and detrital pigments (turbidity)\",\"center_wavelength\":0.4125,\"full_width_half_max\":0.01},{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa04\",\"description\":\"Band 4 - Chlorophyll\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01},{\"name\":\"Oa05\",\"description\":\"Band 5 - Chlorophyll, sediment, turbidity, red tide\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01},{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01},{\"name\":\"Oa07\",\"description\":\"Band 7 - Sediment loading\",\"center_wavelength\":0.62,\"full_width_half_max\":0.01},{\"name\":\"Oa08\",\"description\":\"Band 8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\",\"center_wavelength\":0.665,\"full_width_half_max\":0.01},{\"name\":\"Oa09\",\"description\":\"Band 9 - Improved fluorescence retrieval\",\"center_wavelength\":0.67375,\"full_width_half_max\":0.0075},{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa11\",\"description\":\"Band 11 - Chlorophyll fluorescence baseline, red edge transition\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01},{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075},{\"name\":\"Oa13\",\"description\":\"Band 13 - O2 absorption / aerosol correction\",\"center_wavelength\":0.76125,\"full_width_half_max\":0.0025},{\"name\":\"Oa16\",\"description\":\"Band 16 - Atmospheric / aerosol correction\",\"center_wavelength\":0.77875,\"full_width_half_max\":0.015},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"Oa19\",\"description\":\"Band 19 - Water vapour absorption, vegetation monitoring (maximum REFLECTANCE)\",\"center_wavelength\":0.9,\"full_width_half_max\":0.01},{\"name\":\"Oa21\",\"description\":\"Band 21 - Water vapour absorption, atmospheric / aerosol correction\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04}],\"description\":\"Surface directional reflectance and aerosol parameters associated with removed pixel\"},\"annotations-removed-pixels\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Annotations parameters associated with removed pixel\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 surface reflectance and aerosol over land (SYNERGY SYN).\"},{\"id\":\"sentinel-3-synergy-vgp-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vgp\",\"type\":\"text/html\",\"title\":\"Sentinel-3 Top of Atmosphere Reflectance Product (SPOT VEGETATION) User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-synergy-vgp-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-synergy-vgp-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION) Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-synergy-vgp-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"QS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2018-10-08T08:09:40.491227Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Reflectance\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"eo:bands\":[{\"name\":\"B0\",\"description\":\"OLCI channels Oa02, Oa03\",\"center_wavelength\":0.45,\"full_width_half_max\":0.02},{\"name\":\"B2\",\"description\":\"OLCI channels Oa06, Oa07, Oa08, Oa09, Oa10\",\"center_wavelength\":0.645,\"full_width_half_max\":0.035},{\"name\":\"B3\",\"description\":\"OLCI channels Oa16, Oa17, Oa18, Oa21\",\"center_wavelength\":0.835,\"full_width_half_max\":0.055},{\"name\":\"MIR\",\"description\":\"SLSTR nadir and oblique channels S5, S6\",\"center_wavelength\":1.665,\"full_width_half_max\":0.085}],\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"OLCI\",\"SLSTR\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"synergy-vgp\"],\"s3:product_type\":[\"SY_2_VGP___\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides the Sentinel-3 [Synergy Level-2 Top of Atmosphere Reflectance](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vgp) product, which is a SPOT VEGETATION Continuity Product containing measurement data similar to that obtained by the [VEGETATION instrument](https://docs.terrascope.be/#/Satellites/SPOT-VGT/MissionInstruments) onboad the SPOT-3 and SPOT-4 satellites. The primary variables are four top of atmosphere reflectance bands:\\n\\n- B0 (Blue, 450nm)\\n- B2 (Red, 645nm)\\n- B3 (NIR, 835nm)\\n- MIR (SWIR, 1665nm)\\n\\nThe four reflectance bands have center wavelengths matching those on the original SPOT VEGETATION instrument and have been adapted for scientific applications requiring highly accurate physical measurements through correction for systematic errors and re-sampling to predefined geographic projections. The pixel brightness count is the ground area's apparent reflectance as seen at the top of atmosphere.\\n\\n## Data files\\n\\nNetCDF files are provided for the four reflectance bands. Additional metadata are delivered in annotation NetCDF files, each containing a single variable, including the geometric viewing and illumination conditions, the total water vapour and ozone columns, and the aerosol optical depth.\\n\\nMore information about the product and data processing can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vgp) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-synergy/level-2/vgt-p-product).\\n\\nThis Collection contains Level-2 data in NetCDF files from October 2018 to present.\\n\",\"item_assets\":{\"ag\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Aerosol optical thickness data\"},\"b0\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B0\",\"description\":\"OLCI channels Oa02, Oa03\",\"center_wavelength\":0.45,\"full_width_half_max\":0.02}],\"description\":\"Top of atmosphere reflectance data set associated with the VGT-B0 channel\"},\"b2\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B2\",\"description\":\"OLCI channels Oa06, Oa07, Oa08, Oa09, Oa10\",\"center_wavelength\":0.645,\"full_width_half_max\":0.035}],\"description\":\"Top of atmosphere reflectance data set associated with the VGT-B2 channel\"},\"b3\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B3\",\"description\":\"OLCI channels Oa16, Oa17, Oa18, Oa21\",\"center_wavelength\":0.835,\"full_width_half_max\":0.055}],\"description\":\"Top of atmosphere reflectance data set associated with the VGT-B3 channel\"},\"og\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Total ozone column data\"},\"sm\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Status map data\"},\"mir\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"MIR\",\"description\":\"SLSTR nadir and oblique channels S5, S6\",\"center_wavelength\":1.665,\"full_width_half_max\":0.085}],\"description\":\"Top of atmosphere Reflectance data set associated with the VGT-MIR channel\"},\"saa\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Solar azimuth angle data\"},\"sza\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Solar zenith angle data\"},\"vaa\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"View azimuth angle data\"},\"vza\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"View zenith angle data\"},\"wvg\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Total column water vapour data\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 top of atmosphere reflectance (SYNERGY VGP, a SPOT VEGETATION Continuity Product).\"},{\"id\":\"sentinel-3-synergy-vg1-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vg1-v10\",\"type\":\"text/html\",\"title\":\"Sentinel-3 1-Day Surface Reflectance and NDVI Product (SPOT VEGETATION) User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-synergy-vg1-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-synergy-vg1-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION) Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-synergy-vg1-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-56.0,180.0,75.0]]},\"temporal\":{\"interval\":[[\"2018-10-04T23:17:21Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Reflectance\",\"NDVI\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"eo:bands\":[{\"name\":\"B0\",\"description\":\"OLCI channels Oa02, Oa03\",\"center_wavelength\":0.45,\"full_width_half_max\":0.02},{\"name\":\"B2\",\"description\":\"OLCI channels Oa06, Oa07, Oa08, Oa09, Oa10\",\"center_wavelength\":0.645,\"full_width_half_max\":0.035},{\"name\":\"B3\",\"description\":\"OLCI channels Oa16, Oa17, Oa18, Oa21\",\"center_wavelength\":0.835,\"full_width_half_max\":0.055},{\"name\":\"MIR\",\"description\":\"SLSTR nadir and oblique channels S5, S6\",\"center_wavelength\":1.665,\"full_width_half_max\":0.085}],\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"OLCI\",\"SLSTR\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"synergy-vg1\"],\"s3:product_type\":[\"SY_2_VG1___\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides the Sentinel-3 [Synergy Level-2 1-Day Surface Reflectance and NDVI](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vg1-v10) products, which are SPOT VEGETATION Continuity Products similar to those obtained from the [VEGETATION instrument](https://docs.terrascope.be/#/Satellites/SPOT-VGT/MissionInstruments) onboard the SPOT-4 and SPOT-5 satellites. The primary variables are a maximum Normalized Difference Vegetation Index (NDVI) composite, which is derived from daily ground reflecrtance, and four surface reflectance bands:\\n\\n- B0 (Blue, 450nm)\\n- B2 (Red, 645nm)\\n- B3 (NIR, 835nm)\\n- MIR (SWIR, 1665nm)\\n\\nThe four reflectance bands have center wavelengths matching those on the original SPOT VEGETATION instrument. The NDVI variable, which is an indicator of the amount of vegetation, is derived from the B3 and B2 bands.\\n\\n## Data files\\n\\nThe four reflectance bands and NDVI values are each contained in dedicated NetCDF files. Additional metadata are delivered in annotation NetCDF files, each containing a single variable, including the geometric viewing and illumination conditions, the total water vapour and ozone columns, and the aerosol optical depth.\\n\\nEach 1-day product is delivered as a set of 10 rectangular scenes:\\n\\n- AFRICA\\n- NORTH_AMERICA\\n- SOUTH_AMERICA\\n- CENTRAL_AMERICA\\n- NORTH_ASIA\\n- WEST_ASIA\\n- SOUTH_EAST_ASIA\\n- ASIAN_ISLANDS\\n- AUSTRALASIA\\n- EUROPE\\n\\nMore information about the product and data processing can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vg1-v10) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-synergy/vgt-s/vg1-product-surface-reflectance).\\n\\nThis Collection contains Level-2 data in NetCDF files from October 2018 to present.\\n\",\"item_assets\":{\"ag\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Aerosol optical thickness data\"},\"b0\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B0\",\"description\":\"OLCI channels Oa02, Oa03\",\"center_wavelength\":0.45,\"full_width_half_max\":0.02}],\"description\":\"Surface Reflectance Data Set associated with VGT-B0 channel\"},\"b2\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B2\",\"description\":\"OLCI channels Oa06, Oa07, Oa08, Oa09, Oa10\",\"center_wavelength\":0.645,\"full_width_half_max\":0.035}],\"description\":\"Surface Reflectance Data Set associated with VGT-B2 channel\"},\"b3\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B3\",\"description\":\"OLCI channels Oa16, Oa17, Oa18, Oa21\",\"center_wavelength\":0.835,\"full_width_half_max\":0.055}],\"description\":\"Surface Reflectance Data Set associated with VGT-B3 channel\"},\"og\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Total Ozone column data\"},\"sm\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Status Map data\"},\"tg\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Synthesis time data\"},\"mir\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"MIR\",\"description\":\"SLSTR nadir and oblique channels S5, S6\",\"center_wavelength\":1.665,\"full_width_half_max\":0.085}],\"description\":\"Surface Reflectance Data Set associated with VGT-MIR channel\"},\"saa\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Solar azimuth angle data\"},\"sza\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Solar zenith angle data\"},\"vaa\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"View azimuth angle data\"},\"vza\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"View zenith angle data\"},\"wvg\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Total column Water vapour data\"},\"ndvi\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B2\",\"description\":\"OLCI channels Oa06, Oa07, Oa08, Oa09, Oa10\",\"center_wavelength\":0.645,\"full_width_half_max\":0.035},{\"name\":\"B3\",\"description\":\"OLCI channels Oa16, Oa17, Oa18, Oa21\",\"center_wavelength\":0.835,\"full_width_half_max\":0.055}],\"description\":\"Normalised difference vegetation index\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 1-day surface reflectance and NDVI (SYNERGY VG1, a SPOT VEGETATION Continuity Product).\"},{\"id\":\"esa-worldcover\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover\"},{\"rel\":\"license\",\"href\":\"https://spdx.org/licenses/CC-BY-4.0.html\",\"type\":\"text/html\",\"title\":\"Creative Commons Attribution 4.0 International License\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5281/zenodo.5571936 \",\"type\":\"text/html\",\"title\":\"2020 Data DOI\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5281/zenodo.7254221\",\"type\":\"text/html\",\"title\":\"2021 Data DOI\"},{\"rel\":\"about\",\"href\":\"https://esa-worldcover.s3.amazonaws.com/v100/2020/docs/WorldCover_PUM_V1.0.pdf\",\"type\":\"application/pdf\",\"title\":\"2020 Product Version 1.0.0 User Manual\"},{\"rel\":\"about\",\"href\":\"https://esa-worldcover.s3.eu-central-1.amazonaws.com/v200/2021/docs/WorldCover_PUM_V2.0.pdf\",\"type\":\"application/pdf\",\"title\":\"2021 Product Version 2.0.0 User Manual\"},{\"rel\":\"about\",\"href\":\"https://worldcover2020.esa.int/data/docs/WorldCover_PVR_V1.1.pdf\",\"type\":\"application/pdf\",\"title\":\"2020 Product Version 1.0.0 Validation Report\"},{\"rel\":\"about\",\"href\":\"https://esa-worldcover.s3.eu-central-1.amazonaws.com/v200/2021/docs/WorldCover_PVR_V2.0.pdf\",\"type\":\"application/pdf\",\"title\":\"2021 Product Version 2.0.0 Validation Report\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/esa-worldcover\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ESA WorldCover\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/esa-worldcover-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"ESA WorldCover thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/esa-worldcover.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-60.0,180.0,82.75]]},\"temporal\":{\"interval\":[[\"2020-01-01T00:00:00Z\",\"2021-12-31T23:59:59Z\"]]}},\"license\":\"CC-BY-4.0\",\"keywords\":[\"Global\",\"Land Cover\",\"Sentinel\",\"ESA\"],\"providers\":[{\"url\":\"https://esa-worldcover.org\",\"name\":\"ESA\",\"roles\":[\"licensor\",\"producer\"]},{\"url\":\"https://esa-worldcover.org\",\"name\":\"ESA WorldCover Consortium\",\"roles\":[\"processor\"],\"description\":\"The WorldCover product is developed by a consortium led by VITO Remote Sensing together with partners Brockmann Consult, CS SI, Gamma Remote Sensing AG, IIASA and Wageningen University\"},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"mission\":[\"sentinel-1\",\"sentinel-2\"],\"platform\":[\"sentinel-1a\",\"sentinel-1b\",\"sentinel-2a\",\"sentinel-2b\"],\"instruments\":[\"c-sar\",\"msi\"],\"esa_worldcover:product_version\":[\"1.0.0\",\"2.0.0\"]},\"description\":\"The European Space Agency (ESA) [WorldCover](https://esa-worldcover.org/en) product provides global land cover maps for the years 2020 and 2021 at 10 meter resolution based on the combination of [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) radar data and [Sentinel-2](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) imagery. The discrete classification maps provide 11 classes defined using the Land Cover Classification System (LCCS) developed by the United Nations (UN) Food and Agriculture Organization (FAO). The map images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\n\\nThe WorldCover product is developed by a consortium of European service providers and research organizations. [VITO](https://remotesensing.vito.be/) (Belgium) is the prime contractor of the WorldCover consortium together with [Brockmann Consult](https://www.brockmann-consult.de/) (Germany), [CS SI](https://www.c-s.fr/) (France), [Gamma Remote Sensing AG](https://www.gamma-rs.ch/) (Switzerland), [International Institute for Applied Systems Analysis](https://www.iiasa.ac.at/) (Austria), and [Wageningen University](https://www.wur.nl/nl/Wageningen-University.htm) (The Netherlands).\\n\\nTwo versions of the WorldCover product are available:\\n\\n- WorldCover 2020 produced using v100 of the algorithm\\n - [WorldCover 2020 v100 User Manual](https://esa-worldcover.s3.eu-central-1.amazonaws.com/v100/2020/docs/WorldCover_PUM_V1.0.pdf)\\n \ - [WorldCover 2020 v100 Validation Report]()\\n\\n- WorldCover 2021 produced using v200 of the algorithm\\n - [WorldCover 2021 v200 User Manual]()\\n \ - [WorldCover 2021 v200 Validaton Report]()\\n\\nSince the WorldCover maps for 2020 and 2021 were generated with different algorithm versions (v100 and v200, respectively), changes between the maps include both changes in real land cover and changes due to the used algorithms.\\n\",\"item_assets\":{\"map\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Land Cover Classes\",\"description\":\"Discrete classification according to the Land Cover Classification System scheme developed by the United Nations Food and Agriculture Organization\",\"raster:bands\":[{\"name\":\"Band1\",\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"description\":\"Classification values\",\"spatial_resolution\":10}],\"classification:classes\":[{\"value\":10,\"color-hint\":\"006400\",\"description\":\"Tree cover\"},{\"value\":20,\"color-hint\":\"FFBB22\",\"description\":\"Shrubland\"},{\"value\":30,\"color-hint\":\"FFFF4C\",\"description\":\"Grassland\"},{\"value\":40,\"color-hint\":\"F096FF\",\"description\":\"Cropland\"},{\"value\":50,\"color-hint\":\"FA0000\",\"description\":\"Built-up\"},{\"value\":60,\"color-hint\":\"B4B4B4\",\"description\":\"Bare / sparse vegetation\"},{\"value\":70,\"color-hint\":\"F0F0F0\",\"description\":\"Snow and ice\"},{\"value\":80,\"color-hint\":\"0064C8\",\"description\":\"Permanent water bodies\"},{\"value\":90,\"color-hint\":\"0096A0\",\"description\":\"Herbaceous wetland\"},{\"value\":95,\"color-hint\":\"00CF75\",\"description\":\"Mangroves\"},{\"value\":100,\"color-hint\":\"FAE6A0\",\"description\":\"Moss and lichen\"}]},\"input_quality\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"metadata\"],\"title\":\"Classification Input Data Quality\",\"description\":\"Per pixel quality indicator showing the quality of the input data.\",\"raster:bands\":[{\"name\":\"Band1\",\"nodata\":-1,\"sampling\":\"area\",\"data_type\":\"int16\",\"description\":\"Number of Sentinel-1 GAMMA0 observations used in the classification workflow\",\"spatial_resolution\":60},{\"name\":\"Band2\",\"nodata\":-1,\"sampling\":\"area\",\"data_type\":\"int16\",\"description\":\"Number of Sentinel-2 L2A observations used in the classification workflow\",\"spatial_resolution\":60},{\"name\":\"Band3\",\"nodata\":-1,\"sampling\":\"area\",\"data_type\":\"int16\",\"description\":\"Percentage (0-100) of invalid S2 observations discarded in the classification workflow (after cloud and cloud shadow filtering)\",\"spatial_resolution\":60}]}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:container\":\"esa-worldcover\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Global land cover product at 10 meter resolution based on Sentinel-1 and Sentinel-2 data\"}],\"links\":[{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections\"}]}" headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '205481' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:13 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125013Z-167d46d96d84sncshC1DENcfm00000000sd0000000003whw status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_client/TestAPICollectionSearch.test_search.yaml000066400000000000000000000201111503646565400315670ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://emc.spacebel.be/ response: body: string: "{\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n \ 180,\n 90\n ]]},\n \"temporal\": {\"interval\": [[\n null,\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"license\": \"various\",\n \"description\": \"FedEO Clearinghouse provides interoperable access, following ISO/OGC interface guidelines, to Earth Observation metadata\",\n \ \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"type\": \"application/json\",\n \"title\": \"This document\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%2Bxml\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"service-desc\",\n \ \"href\": \"https://emc.spacebel.be/api?httpAccept=application/vnd.oai.openapi%2Bjson;version=3.0\",\n \ \"type\": \"application/vnd.oai.openapi+json;version=3.0\",\n \"title\": \"OpenAPI definition in JSON format\"\n },\n {\n \"rel\": \"service-desc\",\n \ \"href\": \"https://emc.spacebel.be/api?httpAccept=application/json;profile=http://explain.z3950.org/dtd/2.0/\",\n \ \"type\": \"application/json;profile=\\\"http://explain.z3950.org/dtd/2.0/\\\"\",\n \ \"title\": \"Explain Document\"\n },\n {\n \"rel\": \"service-desc\",\n \ \"href\": \"https://emc.spacebel.be/api?httpAccept=application/sru%2Bxml\",\n \ \"type\": \"application/sru+xml\",\n \"title\": \"Explain Document\"\n \ },\n {\n \"rel\": \"data\",\n \"href\": \"https://emc.spacebel.be/collections\",\n \ \"type\": \"application/json\",\n \"title\": \"Metadata about the feature collections\"\n },\n {\n \"rel\": \"data\",\n \"href\": \"https://emc.spacebel.be/collections\",\n \"type\": \"application/ld+json\",\n \ \"title\": \"Metadata about the feature collections\"\n },\n {\n \ \"rel\": \"data\",\n \"href\": \"https://emc.spacebel.be/collections\",\n \ \"type\": \"application/rdf+xml\",\n \"title\": \"Metadata about the feature collections\"\n },\n {\n \"rel\": \"data\",\n \"href\": \"https://emc.spacebel.be/collections\",\n \"type\": \"text/turtle\",\n \ \"title\": \"Metadata about the feature collections\"\n },\n {\n \ \"rel\": \"conformance\",\n \"href\": \"https://emc.spacebel.be/conformance\",\n \ \"type\": \"application/json\",\n \"title\": \"OGC conformance classes implemented by this API\"\n },\n {\n \"rel\": \"service-doc\",\n \ \"href\": \"https://emc.spacebel.be/readme.html\",\n \"type\": \"text/html\",\n \"title\": \"API Documentation\"\n },\n {\n \"rel\": \"service-doc\",\n \"href\": \"https://emc.spacebel.be/index.html\",\n \ \"type\": \"text/html\",\n \"title\": \"API Documentation (Jupyter)\"\n \ },\n {\n \"rel\": \"service-doc\",\n \"href\": \"https://redocly.github.io/redoc/?url=https://emc.spacebel.be/api&nocors\",\n \ \"type\": \"text/html\",\n \"title\": \"API documentation in ReDoc format\"\n },\n {\n \"rel\": \"service-doc\",\n \"href\": \"http://petstore.swagger.io/?url=https://emc.spacebel.be/api\",\n \"type\": \"text/html\",\n \"title\": \"API documentation in Swagger.io format\"\n \ },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be?httpAccept=text/html\",\n \ \"type\": \"text/html\",\n \"title\": \"Landing Page in HTML media type.\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be?httpAccept=application/ld%2Bjson\",\n \ \"type\": \"application/ld+json\",\n \"title\": \"Landing Page in JSON-LD media type.\"\n },\n {\n \"method\": \"GET\",\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/search\",\n \"type\": \"application/geo+json\",\n \"title\": \"STAC Search\"\n },\n {\n \ \"method\": \"POST\",\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/search\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"STAC Search\"\n \ },\n {\n \"rel\": \"child\",\n \"href\": \"https://emc.spacebel.be/series\",\n \ \"type\": \"application/json\",\n \"title\": \"Collections\"\n \ },\n {\n \"rel\": \"child\",\n \"href\": \"https://emc.spacebel.be/services\",\n \ \"type\": \"application/json\",\n \"title\": \"Services\"\n },\n \ {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"type\": \"application/json\"\n }\n ],\n \"id\": \"fedeo\",\n \ \"conformsTo\": [\n \"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\n \ \"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\n \"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson\",\n \ \"http://www.opengis.net/spec/ogcapi_common-2/1.0/conf/collections\",\n \ \"http://www.opengis.net/spec/ogcapi-common-2/1.0/conf/simple-query\",\n \ \"http://www.opengis.net/spec/ogcapi-records-1/1.0/req/cql-filter\",\n \ \"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson\",\n \ \"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/features-filter\",\n \ \"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\n \"https://api.stacspec.org/v1.0.0/core\",\n \ \"https://api.stacspec.org/v1.0.0/ogcapi-features\",\n \"https://api.stacspec.org/v1.0.0/collections\",\n \ \"https://api.stacspec.org/v1.0.0-rc.1/collection-search\",\n \"https://api.stacspec.org/v1.0.0-rc.1/collection-search#filter\",\n \ \"https://api.stacspec.org/v1.0.0-rc.1/collection-search#free-text\",\n \ \"https://api.stacspec.org/v1.0.0-rc.1/collection-search#sort\",\n \"https://api.stacspec.org/v1.0.0/item-search\",\n \ \"https://api.stacspec.org/v1.0.0-rc.3/item-search#filter\",\n \"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\n \ \"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\n \"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\n \ \"http://www.opengis.net/spec/cql2/1.0/conf/advanced-comparison-operators\",\n \ \"https://api.stacspec.org/v1.0.0/item-search#sort\",\n \"https://api.stacspec.org/v1.0.0/ogcapi-features#sort\"\n \ ],\n \"title\": \"FedEO Clearinghouse\",\n \"type\": \"Catalog\"\n}" headers: Access-Control-Allow-Headers: - X-PINGOTHER, Content-Type, Authorization, Accept Access-Control-Allow-Methods: - POST,GET,PUT,HEAD,OPTIONS,DELETE Access-Control-Allow-Origin: - '*' Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Connection: - keep-alive Content-Length: - '5868' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:16 GMT Expires: - '0' Pragma: - no-cache Server: - openresty Strict-Transport-Security: - max-age=31536000 ; includeSubDomains X-Content-Type-Options: - nosniff X-Frame-Options: - DENY X-Served-By: - emc.spacebel.be X-XSS-Protection: - 1; mode=block status: code: 200 message: '' version: 1 TestAPISearch.test_search_max_items_unlimited_default.yaml000066400000000000000000016350001503646565400353320ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_clientinteractions: - request: body: '{"bbox": [-73.21, 43.99, -73.12, 45.05], "datetime": "2014-01-01T00:00:00Z/2020-12-31T23:59:59Z", "collections": ["naip"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '122' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4407364_sw_18_060_20181019_20190225","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407364_sw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.6,0.0,649869.0,0.0,-0.6,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_nw_18_060_20181019_20190225","bbox":[-73.130804,44.058693,-73.05662,44.128808],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407364_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058876,44.058693],[-73.05662,44.127605],[-73.128631,44.128808],[-73.130804,44.059893],[-73.058876,44.058693]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649711.2,4880223.6,655475.3999999999,4887882.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9607],"proj:transform":[0.6,0.0,649711.2,0.0,-0.6,4887882.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407356_sw_18_060_20181019_20190225","bbox":[-73.130814,44.121193,-73.056609,44.191307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407356_sw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407356_sw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407356_sw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407356_sw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407356_sw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407356_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407356_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05887,44.121193],[-73.056609,44.190104],[-73.128636,44.191307],[-73.130814,44.122393],[-73.05887,44.121193]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649552.7999999999,4887165.6,655312.2,4894824.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9599],"proj:transform":[0.6,0.0,649552.7999999999,0.0,-0.6,4894824.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407356_nw_18_060_20181019_20190225","bbox":[-73.130821,44.183693,-73.056603,44.253806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407356_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407356_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407356_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407356_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407356_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407356_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407356_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058869,44.183693],[-73.056603,44.252603],[-73.128639,44.253806],[-73.130821,44.184893],[-73.058869,44.183693]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649394.3999999999,4894107.6,655148.3999999999,4901766.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9590],"proj:transform":[0.6,0.0,649394.3999999999,0.0,-0.6,4901766.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407348_sw_18_060_20181019_20190225","bbox":[-73.130834,44.246192,-73.056594,44.316305],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407348_sw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407348_sw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407348_sw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407348_sw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407348_sw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407348_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407348_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058865,44.246192],[-73.056594,44.315101],[-73.128647,44.316305],[-73.130834,44.247392],[-73.058865,44.246192]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649235.3999999999,4901049.6,654984.5999999999,4908708.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9582],"proj:transform":[0.6,0.0,649235.3999999999,0.0,-0.6,4908708.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407348_nw_18_060_20181019_20190225","bbox":[-73.130837,44.30869,-73.056583,44.378808],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407348_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407348_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407348_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407348_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407348_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407348_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407348_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05886,44.30869],[-73.056583,44.377604],[-73.128645,44.378808],[-73.130837,44.309891],[-73.05886,44.30869]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649077.0,4907991.6,654820.8,4915650.6],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12765,9573],"proj:transform":[0.6,0.0,649077.0,0.0,-0.6,4915650.6,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20181019_20190225","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307308_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[650027.3999999999,4866339.6,655801.7999999999,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6,0.0,650027.3999999999,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4507364_sw_18_060_20180924_20190225","bbox":[-73.130933,44.99619,-73.056484,45.066308],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4507364_sw_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4507364_sw_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/45073/m_4507364_sw_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/45073/m_4507364_sw_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/45073/m_4507364_sw_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4507364_sw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4507364_sw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058816,44.99619],[-73.056484,45.065102],[-73.128688,45.066308],[-73.130933,44.997394],[-73.058816,44.99619]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[647317.7999999999,4984360.2,653005.2,4992019.8],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12766,9479],"proj:transform":[0.6,0.0,647317.7999999999,0.0,-0.6,4992019.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4507363_se_18_060_20180924_20190225","bbox":[-73.193362,44.996226,-73.119055,45.066273],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4507363_se_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4507363_se_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/45073/m_4507363_se_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/45073/m_4507363_se_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/45073/m_4507363_se_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4507363_se_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4507363_se_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121311,44.996226],[-73.119055,45.065107],[-73.191193,45.066273],[-73.193362,44.997389],[-73.121311,44.996226]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[642397.2,4984248.0,648079.2,4991904.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12760,9470],"proj:transform":[0.6,0.0,642397.2,0.0,-0.6,4991904.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_ne_18_060_20180924_20190225","bbox":[-73.193235,44.058728,-73.11919,44.128772],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_ne_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_ne_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_ne_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_ne_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_ne_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_ne_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_ne_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121372,44.058728],[-73.11919,44.12761],[-73.191136,44.128772],[-73.193235,44.059887],[-73.121372,44.058728]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[644710.7999999999,4880111.4,650469.6,4887766.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9598],"proj:transform":[0.6,0.0,644710.7999999999,0.0,-0.6,4887766.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407355_se_18_060_20180924_20190225","bbox":[-73.193243,44.121228,-73.119177,44.191272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407355_se_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407355_se_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407355_se_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407355_se_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407355_se_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407355_se_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407355_se_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121364,44.121228],[-73.119177,44.190109],[-73.191139,44.191272],[-73.193243,44.122388],[-73.121364,44.121228]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[644557.7999999999,4887053.4,650311.7999999999,4894708.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9590],"proj:transform":[0.6,0.0,644557.7999999999,0.0,-0.6,4894708.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407355_ne_18_060_20180924_20190225","bbox":[-73.193256,44.183728,-73.11917,44.253771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407355_ne_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407355_ne_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407355_ne_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407355_ne_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407355_ne_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407355_ne_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407355_ne_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121362,44.183728],[-73.11917,44.252608],[-73.191148,44.253771],[-73.193256,44.184888],[-73.121362,44.183728]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[644404.2,4893995.4,650153.3999999999,4901650.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9582],"proj:transform":[0.6,0.0,644404.2,0.0,-0.6,4901650.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407347_se_18_060_20180924_20190225","bbox":[-73.19326,44.246227,-73.11916,44.316269],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407347_se_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407347_se_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407347_se_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407347_se_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407347_se_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407347_se_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407347_se_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121357,44.246227],[-73.11916,44.315106],[-73.191147,44.316269],[-73.19326,44.247387],[-73.121357,44.246227]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[644251.2,4900937.4,649995.0,4908592.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9573],"proj:transform":[0.6,0.0,644251.2,0.0,-0.6,4908592.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407347_ne_18_060_20180924_20190225","bbox":[-73.193269,44.308725,-73.119155,44.378773],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407347_ne_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407347_ne_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407347_ne_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407347_ne_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407347_ne_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407347_ne_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407347_ne_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121357,44.308725],[-73.119155,44.377609],[-73.191151,44.378773],[-73.193269,44.309886],[-73.121357,44.308725]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[644097.6,4907879.399999999,649836.0,4915534.8],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12759,9564],"proj:transform":[0.6,0.0,644097.6,0.0,-0.6,4915534.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407340_sw_18_060_20180924_20190225","bbox":[-73.130852,44.371193,-73.056578,44.441305],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407340_sw_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407340_sw_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407340_sw_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407340_sw_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407340_sw_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407340_sw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407340_sw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058859,44.371193],[-73.056578,44.440101],[-73.128656,44.441305],[-73.130852,44.372394],[-73.058859,44.371193]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[648917.3999999999,4914934.199999999,654656.3999999999,4922592.6],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9565],"proj:transform":[0.6,0.0,648917.3999999999,0.0,-0.6,4922592.6,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407340_nw_18_060_20180924_20190225","bbox":[-73.130858,44.43369,-73.05657,44.503807],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407340_nw_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407340_nw_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407340_nw_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407340_nw_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407340_nw_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407340_nw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407340_nw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058856,44.43369],[-73.05657,44.502603],[-73.128657,44.503807],[-73.130858,44.434892],[-73.058856,44.43369]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[648758.3999999999,4921876.2,654491.9999999999,4929535.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12765,9556],"proj:transform":[0.6,0.0,648758.3999999999,0.0,-0.6,4929535.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407339_se_18_060_20180924_20190225","bbox":[-73.193276,44.371228,-73.119141,44.44127],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407339_se_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407339_se_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407339_se_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407339_se_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407339_se_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407339_se_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407339_se_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121348,44.371228],[-73.119141,44.440106],[-73.191154,44.44127],[-73.193276,44.372389],[-73.121348,44.371228]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[643944.0,4914822.0,649677.6,4922476.8],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9556],"proj:transform":[0.6,0.0,643944.0,0.0,-0.6,4922476.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407339_ne_18_060_20180924_20190225","bbox":[-73.193288,44.433725,-73.11914,44.503772],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407339_ne_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407339_ne_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407339_ne_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407339_ne_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407339_ne_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407339_ne_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407339_ne_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121351,44.433725],[-73.11914,44.502608],[-73.191161,44.503772],[-73.193288,44.434886],[-73.121351,44.433725]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[643789.7999999999,4921763.999999999,649517.9999999999,4929419.399999999],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12759,9547],"proj:transform":[0.6,0.0,643789.7999999999,0.0,-0.6,4929419.399999999,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407332_sw_18_060_20180924_20190225","bbox":[-73.130862,44.496192,-73.05656,44.566308],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407332_sw_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407332_sw_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407332_sw_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407332_sw_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407332_sw_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407332_sw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407332_sw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058851,44.496192],[-73.05656,44.565104],[-73.128656,44.566308],[-73.130862,44.497394],[-73.058851,44.496192]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[648599.3999999999,4928818.8,654327.5999999999,4936477.8],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12765,9547],"proj:transform":[0.6,0.0,648599.3999999999,0.0,-0.6,4936477.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407332_nw_18_060_20180924_20190225","bbox":[-73.130871,44.558693,-73.056547,44.628809],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407332_nw_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407332_nw_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407332_nw_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407332_nw_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407332_nw_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407332_nw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407332_nw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058843,44.558693],[-73.056547,44.627604],[-73.12866,44.628809],[-73.130871,44.559895],[-73.058843,44.558693]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[648439.7999999999,4935761.399999999,654163.2,4943420.399999999],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12765,9539],"proj:transform":[0.6,0.0,648439.7999999999,0.0,-0.6,4943420.399999999,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407331_se_18_060_20180924_20190225","bbox":[-73.193298,44.496227,-73.119128,44.566273],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407331_se_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407331_se_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407331_se_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407331_se_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407331_se_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407331_se_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407331_se_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121345,44.496227],[-73.119128,44.565109],[-73.191167,44.566273],[-73.193298,44.497389],[-73.121345,44.496227]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[643635.6,4928706.6,649359.0,4936362.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12759,9539],"proj:transform":[0.6,0.0,643635.6,0.0,-0.6,4936362.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407331_ne_18_060_20180924_20190225","bbox":[-73.193306,44.558729,-73.119115,44.628769],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407331_ne_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407331_ne_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407331_ne_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407331_ne_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407331_ne_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407331_ne_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407331_ne_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121336,44.558729],[-73.119115,44.627604],[-73.19117,44.628769],[-73.193306,44.55989],[-73.121336,44.558729]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[643481.3999999999,4935649.2,649199.9999999999,4943304.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9531],"proj:transform":[0.6,0.0,643481.3999999999,0.0,-0.6,4943304.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407324_sw_18_060_20180924_20190225","bbox":[-73.130885,44.621189,-73.05654,44.691309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407324_sw_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407324_sw_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407324_sw_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407324_sw_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407324_sw_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407324_sw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407324_sw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058841,44.621189],[-73.05654,44.690104],[-73.128669,44.691309],[-73.130885,44.622391],[-73.058841,44.621189]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[648279.6,4942703.4,653998.2,4950363.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12766,9531],"proj:transform":[0.6,0.0,648279.6,0.0,-0.6,4950363.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407324_nw_18_060_20180924_20190225","bbox":[-73.13089,44.683689,-73.05653,44.753809],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407324_nw_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407324_nw_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407324_nw_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407324_nw_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407324_nw_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407324_nw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407324_nw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058836,44.683689],[-73.05653,44.752603],[-73.128669,44.753809],[-73.13089,44.684891],[-73.058836,44.683689]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[648120.0,4949646.0,653833.2,4957305.6],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12766,9522],"proj:transform":[0.6,0.0,648120.0,0.0,-0.6,4957305.6,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407323_se_18_060_20180924_20190225","bbox":[-73.193312,44.621229,-73.119107,44.691269],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407323_se_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407323_se_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407323_se_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407323_se_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407323_se_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407323_se_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407323_se_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121333,44.621229],[-73.119107,44.690104],[-73.191171,44.691269],[-73.193312,44.622391],[-73.121333,44.621229]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[643327.2,4942591.8,649040.3999999999,4950246.6],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9522],"proj:transform":[0.6,0.0,643327.2,0.0,-0.6,4950246.6,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407323_ne_18_060_20180924_20190225","bbox":[-73.193323,44.683729,-73.119104,44.753774],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407323_ne_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407323_ne_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407323_ne_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407323_ne_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407323_ne_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407323_ne_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407323_ne_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121335,44.683729],[-73.119104,44.752609],[-73.191177,44.753774],[-73.193323,44.684891],[-73.121335,44.683729]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[643172.3999999999,4949534.399999999,648880.2,4957189.8],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12759,9513],"proj:transform":[0.6,0.0,643172.3999999999,0.0,-0.6,4957189.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407316_sw_18_060_20180924_20190225","bbox":[-73.1309,44.746193,-73.056525,44.816308],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407316_sw_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407316_sw_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407316_sw_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407316_sw_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407316_sw_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407316_sw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407316_sw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058837,44.746193],[-73.056525,44.815102],[-73.128674,44.816308],[-73.1309,44.747396],[-73.058837,44.746193]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[647959.7999999999,4956589.2,653667.6,4964248.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12765,9513],"proj:transform":[0.6,0.0,647959.7999999999,0.0,-0.6,4964248.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407316_nw_18_060_20180924_20190225","bbox":[-73.130908,44.808692,-73.056511,44.878806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407316_nw_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407316_nw_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407316_nw_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407316_nw_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407316_nw_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407316_nw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407316_nw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058827,44.808692],[-73.056511,44.8776],[-73.128677,44.878806],[-73.130908,44.809895],[-73.058827,44.808692]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[647799.6,4963531.8,653502.6,4971190.8],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12765,9505],"proj:transform":[0.6,0.0,647799.6,0.0,-0.6,4971190.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407315_se_18_060_20180924_20190225","bbox":[-73.193332,44.746229,-73.119091,44.816273],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407315_se_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407315_se_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407315_se_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407315_se_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407315_se_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407315_se_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407315_se_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121327,44.746229],[-73.119091,44.815108],[-73.191182,44.816273],[-73.193332,44.747391],[-73.121327,44.746229]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[643017.6,4956476.999999999,648720.6,4964132.399999999],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12759,9505],"proj:transform":[0.6,0.0,643017.6,0.0,-0.6,4964132.399999999,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407315_ne_18_060_20180924_20190225","bbox":[-73.193339,44.808728,-73.119084,44.878771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407315_ne_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407315_ne_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407315_ne_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407315_ne_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407315_ne_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407315_ne_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407315_ne_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121324,44.808728],[-73.119084,44.877606],[-73.191184,44.878771],[-73.193339,44.80989],[-73.121324,44.808728]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[642862.7999999999,4963419.6,648560.3999999999,4971075.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12759,9496],"proj:transform":[0.6,0.0,642862.7999999999,0.0,-0.6,4971075.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407308_sw_18_060_20180924_20190225","bbox":[-73.130921,44.87119,-73.056502,44.941309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407308_sw_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407308_sw_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407308_sw_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407308_sw_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407308_sw_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407308_sw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407308_sw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058823,44.87119],[-73.056502,44.940103],[-73.128685,44.941309],[-73.130921,44.872394],[-73.058823,44.87119]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[647638.7999999999,4970474.4,653336.9999999999,4978134.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12766,9497],"proj:transform":[0.6,0.0,647638.7999999999,0.0,-0.6,4978134.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407308_nw_18_060_20180924_20190225","bbox":[-73.130924,44.933688,-73.056498,45.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407308_nw_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407308_nw_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407308_nw_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407308_nw_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407308_nw_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407308_nw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407308_nw_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058825,44.933688],[-73.056498,45.0026],[-73.128684,45.003806],[-73.130924,44.934891],[-73.058825,44.933688]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[647478.6,4977417.0,653170.7999999999,4985076.6],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12766,9487],"proj:transform":[0.6,0.0,647478.6,0.0,-0.6,4985076.6,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407307_se_18_060_20180924_20190225","bbox":[-73.193344,44.871226,-73.119074,44.941269],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407307_se_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407307_se_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407307_se_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407307_se_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407307_se_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407307_se_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407307_se_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12132,44.871226],[-73.119074,44.940103],[-73.191184,44.941269],[-73.193344,44.872388],[-73.12132,44.871226]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[642708.0,4970362.199999999,648400.2,4978017.6],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12759,9487],"proj:transform":[0.6,0.0,642708.0,0.0,-0.6,4978017.6,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407307_ne_18_060_20180924_20190225","bbox":[-73.193354,44.933729,-73.11907,45.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407307_ne_18_060_20180924_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407307_ne_18_060_20180924_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407307_ne_18_060_20180924.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407307_ne_18_060_20180924.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407307_ne_18_060_20180924.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407307_ne_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407307_ne_18_060_20180924_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12132,44.933729],[-73.11907,45.002606],[-73.19119,45.003771],[-73.193354,44.934892],[-73.12132,44.933729]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-24T00:00:00Z","naip:year":"2018","proj:bbox":[642552.6,4977305.399999999,648239.4,4984960.8],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12759,9478],"proj:transform":[0.6,0.0,642552.6,0.0,-0.6,4984960.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20180923_20190225","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20180923_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_nw_18_060_20180923.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-23T00:00:00Z","naip:year":"2018","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.6,0.0,640005.0,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4507363_sw_18_060_20180914_20190225","bbox":[-73.255791,44.996265,-73.181627,45.066236],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4507363_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4507363_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/45073/m_4507363_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/45073/m_4507363_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/45073/m_4507363_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4507363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4507363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183806,44.996265],[-73.181627,45.065111],[-73.253698,45.066236],[-73.255791,44.997388],[-73.183806,44.996265]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[637476.6,4984140.0,643153.2,4991791.8],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12753,9461],"proj:transform":[0.6,0.0,637476.6,0.0,-0.6,4991791.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20180914_20190225","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6,0.0,639858.0,0.0,-0.6,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20180914_20190225","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_se_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6,0.0,644863.2,0.0,-0.6,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_nw_18_060_20180914_20190225","bbox":[-73.255666,44.058767,-73.181759,44.128735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_nw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_nw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_nw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_nw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_nw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_nw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_nw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,44.058767],[-73.181759,44.127613],[-73.253641,44.128735],[-73.255666,44.059886],[-73.183868,44.058767]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639710.3999999999,4880003.4,645463.7999999999,4887654.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9589],"proj:transform":[0.6,0.0,639710.3999999999,0.0,-0.6,4887654.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407355_sw_18_060_20180914_20190225","bbox":[-73.25568,44.121261,-73.181745,44.191235],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407355_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407355_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407355_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407355_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407355_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407355_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407355_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183859,44.121261],[-73.181745,44.190112],[-73.25365,44.191235],[-73.25568,44.122381],[-73.183859,44.121261]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639562.2,4886944.8,645311.3999999999,4894596.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12752,9582],"proj:transform":[0.6,0.0,639562.2,0.0,-0.6,4894596.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407355_nw_18_060_20180914_20190225","bbox":[-73.255684,44.183761,-73.181737,44.253734],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407355_nw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407355_nw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407355_nw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407355_nw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407355_nw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407355_nw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407355_nw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183855,44.183761],[-73.181737,44.252611],[-73.25365,44.253734],[-73.255684,44.184881],[-73.183855,44.183761]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639414.6,4893886.8,645158.4,4901538.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12752,9573],"proj:transform":[0.6,0.0,639414.6,0.0,-0.6,4901538.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407347_sw_18_060_20180914_20190225","bbox":[-73.255694,44.246266,-73.181733,44.316232],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407347_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407347_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407347_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407347_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407347_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407347_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407347_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183856,44.246266],[-73.181733,44.31511],[-73.253655,44.316232],[-73.255694,44.247385],[-73.183856,44.246266]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639266.3999999999,4900829.4,645004.7999999999,4908480.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9564],"proj:transform":[0.6,0.0,639266.3999999999,0.0,-0.6,4908480.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407347_nw_18_060_20180914_20190225","bbox":[-73.255702,44.308764,-73.18172,44.378735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407347_nw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407347_nw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407347_nw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407347_nw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407347_nw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407347_nw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407347_nw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183847,44.308764],[-73.18172,44.377613],[-73.253658,44.378735],[-73.255702,44.309884],[-73.183847,44.308764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639118.2,4907771.399999999,644851.7999999999,4915422.6],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12752,9556],"proj:transform":[0.6,0.0,639118.2,0.0,-0.6,4915422.6,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407339_sw_18_060_20180914_20190225","bbox":[-73.255707,44.371262,-73.181712,44.441233],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407339_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407339_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407339_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407339_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407339_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407339_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407339_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183844,44.371262],[-73.181712,44.44011],[-73.253659,44.441233],[-73.255707,44.372382],[-73.183844,44.371262]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[638970.0,4914713.399999999,644698.2,4922364.6],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12752,9547],"proj:transform":[0.6,0.0,638970.0,0.0,-0.6,4922364.6,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407339_nw_18_060_20180914_20190225","bbox":[-73.255718,44.433764,-73.181702,44.503735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407339_nw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407339_nw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407339_nw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407339_nw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407339_nw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407339_nw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407339_nw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183839,44.433764],[-73.181702,44.502612],[-73.253666,44.503735],[-73.255718,44.434885],[-73.183839,44.433764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[638821.2,4921656.0,644544.6,4929307.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12752,9539],"proj:transform":[0.6,0.0,638821.2,0.0,-0.6,4929307.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407331_sw_18_060_20180914_20190225","bbox":[-73.255727,44.496261,-73.181697,44.566236],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407331_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407331_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407331_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407331_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407331_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407331_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407331_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183839,44.496261],[-73.181697,44.565113],[-73.25367,44.566236],[-73.255727,44.497382],[-73.183839,44.496261]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[638672.3999999999,4928598.0,644390.3999999999,4936249.8],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12753,9530],"proj:transform":[0.6,0.0,638672.3999999999,0.0,-0.6,4936249.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407331_nw_18_060_20180914_20190225","bbox":[-73.255734,44.558762,-73.181691,44.628737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407331_nw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407331_nw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407331_nw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407331_nw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407331_nw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407331_nw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407331_nw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183837,44.558762],[-73.181691,44.627613],[-73.253672,44.628737],[-73.255734,44.559883],[-73.183837,44.558762]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[638523.6,4935540.6,644236.2,4943192.399999999],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12753,9521],"proj:transform":[0.6,0.0,638523.6,0.0,-0.6,4943192.399999999,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407323_sw_18_060_20180914_20190225","bbox":[-73.255746,44.621263,-73.181681,44.691237],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407323_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407323_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407323_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407323_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407323_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407323_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407323_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183833,44.621263],[-73.181681,44.690113],[-73.25368,44.691237],[-73.255746,44.622384],[-73.183833,44.621263]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[638374.2,4942483.2,644082.0,4950135.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12753,9513],"proj:transform":[0.6,0.0,638374.2,0.0,-0.6,4950135.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407323_nw_18_060_20180914_20190225","bbox":[-73.255749,44.683763,-73.18167,44.753737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407323_nw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407323_nw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407323_nw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407323_nw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407323_nw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407323_nw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407323_nw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183826,44.683763],[-73.18167,44.752613],[-73.253678,44.753737],[-73.255749,44.684884],[-73.183826,44.683763]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[638225.3999999999,4949425.8,643927.7999999999,4957077.6],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12753,9504],"proj:transform":[0.6,0.0,638225.3999999999,0.0,-0.6,4957077.6,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407315_sw_18_060_20180914_20190225","bbox":[-73.255757,44.746263,-73.181664,44.816236],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407315_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407315_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407315_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407315_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407315_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407315_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407315_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183825,44.746263],[-73.181664,44.815111],[-73.253682,44.816236],[-73.255757,44.747384],[-73.183825,44.746263]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[638076.0,4956368.4,643773.0,4964020.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12753,9495],"proj:transform":[0.6,0.0,638076.0,0.0,-0.6,4964020.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407315_nw_18_060_20180914_20190225","bbox":[-73.25577,44.808761,-73.181656,44.878734],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407315_nw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407315_nw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407315_nw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407315_nw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407315_nw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407315_nw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407315_nw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183822,44.808761],[-73.181656,44.87761],[-73.253691,44.878734],[-73.25577,44.809883],[-73.183822,44.808761]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[637926.0,4963311.0,643618.2,4970962.8],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12753,9487],"proj:transform":[0.6,0.0,637926.0,0.0,-0.6,4970962.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407307_sw_18_060_20180914_20190225","bbox":[-73.255774,44.871265,-73.181646,44.941237],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407307_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407307_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407307_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407307_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407307_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407307_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407307_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183816,44.871265],[-73.181646,44.940112],[-73.25369,44.941237],[-73.255774,44.872387],[-73.183816,44.871265]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[637776.6,4970254.2,643463.4,4977906.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12753,9478],"proj:transform":[0.6,0.0,637776.6,0.0,-0.6,4977906.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407307_nw_18_060_20180914_20190225","bbox":[-73.255784,44.933763,-73.181634,45.003734],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407307_nw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407307_nw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407307_nw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407307_nw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407307_nw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407307_nw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407307_nw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183808,44.933763],[-73.181634,45.002609],[-73.253695,45.003734],[-73.255784,44.934885],[-73.183808,44.933763]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[637626.6,4977196.8,643308.6,4984848.6],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12753,9470],"proj:transform":[0.6,0.0,637626.6,0.0,-0.6,4984848.6,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20180823_20190225","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20180823_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_ne_18_060_20180823.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-08-23T00:00:00Z","naip:year":"2018","proj:bbox":[645016.2,4866227.4,650785.7999999999,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6,0.0,645016.2,0.0,-0.6,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407324_nw_18_h_20160904","bbox":[-73.13089,44.683689,-73.05653,44.753809],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407324_nw_18_h_20160904"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407324_nw_18_h_20160904","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407324_nw_18_h_20160904.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407324_nw_18_h_20160904.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407324_nw_18_h_20160904.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407324_nw_18_h_20160904&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407324_nw_18_h_20160904&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058836,44.683689],[-73.05653,44.752603],[-73.128669,44.753809],[-73.13089,44.684891],[-73.058836,44.683689]]]},"collection":"naip","properties":{"gsd":0.5999999999999951,"datetime":"2016-09-04T00:00:00Z","naip:year":"2016","proj:bbox":[648120.0,4949646.0,653833.2,4957305.6],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12766,9522],"proj:transform":[0.5999999999999951,0.0,648120.0,0.0,-0.5999999999999708,4957305.6,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407316_sw_18_h_20160904","bbox":[-73.1309,44.746193,-73.056525,44.816308],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407316_sw_18_h_20160904"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407316_sw_18_h_20160904","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407316_sw_18_h_20160904.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407316_sw_18_h_20160904.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407316_sw_18_h_20160904.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407316_sw_18_h_20160904&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407316_sw_18_h_20160904&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058837,44.746193],[-73.056525,44.815102],[-73.128674,44.816308],[-73.1309,44.747396],[-73.058837,44.746193]]]},"collection":"naip","properties":{"gsd":0.5999999999999927,"datetime":"2016-09-04T00:00:00Z","naip:year":"2016","proj:bbox":[647959.8,4956589.2,653667.6,4964248.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12765,9513],"proj:transform":[0.5999999999999927,0.0,647959.8,0.0,-0.6,4964248.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4507364_sw_18_h_20160819","bbox":[-73.130933,44.99619,-73.056484,45.066308],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4507364_sw_18_h_20160819"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4507364_sw_18_h_20160819","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/45073/m_4507364_sw_18_h_20160819.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/45073/m_4507364_sw_18_h_20160819.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/45073/m_4507364_sw_18_h_20160819.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4507364_sw_18_h_20160819&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4507364_sw_18_h_20160819&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058816,44.99619],[-73.056484,45.065102],[-73.128688,45.066308],[-73.130933,44.997394],[-73.058816,44.99619]]]},"collection":"naip","properties":{"gsd":0.5999999999999902,"datetime":"2016-08-19T00:00:00Z","naip:year":"2016","proj:bbox":[647317.8,4984360.2,653005.2,4992019.8],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12766,9479],"proj:transform":[0.5999999999999902,0.0,647317.8,0.0,-0.5999999999999708,4992019.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_h_20160805","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307308_nw_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[650027.4,4866339.6,655801.8,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6000000000000024,0.0,650027.4,0.0,-0.6000000000000292,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_h_20160805","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_ne_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6000000000000096,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[645016.2,4866227.4,650785.8,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6000000000000096,0.0,645016.2,0.0,-0.5999999999999854,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4507363_sw_18_h_20160804","bbox":[-73.255791,44.996265,-73.181627,45.066236],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4507363_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4507363_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/45073/m_4507363_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/45073/m_4507363_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/45073/m_4507363_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4507363_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4507363_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183806,44.996265],[-73.181627,45.065111],[-73.253698,45.066236],[-73.255791,44.997388],[-73.183806,44.996265]]]},"collection":"naip","properties":{"gsd":0.5999999999999975,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[637476.6,4984140.0,643153.2,4991791.8],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12753,9461],"proj:transform":[0.5999999999999975,0.0,637476.6,0.0,-0.5999999999999854,4991791.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4507363_se_18_h_20160804","bbox":[-73.193362,44.996226,-73.119055,45.066273],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4507363_se_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4507363_se_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/45073/m_4507363_se_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/45073/m_4507363_se_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/45073/m_4507363_se_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4507363_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4507363_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121311,44.996226],[-73.119055,45.065107],[-73.191193,45.066273],[-73.193362,44.997389],[-73.121311,44.996226]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[642397.2,4984248.0,648079.2,4991904.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12760,9470],"proj:transform":[0.6,0.0,642397.2,0.0,-0.6,4991904.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_h_20160804","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407364_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407364_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407364_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.5999999999999975,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.5999999999999975,0.0,649869.0,0.0,-0.6000000000000292,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_nw_18_h_20160804","bbox":[-73.130804,44.058693,-73.05662,44.128808],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_nw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_nw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407364_nw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407364_nw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407364_nw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058876,44.058693],[-73.05662,44.127605],[-73.128631,44.128808],[-73.130804,44.059893],[-73.058876,44.058693]]]},"collection":"naip","properties":{"gsd":0.6000000000000073,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[649711.2,4880223.6,655475.4,4887882.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9607],"proj:transform":[0.6000000000000073,0.0,649711.2,0.0,-0.6000000000000292,4887882.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_h_20160804","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407363_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6000000000000049,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6000000000000049,0.0,639858.0,0.0,-0.5999999999999708,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_h_20160804","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_se_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407363_se_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_se_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6000000000000049,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6000000000000049,0.0,644863.2,0.0,-0.5999999999999854,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_nw_18_h_20160804","bbox":[-73.255666,44.058767,-73.181759,44.128735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_nw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_nw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_nw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407363_nw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_nw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,44.058767],[-73.181759,44.127613],[-73.253641,44.128735],[-73.255666,44.059886],[-73.183868,44.058767]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[639710.4,4880003.4,645463.8,4887654.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9589],"proj:transform":[0.6000000000000024,0.0,639710.4,0.0,-0.5999999999999708,4887654.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_ne_18_h_20160804","bbox":[-73.193235,44.058728,-73.11919,44.128772],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_ne_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_ne_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_ne_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407363_ne_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_ne_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_ne_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_ne_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121372,44.058728],[-73.11919,44.12761],[-73.191136,44.128772],[-73.193235,44.059887],[-73.121372,44.058728]]]},"collection":"naip","properties":{"gsd":0.5999999999999928,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[644710.8,4880111.4,650469.6,4887766.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9598],"proj:transform":[0.5999999999999928,0.0,644710.8,0.0,-0.5999999999999854,4887766.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407356_sw_18_h_20160804","bbox":[-73.130814,44.121193,-73.056609,44.191307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407356_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407356_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407356_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407356_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407356_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407356_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407356_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05887,44.121193],[-73.056609,44.190104],[-73.128636,44.191307],[-73.130814,44.122393],[-73.05887,44.121193]]]},"collection":"naip","properties":{"gsd":0.5999999999999903,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[649552.8,4887165.6,655312.2,4894824.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9599],"proj:transform":[0.5999999999999903,0.0,649552.8,0.0,-0.6000000000000292,4894824.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407356_nw_18_h_20160804","bbox":[-73.130821,44.183693,-73.056603,44.253806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407356_nw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407356_nw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407356_nw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407356_nw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407356_nw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407356_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407356_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058869,44.183693],[-73.056603,44.252603],[-73.128639,44.253806],[-73.130821,44.184893],[-73.058869,44.183693]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[649394.4,4894107.6,655148.4,4901766.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9590],"proj:transform":[0.6,0.0,649394.4,0.0,-0.6000000000000292,4901766.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407355_sw_18_h_20160804","bbox":[-73.25568,44.121261,-73.181745,44.191235],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407355_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407355_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407355_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407355_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407355_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407355_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407355_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183859,44.121261],[-73.181745,44.190112],[-73.25365,44.191235],[-73.25568,44.122381],[-73.183859,44.121261]]]},"collection":"naip","properties":{"gsd":0.6000000000000073,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[639562.2,4886944.8,645311.4,4894596.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12752,9582],"proj:transform":[0.6000000000000073,0.0,639562.2,0.0,-0.6000000000000146,4894596.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407355_se_18_h_20160804","bbox":[-73.193243,44.121228,-73.119177,44.191272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407355_se_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407355_se_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407355_se_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407355_se_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407355_se_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407355_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407355_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121364,44.121228],[-73.119177,44.190109],[-73.191139,44.191272],[-73.193243,44.122388],[-73.121364,44.121228]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[644557.8,4887053.4,650311.8,4894708.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9590],"proj:transform":[0.6,0.0,644557.8,0.0,-0.5999999999999854,4894708.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407355_nw_18_h_20160804","bbox":[-73.255684,44.183761,-73.181737,44.253734],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407355_nw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407355_nw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407355_nw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407355_nw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407355_nw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407355_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407355_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183855,44.183761],[-73.181737,44.252611],[-73.25365,44.253734],[-73.255684,44.184881],[-73.183855,44.183761]]]},"collection":"naip","properties":{"gsd":0.6000000000000049,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[639414.6,4893886.8,645158.4,4901538.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12752,9573],"proj:transform":[0.6000000000000049,0.0,639414.6,0.0,-0.6000000000000146,4901538.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407355_ne_18_h_20160804","bbox":[-73.193256,44.183728,-73.11917,44.253771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407355_ne_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407355_ne_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407355_ne_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407355_ne_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407355_ne_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407355_ne_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407355_ne_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121362,44.183728],[-73.11917,44.252608],[-73.191148,44.253771],[-73.193256,44.184888],[-73.121362,44.183728]]]},"collection":"naip","properties":{"gsd":0.6000000000000073,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[644404.2,4893995.4,650153.4,4901650.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9582],"proj:transform":[0.6000000000000073,0.0,644404.2,0.0,-0.5999999999999854,4901650.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407348_sw_18_h_20160804","bbox":[-73.130834,44.246192,-73.056594,44.316305],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407348_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407348_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407348_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407348_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407348_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407348_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407348_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058865,44.246192],[-73.056594,44.315101],[-73.128647,44.316305],[-73.130834,44.247392],[-73.058865,44.246192]]]},"collection":"naip","properties":{"gsd":0.5999999999999951,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[649235.4,4901049.6,654984.6,4908708.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9582],"proj:transform":[0.5999999999999951,0.0,649235.4,0.0,-0.6000000000000292,4908708.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407348_nw_18_h_20160804","bbox":[-73.130837,44.30869,-73.056583,44.378808],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407348_nw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407348_nw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407348_nw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407348_nw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407348_nw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407348_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407348_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05886,44.30869],[-73.056583,44.377604],[-73.128645,44.378808],[-73.130837,44.309891],[-73.05886,44.30869]]]},"collection":"naip","properties":{"gsd":0.6000000000000049,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[649077.0,4907991.6,654820.8,4915650.6],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12765,9573],"proj:transform":[0.6000000000000049,0.0,649077.0,0.0,-0.6,4915650.6,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407347_sw_18_h_20160804","bbox":[-73.255694,44.246266,-73.181733,44.316232],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407347_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407347_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407347_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407347_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407347_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407347_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407347_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183856,44.246266],[-73.181733,44.31511],[-73.253655,44.316232],[-73.255694,44.247385],[-73.183856,44.246266]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[639266.4,4900829.4,645004.8,4908480.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9564],"proj:transform":[0.6000000000000024,0.0,639266.4,0.0,-0.5999999999999708,4908480.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407347_se_18_h_20160804","bbox":[-73.19326,44.246227,-73.11916,44.316269],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407347_se_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407347_se_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407347_se_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407347_se_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407347_se_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407347_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407347_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121357,44.246227],[-73.11916,44.315106],[-73.191147,44.316269],[-73.19326,44.247387],[-73.121357,44.246227]]]},"collection":"naip","properties":{"gsd":0.6000000000000049,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[644251.2,4900937.4,649995.0,4908592.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9573],"proj:transform":[0.6000000000000049,0.0,644251.2,0.0,-0.5999999999999854,4908592.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407347_nw_18_h_20160804","bbox":[-73.255702,44.308764,-73.18172,44.378735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407347_nw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407347_nw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407347_nw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407347_nw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407347_nw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407347_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407347_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183847,44.308764],[-73.18172,44.377613],[-73.253658,44.378735],[-73.255702,44.309884],[-73.183847,44.308764]]]},"collection":"naip","properties":{"gsd":0.6000000000000097,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[639118.2,4907771.4,644851.8,4915422.6],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12752,9556],"proj:transform":[0.6000000000000097,0.0,639118.2,0.0,-0.5999999999999416,4915422.6,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407347_ne_18_h_20160804","bbox":[-73.193269,44.308725,-73.119155,44.378773],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407347_ne_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407347_ne_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407347_ne_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407347_ne_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407347_ne_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407347_ne_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407347_ne_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121357,44.308725],[-73.119155,44.377609],[-73.191151,44.378773],[-73.193269,44.309886],[-73.121357,44.308725]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[644097.6,4907879.4,649836.0,4915534.8],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12759,9564],"proj:transform":[0.6000000000000024,0.0,644097.6,0.0,-0.5999999999999562,4915534.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407340_sw_18_h_20160804","bbox":[-73.130852,44.371193,-73.056578,44.441305],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407340_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407340_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407340_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407340_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407340_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407340_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407340_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058859,44.371193],[-73.056578,44.440101],[-73.128656,44.441305],[-73.130852,44.372394],[-73.058859,44.371193]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[648917.4,4914934.2,654656.4,4922592.6],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9565],"proj:transform":[0.6,0.0,648917.4,0.0,-0.5999999999999562,4922592.6,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407340_nw_18_h_20160804","bbox":[-73.130858,44.43369,-73.05657,44.503807],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407340_nw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407340_nw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407340_nw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407340_nw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407340_nw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407340_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407340_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058856,44.43369],[-73.05657,44.502603],[-73.128657,44.503807],[-73.130858,44.434892],[-73.058856,44.43369]]]},"collection":"naip","properties":{"gsd":0.5999999999999975,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[648758.4,4921876.2,654492.0,4929535.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12765,9556],"proj:transform":[0.5999999999999975,0.0,648758.4,0.0,-0.6,4929535.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407339_sw_18_h_20160804","bbox":[-73.255707,44.371262,-73.181712,44.441233],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407339_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407339_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407339_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407339_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407339_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407339_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407339_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183844,44.371262],[-73.181712,44.44011],[-73.253659,44.441233],[-73.255707,44.372382],[-73.183844,44.371262]]]},"collection":"naip","properties":{"gsd":0.5999999999999951,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[638970.0,4914713.4,644698.2,4922364.6],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12752,9547],"proj:transform":[0.5999999999999951,0.0,638970.0,0.0,-0.5999999999999416,4922364.6,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407339_se_18_h_20160804","bbox":[-73.193276,44.371228,-73.119141,44.44127],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407339_se_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407339_se_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407339_se_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407339_se_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407339_se_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407339_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407339_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121348,44.371228],[-73.119141,44.440106],[-73.191154,44.44127],[-73.193276,44.372389],[-73.121348,44.371228]]]},"collection":"naip","properties":{"gsd":0.5999999999999975,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[643944.0,4914822.0,649677.6,4922476.8],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9556],"proj:transform":[0.5999999999999975,0.0,643944.0,0.0,-0.5999999999999854,4922476.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407339_nw_18_h_20160804","bbox":[-73.255718,44.433764,-73.181702,44.503735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407339_nw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407339_nw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407339_nw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407339_nw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407339_nw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407339_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407339_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183839,44.433764],[-73.181702,44.502612],[-73.253666,44.503735],[-73.255718,44.434885],[-73.183839,44.433764]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[638821.2,4921656.0,644544.6,4929307.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12752,9539],"proj:transform":[0.6000000000000024,0.0,638821.2,0.0,-0.6000000000000146,4929307.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407339_ne_18_h_20160804","bbox":[-73.193288,44.433725,-73.11914,44.503772],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407339_ne_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407339_ne_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407339_ne_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407339_ne_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407339_ne_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407339_ne_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407339_ne_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121351,44.433725],[-73.11914,44.502608],[-73.191161,44.503772],[-73.193288,44.434886],[-73.121351,44.433725]]]},"collection":"naip","properties":{"gsd":0.5999999999999951,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[643789.8,4921764.0,649518.0,4929419.4],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12759,9547],"proj:transform":[0.5999999999999951,0.0,643789.8,0.0,-0.6000000000000292,4929419.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407332_sw_18_h_20160804","bbox":[-73.130862,44.496192,-73.05656,44.566308],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407332_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407332_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407332_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407332_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407332_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407332_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407332_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058851,44.496192],[-73.05656,44.565104],[-73.128656,44.566308],[-73.130862,44.497394],[-73.058851,44.496192]]]},"collection":"naip","properties":{"gsd":0.5999999999999951,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[648599.4,4928818.8,654327.6,4936477.8],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12765,9547],"proj:transform":[0.5999999999999951,0.0,648599.4,0.0,-0.6,4936477.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407332_nw_18_h_20160804","bbox":[-73.130871,44.558693,-73.056547,44.628809],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407332_nw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407332_nw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407332_nw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407332_nw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407332_nw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407332_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407332_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058843,44.558693],[-73.056547,44.627604],[-73.12866,44.628809],[-73.130871,44.559895],[-73.058843,44.558693]]]},"collection":"naip","properties":{"gsd":0.5999999999999902,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[648439.8,4935761.4,654163.2,4943420.4],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12765,9539],"proj:transform":[0.5999999999999902,0.0,648439.8,0.0,-0.6,4943420.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407331_sw_18_h_20160804","bbox":[-73.255727,44.496261,-73.181697,44.566236],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407331_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407331_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407331_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407331_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407331_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407331_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407331_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183839,44.496261],[-73.181697,44.565113],[-73.25367,44.566236],[-73.255727,44.497382],[-73.183839,44.496261]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[638672.4,4928598.0,644390.4,4936249.8],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12753,9530],"proj:transform":[0.6,0.0,638672.4,0.0,-0.5999999999999854,4936249.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407331_se_18_h_20160804","bbox":[-73.193298,44.496227,-73.119128,44.566273],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407331_se_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407331_se_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407331_se_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407331_se_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407331_se_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407331_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407331_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121345,44.496227],[-73.119128,44.565109],[-73.191167,44.566273],[-73.193298,44.497389],[-73.121345,44.496227]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[643635.6,4928706.6,649359.0,4936362.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12759,9539],"proj:transform":[0.6000000000000024,0.0,643635.6,0.0,-0.6000000000000292,4936362.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407331_nw_18_h_20160804","bbox":[-73.255734,44.558762,-73.181691,44.628737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407331_nw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407331_nw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407331_nw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407331_nw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407331_nw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407331_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407331_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183837,44.558762],[-73.181691,44.627613],[-73.253672,44.628737],[-73.255734,44.559883],[-73.183837,44.558762]]]},"collection":"naip","properties":{"gsd":0.5999999999999975,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[638523.6,4935540.6,644236.2,4943192.4],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12753,9521],"proj:transform":[0.5999999999999975,0.0,638523.6,0.0,-0.6000000000000584,4943192.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407331_ne_18_h_20160804","bbox":[-73.193306,44.558729,-73.119115,44.628769],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407331_ne_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407331_ne_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407331_ne_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407331_ne_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407331_ne_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407331_ne_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407331_ne_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121336,44.558729],[-73.119115,44.627604],[-73.19117,44.628769],[-73.193306,44.55989],[-73.121336,44.558729]]]},"collection":"naip","properties":{"gsd":0.5999999999999975,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[643481.4,4935649.2,649200.0,4943304.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9531],"proj:transform":[0.5999999999999975,0.0,643481.4,0.0,-0.5999999999999854,4943304.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407324_sw_18_h_20160804","bbox":[-73.130885,44.621189,-73.05654,44.691309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407324_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407324_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407324_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407324_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407324_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407324_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407324_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058841,44.621189],[-73.05654,44.690104],[-73.128669,44.691309],[-73.130885,44.622391],[-73.058841,44.621189]]]},"collection":"naip","properties":{"gsd":0.5999999999999975,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[648279.6,4942703.4,653998.2,4950363.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12766,9531],"proj:transform":[0.5999999999999975,0.0,648279.6,0.0,-0.5999999999999708,4950363.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407323_sw_18_h_20160804","bbox":[-73.255746,44.621263,-73.181681,44.691237],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407323_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407323_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407323_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407323_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407323_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407323_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407323_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183833,44.621263],[-73.181681,44.690113],[-73.25368,44.691237],[-73.255746,44.622384],[-73.183833,44.621263]]]},"collection":"naip","properties":{"gsd":0.6000000000000049,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[638374.2,4942483.2,644082.0,4950135.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12753,9513],"proj:transform":[0.6000000000000049,0.0,638374.2,0.0,-0.5999999999999854,4950135.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407323_se_18_h_20160804","bbox":[-73.193312,44.621229,-73.119107,44.691269],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407323_se_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407323_se_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407323_se_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407323_se_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407323_se_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407323_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407323_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121333,44.621229],[-73.119107,44.690104],[-73.191171,44.691269],[-73.193312,44.622391],[-73.121333,44.621229]]]},"collection":"naip","properties":{"gsd":0.6000000000000073,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[643327.2,4942591.8,649040.4,4950246.6],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9522],"proj:transform":[0.6000000000000073,0.0,643327.2,0.0,-0.5999999999999854,4950246.6,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407323_nw_18_h_20160804","bbox":[-73.255749,44.683763,-73.18167,44.753737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407323_nw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407323_nw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407323_nw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407323_nw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407323_nw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407323_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407323_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183826,44.683763],[-73.18167,44.752613],[-73.253678,44.753737],[-73.255749,44.684884],[-73.183826,44.683763]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[638225.4,4949425.8,643927.8,4957077.6],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12753,9504],"proj:transform":[0.6000000000000024,0.0,638225.4,0.0,-0.5999999999999854,4957077.6,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407323_ne_18_h_20160804","bbox":[-73.193323,44.683729,-73.119104,44.753774],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407323_ne_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407323_ne_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407323_ne_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407323_ne_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407323_ne_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407323_ne_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407323_ne_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121335,44.683729],[-73.119104,44.752609],[-73.191177,44.753774],[-73.193323,44.684891],[-73.121335,44.683729]]]},"collection":"naip","properties":{"gsd":0.5999999999999927,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[643172.4,4949534.4,648880.2,4957189.8],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12759,9513],"proj:transform":[0.5999999999999927,0.0,643172.4,0.0,-0.5999999999999562,4957189.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407316_nw_18_h_20160804","bbox":[-73.130908,44.808692,-73.056511,44.878806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407316_nw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407316_nw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407316_nw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407316_nw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407316_nw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407316_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407316_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058827,44.808692],[-73.056511,44.8776],[-73.128677,44.878806],[-73.130908,44.809895],[-73.058827,44.808692]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[647799.6,4963531.8,653502.6,4971190.8],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12765,9505],"proj:transform":[0.6,0.0,647799.6,0.0,-0.6,4971190.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407315_sw_18_h_20160804","bbox":[-73.255757,44.746263,-73.181664,44.816236],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407315_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407315_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407315_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407315_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407315_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407315_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407315_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183825,44.746263],[-73.181664,44.815111],[-73.253682,44.816236],[-73.255757,44.747384],[-73.183825,44.746263]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[638076.0,4956368.4,643773.0,4964020.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12753,9495],"proj:transform":[0.6,0.0,638076.0,0.0,-0.5999999999999854,4964020.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407315_se_18_h_20160804","bbox":[-73.193332,44.746229,-73.119091,44.816273],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407315_se_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407315_se_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407315_se_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407315_se_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407315_se_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407315_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407315_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121327,44.746229],[-73.119091,44.815108],[-73.191182,44.816273],[-73.193332,44.747391],[-73.121327,44.746229]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[643017.6,4956477.0,648720.6,4964132.4],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12759,9505],"proj:transform":[0.6,0.0,643017.6,0.0,-0.6000000000000292,4964132.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407315_nw_18_h_20160804","bbox":[-73.25577,44.808761,-73.181656,44.878734],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407315_nw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407315_nw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407315_nw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407315_nw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407315_nw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407315_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407315_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183822,44.808761],[-73.181656,44.87761],[-73.253691,44.878734],[-73.25577,44.809883],[-73.183822,44.808761]]]},"collection":"naip","properties":{"gsd":0.5999999999999951,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[637926.0,4963311.0,643618.2,4970962.8],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12753,9487],"proj:transform":[0.5999999999999951,0.0,637926.0,0.0,-0.5999999999999854,4970962.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407315_ne_18_h_20160804","bbox":[-73.193339,44.808728,-73.119084,44.878771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407315_ne_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407315_ne_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407315_ne_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407315_ne_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407315_ne_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407315_ne_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407315_ne_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121324,44.808728],[-73.119084,44.877606],[-73.191184,44.878771],[-73.193339,44.80989],[-73.121324,44.808728]]]},"collection":"naip","properties":{"gsd":0.5999999999999975,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[642862.8,4963419.6,648560.4,4971075.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12759,9496],"proj:transform":[0.5999999999999975,0.0,642862.8,0.0,-0.6000000000000292,4971075.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407308_sw_18_h_20160804","bbox":[-73.130921,44.87119,-73.056502,44.941309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407308_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407308_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407308_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407308_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407308_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407308_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407308_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058823,44.87119],[-73.056502,44.940103],[-73.128685,44.941309],[-73.130921,44.872394],[-73.058823,44.87119]]]},"collection":"naip","properties":{"gsd":0.5999999999999951,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[647638.8,4970474.4,653337.0,4978134.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12766,9497],"proj:transform":[0.5999999999999951,0.0,647638.8,0.0,-0.5999999999999708,4978134.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407308_nw_18_h_20160804","bbox":[-73.130924,44.933688,-73.056498,45.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407308_nw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407308_nw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407308_nw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407308_nw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407308_nw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407308_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407308_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058825,44.933688],[-73.056498,45.0026],[-73.128684,45.003806],[-73.130924,44.934891],[-73.058825,44.933688]]]},"collection":"naip","properties":{"gsd":0.6000000000000074,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[647478.6,4977417.0,653170.8,4985076.6],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12766,9487],"proj:transform":[0.6000000000000074,0.0,647478.6,0.0,-0.5999999999999708,4985076.6,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407307_sw_18_h_20160804","bbox":[-73.255774,44.871265,-73.181646,44.941237],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407307_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407307_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407307_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407307_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407307_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407307_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407307_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183816,44.871265],[-73.181646,44.940112],[-73.25369,44.941237],[-73.255774,44.872387],[-73.183816,44.871265]]]},"collection":"naip","properties":{"gsd":0.6000000000000049,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[637776.6,4970254.2,643463.4,4977906.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12753,9478],"proj:transform":[0.6000000000000049,0.0,637776.6,0.0,-0.5999999999999854,4977906.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407307_se_18_h_20160804","bbox":[-73.193344,44.871226,-73.119074,44.941269],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407307_se_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407307_se_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407307_se_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407307_se_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407307_se_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407307_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407307_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12132,44.871226],[-73.119074,44.940103],[-73.191184,44.941269],[-73.193344,44.872388],[-73.12132,44.871226]]]},"collection":"naip","properties":{"gsd":0.5999999999999951,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[642708.0,4970362.2,648400.2,4978017.6],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12759,9487],"proj:transform":[0.5999999999999951,0.0,642708.0,0.0,-0.5999999999999562,4978017.6,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407307_nw_18_h_20160804","bbox":[-73.255784,44.933763,-73.181634,45.003734],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407307_nw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407307_nw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407307_nw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407307_nw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407307_nw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407307_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407307_nw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183808,44.933763],[-73.181634,45.002609],[-73.253695,45.003734],[-73.255784,44.934885],[-73.183808,44.933763]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[637626.6,4977196.8,643308.6,4984848.6],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12753,9470],"proj:transform":[0.6,0.0,637626.6,0.0,-0.5999999999999854,4984848.6,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407307_ne_18_h_20160804","bbox":[-73.193354,44.933729,-73.11907,45.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407307_ne_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407307_ne_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407307_ne_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407307_ne_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407307_ne_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407307_ne_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407307_ne_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12132,44.933729],[-73.11907,45.002606],[-73.19119,45.003771],[-73.193354,44.934892],[-73.12132,44.933729]]]},"collection":"naip","properties":{"gsd":0.6000000000000049,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[642552.6,4977305.4,648239.4,4984960.8],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12759,9478],"proj:transform":[0.6000000000000049,0.0,642552.6,0.0,-0.5999999999999562,4984960.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_h_20160727","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_h_20160727"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_h_20160727","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_nw_18_h_20160727.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_nw_18_h_20160727.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_nw_18_h_20160727.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_h_20160727&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_h_20160727&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.5999999999999952,"datetime":"2016-07-27T00:00:00Z","naip:year":"2016","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.5999999999999952,0.0,640005.0,0.0,-0.5999999999999708,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_1_20140826_20141006","bbox":[-73.1308,43.996187,-73.056624,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_1_20140826_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_1_20140826_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407364_sw_18_1_20140826.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407364_sw_18_1_20140826.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407364_sw_18_1_20140826.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058875,43.996187],[-73.056624,44.065105],[-73.128632,44.066307],[-73.1308,43.997387],[-73.058875,43.996187]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-26T00:00:00Z","naip:year":"2014","proj:bbox":[649869.0,4873281.0,655639.0,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5770],"proj:transform":[1.0,0.0,649869.0,0.0,-1.0,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_nw_18_1_20140826_20141006","bbox":[-73.130807,44.058688,-73.056612,44.128808],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_nw_18_1_20140826_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_nw_18_1_20140826_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407364_nw_18_1_20140826.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407364_nw_18_1_20140826.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407364_nw_18_1_20140826.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_nw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_nw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058869,44.058688],[-73.056612,44.127605],[-73.128634,44.128808],[-73.130807,44.059888],[-73.058869,44.058688]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-26T00:00:00Z","naip:year":"2014","proj:bbox":[649711.0,4880223.0,655476.0,4887882.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5765],"proj:transform":[1.0,0.0,649711.0,0.0,-1.0,4887882.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407356_sw_18_1_20140826_20141006","bbox":[-73.130811,44.121188,-73.056611,44.191307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407356_sw_18_1_20140826_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407356_sw_18_1_20140826_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407356_sw_18_1_20140826.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407356_sw_18_1_20140826.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407356_sw_18_1_20140826.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407356_sw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407356_sw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058873,44.121188],[-73.056611,44.190104],[-73.128634,44.191307],[-73.130811,44.122388],[-73.058873,44.121188]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-26T00:00:00Z","naip:year":"2014","proj:bbox":[649553.0,4887165.0,655312.0,4894824.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5759],"proj:transform":[1.0,0.0,649553.0,0.0,-1.0,4894824.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_1_20140826_20141006","bbox":[-73.130791,43.933686,-73.056633,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_1_20140826_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_1_20140826_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307308_nw_18_1_20140826.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/43073/m_4307308_nw_18_1_20140826.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307308_nw_18_1_20140826.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.933686],[-73.056633,44.002604],[-73.128628,44.003806],[-73.130791,43.934885],[-73.05888,43.933686]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-26T00:00:00Z","naip:year":"2014","proj:bbox":[650027.0,4866339.0,655802.0,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5775],"proj:transform":[1.0,0.0,650027.0,0.0,-1.0,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_1_20140809_20141006","bbox":[-73.255658,43.996262,-73.181761,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_sw_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407363_sw_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_sw_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183866,43.996262],[-73.181761,44.065113],[-73.253637,44.066234],[-73.255658,43.997381],[-73.183866,43.996262]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[639858.0,4873061.0,645617.0,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5759],"proj:transform":[1.0,0.0,639858.0,0.0,-1.0,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_1_20140809_20141006","bbox":[-73.193235,43.996224,-73.119192,44.06627],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_se_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407363_se_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_se_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996224],[-73.119192,44.065108],[-73.191141,44.06627],[-73.193235,43.997383],[-73.12137,43.996224]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[644863.0,4873169.0,650628.0,4880824.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5765],"proj:transform":[1.0,0.0,644863.0,0.0,-1.0,4880824.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_nw_18_1_20140809_20141006","bbox":[-73.255671,44.058763,-73.181757,44.128735],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_nw_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_nw_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_nw_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407363_nw_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_nw_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_nw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_nw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183866,44.058763],[-73.181757,44.127613],[-73.253646,44.128735],[-73.255671,44.059882],[-73.183866,44.058763]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[639710.0,4880003.0,645464.0,4887654.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5754],"proj:transform":[1.0,0.0,639710.0,0.0,-1.0,4887654.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_ne_18_1_20140809_20141006","bbox":[-73.193245,44.058724,-73.119185,44.12877],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_ne_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_ne_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_ne_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407363_ne_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_ne_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_ne_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_ne_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121367,44.058724],[-73.119185,44.127608],[-73.191146,44.12877],[-73.193245,44.059884],[-73.121367,44.058724]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[644710.0,4880111.0,650470.0,4887766.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5760],"proj:transform":[1.0,0.0,644710.0,0.0,-1.0,4887766.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407355_sw_18_1_20140809_20141006","bbox":[-73.255683,44.121263,-73.18175,44.191235],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407355_sw_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407355_sw_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407355_sw_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407355_sw_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407355_sw_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407355_sw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407355_sw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183864,44.121263],[-73.18175,44.190112],[-73.253653,44.191235],[-73.255683,44.122383],[-73.183864,44.121263]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[639562.0,4886945.0,645311.0,4894596.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5749],"proj:transform":[1.0,0.0,639562.0,0.0,-1.0,4894596.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407355_se_18_1_20140809_20141006","bbox":[-73.193253,44.121225,-73.119174,44.19127],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407355_se_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407355_se_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407355_se_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407355_se_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407355_se_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407355_se_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407355_se_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121362,44.121225],[-73.119174,44.190107],[-73.191149,44.19127],[-73.193253,44.122384],[-73.121362,44.121225]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[644557.0,4887053.0,650312.0,4894708.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5755],"proj:transform":[1.0,0.0,644557.0,0.0,-1.0,4894708.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_1_20140809_20141006","bbox":[-73.255655,43.933761,-73.181776,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307307_nw_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/43073/m_4307307_nw_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307307_nw_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183876,43.933761],[-73.181776,44.002612],[-73.253638,44.003733],[-73.255655,43.934879],[-73.183876,43.933761]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[640005.0,4866119.0,645769.0,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5764],"proj:transform":[1.0,0.0,640005.0,0.0,-1.0,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_1_20140809_20141006","bbox":[-73.193223,43.933722,-73.119198,44.003769],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307307_ne_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/43073/m_4307307_ne_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307307_ne_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121371,43.933722],[-73.119198,44.002607],[-73.191133,44.003769],[-73.193223,43.934881],[-73.121371,43.933722]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[645016.0,4866227.0,650786.0,4873882.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5770],"proj:transform":[1.0,0.0,645016.0,0.0,-1.0,4873882.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4507364_sw_18_1_20140711_20141006","bbox":[-73.130943,44.996189,-73.056487,45.06631],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4507364_sw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4507364_sw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/45073/m_4507364_sw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/45073/m_4507364_sw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/45073/m_4507364_sw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4507364_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4507364_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058818,44.996189],[-73.056487,45.065103],[-73.128698,45.06631],[-73.130943,44.997392],[-73.058818,44.996189]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[647317.0,4984360.0,653005.0,4992020.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7660,5688],"proj:transform":[1.0,0.0,647317.0,0.0,-1.0,4992020.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4507363_sw_18_1_20140711_20141006","bbox":[-73.255799,44.996265,-73.181629,45.066238],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4507363_sw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4507363_sw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/45073/m_4507363_sw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/45073/m_4507363_sw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/45073/m_4507363_sw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4507363_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4507363_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183809,44.996265],[-73.181629,45.065113],[-73.253706,45.066238],[-73.255799,44.997388],[-73.183809,44.996265]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[637476.0,4984140.0,643153.0,4991792.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7652,5677],"proj:transform":[1.0,0.0,637476.0,0.0,-1.0,4991792.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4507363_se_18_1_20140711_20141006","bbox":[-73.193365,44.996226,-73.119058,45.066273],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4507363_se_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4507363_se_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/45073/m_4507363_se_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/45073/m_4507363_se_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/45073/m_4507363_se_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4507363_se_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4507363_se_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121313,44.996226],[-73.119058,45.065107],[-73.191196,45.066273],[-73.193365,44.997389],[-73.121313,44.996226]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[642397.0,4984248.0,648079.0,4991904.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7656,5682],"proj:transform":[1.0,0.0,642397.0,0.0,-1.0,4991904.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407356_nw_18_1_20140711_20141006","bbox":[-73.130826,44.183687,-73.056595,44.253806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407356_nw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407356_nw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407356_nw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407356_nw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407356_nw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407356_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407356_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058861,44.183687],[-73.056595,44.252603],[-73.128644,44.253806],[-73.130826,44.184888],[-73.058861,44.183687]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[649394.0,4894107.0,655149.0,4901766.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5755],"proj:transform":[1.0,0.0,649394.0,0.0,-1.0,4901766.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407355_nw_18_1_20140711_20141006","bbox":[-73.255692,44.183763,-73.181742,44.253734],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407355_nw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407355_nw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407355_nw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407355_nw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407355_nw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407355_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407355_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.18386,44.183763],[-73.181742,44.252611],[-73.253657,44.253734],[-73.255692,44.184883],[-73.18386,44.183763]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[639414.0,4893887.0,645158.0,4901538.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5744],"proj:transform":[1.0,0.0,639414.0,0.0,-1.0,4901538.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407355_ne_18_1_20140711_20141006","bbox":[-73.193259,44.183724,-73.119162,44.253769],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407355_ne_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407355_ne_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407355_ne_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407355_ne_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407355_ne_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407355_ne_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407355_ne_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121354,44.183724],[-73.119162,44.252606],[-73.191151,44.253769],[-73.193259,44.184884],[-73.121354,44.183724]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[644404.0,4893995.0,650154.0,4901650.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5750],"proj:transform":[1.0,0.0,644404.0,0.0,-1.0,4901650.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407348_sw_18_1_20140711_20141006","bbox":[-73.130839,44.246186,-73.056589,44.316305],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407348_sw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407348_sw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407348_sw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407348_sw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407348_sw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407348_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407348_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058861,44.246186],[-73.056589,44.315101],[-73.128652,44.316305],[-73.130839,44.247387],[-73.058861,44.246186]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[649235.0,4901049.0,654985.0,4908708.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5750],"proj:transform":[1.0,0.0,649235.0,0.0,-1.0,4908708.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407348_nw_18_1_20140711_20141006","bbox":[-73.130836,44.308694,-73.056581,44.378811],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407348_nw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407348_nw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407348_nw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407348_nw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407348_nw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407348_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407348_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058857,44.308694],[-73.056581,44.377608],[-73.128644,44.378811],[-73.130836,44.309894],[-73.058857,44.308694]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[649077.0,4907992.0,654821.0,4915651.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5744],"proj:transform":[1.0,0.0,649077.0,0.0,-1.0,4915651.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407347_sw_18_1_20140711_20141006","bbox":[-73.255699,44.246262,-73.181731,44.316232],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407347_sw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407347_sw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407347_sw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407347_sw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407347_sw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407347_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407347_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183853,44.246262],[-73.181731,44.31511],[-73.25366,44.316232],[-73.255699,44.247382],[-73.183853,44.246262]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[639266.0,4900829.0,645005.0,4908480.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5739],"proj:transform":[1.0,0.0,639266.0,0.0,-1.0,4908480.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407347_se_18_1_20140711_20141006","bbox":[-73.193263,44.246223,-73.11916,44.316277],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407347_se_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407347_se_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407347_se_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407347_se_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407347_se_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407347_se_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407347_se_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121357,44.246223],[-73.11916,44.315113],[-73.191149,44.316277],[-73.193263,44.247383],[-73.121357,44.246223]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[644251.0,4900937.0,649995.0,4908593.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7656,5744],"proj:transform":[1.0,0.0,644251.0,0.0,-1.0,4908593.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407347_nw_18_1_20140711_20141006","bbox":[-73.255704,44.30876,-73.181717,44.378739],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407347_nw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407347_nw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407347_nw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407347_nw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407347_nw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407347_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407347_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183845,44.30876],[-73.181717,44.377616],[-73.25366,44.378739],[-73.255704,44.30988],[-73.183845,44.30876]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[639118.0,4907771.0,644852.0,4915423.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7652,5734],"proj:transform":[1.0,0.0,639118.0,0.0,-1.0,4915423.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407347_ne_18_1_20140711_20141006","bbox":[-73.193277,44.308722,-73.119155,44.378774],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407347_ne_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407347_ne_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407347_ne_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407347_ne_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407347_ne_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407347_ne_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407347_ne_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121357,44.308722],[-73.119155,44.377611],[-73.191159,44.378774],[-73.193277,44.309882],[-73.121357,44.308722]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[644097.0,4907879.0,649836.0,4915535.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7656,5739],"proj:transform":[1.0,0.0,644097.0,0.0,-1.0,4915535.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407340_sw_18_1_20140711_20141006","bbox":[-73.130857,44.371191,-73.05657,44.441309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407340_sw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407340_sw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407340_sw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407340_sw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407340_sw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407340_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407340_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058851,44.371191],[-73.05657,44.440104],[-73.128661,44.441309],[-73.130857,44.372393],[-73.058851,44.371191]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[648917.0,4914934.0,654657.0,4922593.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5740],"proj:transform":[1.0,0.0,648917.0,0.0,-1.0,4922593.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407340_nw_18_1_20140711_20141006","bbox":[-73.130863,44.433688,-73.05657,44.503805],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407340_nw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407340_nw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407340_nw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407340_nw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407340_nw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407340_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407340_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058856,44.433688],[-73.05657,44.502601],[-73.128662,44.503805],[-73.130863,44.43489],[-73.058856,44.433688]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[648758.0,4921876.0,654492.0,4929535.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5734],"proj:transform":[1.0,0.0,648758.0,0.0,-1.0,4929535.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407339_sw_18_1_20140711_20141006","bbox":[-73.255707,44.371258,-73.181715,44.441236],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407339_sw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407339_sw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407339_sw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407339_sw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407339_sw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407339_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407339_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183847,44.371258],[-73.181715,44.440113],[-73.253659,44.441236],[-73.255707,44.372378],[-73.183847,44.371258]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[638970.0,4914713.0,644698.0,4922365.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7652,5728],"proj:transform":[1.0,0.0,638970.0,0.0,-1.0,4922365.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407339_se_18_1_20140711_20141006","bbox":[-73.193276,44.371228,-73.119136,44.441272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407339_se_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407339_se_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407339_se_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407339_se_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407339_se_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407339_se_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407339_se_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121343,44.371228],[-73.119136,44.440108],[-73.191154,44.441272],[-73.193276,44.372389],[-73.121343,44.371228]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[643944.0,4914822.0,649678.0,4922477.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5734],"proj:transform":[1.0,0.0,643944.0,0.0,-1.0,4922477.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407339_nw_18_1_20140711_20141006","bbox":[-73.25572,44.433764,-73.181697,44.503733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407339_nw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407339_nw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407339_nw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407339_nw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407339_nw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407339_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407339_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183834,44.433764],[-73.181697,44.50261],[-73.253668,44.503733],[-73.25572,44.434885],[-73.183834,44.433764]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[638821.0,4921656.0,644545.0,4929307.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5724],"proj:transform":[1.0,0.0,638821.0,0.0,-1.0,4929307.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407339_ne_18_1_20140711_20141006","bbox":[-73.193286,44.433725,-73.11914,44.503768],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407339_ne_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407339_ne_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407339_ne_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407339_ne_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407339_ne_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407339_ne_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407339_ne_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121351,44.433725],[-73.11914,44.502605],[-73.191159,44.503768],[-73.193286,44.434886],[-73.121351,44.433725]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[643790.0,4921764.0,649518.0,4929419.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5728],"proj:transform":[1.0,0.0,643790.0,0.0,-1.0,4929419.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407332_sw_18_1_20140711_20141006","bbox":[-73.130867,44.496185,-73.056555,44.56631],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407332_sw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407332_sw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407332_sw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407332_sw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407332_sw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407332_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407332_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058846,44.496185],[-73.056555,44.565106],[-73.128661,44.56631],[-73.130867,44.497387],[-73.058846,44.496185]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[648599.0,4928818.0,654328.0,4936478.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7660,5729],"proj:transform":[1.0,0.0,648599.0,0.0,-1.0,4936478.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407332_nw_18_1_20140711_20141006","bbox":[-73.130881,44.55869,-73.05655,44.628806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407332_nw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407332_nw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407332_nw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407332_nw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407332_nw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407332_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407332_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058846,44.55869],[-73.05655,44.627601],[-73.12867,44.628806],[-73.130881,44.559892],[-73.058846,44.55869]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[648439.0,4935761.0,654163.0,4943420.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5724],"proj:transform":[1.0,0.0,648439.0,0.0,-1.0,4943420.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407331_sw_18_1_20140711_20141006","bbox":[-73.255732,44.496261,-73.18169,44.566238],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407331_sw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407331_sw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407331_sw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407331_sw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407331_sw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407331_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407331_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183832,44.496261],[-73.18169,44.565114],[-73.253675,44.566238],[-73.255732,44.497382],[-73.183832,44.496261]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[638672.0,4928598.0,644391.0,4936250.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7652,5719],"proj:transform":[1.0,0.0,638672.0,0.0,-1.0,4936250.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407331_se_18_1_20140711_20141006","bbox":[-73.193293,44.496222,-73.119128,44.566273],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407331_se_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407331_se_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407331_se_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407331_se_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407331_se_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407331_se_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407331_se_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121345,44.496222],[-73.119128,44.565109],[-73.191161,44.566273],[-73.193293,44.497383],[-73.121345,44.496222]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[643636.0,4928706.0,649359.0,4936362.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7656,5723],"proj:transform":[1.0,0.0,643636.0,0.0,-1.0,4936362.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407331_nw_18_1_20140711_20141006","bbox":[-73.255741,44.558766,-73.181681,44.628734],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407331_nw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407331_nw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407331_nw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407331_nw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407331_nw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407331_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407331_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183827,44.558766],[-73.181681,44.62761],[-73.25368,44.628734],[-73.255741,44.559887],[-73.183827,44.558766]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[638523.0,4935541.0,644237.0,4943192.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5714],"proj:transform":[1.0,0.0,638523.0,0.0,-1.0,4943192.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407331_ne_18_1_20140711_20141006","bbox":[-73.193311,44.558727,-73.119115,44.628769],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407331_ne_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407331_ne_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407331_ne_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407331_ne_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407331_ne_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407331_ne_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407331_ne_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121336,44.558727],[-73.119115,44.627604],[-73.191175,44.628769],[-73.193311,44.559888],[-73.121336,44.558727]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[643481.0,4935649.0,649200.0,4943304.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5719],"proj:transform":[1.0,0.0,643481.0,0.0,-1.0,4943304.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407324_sw_18_1_20140711_20141006","bbox":[-73.130881,44.621185,-73.056542,44.691309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407324_sw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407324_sw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407324_sw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407324_sw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407324_sw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407324_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407324_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058844,44.621185],[-73.056542,44.690104],[-73.128664,44.691309],[-73.130881,44.622387],[-73.058844,44.621185]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[648280.0,4942703.0,653998.0,4950363.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7660,5718],"proj:transform":[1.0,0.0,648280.0,0.0,-1.0,4950363.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407324_nw_18_1_20140711_20141006","bbox":[-73.13089,44.683689,-73.056532,44.753812],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407324_nw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407324_nw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407324_nw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407324_nw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407324_nw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407324_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407324_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058839,44.683689],[-73.056532,44.752607],[-73.128669,44.753812],[-73.13089,44.684891],[-73.058839,44.683689]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[648120.0,4949646.0,653833.0,4957306.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7660,5713],"proj:transform":[1.0,0.0,648120.0,0.0,-1.0,4957306.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407323_sw_18_1_20140711_20141006","bbox":[-73.255749,44.621261,-73.181681,44.691237],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407323_sw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407323_sw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407323_sw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407323_sw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407323_sw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407323_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407323_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183833,44.621261],[-73.181681,44.690113],[-73.253683,44.691237],[-73.255749,44.622382],[-73.183833,44.621261]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[638374.0,4942483.0,644082.0,4950135.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7652,5708],"proj:transform":[1.0,0.0,638374.0,0.0,-1.0,4950135.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407323_se_18_1_20140711_20141006","bbox":[-73.193315,44.621222,-73.119112,44.691272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407323_se_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407323_se_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407323_se_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407323_se_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407323_se_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407323_se_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407323_se_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121338,44.621222],[-73.119112,44.690108],[-73.191173,44.691272],[-73.193315,44.622384],[-73.121338,44.621222]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[643327.0,4942591.0,649040.0,4950247.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7656,5713],"proj:transform":[1.0,0.0,643327.0,0.0,-1.0,4950247.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407323_nw_18_1_20140711_20141006","bbox":[-73.255754,44.683765,-73.181668,44.75374],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407323_nw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407323_nw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407323_nw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407323_nw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407323_nw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407323_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407323_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183823,44.683765],[-73.181668,44.752616],[-73.253683,44.75374],[-73.255754,44.684886],[-73.183823,44.683765]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[638225.0,4949426.0,643928.0,4957078.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7652,5703],"proj:transform":[1.0,0.0,638225.0,0.0,-1.0,4957078.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407323_ne_18_1_20140711_20141006","bbox":[-73.193328,44.683726,-73.119094,44.753776],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407323_ne_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407323_ne_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407323_ne_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407323_ne_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407323_ne_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407323_ne_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407323_ne_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121325,44.683726],[-73.119094,44.752611],[-73.191182,44.753776],[-73.193328,44.684888],[-73.121325,44.683726]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[643172.0,4949534.0,648881.0,4957190.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7656,5709],"proj:transform":[1.0,0.0,643172.0,0.0,-1.0,4957190.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407316_sw_18_1_20140711_20141006","bbox":[-73.130897,44.746192,-73.05652,44.816306],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407316_sw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407316_sw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407316_sw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407316_sw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407316_sw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407316_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407316_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058832,44.746192],[-73.05652,44.8151],[-73.128672,44.816306],[-73.130897,44.747394],[-73.058832,44.746192]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[647960.0,4956589.0,653668.0,4964248.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5708],"proj:transform":[1.0,0.0,647960.0,0.0,-1.0,4964248.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407316_nw_18_1_20140711_20141006","bbox":[-73.130915,44.808685,-73.056506,44.878808],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407316_nw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407316_nw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407316_nw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407316_nw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407316_nw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407316_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407316_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058823,44.808685],[-73.056506,44.877602],[-73.128685,44.878808],[-73.130915,44.809888],[-73.058823,44.808685]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[647799.0,4963531.0,653503.0,4971191.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7660,5704],"proj:transform":[1.0,0.0,647799.0,0.0,-1.0,4971191.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407315_sw_18_1_20140711_20141006","bbox":[-73.255757,44.746259,-73.181665,44.816234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407315_sw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407315_sw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407315_sw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407315_sw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407315_sw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407315_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407315_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183825,44.746259],[-73.181665,44.81511],[-73.253682,44.816234],[-73.255757,44.747381],[-73.183825,44.746259]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[638076.0,4956368.0,643773.0,4964020.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7652,5697],"proj:transform":[1.0,0.0,638076.0,0.0,-1.0,4964020.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407315_se_18_1_20140711_20141006","bbox":[-73.193327,44.746229,-73.119086,44.816269],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407315_se_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407315_se_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407315_se_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407315_se_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407315_se_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407315_se_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407315_se_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121322,44.746229],[-73.119086,44.815104],[-73.191177,44.816269],[-73.193327,44.747391],[-73.121322,44.746229]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[643018.0,4956477.0,648721.0,4964132.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5703],"proj:transform":[1.0,0.0,643018.0,0.0,-1.0,4964132.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407315_nw_18_1_20140711_20141006","bbox":[-73.25577,44.808761,-73.181646,44.878736],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407315_nw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407315_nw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407315_nw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407315_nw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407315_nw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407315_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407315_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183812,44.808761],[-73.181646,44.877611],[-73.253691,44.878736],[-73.25577,44.809883],[-73.183812,44.808761]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[637926.0,4963311.0,643619.0,4970963.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7652,5693],"proj:transform":[1.0,0.0,637926.0,0.0,-1.0,4970963.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407315_ne_18_1_20140711_20141006","bbox":[-73.193337,44.808722,-73.119076,44.878771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407315_ne_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407315_ne_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407315_ne_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407315_ne_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407315_ne_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407315_ne_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407315_ne_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121317,44.808722],[-73.119076,44.877606],[-73.191182,44.878771],[-73.193337,44.809885],[-73.121317,44.808722]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[642863.0,4963419.0,648561.0,4971075.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7656,5698],"proj:transform":[1.0,0.0,642863.0,0.0,-1.0,4971075.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407308_sw_18_1_20140711_20141006","bbox":[-73.130918,44.871187,-73.056502,44.941309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407308_sw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407308_sw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407308_sw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407308_sw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407308_sw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407308_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407308_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058823,44.871187],[-73.056502,44.940103],[-73.128683,44.941309],[-73.130918,44.87239],[-73.058823,44.871187]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[647639.0,4970474.0,653337.0,4978134.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7660,5698],"proj:transform":[1.0,0.0,647639.0,0.0,-1.0,4978134.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407308_nw_18_1_20140711_20141006","bbox":[-73.130932,44.933688,-73.056495,45.00381],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407308_nw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407308_nw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407308_nw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407308_nw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407308_nw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407308_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407308_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058822,44.933688],[-73.056495,45.002604],[-73.128691,45.00381],[-73.130932,44.934891],[-73.058822,44.933688]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[647478.0,4977417.0,653171.0,4985077.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7660,5693],"proj:transform":[1.0,0.0,647478.0,0.0,-1.0,4985077.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407307_sw_18_1_20140711_20141006","bbox":[-73.255782,44.871263,-73.181639,44.941237],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407307_sw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407307_sw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407307_sw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407307_sw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407307_sw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407307_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407307_sw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183808,44.871263],[-73.181639,44.940112],[-73.253698,44.941237],[-73.255782,44.872385],[-73.183808,44.871263]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[637776.0,4970254.0,643464.0,4977906.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7652,5688],"proj:transform":[1.0,0.0,637776.0,0.0,-1.0,4977906.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407307_se_18_1_20140711_20141006","bbox":[-73.193344,44.871224,-73.119077,44.941272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407307_se_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407307_se_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407307_se_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407307_se_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407307_se_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407307_se_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407307_se_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121322,44.871224],[-73.119077,44.940107],[-73.191184,44.941272],[-73.193344,44.872387],[-73.121322,44.871224]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[642708.0,4970362.0,648400.0,4978018.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7656,5692],"proj:transform":[1.0,0.0,642708.0,0.0,-1.0,4978018.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407307_nw_18_1_20140711_20141006","bbox":[-73.255792,44.933764,-73.181629,45.003738],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407307_nw_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407307_nw_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407307_nw_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407307_nw_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407307_nw_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407307_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407307_nw_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183803,44.933764],[-73.181629,45.002613],[-73.253703,45.003738],[-73.255792,44.934887],[-73.183803,44.933764]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[637626.0,4977197.0,643309.0,4984849.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7652,5683],"proj:transform":[1.0,0.0,637626.0,0.0,-1.0,4984849.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407307_ne_18_1_20140711_20141006","bbox":[-73.193362,44.933725,-73.119062,45.003773],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407307_ne_18_1_20140711_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407307_ne_18_1_20140711_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407307_ne_18_1_20140711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407307_ne_18_1_20140711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407307_ne_18_1_20140711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407307_ne_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407307_ne_18_1_20140711_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121313,44.933725],[-73.119062,45.002607],[-73.191197,45.003773],[-73.193362,44.934888],[-73.121313,44.933725]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-07-11T00:00:00Z","naip:year":"2014","proj:bbox":[642552.0,4977305.0,648240.0,4984961.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7656,5688],"proj:transform":[1.0,0.0,642552.0,0.0,-1.0,4984961.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '20103' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:50:16 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125015Z-167d46d96d8znrdrhC1DEN4cgc000000067g000000003f58 status: code: 200 message: OK version: 1 TestConformsTo.test_changing_conforms_to_changes_behavior.yaml000066400000000000000000000725611503646565400363360ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_clientinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v0 response: body: string: '{"stac_version":"1.0.0-beta.2","stac_api_version":"0.9.0","id":"earth-search","title":"Earth Search","description":"A STAC API of AWS Public Datasets powered by stac-server","links":[{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l1c"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs"},{"rel":"child","href":"https://earth-search.aws.element84.com/v0/collections/landsat-8-l1-c1"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","href":"https://earth-search.aws.element84.com/v0/api"},{"rel":"conformance","type":"application/json","href":"https://earth-search.aws.element84.com/v0/conformance"},{"rel":"children","type":"application/json","href":"https://earth-search.aws.element84.com/v0/collections"},{"rel":"self","type":"application/json","href":"https://earth-search.aws.element84.com/v0/"},{"rel":"search","type":"application/json","href":"https://earth-search.aws.element84.com/v0/search"},{"rel":"docs","href":"https://stac-utils.github.io/stac-server/"}]}' headers: Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Origin: - '*' Connection: - keep-alive Content-Length: - '1180' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:31 GMT Via: - 1.1 12e4fc9256386a4cd8f000b9caa3e012.cloudfront.net (CloudFront) X-Amz-Cf-Id: - AU36_SZ4IveNR6nIxqlEPItufhN8F47uoa6SncPiKyxr5jiLYBCfbQ== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f197-5216d9cc0dbe86cd4fe5ec43;Parent=133133c11e81272a;Sampled=0;Lineage=1:308471e4:0 X-Cache: - Miss from cloudfront x-amz-apigw-id: - N2qvtFFFvHcElcA= x-amzn-RequestId: - ddf1f97d-b4b7-4f0b-a606-2b6c7450fce8 status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a response: body: string: '{"id":"sentinel-s2-l2a","stac_version":"1.0.0-beta.2","description":"Sentinel-2a and Sentinel-2b imagery, processed to Level 2A (Surface Reflectance)","links":[{"rel":"self","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"about","href":"https://github.com/stac-utils/stac-sentinel"},{"rel":"parent","href":"https://earth-search.aws.element84.com/v0/"},{"rel":"root","href":"https://earth-search.aws.element84.com/v0/"},{"rel":"items","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a/items"}],"stac_extensions":["item-assets"],"title":"Sentinel 2 L2A","keywords":["sentinel","earth observation","esa"],"providers":[{"name":"ESA","roles":["producer"],"url":"https://earth.esa.int/web/guest/home"},{"name":"Sinergise","roles":["processor"],"url":"https://registry.opendata.aws/sentinel-2/"},{"name":"AWS","roles":["host"],"url":"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/"},{"name":"Element 84","roles":["processor"],"url":"https://element84.com"}],"summaries":{"platform":["sentinel-2a","sentinel-2b"],"constellation":["sentinel-2"],"instruments":["msi"],"gsd":[10],"view:off_nadir":[0]},"item_assets":{"thumbnail":{"title":"Thumbnail","type":"image/png","roles":["thumbnail"]},"overview":{"title":"True color image","type":"image/jp2","roles":["overview"],"gsd":10,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}]},"info":{"title":"Original JSON metadata","type":"application/json","roles":["metadata"]},"metadata":{"title":"Original XML metadata","type":"application/xml","roles":["metadata"]},"visual":{"title":"True color image","type":"image/jp2","roles":["overview"],"gsd":10,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}]},"visual_20m":{"title":"True color image","type":"image/jp2","roles":["overview"],"gsd":20,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}]},"visual_60m":{"title":"True color image","type":"image/jp2","roles":["overview"],"gsd":60,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}]},"B01":{"title":"Band 1 (coastal)","type":"image/jp2","roles":["data"],"gsd":60,"eo:bands":[{"name":"B01","common_name":"coastal","center_wavelength":0.4439,"full_width_half_max":0.027}]},"B02":{"title":"Band 2 (blue)","type":"image/jp2","roles":["data"],"gsd":10,"eo:bands":[{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}]},"B03":{"title":"Band 3 (green)","type":"image/jp2","roles":["data"],"gsd":10,"eo:bands":[{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"title":"Band 4 (red)","type":"image/jp2","roles":["data"],"gsd":10,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038}]},"B05":{"title":"Band 5","type":"image/jp2","roles":["data"],"gsd":20,"eo:bands":[{"name":"B05","center_wavelength":0.7039,"full_width_half_max":0.019}]},"B06":{"title":"Band 6","type":"image/jp2","roles":["data"],"gsd":20,"eo:bands":[{"name":"B06","center_wavelength":0.7402,"full_width_half_max":0.018}]},"B07":{"title":"Band 7","type":"image/jp2","roles":["data"],"gsd":20,"eo:bands":[{"name":"B07","center_wavelength":0.7825,"full_width_half_max":0.028}]},"B08":{"title":"Band 8 (nir)","type":"image/jp2","roles":["data"],"gsd":10,"eo:bands":[{"name":"B08","common_name":"nir","center_wavelength":0.8351,"full_width_half_max":0.145}]},"B8A":{"title":"Band 8A","type":"image/jp2","roles":["data"],"gsd":20,"eo:bands":[{"name":"B8A","center_wavelength":0.8648,"full_width_half_max":0.033}]},"B09":{"title":"Band 9","type":"image/jp2","roles":["data"],"gsd":60,"eo:bands":[{"name":"B09","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"title":"Band 11 (swir16)","type":"image/jp2","roles":["data"],"gsd":20,"eo:bands":[{"name":"B11","common_name":"swir16","center_wavelength":1.6137,"full_width_half_max":0.143}]},"B12":{"title":"Band 12 (swir22)","type":"image/jp2","roles":["data"],"gsd":20,"eo:bands":[{"name":"B12","common_name":"swir22","center_wavelength":2.22024,"full_width_half_max":0.242}]},"AOT":{"title":"Aerosol Optical Thickness (AOT)","type":"image/jp2","roles":["data"]},"WVP":{"title":"Water Vapour (WVP)","type":"image/jp2","roles":["data"]},"SCL":{"title":"Scene Classification Map (SCL)","type":"image/jp2","roles":["data"]}},"extent":{"spatial":{"bbox":[[-180,-90,180,90]]},"temporal":{"interval":[["2015-06-27T10:25:31.456000Z",null]]}},"license":"proprietary"}' headers: Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Origin: - '*' Connection: - keep-alive Content-Length: - '5465' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:31 GMT Via: - 1.1 9d8f66b0c71d2e8a1b8c6f76102da8ca.cloudfront.net (CloudFront) X-Amz-Cf-Id: - 1XLPB_HKCRe1V0nKUJx92idkKNGORULy24G8VnFeyeB30HW7dSZdgQ== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f197-19edbe1c6ef1895f63623c5e;Parent=69c4ae250faa586e;Sampled=0;Lineage=1:308471e4:0 X-Cache: - Miss from cloudfront x-amz-apigw-id: - N2qvuE0yvHcEvQA= x-amzn-RequestId: - b6332dfa-46aa-46af-a693-a48c6e128c9d status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v0/collections response: body: string: '{"collections":[{"id":"sentinel-s2-l2a","stac_version":"1.0.0-beta.2","description":"Sentinel-2a and Sentinel-2b imagery, processed to Level 2A (Surface Reflectance)","links":[{"rel":"self","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"about","href":"https://github.com/stac-utils/stac-sentinel"},{"rel":"parent","href":"https://earth-search.aws.element84.com/v0/"},{"rel":"root","href":"https://earth-search.aws.element84.com/v0/"},{"rel":"items","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a/items"}],"stac_extensions":["item-assets"],"title":"Sentinel 2 L2A","keywords":["sentinel","earth observation","esa"],"providers":[{"name":"ESA","roles":["producer"],"url":"https://earth.esa.int/web/guest/home"},{"name":"Sinergise","roles":["processor"],"url":"https://registry.opendata.aws/sentinel-2/"},{"name":"AWS","roles":["host"],"url":"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/"},{"name":"Element 84","roles":["processor"],"url":"https://element84.com"}],"summaries":{"platform":["sentinel-2a","sentinel-2b"],"constellation":["sentinel-2"],"instruments":["msi"],"gsd":[10],"view:off_nadir":[0]},"item_assets":{"thumbnail":{"title":"Thumbnail","type":"image/png","roles":["thumbnail"]},"overview":{"title":"True color image","type":"image/jp2","roles":["overview"],"gsd":10,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}]},"info":{"title":"Original JSON metadata","type":"application/json","roles":["metadata"]},"metadata":{"title":"Original XML metadata","type":"application/xml","roles":["metadata"]},"visual":{"title":"True color image","type":"image/jp2","roles":["overview"],"gsd":10,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}]},"visual_20m":{"title":"True color image","type":"image/jp2","roles":["overview"],"gsd":20,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}]},"visual_60m":{"title":"True color image","type":"image/jp2","roles":["overview"],"gsd":60,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}]},"B01":{"title":"Band 1 (coastal)","type":"image/jp2","roles":["data"],"gsd":60,"eo:bands":[{"name":"B01","common_name":"coastal","center_wavelength":0.4439,"full_width_half_max":0.027}]},"B02":{"title":"Band 2 (blue)","type":"image/jp2","roles":["data"],"gsd":10,"eo:bands":[{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}]},"B03":{"title":"Band 3 (green)","type":"image/jp2","roles":["data"],"gsd":10,"eo:bands":[{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"title":"Band 4 (red)","type":"image/jp2","roles":["data"],"gsd":10,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038}]},"B05":{"title":"Band 5","type":"image/jp2","roles":["data"],"gsd":20,"eo:bands":[{"name":"B05","center_wavelength":0.7039,"full_width_half_max":0.019}]},"B06":{"title":"Band 6","type":"image/jp2","roles":["data"],"gsd":20,"eo:bands":[{"name":"B06","center_wavelength":0.7402,"full_width_half_max":0.018}]},"B07":{"title":"Band 7","type":"image/jp2","roles":["data"],"gsd":20,"eo:bands":[{"name":"B07","center_wavelength":0.7825,"full_width_half_max":0.028}]},"B08":{"title":"Band 8 (nir)","type":"image/jp2","roles":["data"],"gsd":10,"eo:bands":[{"name":"B08","common_name":"nir","center_wavelength":0.8351,"full_width_half_max":0.145}]},"B8A":{"title":"Band 8A","type":"image/jp2","roles":["data"],"gsd":20,"eo:bands":[{"name":"B8A","center_wavelength":0.8648,"full_width_half_max":0.033}]},"B09":{"title":"Band 9","type":"image/jp2","roles":["data"],"gsd":60,"eo:bands":[{"name":"B09","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"title":"Band 11 (swir16)","type":"image/jp2","roles":["data"],"gsd":20,"eo:bands":[{"name":"B11","common_name":"swir16","center_wavelength":1.6137,"full_width_half_max":0.143}]},"B12":{"title":"Band 12 (swir22)","type":"image/jp2","roles":["data"],"gsd":20,"eo:bands":[{"name":"B12","common_name":"swir22","center_wavelength":2.22024,"full_width_half_max":0.242}]},"AOT":{"title":"Aerosol Optical Thickness (AOT)","type":"image/jp2","roles":["data"]},"WVP":{"title":"Water Vapour (WVP)","type":"image/jp2","roles":["data"]},"SCL":{"title":"Scene Classification Map (SCL)","type":"image/jp2","roles":["data"]}},"extent":{"spatial":{"bbox":[[-180,-90,180,90]]},"temporal":{"interval":[["2015-06-27T10:25:31.456000Z",null]]}},"license":"proprietary"},{"id":"sentinel-s2-l1c","stac_version":"1.0.0-beta.2","description":"Sentinel-2a and Sentinel-2b imagery, processed to Level 1C (Top-Of-Atmosphere Geometrically Corrected)","links":[{"rel":"self","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l1c"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"about","href":"https://github.com/stac-utils/stac-sentinel"},{"rel":"parent","href":"https://earth-search.aws.element84.com/v0/"},{"rel":"root","href":"https://earth-search.aws.element84.com/v0/"},{"rel":"items","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l1c/items"}],"stac_extensions":["item-assets"],"title":"Sentinel 2 L1C","keywords":["sentinel","earth observation","esa"],"providers":[{"name":"ESA","roles":["producer"],"url":"https://earth.esa.int/web/guest/home"},{"name":"Sinergise","roles":["processor"],"url":"https://registry.opendata.aws/sentinel-2/"},{"name":"AWS","roles":["host"],"url":"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/"},{"name":"Element 84","roles":["processor"],"url":"https://element84.com"}],"summaries":{"platform":["sentinel-2a","sentinel-2b"],"constellation":["sentinel-2"],"instruments":["msi"],"gsd":[10],"view:off_nadir":[0]},"item_assets":{"thumbnail":{"title":"Thumbnail","type":"image/png","roles":["thumbnail"]},"overview":{"title":"True color image","type":"image/jp2","roles":["overview"],"gsd":10,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}]},"info":{"title":"Original JSON metadata","type":"application/json","roles":["metadata"]},"metadata":{"title":"Original XML metadata","type":"application/xml","roles":["metadata"]},"B01":{"title":"Band 1 (coastal)","type":"image/jp2","roles":["data"],"gsd":60,"eo:bands":[{"name":"B01","common_name":"coastal","center_wavelength":0.4439,"full_width_half_max":0.027}]},"B02":{"title":"Band 2 (blue)","type":"image/jp2","roles":["data"],"gsd":10,"eo:bands":[{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}]},"B03":{"title":"Band 3 (green)","type":"image/jp2","roles":["data"],"gsd":10,"eo:bands":[{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"title":"Band 4 (red)","type":"image/jp2","roles":["data"],"gsd":10,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038}]},"B05":{"title":"Band 5","type":"image/jp2","roles":["data"],"gsd":20,"eo:bands":[{"name":"B05","center_wavelength":0.7039,"full_width_half_max":0.019}]},"B06":{"title":"Band 6","type":"image/jp2","roles":["data"],"gsd":20,"eo:bands":[{"name":"B06","center_wavelength":0.7402,"full_width_half_max":0.018}]},"B07":{"title":"Band 7","type":"image/jp2","roles":["data"],"gsd":20,"eo:bands":[{"name":"B07","center_wavelength":0.7825,"full_width_half_max":0.028}]},"B08":{"title":"Band 8 (nir)","type":"image/jp2","roles":["data"],"gsd":10,"eo:bands":[{"name":"B08","common_name":"nir","center_wavelength":0.8351,"full_width_half_max":0.145}]},"B8A":{"title":"Band 8A","type":"image/jp2","roles":["data"],"gsd":20,"eo:bands":[{"name":"B8A","center_wavelength":0.8648,"full_width_half_max":0.033}]},"B09":{"title":"Band 9","type":"image/jp2","roles":["data"],"gsd":60,"eo:bands":[{"name":"B09","center_wavelength":0.945,"full_width_half_max":0.026}]},"B10":{"title":"Band 10 (cirrus)","type":"image/jp2","roles":["data"],"gsd":60,"eo:bands":[{"name":"B10","common_name":"cirrus","center_wavelength":1.3735,"full_width_half_max":0.075}]},"B11":{"title":"Band 11 (swir16)","type":"image/jp2","roles":["data"],"gsd":20,"eo:bands":[{"name":"B11","common_name":"swir16","center_wavelength":1.6137,"full_width_half_max":0.143}]},"B12":{"title":"Band 12 (swir22)","type":"image/jp2","roles":["data"],"gsd":20,"eo:bands":[{"name":"B12","common_name":"swir22","center_wavelength":2.22024,"full_width_half_max":0.242}]}},"extent":{"spatial":{"bbox":[[-180,-90,180,90]]},"temporal":{"interval":[["2015-06-27T10:25:31.456000Z",null]]}},"license":"proprietary"},{"id":"sentinel-s2-l2a-cogs","stac_version":"1.0.0-beta.2","description":"Sentinel-2a and Sentinel-2b imagery, processed to Level 2A (Surface Reflectance) and converted to Cloud-Optimized GeoTIFFs","links":[{"rel":"self","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"about","href":"https://github.com/stac-utils/stac-sentinel"},{"rel":"parent","href":"https://earth-search.aws.element84.com/v0/"},{"rel":"root","href":"https://earth-search.aws.element84.com/v0/"},{"rel":"items","href":"https://earth-search.aws.element84.com/v0/collections/sentinel-s2-l2a-cogs/items"}],"stac_extensions":["item-assets"],"title":"Sentinel 2 L2A COGs","keywords":["sentinel","earth observation","esa"],"providers":[{"name":"ESA","roles":["producer"],"url":"https://earth.esa.int/web/guest/home"},{"name":"Sinergise","roles":["processor"],"url":"https://registry.opendata.aws/sentinel-2/"},{"name":"AWS","roles":["host"],"url":"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/"},{"name":"Element 84","roles":["processor"],"url":"https://element84.com"}],"summaries":{"platform":["sentinel-2a","sentinel-2b"],"constellation":["sentinel-2"],"instruments":["msi"],"gsd":[10],"view:off_nadir":[0]},"item_assets":{"thumbnail":{"title":"Thumbnail","type":"image/png","roles":["thumbnail"]},"overview":{"title":"True color image","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["overview"],"gsd":10,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}]},"info":{"title":"Original JSON metadata","type":"application/json","roles":["metadata"]},"metadata":{"title":"Original XML metadata","type":"application/xml","roles":["metadata"]},"visual":{"title":"True color image","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["overview"],"gsd":10,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}]},"B01":{"title":"Band 1 (coastal)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":60,"eo:bands":[{"name":"B01","common_name":"coastal","center_wavelength":0.4439,"full_width_half_max":0.027}]},"B02":{"title":"Band 2 (blue)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":10,"eo:bands":[{"name":"B02","common_name":"blue","center_wavelength":0.4966,"full_width_half_max":0.098}]},"B03":{"title":"Band 3 (green)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":10,"eo:bands":[{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"title":"Band 4 (red)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":10,"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.6645,"full_width_half_max":0.038}]},"B05":{"title":"Band 5","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B05","center_wavelength":0.7039,"full_width_half_max":0.019}]},"B06":{"title":"Band 6","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B06","center_wavelength":0.7402,"full_width_half_max":0.018}]},"B07":{"title":"Band 7","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B07","center_wavelength":0.7825,"full_width_half_max":0.028}]},"B08":{"title":"Band 8 (nir)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":10,"eo:bands":[{"name":"B08","common_name":"nir","center_wavelength":0.8351,"full_width_half_max":0.145}]},"B8A":{"title":"Band 8A","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B8A","center_wavelength":0.8648,"full_width_half_max":0.033}]},"B09":{"title":"Band 9","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":60,"eo:bands":[{"name":"B09","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"title":"Band 11 (swir16)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B11","common_name":"swir16","center_wavelength":1.6137,"full_width_half_max":0.143}]},"B12":{"title":"Band 12 (swir22)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"gsd":20,"eo:bands":[{"name":"B12","common_name":"swir22","center_wavelength":2.22024,"full_width_half_max":0.242}]},"AOT":{"title":"Aerosol Optical Thickness (AOT)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"]},"WVP":{"title":"Water Vapour (WVP)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"]},"SCL":{"title":"Scene Classification Map (SCL)","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"]}},"extent":{"spatial":{"bbox":[[-180,-90,180,90]]},"temporal":{"interval":[["2015-06-27T10:25:31.456000Z",null]]}},"license":"proprietary"},{"id":"landsat-8-l1-c1","stac_version":"1.0.0-beta.2","description":"Landat-8 L1 Collection-1 imagery radiometrically calibrated and orthorectified using gound points and Digital Elevation Model (DEM) data to correct relief displacement.","links":[{"rel":"self","href":"https://earth-search.aws.element84.com/v0/collections/landsat-8-l1-c1"},{"rel":"about","href":"https://registry.opendata.aws/landsat-8","type":"text/html","title":"AWS Public Dataset page for Landsat-8"},{"rel":"parent","href":"https://earth-search.aws.element84.com/v0/"},{"rel":"root","href":"https://earth-search.aws.element84.com/v0/"},{"rel":"items","href":"https://earth-search.aws.element84.com/v0/collections/landsat-8-l1-c1/items"}],"stac_extensions":[],"title":"Landsat-8 L1 Collection-1","keywords":["landsat","earth observation","usgs"],"providers":[{"name":"USGS","roles":["producer"],"url":"https://landsat.usgs.gov/"},{"name":"Planet Labs","roles":["processor"],"url":"https://github.com/landsat-pds/landsat_ingestor"},{"name":"AWS","roles":["host"],"url":"https://landsatonaws.com/"},{"name":"Element 84","roles":["processor"],"url":"https://element84.com/"}],"summaries":{"gsd":[30],"platform":["landsat-8"],"instruments":["oli","tirs"]},"item_assets":{"index":{"type":"text/html","title":"HTML index page"},"thumbnail":{"title":"Thumbnail image","type":"image/jpeg"},"ANG":{"title":"Angle coefficients file","type":"text/plain"},"MTL":{"title":"original metadata file","type":"text/plain"},"BQA":{"title":"Band quality data","type":"image/tiff; application=geotiff"},"B1":{"type":"image/tiff; application=geotiff","eo:bands":[{"name":"B1","common_name":"coastal","gsd":30,"center_wavelength":0.44,"full_width_half_max":0.02}],"title":"Band 1 (coastal)"},"B2":{"type":"image/tiff; application=geotiff","eo:bands":[{"name":"B2","common_name":"blue","gsd":30,"center_wavelength":0.48,"full_width_half_max":0.06}],"title":"Band 2 (blue)"},"B3":{"type":"image/tiff; application=geotiff","eo:bands":[{"name":"B3","common_name":"green","gsd":30,"center_wavelength":0.56,"full_width_half_max":0.06}],"title":"Band 3 (green)"},"B4":{"type":"image/tiff; application=geotiff","eo:bands":[{"name":"B4","common_name":"red","gsd":30,"center_wavelength":0.65,"full_width_half_max":0.04}],"title":"Band 4 (red)"},"B5":{"type":"image/tiff; application=geotiff","eo:bands":[{"name":"B5","common_name":"nir","gsd":30,"center_wavelength":0.86,"full_width_half_max":0.03}],"title":"Band 5 (nir)"},"B6":{"type":"image/tiff; application=geotiff","eo:bands":[{"name":"B6","common_name":"swir16","gsd":30,"center_wavelength":1.6,"full_width_half_max":0.08}],"title":"Band 6 (swir16)"},"B7":{"type":"image/tiff; application=geotiff","eo:bands":[{"name":"B7","common_name":"swir22","gsd":30,"center_wavelength":2.2,"full_width_half_max":0.2}],"title":"Band 7 (swir22)"},"B8":{"type":"image/tiff; application=geotiff","eo:bands":[{"name":"B8","common_name":"pan","gsd":15,"center_wavelength":0.59,"full_width_half_max":0.18}],"title":"Band 8 (pan)"},"B9":{"type":"image/tiff; application=geotiff","eo:bands":[{"name":"B9","common_name":"cirrus","gsd":30,"center_wavelength":1.37,"full_width_half_max":0.02}],"title":"Band 9 (cirrus)"},"B10":{"type":"image/tiff; application=geotiff","eo:bands":[{"name":"B10","common_name":"lwir11","gsd":100,"center_wavelength":10.9,"full_width_half_max":0.8}],"title":"Band 10 (lwir)"},"B11":{"type":"image/tiff; application=geotiff","eo:bands":[{"name":"B11","common_name":"lwir12","gsd":100,"center_wavelength":12,"full_width_half_max":1}],"title":"Band 11 (lwir)"}},"extent":{"spatial":{"bbox":[[-180,-90,180,90]]},"temporal":{"interval":[["2013-06-01T00:00:00Z",null]]}},"license":"PDDL-1.0"}],"links":[]}' headers: Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Origin: - '*' Connection: - keep-alive Content-Length: - '19072' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:31 GMT Via: - 1.1 9bed99ac619d23b077acdc859dc1c43c.cloudfront.net (CloudFront) X-Amz-Cf-Id: - zdfIBxlkIUS2JlOTKf1f_m5rJIWxlxGPCSdXc3T1VvzRQsYFUo5m-g== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f197-7e80224341fb5141323722f1;Parent=31be489b681d22e2;Sampled=0;Lineage=1:308471e4:0 X-Cache: - Miss from cloudfront x-amz-apigw-id: - N2qvwEW3PHcEqgg= x-amzn-RequestId: - fee06c1e-9938-42b9-94d7-801205286cbc status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_client/TestQueryables.test_get_queryables.yaml000066400000000000000000000205761503646565400317150ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://stac.sage.uvt.ro/ response: body: string: "{\"type\":\"Catalog\",\"id\":\"stac-fastapi\",\"title\":\"stac-fastapi\",\"description\":\"stac-fastapi\",\"stac_version\":\"1.0.0\",\"conformsTo\":[\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-json\",\"http://www.opengis.net/spec/cql2/1.0/conf/cql2-text\",\"https://api.stacspec.org/v1.0.0/item-search#fields\",\"https://api.stacspec.org/v1.0.0/item-search#sort\",\"https://api.stacspec.org/v1.0.0/item-search\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson\",\"https://api.stacspec.org/v1.0.0/collections\",\"http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2\",\"https://api.stacspec.org/v1.0.0/core\",\"https://api.stacspec.org/v1.0.0-rc.2/item-search#filter\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core\",\"https://api.stacspec.org/v1.0.0/item-search#query\",\"https://api.stacspec.org/v1.0.0/ogcapi-features\",\"http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30\",\"http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/features-filter\"],\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://stac.sage.uvt.ro/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://stac.sage.uvt.ro/\"},{\"rel\":\"data\",\"type\":\"application/json\",\"href\":\"https://stac.sage.uvt.ro/collections\"},{\"rel\":\"conformance\",\"type\":\"application/json\",\"title\":\"STAC/OGC conformance classes implemented by this server\",\"href\":\"https://stac.sage.uvt.ro/conformance\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC search\",\"href\":\"https://stac.sage.uvt.ro/search\",\"method\":\"GET\"},{\"rel\":\"search\",\"type\":\"application/geo+json\",\"title\":\"STAC search\",\"href\":\"https://stac.sage.uvt.ro/search\",\"method\":\"POST\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"title\":\"Queryables\",\"href\":\"https://stac.sage.uvt.ro/queryables\",\"method\":\"GET\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Copernicus DEM 30m\",\"href\":\"https://stac.sage.uvt.ro/collections/copernicus-dem-30\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-2 Level-1C - Rom\xE2nia\",\"href\":\"https://stac.sage.uvt.ro/collections/sentinel-2-l1c\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-2 Level-1C - Rom\xE2nia - Vegetation Index\",\"href\":\"https://stac.sage.uvt.ro/collections/sentinel-2-l1c-ndvi\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ANCPI MNT - Rom\xE2nia County Level - Numerical Terrain Model\",\"href\":\"https://stac.sage.uvt.ro/collections/ancpi-judete-mnt\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel 1 Level-1 Ground Range Detected (GRD)\",\"href\":\"https://stac.sage.uvt.ro/collections/sentinel-1-grd\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Corine Land Cover 2018 (Vectorial)\",\"href\":\"https://stac.sage.uvt.ro/collections/clc-2018-20-vector\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Corine Land Cover 2018 (Raster)\",\"href\":\"https://stac.sage.uvt.ro/collections/clc-2018-20\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel 1 Radiometrically Terrain Corrected (RTC)\",\"href\":\"https://stac.sage.uvt.ro/collections/sentinel-1-rtc\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"MAJA CAMS Products\",\"href\":\"https://stac.sage.uvt.ro/collections/maja-cams\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"Sentinel-2 Level-2A MAJA - Rom\xE2nia\",\"href\":\"https://stac.sage.uvt.ro/collections/sentinel-2-l2a-maja\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA WorldCover 2020\",\"href\":\"https://stac.sage.uvt.ro/collections/esa-worldcover-2020\"},{\"rel\":\"child\",\"type\":\"application/json\",\"title\":\"ESA WorldCover 2021\",\"href\":\"https://stac.sage.uvt.ro/collections/esa-worldcover-2021\"},{\"rel\":\"service-desc\",\"type\":\"application/vnd.oai.openapi+json;version=3.0\",\"title\":\"OpenAPI service description\",\"href\":\"https://stac.sage.uvt.ro/api\"},{\"rel\":\"service-doc\",\"type\":\"text/html\",\"title\":\"OpenAPI service documentation\",\"href\":\"https://stac.sage.uvt.ro/api.html\"}],\"stac_extensions\":[]}" headers: Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Expose-Headers: - '*, X-CustomResponseHeader' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '896' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:26 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains content-encoding: - gzip vary: - Accept-Encoding status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://stac.sage.uvt.ro/queryables response: body: string: '{"$id":"https://stac.sage.uvt.ro/queryables","type":"object","title":"STAC Queryables.","$schema":"http://json-schema.org/draft-07/schema#","properties":{"id":{"$ref":"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json#/definitions/core/allOf/2/properties/id","title":"Item ID","description":"Item identifier"},"datetime":{"type":"string","title":"Acquired","format":"date-time","pattern":"(\\+00:00|Z)$","description":"Datetime"},"geometry":{"$ref":"https://geojson.org/schema/Feature.json","title":"Item Geometry","description":"Item Geometry"},"platform":{"type":"string"},"proj:bbox":{"type":"array"},"proj:epsg":{"type":"number"},"proj:shape":{"type":"array"},"instruments":{"type":"array"},"s2:mgrs_tile":{"type":"string"},"constellation":{"type":"string"},"proj:geometry":{"type":"object"},"proj:projjson":{"type":"object"},"s2:granule_id":{"type":"string"},"eo:cloud_cover":{"$ref":"https://stac-extensions.github.io/eo/v1.0.0/schema.json#/definitions/fieldsproperties/eo:cloud_cover"},"proj:transform":{"type":"array"},"s2:datatake_id":{"type":"string"},"s2:product_uri":{"type":"string"},"s2:datastrip_id":{"type":"string"},"s2:product_type":{"type":"string"},"sat:orbit_state":{"type":"string"},"s2:datatake_type":{"type":"string"},"s2:generation_time":{"type":"string"},"sat:relative_orbit":{"type":"number"},"eocubero:snow_cover":{"type":"number"},"s2:mean_solar_zenith":{"type":"number"},"s2:mean_solar_azimuth":{"type":"number"},"eocubero:rain-detected":{"type":"boolean"},"s2:processing_baseline":{"type":"string"},"s2:snow_ice_percentage":{"type":"number"},"eocubero:s2-source-item":{"type":"string"},"eocubero:hotspot-detected":{"type":"boolean"},"eocubero:sun-glint-detected":{"type":"boolean"},"s2:degraded_msi_data_percentage":{"type":"number"}},"additionalProperties":true}' headers: Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Range,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Expose-Headers: - '*, X-CustomResponseHeader' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '674' Content-Type: - application/schema+json Date: - Thu, 17 Jul 2025 12:50:26 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains content-encoding: - gzip vary: - Accept-Encoding status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_client/TestQueryables.test_get_queryables_collections.yaml000066400000000000000000002775761503646565400343310ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3361' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:27 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125026Z-167d46d96d8jltsrhC1DENhdnn00000005t00000000043cu status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3361' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:28 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125027Z-167d46d96d8rwmk4hC1DEN36180000000sqg000000002ny4 status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless response: body: string: '{"id":"3dep-seamless","type":"Collection","links":[{"rel":"items","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless/items"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"license","href":"https://www.usgs.gov/faqs/what-are-terms-uselicensing-map-services-and-data-national-map?qt-news_science_products=0#qt-news_science_products","title":"Public Domain"},{"rel":"describedby","href":"https://planetarycomputer.microsoft.com/dataset/3dep-seamless","title":"Human readable dataset overview and reference","type":"text/html"}],"title":"USGS 3DEP Seamless DEMs","assets":{"thumbnail":{"href":"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/threedep.png","type":"image/png","roles":["thumbnail"],"title":"USGS 3DEP"},"geoparquet-items":{"href":"abfs://items/3dep-seamless.parquet","type":"application/x-parquet","roles":["stac-items"],"title":"GeoParquet STAC items","description":"Snapshot of the collection''s STAC items exported to GeoParquet format.","msft:partition_info":{"is_partitioned":false},"table:storage_options":{"account_name":"pcstacitems"}}},"extent":{"spatial":{"bbox":[[-174.001666666983,-15.00166666667,164.0016666666,84.00166666666]]},"temporal":{"interval":[["1925-01-01T00:00:00Z","2020-05-06T00:00:00Z"]]}},"license":"PDDL-1.0","keywords":["USGS","3DEP","NED","Elevation","DEM"],"providers":[{"url":"https://www.usgs.gov/core-science-systems/ngp/3dep","name":"USGS","roles":["processor","producer","licensor"]},{"url":"https://planetarycomputer.microsoft.com","name":"Microsoft","roles":["host"]}],"summaries":{"gsd":[10,30]},"description":"U.S.-wide digital elevation data at horizontal resolutions ranging from one to sixty meters.\n\nThe [USGS 3D Elevation Program (3DEP) Datasets](https://www.usgs.gov/core-science-systems/ngp/3dep) from the [National Map](https://www.usgs.gov/core-science-systems/national-geospatial-program/national-map) are the primary elevation data product produced and distributed by the USGS. The 3DEP program provides raster elevation data for the conterminous United States, Alaska, Hawaii, and the island territories, at a variety of spatial resolutions. The seamless DEM layers produced by the 3DEP program are updated frequently to integrate newly available, improved elevation source data. \n\nDEM layers are available nationally at grid spacings of 1 arc-second (approximately 30 meters) for the conterminous United States, and at approximately 1, 3, and 9 meters for parts of the United States. Most seamless DEM data for Alaska is available at a resolution of approximately 60 meters, where only lower resolution source data exist.\n","item_assets":{"data":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"]},"gpkg":{"type":"application/geopackage+sqlite3","roles":["metadata"]},"metadata":{"type":"application/xml","roles":["metadata"]},"thumbnail":{"type":"image/jpeg","roles":["thumbnail"]}},"stac_version":"1.0.0","msft:container":"3dep","stac_extensions":["https://stac-extensions.github.io/item-assets/v1.0.0/schema.json","https://stac-extensions.github.io/table/v1.2.0/schema.json"],"msft:storage_account":"ai4edataeuwest","msft:short_description":"U.S.-wide digital elevation data at horizontal resolutions ranging from one to sixty meters","msft:region":"westeurope"}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '1451' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:28 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125028Z-167d46d96d8rf89khC1DENsp080000000s600000000033f1 status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless/queryables response: body: string: '{"$id":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless/queryables","type":"object","title":"STAC Queryables.","$schema":"http://json-schema.org/draft-07/schema#","properties":{"id":{"$ref":"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json#/definitions/core/allOf/2/properties/id","title":"Item ID","description":"Item identifier"},"gsd":{"type":"number"},"datetime":{"type":"string","title":"Acquired","format":"date-time","pattern":"(\\+00:00|Z)$","description":"Datetime"},"geometry":{"$ref":"https://geojson.org/schema/Feature.json","title":"Item Geometry","description":"Item Geometry"},"proj:epsg":{"type":["integer","null"],"title":"EPSG code"},"proj:shape":{"type":"array","items":{"type":"integer"},"title":"Shape","maxItems":2,"minItems":2},"end_datetime":{"type":"string","title":"End datetime","format":"date-time","pattern":"(\\+00:00|Z)$","description":"End datetime"},"proj:transform":{"type":"array","items":{"type":"number"},"oneOf":[{"maxItems":6,"minItems":6},{"maxItems":9,"minItems":9}],"title":"Transform"},"start_datetime":{"type":"string","title":"Start datetime","format":"date-time","pattern":"(\\+00:00|Z)$","description":"Start datetime"},"threedep:region":{"type":"string","title":"Region"}}}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '524' Content-Type: - application/schema+json Date: - Thu, 17 Jul 2025 12:50:29 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125029Z-167d46d96d8bvmllhC1DENt02w0000000s2g000000001drd status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia response: body: string: '{"id":"fia","type":"Collection","links":[{"rel":"items","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia/items"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"license","href":"https://www.fs.usda.gov/rds/archive/datauseinfo/open","type":"text/html","title":"USDA Open Access Data Use Agreement"},{"rel":"describedby","href":"https://planetarycomputer.microsoft.com/dataset/fia","title":"Human readable dataset overview and reference","type":"text/html"}],"title":"Forest Inventory and Analysis","assets":{"guide":{"href":"https://www.fia.fs.fed.us/library/database-documentation/current/ver80/FIADB%20User%20Guide%20P2_8-0.pdf","type":"application/pdf","roles":["metadata"],"title":"Database Description and User Guide"},"thumbnail":{"href":"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/fia.png","type":"image/gif","title":"Forest Inventory and Analysis"},"geoparquet-items":{"href":"abfs://items/fia.parquet","type":"application/x-parquet","roles":["stac-items"],"title":"GeoParquet STAC items","description":"Snapshot of the collection''s STAC items exported to GeoParquet format.","msft:partition_info":{"is_partitioned":false},"table:storage_options":{"account_name":"pcstacitems"}}},"extent":{"spatial":{"bbox":[[138.06,0.92,163.05,9.78],[165.28,4.57,172.03,14.61],[131.13,2.95,134.73,8.1],[-124.763068,24.523096,-66.949895,49.384358],[-179.148909,51.214183,-129.974167,71.365162],[172.461667,51.357688,179.77847,53.01075],[-178.334698,18.910361,-154.806773,28.402123],[144.618068,13.234189,144.956712,13.654383],[-67.945404,17.88328,-65.220703,18.515683],[144.886331,14.110472,146.064818,20.553802],[-65.085452,17.673976,-64.564907,18.412655],[-171.089874,-14.548699,-168.1433,-11.046934],[-178.334698,18.910361,-154.806773,28.402123]]},"temporal":{"interval":[["2020-06-01T00:00:00Z",null]]}},"license":"CC0-1.0","keywords":["Forest","Species","Carbon","Biomass","USDA","Forest Service"],"providers":[{"url":"https://www.fia.fs.fed.us/","name":"Forest Inventory & Analysis","roles":["producer","licensor"]},{"url":"https://carbonplan.org/","name":"CarbonPlan","roles":["processor"]},{"url":"https://planetarycomputer.microsoft.com","name":"Microsoft","roles":["host"]}],"description":"Status and trends on U.S. forest location, health, growth, mortality, and production, from the U.S. Forest Service''s [Forest Inventory and Analysis](https://www.fia.fs.fed.us/) (FIA) program.\n\nThe Forest Inventory and Analysis (FIA) dataset is a nationwide survey of the forest assets of the United States. The FIA research program has been in existence since 1928. FIA''s primary objective is to determine the extent, condition, volume, growth, and use of trees on the nation''s forest land.\n\nDomain: continental U.S., 1928-2018\n\nResolution: plot-level (irregular polygon)\n\nThis dataset was curated and brought to Azure by [CarbonPlan](https://carbonplan.org/).\n","item_assets":{"data":{"type":"application/x-parquet","roles":["data"],"title":"Dataset root","table:storage_options":{"account_name":"cpdataeuwest"}}},"stac_version":"1.0.0","table:tables":[{"name":"Survey Table","description":"Survey table. This table contains one record for each year an inventory is conducted in a State for annual inventory or one record for each periodic inventory.

* SURVEY.CN = PLOT.SRV_CN links the unique inventory record for a State and year to the plot records.","msft:item_name":"survey"},{"name":"County Table","description":"County table. This table contains survey unit codes and is also a reference table for the county codes and names.

* COUNTY.CN = PLOT.CTY_CN links the unique county record to the plot record.","msft:item_name":"county"},{"name":"Plot Table","description":"Plot table. This table provides information relevant to the entire 1-acre field plot. This table links to most other tables, and the linkage is made using PLOT.CN = TABLE_NAME.PLT_CN (TABLE_NAME is the name of any table containing the column name PLT_CN). Below are some examples of linking PLOT to other tables.

* PLOT.CN = COND.PLT_CN links the unique plot record to the condition class record(s).

* PLOT.CN = SUBPLOT.PLT_CN links the unique plot record to the subplot records.

* PLOT.CN = TREE.PLT_CN links the unique plot record to the tree records.

* PLOT.CN = SEEDLING.PLT_CN links the unique plot record to the seedling records.","msft:item_name":"plot"},{"name":"Condition Table","description":"Condition table. This table provides information on the discrete combination of landscape attributes that define the condition (a condition will have the same land class, reserved status, owner group, forest type, stand-size class, regeneration status, and stand density).

* PLOT.CN = COND.PLT_CN links the condition class record(s) to the plot table.

* COND.PLT_CN = SITETREE.PLT_CN and COND.CONDID = SITETREE.CONDID links the condition class record to the site tree data.

* COND.PLT_CN = TREE.PLT_CN and COND.CONDID = TREE.CONDID links the condition class record to the tree data.","msft:item_name":"cond"},{"name":"Subplot Table","description":"Subplot table. This table describes the features of a single subplot. There are multiple subplots per 1-acre field plot and there can be multiple conditions sampled on each subplot.

* PLOT.CN = SUBPLOT.PLT_CN links the unique plot record to the subplot records.

* SUBPLOT.PLT_CN = COND.PLT_CN and SUBPLOT.MACRCOND = COND.CONDID links the macroplot conditions to the condition class record.

* SUBPLOT.PLT_CN = COND.PLT_CN and SUBPLOT.SUBPCOND = COND.CONDID links the subplot conditions to the condition class record.

* SUBPLOT.PLT_CN = COND.PLT_CN and SUBPLOT.MICRCOND = COND.CONDID links the microplot conditions to the condition class record.","msft:item_name":"subplot"},{"name":"Subplot Condition Table","description":"Subplot condition table. This table contains information about the proportion of a subplot in a condition.

* PLOT.CN = SUBP_COND.PLT_CN links the subplot condition class record to the plot table.

* SUBP_COND.PLT_CN = COND.PLT_CN and SUBP_COND.CONDID = COND.CONDID links the condition class records found on the four subplots to the subplot description.","msft:item_name":"subp_cond"},{"name":"boundary","description":"Boundary table. This table provides a description of the demarcation line between two conditions that occur on a single subplot","msft:item_name":"boundary"},{"name":"Subplot Condition Change Matrix","description":"Subplot condition change matrix table. This table contains information about the mix of current and previous conditions that occupy the same area on the subplot.

* PLOT.CN = SUBP_COND_CHNG_MTRX.PLT_CN links the subplot condition change matrix records to the unique plot record.

* PLOT.PREV_PLT_CN = SUBP_COND_CHNG_MTRX.PREV_PLT_CN links the subplot condition change matrix records to the unique previous plot record.","msft:item_name":"subp_cond_chng_mtrx"},{"name":"Tree Table","description":"Tree table. This table provides information for each tree 1 inch in diameter and larger found on a microplot, subplot, or core optional macroplot.

* PLOT.CN = TREE.PLT_CN links the tree records to the unique plot record.

* COND.PLT_CN = TREE.PLT_CN and COND.CONDID = TREE.CONDID links the tree records to the unique condition record.","msft:item_name":"tree"},{"name":"Tree Woodland Stems Table","description":"Tree woodland stems table. This table stores data for the individual stems of a woodland species tree. Individual woodland stem diameter measurements contribute to the calculation of the diameter stored on the parent TREE table record.

* TREE.CN = TREE_WOODLAND_STEMS.TRE_CN links a woodland stems record to the corresponding unique tree record.","msft:item_name":"tree_woodland_stems"},{"name":"Tree Regional Biomass Table","description":"Tree regional biomass table. This table contains biomass estimates computed using equations and methodology that varies by FIA work unit. This table retains valuable information for generating biomass estimates that match earlier published reports.

* TREE.CN = TREE_REGIONAL_BIOMASS.TRE_CN links a tree regional biomass record to the corresponding unique tree.","msft:item_name":"tree_regional_biomass"},{"name":"Tree Net Growth, Removal, and Mortality Component Table","description":"Tree net growth, removal, and mortality component table. This table stores information used to compute net growth, removals, and mortality estimates for remeasurement trees. Each remeasurement tree has a single record in this table.

* TREE_GRM_COMPONENT.TRE_CN = TREE.TRE_CN links the records in this table to the corresponding tree record in the TREE table.","msft:item_name":"tree_grm_component"},{"name":"Tree Net Growth, Removal, and Mortality Midpoint Table","description":"Tree net growth, removal, and mortality midpoint table. This table contains information about a remeasured tree at the midpoint of the remeasurement period. It does not contain a record for every tree. Midpoint estimates are computed for trees that experience mortality, removal, or land use diversion or reversion. The information in this table is used to compute net growth, removal, and mortality estimates on remeasurement trees.

* TREE_GRM_MIDPT.TRE_CN = TREE.TRE_CN links the records in this table to the corresponding tree record in the TREE table.","msft:item_name":"tree_grm_midpt"},{"name":"Tree Net Growth, Removal, and Mortality Begin Table","description":"Tree net growth, removal, and mortality begin table. This table contains information for remeasured trees where values have been calculated for the beginning of the remeasurement period. Only those trees where information was recalculated for time 1 (T1) are included. The information in this table is used to produce net growth, removal and mortality estimates on remeasured trees.

* TREE_GRM_BEGIN.TRE_CN = TREE.TRE_CN links the records in this table to the corresponding tree record in the TREE table.","msft:item_name":"tree_grm_begin"},{"name":"Tree Net Growth, Removal, and Mortality Estimation Table","description":"Tree net growth, removal, and mortality estimation table. This table contains information used to produce estimates of growth, removals and mortality.

* PLOT.CN = TREE_GRM_ESTN.PLT_CN links the tree GRM estimation records to the unique plot record.

* TREE.CN = TREE_GRM_ESTN.TRE_CN links the tree GRM estimation records to the unique tree record.","msft:item_name":"tree_grm_estn"},{"name":"Seedling Table","description":"Seedling table. This table provides a count of the number of live trees of a species found on a microplot that are less than 1 inch in diameter but at least 6 inches in length for conifer species or at least 12 inches in length for hardwood species.

* PLOT.CN = SEEDLING.PLT_CN links the seedling records to the unique plot record.

* COND.PLT_CN = SEEDLING.PLT_CN and COND.CONDID = SEEDLING.CONDID links the condition record to the seedling record.","msft:item_name":"seedling"},{"name":"Site Tree Table","description":"Site tree table. This table provides information on the site tree(s) collected in order to calculate site index and/or site productivity information for a condition.

* PLOT.CN = SITETREE.PLT_CN links the site tree records to the unique plot record.

* SITETREE.PLT_CN = COND.PLT_CN and SITETREE.CONDID = COND.CONDID links the site tree record(s) to the unique condition class record.","msft:item_name":"sitetree"},{"name":"Invasive Subplot Species Table","description":"Invasive subplot species table. This table provides percent cover data of invasive species identified on the subplot.

* PLOT.CN = INVASIVE_SUBPLOT_SPP.PLT_CN links the invasive subplot species record(s) to the unique plot record.

* SUBP_COND.PLT_CN = INVASIVE_SUBPLOT_SPP.PLT_CN and SUBP_COND.CONDID = INVASIVE_SUBPLOT_SPP.CONDID and SUBP_COND.SUBP = INVASIVE_SUBPLOT_SPP.SUBP links the invasive subplot species record(s) to the unique subplot condition record.

* INVASIVE_SUBPLOT_SPP.VEG_SPCD = REF_PLANT_DICTIONARY.SYMBOL links the invasive vegetation subplot NRCS species code to the plant dictionary reference species code.","msft:item_name":"invasive_subplot_spp"},{"name":"Phase 2 Vegetation Subplot Species Table","description":"Phase 2 Vegetation subplot species table. This table provides percent cover data of vegetation species identified on the subplot.

* PLOT.CN = P2VEG_SUBPLOT_SPP.PLT_CN links the vegetation subplot species record(s) to the unique plot record.

* SUBP_COND.PLT_CN = P2VEG_SUBPLOT_SPP.PLT_CN and SUBP_COND.CONDID = P2VEG_SUBPLOT_SPP.CONDID and SUBP_COND.SUBP = P2VEG_SUBPLOT_SPP.SUBP links the vegetation subplot species record(s) to the unique subplot condition record.

* P2VEG_SUBPLOT_SPP.VEG_SPCD = REF_PLANT_DICTIONARY.SYMBOL links the P2 vegetation subplot NRCS species code to the plant dictionary reference species code.","msft:item_name":"p2veg_subplot_spp"},{"name":"Phase 2 Vegetation Subplot Structure Table","description":"Phase 2 Vegetation subplot structure table. This table provides percent cover by layer by growth habit.

* PLOT.CN = P2VEG_SUBP_STRUCTURE. PLT_CN links the subplot structure record(s) to the unique plot record.

* SUBP_COND.PLT_CN = P2VEG_SUBP_STRUCTURE.PLT_CN and SUBP_COND.CONDID = P2VEG_SUBP_STRUCTURE.CONDID and SUBP_COND.SUBP = P2VEG_SUBP_STRUCTURE.SUBP links the vegetation subplot structure record(s) to the unique subplot condition record.","msft:item_name":"p2veg_subp_structure"},{"name":"Down Woody Material Visit Table","description":"Down woody material visit table. This table provides general information on down woody material indicator visit, such as the date of the DWM survey.

* PLOT.CN = DWM_VISIT.PLT_CN links the down woody material indicator visit record to the unique plot record.","msft:item_name":"dwm_visit"},{"name":"Down Woody Material Coarse Woody Debris Table","description":"Down woody material coarse woody debris table. This table provides information for each piece of coarse woody debris measured along the transects.

* PLOT.CN = DWM_COARSE_WOODY_DEBRIS.PLT_CN links the down woody material coarse woody debris records to the unique plot record.

* COND.PLT_CN = DWM_COARSE_WOODY_DEBRIS.PLT_CN and COND.CONDID= DWM_COARSE_WOODY_DEBRIS.CONDID links the coarse woody debris records to the unique condition record.","msft:item_name":"dwm_coarse_woody_debris"},{"name":"Down Woody Material Duff, Litter, Fuel Table","description":"Down woody material duff, litter, fuel table. This table provides information on the duff, litter, fuelbed depths measured at a point on the transects.

* PLOT.CN = DWM_DUFF_LITTER_FUEL.PLT_CN links the duff, litter, fuelbed records to the unique plot record.

* COND.PLT_CN = DWM_DUFF_LITTER_FUEL.PLT_CN and COND.CONDID= DWM_DUFF_LITTER_FUEL.CONDID links the duff, litter, fuel records to the unique condition record.","msft:item_name":"dwm_duff_litter_fuel"},{"name":"Down Woody Material Fine Woody Debris Table","description":"Down woody material fine woody debris table. This table provides information on the fine woody debris measured along a segment of the transects.

* PLOT.CN = DWM_FINE_WOODY_DEBRIS.PLT_CN links the fine woody debris records to the unique plot record.

* COND.PLT_CN = DWM_FINE_WOODY_DEBRIS.PLT_CN and COND.CONDID= DWM_FINE_WOODY_DEBRIS.CONDID links the fine woody debris records to the unique condition record.","msft:item_name":"dwm_fine_woody_debris"},{"name":"Down Woody Material Microplot Fuel Table","description":"Down woody material microplot fuel table. This table provides information on the fuel loads (shrubs and herbs) measured on the microplot.

* PLOT.CN = DWM_MICROPLOT_FUEL.PLT_CN links the microplot fuel records to the unique plot record.","msft:item_name":"dwm_microplot_fuel"},{"name":"Down Woody Material Residual Pile Table","description":"Down woody material residual pile table. This table provides information on the wood piles measured on the subplot.

* PLOT.CN = DWM_RESIDUAL_PILE.PLT_CN links the wood piles records to the unique plot record.

* COND.PLT_CN = DWM_RESIDUAL_PILE.PLT_CN and COND.CONDID= DWM_RESIDUAL_PILE.CONDID links the wood piles records to the unique condition record.","msft:item_name":"dwm_residual_pile"},{"name":"Down Woody Material Transect Segment Table","description":"Down woody material transect segment table. This table describes the down woody material transect segment lengths by condition class.

* PLOT.CN = DWM_TRANSECT_SEGMENT.PLT_CN links the down woody material transect length records to the unique plot record.

* COND.PLT_CN = DWM_TRANSECT_SEGMENT.PLT_CN and COND.CONDID= DWM_TRANSECT_SEGMENT.CONDID links the down woody material transect segment records to the unique condition record.","msft:item_name":"dwm_transect_segment"},{"name":"Condition Down Woody Material Calculation Table","description":"Condition down woody material calculation table. This table contains calculated values and condition-level estimates for down woody attributes by plot number (PLOT), condition class number (CONDID), and evaluation identifier (EVALID).

* PLOT.CN = COND_DWM_CALC.PLT_CN links the down woody material calculation records to the unique plot record.

* COND.CN = COND_DWM_CALC.CND_CN links the down woody material calculation records to the unique condition record.

* POP_STRATUM. CN = COND_DWM_CALC.STRATUM_CN links the down woody material calculation records to the unique population stratum record.","msft:item_name":"cond_dwm_calc"},{"name":"Plot Regeneration Table","description":"Plot regeneration table. This table contains the information for the four subplots describing the amount of animal browse pressure exerted on the regeneration of trees.

* PLOT.CN = PLOT_REGEN.PLT_CN links the unique plot record to the unique plot regeneration record.","msft:item_name":"plot_regen"},{"name":"Subplot Regeneration Table","description":"Subplot regeneration table. This table provides information on the subplot survey status and the site survey limitations, if any, for the tree regeneration study.

* PLOT.CN = SUBPLOT_REGEN.PLT_CN links the unique plot record to the subplot regeneration records.

* SUBPLOT.PLT_CN = SUBPLOT_REGEN.PLT_CN and SUBPLOT.SUBP = SUBPLOT_REGEN.SUBP links the subplot record to the subplot regeneration record.","msft:item_name":"subplot_regen"},{"name":"Seedling Regeneration Table","description":"Seedling regeneration. This table contains provides information on the seedling count by condition, species, source, and length class for the tree regeneration study.

* PLOT.CN = SEEDLING_REGEN.PLT_CN links the unique plot record to the seedling regeneration records.

* COND.PLT_CN = SEEDLING_REGEN.PLT_CN and COND.CONDID = SEEDLING_REGEN.CONDID links the regeneration seedling records to the unique condition record.","msft:item_name":"seedling_regen"},{"name":"Population Estimation Unit Table","description":"Population estimation unit table. This table contains information about estimation units. An estimation unit is a geographic area that can be drawn on a map. It has a known area, and the sampling intensity must be the same within a stratum within an estimation unit. Generally, estimation units are contiguous areas, but exceptions are made when certain ownerships, usually National Forests, are sampled at different intensities. One record in the POP_ESTN_UNIT table corresponds to a single estimation unit. POP_ESTN_UNIT.CN = POP_STRATUM.ESTN_UNIT_CN links the unique stratified geographical area (ESTN_UNIT) to the strata (STRATUMCD) that are assigned to each ESTN_UNIT.","msft:item_name":"pop_estn_unit"},{"name":"Population Evaluation Table","description":"Population evaluation table. This table provides information about evaluations. An evaluation is the combination of a set of plots (the sample) and a set of Phase 1 data (obtained through remote sensing, called a stratification) that can be used to produce population estimates for a State (an evaluation may be created to produce population estimates for a region other than a State, such as the Black Hills National Forest). A record in the POP_EVAL table identifies one evaluation and provides some descriptive information about how the evaluation may be used.

* POP_ESTN_UNIT.EVAL_CN = POP_EVAL.CN links the unique evaluation identifier (EVALID) in the POP_EVAL table to the unique geographical areas (ESTN_UNIT) that are stratified. Within a population evaluation (EVALID) there can be multiple population estimation units, or geographic areas across which there are a number of values being estimated (e.g., estimation of volume across counties for a given State).","msft:item_name":"pop_eval"},{"name":"Population Evaluation Attribute Table","description":"Population evaluation attribute table. This table provides information as to which population estimates can be provided by an evaluation. If an evaluation can produce only 22 of all the population estimates in the REF_POP_ATTRIBUTE table, there will be 22 records in the POP_EVAL_ATTRIBUTE table (one per population estimate) for that evaluation.

* POP_EVAL.CN = POP_EVAL_ATTRIBUTE.EVAL_CN links the unique evaluation identifier to the list of population estimates that can be derived for that evaluation.","msft:item_name":"pop_eval_attribute"},{"name":"Population Evaluation Group Table","description":"Population evaluation group table. This table lists and describes the evaluation groups. One record in the POP_EVAL_GRP table can be linked to all the evaluations that were used in generating estimates for a State inventory report.

* POP_EVAL_GRP.CN = POP_EVAL_TYP.EVAL_GRP_CN links the evaluation group record to the evaluation type record.","msft:item_name":"pop_eval_grp"},{"name":"Population Evaluation Type Table","description":"Population evaluation type table. This table provides information on the type of evaluations that were used to generate a set of tables for an inventory report. In a typical State inventory report, one evaluation is used to generate an estimate of the total land area; a second evaluation is used to generate current estimates of volume, numbers of trees and biomass; and a third evaluation is used for estimating growth, removals and mortality.

* POP_EVAL_TYP.EVAL_CN = POP_EVAL.CN links the evaluation type record to the evaluation record.

* POP_EVAL_TYP.EVAL_GRP_CN = POP_EVAL_GRP.CN links the evaluation type record to the evaluation group record.

* POP_EVAL_TYP.EVAL_TYP = REF_POP_EVAL_TYP_DESCR.EVAL_TYP links an evaluation type record to an evaluation type description reference record.","msft:item_name":"pop_eval_typ"},{"name":"Population Plot Stratum Assignment Table","description":"Population plot stratum assignment table. This table provides a way to assign stratum information to a plot. Stratum information is assigned to a plot by overlaying the plot''s location on the Phase 1 imagery. Plots are linked to their appropriate stratum for an evaluation via the POP_PLOT_STRATUM_ASSGN table.

* POP_PLOT_STRATUM_ASSGN.PLT_CN = PLOT.CN links the stratum assigned to the plot record.","msft:item_name":"pop_plot_stratum_assgn"},{"name":"Population Stratum Table","description":"Population stratum table. This table provides information about individual strata. The area within an estimation unit is divided into strata. The area for each stratum can be calculated by determining the proportion of Phase 1 pixels/plots in each stratum and multiplying that proportion by the total area in the estimation unit. Information for a single stratum is stored in a single record of the POP_STRATUM table.

* POP_STRATUM.CN = POP_PLOT_STRATUM_ASSGN.STRATUM_CN links the defined stratum to each plot.","msft:item_name":"pop_stratum"},{"name":"Plot Geometry Table","description":"Plot geometry table. This table contains geometric attributes associated with the plot location, such as the hydrological unit and roadless codes.

* PLOTGEOM.CN = PLOT.CN links the unique plot record between the two tables.","msft:item_name":"plotgeom"},{"name":"Plot Snapshot Table","description":"Plot snapshot table. This table combines the information in the PLOT table with information in the PLOT_EVAL_GRP and POP_STRATUM tables to provide a snapshot of the plot records with their associated expansion and adjustment factors.

* PLOTSNAP.CN = PLOT.CN links the unique plot record between the two tables.","msft:item_name":"plotsnap"}],"msft:container":"cpdata","stac_extensions":["https://stac-extensions.github.io/item-assets/v1.0.0/schema.json","https://stac-extensions.github.io/table/v1.2.0/schema.json"],"msft:storage_account":"cpdataeuwest","msft:short_description":"Status and trends on U.S. forest location, health, growth, mortality, and production, from the U.S. Forest Service''s Forest Inventory and Analysis (FIA) program","msft:region":"westeurope"}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '6385' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:29 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125029Z-167d46d96d8mdxvvhC1DENbv1s00000003y0000000000uz7 status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia/queryables response: body: string: '{"$id":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia/queryables","type":"object","title":"STAC Queryables.","$schema":"http://json-schema.org/draft-07/schema#","properties":{"id":{"$ref":"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json#/definitions/core/allOf/2/properties/id","title":"Item ID","description":"Item identifier"},"datetime":{"type":"string","title":"Acquired","format":"date-time","pattern":"(\\+00:00|Z)$","description":"Datetime"},"geometry":{"$ref":"https://geojson.org/schema/Feature.json","title":"Item Geometry","description":"Item Geometry"},"end_datetime":{"type":"string","title":"End datetime","format":"date-time","pattern":"(\\+00:00|Z)$","description":"End datetime"},"start_datetime":{"type":"string","title":"Start datetime","format":"date-time","pattern":"(\\+00:00|Z)$","description":"Start datetime"}}}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '381' Content-Type: - application/schema+json Date: - Thu, 17 Jul 2025 12:50:30 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125029Z-167d46d96d8kf92xhC1DEN2fsg0000000sfg000000002frr status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia/queryables response: body: string: '{"$id":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia/queryables","type":"object","title":"STAC Queryables.","$schema":"http://json-schema.org/draft-07/schema#","properties":{"id":{"$ref":"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json#/definitions/core/allOf/2/properties/id","title":"Item ID","description":"Item identifier"},"datetime":{"type":"string","title":"Acquired","format":"date-time","pattern":"(\\+00:00|Z)$","description":"Datetime"},"geometry":{"$ref":"https://geojson.org/schema/Feature.json","title":"Item Geometry","description":"Item Geometry"},"end_datetime":{"type":"string","title":"End datetime","format":"date-time","pattern":"(\\+00:00|Z)$","description":"End datetime"},"start_datetime":{"type":"string","title":"Start datetime","format":"date-time","pattern":"(\\+00:00|Z)$","description":"Start datetime"}}}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '381' Content-Type: - application/schema+json Date: - Thu, 17 Jul 2025 12:50:30 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125030Z-167d46d96d8dtcxmhC1DEN584s0000000s2g00000000020q status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless/queryables response: body: string: '{"$id":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless/queryables","type":"object","title":"STAC Queryables.","$schema":"http://json-schema.org/draft-07/schema#","properties":{"id":{"$ref":"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json#/definitions/core/allOf/2/properties/id","title":"Item ID","description":"Item identifier"},"gsd":{"type":"number"},"datetime":{"type":"string","title":"Acquired","format":"date-time","pattern":"(\\+00:00|Z)$","description":"Datetime"},"geometry":{"$ref":"https://geojson.org/schema/Feature.json","title":"Item Geometry","description":"Item Geometry"},"proj:epsg":{"type":["integer","null"],"title":"EPSG code"},"proj:shape":{"type":"array","items":{"type":"integer"},"title":"Shape","maxItems":2,"minItems":2},"end_datetime":{"type":"string","title":"End datetime","format":"date-time","pattern":"(\\+00:00|Z)$","description":"End datetime"},"proj:transform":{"type":"array","items":{"type":"number"},"oneOf":[{"maxItems":6,"minItems":6},{"maxItems":9,"minItems":9}],"title":"Transform"},"start_datetime":{"type":"string","title":"Start datetime","format":"date-time","pattern":"(\\+00:00|Z)$","description":"Start datetime"},"threedep:region":{"type":"string","title":"Region"}}}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '524' Content-Type: - application/schema+json Date: - Thu, 17 Jul 2025 12:50:31 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125030Z-167d46d96d85clfkhC1DEN7rkg0000000sng000000004hde status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_client/TestSigning.test_sign_with_return_warns.yaml000066400000000000000000004020751503646565400327660ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3361' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:22 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125021Z-167d46d96d84sncshC1DENcfm00000000seg000000003pxb status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3361' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:22 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125022Z-167d46d96d8chv8thC1DENzves0000000ssg000000001cc2 status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a response: body: string: '{"id":"sentinel-2-l2a","type":"Collection","links":[{"rel":"items","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"license","href":"https://scihub.copernicus.eu/twiki/pub/SciHubWebPortal/TermsConditions/Sentinel_Data_Terms_and_Conditions.pdf","title":"Copernicus Sentinel data terms"},{"rel":"describedby","href":"https://planetarycomputer.microsoft.com/dataset/sentinel-2-l2a","title":"Human readable dataset overview and reference","type":"text/html"}],"title":"Sentinel-2 Level-2A","assets":{"thumbnail":{"href":"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-2.png","type":"image/png","roles":["thumbnail"],"title":"Sentinel 2 L2A"},"geoparquet-items":{"href":"abfs://items/sentinel-2-l2a.parquet","type":"application/x-parquet","roles":["stac-items"],"title":"GeoParquet STAC items","description":"Snapshot of the collection''s STAC items exported to GeoParquet format.","msft:partition_info":{"is_partitioned":true,"partition_frequency":"W-MON"},"table:storage_options":{"account_name":"pcstacitems"}}},"extent":{"spatial":{"bbox":[[-180,-90,180,90]]},"temporal":{"interval":[["2015-06-27T10:25:31Z",null]]}},"license":"proprietary","keywords":["Sentinel","Copernicus","ESA","Satellite","Global","Imagery","Reflectance"],"providers":[{"url":"https://sentinel.esa.int/web/sentinel/missions/sentinel-2","name":"ESA","roles":["producer","licensor"]},{"url":"https://www.esri.com/","name":"Esri","roles":["processor"]},{"url":"https://planetarycomputer.microsoft.com","name":"Microsoft","roles":["host","processor"]}],"summaries":{"gsd":[10,20,60],"eo:bands":[{"name":"AOT","description":"aerosol optical thickness"},{"gsd":60,"name":"B01","common_name":"coastal","description":"coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027},{"gsd":10,"name":"B02","common_name":"blue","description":"visible blue","center_wavelength":0.49,"full_width_half_max":0.098},{"gsd":10,"name":"B03","common_name":"green","description":"visible green","center_wavelength":0.56,"full_width_half_max":0.045},{"gsd":10,"name":"B04","common_name":"red","description":"visible red","center_wavelength":0.665,"full_width_half_max":0.038},{"gsd":20,"name":"B05","common_name":"rededge","description":"vegetation classification red edge","center_wavelength":0.704,"full_width_half_max":0.019},{"gsd":20,"name":"B06","common_name":"rededge","description":"vegetation classification red edge","center_wavelength":0.74,"full_width_half_max":0.018},{"gsd":20,"name":"B07","common_name":"rededge","description":"vegetation classification red edge","center_wavelength":0.783,"full_width_half_max":0.028},{"gsd":10,"name":"B08","common_name":"nir","description":"near infrared","center_wavelength":0.842,"full_width_half_max":0.145},{"gsd":20,"name":"B8A","common_name":"rededge","description":"vegetation classification red edge","center_wavelength":0.865,"full_width_half_max":0.033},{"gsd":60,"name":"B09","description":"water vapor","center_wavelength":0.945,"full_width_half_max":0.026},{"gsd":20,"name":"B11","common_name":"swir16","description":"short-wave infrared, snow/ice/cloud classification","center_wavelength":1.61,"full_width_half_max":0.143},{"gsd":20,"name":"B12","common_name":"swir22","description":"short-wave infrared, snow/ice/cloud classification","center_wavelength":2.19,"full_width_half_max":0.242}],"platform":["Sentinel-2A","Sentinel-2B"],"instruments":["msi"],"constellation":["sentinel-2"],"view:off_nadir":[0]},"description":"The [Sentinel-2](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) program provides global imagery in thirteen spectral bands at 10m-60m resolution and a revisit time of approximately five days. This dataset represents the global Sentinel-2 archive, from 2016 to the present, processed to L2A (bottom-of-atmosphere) using [Sen2Cor](https://step.esa.int/main/snap-supported-plugins/sen2cor/) and converted to [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.","item_assets":{"AOT":{"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"}},"stac_version":"1.0.0","msft:container":"sentinel2-l2","stac_extensions":["https://stac-extensions.github.io/item-assets/v1.0.0/schema.json","https://stac-extensions.github.io/table/v1.2.0/schema.json"],"msft:storage_account":"sentinel2l2a01","msft:short_description":"The Sentinel-2 program provides global imagery in thirteen spectral bands at 10m-60m resolution and a revisit time of approximately five days. This dataset contains the global Sentinel-2 archive, from 2016 to the present, processed to L2A (bottom-of-atmosphere).","msft:region":"westeurope"}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2151' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:23 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125022Z-167d46d96d8rlb5rhC1DENq6gn0000000s6g000000004881 status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3361' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:23 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125023Z-167d46d96d844wzkhC1DEN8g9s0000000s10000000006cdd status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3361' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:24 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125023Z-167d46d96d844wzkhC1DEN8g9s0000000s700000000011ra status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a response: body: string: '{"id":"sentinel-2-l2a","type":"Collection","links":[{"rel":"items","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"license","href":"https://scihub.copernicus.eu/twiki/pub/SciHubWebPortal/TermsConditions/Sentinel_Data_Terms_and_Conditions.pdf","title":"Copernicus Sentinel data terms"},{"rel":"describedby","href":"https://planetarycomputer.microsoft.com/dataset/sentinel-2-l2a","title":"Human readable dataset overview and reference","type":"text/html"}],"title":"Sentinel-2 Level-2A","assets":{"thumbnail":{"href":"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-2.png","type":"image/png","roles":["thumbnail"],"title":"Sentinel 2 L2A"},"geoparquet-items":{"href":"abfs://items/sentinel-2-l2a.parquet","type":"application/x-parquet","roles":["stac-items"],"title":"GeoParquet STAC items","description":"Snapshot of the collection''s STAC items exported to GeoParquet format.","msft:partition_info":{"is_partitioned":true,"partition_frequency":"W-MON"},"table:storage_options":{"account_name":"pcstacitems"}}},"extent":{"spatial":{"bbox":[[-180,-90,180,90]]},"temporal":{"interval":[["2015-06-27T10:25:31Z",null]]}},"license":"proprietary","keywords":["Sentinel","Copernicus","ESA","Satellite","Global","Imagery","Reflectance"],"providers":[{"url":"https://sentinel.esa.int/web/sentinel/missions/sentinel-2","name":"ESA","roles":["producer","licensor"]},{"url":"https://www.esri.com/","name":"Esri","roles":["processor"]},{"url":"https://planetarycomputer.microsoft.com","name":"Microsoft","roles":["host","processor"]}],"summaries":{"gsd":[10,20,60],"eo:bands":[{"name":"AOT","description":"aerosol optical thickness"},{"gsd":60,"name":"B01","common_name":"coastal","description":"coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027},{"gsd":10,"name":"B02","common_name":"blue","description":"visible blue","center_wavelength":0.49,"full_width_half_max":0.098},{"gsd":10,"name":"B03","common_name":"green","description":"visible green","center_wavelength":0.56,"full_width_half_max":0.045},{"gsd":10,"name":"B04","common_name":"red","description":"visible red","center_wavelength":0.665,"full_width_half_max":0.038},{"gsd":20,"name":"B05","common_name":"rededge","description":"vegetation classification red edge","center_wavelength":0.704,"full_width_half_max":0.019},{"gsd":20,"name":"B06","common_name":"rededge","description":"vegetation classification red edge","center_wavelength":0.74,"full_width_half_max":0.018},{"gsd":20,"name":"B07","common_name":"rededge","description":"vegetation classification red edge","center_wavelength":0.783,"full_width_half_max":0.028},{"gsd":10,"name":"B08","common_name":"nir","description":"near infrared","center_wavelength":0.842,"full_width_half_max":0.145},{"gsd":20,"name":"B8A","common_name":"rededge","description":"vegetation classification red edge","center_wavelength":0.865,"full_width_half_max":0.033},{"gsd":60,"name":"B09","description":"water vapor","center_wavelength":0.945,"full_width_half_max":0.026},{"gsd":20,"name":"B11","common_name":"swir16","description":"short-wave infrared, snow/ice/cloud classification","center_wavelength":1.61,"full_width_half_max":0.143},{"gsd":20,"name":"B12","common_name":"swir22","description":"short-wave infrared, snow/ice/cloud classification","center_wavelength":2.19,"full_width_half_max":0.242}],"platform":["Sentinel-2A","Sentinel-2B"],"instruments":["msi"],"constellation":["sentinel-2"],"view:off_nadir":[0]},"description":"The [Sentinel-2](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) program provides global imagery in thirteen spectral bands at 10m-60m resolution and a revisit time of approximately five days. This dataset represents the global Sentinel-2 archive, from 2016 to the present, processed to L2A (bottom-of-atmosphere) using [Sen2Cor](https://step.esa.int/main/snap-supported-plugins/sen2cor/) and converted to [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.","item_assets":{"AOT":{"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"}},"stac_version":"1.0.0","msft:container":"sentinel2-l2","stac_extensions":["https://stac-extensions.github.io/item-assets/v1.0.0/schema.json","https://stac-extensions.github.io/table/v1.2.0/schema.json"],"msft:storage_account":"sentinel2l2a01","msft:short_description":"The Sentinel-2 program provides global imagery in thirteen spectral bands at 10m-60m resolution and a revisit time of approximately five days. This dataset contains the global Sentinel-2 archive, from 2016 to the present, processed to L2A (bottom-of-atmosphere).","msft:region":"westeurope"}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2151' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:24 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125024Z-167d46d96d844j9nhC1DENytps0000000smg000000004nxz status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_client/TestSigning.test_signing.yaml000066400000000000000001402214731503646565400276260ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/collections"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3362' Content-Type: - application/json Date: - Thu, 17 Jul 2025 13:05:16 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T130516Z-167d46d96d8dtcxmhC1DEN584s0000000s0g000000002s7b status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/collections"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3362' Content-Type: - application/json Date: - Thu, 17 Jul 2025 13:05:17 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T130516Z-167d46d96d8kf92xhC1DEN2fsg0000000sg0000000002s63 status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0 response: body: string: "{\"id\":\"cil-gdpcir-cc0\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0\"},{\"rel\":\"license\",\"href\":\"https://spdx.org/licenses/CC0-1.0.html\",\"type\":\"text/html\",\"title\":\"Creative Commons Zero v1.0 Universal\"},{\"rel\":\"cite-as\",\"href\":\"https://zenodo.org/record/6403794\",\"type\":\"text/html\"},{\"rel\":\"describedby\",\"href\":\"https://github.com/ClimateImpactLab/downscaleCMIP6/\",\"type\":\"text/html\",\"title\":\"Project homepage\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gdpcir.png\",\"type\":\"image/png\",\"title\":\"Thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1950-01-01T00:00:00Z\",\"2100-12-31T00:00:00Z\"]]}},\"license\":\"CC0-1.0\",\"sci:doi\":\"10.5194/egusphere-2022-1513\",\"keywords\":[\"CMIP6\",\"Climate Impact Lab\",\"Rhodium Group\",\"Precipitation\",\"Temperature\"],\"providers\":[{\"url\":\"https://impactlab.org/\",\"name\":\"Climate Impact Lab\",\"roles\":[\"producer\"]},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"cmip6:variable\":[\"pr\",\"tasmax\",\"tasmin\"],\"cmip6:source_id\":[\"FGOALS-g3\",\"INM-CM4-8\",\"INM-CM5-0\"],\"cmip6:experiment_id\":[\"historical\",\"ssp126\",\"ssp245\",\"ssp370\",\"ssp585\"],\"cmip6:institution_id\":[\"BCC\",\"CAS\",\"CCCma\",\"CMCC\",\"CSIRO\",\"CSIRO-ARCCSS\",\"DKRZ\",\"EC-Earth-Consortium\",\"INM\",\"MIROC\",\"MOHC\",\"MPI-M\",\"NCC\",\"NOAA-GFDL\",\"NUIST\"]},\"description\":\"The World Climate Research Programme's [6th Coupled Model Intercomparison Project (CMIP6)](https://www.wcrp-climate.org/wgcm-cmip/wgcm-cmip6) represents an enormous advance in the quality, detail, and scope of climate modeling.\\n\\nThe [Global Downscaled Projections for Climate Impacts Research](https://github.com/ClimateImpactLab/downscaleCMIP6) dataset makes this modeling more applicable to understanding the impacts of changes in the climate on humans and society with two key developments: trend-preserving bias correction and downscaling. In this dataset, the [Climate Impact Lab](https://impactlab.org) provides global, daily minimum and maximum air temperature at the surface (`tasmin` and `tasmax`) and daily cumulative surface precipitation (`pr`) corresponding to the CMIP6 historical, ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 scenarios for 25 global climate models on a 1/4-degree regular global grid.\\n\\n## Accessing the data\\n\\nGDPCIR data can be accessed on the Microsoft Planetary Computer. The dataset is made of of three collections, distinguished by data license:\\n* [Public domain (CC0-1.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0)\\n* [Attribution (CC BY 4.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by)\\n\\nEach modeling center with bias corrected and downscaled data in this collection falls into one of these license categories - see the [table below](/dataset/cil-gdpcir-cc0#available-institutions-models-and-scenarios-by-license-collection) to see which model is in each collection, and see the section below on [Citing, Licensing, and using data produced by this project](/dataset/cil-gdpcir-cc0#citing-licensing-and-using-data-produced-by-this-project) for citations and additional information about each license.\\n\\n## Data format & contents\\n\\nThe data is stored as partitioned zarr stores (see [https://zarr.readthedocs.io](https://zarr.readthedocs.io)), each of which includes thousands of data and metadata files covering the full time span of the experiment. Historical zarr stores contain just over 50 GB, while SSP zarr stores contain nearly 70GB. Each store is stored as a 32-bit float, with dimensions time (daily datetime), lat (float latitude), and lon (float longitude). The data is chunked at each interval of 365 days and 90 degree interval of latitude and longitude. Therefore, each chunk is `(365, 360, 360)`, with each chunk occupying approximately 180MB in memory.\\n\\nHistorical data is daily, excluding leap days, from Jan 1, 1950 to Dec 31, 2014; SSP data is daily, excluding leap days, from Jan 1, 2015 to either Dec 31, 2099 or Dec 31, 2100, depending on data availability in the source GCM.\\n\\nThe spatial domain covers all 0.25-degree grid cells, indexed by the grid center, with grid edges on the quarter-degree, using a -180 to 180 longitude convention. Thus, the \u201Clon\u201D coordinate extends from -179.875 to 179.875, and the \u201Clat\u201D coordinate extends from -89.875 to 89.875, with intermediate values at each 0.25-degree increment between (e.g. -179.875, -179.625, -179.375, etc).\\n\\n## Available institutions, models, and scenarios by license collection\\n\\n| Modeling institution | Source model | Available experiments \ | License collection |\\n| -------------------- | ----------------- | ------------------------------------------ | ---------------------- |\\n| CAS | FGOALS-g3 [^1] | SSP2-4.5, SSP3-7.0, and SSP5-8.5 \ | Public domain datasets |\\n| INM | INM-CM4-8 \ | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets |\\n| INM | INM-CM5-0 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets |\\n| BCC | BCC-CSM2-MR \ | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| CMCC | CMCC-CM2-SR5 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 \ | CC-BY-40 |\\n| CMCC | CMCC-ESM2 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 | CC-BY-40 |\\n| CSIRO-ARCCSS | ACCESS-CM2 | SSP2-4.5 and SSP3-7.0 | CC-BY-40 |\\n| CSIRO | ACCESS-ESM1-5 | SSP1-2.6, SSP2-4.5, and SSP3-7.0 | CC-BY-40 |\\n| MIROC | MIROC-ES2L | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| MIROC | MIROC6 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| MOHC | HadGEM3-GC31-LL | SSP1-2.6, SSP2-4.5, and SSP5-8.5 | CC-BY-40 \ |\\n| MOHC | UKESM1-0-LL | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| MPI-M | MPI-ESM1-2-LR | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| MPI-M/DKRZ [^2] | MPI-ESM1-2-HR | SSP1-2.6 and SSP5-8.5 | CC-BY-40 |\\n| NCC | NorESM2-LM | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| NCC | NorESM2-MM | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| NOAA-GFDL \ | GFDL-CM4 | SSP2-4.5 and SSP5-8.5 | CC-BY-40 |\\n| NOAA-GFDL | GFDL-ESM4 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| NUIST | NESM3 | SSP1-2.6, SSP2-4.5, and SSP5-8.5 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3 | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 |\\n| EC-Earth-Consortium \ | EC-Earth3-AerChem | ssp370 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3-CC | ssp245 and ssp585 | CC-BY-40 |\\n| EC-Earth-Consortium \ | EC-Earth3-Veg | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3-Veg-LR | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 |\\n| CCCma | CanESM5 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 | CC-BY-40[^3] \ |\\n\\n*Notes:*\\n\\n[^1]: At the time of running, no ssp1-2.6 precipitation data was available. Therefore, we provide `tasmin` and `tamax` for this model and experiment, but not `pr`. All other model/experiment combinations in the above table include all three variables.\\n\\n[^2]: The institution which ran MPI-ESM1-2-HR\u2019s historical (CMIP) simulations is `MPI-M`, while the future (ScenarioMIP) simulations were run by `DKRZ`. Therefore, the institution component of `MPI-ESM1-2-HR` filepaths differ between `historical` and `SSP` scenarios.\\n\\n[^3]: This dataset was previously licensed as [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/), but was relicensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0) in March, 2023. \\n\\n## Project methods\\n\\nThis project makes use of statistical bias correction and downscaling algorithms, which are specifically designed to accurately represent changes in the extremes. For this reason, we selected Quantile Delta Mapping (QDM), following the method introduced by [Cannon et al. (2015)](https://doi.org/10.1175/JCLI-D-14-00754.1), which preserves quantile-specific trends from the GCM while fitting the full distribution for a given day-of-year to a reference dataset (ERA5).\\n\\nWe then introduce a similar method tailored to increase spatial resolution while preserving extreme behavior, Quantile-Preserving Localized-Analog Downscaling (QPLAD).\\n\\nTogether, these methods provide a robust means to handle both the central and tail behavior seen in climate model output, while aligning the full distribution to a state-of-the-art reanalysis dataset and providing the spatial granularity needed to study surface impacts.\\n\\nFor further documentation, see [Global downscaled projections for climate impacts research (GDPCIR): preserving extremes for modeling future climate impacts](https://egusphere.copernicus.org/preprints/2023/egusphere-2022-1513/) (EGUsphere, 2022 [preprint]).\\n\\n\\n## Citing, licensing, and using data produced by this project\\n\\nProjects making use of the data produced as part of the Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CIL GDPCIR) project are requested to cite both this project and the source datasets from which these results are derived. Additionally, the use of data derived from some GCMs *requires* citations, and some modeling centers impose licensing restrictions & requirements on derived works. See each GCM's license info in the links below for more information.\\n\\n### CIL GDPCIR\\n\\nUsers are requested to cite this project in derived works. Our method documentation paper may be cited using the following:\\n\\n> Gergel, D. R., Malevich, S. B., McCusker, K. E., Tenezakis, E., Delgado, M. T., Fish, M. A., and Kopp, R. E.: Global downscaled projections for climate impacts research (GDPCIR): preserving extremes for modeling future climate impacts, EGUsphere [preprint], https://doi.org/10.5194/egusphere-2022-1513, 2023. \\n\\nThe code repository may be cited using the following:\\n\\n> Diana Gergel, Kelly McCusker, Brewster Malevich, Emile Tenezakis, Meredith Fish, Michael Delgado (2022). ClimateImpactLab/downscaleCMIP6: (v1.0.0). Zenodo. https://doi.org/10.5281/zenodo.6403794\\n\\n### ERA5\\n\\nAdditionally, we request you cite the historical dataset used in bias correction and downscaling, ERA5. See the [ECMWF guide to citing a dataset on the Climate Data Store](https://confluence.ecmwf.int/display/CKB/How+to+acknowledge+and+cite+a+Climate+Data+Store+%28CDS%29+catalogue+entry+and+the+data+published+as+part+of+it):\\n\\n> Hersbach, H, et al. The ERA5 global reanalysis. Q J R Meteorol Soc.2020; 146: 1999\u20132049. DOI: [10.1002/qj.3803](https://doi.org/10.1002/qj.3803)\\n>\\n> Mu\xF1oz Sabater, J., (2019): ERA5-Land hourly data from 1981 to present. Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\n>\\n> Mu\xF1oz Sabater, J., (2021): ERA5-Land hourly data from 1950 to 1980. Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\n\\n### GCM-specific citations & licenses\\n\\nThe CMIP6 simulation data made available through the Earth System Grid Federation (ESGF) are subject to Creative Commons [BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) or [BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) licenses. The Climate Impact Lab has reached out to each of the modeling institutions to request waivers from these terms so the outputs of this project may be used with fewer restrictions, and has been granted permission to release the data using the licenses listed here.\\n\\n#### Public Domain Datasets\\n\\nThe following bias corrected and downscaled model simulations are available in the public domain using a [CC0 1.0 Universal Public Domain Declaration](https://creativecommons.org/publicdomain/zero/1.0/). Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0.\\n\\n* **FGOALS-g3**\\n\\n License description: [data_licenses/FGOALS-g3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/FGOALS-g3.txt)\\n\\n \ CMIP Citation:\\n\\n > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6 CMIP*. Version 20190826. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1783\\n\\n ScenarioMIP Citation:\\n\\n \ > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190818; SSP2-4.5 version 20190818; SSP3-7.0 version 20190820; SSP5-8.5 tasmax version 20190819; SSP5-8.5 tasmin version 20190819; SSP5-8.5 pr version 20190818. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2056\\n\\n\\n* **INM-CM4-8**\\n\\n License description: [data_licenses/INM-CM4-8.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/INM-CM4-8.txt)\\n\\n \ CMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8 model output prepared for CMIP6 CMIP*. Version 20190530. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1422\\n\\n ScenarioMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8 model output prepared for CMIP6 ScenarioMIP*. Version 20190603. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12321\\n\\n\\n* **INM-CM5-0**\\n\\n \ License description: [data_licenses/INM-CM5-0.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/INM-CM5-0.txt)\\n\\n \ CMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0 model output prepared for CMIP6 CMIP*. Version 20190610. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1423\\n\\n ScenarioMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190619; SSP2-4.5 version 20190619; SSP3-7.0 version 20190618; SSP5-8.5 version 20190724. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12322\\n\\n\\n#### CC-BY-4.0\\n\\nThe following bias corrected and downscaled model simulations are licensed under a [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/). Note that this license requires citation of the source model output (included here). Please see https://creativecommons.org/licenses/by/4.0/ for more information. Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by.\\n\\n* **ACCESS-CM2**\\n\\n License description: [data_licenses/ACCESS-CM2.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/ACCESS-CM2.txt)\\n\\n \ CMIP Citation:\\n\\n > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2281\\n\\n ScenarioMIP Citation:\\n\\n \ > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2285\\n\\n\\n* **ACCESS-ESM1-5**\\n\\n \ License description: [data_licenses/ACCESS-ESM1-5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/ACCESS-ESM1-5.txt)\\n\\n \ CMIP Citation:\\n\\n > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2288\\n\\n ScenarioMIP Citation:\\n\\n \ > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 ScenarioMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2291\\n\\n\\n* **BCC-CSM2-MR**\\n\\n License description: [data_licenses/BCC-CSM2-MR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/BCC-CSM2-MR.txt)\\n\\n \ CMIP Citation:\\n\\n > Xin, Xiaoge; Zhang, Jie; Zhang, Fang; Wu, Tongwen; Shi, Xueli; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei, Min **(2018)**. *BCC BCC-CSM2MR model output prepared for CMIP6 CMIP*. Version 20181126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1725\\n\\n \ ScenarioMIP Citation:\\n\\n > Xin, Xiaoge; Wu, Tongwen; Shi, Xueli; Zhang, Fang; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei, Min **(2019)**. *BCC BCC-CSM2MR model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190315; SSP2-4.5 version 20190318; SSP3-7.0 version 20190318; SSP5-8.5 version 20190318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1732\\n\\n\\n* **CMCC-CM2-SR5**\\n\\n License description: [data_licenses/CMCC-CM2-SR5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CMCC-CM2-SR5.txt)\\n\\n \ CMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5 model output prepared for CMIP6 CMIP*. Version 20200616. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1362\\n\\n ScenarioMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200717; SSP2-4.5 version 20200617; SSP3-7.0 version 20200622; SSP5-8.5 version 20200622. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1365\\n\\n\\n* **CMCC-ESM2**\\n\\n License description: [data_licenses/CMCC-ESM2.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CMCC-ESM2.txt)\\n\\n \ CMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele; Butensch\xF6n, Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 CMIP*. Version 20210114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13164\\n\\n \ ScenarioMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele; Butensch\xF6n, Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20210126; SSP2-4.5 version 20210129; SSP3-7.0 version 20210202; SSP5-8.5 version 20210126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13168\\n\\n\\n* **EC-Earth3-AerChem**\\n\\n License description: [data_licenses/EC-Earth3-AerChem.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-AerChem.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 CMIP*. Version 20200624. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.639\\n\\n \ ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 ScenarioMIP*. Version 20200827. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.724\\n\\n\\n* **EC-Earth3-CC**\\n\\n License description: [data_licenses/EC-Earth3-CC.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-CC.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth-3-CC model output prepared for CMIP6 CMIP*. Version 20210113. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.640\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2021)**. *EC-Earth-Consortium EC-Earth3-CC model output prepared for CMIP6 ScenarioMIP*. Version 20210113. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.15327\\n\\n\\n* **EC-Earth3-Veg-LR**\\n\\n License description: [data_licenses/EC-Earth3-Veg-LR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-Veg-LR.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 CMIP*. Version 20200217. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.643\\n\\n \ ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20201201; SSP2-4.5 version 20201123; SSP3-7.0 version 20201123; SSP5-8.5 version 20201201. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.728\\n\\n\\n* **EC-Earth3-Veg**\\n\\n License description: [data_licenses/EC-Earth3-Veg.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-Veg.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3-Veg model output prepared for CMIP6 CMIP*. Version 20200225. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.642\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3-Veg model output prepared for CMIP6 ScenarioMIP*. Version 20200225. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.727\\n\\n\\n* **EC-Earth3**\\n\\n License description: [data_licenses/EC-Earth3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3 model output prepared for CMIP6 CMIP*. Version 20200310. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.181\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3 model output prepared for CMIP6 ScenarioMIP*. Version 20200310. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.251\\n\\n\\n* **GFDL-CM4**\\n\\n License description: [data_licenses/GFDL-CM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-CM4.txt)\\n\\n \ CMIP Citation:\\n\\n > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Bushuk, Mitchell; Dunne, Krista A.; Dussin, Raphael; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, P.C.D; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4 model output*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1402\\n\\n ScenarioMIP Citation:\\n\\n \ > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, Chris; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.9242\\n\\n\\n* **GFDL-ESM4**\\n\\n \ License description: [data_licenses/GFDL-ESM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-ESM4.txt)\\n\\n \ CMIP Citation:\\n\\n > Krasting, John P.; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Silvers, Levi; Wyman, Bruce; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Dussin, Raphael; Guo, Huan; He, Jian; Held, Isaac M; Horowitz, Larry W.; Lin, Pu; Milly, P.C.D; Shevliakova, Elena; Stock, Charles; Winton, Michael; Wittenberg, Andrew T.; Xie, Yuanyu; Zhao, Ming **(2018)**. *NOAA-GFDL GFDL-ESM4 model output prepared for CMIP6 CMIP*. Version 20190726. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1407\\n\\n ScenarioMIP Citation:\\n\\n \ > John, Jasmin G; Blanton, Chris; McHugh, Colleen; Radhakrishnan, Aparna; Rand, Kristopher; Vahlenkamp, Hans; Wilson, Chandin; Zadeh, Niki T.; Dunne, John P.; Dussin, Raphael; Horowitz, Larry W.; Krasting, John P.; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Ploshay, Jeffrey; Shevliakova, Elena; Silvers, Levi; Stock, Charles; Winton, Michael; Zeng, Yujin **(2018)**. *NOAA-GFDL GFDL-ESM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1414\\n\\n\\n* **HadGEM3-GC31-LL**\\n\\n License description: [data_licenses/HadGEM3-GC31-LL.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/HadGEM3-GC31-LL.txt)\\n\\n \ CMIP Citation:\\n\\n > Ridley, Jeff; Menary, Matthew; Kuhlbrodt, Till; Andrews, Martin; Andrews, Tim **(2018)**. *MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP*. Version 20190624. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.419\\n\\n ScenarioMIP Citation:\\n\\n \ > Good, Peter **(2019)**. *MOHC HadGEM3-GC31-LL model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200114; SSP2-4.5 version 20190908; SSP5-8.5 version 20200114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.10845\\n\\n\\n* **MIROC-ES2L**\\n\\n License description: [data_licenses/MIROC-ES2L.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MIROC-ES2L.txt)\\n\\n \ CMIP Citation:\\n\\n > Hajima, Tomohiro; Abe, Manabu; Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogura, Tomoo; Ogochi, Koji; Watanabe, Michio; Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio; Tachiiri, Kaoru **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 CMIP*. Version 20191129. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.902\\n\\n \ ScenarioMIP Citation:\\n\\n > Tachiiri, Kaoru; Abe, Manabu; Hajima, Tomohiro; Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogochi, Koji; Watanabe, Michio; Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 ScenarioMIP*. Version 20200318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.936\\n\\n\\n* **MIROC6**\\n\\n License description: [data_licenses/MIROC6.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MIROC6.txt)\\n\\n \ CMIP Citation:\\n\\n > Tatebe, Hiroaki; Watanabe, Masahiro **(2018)**. *MIROC MIROC6 model output prepared for CMIP6 CMIP*. Version 20191016. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.881\\n\\n ScenarioMIP Citation:\\n\\n > Shiogama, Hideo; Abe, Manabu; Tatebe, Hiroaki **(2019)**. *MIROC MIROC6 model output prepared for CMIP6 ScenarioMIP*. Version 20191016. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.898\\n\\n\\n* **MPI-ESM1-2-HR**\\n\\n License description: [data_licenses/MPI-ESM1-2-HR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MPI-ESM1-2-HR.txt)\\n\\n \ CMIP Citation:\\n\\n > Jungclaus, Johann; Bittner, Matthias; Wieners, Karl-Hermann; Wachsmann, Fabian; Schupfner, Martin; Legutke, Stephanie; Giorgetta, Marco; Reick, Christian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Esch, Monika; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-HR model output prepared for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.741\\n\\n \ ScenarioMIP Citation:\\n\\n > Schupfner, Martin; Wieners, Karl-Hermann; Wachsmann, Fabian; Steger, Christian; Bittner, Matthias; Jungclaus, Johann; Fr\xFCh, Barbara; Pankatz, Klaus; Giorgetta, Marco; Reick, Christian; Legutke, Stephanie; Esch, Monika; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *DKRZ MPI-ESM1.2-HR model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2450\\n\\n\\n* **MPI-ESM1-2-LR**\\n\\n License description: [data_licenses/MPI-ESM1-2-LR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MPI-ESM1-2-LR.txt)\\n\\n \ CMIP Citation:\\n\\n > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Legutke, Stephanie; Schupfner, Martin; Wachsmann, Fabian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.742\\n\\n \ ScenarioMIP Citation:\\n\\n > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.793\\n\\n\\n* **NESM3**\\n\\n \ License description: [data_licenses/NESM3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NESM3.txt)\\n\\n \ CMIP Citation:\\n\\n > Cao, Jian; Wang, Bin **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 CMIP*. Version 20190812. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2021\\n\\n ScenarioMIP Citation:\\n\\n \ > Cao, Jian **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190806; SSP2-4.5 version 20190805; SSP5-8.5 version 20190811. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2027\\n\\n\\n* **NorESM2-LM**\\n\\n License description: [data_licenses/NorESM2-LM.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NorESM2-LM.txt)\\n\\n \ CMIP Citation:\\n\\n > Seland, \xD8yvind; Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 CMIP*. Version 20190815. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.502\\n\\n ScenarioMIP Citation:\\n\\n \ > Seland, \xD8yvind; Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.604\\n\\n\\n* **NorESM2-MM**\\n\\n License description: [data_licenses/NorESM2-MM.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NorESM2-MM.txt)\\n\\n \ CMIP Citation:\\n\\n > Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Seland, \xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.506\\n\\n ScenarioMIP Citation:\\n\\n \ > Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Seland, \xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.608\\n\\n\\n* **UKESM1-0-LL**\\n\\n License description: [data_licenses/UKESM1-0-LL.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/UKESM1-0-LL.txt)\\n\\n \ CMIP Citation:\\n\\n > Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Mulcahy, Jane; Sellar, Alistair; Walton, Jeremy; Jones, Colin **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 CMIP*. Version 20190627. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1569\\n\\n \ ScenarioMIP Citation:\\n\\n > Good, Peter; Sellar, Alistair; Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Kuhlbrodt, Till; Walton, Jeremy **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190708; SSP2-4.5 version 20190715; SSP3-7.0 version 20190726; SSP5-8.5 version 20190726. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1567\\n\\n\\n* **CanESM5**\\n\\n License description: [data_licenses/CanESM5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CanESM5.txt). Note: this dataset was previously licensed\\n under CC BY-SA 4.0, but was relicensed as CC BY 4.0 in March, 2023.\\n\\n CMIP Citation:\\n\\n > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model output prepared for CMIP6 CMIP*. Version 20190429. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1303\\n\\n ScenarioMIP Citation:\\n\\n \ > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model output prepared for CMIP6 ScenarioMIP*. Version 20190429. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1317\\n\\n## Acknowledgements\\n\\nThis work is the result of many years worth of work by members of the [Climate Impact Lab](https://impactlab.org), but would not have been possible without many contributions from across the wider scientific and computing communities.\\n\\nSpecifically, we would like to acknowledge the World Climate Research Programme's Working Group on Coupled Modeling, which is responsible for CMIP, and we would like to thank the climate modeling groups for producing and making their model output available. We would particularly like to thank the modeling institutions whose results are included as an input to this repository (listed above) for their contributions to the CMIP6 project and for responding to and granting our requests for license waivers.\\n\\nWe would also like to thank Lamont-Doherty Earth Observatory, the [Pangeo Consortium](https://github.com/pangeo-data) (and especially the [ESGF Cloud Data Working Group](https://pangeo-data.github.io/pangeo-cmip6-cloud/#)) and Google Cloud and the Google Public Datasets program for making the [CMIP6 Google Cloud collection](https://console.cloud.google.com/marketplace/details/noaa-public/cmip6) possible. In particular we're extremely grateful to [Ryan Abernathey](https://github.com/rabernat), [Naomi Henderson](https://github.com/naomi-henderson), [Charles Blackmon-Luca](https://github.com/charlesbluca), [Aparna Radhakrishnan](https://github.com/aradhakrishnanGFDL), [Julius Busecke](https://github.com/jbusecke), and [Charles Stern](https://github.com/cisaacstern) for the huge amount of work they've done to translate the ESGF CMIP6 netCDF archives into consistently-formattted, analysis-ready zarr stores on Google Cloud.\\n\\nWe're also grateful to the [xclim developers](https://github.com/Ouranosinc/xclim/graphs/contributors) ([DOI: 10.5281/zenodo.2795043](https://doi.org/10.5281/zenodo.2795043)), in particular [Pascal Bourgault](https://github.com/aulemahal), [David Huard](https://github.com/huard), and [Travis Logan](https://github.com/tlogan2000), for implementing the QDM bias correction method in the xclim python package, supporting our QPLAD implementation into the package, and ongoing support in integrating dask into downscaling workflows. For method advice and useful conversations, we would like to thank Keith Dixon, Dennis Adams-Smith, and [Joe Hamman](https://github.com/jhamman).\\n\\n## Financial support\\n\\nThis research has been supported by The Rockefeller Foundation and the Microsoft AI for Earth Initiative.\\n\\n## Additional links:\\n\\n* CIL GDPCIR project homepage: [github.com/ClimateImpactLab/downscaleCMIP6](https://github.com/ClimateImpactLab/downscaleCMIP6)\\n* Project listing on zenodo: https://doi.org/10.5281/zenodo.6403794\\n* Climate Impact Lab homepage: [impactlab.org](https://impactlab.org)\",\"item_assets\":{\"pr\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Precipitation\",\"description\":\"Precipitation\"},\"tasmax\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Daily Maximum Near-Surface Air Temperature\",\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Daily Minimum Near-Surface Air Temperature\",\"description\":\"Daily Minimum Near-Surface Air Temperature\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"cil-gdpcir\",\"cube:variables\":{\"pr\":{\"type\":\"data\",\"unit\":\"mm day-1\",\"attrs\":{\"units\":\"mm day-1\"},\"dimensions\":[\"time\",\"lat\",\"lon\"]},\"tasmax\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"maximum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: max')\",\"long_name\":\"Daily Maximum Near-Surface Air Temperature\",\"coordinates\":\"height\",\"cell_methods\":\"area: mean time: maximum (interval: 5 minutes)\",\"cell_measures\":\"area: areacella\",\"original_name\":\"TREFHTMX\",\"standard_name\":\"air_temperature\"},\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"minimum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: min')\",\"long_name\":\"Daily Minimum Near-Surface Air Temperature\",\"coordinates\":\"height\",\"cell_methods\":\"area: mean time: minimum (interval: 5 minutes)\",\"cell_measures\":\"area: areacella\",\"original_name\":\"TREFHTMN\",\"standard_name\":\"air_temperature\"},\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Minimum Near-Surface Air Temperature\"}},\"msft:container\":\"cil-gdpcir\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[-89.875,89.875],\"reference_system\":\"epsg:4326\"},\"lon\":{\"axis\":\"x\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[-179.875,179.875],\"reference_system\":\"epsg:4326\"},\"time\":{\"step\":\"P1DT0H0M0S\",\"type\":\"temporal\",\"extent\":[\"1950-01-01T12:00:00Z\",\"2100-12-31T12:00:00Z\"],\"description\":\"time\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\"msft:storage_account\":\"rhgeuwest\",\"msft:short_description\":\"Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CC0-1.0)\"}" headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '10864' Content-Type: - application/json Date: - Thu, 17 Jul 2025 13:05:17 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T130517Z-167d46d96d8t4qtmhC1DENgtus0000000rmg0000000067h2 status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0/items/cil-gdpcir-INM-INM-CM5-0-ssp585-r1i1p1f1-day response: body: string: '{"id":"cil-gdpcir-INM-INM-CM5-0-ssp585-r1i1p1f1-day","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0/items/cil-gdpcir-INM-INM-CM5-0-ssp585-r1i1p1f1-day"}],"assets":{"pr":{"href":"abfs://cil-gdpcir/ScenarioMIP/INM/INM-CM5-0/ssp585/r1i1p1f1/day/pr/v1.1.zarr","cmip6:grid":"gs2x1.5","msft:https-url":"https://rhgeuwest.blob.core.windows.net/cil-gdpcir/ScenarioMIP/INM/INM-CM5-0/ssp585/r1i1p1f1/day/pr/v1.1.zarr","cmip6:grid_label":"gr1","cmip6:tracking_id":"hdl:21.14100/ba34d30b-fca8-4737-887f-344ec571901c\\\\\\\\nhdl:21.14100/5894fdc2-5c6c-45e1-835e-fde701be830a","cmip6:variable_id":"pr","xarray:open_kwargs":{"chunks":{},"engine":"zarr","consolidated":true,"storage_options":{"account_name":"rhgeuwest"}},"cmip6:creation_date":"2019-07-23T13:02:14Z","type":"application/vnd+zarr"},"tasmax":{"href":"abfs://cil-gdpcir/ScenarioMIP/INM/INM-CM5-0/ssp585/r1i1p1f1/day/tasmax/v1.1.zarr","cmip6:grid":"gs2x1.5","msft:https-url":"https://rhgeuwest.blob.core.windows.net/cil-gdpcir/ScenarioMIP/INM/INM-CM5-0/ssp585/r1i1p1f1/day/tasmax/v1.1.zarr","cmip6:grid_label":"gr1","cmip6:tracking_id":"hdl:21.14100/5d80d962-c475-4cd3-997b-e2a1a471b568\\\\\\\\nhdl:21.14100/70e28b2d-d6f7-4d9c-acc3-c0f9adf5486a","cmip6:variable_id":"tasmax","xarray:open_kwargs":{"chunks":{},"engine":"zarr","consolidated":true,"storage_options":{"account_name":"rhgeuwest"}},"cmip6:creation_date":"2019-07-23T13:02:16Z","type":"application/vnd+zarr"},"tasmin":{"href":"abfs://cil-gdpcir/ScenarioMIP/INM/INM-CM5-0/ssp585/r1i1p1f1/day/tasmin/v1.1.zarr","cmip6:grid":"gs2x1.5","msft:https-url":"https://rhgeuwest.blob.core.windows.net/cil-gdpcir/ScenarioMIP/INM/INM-CM5-0/ssp585/r1i1p1f1/day/tasmin/v1.1.zarr","cmip6:grid_label":"gr1","cmip6:tracking_id":"hdl:21.14100/e16631f9-dea0-462f-b57e-5edcf9febb85\\\\\\\\nhdl:21.14100/d250cd0e-ed14-4752-9459-ae51f8c0565a","cmip6:variable_id":"tasmin","xarray:open_kwargs":{"chunks":{},"engine":"zarr","consolidated":true,"storage_options":{"account_name":"rhgeuwest"}},"cmip6:creation_date":"2019-07-23T13:02:16Z","type":"application/vnd+zarr"}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"cil-gdpcir-cc0","properties":{"datetime":null,"cmip6:realm":"atmos","cmip6:source":"INM-CM5-0 (2016): \\\\\\\\naerosol: INM-AER1\\\\\\\\natmos: INM-AM5-0 (2x1.5; 180 x 120 longitude/latitude; 73 levels; top level sigma = 0.0002)\\\\\\\\natmosChem: none\\\\\\\\nland: INM-LND1\\\\\\\\nlandIce: none\\\\\\\\nocean: INM-OM5 (North Pole shifted to 60N, 90E. 0.5x0.25; 720 x 720 longitude/latitude; 40 levels; vertical sigma coordinate)\\\\\\\\nocnBgchem: none\\\\\\\\nseaIce: INM-ICE1","end_datetime":"2100-12-31T12:00:00Z","cmip6:license":"https://github.com/ClimateImpactLab/downscaleCMIP6/tree/master/data_licenses/INM-CM5-0.txt","cmip6:mip_era":"CMIP6","cmip6:product":"model-output","cmip6:table_id":"day","cube:variables":{"pr":{"type":"data","unit":"mm day-1","attrs":{"units":"mm day-1"},"shape":[31390,720,1440],"dimensions":["time","lat","lon"]},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum near-surface (usually, 2 meter) air temperature (add cell_method attribute ''time: max'')","history":"2019-07-23T13:02:11Z altered by CMOR: Treated scalar dimension: ''height''.","long_name":"Daily Maximum Near-Surface Air Temperature","coordinates":"height","cell_methods":"area: mean time: maximum (interval: 1 day)","cell_measures":"area: areacella","original_name":"tasmax","standard_name":"air_temperature"},"shape":[31390,720,1440],"dimensions":["time","lat","lon"],"description":"Daily Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum near-surface (usually, 2 meter) air temperature (add cell_method attribute ''time: min'')","history":"2019-07-23T13:02:11Z altered by CMOR: Treated scalar dimension: ''height''.","long_name":"Daily Minimum Near-Surface Air Temperature","coordinates":"height","cell_methods":"area: mean time: minimum (interval: 1 day)","cell_measures":"area: areacella","original_name":"tasmin","standard_name":"air_temperature"},"shape":[31390,720,1440],"dimensions":["time","lat","lon"],"description":"Daily Minimum Near-Surface Air Temperature"}},"start_datetime":"2015-01-01T12:00:00Z","cmip6:frequency":"day","cmip6:source_id":"INM-CM5-0","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-89.875,89.875],"reference_system":"epsg:4326"},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[-179.875,179.875],"reference_system":"epsg:4326"},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2015-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}},"cmip6:experiment":"update of RCP8.5 based on SSP5","cmip6:Conventions":"CF-1.7 CMIP-6.2","cmip6:activity_id":"ScenarioMIP","cmip6:institution":"Institute for Numerical Mathematics, Russian Academy of Science, Moscow 119991, Russia","cmip6:source_type":"AOGCM AER","cmip6:experiment_id":"ssp585","cmip6:forcing_index":1,"cmip6:physics_index":1,"cmip6:variant_label":"r1i1p1f1","cmip6:institution_id":"INM","cmip6:sub_experiment":"none","cmip6:further_info_url":"https://furtherinfo.es-doc.org/CMIP6.INM.INM-CM5-0.ssp585.none.r1i1p1f1","cmip6:realization_index":1,"cmip6:sub_experiment_id":"none","cmip6:data_specs_version":"01.00.29","cmip6:nominal_resolution":"100 km","cmip6:initialization_index":1},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '1931' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 13:05:18 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T130518Z-167d46d96d8ttf9rhC1DENb9c80000000skg000000000dr7 status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections response: body: string: "{\"collections\":[{\"id\":\"daymet-annual-pr\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr\"},{\"rel\":\"license\",\"href\":\"https://science.nasa.gov/earth-science/earth-science-data/data-information-policy\",\"title\":\"EOSDIS Data Use Policy\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.3334/ORNLDAAC/1852\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/daymet-annual-pr\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Daymet Annual Puerto Rico\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/daymet-annual-pr.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Daymet annual Puerto Rico map thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://daymet-zarr/annual/pr.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"Annual Puerto Rico Daymet Azure Blob File System Zarr root\",\"description\":\"Azure Blob File System of the annual Puerto Rico Daymet Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"daymeteuwest\"}},\"zarr-https\":{\"href\":\"https://daymeteuwest.blob.core.windows.net/daymet-zarr/annual/pr.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"Annual Puerto Rico Daymet HTTPS Zarr root\",\"description\":\"HTTPS URI of the annual Puerto Rico Daymet Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-67.9927,16.8444,-64.1196,19.9382]]},\"temporal\":{\"interval\":[[\"1980-07-01T12:00:00Z\",\"2020-07-01T12:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.3334/ORNLDAAC/1852\",\"keywords\":[\"Daymet\",\"Puerto Rico\",\"Temperature\",\"Precipitation\",\"Vapor Pressure\",\"Climate\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://doi.org/10.3334/ORNLDAAC/1852\",\"name\":\"ORNL DAAC\",\"roles\":[\"producer\"]}],\"description\":\"Annual climate summaries derived from [Daymet](https://daymet.ornl.gov) Version 4 daily data at a 1 km x 1 km spatial resolution for five variables: minimum and maximum temperature, precipitation, vapor pressure, and snow water equivalent. Annual averages are provided for minimum and maximum temperature, vapor pressure, and snow water equivalent, and annual totals are provided for the precipitation variable.\\n\\n[Daymet](https://daymet.ornl.gov/) provides measurements of near-surface meteorological conditions; the main purpose is to provide data estimates where no instrumentation exists. The dataset covers the period from January 1, 1980 to the present. Each year is processed individually at the close of a calendar year. Data are in a Lambert conformal conic projection for North America and are distributed in Zarr and NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\n\\nUse the DOI at [https://doi.org/10.3334/ORNLDAAC/1852](https://doi.org/10.3334/ORNLDAAC/1852) to cite your usage of the data.\\n\\nThis dataset provides coverage for Hawaii; North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#annual). \\n\\n\",\"sci:citation\":\"Thornton, M.M., R. Shrestha, Y. Wei, P.E. Thornton, S. Kao, and B.E. Wilson. 2020. Daymet: Annual Climate Summaries on a 1-km Grid for North America, Version 4. ORNL DAAC, Oak Ridge, Tennessee, USA. https://doi.org/10.3334/ORNLDAAC/1852\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"daymet\",\"cube:variables\":{\"vp\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"long_name\":\"annual average of daily average vapor pressure\",\"cell_methods\":\"area: mean time: mean within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,231,364],\"chunks\":[1,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average of daily average vapor pressure\"},\"lat\":{\"type\":\"auxiliary\",\"unit\":\"degrees_north\",\"attrs\":{\"units\":\"degrees_north\",\"long_name\":\"latitude coordinate\",\"standard_name\":\"latitude\"},\"shape\":[231,364],\"chunks\":[231,364],\"dimensions\":[\"y\",\"x\"],\"description\":\"latitude coordinate\"},\"lon\":{\"type\":\"auxiliary\",\"unit\":\"degrees_east\",\"attrs\":{\"units\":\"degrees_east\",\"long_name\":\"longitude coordinate\",\"standard_name\":\"longitude\"},\"shape\":[231,364],\"chunks\":[231,364],\"dimensions\":[\"y\",\"x\"],\"description\":\"longitude coordinate\"},\"swe\":{\"type\":\"data\",\"unit\":\"kg/m2\",\"attrs\":{\"units\":\"kg/m2\",\"long_name\":\"annual average snow water equivalent\",\"cell_methods\":\"area: mean time: sum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,231,364],\"chunks\":[1,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average snow water equivalent\"},\"prcp\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"annual total precipitation\",\"cell_methods\":\"area: mean time: sum within days time: sum over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,231,364],\"chunks\":[1,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual total precipitation\"},\"tmax\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"annual average of daily maximum temperature\",\"cell_methods\":\"area: mean time: maximum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,231,364],\"chunks\":[1,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average of daily maximum temperature\"},\"tmin\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"annual average of daily minimum temperature\",\"cell_methods\":\"area: mean time: minimum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,231,364],\"chunks\":[1,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average of daily minimum temperature\"},\"time_bnds\":{\"type\":\"data\",\"attrs\":{\"time\":\"days since 1950-01-01 00:00:00\"},\"shape\":[41,2],\"chunks\":[1,2],\"dimensions\":[\"time\",\"nv\"]},\"lambert_conformal_conic\":{\"type\":\"data\",\"attrs\":{\"false_easting\":0.0,\"false_northing\":0.0,\"semi_major_axis\":6378137.0,\"grid_mapping_name\":\"lambert_conformal_conic\",\"standard_parallel\":[25.0,60.0],\"inverse_flattening\":298.257223563,\"latitude_of_projection_origin\":42.5,\"longitude_of_central_meridian\":-100.0},\"shape\":[],\"dimensions\":[]}},\"msft:container\":\"daymet-zarr\",\"cube:dimensions\":{\"x\":{\"axis\":\"x\",\"step\":1000.0,\"type\":\"spatial\",\"extent\":[3445750.0,3808750.0],\"description\":\"x coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"y\":{\"axis\":\"y\",\"step\":-1000.0,\"type\":\"spatial\",\"extent\":[-1995000.0,-1765000.0],\"description\":\"y coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"nv\":{\"type\":\"count\",\"values\":[0,1],\"description\":\"Size of the 'time_bnds' variable.\"},\"time\":{\"type\":\"temporal\",\"extent\":[\"1980-07-01T12:00:00Z\",\"2020-07-01T12:00:00Z\"],\"description\":\"24-hour day based on local time\"}},\"msft:group_keys\":[\"annual\",\"puerto rico\"],\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"daymeteuwest\",\"msft:short_description\":\"Annual climate summaries on a 1-km grid for Puerto Rico\",\"msft:region\":\"westeurope\"},{\"id\":\"daymet-daily-hi\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi\"},{\"rel\":\"license\",\"href\":\"https://science.nasa.gov/earth-science/earth-science-data/data-information-policy\",\"title\":\"EOSDIS Data Use Policy\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.3334/ORNLDAAC/1840\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/daymet-daily-hi\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Daymet Daily Hawaii\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/daymet-daily-hi.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Daymet daily Hawaii map thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://daymet-zarr/daily/hi.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"Daily Hawaii Daymet Azure Blob File System Zarr root\",\"description\":\"Azure Blob File System of the daily Hawaii Daymet Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"daymeteuwest\"}},\"zarr-https\":{\"href\":\"https://daymeteuwest.blob.core.windows.net/daymet-zarr/daily/hi.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"Daily Hawaii Daymet HTTPS Zarr root\",\"description\":\"HTTPS URI of the daily Hawaii Daymet Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-160.3056,17.9539,-154.772,23.5186]]},\"temporal\":{\"interval\":[[\"1980-01-01T12:00:00Z\",\"2020-12-30T12:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.3334/ORNLDAAC/1840\",\"keywords\":[\"Daymet\",\"Hawaii\",\"Temperature\",\"Precipitation\",\"Vapor Pressure\",\"Weather\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://doi.org/10.3334/ORNLDAAC/1840\",\"name\":\"ORNL DAAC\",\"roles\":[\"producer\"]}],\"description\":\"Gridded estimates of daily weather parameters. [Daymet](https://daymet.ornl.gov) Version 4 variables include the following parameters: minimum temperature, maximum temperature, precipitation, shortwave radiation, vapor pressure, snow water equivalent, and day length.\\n\\n[Daymet](https://daymet.ornl.gov/) provides measurements of near-surface meteorological conditions; the main purpose is to provide data estimates where no instrumentation exists. The dataset covers the period from January 1, 1980 to the present. Each year is processed individually at the close of a calendar year. Data are in a Lambert conformal conic projection for North America and are distributed in Zarr and NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\n\\nUse the DOI at [https://doi.org/10.3334/ORNLDAAC/1840](https://doi.org/10.3334/ORNLDAAC/1840) to cite your usage of the data.\\n\\nThis dataset provides coverage for Hawaii; North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#daily).\\n\\n\",\"sci:citation\":\"Thornton, M.M., R. Shrestha, P.E. Thornton, S. Kao, Y. Wei, and B.E. Wilson. 2021. Daymet Version 4 Monthly Latency: Daily Surface Weather Data. ORNL DAAC, Oak Ridge, Tennessee, USA. https://doi.org/10.3334/ORNLDAAC/1904\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"daymet\",\"cube:variables\":{\"vp\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"long_name\":\"daily average vapor pressure\",\"cell_methods\":\"area: mean time: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,584,284],\"chunks\":[365,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily average vapor pressure\"},\"lat\":{\"type\":\"auxiliary\",\"unit\":\"degrees_north\",\"attrs\":{\"units\":\"degrees_north\",\"long_name\":\"latitude coordinate\",\"standard_name\":\"latitude\"},\"shape\":[584,284],\"chunks\":[584,284],\"dimensions\":[\"y\",\"x\"],\"description\":\"latitude coordinate\"},\"lon\":{\"type\":\"auxiliary\",\"unit\":\"degrees_east\",\"attrs\":{\"units\":\"degrees_east\",\"long_name\":\"longitude coordinate\",\"standard_name\":\"longitude\"},\"shape\":[584,284],\"chunks\":[584,284],\"dimensions\":[\"y\",\"x\"],\"description\":\"longitude coordinate\"},\"swe\":{\"type\":\"data\",\"unit\":\"kg/m2\",\"attrs\":{\"units\":\"kg/m2\",\"long_name\":\"snow water equivalent\",\"cell_methods\":\"area: mean time: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,584,284],\"chunks\":[365,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"snow water equivalent\"},\"dayl\":{\"type\":\"data\",\"unit\":\"s\",\"attrs\":{\"units\":\"s\",\"long_name\":\"daylength\",\"cell_methods\":\"area: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,584,284],\"chunks\":[365,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daylength\"},\"prcp\":{\"type\":\"data\",\"unit\":\"mm/day\",\"attrs\":{\"units\":\"mm/day\",\"long_name\":\"daily total precipitation\",\"cell_methods\":\"area: mean time: sum\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,584,284],\"chunks\":[365,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily total precipitation\"},\"srad\":{\"type\":\"data\",\"unit\":\"W/m2\",\"attrs\":{\"units\":\"W/m2\",\"long_name\":\"daylight average incident shortwave radiation\",\"cell_methods\":\"area: mean time: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,584,284],\"chunks\":[365,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daylight average incident shortwave radiation\"},\"tmax\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"daily maximum temperature\",\"cell_methods\":\"area: mean time: maximum\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,584,284],\"chunks\":[365,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily maximum temperature\"},\"tmin\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"daily minimum temperature\",\"cell_methods\":\"area: mean time: minimum\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,584,284],\"chunks\":[365,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily minimum temperature\"},\"yearday\":{\"type\":\"data\",\"attrs\":{\"long_name\":\"day of year (DOY) starting with day 1 on January 1st\"},\"shape\":[14965],\"chunks\":[365],\"dimensions\":[\"time\"],\"description\":\"day of year (DOY) starting with day 1 on January 1st\"},\"time_bnds\":{\"type\":\"data\",\"attrs\":{},\"shape\":[14965,2],\"chunks\":[365,2],\"dimensions\":[\"time\",\"nv\"]},\"lambert_conformal_conic\":{\"type\":\"data\",\"attrs\":{\"false_easting\":0.0,\"false_northing\":0.0,\"semi_major_axis\":6378137.0,\"grid_mapping_name\":\"lambert_conformal_conic\",\"standard_parallel\":[25.0,60.0],\"inverse_flattening\":298.257223563,\"latitude_of_projection_origin\":42.5,\"longitude_of_central_meridian\":-100.0},\"shape\":[],\"dimensions\":[]}},\"msft:container\":\"daymet-zarr\",\"cube:dimensions\":{\"x\":{\"axis\":\"x\",\"step\":1000.0,\"type\":\"spatial\",\"extent\":[-5802250.0,-5519250.0],\"description\":\"x coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"y\":{\"axis\":\"y\",\"step\":-1000.0,\"type\":\"spatial\",\"extent\":[-622000.0,-39000.0],\"description\":\"y coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"nv\":{\"type\":\"count\",\"values\":[0,1],\"description\":\"Size of the 'time_bnds' variable.\"},\"time\":{\"type\":\"temporal\",\"extent\":[\"1980-01-01T12:00:00Z\",\"2020-12-30T12:00:00Z\"],\"description\":\"24-hour day based on local time\"}},\"msft:group_keys\":[\"daily\",\"hawaii\"],\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"daymeteuwest\",\"msft:short_description\":\"Daily surface weather data on a 1-km grid for Hawaii\",\"msft:region\":\"westeurope\"},{\"id\":\"3dep-seamless\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/faqs/what-are-terms-uselicensing-map-services-and-data-national-map?qt-news_science_products=0#qt-news_science_products\",\"title\":\"Public Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-seamless\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS 3DEP Seamless DEMs\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/threedep.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"USGS 3DEP\"},\"geoparquet-items\":{\"href\":\"abfs://items/3dep-seamless.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-174.001666666983,-15.00166666667,164.0016666666,84.00166666666]]},\"temporal\":{\"interval\":[[\"1925-01-01T00:00:00Z\",\"2020-05-06T00:00:00Z\"]]}},\"license\":\"PDDL-1.0\",\"keywords\":[\"USGS\",\"3DEP\",\"NED\",\"Elevation\",\"DEM\"],\"providers\":[{\"url\":\"https://www.usgs.gov/core-science-systems/ngp/3dep\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[10,30]},\"description\":\"U.S.-wide digital elevation data at horizontal resolutions ranging from one to sixty meters.\\n\\nThe [USGS 3D Elevation Program (3DEP) Datasets](https://www.usgs.gov/core-science-systems/ngp/3dep) from the [National Map](https://www.usgs.gov/core-science-systems/national-geospatial-program/national-map) are the primary elevation data product produced and distributed by the USGS. The 3DEP program provides raster elevation data for the conterminous United States, Alaska, Hawaii, and the island territories, at a variety of spatial resolutions. The seamless DEM layers produced by the 3DEP program are updated frequently to integrate newly available, improved elevation source data. \\n\\nDEM layers are available nationally at grid spacings of 1 arc-second (approximately 30 meters) for the conterminous United States, and at approximately 1, 3, and 9 meters for parts of the United States. Most seamless DEM data for Alaska is available at a resolution of approximately 60 meters, where only lower resolution source data exist.\\n\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]},\"gpkg\":{\"type\":\"application/geopackage+sqlite3\",\"roles\":[\"metadata\"]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"]}},\"stac_version\":\"1.0.0\",\"msft:container\":\"3dep\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"U.S.-wide digital elevation data at horizontal resolutions ranging from one to sixty meters\",\"msft:region\":\"westeurope\"},{\"id\":\"3dep-lidar-dsm\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/3d-elevation-program/about-3dep-products-services\",\"title\":\"About 3DEP Products & Services\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-dsm\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS 3DEP Lidar Digital Surface Model\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/dsm-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"},\"geoparquet-items\":{\"href\":\"abfs://items/3dep-lidar-dsm.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-166.8546920006028,17.655357747708283,-64.56116757979399,71.39330810146807],[144.60180842809473,13.21774453924126,146.08202179248926,18.18369664008955]]},\"temporal\":{\"interval\":[[\"2012-01-01T00:00:00Z\",\"2022-01-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USGS\",\"3DEP\",\"COG\",\"DSM\"],\"providers\":[{\"name\":\"Landrush\",\"roles\":[\"processor\",\"producer\"]},{\"url\":\"https://www.usgs.gov/core-science-systems/ngp/3dep/\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[2.0]},\"description\":\"This collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc). It creates a Digital Surface Model (DSM) using [`pdal.filters.range`](https://pdal.io/stages/filters.range.html#filters-range) to output a collection of Cloud Optimized GeoTIFFs, removing all points that have been classified as noise.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"COG data\",\"raster:bands\":[{\"type\":\"Z\",\"unit\":\"metre\",\"sampling\":\"point\",\"data_type\":\"float32\",\"description\":\"Z PDAL Dimension\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"3dep-lidar\",\"msft:container\":\"usgs-3dep-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json#\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"usgslidareuwest\",\"msft:short_description\":\"3DEP Lidar collection for the Digital Surface Model (DSM) Cloud Optimized Geotiffs (COGs).\",\"msft:region\":\"westeurope\"},{\"id\":\"fia\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia\"},{\"rel\":\"license\",\"href\":\"https://www.fs.usda.gov/rds/archive/datauseinfo/open\",\"type\":\"text/html\",\"title\":\"USDA Open Access Data Use Agreement\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/fia\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Forest Inventory and Analysis\",\"assets\":{\"guide\":{\"href\":\"https://www.fia.fs.fed.us/library/database-documentation/current/ver80/FIADB%20User%20Guide%20P2_8-0.pdf\",\"type\":\"application/pdf\",\"roles\":[\"metadata\"],\"title\":\"Database Description and User Guide\"},\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/fia.png\",\"type\":\"image/gif\",\"title\":\"Forest Inventory and Analysis\"},\"geoparquet-items\":{\"href\":\"abfs://items/fia.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[138.06,0.92,163.05,9.78],[165.28,4.57,172.03,14.61],[131.13,2.95,134.73,8.1],[-124.763068,24.523096,-66.949895,49.384358],[-179.148909,51.214183,-129.974167,71.365162],[172.461667,51.357688,179.77847,53.01075],[-178.334698,18.910361,-154.806773,28.402123],[144.618068,13.234189,144.956712,13.654383],[-67.945404,17.88328,-65.220703,18.515683],[144.886331,14.110472,146.064818,20.553802],[-65.085452,17.673976,-64.564907,18.412655],[-171.089874,-14.548699,-168.1433,-11.046934],[-178.334698,18.910361,-154.806773,28.402123]]},\"temporal\":{\"interval\":[[\"2020-06-01T00:00:00Z\",null]]}},\"license\":\"CC0-1.0\",\"keywords\":[\"Forest\",\"Species\",\"Carbon\",\"Biomass\",\"USDA\",\"Forest Service\"],\"providers\":[{\"url\":\"https://www.fia.fs.fed.us/\",\"name\":\"Forest Inventory & Analysis\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://carbonplan.org/\",\"name\":\"CarbonPlan\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"description\":\"Status and trends on U.S. forest location, health, growth, mortality, and production, from the U.S. Forest Service's [Forest Inventory and Analysis](https://www.fia.fs.fed.us/) (FIA) program.\\n\\nThe Forest Inventory and Analysis (FIA) dataset is a nationwide survey of the forest assets of the United States. The FIA research program has been in existence since 1928. FIA's primary objective is to determine the extent, condition, volume, growth, and use of trees on the nation's forest land.\\n\\nDomain: continental U.S., 1928-2018\\n\\nResolution: plot-level (irregular polygon)\\n\\nThis dataset was curated and brought to Azure by [CarbonPlan](https://carbonplan.org/).\\n\",\"item_assets\":{\"data\":{\"type\":\"application/x-parquet\",\"roles\":[\"data\"],\"title\":\"Dataset root\",\"table:storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"stac_version\":\"1.0.0\",\"table:tables\":[{\"name\":\"Survey Table\",\"description\":\"Survey table. This table contains one record for each year an inventory is conducted in a State for annual inventory or one record for each periodic inventory.

* SURVEY.CN = PLOT.SRV_CN links the unique inventory record for a State and year to the plot records.\",\"msft:item_name\":\"survey\"},{\"name\":\"County Table\",\"description\":\"County table. This table contains survey unit codes and is also a reference table for the county codes and names.

* COUNTY.CN = PLOT.CTY_CN links the unique county record to the plot record.\",\"msft:item_name\":\"county\"},{\"name\":\"Plot Table\",\"description\":\"Plot table. This table provides information relevant to the entire 1-acre field plot. This table links to most other tables, and the linkage is made using PLOT.CN = TABLE_NAME.PLT_CN (TABLE_NAME is the name of any table containing the column name PLT_CN). Below are some examples of linking PLOT to other tables.

* PLOT.CN = COND.PLT_CN links the unique plot record to the condition class record(s).

* PLOT.CN = SUBPLOT.PLT_CN links the unique plot record to the subplot records.

* PLOT.CN = TREE.PLT_CN links the unique plot record to the tree records.

* PLOT.CN = SEEDLING.PLT_CN links the unique plot record to the seedling records.\",\"msft:item_name\":\"plot\"},{\"name\":\"Condition Table\",\"description\":\"Condition table. This table provides information on the discrete combination of landscape attributes that define the condition (a condition will have the same land class, reserved status, owner group, forest type, stand-size class, regeneration status, and stand density).

* PLOT.CN = COND.PLT_CN links the condition class record(s) to the plot table.

* COND.PLT_CN = SITETREE.PLT_CN and COND.CONDID = SITETREE.CONDID links the condition class record to the site tree data.

* COND.PLT_CN = TREE.PLT_CN and COND.CONDID = TREE.CONDID links the condition class record to the tree data.\",\"msft:item_name\":\"cond\"},{\"name\":\"Subplot Table\",\"description\":\"Subplot table. This table describes the features of a single subplot. There are multiple subplots per 1-acre field plot and there can be multiple conditions sampled on each subplot.

* PLOT.CN = SUBPLOT.PLT_CN links the unique plot record to the subplot records.

* SUBPLOT.PLT_CN = COND.PLT_CN and SUBPLOT.MACRCOND = COND.CONDID links the macroplot conditions to the condition class record.

* SUBPLOT.PLT_CN = COND.PLT_CN and SUBPLOT.SUBPCOND = COND.CONDID links the subplot conditions to the condition class record.

* SUBPLOT.PLT_CN = COND.PLT_CN and SUBPLOT.MICRCOND = COND.CONDID links the microplot conditions to the condition class record.\",\"msft:item_name\":\"subplot\"},{\"name\":\"Subplot Condition Table\",\"description\":\"Subplot condition table. This table contains information about the proportion of a subplot in a condition.

* PLOT.CN = SUBP_COND.PLT_CN links the subplot condition class record to the plot table.

* SUBP_COND.PLT_CN = COND.PLT_CN and SUBP_COND.CONDID = COND.CONDID links the condition class records found on the four subplots to the subplot description.\",\"msft:item_name\":\"subp_cond\"},{\"name\":\"boundary\",\"description\":\"Boundary table. This table provides a description of the demarcation line between two conditions that occur on a single subplot\",\"msft:item_name\":\"boundary\"},{\"name\":\"Subplot Condition Change Matrix\",\"description\":\"Subplot condition change matrix table. This table contains information about the mix of current and previous conditions that occupy the same area on the subplot.

* PLOT.CN = SUBP_COND_CHNG_MTRX.PLT_CN links the subplot condition change matrix records to the unique plot record.

* PLOT.PREV_PLT_CN = SUBP_COND_CHNG_MTRX.PREV_PLT_CN links the subplot condition change matrix records to the unique previous plot record.\",\"msft:item_name\":\"subp_cond_chng_mtrx\"},{\"name\":\"Tree Table\",\"description\":\"Tree table. This table provides information for each tree 1 inch in diameter and larger found on a microplot, subplot, or core optional macroplot.

* PLOT.CN = TREE.PLT_CN links the tree records to the unique plot record.

* COND.PLT_CN = TREE.PLT_CN and COND.CONDID = TREE.CONDID links the tree records to the unique condition record.\",\"msft:item_name\":\"tree\"},{\"name\":\"Tree Woodland Stems Table\",\"description\":\"Tree woodland stems table. This table stores data for the individual stems of a woodland species tree. Individual woodland stem diameter measurements contribute to the calculation of the diameter stored on the parent TREE table record.

* TREE.CN = TREE_WOODLAND_STEMS.TRE_CN links a woodland stems record to the corresponding unique tree record.\",\"msft:item_name\":\"tree_woodland_stems\"},{\"name\":\"Tree Regional Biomass Table\",\"description\":\"Tree regional biomass table. This table contains biomass estimates computed using equations and methodology that varies by FIA work unit. This table retains valuable information for generating biomass estimates that match earlier published reports.

* TREE.CN = TREE_REGIONAL_BIOMASS.TRE_CN links a tree regional biomass record to the corresponding unique tree.\",\"msft:item_name\":\"tree_regional_biomass\"},{\"name\":\"Tree Net Growth, Removal, and Mortality Component Table\",\"description\":\"Tree net growth, removal, and mortality component table. This table stores information used to compute net growth, removals, and mortality estimates for remeasurement trees. Each remeasurement tree has a single record in this table.

* TREE_GRM_COMPONENT.TRE_CN = TREE.TRE_CN links the records in this table to the corresponding tree record in the TREE table.\",\"msft:item_name\":\"tree_grm_component\"},{\"name\":\"Tree Net Growth, Removal, and Mortality Midpoint Table\",\"description\":\"Tree net growth, removal, and mortality midpoint table. This table contains information about a remeasured tree at the midpoint of the remeasurement period. It does not contain a record for every tree. Midpoint estimates are computed for trees that experience mortality, removal, or land use diversion or reversion. The information in this table is used to compute net growth, removal, and mortality estimates on remeasurement trees.

* TREE_GRM_MIDPT.TRE_CN = TREE.TRE_CN links the records in this table to the corresponding tree record in the TREE table.\",\"msft:item_name\":\"tree_grm_midpt\"},{\"name\":\"Tree Net Growth, Removal, and Mortality Begin Table\",\"description\":\"Tree net growth, removal, and mortality begin table. This table contains information for remeasured trees where values have been calculated for the beginning of the remeasurement period. Only those trees where information was recalculated for time 1 (T1) are included. The information in this table is used to produce net growth, removal and mortality estimates on remeasured trees.

* TREE_GRM_BEGIN.TRE_CN = TREE.TRE_CN links the records in this table to the corresponding tree record in the TREE table.\",\"msft:item_name\":\"tree_grm_begin\"},{\"name\":\"Tree Net Growth, Removal, and Mortality Estimation Table\",\"description\":\"Tree net growth, removal, and mortality estimation table. This table contains information used to produce estimates of growth, removals and mortality.

* PLOT.CN = TREE_GRM_ESTN.PLT_CN links the tree GRM estimation records to the unique plot record.

* TREE.CN = TREE_GRM_ESTN.TRE_CN links the tree GRM estimation records to the unique tree record.\",\"msft:item_name\":\"tree_grm_estn\"},{\"name\":\"Seedling Table\",\"description\":\"Seedling table. This table provides a count of the number of live trees of a species found on a microplot that are less than 1 inch in diameter but at least 6 inches in length for conifer species or at least 12 inches in length for hardwood species.

* PLOT.CN = SEEDLING.PLT_CN links the seedling records to the unique plot record.

* COND.PLT_CN = SEEDLING.PLT_CN and COND.CONDID = SEEDLING.CONDID links the condition record to the seedling record.\",\"msft:item_name\":\"seedling\"},{\"name\":\"Site Tree Table\",\"description\":\"Site tree table. This table provides information on the site tree(s) collected in order to calculate site index and/or site productivity information for a condition.

* PLOT.CN = SITETREE.PLT_CN links the site tree records to the unique plot record.

* SITETREE.PLT_CN = COND.PLT_CN and SITETREE.CONDID = COND.CONDID links the site tree record(s) to the unique condition class record.\",\"msft:item_name\":\"sitetree\"},{\"name\":\"Invasive Subplot Species Table\",\"description\":\"Invasive subplot species table. This table provides percent cover data of invasive species identified on the subplot.

* PLOT.CN = INVASIVE_SUBPLOT_SPP.PLT_CN links the invasive subplot species record(s) to the unique plot record.

* SUBP_COND.PLT_CN = INVASIVE_SUBPLOT_SPP.PLT_CN and SUBP_COND.CONDID = INVASIVE_SUBPLOT_SPP.CONDID and SUBP_COND.SUBP = INVASIVE_SUBPLOT_SPP.SUBP links the invasive subplot species record(s) to the unique subplot condition record.

* INVASIVE_SUBPLOT_SPP.VEG_SPCD = REF_PLANT_DICTIONARY.SYMBOL links the invasive vegetation subplot NRCS species code to the plant dictionary reference species code.\",\"msft:item_name\":\"invasive_subplot_spp\"},{\"name\":\"Phase 2 Vegetation Subplot Species Table\",\"description\":\"Phase 2 Vegetation subplot species table. This table provides percent cover data of vegetation species identified on the subplot.

* PLOT.CN = P2VEG_SUBPLOT_SPP.PLT_CN links the vegetation subplot species record(s) to the unique plot record.

* SUBP_COND.PLT_CN = P2VEG_SUBPLOT_SPP.PLT_CN and SUBP_COND.CONDID = P2VEG_SUBPLOT_SPP.CONDID and SUBP_COND.SUBP = P2VEG_SUBPLOT_SPP.SUBP links the vegetation subplot species record(s) to the unique subplot condition record.

* P2VEG_SUBPLOT_SPP.VEG_SPCD = REF_PLANT_DICTIONARY.SYMBOL links the P2 vegetation subplot NRCS species code to the plant dictionary reference species code.\",\"msft:item_name\":\"p2veg_subplot_spp\"},{\"name\":\"Phase 2 Vegetation Subplot Structure Table\",\"description\":\"Phase 2 Vegetation subplot structure table. This table provides percent cover by layer by growth habit.

* PLOT.CN = P2VEG_SUBP_STRUCTURE. PLT_CN links the subplot structure record(s) to the unique plot record.

* SUBP_COND.PLT_CN = P2VEG_SUBP_STRUCTURE.PLT_CN and SUBP_COND.CONDID = P2VEG_SUBP_STRUCTURE.CONDID and SUBP_COND.SUBP = P2VEG_SUBP_STRUCTURE.SUBP links the vegetation subplot structure record(s) to the unique subplot condition record.\",\"msft:item_name\":\"p2veg_subp_structure\"},{\"name\":\"Down Woody Material Visit Table\",\"description\":\"Down woody material visit table. This table provides general information on down woody material indicator visit, such as the date of the DWM survey.

* PLOT.CN = DWM_VISIT.PLT_CN links the down woody material indicator visit record to the unique plot record.\",\"msft:item_name\":\"dwm_visit\"},{\"name\":\"Down Woody Material Coarse Woody Debris Table\",\"description\":\"Down woody material coarse woody debris table. This table provides information for each piece of coarse woody debris measured along the transects.

* PLOT.CN = DWM_COARSE_WOODY_DEBRIS.PLT_CN links the down woody material coarse woody debris records to the unique plot record.

* COND.PLT_CN = DWM_COARSE_WOODY_DEBRIS.PLT_CN and COND.CONDID= DWM_COARSE_WOODY_DEBRIS.CONDID links the coarse woody debris records to the unique condition record.\",\"msft:item_name\":\"dwm_coarse_woody_debris\"},{\"name\":\"Down Woody Material Duff, Litter, Fuel Table\",\"description\":\"Down woody material duff, litter, fuel table. This table provides information on the duff, litter, fuelbed depths measured at a point on the transects.

* PLOT.CN = DWM_DUFF_LITTER_FUEL.PLT_CN links the duff, litter, fuelbed records to the unique plot record.

* COND.PLT_CN = DWM_DUFF_LITTER_FUEL.PLT_CN and COND.CONDID= DWM_DUFF_LITTER_FUEL.CONDID links the duff, litter, fuel records to the unique condition record.\",\"msft:item_name\":\"dwm_duff_litter_fuel\"},{\"name\":\"Down Woody Material Fine Woody Debris Table\",\"description\":\"Down woody material fine woody debris table. This table provides information on the fine woody debris measured along a segment of the transects.

* PLOT.CN = DWM_FINE_WOODY_DEBRIS.PLT_CN links the fine woody debris records to the unique plot record.

* COND.PLT_CN = DWM_FINE_WOODY_DEBRIS.PLT_CN and COND.CONDID= DWM_FINE_WOODY_DEBRIS.CONDID links the fine woody debris records to the unique condition record.\",\"msft:item_name\":\"dwm_fine_woody_debris\"},{\"name\":\"Down Woody Material Microplot Fuel Table\",\"description\":\"Down woody material microplot fuel table. This table provides information on the fuel loads (shrubs and herbs) measured on the microplot.

* PLOT.CN = DWM_MICROPLOT_FUEL.PLT_CN links the microplot fuel records to the unique plot record.\",\"msft:item_name\":\"dwm_microplot_fuel\"},{\"name\":\"Down Woody Material Residual Pile Table\",\"description\":\"Down woody material residual pile table. This table provides information on the wood piles measured on the subplot.

* PLOT.CN = DWM_RESIDUAL_PILE.PLT_CN links the wood piles records to the unique plot record.

* COND.PLT_CN = DWM_RESIDUAL_PILE.PLT_CN and COND.CONDID= DWM_RESIDUAL_PILE.CONDID links the wood piles records to the unique condition record.\",\"msft:item_name\":\"dwm_residual_pile\"},{\"name\":\"Down Woody Material Transect Segment Table\",\"description\":\"Down woody material transect segment table. This table describes the down woody material transect segment lengths by condition class.

* PLOT.CN = DWM_TRANSECT_SEGMENT.PLT_CN links the down woody material transect length records to the unique plot record.

* COND.PLT_CN = DWM_TRANSECT_SEGMENT.PLT_CN and COND.CONDID= DWM_TRANSECT_SEGMENT.CONDID links the down woody material transect segment records to the unique condition record.\",\"msft:item_name\":\"dwm_transect_segment\"},{\"name\":\"Condition Down Woody Material Calculation Table\",\"description\":\"Condition down woody material calculation table. This table contains calculated values and condition-level estimates for down woody attributes by plot number (PLOT), condition class number (CONDID), and evaluation identifier (EVALID).

* PLOT.CN = COND_DWM_CALC.PLT_CN links the down woody material calculation records to the unique plot record.

* COND.CN = COND_DWM_CALC.CND_CN links the down woody material calculation records to the unique condition record.

* POP_STRATUM. CN = COND_DWM_CALC.STRATUM_CN links the down woody material calculation records to the unique population stratum record.\",\"msft:item_name\":\"cond_dwm_calc\"},{\"name\":\"Plot Regeneration Table\",\"description\":\"Plot regeneration table. This table contains the information for the four subplots describing the amount of animal browse pressure exerted on the regeneration of trees.

* PLOT.CN = PLOT_REGEN.PLT_CN links the unique plot record to the unique plot regeneration record.\",\"msft:item_name\":\"plot_regen\"},{\"name\":\"Subplot Regeneration Table\",\"description\":\"Subplot regeneration table. This table provides information on the subplot survey status and the site survey limitations, if any, for the tree regeneration study.

* PLOT.CN = SUBPLOT_REGEN.PLT_CN links the unique plot record to the subplot regeneration records.

* SUBPLOT.PLT_CN = SUBPLOT_REGEN.PLT_CN and SUBPLOT.SUBP = SUBPLOT_REGEN.SUBP links the subplot record to the subplot regeneration record.\",\"msft:item_name\":\"subplot_regen\"},{\"name\":\"Seedling Regeneration Table\",\"description\":\"Seedling regeneration. This table contains provides information on the seedling count by condition, species, source, and length class for the tree regeneration study.

* PLOT.CN = SEEDLING_REGEN.PLT_CN links the unique plot record to the seedling regeneration records.

* COND.PLT_CN = SEEDLING_REGEN.PLT_CN and COND.CONDID = SEEDLING_REGEN.CONDID links the regeneration seedling records to the unique condition record.\",\"msft:item_name\":\"seedling_regen\"},{\"name\":\"Population Estimation Unit Table\",\"description\":\"Population estimation unit table. This table contains information about estimation units. An estimation unit is a geographic area that can be drawn on a map. It has a known area, and the sampling intensity must be the same within a stratum within an estimation unit. Generally, estimation units are contiguous areas, but exceptions are made when certain ownerships, usually National Forests, are sampled at different intensities. One record in the POP_ESTN_UNIT table corresponds to a single estimation unit. POP_ESTN_UNIT.CN = POP_STRATUM.ESTN_UNIT_CN links the unique stratified geographical area (ESTN_UNIT) to the strata (STRATUMCD) that are assigned to each ESTN_UNIT.\",\"msft:item_name\":\"pop_estn_unit\"},{\"name\":\"Population Evaluation Table\",\"description\":\"Population evaluation table. This table provides information about evaluations. An evaluation is the combination of a set of plots (the sample) and a set of Phase 1 data (obtained through remote sensing, called a stratification) that can be used to produce population estimates for a State (an evaluation may be created to produce population estimates for a region other than a State, such as the Black Hills National Forest). A record in the POP_EVAL table identifies one evaluation and provides some descriptive information about how the evaluation may be used.

* POP_ESTN_UNIT.EVAL_CN = POP_EVAL.CN links the unique evaluation identifier (EVALID) in the POP_EVAL table to the unique geographical areas (ESTN_UNIT) that are stratified. Within a population evaluation (EVALID) there can be multiple population estimation units, or geographic areas across which there are a number of values being estimated (e.g., estimation of volume across counties for a given State).\",\"msft:item_name\":\"pop_eval\"},{\"name\":\"Population Evaluation Attribute Table\",\"description\":\"Population evaluation attribute table. This table provides information as to which population estimates can be provided by an evaluation. If an evaluation can produce only 22 of all the population estimates in the REF_POP_ATTRIBUTE table, there will be 22 records in the POP_EVAL_ATTRIBUTE table (one per population estimate) for that evaluation.

* POP_EVAL.CN = POP_EVAL_ATTRIBUTE.EVAL_CN links the unique evaluation identifier to the list of population estimates that can be derived for that evaluation.\",\"msft:item_name\":\"pop_eval_attribute\"},{\"name\":\"Population Evaluation Group Table\",\"description\":\"Population evaluation group table. This table lists and describes the evaluation groups. One record in the POP_EVAL_GRP table can be linked to all the evaluations that were used in generating estimates for a State inventory report.

* POP_EVAL_GRP.CN = POP_EVAL_TYP.EVAL_GRP_CN links the evaluation group record to the evaluation type record.\",\"msft:item_name\":\"pop_eval_grp\"},{\"name\":\"Population Evaluation Type Table\",\"description\":\"Population evaluation type table. This table provides information on the type of evaluations that were used to generate a set of tables for an inventory report. In a typical State inventory report, one evaluation is used to generate an estimate of the total land area; a second evaluation is used to generate current estimates of volume, numbers of trees and biomass; and a third evaluation is used for estimating growth, removals and mortality.

* POP_EVAL_TYP.EVAL_CN = POP_EVAL.CN links the evaluation type record to the evaluation record.

* POP_EVAL_TYP.EVAL_GRP_CN = POP_EVAL_GRP.CN links the evaluation type record to the evaluation group record.

* POP_EVAL_TYP.EVAL_TYP = REF_POP_EVAL_TYP_DESCR.EVAL_TYP links an evaluation type record to an evaluation type description reference record.\",\"msft:item_name\":\"pop_eval_typ\"},{\"name\":\"Population Plot Stratum Assignment Table\",\"description\":\"Population plot stratum assignment table. This table provides a way to assign stratum information to a plot. Stratum information is assigned to a plot by overlaying the plot's location on the Phase 1 imagery. Plots are linked to their appropriate stratum for an evaluation via the POP_PLOT_STRATUM_ASSGN table.

* POP_PLOT_STRATUM_ASSGN.PLT_CN = PLOT.CN links the stratum assigned to the plot record.\",\"msft:item_name\":\"pop_plot_stratum_assgn\"},{\"name\":\"Population Stratum Table\",\"description\":\"Population stratum table. This table provides information about individual strata. The area within an estimation unit is divided into strata. The area for each stratum can be calculated by determining the proportion of Phase 1 pixels/plots in each stratum and multiplying that proportion by the total area in the estimation unit. Information for a single stratum is stored in a single record of the POP_STRATUM table.

* POP_STRATUM.CN = POP_PLOT_STRATUM_ASSGN.STRATUM_CN links the defined stratum to each plot.\",\"msft:item_name\":\"pop_stratum\"},{\"name\":\"Plot Geometry Table\",\"description\":\"Plot geometry table. This table contains geometric attributes associated with the plot location, such as the hydrological unit and roadless codes.

* PLOTGEOM.CN = PLOT.CN links the unique plot record between the two tables.\",\"msft:item_name\":\"plotgeom\"},{\"name\":\"Plot Snapshot Table\",\"description\":\"Plot snapshot table. This table combines the information in the PLOT table with information in the PLOT_EVAL_GRP and POP_STRATUM tables to provide a snapshot of the plot records with their associated expansion and adjustment factors.

* PLOTSNAP.CN = PLOT.CN links the unique plot record between the two tables.\",\"msft:item_name\":\"plotsnap\"}],\"msft:container\":\"cpdata\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"cpdataeuwest\",\"msft:short_description\":\"Status and trends on U.S. forest location, health, growth, mortality, and production, from the U.S. Forest Service's Forest Inventory and Analysis (FIA) program\",\"msft:region\":\"westeurope\"},{\"id\":\"gridmet\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/publicdomain/zero/1.0/legalcode\",\"type\":\"text/html\",\"title\":\"CC0 1.0\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/gridmet\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"gridMET\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gridmet.png\",\"role\":[\"thumbnail\"],\"type\":\"image/png\",\"title\":\"gridMET thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://gridmet/gridmet.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\"],\"description\":\"Azure Blob File System URI of the gridMET Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"ai4edataeuwest\"}},\"zarr-https\":{\"href\":\"https://ai4edataeuwest.blob.core.windows.net/gridmet/gridmet.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"gridMET HTTPS Zarr root\",\"description\":\"HTTPS URI of the gridMET Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-124.76666663333334,25.066666666666666,-67.05833330000002,49.400000000000006]]},\"temporal\":{\"interval\":[[\"1979-01-01T00:00:00Z\",\"2020-12-31T00:00:00Z\"]]}},\"license\":\"CC0-1.0\",\"keywords\":[\"gridMET\",\"Water\",\"Precipitation\",\"Temperature\",\"Vapor Pressure\",\"Climate\"],\"providers\":[{\"url\":\"https://developmentseed.org/\",\"name\":\"Development Seed\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"http://www.climatologylab.org/gridmet.html\",\"name\":\"Climatology Lab\",\"roles\":[\"producer\"]},{\"url\":\"http://onlinelibrary.wiley.com/doi/10.1002/joc.3413/full\",\"name\":\"Abatzoglou, J.T.\",\"roles\":[\"producer\"]}],\"description\":\"gridMET is a dataset of daily surface meteorological data at approximately four-kilometer resolution, covering the contiguous U.S. from 1979 to the present. These data can provide important inputs for ecological, agricultural, and hydrological models.\\n\",\"stac_version\":\"1.0.0\",\"cube:variables\":{\"wind_speed\":{\"type\":\"data\",\"unit\":\"m/s\",\"attrs\":{\"units\":\"m/s\",\"long_name\":\"vs\",\"dimensions\":\"lon lat time\",\"description\":\"Daily Mean Wind Speed\",\"grid_mapping\":\"crs\",\"standard_name\":\"vs\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Mean Wind Speed\"},\"air_temperature\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"long_name\":\"tmmn\",\"dimensions\":\"lon lat time\",\"description\":\"Daily Minimum Temperature\",\"grid_mapping\":\"crs\",\"standard_name\":\"tmmn\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Minimum Temperature\"},\"burning_index_g\":{\"type\":\"data\",\"unit\":\"Unitless\",\"attrs\":{\"units\":\"Unitless\",\"long_name\":\"bi\",\"dimensions\":\"lon lat time\",\"description\":\"BI-G\",\"grid_mapping\":\"crs\",\"standard_name\":\"bi\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"BI-G\"},\"relative_humidity\":{\"type\":\"data\",\"unit\":\"%\",\"attrs\":{\"units\":\"%\",\"long_name\":\"rmin\",\"dimensions\":\"lon lat time\",\"description\":\"Daily Minimum Relative Humidity\",\"grid_mapping\":\"crs\",\"standard_name\":\"rmin\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Minimum Relative Humidity\"},\"specific_humidity\":{\"type\":\"data\",\"unit\":\"kg/kg\",\"attrs\":{\"units\":\"kg/kg\",\"long_name\":\"sph\",\"dimensions\":\"lon lat time\",\"description\":\"Daily mean specific humidity\",\"grid_mapping\":\"crs\",\"standard_name\":\"sph\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily mean specific humidity\"},\"wind_from_direction\":{\"type\":\"data\",\"unit\":\"Degrees Clockwise from north\",\"attrs\":{\"units\":\"Degrees Clockwise from north\",\"long_name\":\"th\",\"dimensions\":\"lon lat time\",\"description\":\"Daily mean wind direction\",\"grid_mapping\":\"crs\",\"standard_name\":\"th\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily mean wind direction\"},\"precipitation_amount\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"pr\",\"dimensions\":\"lon lat time\",\"description\":\"Daily Accumulated Precipitation\",\"grid_mapping\":\"crs\",\"standard_name\":\"pr\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Accumulated Precipitation\"},\"dead_fuel_moisture_100hr\":{\"type\":\"data\",\"unit\":\"Percent\",\"attrs\":{\"units\":\"Percent\",\"long_name\":\"fm100\",\"dimensions\":\"lon lat time\",\"description\":\"100 hour fuel moisture\",\"grid_mapping\":\"crs\",\"standard_name\":\"fm100\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"100 hour fuel moisture\"},\"dead_fuel_moisture_1000hr\":{\"type\":\"data\",\"unit\":\"Percent\",\"attrs\":{\"units\":\"Percent\",\"long_name\":\"fm1000\",\"dimensions\":\"lon lat time\",\"description\":\"1000 hour fuel moisture\",\"grid_mapping\":\"crs\",\"standard_name\":\"fm1000\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"1000 hour fuel moisture\"},\"mean_vapor_pressure_deficit\":{\"type\":\"data\",\"unit\":\"kPa\",\"attrs\":{\"units\":\"kPa\",\"long_name\":\"vpd\",\"dimensions\":\"lon lat time\",\"description\":\"mean vapor presure deficit\",\"grid_mapping\":\"crs\",\"standard_name\":\"vpd\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"mean vapor presure deficit\"},\"potential_evapotranspiration\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"pet\",\"dimensions\":\"lon lat time\",\"description\":\"Daily reference evapotranspiration (short grass)\",\"grid_mapping\":\"crs\",\"standard_name\":\"pet\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily reference evapotranspiration (short grass)\"},\"surface_downwelling_shortwave_flux_in_air\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"long_name\":\"srad\",\"dimensions\":\"lon lat time\",\"description\":\"Daily Mean downward shortwave radiation at surface\",\"grid_mapping\":\"crs\",\"standard_name\":\"srad\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[15341,585,1386],\"chunks\":[30,585,1386],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Mean downward shortwave radiation at surface\"}},\"msft:container\":\"gridmet\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"type\":\"spatial\",\"extent\":[25.066666666666666,49.400000000000006],\"description\":\"latitude\",\"reference_system\":4326},\"lon\":{\"axis\":\"x\",\"type\":\"spatial\",\"extent\":[-124.76666663333334,-67.05833330000002],\"description\":\"longitude\",\"reference_system\":4326},\"time\":{\"step\":\"P1DT0H0M0S\",\"type\":\"temporal\",\"extent\":[\"1979-01-01T00:00:00Z\",\"2020-12-31T00:00:00Z\"],\"description\":\"time\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/xarray-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Daily high-spatial resolution surface meteorological data covering the contiguous United States from 1979 to the present\",\"msft:region\":\"westeurope\"},{\"id\":\"daymet-annual-na\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na\"},{\"rel\":\"license\",\"href\":\"https://science.nasa.gov/earth-science/earth-science-data/data-information-policy\",\"title\":\"EOSDIS Data Use Policy\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.3334/ORNLDAAC/1852\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/daymet-annual-na\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Daymet Annual North America\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/daymet-annual-na.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Daymet annual North America map thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://daymet-zarr/annual/na.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"Annual North America Daymet Azure Blob File System Zarr root\",\"description\":\"Azure Blob File System of the annual North America Daymet Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"daymeteuwest\"}},\"zarr-https\":{\"href\":\"https://daymeteuwest.blob.core.windows.net/daymet-zarr/annual/na.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"Annual North America Daymet HTTPS Zarr root\",\"description\":\"HTTPS URI of the annual North America Daymet Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-178.1333,14.0749,-53.0567,82.9143]]},\"temporal\":{\"interval\":[[\"1980-07-01T12:00:00Z\",\"2020-07-01T12:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.3334/ORNLDAAC/1852\",\"keywords\":[\"Daymet\",\"North America\",\"Temperature\",\"Precipitation\",\"Vapor Pressure\",\"Climate\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://doi.org/10.3334/ORNLDAAC/1852\",\"name\":\"ORNL DAAC\",\"roles\":[\"producer\"]}],\"description\":\"Annual climate summaries derived from [Daymet](https://daymet.ornl.gov) Version 4 daily data at a 1 km x 1 km spatial resolution for five variables: minimum and maximum temperature, precipitation, vapor pressure, and snow water equivalent. Annual averages are provided for minimum and maximum temperature, vapor pressure, and snow water equivalent, and annual totals are provided for the precipitation variable.\\n\\n[Daymet](https://daymet.ornl.gov/) provides measurements of near-surface meteorological conditions; the main purpose is to provide data estimates where no instrumentation exists. The dataset covers the period from January 1, 1980 to the present. Each year is processed individually at the close of a calendar year. Data are in a Lambert conformal conic projection for North America and are distributed in Zarr and NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\n\\nUse the DOI at [https://doi.org/10.3334/ORNLDAAC/1852](https://doi.org/10.3334/ORNLDAAC/1852) to cite your usage of the data.\\n\\nThis dataset provides coverage for Hawaii; North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#annual). \\n\\n\",\"sci:citation\":\"Thornton, M.M., R. Shrestha, Y. Wei, P.E. Thornton, S. Kao, and B.E. Wilson. 2020. Daymet: Annual Climate Summaries on a 1-km Grid for North America, Version 4. ORNL DAAC, Oak Ridge, Tennessee, USA. https://doi.org/10.3334/ORNLDAAC/1852\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"daymet\",\"cube:variables\":{\"vp\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"long_name\":\"annual average of daily average vapor pressure\",\"cell_methods\":\"area: mean time: mean within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,8075,7814],\"chunks\":[1,8075,7814],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average of daily average vapor pressure\"},\"lat\":{\"type\":\"auxiliary\",\"unit\":\"degrees_north\",\"attrs\":{\"units\":\"degrees_north\",\"long_name\":\"latitude coordinate\",\"standard_name\":\"latitude\"},\"shape\":[8075,7814],\"chunks\":[8075,7814],\"dimensions\":[\"y\",\"x\"],\"description\":\"latitude coordinate\"},\"lon\":{\"type\":\"auxiliary\",\"unit\":\"degrees_east\",\"attrs\":{\"units\":\"degrees_east\",\"long_name\":\"longitude coordinate\",\"standard_name\":\"longitude\"},\"shape\":[8075,7814],\"chunks\":[8075,7814],\"dimensions\":[\"y\",\"x\"],\"description\":\"longitude coordinate\"},\"swe\":{\"type\":\"data\",\"unit\":\"kg/m2\",\"attrs\":{\"units\":\"kg/m2\",\"long_name\":\"annual average snow water equivalent\",\"cell_methods\":\"area: mean time: sum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,8075,7814],\"chunks\":[1,8075,7814],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average snow water equivalent\"},\"prcp\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"annual total precipitation\",\"cell_methods\":\"area: mean time: sum within days time: sum over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,8075,7814],\"chunks\":[1,8075,7814],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual total precipitation\"},\"tmax\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"annual average of daily maximum temperature\",\"cell_methods\":\"area: mean time: maximum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,8075,7814],\"chunks\":[1,8075,7814],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average of daily maximum temperature\"},\"tmin\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"annual average of daily minimum temperature\",\"cell_methods\":\"area: mean time: minimum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,8075,7814],\"chunks\":[1,8075,7814],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average of daily minimum temperature\"},\"time_bnds\":{\"type\":\"data\",\"attrs\":{\"time\":\"days since 1950-01-01 00:00:00\"},\"shape\":[41,2],\"chunks\":[1,2],\"dimensions\":[\"time\",\"nv\"]},\"lambert_conformal_conic\":{\"type\":\"data\",\"attrs\":{\"false_easting\":0.0,\"false_northing\":0.0,\"semi_major_axis\":6378137.0,\"grid_mapping_name\":\"lambert_conformal_conic\",\"standard_parallel\":[25.0,60.0],\"inverse_flattening\":298.257223563,\"latitude_of_projection_origin\":42.5,\"longitude_of_central_meridian\":-100.0},\"shape\":[],\"dimensions\":[]}},\"msft:container\":\"daymet-zarr\",\"cube:dimensions\":{\"x\":{\"axis\":\"x\",\"step\":1000.0,\"type\":\"spatial\",\"extent\":[-4560250.0,3252750.0],\"description\":\"x coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"y\":{\"axis\":\"y\",\"step\":-1000.0,\"type\":\"spatial\",\"extent\":[-3090000.0,4984000.0],\"description\":\"y coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"nv\":{\"type\":\"count\",\"values\":[0,1],\"description\":\"Size of the 'time_bnds' variable.\"},\"time\":{\"type\":\"temporal\",\"extent\":[\"1980-07-01T12:00:00Z\",\"2020-07-01T12:00:00Z\"],\"description\":\"24-hour day based on local time\"}},\"msft:group_keys\":[\"annual\",\"north america\"],\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"daymeteuwest\",\"msft:short_description\":\"Annual climate summaries on a 1-km grid for North America\",\"msft:region\":\"westeurope\"},{\"id\":\"daymet-monthly-na\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na\"},{\"rel\":\"license\",\"href\":\"https://science.nasa.gov/earth-science/earth-science-data/data-information-policy\",\"title\":\"EOSDIS Data Use Policy\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.3334/ORNLDAAC/1855\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/daymet-monthly-na\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Daymet Monthly North America\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/daymet-monthly-na.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Daymet monthly North America map thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://daymet-zarr/monthly/na.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"Monthly North America Daymet Azure Blob File System Zarr root\",\"description\":\"Azure Blob File System of the monthly North America Daymet Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"daymeteuwest\"}},\"zarr-https\":{\"href\":\"https://daymeteuwest.blob.core.windows.net/daymet-zarr/monthly/na.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"Monthly North America Daymet HTTPS Zarr root\",\"description\":\"HTTPS URI of the monthly North America Daymet Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-178.1333,14.0749,-53.0567,82.9143]]},\"temporal\":{\"interval\":[[\"1980-01-16T12:00:00Z\",\"2020-12-16T00:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.3334/ORNLDAAC/1855\",\"keywords\":[\"Daymet\",\"North America\",\"Temperature\",\"Precipitation\",\"Vapor Pressure\",\"Climate\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://doi.org/10.3334/ORNLDAAC/1855\",\"name\":\"ORNL DAAC\",\"roles\":[\"producer\"]}],\"description\":\"Monthly climate summaries derived from [Daymet](https://daymet.ornl.gov) Version 4 daily data at a 1 km x 1 km spatial resolution for five variables: minimum and maximum temperature, precipitation, vapor pressure, and snow water equivalent. Annual averages are provided for minimum and maximum temperature, vapor pressure, and snow water equivalent, and annual totals are provided for the precipitation variable.\\n\\n[Daymet](https://daymet.ornl.gov/) provides measurements of near-surface meteorological conditions; the main purpose is to provide data estimates where no instrumentation exists. The dataset covers the period from January 1, 1980 to the present. Each year is processed individually at the close of a calendar year. Data are in a Lambert conformal conic projection for North America and are distributed in Zarr and NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\n\\nUse the DOI at [https://doi.org/10.3334/ORNLDAAC/1855](https://doi.org/10.3334/ORNLDAAC/1855) to cite your usage of the data.\\n\\nThis dataset provides coverage for Hawaii; North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#monthly).\\n\",\"sci:citation\":\"Thornton, M.M., R. Shrestha, Y. Wei, P.E. Thornton, S. Kao, and B.E. Wilson. 2020. Daymet: Monthly Climate Summaries on a 1-km Grid for North America, Version 4. ORNL DAAC, Oak Ridge, Tennessee, USA. https://doi.org/10.3334/ORNLDAAC/1855\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"daymet\",\"cube:variables\":{\"vp\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"long_name\":\"monthly average of daily average vapor pressure\",\"cell_methods\":\"area: mean time: mean within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,8075,7814],\"chunks\":[12,2000,2000],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly average of daily average vapor pressure\"},\"lat\":{\"type\":\"auxiliary\",\"unit\":\"degrees_north\",\"attrs\":{\"units\":\"degrees_north\",\"long_name\":\"latitude coordinate\",\"standard_name\":\"latitude\"},\"shape\":[8075,7814],\"chunks\":[2000,2000],\"dimensions\":[\"y\",\"x\"],\"description\":\"latitude coordinate\"},\"lon\":{\"type\":\"auxiliary\",\"unit\":\"degrees_east\",\"attrs\":{\"units\":\"degrees_east\",\"long_name\":\"longitude coordinate\",\"standard_name\":\"longitude\"},\"shape\":[8075,7814],\"chunks\":[2000,2000],\"dimensions\":[\"y\",\"x\"],\"description\":\"longitude coordinate\"},\"swe\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"monthly total snow water equivalent\",\"cell_methods\":\"area: mean time: sum within days time: sum over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,8075,7814],\"chunks\":[12,2000,2000],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly total snow water equivalent\"},\"prcp\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"monthly total precipitation\",\"cell_methods\":\"area: mean time: sum within days time: sum over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,8075,7814],\"chunks\":[12,2000,2000],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly total precipitation\"},\"tmax\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"monthly average of daily maximum temperature\",\"cell_methods\":\"area: mean time: maximum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,8075,7814],\"chunks\":[12,2000,2000],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly average of daily maximum temperature\"},\"tmin\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"monthly average of daily minimum temperature\",\"cell_methods\":\"area: mean time: minimum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,8075,7814],\"chunks\":[12,2000,2000],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly average of daily minimum temperature\"},\"time_bnds\":{\"type\":\"data\",\"attrs\":{},\"shape\":[492,2],\"chunks\":[12,2],\"dimensions\":[\"time\",\"nv\"]},\"lambert_conformal_conic\":{\"type\":\"data\",\"attrs\":{\"false_easting\":0.0,\"false_northing\":0.0,\"semi_major_axis\":6378137.0,\"grid_mapping_name\":\"lambert_conformal_conic\",\"standard_parallel\":[25.0,60.0],\"inverse_flattening\":298.257223563,\"latitude_of_projection_origin\":42.5,\"longitude_of_central_meridian\":-100.0},\"shape\":[],\"dimensions\":[]}},\"msft:container\":\"daymet-zarr\",\"cube:dimensions\":{\"x\":{\"axis\":\"x\",\"step\":1000.0,\"type\":\"spatial\",\"extent\":[-4560250.0,3252750.0],\"description\":\"x coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"y\":{\"axis\":\"y\",\"step\":-1000.0,\"type\":\"spatial\",\"extent\":[-3090000.0,4984000.0],\"description\":\"y coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"nv\":{\"type\":\"count\",\"values\":[0,1],\"description\":\"Size of the 'time_bnds' variable.\"},\"time\":{\"type\":\"temporal\",\"extent\":[\"1980-01-16T12:00:00Z\",\"2020-12-16T00:00:00Z\"],\"description\":\"24-hour day based on local time\"}},\"msft:group_keys\":[\"monthly\",\"north america\"],\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"daymeteuwest\",\"msft:short_description\":\"Monthly climate summaries on a 1-km grid for North America\",\"msft:region\":\"westeurope\"},{\"id\":\"daymet-annual-hi\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi\"},{\"rel\":\"license\",\"href\":\"https://science.nasa.gov/earth-science/earth-science-data/data-information-policy\",\"title\":\"EOSDIS Data Use Policy\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.3334/ORNLDAAC/1852\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/daymet-annual-hi\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Daymet Annual Hawaii\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/daymet-annual-hi.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Daymet annual Hawaii map thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://daymet-zarr/annual/hi.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"Annual Hawaii Daymet Azure Blob File System Zarr root\",\"description\":\"Azure Blob File System of the annual Hawaii Daymet Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"daymeteuwest\"}},\"zarr-https\":{\"href\":\"https://daymeteuwest.blob.core.windows.net/daymet-zarr/annual/hi.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"Annual Hawaii Daymet HTTPS Zarr root\",\"description\":\"HTTPS URI of the annual Hawaii Daymet Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-160.3056,17.9539,-154.772,23.5186]]},\"temporal\":{\"interval\":[[\"1980-07-01T12:00:00Z\",\"2020-07-01T12:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.3334/ORNLDAAC/1852\",\"keywords\":[\"Daymet\",\"Hawaii\",\"Temperature\",\"Precipitation\",\"Vapor Pressure\",\"Climate\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://doi.org/10.3334/ORNLDAAC/1852\",\"name\":\"ORNL DAAC\",\"roles\":[\"producer\"]}],\"description\":\"Annual climate summaries derived from [Daymet](https://daymet.ornl.gov) Version 4 daily data at a 1 km x 1 km spatial resolution for five variables: minimum and maximum temperature, precipitation, vapor pressure, and snow water equivalent. Annual averages are provided for minimum and maximum temperature, vapor pressure, and snow water equivalent, and annual totals are provided for the precipitation variable.\\n\\n[Daymet](https://daymet.ornl.gov/) provides measurements of near-surface meteorological conditions; the main purpose is to provide data estimates where no instrumentation exists. The dataset covers the period from January 1, 1980 to the present. Each year is processed individually at the close of a calendar year. Data are in a Lambert conformal conic projection for North America and are distributed in Zarr and NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\n\\nUse the DOI at [https://doi.org/10.3334/ORNLDAAC/1852](https://doi.org/10.3334/ORNLDAAC/1852) to cite your usage of the data.\\n\\nThis dataset provides coverage for Hawaii; North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#annual). \\n\\n\",\"sci:citation\":\"Thornton, M.M., R. Shrestha, Y. Wei, P.E. Thornton, S. Kao, and B.E. Wilson. 2020. Daymet: Annual Climate Summaries on a 1-km Grid for North America, Version 4. ORNL DAAC, Oak Ridge, Tennessee, USA. https://doi.org/10.3334/ORNLDAAC/1852\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"daymet\",\"cube:variables\":{\"vp\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"long_name\":\"annual average of daily average vapor pressure\",\"cell_methods\":\"area: mean time: mean within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,584,284],\"chunks\":[1,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average of daily average vapor pressure\"},\"lat\":{\"type\":\"auxiliary\",\"unit\":\"degrees_north\",\"attrs\":{\"units\":\"degrees_north\",\"long_name\":\"latitude coordinate\",\"standard_name\":\"latitude\"},\"shape\":[584,284],\"chunks\":[584,284],\"dimensions\":[\"y\",\"x\"],\"description\":\"latitude coordinate\"},\"lon\":{\"type\":\"auxiliary\",\"unit\":\"degrees_east\",\"attrs\":{\"units\":\"degrees_east\",\"long_name\":\"longitude coordinate\",\"standard_name\":\"longitude\"},\"shape\":[584,284],\"chunks\":[584,284],\"dimensions\":[\"y\",\"x\"],\"description\":\"longitude coordinate\"},\"swe\":{\"type\":\"data\",\"unit\":\"kg/m2\",\"attrs\":{\"units\":\"kg/m2\",\"long_name\":\"annual average snow water equivalent\",\"cell_methods\":\"area: mean time: sum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,584,284],\"chunks\":[1,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average snow water equivalent\"},\"prcp\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"annual total precipitation\",\"cell_methods\":\"area: mean time: sum within days time: sum over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,584,284],\"chunks\":[1,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual total precipitation\"},\"tmax\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"annual average of daily maximum temperature\",\"cell_methods\":\"area: mean time: maximum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,584,284],\"chunks\":[1,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average of daily maximum temperature\"},\"tmin\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"annual average of daily minimum temperature\",\"cell_methods\":\"area: mean time: minimum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[41,584,284],\"chunks\":[1,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"annual average of daily minimum temperature\"},\"time_bnds\":{\"type\":\"data\",\"attrs\":{\"time\":\"days since 1950-01-01 00:00:00\"},\"shape\":[41,2],\"chunks\":[1,2],\"dimensions\":[\"time\",\"nv\"]},\"lambert_conformal_conic\":{\"type\":\"data\",\"attrs\":{\"false_easting\":0.0,\"false_northing\":0.0,\"semi_major_axis\":6378137.0,\"grid_mapping_name\":\"lambert_conformal_conic\",\"standard_parallel\":[25.0,60.0],\"inverse_flattening\":298.257223563,\"latitude_of_projection_origin\":42.5,\"longitude_of_central_meridian\":-100.0},\"shape\":[],\"dimensions\":[]}},\"msft:container\":\"daymet-zarr\",\"cube:dimensions\":{\"x\":{\"axis\":\"x\",\"step\":1000.0,\"type\":\"spatial\",\"extent\":[-5802250.0,-5519250.0],\"description\":\"x coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"y\":{\"axis\":\"y\",\"step\":-1000.0,\"type\":\"spatial\",\"extent\":[-622000.0,-39000.0],\"description\":\"y coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"nv\":{\"type\":\"count\",\"values\":[0,1],\"description\":\"Size of the 'time_bnds' variable.\"},\"time\":{\"type\":\"temporal\",\"extent\":[\"1980-07-01T12:00:00Z\",\"2020-07-01T12:00:00Z\"],\"description\":\"24-hour day based on local time\"}},\"msft:group_keys\":[\"annual\",\"hawaii\"],\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"daymeteuwest\",\"msft:short_description\":\"Annual climate summaries on a 1-km grid for Hawaii\",\"msft:region\":\"westeurope\"},{\"id\":\"daymet-monthly-hi\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi\"},{\"rel\":\"license\",\"href\":\"https://science.nasa.gov/earth-science/earth-science-data/data-information-policy\",\"title\":\"EOSDIS Data Use Policy\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.3334/ORNLDAAC/1855\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/daymet-monthly-hi\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Daymet Monthly Hawaii\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/daymet-monthly-hi.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Daymet monthly Hawaii map thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://daymet-zarr/monthly/hi.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"Monthly Hawaii Daymet Azure Blob File System Zarr root\",\"description\":\"Azure Blob File System of the monthly Hawaii Daymet Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"daymeteuwest\"}},\"zarr-https\":{\"href\":\"https://daymeteuwest.blob.core.windows.net/daymet-zarr/monthly/hi.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"Monthly Hawaii Daymet HTTPS Zarr root\",\"description\":\"HTTPS URI of the monthly Hawaii Daymet Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-160.3056,17.9539,-154.772,23.5186]]},\"temporal\":{\"interval\":[[\"1980-01-16T12:00:00Z\",\"2020-12-16T00:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.3334/ORNLDAAC/1855\",\"keywords\":[\"Daymet\",\"Hawaii\",\"Temperature\",\"Precipitation\",\"Vapor Pressure\",\"Climate\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://doi.org/10.3334/ORNLDAAC/1855\",\"name\":\"ORNL DAAC\",\"roles\":[\"producer\"]}],\"description\":\"Monthly climate summaries derived from [Daymet](https://daymet.ornl.gov) Version 4 daily data at a 1 km x 1 km spatial resolution for five variables: minimum and maximum temperature, precipitation, vapor pressure, and snow water equivalent. Annual averages are provided for minimum and maximum temperature, vapor pressure, and snow water equivalent, and annual totals are provided for the precipitation variable.\\n\\n[Daymet](https://daymet.ornl.gov/) provides measurements of near-surface meteorological conditions; the main purpose is to provide data estimates where no instrumentation exists. The dataset covers the period from January 1, 1980 to the present. Each year is processed individually at the close of a calendar year. Data are in a Lambert conformal conic projection for North America and are distributed in Zarr and NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\n\\nUse the DOI at [https://doi.org/10.3334/ORNLDAAC/1855](https://doi.org/10.3334/ORNLDAAC/1855) to cite your usage of the data.\\n\\nThis dataset provides coverage for Hawaii; North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#monthly).\\n\",\"sci:citation\":\"Thornton, M.M., R. Shrestha, Y. Wei, P.E. Thornton, S. Kao, and B.E. Wilson. 2020. Daymet: Monthly Climate Summaries on a 1-km Grid for North America, Version 4. ORNL DAAC, Oak Ridge, Tennessee, USA. https://doi.org/10.3334/ORNLDAAC/1855\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"daymet\",\"cube:variables\":{\"vp\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"long_name\":\"monthly average of daily average vapor pressure\",\"cell_methods\":\"area: mean time: mean within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,584,284],\"chunks\":[12,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly average of daily average vapor pressure\"},\"lat\":{\"type\":\"auxiliary\",\"unit\":\"degrees_north\",\"attrs\":{\"units\":\"degrees_north\",\"long_name\":\"latitude coordinate\",\"standard_name\":\"latitude\"},\"shape\":[584,284],\"chunks\":[584,284],\"dimensions\":[\"y\",\"x\"],\"description\":\"latitude coordinate\"},\"lon\":{\"type\":\"auxiliary\",\"unit\":\"degrees_east\",\"attrs\":{\"units\":\"degrees_east\",\"long_name\":\"longitude coordinate\",\"standard_name\":\"longitude\"},\"shape\":[584,284],\"chunks\":[584,284],\"dimensions\":[\"y\",\"x\"],\"description\":\"longitude coordinate\"},\"swe\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"monthly total snow water equivalent\",\"cell_methods\":\"area: mean time: sum within days time: sum over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,584,284],\"chunks\":[12,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly total snow water equivalent\"},\"prcp\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"monthly total precipitation\",\"cell_methods\":\"area: mean time: sum within days time: sum over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,584,284],\"chunks\":[12,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly total precipitation\"},\"tmax\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"monthly average of daily maximum temperature\",\"cell_methods\":\"area: mean time: maximum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,584,284],\"chunks\":[12,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly average of daily maximum temperature\"},\"tmin\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"monthly average of daily minimum temperature\",\"cell_methods\":\"area: mean time: minimum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,584,284],\"chunks\":[12,584,284],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly average of daily minimum temperature\"},\"time_bnds\":{\"type\":\"data\",\"attrs\":{},\"shape\":[492,2],\"chunks\":[12,2],\"dimensions\":[\"time\",\"nv\"]},\"lambert_conformal_conic\":{\"type\":\"data\",\"attrs\":{\"false_easting\":0.0,\"false_northing\":0.0,\"semi_major_axis\":6378137.0,\"grid_mapping_name\":\"lambert_conformal_conic\",\"standard_parallel\":[25.0,60.0],\"inverse_flattening\":298.257223563,\"latitude_of_projection_origin\":42.5,\"longitude_of_central_meridian\":-100.0},\"shape\":[],\"dimensions\":[]}},\"msft:container\":\"daymet-zarr\",\"cube:dimensions\":{\"x\":{\"axis\":\"x\",\"step\":1000.0,\"type\":\"spatial\",\"extent\":[-5802250.0,-5519250.0],\"description\":\"x coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"y\":{\"axis\":\"y\",\"step\":-1000.0,\"type\":\"spatial\",\"extent\":[-622000.0,-39000.0],\"description\":\"y coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"nv\":{\"type\":\"count\",\"values\":[0,1],\"description\":\"Size of the 'time_bnds' variable.\"},\"time\":{\"type\":\"temporal\",\"extent\":[\"1980-01-16T12:00:00Z\",\"2020-12-16T00:00:00Z\"],\"description\":\"24-hour day based on local time\"}},\"msft:group_keys\":[\"monthly\",\"hawaii\"],\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"daymeteuwest\",\"msft:short_description\":\"Monthly climate summaries on a 1-km grid for Hawaii\",\"msft:region\":\"westeurope\"},{\"id\":\"daymet-monthly-pr\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr\"},{\"rel\":\"license\",\"href\":\"https://science.nasa.gov/earth-science/earth-science-data/data-information-policy\",\"title\":\"EOSDIS Data Use Policy\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.3334/ORNLDAAC/1855\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/daymet-monthly-pr\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Daymet Monthly Puerto Rico\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/daymet-monthly-pr.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Daymet monthly Puerto Rico map thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://daymet-zarr/monthly/pr.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"Monthly Puerto Rico Daymet Azure Blob File System Zarr root\",\"description\":\"Azure Blob File System of the monthly Puerto Rico Daymet Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"daymeteuwest\"}},\"zarr-https\":{\"href\":\"https://daymeteuwest.blob.core.windows.net/daymet-zarr/monthly/pr.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"Monthly Puerto Rico Daymet HTTPS Zarr root\",\"description\":\"HTTPS URI of the monthly Puerto Rico Daymet Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-67.9927,16.8444,-64.1196,19.9382]]},\"temporal\":{\"interval\":[[\"1980-01-16T12:00:00Z\",\"2020-12-16T00:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.3334/ORNLDAAC/1855\",\"keywords\":[\"Daymet\",\"Puerto Rico\",\"Temperature\",\"Precipitation\",\"Vapor Pressure\",\"Climate\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://doi.org/10.3334/ORNLDAAC/1855\",\"name\":\"ORNL DAAC\",\"roles\":[\"producer\"]}],\"description\":\"Monthly climate summaries derived from [Daymet](https://daymet.ornl.gov) Version 4 daily data at a 1 km x 1 km spatial resolution for five variables: minimum and maximum temperature, precipitation, vapor pressure, and snow water equivalent. Annual averages are provided for minimum and maximum temperature, vapor pressure, and snow water equivalent, and annual totals are provided for the precipitation variable.\\n\\n[Daymet](https://daymet.ornl.gov/) provides measurements of near-surface meteorological conditions; the main purpose is to provide data estimates where no instrumentation exists. The dataset covers the period from January 1, 1980 to the present. Each year is processed individually at the close of a calendar year. Data are in a Lambert conformal conic projection for North America and are distributed in Zarr and NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\n\\nUse the DOI at [https://doi.org/10.3334/ORNLDAAC/1855](https://doi.org/10.3334/ORNLDAAC/1855) to cite your usage of the data.\\n\\nThis dataset provides coverage for Hawaii; North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#monthly).\\n\",\"sci:citation\":\"Thornton, M.M., R. Shrestha, Y. Wei, P.E. Thornton, S. Kao, and B.E. Wilson. 2020. Daymet: Monthly Climate Summaries on a 1-km Grid for North America, Version 4. ORNL DAAC, Oak Ridge, Tennessee, USA. https://doi.org/10.3334/ORNLDAAC/1855\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"daymet\",\"cube:variables\":{\"vp\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"long_name\":\"monthly average of daily average vapor pressure\",\"cell_methods\":\"area: mean time: mean within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,231,364],\"chunks\":[12,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly average of daily average vapor pressure\"},\"lat\":{\"type\":\"auxiliary\",\"unit\":\"degrees_north\",\"attrs\":{\"units\":\"degrees_north\",\"long_name\":\"latitude coordinate\",\"standard_name\":\"latitude\"},\"shape\":[231,364],\"chunks\":[231,364],\"dimensions\":[\"y\",\"x\"],\"description\":\"latitude coordinate\"},\"lon\":{\"type\":\"auxiliary\",\"unit\":\"degrees_east\",\"attrs\":{\"units\":\"degrees_east\",\"long_name\":\"longitude coordinate\",\"standard_name\":\"longitude\"},\"shape\":[231,364],\"chunks\":[231,364],\"dimensions\":[\"y\",\"x\"],\"description\":\"longitude coordinate\"},\"swe\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"monthly total snow water equivalent\",\"cell_methods\":\"area: mean time: sum within days time: sum over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,231,364],\"chunks\":[12,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly total snow water equivalent\"},\"prcp\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"monthly total precipitation\",\"cell_methods\":\"area: mean time: sum within days time: sum over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,231,364],\"chunks\":[12,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly total precipitation\"},\"tmax\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"monthly average of daily maximum temperature\",\"cell_methods\":\"area: mean time: maximum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,231,364],\"chunks\":[12,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly average of daily maximum temperature\"},\"tmin\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"monthly average of daily minimum temperature\",\"cell_methods\":\"area: mean time: minimum within days time: mean over days\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[492,231,364],\"chunks\":[12,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"monthly average of daily minimum temperature\"},\"time_bnds\":{\"type\":\"data\",\"attrs\":{},\"shape\":[492,2],\"chunks\":[12,2],\"dimensions\":[\"time\",\"nv\"]},\"lambert_conformal_conic\":{\"type\":\"data\",\"attrs\":{\"false_easting\":0.0,\"false_northing\":0.0,\"semi_major_axis\":6378137.0,\"grid_mapping_name\":\"lambert_conformal_conic\",\"standard_parallel\":[25.0,60.0],\"inverse_flattening\":298.257223563,\"latitude_of_projection_origin\":42.5,\"longitude_of_central_meridian\":-100.0},\"shape\":[],\"dimensions\":[]}},\"msft:container\":\"daymet-zarr\",\"cube:dimensions\":{\"x\":{\"axis\":\"x\",\"step\":1000.0,\"type\":\"spatial\",\"extent\":[3445750.0,3808750.0],\"description\":\"x coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"y\":{\"axis\":\"y\",\"step\":-1000.0,\"type\":\"spatial\",\"extent\":[-1995000.0,-1765000.0],\"description\":\"y coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"nv\":{\"type\":\"count\",\"values\":[0,1],\"description\":\"Size of the 'time_bnds' variable.\"},\"time\":{\"type\":\"temporal\",\"extent\":[\"1980-01-16T12:00:00Z\",\"2020-12-16T00:00:00Z\"],\"description\":\"24-hour day based on local time\"}},\"msft:group_keys\":[\"monthly\",\"puerto rico\"],\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"daymeteuwest\",\"msft:short_description\":\"Monthly climate summaries on a 1-km grid for Puerto Rico\",\"msft:region\":\"westeurope\"},{\"id\":\"gnatsgo-tables\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables\"},{\"rel\":\"about\",\"href\":\"https://www.nrcs.usda.gov/wps/PA_NRCSConsumption/download?cid=nrcs142p2_051847&ext=pdf\",\"type\":\"application/pdf\",\"title\":\"gSSURGO User Guide\",\"description\":\"User guide for gSSURGO\"},{\"rel\":\"about\",\"href\":\"https://www.nrcs.usda.gov/wps/PA_NRCSConsumption/download?cid=nrcseprd1464658&ext=pdf\",\"type\":\"application/pdf\",\"title\":\"gNATSGO Overview Slides\",\"description\":\"Slides giving a high level overview of the gNATSGO dataset\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/publicdomain/zero/1.0/\",\"title\":\"CC0 1.0 Universal Public Domain Dedication\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/gnatsgo-tables\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"gNATSGO Soil Database - Tables\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gnatsgo-tables.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"gNATSGO\"},\"geoparquet-items\":{\"href\":\"abfs://items/gnatsgo-tables.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-170.8513,-14.3799,-169.4152,-14.1432],[138.0315,5.116,163.1902,10.2773],[144.6126,13.2327,144.9658,13.6572],[-159.7909,18.8994,-154.7815,22.2464],[170.969,6.0723,171.9169,8.71933],[145.0127,14.1086,145.9242,18.8172],[130.8048,2.9268,134.9834,8.0947],[157.3678,49.0546,-117.2864,71.4567],[-67.9506,17.014,-64.3973,19.3206],[-127.8881,22.8782,-65.2748,51.6039]]},\"temporal\":{\"interval\":[[\"2020-07-01T00:00:00Z\",\"2020-07-01T00:00:00Z\"]]}},\"license\":\"CC0-1.0\",\"keywords\":[\"Soils\",\"NATSGO\",\"SSURGO\",\"STATSGO2\",\"RSS\",\"USDA\",\"United States\"],\"providers\":[{\"url\":\"https://www.nrcs.usda.gov/\",\"name\":\"United States Department of Agriculture, Natural Resources Conservation Service\",\"roles\":[\"licensor\",\"producer\",\"processor\",\"host\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"description\":\"This collection contains the table data for gNATSGO. This table data can be used to determine the values of raster data cells for Items in the [gNATSGO Rasters](https://planetarycomputer.microsoft.com/dataset/gnatsgo-rasters) Collection.\\n\\nThe gridded National Soil Survey Geographic Database (gNATSGO) is a USDA-NRCS Soil & Plant Science Division (SPSD) composite database that provides complete coverage of the best available soils information for all areas of the United States and Island Territories. It was created by combining data from the Soil Survey Geographic Database (SSURGO), State Soil Geographic Database (STATSGO2), and Raster Soil Survey Databases (RSS) into a single seamless ESRI file geodatabase.\\n\\nSSURGO is the SPSD flagship soils database that has over 100 years of field-validated detailed soil mapping data. SSURGO contains soils information for more than 90 percent of the United States and island territories, but unmapped land remains. STATSGO2 is a general soil map that has soils data for all of the United States and island territories, but the data is not as detailed as the SSURGO data. The Raster Soil Surveys (RSSs) are the next generation soil survey databases developed using advanced digital soil mapping methods.\\n\\nThe gNATSGO database is composed primarily of SSURGO data, but STATSGO2 data was used to fill in the gaps. The RSSs are newer product with relatively limited spatial extent. These RSSs were merged into the gNATSGO after combining the SSURGO and STATSGO2 data. The extent of RSS is expected to increase in the coming years.\\n\\nSee the [official documentation](https://www.nrcs.usda.gov/wps/portal/nrcs/detail/soils/survey/geo/?cid=nrcseprd1464625)\",\"item_assets\":{\"data\":{\"type\":\"application/x-parquet\",\"roles\":[\"data\"],\"table:storage_options\":{\"account_name\":\"soils\"}}},\"stac_version\":\"1.0.0\",\"table:tables\":[{\"name\":\"chaashto\",\"description\":\"The Horizon AASHTO table contains the American Association of State Highway Transportation Officials classification(s) for the referenced horizon. One row in this table is marked as the representative AASHTO classification for the horizon.\"},{\"name\":\"chconsistence\",\"description\":\"The Horizon Consistence table contains descriptive terms of soil consistence -- rupture resistance, plasticity, and stickiness -- for the referenced horizon. \ One row in this table is marked as having the representative characteristics for the horizon.\"},{\"name\":\"chdesgnsuffix\",\"description\":\"The Horizon Designation Suffix table contains the designation suffix(es), one per row, \ for the referenced horizon. For example, the \\\"h\\\" and \\\"s\\\" of a Bhs horizon appear as two rows in this table.\"},{\"name\":\"chfrags\",\"description\":\"The Horizon Fragments table lists the mineral and organic fragments that generally occur in the referenced horizon. If the Volume % is greater than zero (low=5, RV=10, high=15) in a row, the kind and size of fragment in that row exists everywhere this horizon and component occur in the map unit. If the Volume % includes zero (low=0, RV=5, high=10), the kind and size of fragment may exist in some places, but not in others.\"},{\"name\":\"chorizon\",\"description\":\"The Horizon table lists the horizon(s) and related data for the referenced map unit component. If the horizon thickness is greater than zero (low=5, RV=8, high=12), the horizon exists everywhere this component occurs. If the horizon thickness includes zero (low=0, RV=1, high=3), the horizon may exist in some places, but not in other places.\\r\\nHorizons that have two distinct parts, such as E/B or E&Bt horizons, are recorded twice. Once for the characteristics of the first part; and again on another row, using the same depths and thicknesses, for the characteristics of the other part.\"},{\"name\":\"chpores\",\"description\":\"The Horizon Pores table lists the voids for the referenced horizon. If the Quantity is greater than zero (low=2, RV=5, high=10) in a row, the voids in that row exist everywhere the horizon and component occur in the map unit. If the Quantity includes zero (low=0, RV=2, high=5), the voids may exist in some places, but not in others. More than one row can be marked as an RV row because a horizon may have more than one size or shape of void.\"},{\"name\":\"chstruct\",\"description\":\"The Horizon Structure table lists the individual soil structure size, grade, and shape terms for the referenced horizon. Terms in this table are assembled into a structure group string which is recorded in the Horizon Structure Group table.\"},{\"name\":\"chstructgrp\",\"description\":\"The Horizon Structure Group table lists the ranges of soil structure for the referenced horizon. \ The row with the typically occurring structure is marked as being representative. \ The entry in this table is based on grouping of entries in the Horizon Structure table.\"},{\"name\":\"chtext\",\"description\":\"The Horizon Text table contains notes and narrative descriptions related to the referenced horizon. Some notes may provide additional information about the horizon for which there is no explicit column for such data. In many cases, the table is empty for a particular horizon.\"},{\"name\":\"chtexture\",\"description\":\"The Horizon Texture table lists the individual texture(s), or term(s) used in lieu of texture, for the referenced horizon. Only the unmodified texture terms are listed in the Horizon Texture table; modifiers are listed in the Horizon Texture Modifier table. For example, a gravelly loamy sand is shown as \\\"GR-LS\\\" in the Horizon Texture Group table, \\\"ls\\\" in the Horizon Texture table, and \\\"gr\\\" in the Horizon Texture Modifier table.\"},{\"name\":\"chtexturegrp\",\"description\":\"The Horizon Texture Group table lists the range of textures for the referenced horizon as a concatenation of horizon texture and texture modifier(s). For example, a horizon that is gravelly loamy sand in some places and gravelly loamy coarse sand in other places is shown as GR-LS on one row and GR-LCOS on another row in this table. The row with the typically occurring texture is identified as the RV row. Stratified textures are shown in one row. For example, a horizon that is stratified gravelly loamy fine sand and cobbly coarse sand is shown as SR- GR-LFS CB-COS on one row and the Stratified? column for that row is marked \\\"yes\\\". If two or more textures always occur together but are not stratified, all of the textures are listed on one row and the Stratified? column for that row is marked \\\"no\\\".\"},{\"name\":\"chtexturemod\",\"description\":\"The Horizon Texture Modifier table lists the texture modifier(s) for the referenced texture. For example, a gravelly loamy sand is shown as \\\"GR-LS\\\" in the Horizon Texture Group table, \\\"ls\\\" in the Horizon Texture table, and \\\"gr\\\" in this table.\"},{\"name\":\"chunified\",\"description\":\"The Horizon Unified table contains the Unified Soil Classification(s) for the referenced horizon. One row in the Horizon Unified table is marked as the representative Unified classification for the horizon.\"},{\"name\":\"cocanopycover\",\"description\":\"The Component Canopy Cover table lists the overstory plants that typically occur on the referenced map unit component.\"},{\"name\":\"cocropyld\",\"description\":\"The Component Crop Yield table lists commonly grown crops and their expected range in yields when grown on the referenced map unit component. Yields for the map unit as a whole are given in the Mapunit Crop Yield table.\"},{\"name\":\"codiagfeatures\",\"description\":\"The Component Diagnostic Features table lists the typical soil features, such as ochric epipedon or cambic horizon, for the referenced map unit component.\"},{\"name\":\"coecoclass\",\"description\":\"The Component Ecological Classification table identifies the ecological sites typically associated with the referenced map unit component. These may include the official NRCS forestland and rangland ecological sites, as well as those of other classification systems, such as the USFS Habitat Types.\"},{\"name\":\"coeplants\",\"description\":\"The Component Existing Plants table lists the plants, either rangeland or forestland plants, that typically occur on the referenced map unit component.\"},{\"name\":\"coerosionacc\",\"description\":\"The Component Erosion Accelerated table lists the kinds of accelerated erosion that occur on the referenced map unit component. One row in this table is marked as the representative kind of accelerated erosion for that component.\"},{\"name\":\"coforprod\",\"description\":\"The Component Forest Productivity table lists the site index and the annual productivity in cubic feet per acre per year (CAMI) of forest overstory tree species that typically occur on the referenced map unit component.\"},{\"name\":\"coforprodo\",\"description\":\"The Component Forest Productivity - Other table lists the site index and annual productivity of forest overstory tree species in units other than cubic feet per acre per year for trees that typically occur on the referenced map unit component.\"},{\"name\":\"cogeomordesc\",\"description\":\"The Component Geomorphic Description table lists the geomorphic features on which the referenced map unit component typically occurs.\"},{\"name\":\"cohydriccriteria\",\"description\":\"The Component Hydric Criteria table lists the hydric soil criteria met for those referenced map unit components that are classified as a \\\"hydric soil.\\\"\"},{\"name\":\"cointerp\",\"description\":\"The Component Interpretation table lists the predictions of behavior and limiting features for specified uses made for the referenced map unit component.\"},{\"name\":\"comonth\",\"description\":\"The Component Month table lists the monthly flooding and ponding characteristics for the referenced map unit component. This table has one row for each month of the year.\"},{\"name\":\"component\",\"description\":\"The Component table lists the map unit components identified in the referenced map unit, and selected properties of each component. If the Component % is greater than zero (low=65, RV=75, high=90) for a component, that component exists in every delineation of that mapunit. If the Component % includes zero (low=0, RV=50, high=90), the component may exist in some delineations, but not in others.\"},{\"name\":\"copm\",\"description\":\"The Component Parent Material table lists the individual parent material(s) for the referenced map unit component. In some cases where soils developed in multiple materials in a vertical sequence, that sequence will be noted. \ In other cases multiple entries with no vertical sequence noted indicates the soil may have formed in one of the materials listed.\"},{\"name\":\"copmgrp\",\"description\":\"The Component Parent Material Group table lists the concatenated string of parent material(s) in which the referenced map unit component formed based on entries in the Component Parent Material table. For example, a component formed in one parent material, such as loess, or one vertical sequence of parent materials, such as loamy glacial drift over silty residuum weathered from shale, has one row in this table. A component formed in one parent material in some locations, but another parent material (or sequence of parent materials) in other locations has two rows in this table, one for each parent material (or sequence of parent materials). One row is identified as the representative parent material.\"},{\"name\":\"copwindbreak\",\"description\":\"The Component Potential Windbreak table lists the windbreak plant species commonly recommended for the referenced map unit component. A windbreak plant listed in this table may be used alone or in combination with other plants.\"},{\"name\":\"corestrictions\",\"description\":\"The Component Restrictions table lists the root restrictive feature(s) or layer(s) for the referenced map unit component. If the thickness of the restrictive layer is greater than zero (low=5, RV=8, high=10), the restrictive layer exists in all delineations of the map unit where the component occurs. If the thickness of the restrictive layer includes zero (low=0, RV=2, high=5), the restrictive layer may exist in some delineations, but not in others. This table will be empty if the component does not have restrictive features, but could have several rows if several restrictive features occur in the soil.\"},{\"name\":\"cosoilmoist\",\"description\":\"The Component Soil Moisture table describes the typical soil moisture profile for the referenced map unit component during the month referenced in the Component Month table. The soil moisture profiles for each month, taken as a group of twelve months, describe the representative situation for the component throughout the year.\"},{\"name\":\"cosoiltemp\",\"description\":\"The Component Soil Temperature table describes the typical soil temperature profile for the referenced map unit component during the month referenced in the Component Month table. The soil temperature profiles for each month, taken as a group of twelve months, describe the representative situation for the component throughout the year.\"},{\"name\":\"cosurffrags\",\"description\":\"The Component Surface Fragments table lists the organic or mineral fragments that generally occur on the surface of the referenced map unit component. If the cover percent is greater than zero (low=0.1, RV=1, high=3) for a row in this table, the fragment is in every delineation of the map unit where the referenced component occurs. If the Cover % includes zero (low=0, RV=0.01, high=1) for a row in this table, the fragment may exist in some delineations and not in others.\"},{\"name\":\"cosurfmorphgc\",\"description\":\"The Component Three Dimensional Surface Morphometry table lists the typical geomorphic position (s) of the referenced map unit component, in three dimension terms. \ The geomorphic position(s) listed in this table apply to the geomorphic feature referenced in the Component Geomorphic Description table.\"},{\"name\":\"cosurfmorphhpp\",\"description\":\"The Component Two Dimensional Surface Morphometry table lists the geomorphic position(s) of the referenced map unit component, in two dimensional hillslope profile terms. The geomorphic position(s) listed in this table apply to the geomorphic feature referenced in the Component Geomorphic Description table.\"},{\"name\":\"cosurfmorphmr\",\"description\":\"The Component Microrelief Surface Morphometry table lists microrelief features associated with the referenced geomorphic (microfeature) feature shown in the Component Geomorphic Description table.\"},{\"name\":\"cosurfmorphss\",\"description\":\"The Component Slope Shape Surface Morphometry table lists the geomorphic shape(s) of the referenced map unit component, in slope shape terms. The slope shape terms listed in this table apply to the referenced geomorphic feature shown in the Component Geomorphic Description table.\"},{\"name\":\"cotaxfmmin\",\"description\":\"The Component Taxonomic Family Mineralogy table lists the mineralogy characteristics, as defined in Soil Taxonomy, that apply to the referenced map unit component.\"},{\"name\":\"cotaxmoistcl\",\"description\":\"The Component Taxonomic Moisture Class table provides clear identification of the intended taxonomic moisture class, as defined in Soil Taxonomy, that apply to the referenced map unit component, even though moisture class is implied at a higher taxonomic level. The class or classes listed in this table describe the representative situation for the component.\"},{\"name\":\"cotext\",\"description\":\"The Component Text table contains notes and narrative descriptions for the referenced map unit component. In many cases, the table will be empty for a particular component.\"},{\"name\":\"cotreestomng\",\"description\":\"The Component Trees To Manage table lists the trees commonly recommended for managing on the referenced map unit component.\"},{\"name\":\"cotxfmother\",\"description\":\"The Component Taxonomic Family Other Criteria table lists the other taxonomic characteristics, such as classes of coatings or permanent cracks, as defined in Soil Taxonomy, that apply to the referenced map unit component. The characteristics listed in this table describe the representative situation for the component.\"},{\"name\":\"distinterpmd\",\"description\":\"The Distribution Interp Metadata table records the set of NASIS fuzzy logic interpretations which were generated for the map unit components included in a set of distribution data.\"},{\"name\":\"distlegendmd\",\"description\":\"The Distribution Legend Metadata table records information about the legends or soil survey areas selected for inclusion in a set of distributed data. The presence of a legend in this table does not imply that all of the available data for that legend was included in the set of data that was distributed. Only certain map units and components for that legend may have been selected. The record of the criteria used for selecting map units and components may be found in the Distribution Metadata table.\"},{\"name\":\"distmd\",\"description\":\"The Distribution Metadata table records information associated with the selection of a set of data for distribution to some entity or information system external to NASIS. A set of distribution data may include only selected map units from a legend or legends, and only selected components of those map units. This table records the criteria used for selecting map units and components for inclusion in the set of distributed data. Other recorded information includes the name of the NASIS user who initiated a distribution request, and the times when that request was made, and when that request was ultimately processed.\"},{\"name\":\"laoverlap\",\"description\":\"The Legend Area Overlap table lists the geographic areas that are coincident with the soil survey area identified in the Legend table. For example, a survey area that covers two counties would have two rows in this table, one for each county. Other types of geographic areas listed might include state, MLRA, rainfall (R) factor area, climate (C) factor area, etc.\"},{\"name\":\"legend\",\"description\":\"The Legend table identifies the soil survey area that the legend is related to, and related information about that legend.\"},{\"name\":\"legendtext\",\"description\":\"The Legend Text table contains notes and narrative descriptions related to the referenced legend. Legend text is optional. In many cases, this table is empty.\"},{\"name\":\"mapunit\",\"description\":\"The Mapunit table identifies the map units included in the referenced legend. Data related the map unit as a whole are also given.\"},{\"name\":\"muaggatt\",\"description\":\"The Mapunit Aggregated Attribute table records a variety of soil attributes and interpretations that have been aggregated from the component level to a single value at the map unit level. They have been aggregated by one or more appropriate means in order to express a consolidated value or interpretation for the map unit as a whole.\"},{\"name\":\"muaoverlap\",\"description\":\"The Mapunit Area Overlap table lists the map units that exist in the overlap between the entire soil survey area and the referenced geographic area in the Legend Area Overlap table.\"},{\"name\":\"mucropyld\",\"description\":\"The Mapunit Crop Yield table lists commonly grown crops and their expected yields for the referenced map unit as a whole. Yields for individual map unit components are given in the Component Crop Yield table.\"},{\"name\":\"mutext\",\"description\":\"The Mapunit Text table contains notes and narrative descriptions related to the referenced map unit.\"},{\"name\":\"sacatalog\",\"description\":\"This table records the primary dynamic metadata associated with a soil survey area. This includes such things as survey area version, tabular data version, etc. The remaining dynamic metadata, which soil interpretations were generated for the corresponding soil survey area, is recorded in the Survey Area Interpretation table.\"},{\"name\":\"sainterp\",\"description\":\"This table records information about the soil interpretations that were generated for a soil survey area.\"},{\"name\":\"valu1\",\"description\":\"Included with the gSSURGO database, but not a part of the standard SSURGO dataset is a table called Valu1. This table contains 57 pre-summarized or 'ready to map' attributes derived from the official SSURGO database. These attribute data are pre-summarized to the map unit level using best-practice generalization methods intended to meet the needs of most users. The generalization methods include map unit component weighted averages and percent of the map unit meeting a given criteria. These themes were prepared to better meet the mapping needs of users of soil survey information and can be used with both SSURGO and gridded SSURGO (gSSURGO) datasets.\"}],\"msft:group_id\":\"gnatsgo\",\"msft:container\":\"gnatsgo-stac\",\"stac_extensions\":[\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"soils\",\"msft:short_description\":\"The gridded National Soil Survey Geographic Database (gNATSGO) is a USDA-NRCS Soil & Plant Science Division (SPSD) composite database that provides complete coverage of the best available soils information for all areas of the United States and Island Territories.\",\"msft:region\":\"westeurope\"},{\"id\":\"hgb\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb\"},{\"rel\":\"license\",\"href\":\"https://earthdata.nasa.gov/earth-observation-data/data-use-policy\",\"title\":\"EOSDIS Data Use Policy\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/hgb\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"HGB: Harmonized Global Biomass for 2010\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/hgb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Harmonized Global Biomass\"},\"geoparquet-items\":{\"href\":\"abfs://items/hgb.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-61.002778,180.0,84.0]]},\"temporal\":{\"interval\":[[\"2010-12-31T00:00:00Z\",\"2010-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Biomass\",\"Carbon\",\"ORNL\"],\"providers\":[{\"url\":\"https://daac.ornl.gov/cgi-bin/dsviewer.pl?ds_id=1763\",\"name\":\"Oak Ridge National Laboratory Distributed Active Archive Center\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://carbonplan.org\",\"name\":\"CarbonPlan\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[300]},\"description\":\"This dataset provides temporally consistent and harmonized global maps of aboveground and belowground biomass carbon density for the year 2010 at 300m resolution. The aboveground biomass map integrates land-cover-specific, remotely sensed maps of woody, grassland, cropland, and tundra biomass. Input maps were amassed from the published literature and, where necessary, updated to cover the focal extent or time period. The belowground biomass map similarly integrates matching maps derived from each aboveground biomass map and land-cover-specific empirical models. Aboveground and belowground maps were then integrated separately using ancillary maps of percent tree/land cover and a rule-based decision tree. Maps reporting the accumulated uncertainty of pixel-level estimates are also provided.\\n\",\"item_assets\":{\"aboveground\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Global above-ground biomass\"},\"belowground\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Global below-ground biomass\"},\"aboveground_uncertainty\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Uncertainty associated with global above-ground biomass\"},\"belowground_uncertainty\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Uncertainty associated with global below-ground biomass\"}},\"stac_version\":\"1.0.0\",\"msft:container\":\"cpdata\",\"stac_extensions\":[\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"cpdataeuwest\",\"msft:short_description\":\"Global maps of aboveground and belowground biomass carbon density for the year 2010 at 300m resolution\",\"msft:region\":\"westeurope\"},{\"id\":\"cop-dem-glo-30\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/cop-dem-glo-30\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Copernicus DEM GLO-30\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/cop-dem.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"COP DEM GLO-30\"},\"geoparquet-items\":{\"href\":\"abfs://items/cop-dem-glo-30.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"DSM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[30],\"platform\":[\"tandem-x\"]},\"description\":\"The Copernicus DEM is a digital surface model (DSM), which represents the surface of the Earth including buildings, infrastructure, and vegetation. This DSM is based on radar satellite data acquired during the TanDEM-X Mission, which was funded by a public-private partnership between the German Aerospace Centre (DLR) and Airbus Defence and Space.\\n\\nCopernicus DEM is available at both 30-meter and 90-meter resolution; this dataset has a horizontal resolution of approximately 30 meters.\\n\\nSee the [Product Handbook](https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf) for more information.\\n\\nSee the dataset page on OpenTopography: \\n\\n\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"copernicus-dem\",\"msft:container\":\"copernicus-dem-stac\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"elevationeuwest\",\"msft:short_description\":\"Copernicus DEM 30 is a near-global digital surface model (DSM) with a horizontal resolution of approximately 30 meters, derived from radar satellite data acquired during the TanDEM-X mission.\",\"msft:region\":\"westeurope\"},{\"id\":\"cop-dem-glo-90\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/cop-dem-glo-90\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Copernicus DEM GLO-90\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/cop-dem-glo-90.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"COP DEM GLO-90\"},\"geoparquet-items\":{\"href\":\"abfs://items/cop-dem-glo-90.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[90],\"platform\":[\"tandem-x\"]},\"description\":\"The Copernicus DEM is a digital surface model (DSM), which represents the surface of the Earth including buildings, infrastructure, and vegetation. This DSM is based on radar satellite data acquired during the TanDEM-X Mission, which was funded by a public-private partnership between the German Aerospace Centre (DLR) and Airbus Defence and Space.\\n\\nCopernicus DEM is available at both 30-meter and 90-meter resolution; this dataset has a horizontal resolution of approximately 90 meters.\\n\\nSee the [Product Handbook](https://object.cloud.sdsc.edu/v1/AUTH_opentopography/www/metadata/Copernicus_metadata.pdf) for more information.\\n\\nSee the dataset page on OpenTopography: \\n\\n\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"copernicus-dem\",\"msft:container\":\"copernicus-dem-stac\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"elevationeuwest\",\"msft:short_description\":\"Copernicus DEM 90 is a near-global digital surface model (DSM) with a horizontal resolution of approximately 90 meters, derived from radar satellite data acquired during the TanDEM-X mission.\",\"msft:region\":\"westeurope\"},{\"id\":\"terraclimate\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/publicdomain/zero/1.0/legalcode\",\"type\":\"text/html\",\"title\":\"CC0-1.0 License\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/terraclimate\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"TerraClimate\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/terraclimate.png\",\"role\":[\"thumbnail\"],\"type\":\"image/png\",\"title\":\"TerraClimate thumbnail\"},\"zarr-abfs\":{\"href\":\"az://cpdata/terraclimate.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"TerraClimate Azure Blob File System Zarr root\",\"description\":\"Azure Blob File System URI of the TerraClimate Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"zarr-https\":{\"href\":\"https://cpdataeuwest.blob.core.windows.net/cpdata/terraclimate.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"TerraClimate HTTPS Zarr root\",\"description\":\"HTTPS URI of the TerraClimate Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1958-01-01T00:00:00Z\",\"2021-12-01T00:00:00Z\"]]}},\"license\":\"CC0-1.0\",\"keywords\":[\"TerraClimate\",\"Water\",\"Precipitation\",\"Temperature\",\"Vapor Pressure\",\"Climate\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"http://www.climatologylab.org/terraclimate.html\",\"name\":\"Climatology Lab\",\"roles\":[\"producer\"]},{\"url\":\"https://www.nature.com/articles/sdata2017191\",\"name\":\"Abatzoglou, J.T., S.Z. Dobrowski, S.A. Parks, K.C. Hegewisch\",\"roles\":[\"producer\"]}],\"description\":\"[TerraClimate](http://www.climatologylab.org/terraclimate.html) is a dataset of monthly climate and climatic water balance for global terrestrial surfaces from 1958 to the present. These data provide important inputs for ecological and hydrological studies at global scales that require high spatial resolution and time-varying data. All data have monthly temporal resolution and a ~4-km (1/24th degree) spatial resolution. This dataset is provided in [Zarr](https://zarr.readthedocs.io/) format.\\n\",\"stac_version\":\"1.0.0\",\"cube:variables\":{\"q\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"runoff_amount\",\"dimensions\":\"lon lat time\",\"description\":\"Runoff\",\"grid_mapping\":\"crs\",\"standard_name\":\"runoff_amount\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Runoff\"},\"ws\":{\"type\":\"data\",\"unit\":\"m/s\",\"attrs\":{\"units\":\"m/s\",\"long_name\":\"wind_speed\",\"dimensions\":\"lon lat time\",\"description\":\"Wind Speed at 10-m\",\"grid_mapping\":\"crs\",\"standard_name\":\"wind_speed\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Wind Speed at 10-m\"},\"aet\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"water_evaporation_amount\",\"dimensions\":\"lon lat time\",\"description\":\"Actual Evapotranspiration\",\"grid_mapping\":\"crs\",\"standard_name\":\"water_evaporation_amount\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Actual Evapotranspiration\"},\"def\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"water_potential_evaporation_amount_minus_water_evaporation_amount\",\"dimensions\":\"lon lat time\",\"description\":\"Climatic Water Deficit\",\"grid_mapping\":\"crs\",\"standard_name\":\"water_potential_evaporation_amount_minus_water_evaporation_amount\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Climatic Water Deficit\"},\"pet\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"water_potential_evaporation_amount\",\"dimensions\":\"lon lat time\",\"description\":\"Reference Evapotranspiration\",\"grid_mapping\":\"crs\",\"standard_name\":\"water_potential_evaporation_amount\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Reference Evapotranspiration\"},\"ppt\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"precipitation_amount\",\"dimensions\":\"lon lat time\",\"description\":\"Accumulated Precipitation\",\"grid_mapping\":\"crs\",\"standard_name\":\"precipitation_amount\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Accumulated Precipitation\"},\"swe\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"liquid_water_content_of_surface_snow\",\"dimensions\":\"lon lat time\",\"description\":\"Snow Water Equivalent at End of Month\",\"grid_mapping\":\"crs\",\"standard_name\":\"liquid_water_content_of_surface_snow\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Snow Water Equivalent at End of Month\"},\"vap\":{\"type\":\"data\",\"unit\":\"kPa\",\"attrs\":{\"units\":\"kPa\",\"long_name\":\"water_vapor_partial_pressure_in_air\",\"dimensions\":\"lon lat time\",\"description\":\"2-m Vapor Pressure\",\"grid_mapping\":\"crs\",\"standard_name\":\"water_vapor_partial_pressure_in_air\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"2-m Vapor Pressure\"},\"vpd\":{\"type\":\"data\",\"unit\":\"kPa\",\"attrs\":{\"units\":\"kPa\",\"long_name\":\"vapor_pressure_deficit\",\"dimensions\":\"lon lat time\",\"description\":\"Vapor Pressure Deficit\",\"grid_mapping\":\"crs\",\"standard_name\":\"vapor_pressure_deficit\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Vapor Pressure Deficit\"},\"pdsi\":{\"type\":\"data\",\"unit\":\"unitless\",\"attrs\":{\"units\":\"unitless\",\"long_name\":\"palmer_drought_severity_index\",\"dimensions\":\"lon lat time\",\"description\":\"Palmer Drought Severity Index\",\"grid_mapping\":\"crs\",\"standard_name\":\"palmer_drought_severity_index\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Palmer Drought Severity Index\"},\"soil\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"long_name\":\"soil_moisture_content\",\"dimensions\":\"lon lat time\",\"description\":\"Soil Moisture at End of Month\",\"grid_mapping\":\"crs\",\"standard_name\":\"soil_moisture_content\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Soil Moisture at End of Month\"},\"srad\":{\"type\":\"data\",\"unit\":\"W/m^2\",\"attrs\":{\"units\":\"W/m^2\",\"long_name\":\"downwelling_shortwave_flux_in_air\",\"dimensions\":\"lon lat time\",\"description\":\"Downward Shortwave Radiation Flux at the Surface\",\"grid_mapping\":\"crs\",\"standard_name\":\"downwelling_shortwave_flux_in_air\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Downward Shortwave Radiation Flux at the Surface\"},\"tmax\":{\"type\":\"data\",\"unit\":\"degC\",\"attrs\":{\"units\":\"degC\",\"long_name\":\"air_temperature\",\"dimensions\":\"lon lat time\",\"description\":\"Maximum 2-m Temperature\",\"grid_mapping\":\"crs\",\"standard_name\":\"air_temperature\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Maximum 2-m Temperature\"},\"tmin\":{\"type\":\"data\",\"unit\":\"degC\",\"attrs\":{\"units\":\"degC\",\"long_name\":\"air_temperature\",\"dimensions\":\"lon lat time\",\"description\":\"Minimum 2-m Temperature\",\"grid_mapping\":\"crs\",\"standard_name\":\"air_temperature\",\"coordinate_system\":\"WGS84,EPSG:4326\"},\"shape\":[768,4320,8640],\"chunks\":[12,1024,1024],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Minimum 2-m Temperature\"}},\"msft:container\":\"cpdata\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"type\":\"spatial\",\"extent\":[-89.97916666666664,89.97916666666667],\"description\":\"latitude\",\"reference_system\":4326},\"lon\":{\"axis\":\"x\",\"type\":\"spatial\",\"extent\":[-179.97916666666666,179.97916666666666],\"description\":\"longitude\",\"reference_system\":4326},\"time\":{\"type\":\"temporal\",\"extent\":[\"1958-01-01T00:00:00Z\",\"2021-12-01T00:00:00Z\"],\"description\":\"time\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/xarray-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"cpdataeuwest\",\"msft:short_description\":\"High-resolution global dataset of monthly climate and climatic water balance\",\"msft:region\":\"westeurope\"},{\"id\":\"nasa-nex-gddp-cmip6\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6\"},{\"rel\":\"license\",\"href\":\"https://pcmdi.llnl.gov/CMIP6/TermsOfUse/TermsOfUse6-1.html\",\"type\":\"text/html\",\"title\":\"CMIP6 Terms of Use\"},{\"rel\":\"documentation\",\"href\":\"https://www.nccs.nasa.gov/sites/default/files/NEX-GDDP-CMIP6-Tech_Note.pdf\",\"type\":\"application/pdf\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/nasa-nex-gddp-cmip6\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/nasa-nex-gddp-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"thumbnail\"},\"CESM2.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/CESM2_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"CESM2-historical references\",\"cmip6:model\":\"CESM2\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"geoparquet-items\":{\"href\":\"abfs://items/nasa-nex-gddp-cmip6.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}},\"MIROC6.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/MIROC6_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"MIROC6-historical references\",\"cmip6:model\":\"MIROC6\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"TaiESM1.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/TaiESM1_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"TaiESM1-historical references\",\"cmip6:model\":\"TaiESM1\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"CMCC-ESM2.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/CMCC-ESM2_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"CMCC-ESM2-historical references\",\"cmip6:model\":\"CMCC-ESM2\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"KIOST-ESM.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/KIOST-ESM_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"KIOST-ESM-historical references\",\"cmip6:model\":\"KIOST-ESM\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"ACCESS-CM2.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/ACCESS-CM2_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"ACCESS-CM2-historical references\",\"cmip6:model\":\"ACCESS-CM2\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"KACE-1-0-G.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/KACE-1-0-G_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"KACE-1-0-G-historical references\",\"cmip6:model\":\"KACE-1-0-G\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"MIROC-ES2L.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/MIROC-ES2L_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"MIROC-ES2L-historical references\",\"cmip6:model\":\"MIROC-ES2L\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"MRI-ESM2-0.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/MRI-ESM2-0_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"MRI-ESM2-0-historical references\",\"cmip6:model\":\"MRI-ESM2-0\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"NorESM2-LM.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/NorESM2-LM_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"NorESM2-LM-historical references\",\"cmip6:model\":\"NorESM2-LM\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"NorESM2-MM.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/NorESM2-MM_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"NorESM2-MM-historical references\",\"cmip6:model\":\"NorESM2-MM\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"CESM2-WACCM.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/CESM2-WACCM_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"CESM2-WACCM-historical references\",\"cmip6:model\":\"CESM2-WACCM\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"UKESM1-0-LL.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/UKESM1-0-LL_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"UKESM1-0-LL-historical references\",\"cmip6:model\":\"UKESM1-0-LL\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"CMCC-CM2-SR5.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/CMCC-CM2-SR5_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"CMCC-CM2-SR5-historical references\",\"cmip6:model\":\"CMCC-CM2-SR5\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"IPSL-CM6A-LR.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/IPSL-CM6A-LR_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"IPSL-CM6A-LR-historical references\",\"cmip6:model\":\"IPSL-CM6A-LR\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"MPI-ESM1-2-HR.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/MPI-ESM1-2-HR_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"MPI-ESM1-2-HR-historical references\",\"cmip6:model\":\"MPI-ESM1-2-HR\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}},\"MPI-ESM1-2-LR.historical\":{\"href\":\"https://nasagddp.blob.core.windows.net/nex-gddp-cmip6-references/MPI-ESM1-2-LR_historical.json\",\"type\":\"application/json\",\"roles\":[\"references\"],\"title\":\"MPI-ESM1-2-LR-historical references\",\"cmip6:model\":\"MPI-ESM1-2-LR\",\"cmip6:scenario\":\"historical\",\"xarray:open_dataset_kwargs\":{\"engine\":\"zarr\",\"backend_kwargs\":{\"chunks\":{},\"consolidated\":false}}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1950-01-01T00:00:00Z\",\"2100-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"CMIP6\",\"NASA\",\"Climate\",\"Humidity\",\"Precipitation\",\"Temperature\"],\"providers\":[{\"url\":\"https://www.nasa.gov/nex\",\"name\":\"NASA NEX\",\"roles\":[\"producer\"]},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"cmip6:model\":[\"ACCESS-CM2\",\"ACCESS-ESM1-5\",\"BCC-CSM2-MR\",\"CESM2\",\"CESM2-WACCM\",\"CMCC-CM2-SR5\",\"CMCC-ESM2\",\"CNRM-CM6-1\",\"CNRM-ESM2-1\",\"CanESM5\",\"EC-Earth3\",\"EC-Earth3-Veg-LR\",\"FGOALS-g3\",\"GFDL-CM4\",\"GFDL-CM4_gr2\",\"GFDL-ESM4\",\"GISS-E2-1-G\",\"HadGEM3-GC31-LL\",\"HadGEM3-GC31-MM\",\"IITM-ESM\",\"INM-CM4-8\",\"INM-CM5-0\",\"IPSL-CM6A-LR\",\"KACE-1-0-G\",\"KIOST-ESM\",\"MIROC-ES2L\",\"MIROC6\",\"MPI-ESM1-2-HR\",\"MPI-ESM1-2-LR\",\"MRI-ESM2-0\",\"NESM3\",\"NorESM2-LM\",\"NorESM2-MM\",\"TaiESM1\",\"UKESM1-0-LL\"],\"cmip6:scenario\":[\"historical\",\"ssp245\",\"ssp585\"],\"cmip6:variable\":[\"hurs\",\"huss\",\"pr\",\"rlds\",\"rsds\",\"sfcWind\",\"tas\",\"tasmax\",\"tasmin\"]},\"description\":\"The NEX-GDDP-CMIP6 dataset is comprised of global downscaled climate scenarios derived from the General Circulation Model (GCM) runs conducted under the Coupled Model Intercomparison Project Phase 6 (CMIP6) and across two of the four \u201CTier 1\u201D greenhouse gas emissions scenarios known as Shared Socioeconomic Pathways (SSPs). The CMIP6 GCM runs were developed in support of the Sixth Assessment Report of the Intergovernmental Panel on Climate Change (IPCC AR6). This dataset includes downscaled projections from ScenarioMIP model runs for which daily scenarios were produced and distributed through the Earth System Grid Federation. The purpose of this dataset is to provide a set of global, high resolution, bias-corrected climate change projections that can be used to evaluate climate change impacts on processes that are sensitive to finer-scale climate gradients and the effects of local topography on climate conditions.\\n\\nThe [NASA Center for Climate Simulation](https://www.nccs.nasa.gov/) maintains the [next-gddp-cmip6 product page](https://www.nccs.nasa.gov/services/data-collections/land-based-products/nex-gddp-cmip6) where you can find more information about these datasets. Users are encouraged to review the [technote](https://www.nccs.nasa.gov/sites/default/files/NEX-GDDP-CMIP6-Tech_Note.pdf), provided alongside the data set, where more detailed information, references and acknowledgements can be found.\\n\\nThis collection contains many NetCDF files. There is one NetCDF file per `(model, scenario, variable, year)` tuple.\\n\\n- **model** is the name of a modeling group (e.g. \\\"ACCESS-CM-2\\\"). See the `cmip6:model` summary in the STAC collection for a full list of models.\\n- **scenario** is one of \\\"historical\\\", \\\"ssp245\\\" or \\\"ssp585\\\".\\n- **variable** is one of \\\"hurs\\\", \\\"huss\\\", \\\"pr\\\", \\\"rlds\\\", \\\"rsds\\\", \\\"sfcWind\\\", \\\"tas\\\", \\\"tasmax\\\", \\\"tasmin\\\".\\n- **year** depends on the value of *scenario*. For \\\"historical\\\", the values range from 1950 to 2014 (inclusive). For \\\"ssp245\\\" and \\\"ssp585\\\", the years range from 2015 to 2100 (inclusive).\\n\\nIn addition to the NetCDF files, we provide some *experimental* **reference files** as collection-level dataset assets. These are JSON files implementing the [references specification](https://fsspec.github.io/kerchunk/spec.html).\\nThese files include the positions of data variables within the binary NetCDF files, which can speed up reading the metadata. See the example notebook for more.\",\"item_assets\":{\"pr\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Precipitation\",\"description\":\"Precipitation\"},\"tas\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Daily Near-Surface Air Temperature\",\"description\":\"Daily Near-Surface Air Temperature\"},\"hurs\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Near-Surface Relative Humidity\",\"description\":\"Near-Surface Relative Humidity\"},\"huss\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Near-Surface Specific Humidity\",\"description\":\"Near-Surface Specific Humidity\"},\"rlds\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Surface Downwelling Longwave Radiation\",\"description\":\"Surface Downwelling Longwave Radiation\"},\"rsds\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Surface Downwelling Shortwave Radiation\",\"description\":\"Surface Downwelling Shortwave Radiation\"},\"tasmax\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Daily Maximum Near-Surface Air Temperature\",\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Daily Minimum Near-Surface Air Temperature\",\"description\":\"Daily Minimum Near-Surface Air Temperature\"},\"sfcWind\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Daily-Mean Near-Surface Wind Speed\",\"description\":\"Daily-Mean Near-Surface Wind Speed\"}},\"sci:citation\":\"Climate scenarios used were from the NEX-GDDP-CMIP6 dataset, prepared by the Climate Analytics Group and NASA Ames Research Center using the NASA Earth Exchange, and distributed by the NASA Center for Climate Simulation (NCCS).\",\"stac_version\":\"1.0.0\",\"cube:variables\":{\"pr\":{\"type\":\"data\",\"unit\":\"kg m-2 s-1\",\"attrs\":{\"units\":\"kg m-2 s-1\",\"comment\":\"includes both liquid and solid phases\",\"long_name\":\"Precipitation\",\"cell_methods\":\"area: time: mean\",\"cell_measures\":\"area: areacella\",\"standard_name\":\"precipitation_flux\"},\"shape\":[365,600,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Precipitation\"},\"tas\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"near-surface (usually, 2 meter) air temperature; derived from downscaled tasmax & tasmin\",\"long_name\":\"Daily Near-Surface Air Temperature\",\"cell_methods\":\"area: mean time: maximum\",\"cell_measures\":\"area: areacella\",\"standard_name\":\"air_temperature\"},\"shape\":[365,600,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Near-Surface Air Temperature\"},\"hurs\":{\"type\":\"data\",\"unit\":\"%\",\"attrs\":{\"units\":\"%\",\"comment\":\"The relative humidity with respect to liquid water for T> 0 C, and with respect to ice for T<0 C.\",\"long_name\":\"Near-Surface Relative Humidity\",\"cell_methods\":\"area: time: mean\",\"cell_measures\":\"area: areacella\",\"standard_name\":\"relative_humidity\"},\"shape\":[365,600,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Near-Surface Relative Humidity\"},\"huss\":{\"type\":\"data\",\"unit\":\"1\",\"attrs\":{\"units\":\"1\",\"comment\":\"Near-surface (usually, 2 meter) specific humidity.\",\"long_name\":\"Near-Surface Specific Humidity\",\"cell_methods\":\"area: time: mean\",\"cell_measures\":\"area: areacella\",\"standard_name\":\"specific_humidity\"},\"shape\":[365,600,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Near-Surface Specific Humidity\"},\"rlds\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"comment\":\"The surface called 'surface' means the lower boundary of the atmosphere. 'longwave' means longwave radiation. Downwelling radiation is radiation from above. It does not mean 'net downward'. When thought of as being incident on a surface, a radiative flux is sometimes called 'irradiance'. In addition, it is identical with the quantity measured by a cosine-collector light-meter and sometimes called 'vector irradiance'. In accordance with common usage in geophysical disciplines, 'flux' implies per unit area, called 'flux density' in physics.\",\"long_name\":\"Surface Downwelling Longwave Radiation\",\"cell_methods\":\"area: time: mean\",\"cell_measures\":\"area: areacella\",\"standard_name\":\"surface_downwelling_longwave_flux_in_air\"},\"shape\":[365,600,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Surface Downwelling Longwave Radiation\"},\"rsds\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"comment\":\"Surface solar irradiance for UV calculations.\",\"long_name\":\"Surface Downwelling Shortwave Radiation\",\"cell_methods\":\"area: time: mean\",\"cell_measures\":\"area: areacella\",\"standard_name\":\"surface_downwelling_shortwave_flux_in_air\"},\"shape\":[365,600,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Surface Downwelling Shortwave Radiation\"},\"tasmax\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"maximum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: max')\",\"long_name\":\"Daily Maximum Near-Surface Air Temperature\",\"cell_methods\":\"area: mean time: maximum\",\"cell_measures\":\"area: areacella\",\"standard_name\":\"air_temperature\"},\"shape\":[365,600,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"minimum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: min')\",\"long_name\":\"Daily Minimum Near-Surface Air Temperature\",\"cell_methods\":\"area: mean time: minimum\",\"cell_measures\":\"area: areacella\",\"standard_name\":\"air_temperature\"},\"shape\":[365,600,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Minimum Near-Surface Air Temperature\"},\"sfcWind\":{\"type\":\"data\",\"unit\":\"m s-1\",\"attrs\":{\"units\":\"m s-1\",\"comment\":\"near-surface (usually, 10 meters) wind speed.\",\"long_name\":\"Daily-Mean Near-Surface Wind Speed\",\"cell_methods\":\"area: time: mean\",\"cell_measures\":\"area: areacella\",\"standard_name\":\"wind_speed\"},\"shape\":[365,600,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily-Mean Near-Surface Wind Speed\"}},\"msft:container\":\"nex-gddp-cmip6\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[-59.875,89.875],\"description\":\"latitude\",\"reference_system\":4326},\"lon\":{\"axis\":\"x\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[0.125,359.875],\"description\":\"longitude\",\"reference_system\":4326},\"time\":{\"step\":\"P1DT0H0M0S\",\"type\":\"temporal\",\"extent\":[\"1950-01-01T12:00:00Z\",\"2100-12-31T00:00:00Z\"],\"description\":\"time\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"nasagddp\",\"msft:short_description\":[\"Global downscaled climate scenarios derived from the General Circulation Model conducted under CMIP6.\"],\"msft:region\":\"westeurope\"},{\"id\":\"gpm-imerg-hhr\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/gpm-imerg-hhr\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"GPM IMERG\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gpm-imerg-hhr.png\",\"role\":[\"thumbnail\"],\"type\":\"image/png\",\"title\":\"gpm-imerg-hhr thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://imerg/gpm-imerg-hhr.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\"],\"description\":\"Azure Blob File System URI of the gpm-imerg-hhr Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"use_cftime\":true,\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"ai4edataeuwest\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-06-01T00:00:00Z\",\"2021-05-31T23:30:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.5067/GPM/IMERG/3B-HH/06\",\"keywords\":[\"IMERG\",\"GPM\",\"Precipitation\"],\"providers\":[{\"url\":\"https://developmentseed.org/\",\"name\":\"Development Seed\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://gpm.nasa.gov/data/directory\",\"name\":\"NASA\",\"roles\":[\"producer\"]}],\"description\":\"The Integrated Multi-satellitE Retrievals for GPM (IMERG) algorithm combines information from the [GPM satellite constellation](https://gpm.nasa.gov/missions/gpm/constellation) to estimate precipitation over the majority of the Earth's surface. This algorithm is particularly valuable over the majority of the Earth's surface that lacks precipitation-measuring instruments on the ground. Now in the latest Version 06 release of IMERG the algorithm fuses the early precipitation estimates collected during the operation of the TRMM satellite (2000 - 2015) with more recent precipitation estimates collected during operation of the GPM satellite (2014 - present). The longer the record, the more valuable it is, as researchers and application developers will attest. By being able to compare and contrast past and present data, researchers are better informed to make climate and weather models more accurate, better understand normal and extreme rain and snowfall around the world, and strengthen applications for current and future disasters, disease, resource management, energy production and food security.\\n\\nFor more, see the [IMERG homepage](https://gpm.nasa.gov/data/imerg) The [IMERG Technical documentation](https://gpm.nasa.gov/sites/default/files/2020-10/IMERG_doc_201006.pdf) provides more information on the algorithm, input datasets, and output products.\",\"sci:citation\":\"Huffman, G.J., E.F. Stocker, D.T. Bolvin, E.J. Nelkin, Jackson Tan (2019), GPM IMERG Final Precipitation L3 Half Hourly 0.1 degree x 0.1 degree V06, Greenbelt, MD, Goddard Earth Sciences Data and Information Services Center (GES DISC)\",\"stac_version\":\"1.0.0\",\"cube:variables\":{\"lat_bnds\":{\"type\":\"auxiliary\",\"unit\":\"degrees_north\",\"attrs\":{\"Units\":\"degrees_north\",\"units\":\"degrees_north\",\"coordinates\":\"lat latv\",\"DimensionNames\":\"lat,latv\"},\"shape\":[1800,2],\"chunks\":[1800,2],\"dimensions\":[\"lat\",\"latv\"]},\"lon_bnds\":{\"type\":\"auxiliary\",\"unit\":\"degrees_east\",\"attrs\":{\"Units\":\"degrees_east\",\"units\":\"degrees_east\",\"coordinates\":\"lon lonv\",\"DimensionNames\":\"lon,lonv\"},\"shape\":[3600,2],\"chunks\":[3600,2],\"dimensions\":[\"lon\",\"lonv\"]},\"time_bnds\":{\"type\":\"auxiliary\",\"attrs\":{\"Units\":\"seconds since 1970-01-01 00:00:00 UTC\",\"coordinates\":\"time nv\",\"DimensionNames\":\"time,nv\"},\"shape\":[368160,2],\"chunks\":[12,2],\"dimensions\":[\"time\",\"nv\"]},\"randomError\":{\"type\":\"data\",\"unit\":\"mm/hr\",\"attrs\":{\"Units\":\"mm/hr\",\"units\":\"mm/hr\",\"DimensionNames\":\"time,lon,lat\",\"CodeMissingValue\":\"-9999.9\"},\"shape\":[368160,3600,1800],\"chunks\":[12,3600,1800],\"dimensions\":[\"time\",\"lon\",\"lat\"]},\"HQprecipSource\":{\"type\":\"data\",\"attrs\":{\"DimensionNames\":\"time,lon,lat\",\"CodeMissingValue\":\"-9999\"},\"shape\":[368160,3600,1800],\"chunks\":[12,3600,1800],\"dimensions\":[\"time\",\"lon\",\"lat\"]},\"HQprecipitation\":{\"type\":\"data\",\"unit\":\"mm/hr\",\"attrs\":{\"Units\":\"mm/hr\",\"units\":\"mm/hr\",\"DimensionNames\":\"time,lon,lat\",\"CodeMissingValue\":\"-9999.9\"},\"shape\":[368160,3600,1800],\"chunks\":[12,3600,1800],\"dimensions\":[\"time\",\"lon\",\"lat\"]},\"IRprecipitation\":{\"type\":\"data\",\"unit\":\"mm/hr\",\"attrs\":{\"Units\":\"mm/hr\",\"units\":\"mm/hr\",\"DimensionNames\":\"time,lon,lat\",\"CodeMissingValue\":\"-9999.9\"},\"shape\":[368160,3600,1800],\"chunks\":[12,3600,1800],\"dimensions\":[\"time\",\"lon\",\"lat\"]},\"precipitationCal\":{\"type\":\"data\",\"unit\":\"mm/hr\",\"attrs\":{\"Units\":\"mm/hr\",\"units\":\"mm/hr\",\"DimensionNames\":\"time,lon,lat\",\"CodeMissingValue\":\"-9999.9\"},\"shape\":[368160,3600,1800],\"chunks\":[12,3600,1800],\"dimensions\":[\"time\",\"lon\",\"lat\"]},\"HQobservationTime\":{\"type\":\"data\",\"attrs\":{\"Units\":\"minutes\",\"DimensionNames\":\"time,lon,lat\",\"CodeMissingValue\":\"-9999\"},\"shape\":[368160,3600,1800],\"chunks\":[12,3600,1800],\"dimensions\":[\"time\",\"lon\",\"lat\"]},\"precipitationUncal\":{\"type\":\"data\",\"unit\":\"mm/hr\",\"attrs\":{\"Units\":\"mm/hr\",\"units\":\"mm/hr\",\"DimensionNames\":\"time,lon,lat\",\"CodeMissingValue\":\"-9999.9\"},\"shape\":[368160,3600,1800],\"chunks\":[12,3600,1800],\"dimensions\":[\"time\",\"lon\",\"lat\"]},\"IRkalmanFilterWeight\":{\"type\":\"data\",\"attrs\":{\"DimensionNames\":\"time,lon,lat\",\"CodeMissingValue\":\"-9999\"},\"shape\":[368160,3600,1800],\"chunks\":[12,3600,1800],\"dimensions\":[\"time\",\"lon\",\"lat\"]},\"precipitationQualityIndex\":{\"type\":\"data\",\"attrs\":{\"DimensionNames\":\"time,lon,lat\",\"CodeMissingValue\":\"-9999.9\"},\"shape\":[368160,3600,1800],\"chunks\":[12,3600,1800],\"dimensions\":[\"time\",\"lon\",\"lat\"]},\"probabilityLiquidPrecipitation\":{\"type\":\"data\",\"unit\":\"percent\",\"attrs\":{\"Units\":\"percent\",\"units\":\"percent\",\"DimensionNames\":\"time,lon,lat\",\"CodeMissingValue\":\"-9999\"},\"shape\":[368160,3600,1800],\"chunks\":[12,3600,1800],\"dimensions\":[\"time\",\"lon\",\"lat\"]}},\"msft:container\":\"imerg\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"type\":\"spatial\",\"extent\":[-89.94999694824219,89.94999694824219],\"reference_system\":4326},\"lon\":{\"axis\":\"x\",\"type\":\"spatial\",\"extent\":[-179.9499969482422,179.9499969482422],\"reference_system\":4326},\"time\":{\"step\":\"P0DT0H30M0S\",\"type\":\"temporal\",\"extent\":[\"2000-06-01T00:00:00Z\",\"2021-05-31T23:30:00Z\"]}},\"stac_extensions\":[\"https://stac-extensions.github.io/xarray-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"The Integrated Multi-satellitE Retrievals for GPM (IMERG) algorithm combines information from the GPM satellite constellation to estimate precipitation over the majority of the Earth's surface.\",\"msft:region\":\"westeurope\"},{\"id\":\"gnatsgo-rasters\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters\"},{\"rel\":\"about\",\"href\":\"https://www.nrcs.usda.gov/wps/PA_NRCSConsumption/download?cid=nrcs142p2_051847&ext=pdf\",\"type\":\"application/pdf\",\"title\":\"gSSURGO User Guide\",\"description\":\"User guide for gSSURGO\"},{\"rel\":\"about\",\"href\":\"https://www.nrcs.usda.gov/wps/PA_NRCSConsumption/download?cid=nrcseprd1464658&ext=pdf\",\"type\":\"application/pdf\",\"title\":\"gNATSGO Overview Slides\",\"description\":\"Slides giving a high level overview of the gNATSGO dataset\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/publicdomain/zero/1.0/\",\"title\":\"CC0 1.0 Universal Public Domain Dedication\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/gnatsgo-rasters\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"gNATSGO Soil Database - Rasters\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gnatsgo-rasters.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"gNATSGO\"},\"geoparquet-items\":{\"href\":\"abfs://items/gnatsgo-rasters.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-170.8513,-14.3799,-169.4152,-14.1432],[138.0315,5.116,163.1902,10.2773],[144.6126,13.2327,144.9658,13.6572],[-159.7909,18.8994,-154.7815,22.2464],[170.969,6.0723,171.9169,8.71933],[145.0127,14.1086,145.9242,18.8172],[130.8048,2.9268,134.9834,8.0947],[157.3678,49.0546,-117.2864,71.4567],[-67.9506,17.014,-64.3973,19.3206],[-127.8881,22.8782,-65.2748,51.6039]]},\"temporal\":{\"interval\":[[\"2020-07-01T00:00:00Z\",\"2020-07-01T00:00:00Z\"]]}},\"license\":\"CC0-1.0\",\"keywords\":[\"Soils\",\"NATSGO\",\"SSURGO\",\"STATSGO2\",\"RSS\",\"USDA\",\"United States\"],\"providers\":[{\"url\":\"https://www.nrcs.usda.gov/\",\"name\":\"United States Department of Agriculture, Natural Resources Conservation Service\",\"roles\":[\"licensor\",\"producer\",\"processor\",\"host\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"description\":\"This collection contains the raster data for gNATSGO. In order to use the map unit values contained in the `mukey` raster asset, you'll need to join to tables represented as Items in the [gNATSGO Tables](https://planetarycomputer.microsoft.com/dataset/gnatsgo-tables) Collection. Many items have commonly used values encoded in additional raster assets.\\n\\nThe gridded National Soil Survey Geographic Database (gNATSGO) is a USDA-NRCS Soil & Plant Science Division (SPSD) composite database that provides complete coverage of the best available soils information for all areas of the United States and Island Territories. It was created by combining data from the Soil Survey Geographic Database (SSURGO), State Soil Geographic Database (STATSGO2), and Raster Soil Survey Databases (RSS) into a single seamless ESRI file geodatabase.\\n\\nSSURGO is the SPSD flagship soils database that has over 100 years of field-validated detailed soil mapping data. SSURGO contains soils information for more than 90 percent of the United States and island territories, but unmapped land remains. STATSGO2 is a general soil map that has soils data for all of the United States and island territories, but the data is not as detailed as the SSURGO data. The Raster Soil Surveys (RSSs) are the next generation soil survey databases developed using advanced digital soil mapping methods.\\n\\nThe gNATSGO database is composed primarily of SSURGO data, but STATSGO2 data was used to fill in the gaps. The RSSs are newer product with relatively limited spatial extent. These RSSs were merged into the gNATSGO after combining the SSURGO and STATSGO2 data. The extent of RSS is expected to increase in the coming years.\\n\\nSee the [official documentation](https://www.nrcs.usda.gov/wps/portal/nrcs/detail/soils/survey/geo/?cid=nrcseprd1464625)\",\"item_assets\":{\"mukey\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"mukey\",\"description\":\"Map unit key is the unique identifier of a record in the Mapunit table. Use this column to join the Component table to the Map Unit table and the Valu1 table to the MapUnitRaster_10m raster map layer to map valu1 themes.\"},\"aws0_5\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws0_5\",\"description\":\"Available water storage estimate (AWS) in a standard zone 1 (0-5 cm depth), expressed in mm. The volume of plant available water that the soil can store in this layer based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"soc0_5\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc0_5\",\"description\":\"Soil organic carbon stock estimate (SOC) in standard layer 1 or standard zone 1 (0-5 cm depth). The concentration of organic carbon present in the soil expressed in grams C per square meter to a depth of 5 cm. NULL values are presented where data are incomplete or not available.\"},\"tk0_5a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_5a\",\"description\":\"Thickness of soil components used in standard layer 1 or standard zone 1 (0-5 cm) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk0_5s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_5s\",\"description\":\"Thickness of soil components used in standard layer 1 or standard zone 1 (0-5 cm) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"},\"aws0_20\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws0_20\",\"description\":\"Available water storage estimate (AWS) in standard zone 2 (0-20 cm depth), expressed in mm. The volume of plant available water that the soil can store in this zone based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"aws0_30\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws0_30\",\"description\":\"Available water storage estimate (AWS) in standard zone 3 (0-30 cm depth), expressed in mm. The volume of plant available water that the soil can store in this zone based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"aws5_20\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws5_20\",\"description\":\"Available water storage estimate (AWS) in standard layer 2 (5-20 cm depth), expressed in mm. The volume of plant available water that the soil can store in this layer based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"soc0_20\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc0_20\",\"description\":\"Soil organic carbon stock estimate (SOC) in standard zone 2 (0-20 cm depth). The concentration of organic carbon present in the soil expressed in grams C per square meter to a depth of 20 cm. NULL values are presented where data are incomplete or not available.\"},\"soc0_30\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc0_30\",\"description\":\"Soil organic carbon stock estimate (SOC) in standard zone 3 (0-30 cm depth). The concentration of organic carbon present in the soil expressed in grams C per square meter to a depth of 30 cm. NULL values are presented where data are incomplete or not available.\"},\"soc5_20\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc5_20\",\"description\":\"Soil organic carbon stock estimate (SOC) in standard layer 2 (5-20 cm depth). The concentration of organic carbon present in the soil expressed in grams C per square meter for the 5-20 cm layer. NULL values are presented where data are incomplete or not available.\"},\"tk0_20a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_20a\",\"description\":\"Thickness of soil components used in standard zone 2 (0-20 cm) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk0_20s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_20s\",\"description\":\"Thickness of soil components used in standard zone 2 (0-20 cm) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"},\"tk0_30a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_30a\",\"description\":\"Thickness of soil components used in standard zone 3 (0-30 cm) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk0_30s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_30s\",\"description\":\"Thickness of soil components used in standard zone 3 (0-30 cm) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"},\"tk5_20a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk5_20a\",\"description\":\"Thickness of soil components used in standard layer 2 (5-20 cm) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk5_20s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk5_20s\",\"description\":\"Thickness of soil components used in standard layer 2 (5-20 cm) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"},\"aws0_100\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws0_100\",\"description\":\"Available water storage estimate (AWS) in standard zone 4 (0-100 cm depth), expressed in mm. The volume of plant available water that the soil can store in this zone based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"aws0_150\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws0_150\",\"description\":\"Available water storage estimate (AWS) in standard zone 5 (0-150 cm depth), expressed in mm. The volume of plant available water that the soil can store in this zone based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"aws0_999\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws0_999\",\"description\":\"Available water storage estimate (AWS) in total soil profile (0 cm to the reported depth of the soil profile), expressed in mm. The volume of plant available water that the soil can store in this layer based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"aws20_50\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws20_50\",\"description\":\"Available water storage estimate (AWS) in standard layer 3 (20-50 cm depth), expressed in mm. The volume of plant available water that the soil can store in this layer based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"droughty\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"droughty\",\"description\":\"zone for commodity crops that is less than or equal to 6 inches (152 mm) expressed as \\\"1\\\" for a drought vulnerable soil landscape map unit or \\\"0\\\" for a non-droughty soil landscape map unit or NULL for miscellaneous areas (includes water bodies) or where data were not available. It is computed as a weighted average for major earthy components. Earthy components are those soil series or higher level taxa components that can support crop growth (Dobos et al., 2012). Major components are those soil components where the majorcompflag = 'Yes'\"},\"nccpi3sg\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"nccpi3sg\",\"description\":\"National Commodity Crop Productivity Index for Small Grains (weighted average) for major earthy components. Values range from .01 (low productivity) to .99 (high productivity). Earthy components are those soil series or higher level taxa components that can support crop growth (Dobos et al., 2012). Major components are those soil components where the majorcompflag = 'Yes' (SSURGO component table). NULL values are presented where data are incomplete or not available.\"},\"soc0_100\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc0_100\",\"description\":\"Soil organic carbon stock estimate (SOC) in standard zone 4 (0-100 cm depth). The concentration of organic carbon present in the soil expressed in grams C per square meter to a depth of 100 cm. NULL values are presented where data are incomplete or not available.\"},\"soc0_150\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc0_150\",\"description\":\"Soil organic carbon stock estimate (SOC) in standard zone 5 (0-150 cm depth). The concentration of organic carbon present in the soil expressed in grams C per square meter to a depth of 150 cm. NULL values are presented where data are incomplete or not available.\"},\"soc0_999\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc0_999\",\"description\":\"Soil organic carbon stock estimate (SOC) in total soil profile (0 cm to the reported depth of the soil profile). The concentration of organic carbon present in the soil expressed in grams C per square meter for the total reported soil profile depth. NULL values are presented where data are incomplete or not available.\"},\"soc20_50\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc20_50\",\"description\":\"Soil organic carbon stock estimate (SOC) in standard layer 3 (20-50 cm depth). The concentration of organic carbon present in the soil expressed in grams C per square meter for the 20-50 cm layer. NULL values are presented where data are incomplete or not available.\"},\"tk0_100a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_100a\",\"description\":\"Thickness of soil components used in standard zone 4 (0-100 cm) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk0_100s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_100s\",\"description\":\"Thickness of soil components used in standard zone 4 (0-100 cm) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"},\"tk0_150a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_150a\",\"description\":\"Thickness of soil components used in standard zone 5 (0-150 cm) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk0_150s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_150s\",\"description\":\"Thickness of soil components used in standard zone 5 (0-150 cm) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"},\"tk0_999a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_999a\",\"description\":\"Thickness of soil components used in total soil profile (0 cm to the reported depth of the soil profile) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk0_999s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk0_999s\",\"description\":\"Thickness of soil components used in total soil profile (0 cm to the reported depth of the soil profile) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"},\"tk20_50a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk20_50a\",\"description\":\"Thickness of soil components used in standard layer 3 (20-50 cm) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk20_50s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk20_50s\",\"description\":\"Thickness of soil components used in standard layer 3 (20-50 cm) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"},\"aws50_100\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws50_100\",\"description\":\"Available water storage estimate (AWS) in standard layer 3 (50-100 cm depth), expressed in mm. The volume of plant available water that the soil can store in this layer based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"musumcpct\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"musumcpct\",\"description\":\"The sum of the comppct_r (SSURGO component table) values for all listed components in the map unit. Useful metadata information. NULL values are presented where data are incomplete or not available.\"},\"nccpi3all\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"nccpi3all\",\"description\":\"National Commodity Crop Productivity Index that has the highest value among Corn and Soybeans, Small Grains, or Cotton (weighted average) for major earthy components. Values range from .01 (low productivity) to .99 (high productivity). Earthy components are those soil series or higher level taxa components that can support crop growth (Dobos et al., 2012). Major components are those soil components where the majorcompflag = 'Yes' (SSURGO component table). NULL values are presented where data are incomplete or not available.\"},\"nccpi3cot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"nccpi3cot\",\"description\":\"National Commodity Crop Productivity Index for Cotton (weighted average) for major earthy components. Values range from .01 (low productivity) to .99 (high productivity). Earthy components are those soil series or higher level taxa components that can support crop growth (Dobos et al., 2012). Major components are those soil components where the majorcompflag = 'Yes' (SSURGO component table). NULL values are presented where data are incomplete or not available.\"},\"nccpi3soy\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"nccpi3soy\",\"description\":\"National Commodity Crop Productivity Index for Soybeans (weighted average) for major earthy components. Values range from .01 (low productivity) to .99 (high productivity). Earthy components are those soil series or higher level taxa components that can support crop growth (Dobos et al., 2012). Major components are those soil components where the majorcompflag = 'Yes' (SSURGO component table). NULL values are presented where data are incomplete or not available.\"},\"pwsl1pomu\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"pwsl1pomu\",\"description\":\"Potential Wetland Soil Landscapes (PWSL) is expressed as the percentage of the map unit that meets the PWSL criteria. The hydric rating (soil component variable \u201Chydricrating\u201D) is an indicator of wet soils. For version 1 (pwsl1), those soil components that meet the following criteria are tagged as PWSL and their comppct_r values are summed for each map unit. Soil components with hydricrating = 'YES' are considered PWSL. Soil components with hydricrating = \u201CNO\u201D are not PWSL. Soil components with hydricrating = 'UNRANKED' are tested using other attributes, and will be considered PWSL if any of the following conditions are met: drainagecl = 'Poorly drained' or 'Very poorly drained' or the localphase or the otherph data fields contain any of the phrases \\\"drained\\\" or \\\"undrained\\\" or \\\"channeled\\\" or \\\"protected\\\" or \\\"ponded\\\" or \\\"flooded\\\". If these criteria do not determine the PWSL for a component and hydricrating = 'UNRANKED', then the map unit will be classified as PWSL if the map unit name contains any of the phrases \\\"drained\\\" or \\\"undrained\\\" or \\\"channeled\\\" or \\\"protected\\\" or \\\"ponded\\\" or \\\"flooded\\\". For version 1 (pwsl1), waterbodies are identified as \\\"999\\\" when map unit names match a list of terms that identify water or intermittent water or map units have a sum of the comppct_r for \\\"Water\\\" that is 80% or greater. NULL values are presented where data are incomplete or not available.\"},\"rootznaws\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"rootznaws\",\"description\":\"Root zone (commodity crop) available water storage estimate (RZAWS) , expressed in mm, is the volume of plant available water that the soil can store within the root zone based on all map unit earthy major components (weighted average). Earthy components are those soil series or higher level taxa components that can support crop growth (Dobos et al., 2012). Major components are those soil components where the majorcompflag = 'Yes' (SSURGO component table). NULL values are presented where data are incomplete or not available.\"},\"rootznemc\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"rootznemc\",\"description\":\"Root zone depth is the depth within the soil profile that commodity crop (cc) roots can effectively extract water and nutrients for growth. Root zone depth influences soil productivity significantly. Soil component horizon criteria for root-limiting depth include: presence of hard bedrock, soft bedrock, a fragipan, a duripan, sulfuric material, a dense layer, a layer having a pH of less than 3.5, or a layer having an electrical conductivity of more than 12 within the component soil profile. If no root-restricting zone is identified, a depth of 150 cm is used to approximate the root zone depth (Dobos et al., 2012). Root zone depth is computed for all map unit major earthy components (weighted average). Earthy components are those soil series or higher level taxa components that can support crop growth (Dobos et al., 2012). Major components are those soil components where the majorcompflag = 'Yes' (SSURGO component table). NULL values are presented where data are incomplete or not available.\"},\"soc50_100\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc50_100\",\"description\":\"Soil organic carbon stock estimate (SOC) in standard layer 4 (50-100 cm depth). The concentration of organic carbon present in the soil expressed in grams C per square meter for the 50-100 cm layer. NULL values are presented where data are incomplete or not available.\"},\"tk50_100a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk50_100a\",\"description\":\"Thickness of soil components used in standard layer 4 (50-100 cm) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk50_100s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk50_100s\",\"description\":\"Thickness of soil components used in standard layer 4 (50-100 cm) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"},\"aws100_150\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws100_150\",\"description\":\"Available water storage estimate (AWS) in standard layer 5 (100-150 cm depth), expressed in mm. The volume of plant available water that the soil can store in this layer based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"aws150_999\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"aws150_999\",\"description\":\"Available water storage estimate (AWS) in standard layer 6 (150 cm to the reported depth of the soil profile), expressed in mm. The volume of plant available water that the soil can store in this layer based on all map unit components (weighted average). NULL values are presented where data are incomplete or not available.\"},\"musumcpcta\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"musumcpcta\",\"description\":\"The sum of the comppct_r (SSURGO component table) values used in the available water storage calculation for the map unit. Useful metadata information. NULL values are presented where data are incomplete or not available.\"},\"musumcpcts\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"musumcpcts\",\"description\":\"The sum of the comppct_r (SSURGO component table) values used in the soil organic carbon calculation for the map unit. Useful metadata information. NULL values are presented where data are incomplete or not available.\"},\"nccpi3corn\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"nccpi3corn\",\"description\":\"National Commodity Crop Productivity Index for Corn (weighted average) for major earthy components. Values range from .01 (low productivity) to .99 (high productivity). Earthy components are those soil series or higher level taxa components that can support crop growth (Dobos et al., 2012). Major components are those soil components where the majorcompflag = 'Yes' (SSURGO component table). NULL values are presented where data are incomplete or not available.\"},\"pctearthmc\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"pctearthmc\",\"description\":\"The National Commodity Crop Productivity Index map unit percent earthy is the map unit summed comppct_r for major earthy components. Earthy components are those soil series or higher level taxa components that can support crop growth (Dobos et al., 2012). Major components are those soil components where the majorcompflag = 'Yes' (SSURGO component table). Useful metadata information. NULL values are presented where data are incomplete or not available.\"},\"soc100_150\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc100_150\",\"description\":\"Soil organic carbon stock estimate (SOC) in standard layer 5 (100-150 cm depth). The concentration of organic carbon present in the soil expressed in grams C per square meter for the 100-150 cm layer. NULL values are presented where data are incomplete or not available.\"},\"soc150_999\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"soc150_999\",\"description\":\"Soil organic carbon stock estimate (SOC) in standard layer 6 (150 cm to the reported depth of the soil profile). The concentration of organic carbon present in the soil expressed in grams C per square meter for the 150 cm and greater depth layer. NULL values are presented where data are incomplete or not available.\"},\"tk100_150a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk100_150a\",\"description\":\"Thickness of soil components used in standard layer 5 (100-150 cm) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk100_150s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk100_150s\",\"description\":\"Thickness of soil components used in standard layer 5 (100-150 cm) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"},\"tk150_999a\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk150_999a\",\"description\":\"Thickness of soil components used in standard layer 6 (150 cm to the reported depth of the soil profile) expressed in cm (weighted average) for the available water storage calculation. NULL values are presented where data are incomplete or not available.\"},\"tk150_999s\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"tk150_999s\",\"description\":\"Thickness of soil components used in standard layer 6 (150 cm to the reported depth of the soil profile) expressed in cm (weighted average) for the Soil Organic Carbon calculation. NULL values are presented where data are incomplete or not available.\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"gnatsgo\",\"msft:container\":\"gnatsgo-stac\",\"stac_extensions\":[\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"soils\",\"msft:short_description\":\"Raster data for the gridded National Soil Survey Geographic Database (gNATSGO), a USDA-NRCS Soil & Plant Science Division (SPSD) composite database that provides complete coverage of the best available soils information for all areas of the United States and Island Territories.\",\"msft:region\":\"westeurope\"},{\"id\":\"3dep-lidar-hag\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/3d-elevation-program/about-3dep-products-services\",\"title\":\"About 3DEP Products & Services\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-hag\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS 3DEP Lidar Height above Ground\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/hag-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"},\"geoparquet-items\":{\"href\":\"abfs://items/3dep-lidar-hag.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-166.8546920006028,17.655357747708283,-64.56116757979399,71.39330810146807],[144.60180842809473,13.21774453924126,146.08202179248926,18.18369664008955]]},\"temporal\":{\"interval\":[[\"2012-01-01T00:00:00Z\",\"2022-01-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USGS\",\"3DEP\",\"COG\",\"Elevation\"],\"providers\":[{\"name\":\"Landrush\",\"roles\":[\"processor\",\"producer\"]},{\"url\":\"https://www.usgs.gov/core-science-systems/ngp/3dep/\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[2.0]},\"description\":\"This COG type is generated using the Z dimension of the [COPC data](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc) data and removes noise, water, and using [`pdal.filters.smrf`](https://pdal.io/stages/filters.smrf.html#filters-smrf) followed by [pdal.filters.hag_nn](https://pdal.io/stages/filters.hag_nn.html#filters-hag-nn).\\n\\nThe Height Above Ground Nearest Neighbor filter takes as input a point cloud with Classification set to 2 for ground points. It creates a new dimension, HeightAboveGround, that contains the normalized height values.\\n\\nGround points may be generated with [`pdal.filters.pmf`](https://pdal.io/stages/filters.pmf.html#filters-pmf) or [`pdal.filters.smrf`](https://pdal.io/stages/filters.smrf.html#filters-smrf), but you can use any method you choose, as long as the ground returns are marked.\\n\\nNormalized heights are a commonly used attribute of point cloud data. This can also be referred to as height above ground (HAG) or above ground level (AGL) heights. In the end, it is simply a measure of a point's relative height as opposed to its raw elevation value.\\n\\nThe filter finds the number of ground points nearest to the non-ground point under consideration. It calculates an average ground height weighted by the distance of each ground point from the non-ground point. The HeightAboveGround is the difference between the Z value of the non-ground point and the interpolated ground height.\\n\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"COG data\",\"raster:bands\":[{\"name\":\"HeightAboveGround\",\"unit\":\"metre\",\"sampling\":\"point\",\"data_type\":\"float32\",\"description\":\"Raster for Height Above Ground (HAG)\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"3dep-lidar\",\"msft:container\":\"usgs-3dep-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json#\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"usgslidareuwest\",\"msft:short_description\":\"3DEP Lidar collection for the Height Above Ground (HAG or Elevation) Cloud Optimized Geotiffs (COGs). All USGS HAG COG STAC items will be associated with this STAC collection.\",\"msft:region\":\"westeurope\"},{\"id\":\"io-lulc-annual-v02\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02\"},{\"rel\":\"related\",\"href\":\"https://livingatlas.arcgis.com/landcover/\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/licenses/by/4.0/\",\"type\":\"text/html\",\"title\":\"CC BY 4.0\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/io-lulc-annual-v02\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"10m Annual Land Use Land Cover (9-class) V2\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/io-lulc-annual-v02.png\",\"title\":\"10m Annual Land Use Land Cover (9-class)\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/io-lulc-annual-v02.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2017-01-01T00:00:00Z\",\"2024-01-01T00:00:00Z\"]]}},\"license\":\"CC-BY-4.0\",\"keywords\":[\"Global\",\"Land Cover\",\"Land Use\",\"Sentinel\"],\"providers\":[{\"url\":\"https://www.esri.com/\",\"name\":\"Esri\",\"roles\":[\"licensor\"]},{\"url\":\"https://www.impactobservatory.com/\",\"name\":\"Impact Observatory\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"raster:bands\":[{\"nodata\":0,\"spatial_resolution\":10}]},\"description\":\"Time series of annual global maps of land use and land cover (LULC). It currently has data from 2017-2023. The maps are derived from ESA Sentinel-2 imagery at 10m resolution. Each map is a composite of LULC predictions for 9 classes throughout the year in order to generate a representative snapshot of each year.\\n\\nThis dataset, produced by [Impact Observatory](http://impactobservatory.com/), Microsoft, and Esri, displays a global map of land use and land cover (LULC) derived from ESA Sentinel-2 imagery at 10 meter resolution for the years 2017 - 2023. Each map is a composite of LULC predictions for 9 classes throughout the year in order to generate a representative snapshot of each year. This dataset was generated by Impact Observatory, which used billions of human-labeled pixels (curated by the National Geographic Society) to train a deep learning model for land classification. Each global map was produced by applying this model to the Sentinel-2 annual scene collections from the Mircosoft Planetary Computer. Each of the maps has an assessed average accuracy of over 75%.\\n\\nThese maps have been improved from Impact Observatory\u2019s [previous release](https://planetarycomputer.microsoft.com/dataset/io-lulc-9-class) and provide a relative reduction in the amount of anomalous change between classes, particularly between \u201CBare\u201D and any of the vegetative classes \u201CTrees,\u201D \u201CCrops,\u201D \u201CFlooded Vegetation,\u201D and \u201CRangeland\u201D. This updated time series of annual global maps is also re-aligned to match the ESA UTM tiling grid for Sentinel-2 imagery.\\n\\nAll years are available under a Creative Commons BY-4.0.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Global land cover data\",\"file:values\":[{\"values\":[0],\"summary\":\"No Data\"},{\"values\":[1],\"summary\":\"Water\"},{\"values\":[2],\"summary\":\"Trees\"},{\"values\":[4],\"summary\":\"Flooded vegetation\"},{\"values\":[5],\"summary\":\"Crops\"},{\"values\":[7],\"summary\":\"Built area\"},{\"values\":[8],\"summary\":\"Bare ground\"},{\"values\":[9],\"summary\":\"Snow/ice\"},{\"values\":[10],\"summary\":\"Clouds\"},{\"values\":[11],\"summary\":\"Rangeland\"}]}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"io-land-cover\",\"msft:container\":\"io-lulc\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/label/v1.0.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Global land cover information with 9 classes for 2017-2023 at 10m resolution\"},{\"id\":\"goes-cmi\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi\"},{\"rel\":\"license\",\"href\":\"https://www.nesdisia.noaa.gov/policy.html\",\"title\":\"Public Domain\"},{\"rel\":\"preview\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/collection/map?collection=goes-cmi\",\"title\":\"Map of collection mosaic\",\"type\":\"text/html\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/goes-cmi\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"GOES-R Cloud & Moisture Imagery\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/goes-cmi-thumb.png\",\"title\":\"GOES CMIP\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/goes-cmi.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"W-MON\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}},\"tilejson\":{\"title\":\"Mosaic TileJSON with default rendering\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/collection/tilejson.json?collection=goes-cmi&expression=C02_2km_wm%3B0.45%2AC02_2km_wm%2B0.1%2AC03_2km_wm%2B0.45%2AC01_2km_wm%3BC01_2km_wm&nodata=-1&rescale=1%2C1000&color_formula=Gamma+RGB+2.5+Saturation+1.4+Sigmoidal+RGB+2+0.7&asset_as_band=True&resampling=bilinear&format=png\",\"type\":\"application/json\",\"roles\":[\"tiles\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-81.33,6.3,81.33],[141.7,-81.33,180.0,81.33]]},\"temporal\":{\"interval\":[[\"2017-02-28T00:16:52Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"GOES\",\"NOAA\",\"NASA\",\"Satellite\",\"Cloud\",\"Moisture\"],\"providers\":[{\"url\":\"https://www.nasa.gov/content/goes\",\"name\":\"NASA\",\"roles\":[\"producer\"]},{\"url\":\"https://www.goes-r.gov/\",\"name\":\"NOAA\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"GOES-16\",\"GOES-17\",\"GOES-18\",\"GOES-19\"],\"goes:mode\":[\"3\",\"4\",\"6\"],\"instruments\":[\"ABI\"],\"goes:image-type\":[\"FULL DISK\",\"CONUS\",\"MESOSCALE\"],\"goes:processing-level\":[\"L2\"]},\"description\":\"The GOES-R Advanced Baseline Imager (ABI) L2 Cloud and Moisture Imagery product provides 16 reflective and emissive bands at high temporal cadence over the Western Hemisphere.\\n\\nThe GOES-R series is the latest in the Geostationary Operational Environmental Satellites (GOES) program, which has been operated in a collaborative effort by NOAA and NASA since 1975. The operational GOES-R Satellites, GOES-16, GOES-17, and GOES-18, capture 16-band imagery from geostationary orbits over the Western Hemisphere via the Advance Baseline Imager (ABI) radiometer. The ABI captures 2 visible, 4 near-infrared, and 10 infrared channels at resolutions between 0.5km and 2km.\\n\\n### Geographic coverage\\n\\nThe ABI captures three levels of coverage, each at a different temporal cadence depending on the modes described below. The geographic coverage for each image is described by the `goes:image-type` STAC Item property.\\n\\n- _FULL DISK_: a circular image depicting nearly full coverage of the Western Hemisphere.\\n- _CONUS_: a 3,000 (lat) by 5,000 (lon) km rectangular image depicting the Continental U.S. (GOES-16) or the Pacific Ocean including Hawaii (GOES-17).\\n- _MESOSCALE_: a 1,000 by 1,000 km rectangular image. GOES-16 and 17 both alternate between two different mesoscale geographic regions.\\n\\n### Modes\\n\\nThere are three standard scanning modes for the ABI instrument: Mode 3, Mode 4, and Mode 6.\\n\\n- Mode _3_ consists of one observation of the full disk scene of the Earth, three observations of the continental United States (CONUS), and thirty observations for each of two distinct mesoscale views every fifteen minutes.\\n- Mode _4_ consists of the observation of the full disk scene every five minutes.\\n- Mode _6_ consists of one observation of the full disk scene of the Earth, two observations of the continental United States (CONUS), and twenty observations for each of two distinct mesoscale views every ten minutes.\\n\\nThe mode that each image was captured with is described by the `goes:mode` STAC Item property.\\n\\nSee this [ABI Scan Mode Demonstration](https://youtu.be/_c5H6R-M0s8) video for an idea of how the ABI scans multiple geographic regions over time.\\n\\n### Cloud and Moisture Imagery\\n\\nThe Cloud and Moisture Imagery product contains one or more images with pixel values identifying \\\"brightness values\\\" that are scaled to support visual analysis. Cloud and Moisture Imagery product (CMIP) files are generated for each of the sixteen ABI reflective and emissive bands. In addition, there is a multi-band product file that includes the imagery at all bands (MCMIP).\\n\\nThe Planetary Computer STAC Collection `goes-cmi` captures both the CMIP and MCMIP product files into individual STAC Items for each observation from a GOES-R satellite. It contains the original CMIP and MCMIP NetCDF files, as well as cloud-optimized GeoTIFF (COG) exports of the data from each MCMIP band (2km); the full-resolution CMIP band for bands 1, 2, 3, and 5; and a Web Mercator COG of bands 1, 2 and 3, which are useful for rendering.\\n\\nThis product is not in a standard coordinate reference system (CRS), which can cause issues with some tooling that does not handle non-standard large geographic regions.\\n\\n### For more information\\n- [Beginner\u2019s Guide to GOES-R Series Data](https://www.goes-r.gov/downloads/resources/documents/Beginners_Guide_to_GOES-R_Series_Data.pdf)\\n- [GOES-R Series Product Definition and Users\u2019 Guide: Volume 5 (Level 2A+ Products)](https://www.goes-r.gov/products/docs/PUG-L2+-vol5.pdf) ([Spanish verison](https://github.com/NOAA-Big-Data-Program/bdp-data-docs/raw/main/GOES/QuickGuides/Spanish/Guia%20introductoria%20para%20datos%20de%20la%20serie%20GOES-R%20V1.1%20FINAL2%20-%20Copy.pdf))\\n\\n\",\"item_assets\":{\"C01_1km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 01 (full resolution)\",\"eo:bands\":[{\"name\":\"ABI Band 1\",\"common_name\":\"blue\",\"description\":\"Daytime aerosol over land, coastal water mapping\",\"center_wavelength\":0.47}]},\"C01_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 01\",\"eo:bands\":[{\"name\":\"ABI Band 1\",\"common_name\":\"blue\",\"description\":\"Daytime aerosol over land, coastal water mapping\",\"center_wavelength\":0.47}]},\"C02_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 02\",\"eo:bands\":[{\"name\":\"ABI Band 2\",\"common_name\":\"red\",\"description\":\"Daytime clouds, fog, insolation, winds\",\"center_wavelength\":0.64}]},\"C03_1km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 03 (full resolution)\",\"eo:bands\":[{\"name\":\"ABI Band 3\",\"common_name\":\"nir09\",\"description\":\"Daytime vegetation, burn scar, aerosol over water, winds\",\"center_wavelength\":0.87}]},\"C03_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 03\",\"eo:bands\":[{\"name\":\"ABI Band 3\",\"common_name\":\"nir09\",\"description\":\"Daytime vegetation, burn scar, aerosol over water, winds\",\"center_wavelength\":0.87}]},\"C04_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 04\",\"eo:bands\":[{\"name\":\"ABI Band 4\",\"common_name\":\"cirrus\",\"description\":\"Daytime cirrus cloud\",\"center_wavelength\":1.38}]},\"C05_1km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 05 (full resolution)\",\"eo:bands\":[{\"name\":\"ABI Band 5\",\"common_name\":\"swir16\",\"description\":\"Daytime cloud-top phase and particle size, snow\",\"center_wavelength\":1.61}]},\"C05_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 05\",\"eo:bands\":[{\"name\":\"ABI Band 5\",\"common_name\":\"swir16\",\"description\":\"Daytime cloud-top phase and particle size, snow\",\"center_wavelength\":1.61}]},\"C06_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 06\",\"eo:bands\":[{\"name\":\"ABI Band 6\",\"common_name\":\"swir22\",\"description\":\"Daytime land, cloud properties, particle size, vegetation, snow\",\"center_wavelength\":2.25}]},\"C07_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 07\",\"eo:bands\":[{\"name\":\"ABI Band 7\",\"description\":\"Surface and cloud, fog at night, fire, winds\",\"center_wavelength\":3.89}]},\"C08_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 08\",\"eo:bands\":[{\"name\":\"ABI Band 8\",\"description\":\"High-level atmospheric water vapor, winds, rainfall\",\"center_wavelength\":6.17}]},\"C09_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 09\",\"eo:bands\":[{\"name\":\"ABI Band 9\",\"description\":\"Midlevel atmospheric water vapor, winds, rainfall\",\"center_wavelength\":6.93}]},\"C10_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 10\",\"eo:bands\":[{\"name\":\"ABI Band 10\",\"description\":\"Lower-level water vapor, winds, and silicon dioxide\",\"center_wavelength\":7.34}]},\"C11_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 11\",\"eo:bands\":[{\"name\":\"ABI Band 11\",\"description\":\"Total water for stability, cloud phase, dust, silicon dioxide, rainfall\",\"center_wavelength\":8.44}]},\"C12_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 12\",\"eo:bands\":[{\"name\":\"ABI Band 12\",\"description\":\"Total ozone, turbulence, winds\",\"center_wavelength\":9.61}]},\"C13_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 13\",\"eo:bands\":[{\"name\":\"ABI Band 13\",\"description\":\"Surface and clouds\",\"center_wavelength\":10.33}]},\"C14_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 14\",\"eo:bands\":[{\"name\":\"ABI Band 14\",\"description\":\"Imagery, sea surface temperature, clouds, rainfall\",\"center_wavelength\":11.19}]},\"C15_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 15\",\"eo:bands\":[{\"name\":\"ABI Band 15\",\"description\":\"Total water, volcanic ash, sea surface temperature\",\"center_wavelength\":12.27}]},\"C16_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 16\",\"eo:bands\":[{\"name\":\"ABI Band 16\",\"description\":\"Air temperature, cloud heights\",\"center_wavelength\":13.27}]},\"MCMIP-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery - Multiband\",\"eo:bands\":[{\"name\":\"ABI Band 1\",\"common_name\":\"blue\",\"description\":\"Daytime aerosol over land, coastal water mapping\",\"center_wavelength\":0.47},{\"name\":\"ABI Band 2\",\"common_name\":\"red\",\"description\":\"Daytime clouds, fog, insolation, winds\",\"center_wavelength\":0.64},{\"name\":\"ABI Band 3\",\"common_name\":\"nir09\",\"description\":\"Daytime vegetation, burn scar, aerosol over water, winds\",\"center_wavelength\":0.87},{\"name\":\"ABI Band 4\",\"common_name\":\"cirrus\",\"description\":\"Daytime cirrus cloud\",\"center_wavelength\":1.38},{\"name\":\"ABI Band 5\",\"common_name\":\"swir16\",\"description\":\"Daytime cloud-top phase and particle size, snow\",\"center_wavelength\":1.61},{\"name\":\"ABI Band 6\",\"common_name\":\"swir22\",\"description\":\"Daytime land, cloud properties, particle size, vegetation, snow\",\"center_wavelength\":2.25},{\"name\":\"ABI Band 7\",\"description\":\"Surface and cloud, fog at night, fire, winds\",\"center_wavelength\":3.89},{\"name\":\"ABI Band 8\",\"description\":\"High-level atmospheric water vapor, winds, rainfall\",\"center_wavelength\":6.17},{\"name\":\"ABI Band 9\",\"description\":\"Midlevel atmospheric water vapor, winds, rainfall\",\"center_wavelength\":6.93},{\"name\":\"ABI Band 10\",\"description\":\"Lower-level water vapor, winds, and silicon dioxide\",\"center_wavelength\":7.34},{\"name\":\"ABI Band 11\",\"description\":\"Total water for stability, cloud phase, dust, silicon dioxide, rainfall\",\"center_wavelength\":8.44},{\"name\":\"ABI Band 12\",\"description\":\"Total ozone, turbulence, winds\",\"center_wavelength\":9.61},{\"name\":\"ABI Band 13\",\"description\":\"Surface and clouds\",\"center_wavelength\":10.33},{\"name\":\"ABI Band 14\",\"description\":\"Imagery, sea surface temperature, clouds, rainfall\",\"center_wavelength\":11.19},{\"name\":\"ABI Band 15\",\"description\":\"Total water, volcanic ash, sea surface temperature\",\"center_wavelength\":12.27},{\"name\":\"ABI Band 16\",\"description\":\"Air temperature, cloud heights\",\"center_wavelength\":13.27}],\"description\":\"The Cloud and Moisture Imagery product contains one or more Earth-view images with pixel values identifying 'brightness values' that are scaled to support visual analysis.\"},\"C02_0.5km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 02 (full resolution)\",\"eo:bands\":[{\"name\":\"ABI Band 2\",\"common_name\":\"red\",\"description\":\"Daytime clouds, fog, insolation, winds\",\"center_wavelength\":0.64}]},\"C01_2km_wm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 01, Web Mercator\",\"eo:bands\":[{\"name\":\"ABI Band 1\",\"common_name\":\"blue\",\"description\":\"Daytime aerosol over land, coastal water mapping\",\"center_wavelength\":0.47}]},\"C02_2km_wm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 02, Web Mercator\",\"eo:bands\":[{\"name\":\"ABI Band 2\",\"common_name\":\"red\",\"description\":\"Daytime clouds, fog, insolation, winds\",\"center_wavelength\":0.64}]},\"C03_2km_wm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 03, Web Mercator\",\"eo:bands\":[{\"name\":\"ABI Band 3\",\"common_name\":\"nir09\",\"description\":\"Daytime vegetation, burn scar, aerosol over water, winds\",\"center_wavelength\":0.87}]},\"C01_DQF_1km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"quality-mask\"],\"title\":\"Cloud and Moisture Imagery data quality flags - Band 01 (full resolution)\"},\"C01_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 01\"},\"C02_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 02\"},\"C03_DQF_1km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"quality-mask\"],\"title\":\"Cloud and Moisture Imagery data quality flags - Band 03 (full resolution)\"},\"C03_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 03\"},\"C04_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 04\"},\"C05_DQF_1km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"quality-mask\"],\"title\":\"Cloud and Moisture Imagery data quality flags - Band 05 (full resolution)\"},\"C05_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 05\"},\"C06_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 06\"},\"C07_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 07\"},\"C08_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 08\"},\"C09_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 09\"},\"C10_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 10\"},\"C11_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 11\"},\"C12_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 12\"},\"C13_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 13\"},\"C14_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 14\"},\"C15_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 15\"},\"C16_DQF_2km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud and Moisture Imagery data quality flags - Band 16\"},\"CMIP_C01-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 01\",\"eo:bands\":[{\"name\":\"ABI Band 1\",\"common_name\":\"blue\",\"description\":\"Daytime aerosol over land, coastal water mapping\",\"center_wavelength\":0.47}]},\"CMIP_C02-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 02\",\"eo:bands\":[{\"name\":\"ABI Band 2\",\"common_name\":\"red\",\"description\":\"Daytime clouds, fog, insolation, winds\",\"center_wavelength\":0.64}]},\"CMIP_C03-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 03\",\"eo:bands\":[{\"name\":\"ABI Band 3\",\"common_name\":\"nir09\",\"description\":\"Daytime vegetation, burn scar, aerosol over water, winds\",\"center_wavelength\":0.87}]},\"CMIP_C04-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 04\",\"eo:bands\":[{\"name\":\"ABI Band 4\",\"common_name\":\"cirrus\",\"description\":\"Daytime cirrus cloud\",\"center_wavelength\":1.38}]},\"CMIP_C05-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 05\",\"eo:bands\":[{\"name\":\"ABI Band 5\",\"common_name\":\"swir16\",\"description\":\"Daytime cloud-top phase and particle size, snow\",\"center_wavelength\":1.61}]},\"CMIP_C06-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery reflectance factor - Band 06\",\"eo:bands\":[{\"name\":\"ABI Band 6\",\"common_name\":\"swir22\",\"description\":\"Daytime land, cloud properties, particle size, vegetation, snow\",\"center_wavelength\":2.25}]},\"CMIP_C07-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 07\",\"eo:bands\":[{\"name\":\"ABI Band 7\",\"description\":\"Surface and cloud, fog at night, fire, winds\",\"center_wavelength\":3.89}]},\"CMIP_C08-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 08\",\"eo:bands\":[{\"name\":\"ABI Band 8\",\"description\":\"High-level atmospheric water vapor, winds, rainfall\",\"center_wavelength\":6.17}]},\"CMIP_C09-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 09\",\"eo:bands\":[{\"name\":\"ABI Band 9\",\"description\":\"Midlevel atmospheric water vapor, winds, rainfall\",\"center_wavelength\":6.93}]},\"CMIP_C10-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 10\",\"eo:bands\":[{\"name\":\"ABI Band 10\",\"description\":\"Lower-level water vapor, winds, and silicon dioxide\",\"center_wavelength\":7.34}]},\"CMIP_C11-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 11\",\"eo:bands\":[{\"name\":\"ABI Band 11\",\"description\":\"Total water for stability, cloud phase, dust, silicon dioxide, rainfall\",\"center_wavelength\":8.44}]},\"CMIP_C12-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 12\",\"eo:bands\":[{\"name\":\"ABI Band 12\",\"description\":\"Total ozone, turbulence, winds\",\"center_wavelength\":9.61}]},\"CMIP_C13-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 13\",\"eo:bands\":[{\"name\":\"ABI Band 13\",\"description\":\"Surface and clouds\",\"center_wavelength\":10.33}]},\"CMIP_C14-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 14\",\"eo:bands\":[{\"name\":\"ABI Band 14\",\"description\":\"Imagery, sea surface temperature, clouds, rainfall\",\"center_wavelength\":11.19}]},\"CMIP_C15-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 15\",\"eo:bands\":[{\"name\":\"ABI Band 15\",\"description\":\"Total water, volcanic ash, sea surface temperature\",\"center_wavelength\":12.27}]},\"CMIP_C16-nc\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud and Moisture Imagery brightness temperature at top of atmosphere - Band 16\",\"eo:bands\":[{\"name\":\"ABI Band 16\",\"description\":\"Air temperature, cloud heights\",\"center_wavelength\":13.27}]},\"C02_DQF_0.5km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"quality-mask\"],\"title\":\"Cloud and Moisture Imagery data quality flags - Band 02 (full resolution)\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"goes\",\"msft:container\":\"noaa-goes-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"goeseuwest\",\"msft:short_description\":\"High temporal cadence cloud and moisture imagery over the Western Hemisphere from the Advanced Baseline Imager (ABI) instrument.\"},{\"id\":\"conus404\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.1175/BAMS-D-21-0326.1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9PHPK4F\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5065/ZYY0-Y036\"},{\"rel\":\"license\",\"href\":\"https://spdx.org/licenses/CC-BY-4.0.html\",\"type\":\"text/html\",\"title\":\"Creative Commons Attribution 4.0 International\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/conus404\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"CONUS404\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/conus404-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"CONUS404 Thumbnail\"},\"zarr-abfs\":{\"href\":\"az://noaa/conus404.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"CONUS404 Zarr root\",\"description\":\"Azure Blob File Syustem URI of the Zarr store for the CONUS404 dataset.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"azureopendatastorage\"}},\"zarr-https\":{\"href\":\"https://azureopendatastorage.blob.core.windows.net/noaa/conus404.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"CONUS404 Zarr root\",\"description\":\"HTTPS URI of the Zarr store for the CONUS404 dataset.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-137.873,17.631,-58.463,56.704]]},\"temporal\":{\"interval\":[[\"1979-10-01T00:00:00Z\",\"2022-09-30T23:00:00Z\"]]}},\"license\":\"CC-BY-4.0\",\"sci:doi\":\"10.1175/BAMS-D-21-0326.1\",\"keywords\":[\"CONUS404\",\"Hydroclimate\",\"Hydrology\",\"Inland Waters\",\"Precipitation\",\"Weather\",\"Climate\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://doi.org/10.5066/P9PHPK4F\",\"name\":\"USGS\",\"roles\":[\"producer\"]},{\"url\":\"https://doi.org/10.5065/ZYY0-Y036\",\"name\":\"NCAR\",\"roles\":[\"producer\"]}],\"description\":\"[CONUS404](https://www.usgs.gov/data/conus404-four-kilometer-long-term-regional-hydroclimate-reanalysis-over-conterminous-united) is a unique, high-resolution hydro-climate dataset appropriate for forcing hydrological models and conducting meteorological analysis over the conterminous United States. CONUS404, so named because it covers the CONterminous United States for over 40 years at 4 km resolution, was produced by the Weather Research and Forecasting (WRF) model simulations run by NCAR as part of a collaboration with the USGS Water Mission Area. The CONUS404 includes 42 years of data (water years 1980-2021) and the spatial domain extends beyond the CONUS into Canada and Mexico, thereby capturing transboundary river basins and covering all contributing areas for CONUS surface waters.\\n\\nThe CONUS404 dataset, produced using WRF version 3.9.1.1, is the successor to the CONUS1 dataset in [ds612.0](https://rda.ucar.edu/datasets/ds612.0/) (Liu, et al., 2017) with improved representation of weather and climate conditions in the central United States due to the addition of a shallow groundwater module and several other improvements in the NOAH-Multiparameterization land surface model. It also uses a more up-to-date and higher-resolution reanalysis dataset (ERA5) as input and covers a longer period than CONUS1.\",\"msft:region\":\"eastus\",\"sci:citation\":\"Rasmussen, R. M., Chen, F., Liu, C.H., Ikeda, K., Prein, A., Kim, J., Schneider, T., Dai, A., Gochis, D., Dugger, A., Zhang, Y., Jaye, A., Dudhia, J., He, C., Harrold, M., Xue, L., Chen, S., Newman, A., Dougherty, E., Abolafia-Rosenzweig, R., Lybarger, N. D., Viger, R., Lesmes, D., Skalak, K., Brakebill, J., Cline, D., Dunne, K., Rasmussen, K., & Miguez-Macho, G. (2023). CONUS404: The NCAR\u2013USGS 4-km Long-Term Regional Hydroclimate Reanalysis over the CONUS. Bulletin of the American Meteorological Society, 104(8), E1382-E1408. https://doi.org/10.1175/BAMS-D-21-0326.1\",\"stac_version\":\"1.0.0\",\"cube:variables\":{\"P\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"stagger\":\"\",\"description\":\"Total pressure (P0 + PB)\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Total pressure (P0 + PB)\"},\"U\":{\"type\":\"data\",\"unit\":\"m s-1\",\"attrs\":{\"units\":\"m s-1\",\"stagger\":\"X\",\"description\":\"U-component of wind with respect to model grid\"},\"shape\":[376944,50,1015,1368],\"chunks\":[1,1,1015,1368],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east_stag\"],\"description\":\"U-component of wind with respect to model grid\"},\"V\":{\"type\":\"data\",\"unit\":\"m s-1\",\"attrs\":{\"units\":\"m s-1\",\"stagger\":\"Y\",\"description\":\"V-component of wind with respect to model grid\"},\"shape\":[376944,50,1016,1367],\"chunks\":[1,1,1016,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north_stag\",\"west_east\"],\"description\":\"V-component of wind with respect to model grid\"},\"W\":{\"type\":\"data\",\"unit\":\"m s-1\",\"attrs\":{\"units\":\"m s-1\",\"stagger\":\"Z\",\"description\":\"W-component of wind\"},\"shape\":[376944,51,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top_stag\",\"south_north\",\"west_east\"],\"description\":\"W-component of wind\"},\"Z\":{\"type\":\"data\",\"unit\":\"m2 s-2\",\"attrs\":{\"units\":\"m2 s-2\",\"stagger\":\"Z\",\"description\":\"Geopotential height (PH + PHB)/9.81\"},\"shape\":[376944,51,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top_stag\",\"south_north\",\"west_east\"],\"description\":\"Geopotential height (PH + PHB)/9.81\"},\"LH\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"LATENT HEAT FLUX AT THE SURFACE\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"LATENT HEAT FLUX AT THE SURFACE\"},\"MU\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"stagger\":\"\",\"description\":\"dry airmass in column (MU+MUB)\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"dry airmass in column (MU+MUB)\"},\"Q2\":{\"type\":\"data\",\"unit\":\"kg kg-1\",\"attrs\":{\"units\":\"kg kg-1\",\"stagger\":\"\",\"long_name\":\"Water vapor mixing ratio at 2 meters\",\"description\":\"QV at 2 M\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"QV at 2 M\"},\"SR\":{\"type\":\"data\",\"unit\":\"-\",\"attrs\":{\"units\":\"-\",\"stagger\":\"\",\"description\":\"fraction of frozen precipitation\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"fraction of frozen precipitation\"},\"T2\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"description\":\"TEMP at 2 M\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"TEMP at 2 M\"},\"TG\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"description\":\"bulk ground temperature\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"bulk ground temperature\"},\"TK\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"description\":\"Air Temperature\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Air Temperature\"},\"TV\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"description\":\"vegetation leaf temperature\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"vegetation leaf temperature\"},\"GLW\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"DOWNWARD LONG WAVE FLUX AT GROUND SURFACE\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"DOWNWARD LONG WAVE FLUX AT GROUND SURFACE\"},\"HFX\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"UPWARD HEAT FLUX AT THE SURFACE\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"UPWARD HEAT FLUX AT THE SURFACE\"},\"LAI\":{\"type\":\"data\",\"unit\":\"m-2/m-2\",\"attrs\":{\"units\":\"m-2/m-2\",\"stagger\":\"\",\"description\":\"LEAF AREA INDEX\",\"number_of_significant_digits\":3},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"LEAF AREA INDEX\"},\"OLR\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"TOA OUTGOING LONG WAVE\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"TOA OUTGOING LONG WAVE\"},\"QFX\":{\"type\":\"data\",\"unit\":\"kg m-2 s-1\",\"attrs\":{\"units\":\"kg m-2 s-1\",\"stagger\":\"\",\"description\":\"UPWARD MOISTURE FLUX AT THE SURFACE\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"UPWARD MOISTURE FLUX AT THE SURFACE\"},\"SST\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"description\":\"SEA SURFACE TEMPERATURE\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"SEA SURFACE TEMPERATURE\"},\"TD2\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"description\":\"2-m dewpoint temperature\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"2-m dewpoint temperature\"},\"TH2\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"description\":\"POT TEMP at 2 M\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"POT TEMP at 2 M\"},\"TSK\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"description\":\"SURFACE SKIN TEMPERATURE\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"SURFACE SKIN TEMPERATURE\"},\"U10\":{\"type\":\"data\",\"unit\":\"m s-1\",\"attrs\":{\"units\":\"m s-1\",\"stagger\":\"\",\"long_name\":\"U-component wind with respect to model grid at 10 meters\",\"description\":\"U at 10 M\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"U at 10 M\"},\"UST\":{\"type\":\"data\",\"unit\":\"m s-1\",\"attrs\":{\"units\":\"m s-1\",\"stagger\":\"\",\"description\":\"U* IN SIMILARITY THEORY\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"U* IN SIMILARITY THEORY\"},\"V10\":{\"type\":\"data\",\"unit\":\"m s-1\",\"attrs\":{\"units\":\"m s-1\",\"stagger\":\"\",\"long_name\":\"V-component wind with respect to model grid at 10 meters\",\"description\":\"V at 10 M\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"V at 10 M\"},\"ZWT\":{\"type\":\"data\",\"unit\":\"m\",\"attrs\":{\"units\":\"m\",\"stagger\":\"\",\"description\":\"water table depth\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"water table depth\"},\"lat\":{\"type\":\"auxiliary\",\"unit\":\"degree_north\",\"attrs\":{\"units\":\"degree_north\",\"stagger\":\"\",\"description\":\"LATITUDE, SOUTH IS NEGATIVE\"},\"shape\":[1015,1367],\"chunks\":[882,1188],\"dimensions\":[\"south_north\",\"west_east\"],\"description\":\"LATITUDE, SOUTH IS NEGATIVE\"},\"lon\":{\"type\":\"auxiliary\",\"unit\":\"degree_east\",\"attrs\":{\"units\":\"degree_east\",\"stagger\":\"\",\"description\":\"LONGITUDE, WEST IS NEGATIVE\"},\"shape\":[1015,1367],\"chunks\":[882,1188],\"dimensions\":[\"south_north\",\"west_east\"],\"description\":\"LONGITUDE, WEST IS NEGATIVE\"},\"ACTR\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated transpiration, accumulated over prior 60 minutes\",\"description\":\"acccumlated TR\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated TR\"},\"PBLH\":{\"type\":\"data\",\"unit\":\"m\",\"attrs\":{\"units\":\"m\",\"stagger\":\"\",\"description\":\"PBL HEIGHT\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"PBL HEIGHT\"},\"PSFC\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"stagger\":\"\",\"description\":\"SFC PRESSURE\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"SFC PRESSURE\"},\"PWAT\":{\"type\":\"data\",\"unit\":\"meters\",\"attrs\":{\"units\":\"meters\",\"stagger\":\"\",\"sum_op_ncl\":\"dim_sum_n over dimension(s): bottom_top\",\"description\":\"Precipitable Water\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"Precipitable Water\"},\"QICE\":{\"type\":\"data\",\"unit\":\"kg kg-1\",\"attrs\":{\"units\":\"kg kg-1\",\"stagger\":\"\",\"description\":\"Ice mixing ratio\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Ice mixing ratio\"},\"QRFS\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated baseflow since model start time\",\"description\":\"sum baseflow\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"sum baseflow\"},\"RECH\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated water tabel recharged since model init time\",\"description\":\"Accumulated water tabel recharged\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"Accumulated water tabel recharged\"},\"SH2O\":{\"type\":\"data\",\"unit\":\"m3 m-3\",\"attrs\":{\"units\":\"m3 m-3\",\"stagger\":\"Z\",\"description\":\"SOIL LIQUID WATER\",\"number_of_significant_digits\":5},\"shape\":[376944,4,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"soil_layers_stag\",\"south_north\",\"west_east\"],\"description\":\"SOIL LIQUID WATER\"},\"SNOW\":{\"type\":\"data\",\"unit\":\"kg m-2\",\"attrs\":{\"units\":\"kg m-2\",\"stagger\":\"\",\"description\":\"SNOW WATER EQUIVALENT\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"SNOW WATER EQUIVALENT\"},\"TRAD\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"description\":\"surface radiative temperature\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"surface radiative temperature\"},\"TSLB\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"Z\",\"description\":\"SOIL TEMPERATURE\",\"number_of_significant_digits\":5},\"shape\":[376944,4,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"soil_layers_stag\",\"south_north\",\"west_east\"],\"description\":\"SOIL TEMPERATURE\"},\"TSNO\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"Z\",\"description\":\"snow temperature\",\"number_of_significant_digits\":5},\"shape\":[376944,3,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"snow_layers_stag\",\"south_north\",\"west_east\"],\"description\":\"snow temperature\"},\"ACEVB\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated latent heat flux over bare ground, accumulated over prior 60 minutes\",\"description\":\"acccumlated EVB\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated EVB\"},\"ACEVC\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated latent heat flux for canopy layer, accumulated over prior 60 minutes\",\"description\":\"acccumlated EVC\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated EVC\"},\"ACEVG\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated ground latent heat flux below canopy, accumulated over prior 60 minutes\",\"description\":\"acccumlated EVG\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated EVG\"},\"ACGHB\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated heat flux into soil or snowpack for bare ground, accumulated over prior 60 minutes\",\"description\":\"acccumlated GHB\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated GHB\"},\"ACGHV\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated heat flux into soil or snowpack under canopy, accumulated over prior 60 minutes\",\"description\":\"acccumlated GHV\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated GHV\"},\"ACIRB\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated net longwave radiation for bare ground, accumulated over prior 60 minutes\",\"description\":\"acccumlated IRB\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated IRB\"},\"ACIRC\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated net longwave radiation from canopy, accumulated over prior 60 minutes\",\"description\":\"acccumlated IRC\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated IRC\"},\"ACIRG\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated net longwave radiation from ground below canopy, accumulated over prior 60 minutes\",\"description\":\"acccumlated IRG\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated IRG\"},\"ACQRF\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated groundwater baseflow, accumulated over prior 60 minutes\",\"description\":\"accumulated baseflow\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"accumulated baseflow\"},\"ACSAV\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated solar radiation absorbed by vegetated fraction, accumulated over prior 60 minutes\",\"description\":\"acccumlated SAV\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated SAV\"},\"ACSHB\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated sensible heat flux at bare fraction, accumulated over prior 60 minutes\",\"description\":\"acccumlated SHB\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated SHB\"},\"ACSHC\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated sensible heat flux, canopy to atmosphere, accumulated over prior 60 minutes\",\"description\":\"acccumlated SHC\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated SHC\"},\"ACSHG\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated sensible heat flux from ground below canopy, accumulated over prior 60 minutes\",\"description\":\"acccumlated SHG\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated SHG\"},\"EMISS\":{\"type\":\"data\",\"unit\":\"\",\"attrs\":{\"units\":\"\",\"stagger\":\"\",\"description\":\"SURFACE EMISSIVITY\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"SURFACE EMISSIVITY\"},\"LWDNB\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS DOWNWELLING LONGWAVE FLUX AT BOTTOM\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS DOWNWELLING LONGWAVE FLUX AT BOTTOM\"},\"LWDNT\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS DOWNWELLING LONGWAVE FLUX AT TOP\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS DOWNWELLING LONGWAVE FLUX AT TOP\"},\"LWUPB\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS UPWELLING LONGWAVE FLUX AT BOTTOM\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS UPWELLING LONGWAVE FLUX AT BOTTOM\"},\"LWUPT\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS UPWELLING LONGWAVE FLUX AT TOP\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS UPWELLING LONGWAVE FLUX AT TOP\"},\"MLLCL\":{\"type\":\"data\",\"unit\":\"m\",\"attrs\":{\"units\":\"m\",\"stagger\":\"\",\"long_name\":\"Mixed-layer lifting condensation level (LCL)\",\"description\":\"MIXED-LAYER LCL\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"MIXED-LAYER LCL\"},\"O3RAD\":{\"type\":\"data\",\"unit\":\"ppmv\",\"attrs\":{\"units\":\"ppmv\",\"stagger\":\"\",\"description\":\"RADIATION 3D OZONE\",\"number_of_significant_digits\":5},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"RADIATION 3D OZONE\"},\"P_HYD\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"stagger\":\"\",\"description\":\"hydrostatic pressure\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"hydrostatic pressure\"},\"QNICE\":{\"type\":\"data\",\"unit\":\" kg-1\",\"attrs\":{\"units\":\" \ kg-1\",\"stagger\":\"\",\"description\":\"Ice Number concentration\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Ice Number concentration\"},\"QRAIN\":{\"type\":\"data\",\"unit\":\"kg kg-1\",\"attrs\":{\"units\":\"kg kg-1\",\"stagger\":\"\",\"description\":\"Rain water mixing ratio\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Rain water mixing ratio\"},\"QSLAT\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated groundwater lateral flow since model start time\",\"description\":\"sum lateral flow\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"sum lateral flow\"},\"QSNOW\":{\"type\":\"data\",\"unit\":\"kg kg-1\",\"attrs\":{\"units\":\"kg kg-1\",\"stagger\":\"\",\"description\":\"Snow mixing ratio\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Snow mixing ratio\"},\"SBLCL\":{\"type\":\"data\",\"unit\":\"m\",\"attrs\":{\"units\":\"m\",\"stagger\":\"\",\"long_name\":\"Surface-based lifting condensation level (LCL)\",\"description\":\"SURFACE-BASED LCL\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"SURFACE-BASED LCL\"},\"SMOIS\":{\"type\":\"data\",\"unit\":\"m3 m-3\",\"attrs\":{\"units\":\"m3 m-3\",\"stagger\":\"Z\",\"description\":\"SOIL MOISTURE\",\"number_of_significant_digits\":5},\"shape\":[376944,4,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"soil_layers_stag\",\"south_north\",\"west_east\"],\"description\":\"SOIL MOISTURE\"},\"SNICE\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"Z\",\"description\":\"snow layer ice\"},\"shape\":[376944,3,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"snow_layers_stag\",\"south_north\",\"west_east\"],\"description\":\"snow layer ice\"},\"SNLIQ\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"Z\",\"description\":\"snow layer liquid\"},\"shape\":[376944,3,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"snow_layers_stag\",\"south_north\",\"west_east\"],\"description\":\"snow layer liquid\"},\"SNOWC\":{\"type\":\"data\",\"unit\":\"\",\"attrs\":{\"units\":\"\",\"stagger\":\"\",\"description\":\"FLAG INDICATING SNOW COVERAGE (1 FOR SNOW COVER)\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"FLAG INDICATING SNOW COVERAGE (1 FOR SNOW COVER)\"},\"SNOWH\":{\"type\":\"data\",\"unit\":\"m\",\"attrs\":{\"units\":\"m\",\"stagger\":\"\",\"description\":\"PHYSICAL SNOW DEPTH\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"PHYSICAL SNOW DEPTH\"},\"SRH01\":{\"type\":\"data\",\"unit\":\"m2s-2\",\"attrs\":{\"units\":\"m2s-2\",\"stagger\":\"\",\"description\":\"0-1km storm-relative helicity\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"0-1km storm-relative helicity\"},\"SRH03\":{\"type\":\"data\",\"unit\":\"m2s-2\",\"attrs\":{\"units\":\"m2s-2\",\"stagger\":\"\",\"description\":\"0-3km storm-relative helicity\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"0-3km storm-relative helicity\"},\"SSTSK\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"description\":\"SKIN SEA SURFACE TEMPERATURE\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"SKIN SEA SURFACE TEMPERATURE\"},\"SWDNB\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS DOWNWELLING SHORTWAVE FLUX AT BOTTOM\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS DOWNWELLING SHORTWAVE FLUX AT BOTTOM\"},\"SWDNT\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS DOWNWELLING SHORTWAVE FLUX AT TOP\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS DOWNWELLING SHORTWAVE FLUX AT TOP\"},\"SWUPB\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS UPWELLING SHORTWAVE FLUX AT BOTTOM\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS UPWELLING SHORTWAVE FLUX AT BOTTOM\"},\"SWUPT\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS UPWELLING SHORTWAVE FLUX AT TOP\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS UPWELLING SHORTWAVE FLUX AT TOP\"},\"USHR1\":{\"type\":\"data\",\"unit\":\"s-1\",\"attrs\":{\"units\":\"s-1\",\"stagger\":\"\",\"description\":\"0-1km AGL U-component Wind Shear\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"0-1km AGL U-component Wind Shear\"},\"USHR6\":{\"type\":\"data\",\"unit\":\"s-1\",\"attrs\":{\"units\":\"s-1\",\"stagger\":\"\",\"description\":\"0-6km AGL U-component Wind Shear\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"0-6km AGL U-component Wind Shear\"},\"VSHR1\":{\"type\":\"data\",\"unit\":\"s-1\",\"attrs\":{\"units\":\"s-1\",\"stagger\":\"\",\"description\":\"0-1km AGL V-component Wind Shear\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"0-1km AGL V-component Wind Shear\"},\"VSHR6\":{\"type\":\"data\",\"unit\":\"s-1\",\"attrs\":{\"units\":\"s-1\",\"stagger\":\"\",\"description\":\"0-6km AGL V-component Wind Shear\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"0-6km AGL V-component Wind Shear\"},\"ZSNSO\":{\"type\":\"data\",\"unit\":\"m\",\"attrs\":{\"units\":\"m\",\"stagger\":\"Z\",\"description\":\"layer-bottom depth from snow surf\",\"number_of_significant_digits\":5},\"shape\":[376944,7,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"snso_layers_stag\",\"south_north\",\"west_east\"],\"description\":\"layer-bottom depth from snow surf\"},\"lat_u\":{\"type\":\"auxiliary\",\"unit\":\"degree_north\",\"attrs\":{\"units\":\"degree_north\",\"stagger\":\"X\",\"description\":\"LATITUDE, SOUTH IS NEGATIVE\"},\"shape\":[1015,1368],\"chunks\":[882,1188],\"dimensions\":[\"south_north\",\"west_east_stag\"],\"description\":\"LATITUDE, SOUTH IS NEGATIVE\"},\"lat_v\":{\"type\":\"auxiliary\",\"unit\":\"degree_north\",\"attrs\":{\"units\":\"degree_north\",\"stagger\":\"Y\",\"description\":\"LATITUDE, SOUTH IS NEGATIVE\"},\"shape\":[1016,1367],\"chunks\":[883,1187],\"dimensions\":[\"south_north_stag\",\"west_east\"],\"description\":\"LATITUDE, SOUTH IS NEGATIVE\"},\"lon_u\":{\"type\":\"auxiliary\",\"unit\":\"degree_east\",\"attrs\":{\"units\":\"degree_east\",\"stagger\":\"X\",\"description\":\"LONGITUDE, WEST IS NEGATIVE\"},\"shape\":[1015,1368],\"chunks\":[882,1188],\"dimensions\":[\"south_north\",\"west_east_stag\"],\"description\":\"LONGITUDE, WEST IS NEGATIVE\"},\"lon_v\":{\"type\":\"auxiliary\",\"unit\":\"degree_east\",\"attrs\":{\"units\":\"degree_east\",\"stagger\":\"Y\",\"description\":\"LONGITUDE, WEST IS NEGATIVE\"},\"shape\":[1016,1367],\"chunks\":[883,1187],\"dimensions\":[\"south_north_stag\",\"west_east\"],\"description\":\"LONGITUDE, WEST IS NEGATIVE\"},\"ACDEWC\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy dew rate, accumulated over prior 60 minutes\",\"description\":\"acccumlated QDEWC\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QDEWC\"},\"ACECAN\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated net evaporation of canopy water (evap + sublim - dew - frost), accumulated over prior 60 minutes\",\"description\":\"acccumlated ECAN\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated ECAN\"},\"ACEDIR\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated net soil evaporation or snowpack sublimation (evap or sublim - dew or frost), accumulated over prior 60 minutes\",\"description\":\"acccumlated EDIR\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated EDIR\"},\"ACEVAC\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy evaporation, accumulated over prior 60 minutes\",\"description\":\"acccumlated QEVAC\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QEVAC\"},\"ACFROC\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy frost, accumulated over prior 60 minutes\",\"description\":\"acccumlated QFROC\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QFROC\"},\"ACFRZC\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated refreezing of canopy liquid water, accumulated over prior 60 minutes\",\"description\":\"acccumlated QFRZC\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QFRZC\"},\"ACINTR\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy rain interception rate, accumulated over prior 60 minutes\",\"description\":\"acccumlated QINTR\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QINTR\"},\"ACINTS\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy snow interception rate, accumulated over prior 60 minutes\",\"description\":\"acccumlated QINTS\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QINTS\"},\"ACPAHB\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated precipitation advected energy to bare ground, accumulated over prior 60 minutes\",\"description\":\"acccumlated PAHB\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated PAHB\"},\"ACPAHG\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated precipitation advected energy to below canopy, accumulated over prior 60 minutes\",\"description\":\"acccumlated PAHG\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated PAHG\"},\"ACPAHV\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated precipitation advected energy to vegetation, accumulated over prior 60 minutes\",\"description\":\"acccumlated PAHV\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated PAHV\"},\"ACQLAT\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated groundwater lateral flow, accumulated over prior 60 minutes\",\"description\":\"accumulated lateral flow\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"accumulated lateral flow\"},\"ACSAGB\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated solar radiation absorbed by bare ground, accumulated over prior 60 minutes\",\"description\":\"acccumlated SAG under vegetation\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated SAG under vegetation\"},\"ACSAGV\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated solar radiation absorbed by vegetated ground, accumulated over prior 60 minutes\",\"description\":\"acccumlated SAG in bare section\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated SAG in bare section\"},\"ACSNOM\":{\"type\":\"data\",\"unit\":\"kg m-2\",\"attrs\":{\"units\":\"kg m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated total liquid water out of the snowpack since model initial time\",\"description\":\"Accumulated total liquid water out of the snowpack\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"Accumulated total liquid water out of the snowpack\"},\"ACSUBC\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy snow sublimation, accumulated over prior 60 minutes\",\"description\":\"acccumlated QSUBC\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QSUBC\"},\"ALBEDO\":{\"type\":\"data\",\"unit\":\"-\",\"attrs\":{\"units\":\"-\",\"stagger\":\"\",\"long_name\":\"Surface albedo including snow effects\",\"description\":\"ALBEDO\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ALBEDO\"},\"CANICE\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"description\":\"intercepted ice mass\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"intercepted ice mass\"},\"CANWAT\":{\"type\":\"data\",\"unit\":\"kg m-2\",\"attrs\":{\"units\":\"kg m-2\",\"stagger\":\"\",\"description\":\"CANOPY WATER\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"CANOPY WATER\"},\"CLDFRA\":{\"type\":\"data\",\"unit\":\"\",\"attrs\":{\"units\":\"\",\"stagger\":\"\",\"description\":\"CLOUD FRACTION\",\"number_of_significant_digits\":4},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"CLOUD FRACTION\"},\"COSZEN\":{\"type\":\"data\",\"unit\":\"dimensionless\",\"attrs\":{\"units\":\"dimensionless\",\"stagger\":\"\",\"description\":\"COS of SOLAR ZENITH ANGLE\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"COS of SOLAR ZENITH ANGLE\"},\"LWDNBC\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS DOWNWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS DOWNWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\"},\"LWDNTC\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS DOWNWELLING CLEAR SKY LONGWAVE FLUX AT TOP\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS DOWNWELLING CLEAR SKY LONGWAVE FLUX AT TOP\"},\"LWUPBC\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS UPWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS UPWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\"},\"LWUPTC\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS UPWELLING CLEAR SKY LONGWAVE FLUX AT TOP\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS UPWELLING CLEAR SKY LONGWAVE FLUX AT TOP\"},\"MLCAPE\":{\"type\":\"data\",\"unit\":\"J kg-1\",\"attrs\":{\"units\":\"J kg-1\",\"stagger\":\"\",\"long_name\":\"Mixed-layer convective available potential energy (CAPE)\",\"description\":\"MIXED-LAYER CAPE\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"MIXED-LAYER CAPE\"},\"MLCINH\":{\"type\":\"data\",\"unit\":\"J kg-1\",\"attrs\":{\"units\":\"J kg-1\",\"stagger\":\"\",\"long_name\":\"Mixed-layer convective inhibition up to the level of free convection (CINH)\",\"description\":\"MIXED-LAYER CINH\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"MIXED-LAYER CINH\"},\"MUCAPE\":{\"type\":\"data\",\"unit\":\"J kg-1\",\"attrs\":{\"units\":\"J kg-1\",\"stagger\":\"\",\"long_name\":\"Most-unstable convective available potential energy (CAPE)\",\"description\":\"MOST-UNSTABLE CAPE\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"MOST-UNSTABLE CAPE\"},\"MUCINH\":{\"type\":\"data\",\"unit\":\"J kg-1\",\"attrs\":{\"units\":\"J kg-1\",\"stagger\":\"\",\"long_name\":\"Most-unstable convective inhibition up to the level of free convection (CINH)\",\"description\":\"MOST-UNSTABLE CINH\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"MOST-UNSTABLE CINH\"},\"QCLOUD\":{\"type\":\"data\",\"unit\":\"kg kg-1\",\"attrs\":{\"units\":\"kg kg-1\",\"stagger\":\"\",\"description\":\"Cloud water mixing ratio\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Cloud water mixing ratio\"},\"QGRAUP\":{\"type\":\"data\",\"unit\":\"kg kg-1\",\"attrs\":{\"units\":\"kg kg-1\",\"stagger\":\"\",\"description\":\"Graupel mixing ratio\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Graupel mixing ratio\"},\"QNRAIN\":{\"type\":\"data\",\"unit\":\" kg(-1)\",\"attrs\":{\"units\":\" \ kg(-1)\",\"stagger\":\"\",\"description\":\"Rain Number concentration\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Rain Number concentration\"},\"QVAPOR\":{\"type\":\"data\",\"unit\":\"kg kg-1\",\"attrs\":{\"units\":\"kg kg-1\",\"stagger\":\"\",\"description\":\"Water vapor mixing ratio\"},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Water vapor mixing ratio\"},\"SBCAPE\":{\"type\":\"data\",\"unit\":\"J kg-1\",\"attrs\":{\"units\":\"J kg-1\",\"stagger\":\"\",\"long_name\":\"Surface-based convective available potential energy (CAPE)\",\"description\":\"SURFACE-BASED CAPE\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"SURFACE-BASED CAPE\"},\"SBCINH\":{\"type\":\"data\",\"unit\":\"J kg-1\",\"attrs\":{\"units\":\"J kg-1\",\"stagger\":\"\",\"long_name\":\"Surface-based convective inhibition up to the level of free convection (CINH)\",\"description\":\"SURFACE-BASED CINH\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"SURFACE-BASED CINH\"},\"SEAICE\":{\"type\":\"data\",\"unit\":\"\",\"attrs\":{\"units\":\"\",\"stagger\":\"\",\"description\":\"SEA ICE FLAG\",\"number_of_significant_digits\":3},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"SEA ICE FLAG\"},\"SMCWTD\":{\"type\":\"data\",\"unit\":\"m3 m-3\",\"attrs\":{\"units\":\"m3 m-3\",\"stagger\":\"\",\"description\":\"deep soil moisture\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"deep soil moisture\"},\"SWDNBC\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\"},\"SWDNTC\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\"},\"SWDOWN\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"DOWNWARD SHORT WAVE FLUX AT GROUND SURFACE\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"DOWNWARD SHORT WAVE FLUX AT GROUND SURFACE\"},\"SWNORM\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"NORMAL SHORT WAVE FLUX AT GROUND SURFACE (SLOPE-DEPENDENT)\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"NORMAL SHORT WAVE FLUX AT GROUND SURFACE (SLOPE-DEPENDENT)\"},\"SWUPBC\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS UPWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS UPWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\"},\"SWUPTC\":{\"type\":\"data\",\"unit\":\"W m-2\",\"attrs\":{\"units\":\"W m-2\",\"stagger\":\"\",\"description\":\"INSTANTANEOUS UPWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\",\"number_of_significant_digits\":5},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"INSTANTANEOUS UPWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\"},\"U_BUNK\":{\"type\":\"data\",\"unit\":\"ms-1\",\"attrs\":{\"units\":\"ms-1\",\"stagger\":\"\",\"description\":\"U-component of Bunkers storm motion\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"U-component of Bunkers storm motion\"},\"V_BUNK\":{\"type\":\"data\",\"unit\":\"ms-1\",\"attrs\":{\"units\":\"ms-1\",\"stagger\":\"\",\"description\":\"V-component of Bunkers storm motion\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"V-component of Bunkers storm motion\"},\"ACDRIPR\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy precipitation drip rate, accumulated over prior 60 minutes\",\"description\":\"acccumlated QDRIPR\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QDRIPR\"},\"ACDRIPS\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy snow drip rate, accumulated over prior 60 minutes\",\"description\":\"acccumlated QDRIPS\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QDRIPS\"},\"ACETLSM\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated total evaporation, accumulated over prior 60 minutes\",\"description\":\"acccumlated ET\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated ET\"},\"ACETRAN\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated plant transpiration, accumulated over prior 60 minutes\",\"description\":\"acccumlated ETRAN\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated ETRAN\"},\"ACLWDNB\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated downwelling longwave radiation flux at bottom, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED DOWNWELLING LONGWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED DOWNWELLING LONGWAVE FLUX AT BOTTOM\"},\"ACLWDNT\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated downwelling longwave radiation flux at top, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED DOWNWELLING LONGWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED DOWNWELLING LONGWAVE FLUX AT TOP\"},\"ACLWUPB\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated upwelling longwave radiation flux at bottom, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED UPWELLING LONGWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED UPWELLING LONGWAVE FLUX AT BOTTOM\"},\"ACLWUPT\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated upwelling longwave radiation flux at top, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED UPWELLING LONGWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED UPWELLING LONGWAVE FLUX AT TOP\"},\"ACMELTC\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy snow melt, accumulated over prior 60 minutes\",\"description\":\"acccumlated QMELTC\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QMELTC\"},\"ACRUNSB\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated subsurface runoff, accumulated over prior 60 minutes\",\"description\":\"Accumulated RUNSB\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"Accumulated RUNSB\"},\"ACRUNSF\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated surface runoff, accumulated over prior 60 minutes\",\"description\":\"Accumulated RUNSF\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"Accumulated RUNSF\"},\"ACSNBOT\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated liquid water flux out of bottom of snowpack, accumulated over prior 60 minutes\",\"description\":\"acccumlated QSNBOT\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QSNBOT\"},\"ACSNFRO\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated snowpack frost, accumulated over prior 60 minutes\",\"description\":\"acccumlated QSNFRO\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QSNFRO\"},\"ACSNSUB\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated snowpack sublimation, accumulated over prior 60 minutes\",\"description\":\"acccumlated QSNSUB\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QSNSUB\"},\"ACSWDNB\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated downwelling shortwave radiation flux at bottom, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED DOWNWELLING SHORTWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED DOWNWELLING SHORTWAVE FLUX AT BOTTOM\"},\"ACSWDNT\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated downwelling shortwave radiation flux at top, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED DOWNWELLING SHORTWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED DOWNWELLING SHORTWAVE FLUX AT TOP\"},\"ACSWUPB\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated upwelling shortwave radiation flux at bottom, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED UPWELLING SHORTWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED UPWELLING SHORTWAVE FLUX AT BOTTOM\"},\"ACSWUPT\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated upwelling shortwave radiation flux at top, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED UPWELLING SHORTWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED UPWELLING SHORTWAVE FLUX AT TOP\"},\"ACTHROR\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy rain throughfall, accumulated over prior 60 minutes\",\"description\":\"acccumlated QTHROR\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QTHROR\"},\"ACTHROS\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated canopy snow throughfall, accumulated over prior 60 minutes\",\"description\":\"acccumlated QTHROS\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated QTHROS\"},\"RAINNCV\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"description\":\"TIME-STEP NONCONVECTIVE PRECIPITATION\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"TIME-STEP NONCONVECTIVE PRECIPITATION\"},\"ACGHFLSM\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated total ground heat flux into soil or snowpack, accumulated over prior 60 minutes\",\"description\":\"acccumlated total ground heat flux\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated total ground heat flux\"},\"ACLHFLSM\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated total latent heat flux, accumulated over prior 60 minutes\",\"description\":\"acccumlated total latent heat flux\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated total latent heat flux\"},\"ACLWDNBC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated downwelling clear sky longwave radiation flux at bottom, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED DOWNWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED DOWNWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\"},\"ACLWDNTC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated downwelling clear sky longwave radiation flux at top, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED DOWNWELLING CLEAR SKY LONGWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED DOWNWELLING CLEAR SKY LONGWAVE FLUX AT TOP\"},\"ACLWUPBC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated upwelling clear sky longwave radiation flux at bottom, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED UPWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED UPWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\"},\"ACLWUPTC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated upwelling clear sky longwave radiation flux at top, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED UPWELLING CLEAR SKY LONGWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED UPWELLING CLEAR SKY LONGWAVE FLUX AT TOP\"},\"ACPAHLSM\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated total precipitation heat flux advected to surface, accumulated over prior 60 minutes\",\"description\":\"acccumlated total precip heat flux\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated total precip heat flux\"},\"ACSHFLSM\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Acccumlated total sensible heat flux, accumulated over prior 60 minutes\",\"description\":\"acccumlated total sensible heat flux\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated total sensible heat flux\"},\"ACSWDNBC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated downwelling clear sky shortwave radiation flux at bottom, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\"},\"ACSWDNTC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated downwelling clear sky shortwave radiation flux at top, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\"},\"ACSWUPBC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated upwelling clear sky shortwave radiation flux at bottom, accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED UPWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED UPWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\"},\"ACSWUPTC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Accumulated upwelling clear sky shortwave radiation flux at top accumulated since last bucket_J (1.0e9 J m-2) reset\",\"description\":\"ACCUMULATED UPWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED UPWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\"},\"FORCPLSM\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"stagger\":\"\",\"long_name\":\"Lowest model pressure into land surface model\",\"description\":\"lowest model P into LSM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"lowest model P into LSM\"},\"FORCQLSM\":{\"type\":\"data\",\"unit\":\"kg/kg\",\"attrs\":{\"units\":\"kg/kg\",\"stagger\":\"\",\"long_name\":\"Lowest model mixing ratio into land surface model\",\"description\":\"lowest model Q into LSM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"lowest model Q into LSM\"},\"FORCTLSM\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"stagger\":\"\",\"long_name\":\"Lowest model temperature into land surface model\",\"description\":\"lowest model T into LSM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"lowest model T into LSM\"},\"FORCWLSM\":{\"type\":\"data\",\"unit\":\"m/s\",\"attrs\":{\"units\":\"m/s\",\"stagger\":\"\",\"long_name\":\"Lowest model wind speed into land surface model\",\"description\":\"lowest model wind speed into LSM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"lowest model wind speed into LSM\"},\"FORCZLSM\":{\"type\":\"data\",\"unit\":\"m\",\"attrs\":{\"units\":\"m\",\"stagger\":\"\",\"long_name\":\"Lowest model height above ground level into land surface model\",\"description\":\"lowest model Z into LSM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"lowest model Z into LSM\"},\"QSPRINGS\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated seeping water since model start time\",\"description\":\"sum seeping water\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"sum seeping water\"},\"REFL_COM\":{\"type\":\"data\",\"unit\":\"dbZ\",\"attrs\":{\"units\":\"dbZ\",\"stagger\":\"\",\"description\":\"COMPOSITE REFLECTIVITY\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"COMPOSITE REFLECTIVITY\"},\"totalIce\":{\"type\":\"data\",\"unit\":\"kg kg-1\",\"attrs\":{\"units\":\"kg kg-1\",\"stagger\":\"\",\"sum_op_ncl\":\"dim_sum_n over dimension(s): bottom_top\",\"description\":\"Ice mixing ratio\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"Ice mixing ratio\"},\"totalLiq\":{\"type\":\"data\",\"unit\":\"kg kg-1\",\"attrs\":{\"units\":\"kg kg-1\",\"stagger\":\"\",\"sum_op_ncl\":\"dim_sum_n over dimension(s): bottom_top\",\"description\":\"Cloud water mixing ratio\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"Cloud water mixing ratio\"},\"totalVap\":{\"type\":\"data\",\"unit\":\"kg kg-1\",\"attrs\":{\"units\":\"kg kg-1\",\"stagger\":\"\",\"sum_op_ncl\":\"dim_sum_n over dimension(s): bottom_top\",\"description\":\"Water vapor mixing ratio\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"Water vapor mixing ratio\"},\"ACLWDNLSM\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated longwave downwelling radiation at land surface model, accumulated over prior 60 minutes\",\"description\":\"acccumlated LWDN\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated LWDN\"},\"ACLWUPLSM\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated longwave upwelling radiation at land surface model, accumulated over prior 60 minutes\",\"description\":\"acccumlated LWUP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated LWUP\"},\"ACPONDING\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated surface ponding from complete pack melt, accumulated over prior 60 minutes\",\"description\":\"acccumlated PONDING\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated PONDING\"},\"ACRAINLSM\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated liquid precipitation into land surface model, accumulated over prior 60 minutes\",\"description\":\"acccumlated RAINLSM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated RAINLSM\"},\"ACSNOWLSM\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated frozen precipitation into land surface model, accumulated over prior 60 minutes\",\"description\":\"acccumlated SNOWLSM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated SNOWLSM\"},\"ACSWDNLSM\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated shortwave radiation down at land surface model, accumulated over prior 60 minutes\",\"description\":\"acccumlated SWDN\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated SWDN\"},\"ACSWUPLSM\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"long_name\":\"Accumulated shortwave radiation up at land surface model, accumulated over prior 60 minutes\",\"description\":\"acccumlated SWUP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated SWUP\"},\"I_ACLWDNB\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for downwelling longwave flux at bottom accumulated since model start time\",\"description\":\"BUCKET FOR DOWNWELLING LONGWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR DOWNWELLING LONGWAVE FLUX AT BOTTOM\"},\"I_ACLWDNT\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for downwelling longwave flux at top accumulated since model start time\",\"description\":\"BUCKET FOR DOWNWELLING LONGWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR DOWNWELLING LONGWAVE FLUX AT TOP\"},\"I_ACLWUPB\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for upwelling longwave flux at bottom accumulated since model start time\",\"description\":\"BUCKET FOR UPWELLING LONGWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR UPWELLING LONGWAVE FLUX AT BOTTOM\"},\"I_ACLWUPT\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for upwelling longwave flux at top accumulated since model start time\",\"description\":\"BUCKET FOR UPWELLING LONGWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR UPWELLING LONGWAVE FLUX AT TOP\"},\"I_ACSWDNB\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for downwelling shortwave flux at bottom accumulated since model start time\",\"description\":\"BUCKET FOR DOWNWELLING SHORTWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR DOWNWELLING SHORTWAVE FLUX AT BOTTOM\"},\"I_ACSWDNT\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for downwelling shortwave flux at top accumulated since model start time\",\"description\":\"BUCKET FOR DOWNWELLING SHORTWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR DOWNWELLING SHORTWAVE FLUX AT TOP\"},\"I_ACSWUPB\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for upwelling shortwave flux at bottom accumulated since model start time\",\"description\":\"BUCKET FOR UPWELLING SHORTWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR UPWELLING SHORTWAVE FLUX AT BOTTOM\"},\"I_ACSWUPT\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for upwelling shortwave flux at top accumulated since model start time\",\"description\":\"BUCKET FOR UPWELLING SHORTWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR UPWELLING SHORTWAVE FLUX AT TOP\"},\"REFL_10CM\":{\"type\":\"data\",\"unit\":\"dBZ\",\"attrs\":{\"units\":\"dBZ\",\"stagger\":\"\",\"description\":\"Radar reflectivity (lamda = 10 cm)\",\"number_of_significant_digits\":5},\"shape\":[376944,50,1015,1367],\"chunks\":[1,1,1015,1367],\"dimensions\":[\"time\",\"bottom_top\",\"south_north\",\"west_east\"],\"description\":\"Radar reflectivity (lamda = 10 cm)\"},\"ACRAINSNOW\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Acccumlated rain on snow pack, accumulated over prior 60 minutes\",\"description\":\"acccumlated rain on snow pack\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"acccumlated rain on snow pack\"},\"I_ACLWDNBC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for downwelling clear sky longwave flux at bottom accumulated since model start time\",\"description\":\"BUCKET FOR DOWNWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR DOWNWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\"},\"I_ACLWDNTC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for downwelling clear sky longwave flux at top accumulated since model start time\",\"description\":\"BUCKET FOR DOWNWELLING CLEAR SKY LONGWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR DOWNWELLING CLEAR SKY LONGWAVE FLUX AT TOP\"},\"I_ACLWUPBC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for upwelling clear sky longwave flux at bottom accumulated since model start time\",\"description\":\"BUCKET FOR UPWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR UPWELLING CLEAR SKY LONGWAVE FLUX AT BOTTOM\"},\"I_ACLWUPTC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for upwelling clear sky longwave flux at top accumulated since model start time\",\"description\":\"BUCKET FOR UPWELLING CLEAR SKY LONGWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR UPWELLING CLEAR SKY LONGWAVE FLUX AT TOP\"},\"I_ACSWDNBC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for downwelling clear sky shortwave flux at bottom accumulated since model start time\",\"description\":\"BUCKET FOR DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\"},\"I_ACSWDNTC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for downwelling clear sky shortwave flux at top accumulated since model start time\",\"description\":\"BUCKET FOR DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR DOWNWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\"},\"I_ACSWUPBC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for upwelling clear sky shortwave flux at bottom accumulated since model start time\",\"description\":\"BUCKET FOR UPWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR UPWELLING CLEAR SKY SHORTWAVE FLUX AT BOTTOM\"},\"I_ACSWUPTC\":{\"type\":\"data\",\"unit\":\"J m-2\",\"attrs\":{\"units\":\"J m-2\",\"stagger\":\"\",\"long_name\":\"Bucket for upwelling clear sky shortwave flux at top accumulated since model start time\",\"description\":\"BUCKET FOR UPWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"BUCKET FOR UPWELLING CLEAR SKY SHORTWAVE FLUX AT TOP\"},\"SNOWENERGY\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"description\":\"energy content in snow relative to 273.16\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"energy content in snow relative to 273.16\"},\"SOILENERGY\":{\"type\":\"data\",\"unit\":\"kJ/m2\",\"attrs\":{\"units\":\"kJ/m2\",\"stagger\":\"\",\"description\":\"energy content in soil relative to 273.16\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"energy content in soil relative to 273.16\"},\"PREC_ACC_NC\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated grid scale precipitation , accumulated over prior 60 minutes\",\"description\":\"ACCUMULATED GRID SCALE PRECIPITATION OVER prec_acc_dt PERIODS OF TIME\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED GRID SCALE PRECIPITATION OVER prec_acc_dt PERIODS OF TIME\"},\"SNOW_ACC_NC\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated snow water equivalent, accumulated over prior 60 minutes\",\"description\":\"ACCUMULATED SNOW WATER EQUIVALENT OVER prec_acc_dt PERIODS OF TIME\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED SNOW WATER EQUIVALENT OVER prec_acc_dt PERIODS OF TIME\"},\"REFL_1KM_AGL\":{\"type\":\"data\",\"unit\":\"dbZ\",\"attrs\":{\"units\":\"dbZ\",\"stagger\":\"\",\"description\":\"1KM AGL REFLECTIVITY\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"1KM AGL REFLECTIVITY\"},\"GRAUPEL_ACC_NC\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"stagger\":\"\",\"long_name\":\"Accumulated graupel water equivalent, accumulated over prior 60 minutes\",\"description\":\"ACCUMULATED GRAUPEL WATER EQUIVALENT OVER prec_acc_dt PERIODS OF TIME\"},\"shape\":[376944,1015,1367],\"chunks\":[1,1015,1367],\"dimensions\":[\"time\",\"south_north\",\"west_east\"],\"description\":\"ACCUMULATED GRAUPEL WATER EQUIVALENT OVER prec_acc_dt PERIODS OF TIME\"}},\"msft:container\":\"noaa\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"type\":\"spatial\",\"extent\":[17.647308349609375,57.34341812133789]},\"lon\":{\"axis\":\"x\",\"type\":\"spatial\",\"extent\":[-138.73135375976562,-57.068634033203125]},\"time\":{\"step\":\"P0DT1H0M0S\",\"type\":\"temporal\",\"extent\":[\"1979-10-01T00:00:00Z\",\"2022-09-30T23:00:00Z\"],\"description\":\"time\"},\"west_east\":{\"type\":\"count\",\"extent\":[0,1366],\"description\":\"west_east index\"},\"bottom_top\":{\"type\":\"count\",\"extent\":[0,49],\"description\":\"bottom_top index\"},\"south_north\":{\"type\":\"count\",\"extent\":[0,1014],\"description\":\"south_north index\"},\"west_east_stag\":{\"type\":\"count\",\"extent\":[0,1367],\"description\":\"west_east_stag index.\"},\"bottom_top_stag\":{\"type\":\"count\",\"extent\":[0,50],\"description\":\"bottom_top_stag index\"},\"snow_layers_stag\":{\"type\":\"count\",\"extent\":[0,2],\"description\":\"snow layer index.\"},\"snso_layers_stag\":{\"type\":\"count\",\"extent\":[0,6],\"description\":\"snso layer index.\"},\"soil_layers_stag\":{\"type\":\"count\",\"extent\":[0,4],\"description\":\"soil layer index.\"},\"south_north_stag\":{\"type\":\"count\",\"extent\":[0,1015],\"description\":\"south_north_stag index.\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/xarray-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.2.0/schema.json\"],\"msft:storage_account\":\"azureopendatastorage\",\"msft:short_description\":\"High-resolution hydro-climate dataset for forcing hydrological models and meteorological analysis over the conterminous United States.\"},{\"id\":\"sentinel-1-rtc\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/licenses/by/4.0/\",\"title\":\"CC BY 4.0\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-1-rtc\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel 1 Radiometrically Terrain Corrected (RTC)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-1-rtc.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Sentinel 1 RTC\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-1-rtc.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2014-10-10T00:28:21Z\",null]]}},\"license\":\"CC-BY-4.0\",\"keywords\":[\"ESA\",\"Copernicus\",\"Sentinel\",\"C-Band\",\"SAR\",\"RTC\"],\"providers\":[{\"url\":\"https://catalyst.earth\",\"name\":\"Catalyst\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"licensor\"]}],\"summaries\":{\"platform\":[\"SENTINEL-1A\",\"SENTINEL-1B\",\"SENTINEL-1C\"],\"constellation\":[\"Sentinel-1\"],\"s1:resolution\":[\"high\"],\"s1:orbit_source\":[\"DOWNLINK\",\"POEORB\",\"PREORB\",\"RESORB\"],\"sar:looks_range\":[5],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"sar:product_type\":[\"GRD\"],\"sar:looks_azimuth\":[1],\"sar:polarizations\":[[\"VV\",\"VH\"],[\"HH\",\"HV\"],[\"VV\"],[\"VH\"],[\"HH\"]],\"sar:frequency_band\":[\"C\"],\"s1:processing_level\":[\"1\"],\"sar:instrument_mode\":[\"IW\"],\"sar:center_frequency\":[5.405],\"sar:resolution_range\":[20],\"s1:product_timeliness\":[\"NRT-10m\",\"NRT-1h\",\"NRT-3h\",\"Fast-24h\",\"Off-line\",\"Reprocessing\"],\"sar:resolution_azimuth\":[22],\"sar:pixel_spacing_range\":[10],\"sar:observation_direction\":[\"right\"],\"sar:pixel_spacing_azimuth\":[10],\"sar:looks_equivalent_number\":[4.4],\"sat:platform_international_designator\":[\"2014-016A\",\"2016-025A\",\"0000-000A\"]},\"description\":\"The [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) mission is a constellation of two polar-orbiting satellites, operating day and night performing C-band synthetic aperture radar imaging. The Sentinel-1 Radiometrically Terrain Corrected (RTC) data in this collection is a radiometrically terrain corrected product derived from the [Ground Range Detected (GRD) Level-1](https://planetarycomputer.microsoft.com/dataset/sentinel-1-grd) products produced by the European Space Agency. The RTC processing is performed by [Catalyst](https://catalyst.earth/).\\n\\nRadiometric Terrain Correction accounts for terrain variations that affect both the position of a given point on the Earth's surface and the brightness of the radar return, as expressed in radar geometry. Without treatment, the hill-slope modulations of the radiometry threaten to overwhelm weaker thematic land cover-induced backscatter differences. Additionally, comparison of backscatter from multiple satellites, modes, or tracks loses meaning.\\n\\nA Planetary Computer account is required to retrieve SAS tokens to read the RTC data. See the [documentation](http://planetarycomputer.microsoft.com/docs/concepts/sas/#when-an-account-is-needed) for more information.\\n\\n### Methodology\\n\\nThe Sentinel-1 GRD product is converted to calibrated intensity using the conversion algorithm described in the ESA technical note ESA-EOPG-CSCOP-TN-0002, [Radiometric Calibration of S-1 Level-1 Products Generated by the S-1 IPF](https://ai4edatasetspublicassets.blob.core.windows.net/assets/pdfs/sentinel-1/S1-Radiometric-Calibration-V1.0.pdf). The flat earth calibration values for gamma correction (i.e. perpendicular to the radar line of sight) are extracted from the GRD metadata. The calibration coefficients are applied as a two-dimensional correction in range (by sample number) and azimuth (by time). All available polarizations are calibrated and written as separate layers of a single file. The calibrated SAR output is reprojected to nominal map orientation with north at the top and west to the left.\\n\\nThe data is then radiometrically terrain corrected using PlanetDEM as the elevation source. The correction algorithm is nominally based upon D. Small, [\u201CFlattening Gamma: Radiometric Terrain Correction for SAR Imagery\u201D](https://ai4edatasetspublicassets.blob.core.windows.net/assets/pdfs/sentinel-1/2011_Flattening_Gamma.pdf), IEEE Transactions on Geoscience and Remote Sensing, Vol 49, No 8., August 2011, pp 3081-3093. For each image scan line, the digital elevation model is interpolated to determine the elevation corresponding to the position associated with the known near slant range distance and arc length for each input pixel. The elevations at the four corners of each pixel are estimated using bilinear resampling. The four elevations are divided into two triangular facets and reprojected onto the plane perpendicular to the radar line of sight to provide an estimate of the area illuminated by the radar for each earth flattened pixel. The uncalibrated sum at each earth flattened pixel is normalized by dividing by the flat earth surface area. The adjustment for gamma intensity is given by dividing the normalized result by the cosine of the incident angle. Pixels which are not illuminated by the radar due to the viewing geometry are flagged as shadow.\\n\\nCalibrated data is then orthorectified to the appropriate UTM projection. The orthorectified output maintains the original sample sizes (in range and azimuth) and was not shifted to any specific grid.\\n\\nRTC data is processed only for the Interferometric Wide Swath (IW) mode, which is the main acquisition mode over land and satisfies the majority of service requirements.\\n\",\"item_assets\":{\"hh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HH: horizontal transmit, horizontal receive\",\"description\":\"Terrain-corrected gamma naught values of signal transmitted with horizontal polarization and received with horizontal polarization with radiometric terrain correction applied.\",\"raster:bands\":[{\"nodata\":-32768,\"data_type\":\"float32\",\"spatial_resolution\":10}]},\"hv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HV: horizontal transmit, vertical receive\",\"description\":\"Terrain-corrected gamma naught values of signal transmitted with horizontal polarization and received with vertical polarization with radiometric terrain correction applied.\",\"raster:bands\":[{\"nodata\":-32768,\"data_type\":\"float32\",\"spatial_resolution\":10}]},\"vh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VH: vertical transmit, horizontal receive\",\"description\":\"Terrain-corrected gamma naught values of signal transmitted with vertical polarization and received with horizontal polarization with radiometric terrain correction applied.\",\"raster:bands\":[{\"nodata\":-32768,\"data_type\":\"float32\",\"spatial_resolution\":10}]},\"vv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VV: vertical transmit, vertical receive\",\"description\":\"Terrain-corrected gamma naught values of signal transmitted with vertical polarization and received with vertical polarization with radiometric terrain correction applied.\",\"raster:bands\":[{\"nodata\":-32768,\"data_type\":\"float32\",\"spatial_resolution\":10}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-1\",\"msft:container\":\"sentinel1-grd-rtc\",\"stac_extensions\":[\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"sentinel1euwestrtc\",\"msft:requires_account\":true,\"msft:short_description\":\"Radiometrically terrain corrected SAR imagery derived from the Sentinel 1 Level 1 GRD product.\",\"msft:region\":\"westeurope\"},{\"id\":\"3dep-lidar-intensity\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/3d-elevation-program/about-3dep-products-services\",\"title\":\"About 3DEP Products & Services\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-intensity\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS 3DEP Lidar Intensity\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/intensity-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"extent\":{\"spatial\":{\"bbox\":[[-166.8546920006028,17.655357747708283,-64.56116757979399,71.39330810146807],[144.60180842809473,13.21774453924126,146.08202179248926,18.18369664008955]]},\"temporal\":{\"interval\":[[\"2012-01-01T00:00:00Z\",\"2022-01-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USGS\",\"3DEP\",\"COG\",\"Intensity\"],\"providers\":[{\"name\":\"Landrush\",\"roles\":[\"processor\",\"producer\"]},{\"url\":\"https://www.usgs.gov/core-science-systems/ngp/3dep/\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[2.0]},\"description\":\"This collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc). It is a collection of Cloud Optimized GeoTIFFs representing the pulse return magnitude.\\n\\nThe values are based on the Intensity [PDAL dimension](https://pdal.io/dimensions.html) and uses [`pdal.filters.outlier`](https://pdal.io/stages/filters.outlier.html#filters-outlier) and [`pdal.filters.range`](https://pdal.io/stages/filters.range.html#filters-range) to remove outliers and noise.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"COG data\",\"raster:bands\":[{\"name\":\"Intensity\",\"unit\":\"metre\",\"sampling\":\"point\",\"data_type\":\"uint16\",\"description\":\"Intensity PDAL dimension\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"3dep-lidar\",\"msft:container\":\"usgs-3dep-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json#\"],\"msft:storage_account\":\"usgslidareuwest\",\"msft:short_description\":\"3DEP Lidar collection for the Cloud Optimized Geotiffs (COGs) based on the Intensity dimension.\",\"msft:region\":\"westeurope\"},{\"id\":\"3dep-lidar-pointsourceid\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/3d-elevation-program/about-3dep-products-services\",\"title\":\"About 3DEP Products & Services\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-pointsourceid\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS 3DEP Lidar Point Source\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/pointsourceid-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"},\"geoparquet-items\":{\"href\":\"abfs://items/3dep-lidar-pointsourceid.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-166.8546920006028,17.655357747708283,-64.56116757979399,71.39330810146807],[144.60180842809473,13.21774453924126,146.08202179248926,18.18369664008955]]},\"temporal\":{\"interval\":[[\"2012-01-01T00:00:00Z\",\"2022-01-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USGS\",\"3DEP\",\"COG\",\"PointSourceId\"],\"providers\":[{\"name\":\"Landrush\",\"roles\":[\"processor\",\"producer\"]},{\"url\":\"https://www.usgs.gov/core-science-systems/ngp/3dep/\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[5.0]},\"description\":\"This collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc). It is a collection of Cloud Optimized GeoTIFFs representing the file source ID from which the point originated. Zero indicates that the point originated in the current file.\\n\\nThis values are based on the PointSourceId [PDAL dimension](https://pdal.io/dimensions.html) and uses [`pdal.filters.outlier`](https://pdal.io/stages/filters.outlier.html#filters-outlier) and [`pdal.filters.range`](https://pdal.io/stages/filters.range.html#filters-range) to remove outliers and noise.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"COG data\",\"raster:bands\":[{\"name\":\"PointSourceId\",\"unit\":\"metre\",\"sampling\":\"point\",\"data_type\":\"int32\",\"description\":\"PointSourceId PDAL dimension\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"3dep-lidar\",\"msft:container\":\"usgs-3dep-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json#\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"usgslidareuwest\",\"msft:short_description\":\"3DEP Lidar collection for Cloud Optimized Geotiffs (COGs) using PDAL's PointSourceId dimension.\",\"msft:region\":\"westeurope\"},{\"id\":\"mtbs\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs\"},{\"rel\":\"license\",\"href\":\"https://catalog.data.gov/sl/dataset/mtbs-wildfire-burn-severity-mosaics-40c75\",\"title\":\"CC BY\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/mtbs\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MTBS: Monitoring Trends in Burn Severity\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/mtbs.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MTBS\"},\"geoparquet-items\":{\"href\":\"abfs://items/mtbs.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-166.705027,56.331164,-137.664767,69.980073],[-127.579429,23.680916,-65.871833,50.870718]]},\"temporal\":{\"interval\":[[\"1984-12-31T00:00:00Z\",\"2018-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"MTBS\",\"USGS\",\"USFS\",\"USDA\",\"Forest\",\"Fire\"],\"providers\":[{\"url\":\"https://www.mtbs.gov/\",\"name\":\"MTBS program\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://carbonplan.org\",\"name\":\"CarbonPlan\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[30]},\"description\":\"[Monitoring Trends in Burn Severity](https://www.mtbs.gov/) (MTBS) is an inter-agency program whose goal is to consistently map the burn severity and extent of large fires across the United States from 1984 to the present. This includes all fires 1000 acres or greater in the Western United States and 500 acres or greater in the Eastern United States. The burn severity mosaics in this dataset consist of thematic raster images of MTBS burn severity classes for all currently completed MTBS fires for the continental United States and Alaska.\\n\",\"item_assets\":{\"metadata\":{\"type\":\"text/html\",\"roles\":[\"metadata\"],\"title\":\"Metadata\"},\"burn-severity\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Burn severity\",\"file:values\":[{\"values\":[0],\"summary\":\"No Data\"},{\"values\":[1],\"summary\":\"Unburned to low\"},{\"values\":[2],\"summary\":\"Low\"},{\"values\":[3],\"summary\":\"Moderate\"},{\"values\":[4],\"summary\":\"High\"},{\"values\":[5],\"summary\":\"Increased Greenness\"}]}},\"stac_version\":\"1.0.0\",\"msft:container\":\"cpdata\",\"stac_extensions\":[\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"cpdataeuwest\",\"msft:short_description\":\"Annual burn severity mosaics for the continental United States and Alaska\",\"msft:region\":\"westeurope\"},{\"id\":\"noaa-c-cap\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap\"},{\"rel\":\"describedby\",\"href\":\"https://coast.noaa.gov/data/digitalcoast/pdf/ccap-product-page.pdf\",\"type\":\"application/pdf\",\"title\":\"Handout - C-CAP Products\"},{\"rel\":\"describedby\",\"href\":\"https://coast.noaa.gov/data/digitalcoast/pdf/ccap-faq-regional.pdf\",\"type\":\"application/pdf\",\"title\":\"Frequently Asked Questions\"},{\"rel\":\"describedby\",\"href\":\"https://coast.noaa.gov/data/digitalcoast/pdf/ccap-class-scheme-regional.pdf\",\"type\":\"application/pdf\",\"title\":\"C-CAP Classification Scheme and Class Definitions\"},{\"rel\":\"license\",\"href\":\"https://coast.noaa.gov/digitalcoast/data/ccapregional.html\",\"type\":\"text/html\",\"title\":\"C-CAP Regional Land Cover and Change\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-c-cap\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"C-CAP Regional Land Cover and Change\",\"assets\":{\"boundary\":{\"href\":\"https://coast.noaa.gov/data/digitalcoast/zip/ccap-mapping-bndry-wgs84.zip\",\"type\":\"application/zip\",\"title\":\"C-CAP Mapping Boundary (shp file)\"},\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-c-cap.png\",\"type\":\"image/png\",\"roles\":[\"data\"],\"title\":\"NOAA C-CAP\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-c-cap.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-160.315986,17.892786,-64.966857,49.471148],[-127.984554,22.718719,-64.966857,49.471148],[-160.315986,18.879215,-154.706564,22.271167],[-67.290869,17.892786,-65.230246,18.538629]]},\"temporal\":{\"interval\":[[\"1975-01-01T00:00:00Z\",\"2016-12-31T00:00:00Z\"],[\"1975-01-01T00:00:00Z\",\"2016-12-31T00:00:00Z\"],[\"1992-01-01T00:00:00Z\",\"2005-12-31T00:00:00Z\"],[\"2010-01-01T00:00:00Z\",\"2010-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Land Cover\",\"Land Use\",\"NOAA\",\"Coastal\"],\"providers\":[{\"url\":\"https://coast.noaa.gov/digitalcoast/data/ccapregional.html\",\"name\":\"National Oceanic and Atmospheric Administration, Office for Coastal Management\",\"roles\":[\"licensor\",\"producer\",\"processor\"]},{\"url\":\"https//planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"description\":\"Nationally standardized, raster-based inventories of land cover for the coastal areas of the U.S. Data are derived, through the Coastal Change Analysis Program, from the analysis of multiple dates of remotely sensed imagery. Two file types are available: individual dates that supply a wall-to-wall map, and change files that compare one date to another. The use of standardized data and procedures assures consistency through time and across geographies. C-CAP data forms the coastal expression of the National Land Cover Database (NLCD) and the A-16 land cover theme of the National Spatial Data Infrastructure. \ The data are updated every 5 years.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"value\":0,\"description\":\"Background\"},{\"value\":1,\"description\":\"Unclassified (Cloud, Shadow, etc)\"},{\"value\":2,\"color-hint\":\"FFFFFF\",\"description\":\"High Intensity Developed\"},{\"value\":3,\"color-hint\":\"C1C1C1\",\"description\":\"Medium Intensity Developed\"},{\"value\":4,\"color-hint\":\"979797\",\"description\":\"Low Intensity Developed\"},{\"value\":5,\"color-hint\":\"CCCA42\",\"description\":\"Developed Open Space\"},{\"value\":6,\"color-hint\":\"4E2409\",\"description\":\"Cultivated Crops\"},{\"value\":7,\"color-hint\":\"BCA05B\",\"description\":\"Pasture/Hay\"},{\"value\":8,\"color-hint\":\"EABB8E\",\"description\":\"Grassland/Herbaceous\"},{\"value\":9,\"color-hint\":\"6FEC48\",\"description\":\"Deciduous Forest\"},{\"value\":10,\"color-hint\":\"15380A\",\"description\":\"Evergreen Forest\"},{\"value\":11,\"color-hint\":\"489D48\",\"description\":\"Mixed Forest\"},{\"value\":12,\"color-hint\":\"6D6C1F\",\"description\":\"Scrub/Shrub\"},{\"value\":13,\"color-hint\":\"245A5A\",\"description\":\"Palustrine Forested Wetland\"},{\"value\":14,\"color-hint\":\"E2742D\",\"description\":\"Palustrine Scrub/Shrub Wetland\"},{\"value\":15,\"color-hint\":\"DE3BEA\",\"description\":\"Palustrine Emergent Wetland (Persistent)\"},{\"value\":16,\"color-hint\":\"37083B\",\"description\":\"Estuarine Forested Wetland\"},{\"value\":17,\"color-hint\":\"631569\",\"description\":\"Estuarine Scrub/Shrub Wetland\"},{\"value\":18,\"color-hint\":\"A028A9\",\"description\":\"Estuarine Emergent Wetland\"},{\"value\":19,\"color-hint\":\"6DEEF0\",\"description\":\"Unconsolidated Shore\"},{\"value\":20,\"color-hint\":\"F3F050\",\"description\":\"Bare Land\"},{\"value\":21,\"color-hint\":\"000A72\",\"description\":\"Open Water\"},{\"value\":22,\"color-hint\":\"0021E8\",\"description\":\"Palustrine Aquatic Bed\"},{\"value\":23,\"color-hint\":\"6777D4\",\"description\":\"Estuarine Aquatic Bed\"},{\"value\":24,\"color-hint\":\"F3D147\",\"description\":\"Tundra\"},{\"value\":25,\"color-hint\":\"BBF7EF\",\"description\":\"Perennial Ice/Snow\"}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]}},\"sci:citation\":\"National Oceanic and Atmospheric Administration, Office for Coastal Management. Name of Data Set: Coastal Change Analysis Program (C-CAP) Regional Land Cover. Charleston, SC: NOAA Office for Coastal Management. Accessed April 2022 at www.coast.noaa.gov/htdata/raster1/landcover/bulkdownload/30m_lc/.\",\"stac_version\":\"1.0.0\",\"msft:container\":\"noaa-c-cap\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Periodic coastal landcover classifications back to 1975\",\"msft:region\":\"westeurope\"},{\"id\":\"3dep-lidar-copc\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/3d-elevation-program/about-3dep-products-services\",\"title\":\"About 3DEP Products & Services\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS 3DEP Lidar Point Cloud\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/3dep-lidar-copc-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-166.8546920006028,17.655357747708283,-64.56116757979399,71.39330810146807],[144.60180842809473,13.21774453924126,146.08202179248926,18.18369664008955]]},\"temporal\":{\"interval\":[[\"2012-01-01T00:00:00Z\",\"2022-01-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USGS\",\"3DEP\",\"COG\",\"Point cloud\"],\"providers\":[{\"name\":\"Landrush\",\"roles\":[\"processor\",\"producer\"]},{\"url\":\"https://www.usgs.gov/core-science-systems/ngp/3dep/\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[2.0]},\"description\":\"This collection contains source data from the [USGS 3DEP program](https://www.usgs.gov/3d-elevation-program) reformatted into the [COPC](https://copc.io) format. A COPC file is a LAZ 1.4 file that stores point data organized in a clustered octree. It contains a VLR that describes the octree organization of data that are stored in LAZ 1.4 chunks. The end product is a one-to-one mapping of LAZ to UTM-reprojected COPC files.\\n\\nLAZ data is geospatial [LiDAR point cloud](https://en.wikipedia.org/wiki/Point_cloud) (LPC) content stored in the compressed [LASzip](https://laszip.org?) format. Data were reorganized and stored in LAZ-compatible [COPC](https://copc.io) organization for use in Planetary Computer, which supports incremental spatial access and cloud streaming.\\n\\nLPC can be summarized for construction of digital terrain models (DTM), filtered for extraction of features like vegetation and buildings, and visualized to provide a point cloud map of the physical spaces the laser scanner interacted with. LPC content from 3DEP is used to compute and extract a variety of landscape characterization products, and some of them are provided by Planetary Computer, including Height Above Ground, Relative Intensity Image, and DTM and Digital Surface Models.\\n\\nThe LAZ tiles represent a one-to-one mapping of original tiled content as provided by the [USGS 3DEP program](https://www.usgs.gov/3d-elevation-program), with the exception that the data were reprojected and normalized into appropriate UTM zones for their location without adjustment to the vertical datum. In some cases, vertical datum description may not match actual data values, especially for pre-2010 USGS 3DEP point cloud data.\\n\\nIn addition to these COPC files, various higher-level derived products are available as Cloud Optimized GeoTIFFs in [other collections](https://planetarycomputer.microsoft.com/dataset/group/3dep-lidar).\",\"item_assets\":{\"data\":{\"type\":\"application/vnd.laszip+copc\",\"roles\":[\"data\"],\"title\":\"COPC data\",\"pc:type\":\"lidar\",\"pc:encoding\":\"application/vnd.laszip+copc\"},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COPC\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"3dep-lidar\",\"msft:container\":\"usgs-3dep-copc\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/pointcloud/v1.0.0/schema.json\"],\"msft:storage_account\":\"usgslidareuwest\",\"msft:short_description\":\"Nationwide Lidar point cloud data in COPC format.\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-64A1-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/1006/MCD64_User_Guide_V61.pdf\",\"title\":\"MCD64 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MCD64A1\",\"title\":\"MCD64A1 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MCD64A1.061\",\"title\":\"LP DAAC - MCD64A1\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-64A1-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Burned Area Monthly\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-64A1-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Burned Area Monthly thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-64A1-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-11-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Imagery\",\"Global\",\"Fire\",\"MCD64A1\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Terra and Aqua combined MCD64A1 Version 6.1 Burned Area data product is a monthly, global gridded 500 meter (m) product containing per-pixel burned-area and quality information. The MCD64A1 burned-area mapping approach employs 500 m Moderate Resolution Imaging Spectroradiometer (MODIS) Surface Reflectance imagery coupled with 1 kilometer (km) MODIS active fire observations. The algorithm uses a burn sensitive Vegetation Index (VI) to create dynamic thresholds that are applied to the composite data. The VI is derived from MODIS shortwave infrared atmospherically corrected surface reflectance bands 5 and 7 with a measure of temporal texture. The algorithm identifies the date of burn for the 500 m grid cells within each individual MODIS tile. The date is encoded in a single data layer as the ordinal day of the calendar year on which the burn occurred with values assigned to unburned land pixels and additional special values reserved for missing data and water grid cells. The data layers provided in the MCD64A1 product include Burn Date, Burn Data Uncertainty, Quality Assurance, along with First Day and Last Day of reliable change detection of the year.\",\"item_assets\":{\"QA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality Assurance Indicators\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"Last_Day\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Last day of the year of reliable change detection\",\"raster:bands\":[{\"unit\":\"Day\",\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"Burn_Date\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Burn day of year\",\"raster:bands\":[{\"unit\":\"Day\",\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"First_Day\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"First day of the year of reliable change detection\",\"raster:bands\":[{\"unit\":\"Day\",\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"Burn_Date_Uncertainty\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Estimated uncertainty in burn day\",\"raster:bands\":[{\"unit\":\"Day\",\"data_type\":\"uint8\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MCD64A1.061\",\"citation\":\"Giglio, L., Justice, C., Boschetti, L., & Roy, D. (2021). MODIS/Terra+Aqua Burned Area Monthly L3 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MCD64A1.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Burned Area Monthly\",\"msft:region\":\"westeurope\"},{\"id\":\"alos-fnf-mosaic\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic\"},{\"rel\":\"handbook\",\"href\":\"https://www.eorc.jaxa.jp/ALOS/en/dataset/pdf/DatasetDescription_PALSAR2_FNF_V200.pdf\",\"type\":\"application/pdf\",\"title\":\"Global 25 m Resolution PALSAR-2/PALSAR Forest/Non-Forest Map (FNF)\",\"description\":\"Also includes data usage information\"},{\"rel\":\"license\",\"href\":\"https://earth.jaxa.jp/policy/en.html\",\"type\":\"text/html\",\"title\":\"JAXA Terms of Use of Research Data\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/alos-fnf-mosaic\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ALOS Forest/Non-Forest Annual Mosaic\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/alos-fnf-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"ALOS PALSAR MOSAIC\"},\"geoparquet-items\":{\"href\":\"abfs://items/alos-fnf-mosaic.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,85.0,180.0,-56.0]]},\"temporal\":{\"interval\":[[\"2015-01-01T00:00:00Z\",\"2020-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"version\":\"2.0.0\",\"keywords\":[\"ALOS\",\"JAXA\",\"Forest\",\"Land Cover\",\"Global\"],\"providers\":[{\"url\":\"https://www.eorc.jaxa.jp/ALOS/en/dataset/fnf_e.htm\",\"name\":\"Japan Aerospace Exploration Agency\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://developmentseed.org\",\"name\":\"Development Seed\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft Planetary Computer\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"ALOS\",\"ALOS-2\"],\"instruments\":[\"PALSAR\",\"PALSAR-2\"]},\"description\":\"The global 25m resolution SAR mosaics and forest/non-forest maps are free and open annual datasets generated by [JAXA](https://www.eorc.jaxa.jp/ALOS/en/dataset/fnf_e.htm) using the L-band Synthetic Aperture Radar sensors on the Advanced Land Observing Satellite-2 (ALOS-2 PALSAR-2), the Advanced Land Observing Satellite (ALOS PALSAR) and the Japanese Earth Resources Satellite-1 (JERS-1 SAR).\\n\\nThe global forest/non-forest maps (FNF) were generated by a Random Forest machine learning-based classification method, with the re-processed global 25m resolution [PALSAR-2 mosaic dataset](https://planetarycomputer.microsoft.com/dataset/alos-palsar-mosaic) (Ver. 2.0.0) as input. Here, the \\\"forest\\\" is defined as the tree covered land with an area larger than 0.5 ha and a canopy cover of over 10 %, in accordance with the FAO definition of forest. The classification results are presented in four categories, with two categories of forest areas: forests with a canopy cover of 90 % or more and forests with a canopy cover of 10 % to 90 %, depending on the density of the forest area.\\n\\nSee the [Product Description](https://www.eorc.jaxa.jp/ALOS/en/dataset/pdf/DatasetDescription_PALSAR2_FNF_V200.pdf) for more details.\\n\",\"item_assets\":{\"C\":{\"role\":\"data\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"C\",\"description\":\"Forest vs Non-Forest classification\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\"}],\"classification:classes\":[{\"name\":\"no_data\",\"value\":0,\"description\":\"No data\"},{\"name\":\"forest (>90%)\",\"value\":1,\"description\":\"Forest (>90% canopy cover)\"},{\"name\":\"forest (10-90%)\",\"value\":2,\"description\":\"Forest (10-90% canopy cover)\"},{\"name\":\"non_forest\",\"value\":3,\"description\":\"Non-forest\"},{\"name\":\"water\",\"value\":4,\"description\":\"Water\"}]}},\"stac_version\":\"1.0.0\",\"msft:container\":\"palsar\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/version/v1.0.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"https://pceo.blob.core.windows.net/\",\"msft:short_description\":\"Global 25m resolution map classifying \\\"forest\\\" and \\\"non-forest\\\" landcover.\",\"msft:region\":\"westeurope\"},{\"id\":\"3dep-lidar-returns\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/3d-elevation-program/about-3dep-products-services\",\"title\":\"About 3DEP Products & Services\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-returns\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS 3DEP Lidar Returns\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/numberofreturns-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"},\"geoparquet-items\":{\"href\":\"abfs://items/3dep-lidar-returns.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-166.8546920006028,17.655357747708283,-64.56116757979399,71.39330810146807],[144.60180842809473,13.21774453924126,146.08202179248926,18.18369664008955]]},\"temporal\":{\"interval\":[[\"2012-01-01T00:00:00Z\",\"2022-01-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USGS\",\"3DEP\",\"COG\",\"NumberOfReturns\"],\"providers\":[{\"name\":\"Landrush\",\"roles\":[\"processor\",\"producer\"]},{\"url\":\"https://www.usgs.gov/core-science-systems/ngp/3dep/\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[5.0]},\"description\":\"This collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc). It is a collection of Cloud Optimized GeoTIFFs representing the number of returns for a given pulse.\\n\\nThis values are based on the PointSourceId [PDAL dimension](https://pdal.io/dimensions.html) and uses [`pdal.filters.outlier`](https://pdal.io/stages/filters.outlier.html#filters-outlier) and [`pdal.filters.range`](https://pdal.io/stages/filters.range.html#filters-range) to remove outliers and noise.\\n\\nThe values are based on the NumberOfReturns [PDAL dimension](https://pdal.io/dimensions.html) and uses [`pdal.filters.outlier`](https://pdal.io/stages/filters.outlier.html#filters-outlier) and [`pdal.filters.range`](https://pdal.io/stages/filters.range.html#filters-range) to remove outliers and noise.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"COG data\",\"raster:bands\":[{\"name\":\"ReturnNumber\",\"unit\":\"metre\",\"sampling\":\"point\",\"data_type\":\"int16\",\"description\":\"Raster for ReturnNumber PDAL dimension\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"3dep-lidar\",\"msft:container\":\"usgs-3dep-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json#\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"usgslidareuwest\",\"msft:short_description\":\"3DEP Lidar collection for the Cloud Optimized Geotiffs (COGs) based on the ReturnNumber dimension.\",\"msft:region\":\"westeurope\"},{\"id\":\"mobi\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi\"},{\"rel\":\"license\",\"href\":\"https://aka.ms/mobi-license\",\"title\":\"NatureServe MoBI license\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/mobi\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MoBI: Map of Biodiversity Importance\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/mobi.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MoBI\"},\"geoparquet-items\":{\"href\":\"abfs://items/mobi.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-130.23751729209377,21.736663926419077,-63.66198266211968,49.184200486300604]]},\"temporal\":{\"interval\":[[\"2020-04-14T00:00:00Z\",\"2020-04-14T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"MoBI\",\"Natureserve\",\"United States\",\"Biodiversity\"],\"providers\":[{\"url\":\"http://natureserve.org/\",\"name\":\"NatureServe\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[990]},\"description\":\"The [Map of Biodiversity Importance](https://www.natureserve.org/conservation-tools/projects/map-biodiversity-importance) (MoBI) consists of raster maps that combine habitat information for 2,216 imperiled species occurring in the conterminous United States, using weightings based on range size and degree of protection to identify areas of high importance for biodiversity conservation. Species included in the project are those which, as of September 2018, had a global conservation status of G1 (critical imperiled) or G2 (imperiled) or which are listed as threatened or endangered at the full species level under the United States Endangered Species Act. Taxonomic groups included in the project are vertebrates (birds, mammals, amphibians, reptiles, turtles, crocodilians, and freshwater and anadromous fishes), vascular plants, selected aquatic invertebrates (freshwater mussels and crayfish) and selected pollinators (bumblebees, butterflies, and skippers).\\n\\nThere are three types of spatial data provided, described in more detail below: species richness, range-size rarity, and protection-weighted range-size rarity. For each type, this data set includes five different layers – one for all species combined, and four additional layers that break the data down by taxonomic group (vertebrates, plants, freshwater invertebrates, and pollinators) – for a total of fifteen layers.\\n\\nThese data layers are intended to identify areas of high potential value for on-the-ground biodiversity protection efforts. As a synthesis of predictive models, they cannot guarantee either the presence or absence of imperiled species at a given location. For site-specific decision-making, these data should be used in conjunction with field surveys and/or documented occurrence data, such as is available from the [NatureServe Network](https://www.natureserve.org/natureserve-network).\\n\",\"item_assets\":{\"RSR_All\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Range-size rarity for all species\"},\"RSR_Plants\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Range-size rarity for vascular plants\"},\"RSR_Vertebrates\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Range-size rarity for vertebrates\"},\"RSR_AquaticInverts\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Range-size rarity for aquatic invertebrates\"},\"PWRSR_GAP12_SUM_All\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Protection-weighted range-size rarity for all species\"},\"SpeciesRichness_All\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Species richness for all species\"},\"RSR_PollinatorInverts\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Range-size rarity for pollinators\"},\"PWRSR_GAP12_SUM_Plants\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Protection-weighted range-size rarity for vascular plants\"},\"SpeciesRichness_Plants\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Species richness for vascular plants\"},\"PWRSR_GAP12_SUM_Vertebrates\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Protection-weighted range-size rarity for vertebrates\"},\"SpeciesRichness_Vertebrates\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Species richness for vertebrates\"},\"PWRSR_GAP12_SUM_AquaticInverts\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Protection-weighted range-size rarity for aquatic invertebrates\"},\"SpeciesRichness_AquaticInverts\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Species richness for aquatic invertebrates\"},\"PWRSR_GAP12_SUM_PollinatorInverts\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Protection-weighted range-size rarity for pollinators\"},\"SpeciesRichness_PollinatorInverts\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Species richness for pollinators\"}},\"stac_version\":\"1.0.0\",\"msft:container\":\"mobi\",\"stac_extensions\":[\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Habitat information for 2,216 imperiled species occurring in the continental United States\",\"msft:region\":\"westeurope\"},{\"id\":\"landsat-c2-l2\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9IAXOVV\",\"title\":\"Landsat 4-5 TM Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9C7I13B\",\"title\":\"Landsat 7 ETM+ Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat 8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/core-science-systems/hdds/data-policy\",\"title\":\"Public Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/landsat-c2-l2\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Landsat Collection 2 Level-2\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/landsat-c2-l2-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Landsat Collection 2 Level-2 thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/landsat-c2-l2.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-90.0,180.0,90.0]]},\"temporal\":{\"interval\":[[\"1982-08-22T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Landsat\",\"USGS\",\"NASA\",\"Satellite\",\"Global\",\"Imagery\",\"Reflectance\",\"Temperature\"],\"providers\":[{\"url\":\"https://landsat.gsfc.nasa.gov/\",\"name\":\"NASA\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products\",\"name\":\"USGS\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[30,60,100,120],\"sci:doi\":[\"10.5066/P9IAXOVV\",\"10.5066/P9C7I13B\",\"10.5066/P9OGBGM6\"],\"eo:bands\":[{\"name\":\"TM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Thematic Mapper)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.07},{\"name\":\"TM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Thematic Mapper)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"TM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Thematic Mapper)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"TM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Thematic Mapper)\",\"center_wavelength\":0.83,\"full_width_half_max\":0.14},{\"name\":\"TM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"TM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Thematic Mapper)\",\"center_wavelength\":11.45,\"full_width_half_max\":2.1},{\"name\":\"TM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":2.22,\"full_width_half_max\":0.27},{\"name\":\"ETM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.07},{\"name\":\"ETM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"ETM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"ETM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.84,\"full_width_half_max\":0.13},{\"name\":\"ETM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"ETM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":11.34,\"full_width_half_max\":2.05},{\"name\":\"ETM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.28},{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol (Operational Land Imager)\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02},{\"name\":\"OLI_B2\",\"common_name\":\"blue\",\"description\":\"Visible blue (Operational Land Imager)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06},{\"name\":\"OLI_B3\",\"common_name\":\"green\",\"description\":\"Visible green (Operational Land Imager)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06},{\"name\":\"OLI_B4\",\"common_name\":\"red\",\"description\":\"Visible red (Operational Land Imager)\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04},{\"name\":\"OLI_B5\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Operational Land Imager)\",\"center_wavelength\":0.87,\"full_width_half_max\":0.03},{\"name\":\"OLI_B6\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.09},{\"name\":\"OLI_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.19},{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave infrared (Thermal Infrared Sensor)\",\"center_wavelength\":10.9,\"full_width_half_max\":0.59}],\"platform\":[\"landsat-4\",\"landsat-5\",\"landsat-7\",\"landsat-8\",\"landsat-9\"],\"instruments\":[\"tm\",\"etm+\",\"oli\",\"tirs\"],\"view:off_nadir\":{\"maximum\":15,\"minimum\":0}},\"description\":\"Landsat Collection 2 Level-2 [Science Products](https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products), consisting of atmospherically corrected [surface reflectance](https://www.usgs.gov/landsat-missions/landsat-collection-2-surface-reflectance) and [surface temperature](https://www.usgs.gov/landsat-missions/landsat-collection-2-surface-temperature) image data. Collection 2 Level-2 Science Products are available from August 22, 1982 to present.\\n\\nThis dataset represents the global archive of Level-2 data from [Landsat Collection 2](https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-2) acquired by the [Thematic Mapper](https://landsat.gsfc.nasa.gov/thematic-mapper/) onboard Landsat 4 and 5, the [Enhanced Thematic Mapper](https://landsat.gsfc.nasa.gov/the-enhanced-thematic-mapper-plus-etm/) onboard Landsat 7, and the [Operatational Land Imager](https://landsat.gsfc.nasa.gov/satellites/landsat-8/spacecraft-instruments/operational-land-imager/) and [Thermal Infrared Sensor](https://landsat.gsfc.nasa.gov/satellites/landsat-8/spacecraft-instruments/thermal-infrared-sensor/) onboard Landsat 8 and 9. Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\n\",\"item_assets\":{\"qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Quality Assessment Band (ST_QA) Surface Temperature Product\",\"raster:bands\":[{\"unit\":\"kelvin\",\"scale\":0.01,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"ang\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Angle Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients File\"},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Red Band\",\"eo:bands\":[{\"common_name\":\"red\",\"description\":\"Visible red\"}],\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Blue Band\",\"eo:bands\":[{\"common_name\":\"blue\",\"description\":\"Visible blue\"}],\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"drad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Downwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Downwelled Radiance Band (ST_DRAD) Surface Temperature Product\",\"raster:bands\":[{\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"emis\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Emissivity Band\",\"description\":\"Collection 2 Level-2 Emissivity Band (ST_EMIS) Surface Temperature Product\",\"raster:bands\":[{\"unit\":\"emissivity coefficient\",\"scale\":0.0001,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"emsd\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Emissivity Standard Deviation Band\",\"description\":\"Collection 2 Level-2 Emissivity Standard Deviation Band (ST_EMSD) Surface Temperature Product\",\"raster:bands\":[{\"unit\":\"emissivity coefficient\",\"scale\":0.0001,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"lwir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"temperature\"],\"title\":\"Surface Temperature Band\",\"eo:bands\":[{\"common_name\":\"lwir\",\"description\":\"Long-wave infrared\"}],\"description\":\"Collection 2 Level-2 Thermal Infrared Band (ST_B6) Surface Temperature\",\"raster:bands\":[{\"unit\":\"kelvin\",\"scale\":0.00341802,\"nodata\":0,\"offset\":149.0,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"trad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Thermal Radiance Band\",\"description\":\"Collection 2 Level-2 Thermal Radiance Band (ST_TRAD) Surface Temperature Product\",\"raster:bands\":[{\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"urad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Upwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Upwelled Radiance Band (ST_URAD) Surface Temperature Product\",\"raster:bands\":[{\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"atran\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Atmospheric Transmittance Band\",\"description\":\"Collection 2 Level-2 Atmospheric Transmittance Band (ST_ATRAN) Surface Temperature Product\",\"raster:bands\":[{\"scale\":0.0001,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"cdist\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Cloud Distance Band\",\"description\":\"Collection 2 Level-2 Cloud Distance Band (ST_CDIST) Surface Temperature Product\",\"raster:bands\":[{\"unit\":\"kilometer\",\"scale\":0.01,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Green Band\",\"eo:bands\":[{\"common_name\":\"green\",\"description\":\"Visible green\",\"center_wavelength\":0.56}],\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Near Infrared Band 0.8\",\"eo:bands\":[{\"common_name\":\"nir08\",\"description\":\"Near infrared\"}],\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"lwir11\":{\"gsd\":100,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"temperature\"],\"title\":\"Surface Temperature Band\",\"eo:bands\":[{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave infrared\",\"center_wavelength\":10.9,\"full_width_half_max\":0.59}],\"description\":\"Collection 2 Level-2 Thermal Infrared Band (ST_B10) Surface Temperature\",\"raster:bands\":[{\"unit\":\"kelvin\",\"scale\":0.00341802,\"nodata\":0,\"offset\":149.0,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave Infrared Band 1.6\",\"eo:bands\":[{\"common_name\":\"swir16\",\"description\":\"Short-wave infrared\"}],\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Short-wave Infrared Band 2.2\",\"eo:bands\":[{\"common_name\":\"swir22\",\"description\":\"Short-wave infrared\"}],\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 2.2 (SR_B7) Surface Reflectance\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Coastal/Aerosol Band\",\"eo:bands\":[{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02}],\"description\":\"Collection 2 Level-2 Coastal/Aerosol Band (SR_B1) Surface Reflectance\",\"raster:bands\":[{\"scale\":0.0000275,\"nodata\":0,\"offset\":-0.2,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"mtl.txt\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Product Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata File (txt)\"},\"mtl.xml\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata File (xml)\"},\"cloud_qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"],\"title\":\"Cloud Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Cloud Quality Assessment Band (SR_CLOUD_QA) Surface Reflectance Product\",\"raster:bands\":[{\"unit\":\"bit index\",\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:bitfields\":[{\"name\":\"ddv\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_ddv\",\"value\":0,\"description\":\"Pixel has no DDV\"},{\"name\":\"ddv\",\"value\":1,\"description\":\"Pixel has DDV\"}],\"description\":\"Dense Dark Vegetation (DDV)\"},{\"name\":\"cloud\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_cloud\",\"value\":0,\"description\":\"Pixel has no cloud\"},{\"name\":\"cloud\",\"value\":1,\"description\":\"Pixel has cloud\"}],\"description\":\"Cloud mask\"},{\"name\":\"cloud_shadow\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_shadow\",\"value\":0,\"description\":\"Pixel has no cloud shadow\"},{\"name\":\"shadow\",\"value\":1,\"description\":\"Pixel has cloud shadow\"}],\"description\":\"Cloud shadow mask\"},{\"name\":\"cloud_adjacent\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_adjacent\",\"value\":0,\"description\":\"Pixel is not adjacent to cloud\"},{\"name\":\"adjacent\",\"value\":1,\"description\":\"Pixel is adjacent to cloud\"}],\"description\":\"Cloud adjacency\"},{\"name\":\"snow\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_snow\",\"value\":0,\"description\":\"Pixel is not snow\"},{\"name\":\"shadow\",\"value\":1,\"description\":\"Pixel is snow\"}],\"description\":\"Snow mask\"},{\"name\":\"water\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Pixel is not water\"},{\"name\":\"water\",\"value\":1,\"description\":\"Pixel is water\"}],\"description\":\"Water mask\"}]},\"mtl.json\":{\"type\":\"application/json\",\"roles\":[\"metadata\"],\"title\":\"Product Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata File (json)\"},\"qa_pixel\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"],\"title\":\"Pixel Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality Assessment Band (QA_PIXEL)\",\"raster:bands\":[{\"unit\":\"bit index\",\"nodata\":1,\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"qa_radsat\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"saturation\"],\"raster:bands\":[{\"unit\":\"bit index\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"qa_aerosol\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data-mask\",\"water-mask\"],\"title\":\"Aerosol Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product\",\"raster:bands\":[{\"unit\":\"bit index\",\"nodata\":1,\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:bitfields\":[{\"name\":\"fill\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_fill\",\"value\":0,\"description\":\"Pixel is not fill\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Pixel is fill\"}],\"description\":\"Image or fill data\"},{\"name\":\"retrieval\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_valid\",\"value\":0,\"description\":\"Pixel retrieval is not valid\"},{\"name\":\"valid\",\"value\":1,\"description\":\"Pixel retrieval is valid\"}],\"description\":\"Valid aerosol retrieval\"},{\"name\":\"water\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_water\",\"value\":0,\"description\":\"Pixel is not water\"},{\"name\":\"water\",\"value\":1,\"description\":\"Pixel is water\"}],\"description\":\"Water mask\"},{\"name\":\"interpolated\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_interpolated\",\"value\":0,\"description\":\"Pixel is not interpolated aerosol\"},{\"name\":\"interpolated\",\"value\":1,\"description\":\"Pixel is interpolated aerosol\"}],\"description\":\"Aerosol interpolation\"},{\"name\":\"level\",\"length\":2,\"offset\":6,\"classes\":[{\"name\":\"climatology\",\"value\":0,\"description\":\"No aerosol correction applied\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low aerosol level\"},{\"name\":\"medium\",\"value\":2,\"description\":\"Medium aerosol level\"},{\"name\":\"high\",\"value\":3,\"description\":\"High aerosol level\"}],\"description\":\"Aerosol level\"}]},\"atmos_opacity\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Atmospheric Opacity Band\",\"description\":\"Collection 2 Level-2 Atmospheric Opacity Band (SR_ATMOS_OPACITY) Surface Reflectance Product\",\"raster:bands\":[{\"scale\":0.001,\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"landsat\",\"msft:container\":\"landsat-c2\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"landsateuwest\",\"msft:short_description\":\"Landsat Collection 2 Level-2 data from the Thematic Mapper (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor (TIRS) onboard Landsat 8 and 9.\",\"msft:region\":\"westeurope\"},{\"id\":\"era5-pds\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds\"},{\"rel\":\"license\",\"href\":\"https://apps.ecmwf.int/datasets/licences/copernicus/\",\"type\":\"application/pdf\",\"title\":\"License to Use Copernicus Products\"},{\"rel\":\"describedby\",\"href\":\"https://confluence.ecmwf.int/display/CKB/ERA5\",\"type\":\"text/html\",\"title\":\"Project homepage\"},{\"rel\":\"describedby\",\"href\":\"https://confluence.ecmwf.int/display/CKB/How+to+acknowledge+and+cite+a+Climate+Data+Store+%28CDS%29+catalogue+entry+and+the+data+published+as+part+of+it\",\"type\":\"text/html\",\"title\":\"How to cite\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/era5-pds\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ERA5 - PDS\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/era5-thumbnail.png\",\"type\":\"image/png\",\"title\":\"Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/era5-pds.parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"media_type\":\"application/x-parquet\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"extra_fields\":{\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1979-01-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"ERA5\",\"ECMWF\",\"Precipitation\",\"Temperature\",\"Reanalysis\",\"Weather\"],\"providers\":[{\"url\":\"https://www.ecmwf.int/\",\"name\":\"ECMWF\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetos.com/\",\"name\":\"Planet OS\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"era5:kind\":[\"fc\",\"an\"]},\"description\":\"ERA5 is the fifth generation ECMWF atmospheric reanalysis of the global climate\\ncovering the period from January 1950 to present. ERA5 is produced by the\\nCopernicus Climate Change Service (C3S) at ECMWF.\\n\\nReanalysis combines model data with observations from across the world into a\\nglobally complete and consistent dataset using the laws of physics. This\\nprinciple, called data assimilation, is based on the method used by numerical\\nweather prediction centres, where every so many hours (12 hours at ECMWF) a\\nprevious forecast is combined with newly available observations in an optimal\\nway to produce a new best estimate of the state of the atmosphere, called\\nanalysis, from which an updated, improved forecast is issued. Reanalysis works\\nin the same way, but at reduced resolution to allow for the provision of a\\ndataset spanning back several decades. Reanalysis does not have the constraint\\nof issuing timely forecasts, so there is more time to collect observations, and\\nwhen going further back in time, to allow for the ingestion of improved versions\\nof the original observations, which all benefit the quality of the reanalysis\\nproduct.\\n\\nThis dataset was converted to Zarr by [Planet OS](https://planetos.com/).\\nSee [their documentation](https://github.com/planet-os/notebooks/blob/master/aws/era5-pds.md)\\nfor more.\\n\\n## STAC Metadata\\n\\nTwo types of data variables are provided: \\\"forecast\\\" (`fc`) and \\\"analysis\\\" (`an`).\\n\\n* An **analysis**, of the atmospheric conditions, is a blend of observations\\n with a previous forecast. An analysis can only provide\\n [instantaneous](https://confluence.ecmwf.int/display/CKB/Model+grid+box+and+time+step)\\n \ parameters (parameters valid at a specific time, e.g temperature at 12:00),\\n \ but not accumulated parameters, mean rates or min/max parameters.\\n* A **forecast** starts with an analysis at a specific time (the 'initialization\\n \ time'), and a model computes the atmospheric conditions for a number of\\n \ 'forecast steps', at increasing 'validity times', into the future. A forecast\\n \ can provide\\n [instantaneous](https://confluence.ecmwf.int/display/CKB/Model+grid+box+and+time+step)\\n \ parameters, accumulated parameters, mean rates, and min/max parameters.\\n\\nEach [STAC](https://stacspec.org/) item in this collection covers a single month\\nand the entire globe. There are two STAC items per month, one for each type of data\\nvariable (`fc` and `an`). The STAC items include an `ecmwf:kind` properties to\\nindicate which kind of variables that STAC item catalogs.\\n\\n## How to acknowledge, cite and refer to ERA5\\n\\nAll users of data on the Climate Data Store (CDS) disks (using either the web interface or the CDS API) must provide clear and visible attribution to the Copernicus programme and are asked to cite and reference the dataset provider:\\n\\nAcknowledge according to the [licence to use Copernicus Products](https://cds.climate.copernicus.eu/api/v2/terms/static/licence-to-use-copernicus-products.pdf).\\n\\nCite each dataset used as indicated on the relevant CDS entries (see link to \\\"Citation\\\" under References on the Overview page of the dataset entry).\\n\\nThroughout the content of your publication, the dataset used is referred to as Author (YYYY).\\n\\nThe 3-steps procedure above is illustrated with this example: [Use Case 2: ERA5 hourly data on single levels from 1979 to present](https://confluence.ecmwf.int/display/CKB/Use+Case+2%3A+ERA5+hourly+data+on+single+levels+from+1979+to+present).\\n\\nFor complete details, please refer to [How to acknowledge and cite a Climate Data Store (CDS) catalogue entry and the data published as part of it](https://confluence.ecmwf.int/display/CKB/How+to+acknowledge+and+cite+a+Climate+Data+Store+%28CDS%29+catalogue+entry+and+the+data+published+as+part+of+it).\",\"item_assets\":{\"surface_air_pressure\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Surface pressure\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"sea_surface_temperature\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Sea surface temperature\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"eastward_wind_at_10_metres\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"10 metre U wind component\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"air_temperature_at_2_metres\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"2 metre temperature\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"eastward_wind_at_100_metres\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"100 metre U wind component\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"northward_wind_at_10_metres\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"10 metre V wind component\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"northward_wind_at_100_metres\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"100 metre V wind component\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"air_pressure_at_mean_sea_level\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Mean sea level pressure\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"dew_point_temperature_at_2_metres\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"2 metre dewpoint temperature\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"precipitation_amount_1hour_Accumulation\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Total precipitation\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"air_temperature_at_2_metres_1hour_Maximum\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Maximum temperature at 2 metres since previous post-processing\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"air_temperature_at_2_metres_1hour_Minimum\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Minimum temperature at 2 metres since previous post-processing\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}},\"integral_wrt_time_of_surface_direct_downwelling_shortwave_flux_in_air_1hour_Accumulation\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Surface solar radiation downwards\",\"xarray:open_kwargs\":{\"chunks\":{},\"engine\":\"zarr\",\"consolidated\":true,\"storage_options\":{\"account_name\":\"cpdataeuwest\"}}}},\"stac_version\":\"1.0.0\",\"cube:variables\":{\"time1_bounds\":{\"type\":\"data\",\"attrs\":{},\"shape\":[null,2],\"dimensions\":[\"time\",\"nv\"]},\"surface_air_pressure\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"nameCDM\":\"Surface_pressure_surface\",\"long_name\":\"Surface pressure\",\"nameECMWF\":\"Surface pressure\",\"product_type\":\"analysis\",\"standard_name\":\"surface_air_pressure\",\"shortNameECMWF\":\"sp\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Surface pressure\"},\"sea_surface_temperature\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"nameCDM\":\"Sea_surface_temperature_surface\",\"long_name\":\"Sea surface temperature\",\"nameECMWF\":\"Sea surface temperature\",\"product_type\":\"analysis\",\"standard_name\":\"sea_surface_temperature\",\"shortNameECMWF\":\"sst\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Sea surface temperature\"},\"eastward_wind_at_10_metres\":{\"type\":\"data\",\"unit\":\"m s**-1\",\"attrs\":{\"units\":\"m s**-1\",\"nameCDM\":\"10_metre_U_wind_component_surface\",\"long_name\":\"10 metre U wind component\",\"nameECMWF\":\"10 metre U wind component\",\"product_type\":\"analysis\",\"standard_name\":\"eastward_wind\",\"shortNameECMWF\":\"10u\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"10 metre U wind component\"},\"air_temperature_at_2_metres\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"nameCDM\":\"2_metre_temperature_surface\",\"long_name\":\"2 metre temperature\",\"nameECMWF\":\"2 metre temperature\",\"product_type\":\"analysis\",\"standard_name\":\"air_temperature\",\"shortNameECMWF\":\"2t\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"2 metre temperature\"},\"eastward_wind_at_100_metres\":{\"type\":\"data\",\"unit\":\"m s**-1\",\"attrs\":{\"units\":\"m s**-1\",\"nameCDM\":\"100_metre_U_wind_component_surface\",\"long_name\":\"100 metre U wind component\",\"nameECMWF\":\"100 metre U wind component\",\"product_type\":\"analysis\",\"standard_name\":\"eastward_wind\",\"shortNameECMWF\":\"100u\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"100 metre U wind component\"},\"northward_wind_at_10_metres\":{\"type\":\"data\",\"unit\":\"m s**-1\",\"attrs\":{\"units\":\"m s**-1\",\"nameCDM\":\"10_metre_V_wind_component_surface\",\"long_name\":\"10 metre V wind component\",\"nameECMWF\":\"10 metre V wind component\",\"product_type\":\"analysis\",\"standard_name\":\"northward_wind\",\"shortNameECMWF\":\"10v\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"10 metre V wind component\"},\"northward_wind_at_100_metres\":{\"type\":\"data\",\"unit\":\"m s**-1\",\"attrs\":{\"units\":\"m s**-1\",\"nameCDM\":\"100_metre_V_wind_component_surface\",\"long_name\":\"100 metre V wind component\",\"nameECMWF\":\"100 metre V wind component\",\"product_type\":\"analysis\",\"standard_name\":\"northward_wind\",\"shortNameECMWF\":\"100v\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"100 metre V wind component\"},\"air_pressure_at_mean_sea_level\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"nameCDM\":\"Mean_sea_level_pressure_surface\",\"long_name\":\"Mean sea level pressure\",\"nameECMWF\":\"Mean sea level pressure\",\"product_type\":\"analysis\",\"standard_name\":\"air_pressure_at_mean_sea_level\",\"shortNameECMWF\":\"msl\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Mean sea level pressure\"},\"dew_point_temperature_at_2_metres\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"nameCDM\":\"2_metre_dewpoint_temperature_surface\",\"long_name\":\"2 metre dewpoint temperature\",\"nameECMWF\":\"2 metre dewpoint temperature\",\"product_type\":\"analysis\",\"standard_name\":\"dew_point_temperature\",\"shortNameECMWF\":\"2d\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"2 metre dewpoint temperature\"},\"precipitation_amount_1hour_Accumulation\":{\"type\":\"data\",\"unit\":\"m\",\"attrs\":{\"units\":\"m\",\"nameCDM\":\"Total_precipitation_1hour_Accumulation\",\"long_name\":\"Total precipitation\",\"nameECMWF\":\"Total precipitation\",\"product_type\":\"forecast\",\"standard_name\":\"precipitation_amount\",\"shortNameECMWF\":\"tp\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Total precipitation\"},\"air_temperature_at_2_metres_1hour_Maximum\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"nameCDM\":\"Maximum_temperature_at_2_metres_since_previous_post-processing_surface_1_Hour_2\",\"long_name\":\"Maximum temperature at 2 metres since previous post-processing\",\"nameECMWF\":\"Maximum temperature at 2 metres since previous post-processing\",\"product_type\":\"forecast\",\"standard_name\":\"air_temperature\",\"shortNameECMWF\":\"mx2t\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Maximum temperature at 2 metres since previous post-processing\"},\"air_temperature_at_2_metres_1hour_Minimum\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"nameCDM\":\"Minimum_temperature_at_2_metres_since_previous_post-processing_surface_1_Hour_2\",\"long_name\":\"Minimum temperature at 2 metres since previous post-processing\",\"nameECMWF\":\"Minimum temperature at 2 metres since previous post-processing\",\"product_type\":\"forecast\",\"standard_name\":\"air_temperature\",\"shortNameECMWF\":\"mn2t\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Minimum temperature at 2 metres since previous post-processing\"},\"integral_wrt_time_of_surface_direct_downwelling_shortwave_flux_in_air_1hour_Accumulation\":{\"type\":\"data\",\"unit\":\"J m**-2\",\"attrs\":{\"units\":\"J m**-2\",\"nameCDM\":\"Surface_solar_radiation_downwards_surface_1_Hour_Accumulation\",\"long_name\":\"Surface solar radiation downwards\",\"nameECMWF\":\"Surface solar radiation downwards\",\"product_type\":\"forecast\",\"standard_name\":\"integral_wrt_time_of_surface_direct_downwelling_shortwave_flux_in_air\",\"shortNameECMWF\":\"ssrd\"},\"shape\":[null,721,1440],\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Surface solar radiation downwards\"}},\"msft:container\":\"era5\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"step\":-0.25,\"type\":\"spatial\",\"extent\":[-90.0,90.0],\"description\":\"latitude\",\"reference_system\":\"epsg:4326\"},\"lon\":{\"axis\":\"x\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[0.0,359.75],\"description\":\"longitude\",\"reference_system\":\"epsg:4326\"},\"time\":{\"step\":\"P0DT1H0M0S\",\"type\":\"temporal\",\"extent\":[\"1970-01-01T00:00:00Z\",null]}},\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"cpdataeuwest\",\"msft:short_description\":\"A comprehensive reanalysis, which assimilates as many observations as possible in the upper air and near surface.\",\"msft:region\":\"westeurope\"},{\"id\":\"chloris-biomass\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass\"},{\"rel\":\"license\",\"href\":\"https://spdx.org/licenses/CC-BY-NC-SA-4.0.html\",\"title\":\"Creative Commons Attribution Non Commercial Share Alike 4.0 International\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/chloris-biomass\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Chloris Biomass\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/chloris-biomass.jpg\",\"type\":\"image/jpg\",\"roles\":[\"thumbnail\"],\"title\":\"Chloris Biomass\"},\"geoparquet-items\":{\"href\":\"abfs://items/chloris-biomass.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-179.95,-60,179.95,90]]},\"temporal\":{\"interval\":[[\"2003-07-31T00:00:00Z\",\"2019-07-31T00:00:00Z\"]]}},\"license\":\"CC-BY-NC-SA-4.0\",\"keywords\":[\"Chloris\",\"Biomass\",\"MODIS\",\"Carbon\"],\"providers\":[{\"url\":\"http://chloris.earth/\",\"name\":\"Chloris\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[4633]},\"description\":\"The Chloris Global Biomass 2003 - 2019 dataset provides estimates of stock and change in aboveground biomass for Earth's terrestrial woody vegetation ecosystems. It covers the period 2003 - 2019, at annual time steps. The global dataset has a circa 4.6 km spatial resolution.\\n\\nThe maps and data sets were generated by combining multiple remote sensing measurements from space borne satellites, processed using state-of-the-art machine learning and statistical methods, validated with field data from multiple countries. The dataset provides direct estimates of aboveground stock and change, and are not based on land use or land cover area change, and as such they include gains and losses of carbon stock in all types of woody vegetation - whether natural or plantations.\\n\\nAnnual stocks are expressed in units of tons of biomass. Annual changes in stocks are expressed in units of CO2 equivalent, i.e., the amount of CO2 released from or taken up by terrestrial ecosystems for that specific pixel.\\n\\nThe spatial data sets are available on [Microsoft\u2019s Planetary Computer](https://planetarycomputer.microsoft.com/dataset/chloris-biomass) under a Creative Common license of the type Attribution-Non Commercial-Share Alike [CC BY-NC-SA](https://spdx.org/licenses/CC-BY-NC-SA-4.0.html).\\n\\n[Chloris Geospatial](https://chloris.earth/) is a mission-driven technology company that develops software and data products on the state of natural capital for use by business, governments, and the social sector.\\n\",\"item_assets\":{\"biomass\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Annual estimates of aboveground woody biomass.\",\"raster:bands\":[{\"unit\":\"tonnes\",\"nodata\":2147483647,\"data_type\":\"uint32\"}]},\"biomass_wm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Annual estimates of aboveground woody biomass (Web Mercator).\",\"raster:bands\":[{\"unit\":\"tonnes\",\"nodata\":2147483647,\"data_type\":\"uint32\"}]},\"biomass_change\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Annual estimates of changes (gains and losses) in aboveground woody biomass from the previous year.\",\"raster:bands\":[{\"unit\":\"tonnes\",\"nodata\":-32768,\"data_type\":\"int16\"}]},\"biomass_change_wm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Annual estimates of changes (gains and losses) in aboveground woody biomass from the previous year (Web Mercator).\",\"raster:bands\":[{\"unit\":\"tonnes\",\"nodata\":-32768,\"data_type\":\"int16\"}]}},\"stac_version\":\"1.0.0\",\"msft:container\":\"chloris-biomass\",\"stac_extensions\":[\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"The Chloris Global Biomass 2003 - 2019 dataset provides estimates of stock and change in aboveground biomass for Earth's terrestrial woody vegetation ecosystems during the period 2003 - 2019, at annual time steps. The global dataset has a circa 4.6 km spatial resolution.\",\"msft:region\":\"westeurope\"},{\"id\":\"kaza-hydroforecast\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast\"},{\"rel\":\"license\",\"href\":\"https://cdla.dev/sharing-1-0/\",\"type\":\"text/html\",\"title\":\"Community Data License Agreement \u2013 Sharing, Version 1.0\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/kaza-hydroforecast\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"HydroForecast - Kwando & Upper Zambezi Rivers\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/kaza-hydroforecast-thumbnail.png\",\"type\":\"image/png\",\"title\":\"Thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[21.04494,-17.792517,23.343421,-13.08062],[23.343421,-17.792517,23.343421,-17.792517],[23.343421,-17.792517,23.343421,-17.792517],[21.04494,-15.13158,21.04494,-15.13158],[21.80157,-16.01209,21.80157,-16.01209],[22.91715,-17.38856,22.91715,-17.38856],[23.00610530305009,-17.347398048598034,23.00610530305009,-17.347398048598034],[22.669092,-14.971843,22.669092,-14.971843],[22.675487,-13.08062,22.675487,-13.08062]]},\"temporal\":{\"interval\":[[\"2022-01-01T00:00:00Z\",null]]}},\"license\":\"CDLA-Sharing-1.0\",\"version\":\"1.0.0\",\"keywords\":[\"Water\",\"HydroForecast\",\"Streamflow\",\"Hydrology\",\"Upstream Tech\"],\"providers\":[{\"url\":\"https://www.upstream.tech\",\"name\":\"Upstream Tech\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"description\":\"This dataset is a daily updated set of HydroForecast seasonal river flow forecasts at six locations in the Kwando and Upper Zambezi river basins. More details about the locations, project context, and to interactively view current and previous forecasts, visit our [public website](https://dashboard.hydroforecast.com/public/wwf-kaza).\\n\\n## Flow forecast dataset and model description\\n\\n[HydroForecast](https://www.upstream.tech/hydroforecast) is a theory-guided machine learning hydrologic model that predicts streamflow in basins across the world. For the Kwando and Upper Zambezi, HydroForecast makes daily predictions of streamflow rates using a [seasonal analog approach](https://support.upstream.tech/article/125-seasonal-analog-model-a-technical-overview). The model's output is probabilistic and the mean, median and a range of quantiles are available at each forecast step.\\n\\nThe underlying model has the following attributes: \\n\\n* Timestep: 10 days\\n* Horizon: 10 to 180 days \\n* Update frequency: daily\\n* Units: cubic meters per second (m\xB3/s)\\n \\n## Site details\\n\\nThe model produces output for six locations in the Kwando and Upper Zambezi river basins.\\n\\n* Upper Zambezi sites\\n * Zambezi at Chavuma\\n * Luanginga at Kalabo\\n* Kwando basin sites\\n * Kwando at Kongola -- total basin flows\\n * Kwando Sub-basin 1\\n * Kwando Sub-basin 2 \\n * Kwando Sub-basin 3\\n * Kwando Sub-basin 4\\n * Kwando Kongola Sub-basin\\n\\n## STAC metadata\\n\\nThere is one STAC item per location. Each STAC item has a single asset linking to a Parquet file in Azure Blob Storage.\",\"item_assets\":{\"data\":{\"type\":\"application/x-parquet\",\"roles\":[\"data\"],\"title\":\"Forecast Data\",\"description\":\"All seasonal river flow forecasts for a specific forecast site, produced by Upstream Tech's HydroForecast model\"}},\"stac_version\":\"1.0.0\",\"table:columns\":[{\"name\":\"initialization_time\",\"type\":\"timestamp\",\"description\":\"The initial timestamp in the forecast model which created this forecast step. All rows with the same initialization time are part of the same \\\"forecast\\\" and are produced at the same time.\"},{\"name\":\"valid_time\",\"type\":\"timestamp\",\"description\":\"The point in time this forecast step is predicting. valid_time = initialization_time + lead_time_hours. The discharge values in this row are the average rate from this time (inclusive) until the next valid time (exclusive).\"},{\"name\":\"lead_time_hours\",\"type\":\"int64\",\"description\":\"The number of hours ahead of the initialization time this forecast step is predicting.\"},{\"name\":\"discharge_mean\",\"type\":\"double\",\"description\":\"The mean of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_median\",\"type\":\"double\",\"description\":\"The median of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.01\",\"type\":\"double\",\"description\":\"The quantile 0.01 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.025\",\"type\":\"double\",\"description\":\"The quantile 0.025 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.05\",\"type\":\"double\",\"description\":\"The quantile 0.05 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.1\",\"type\":\"double\",\"description\":\"The quantile 0.1 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.25\",\"type\":\"double\",\"description\":\"The quantile 0.25 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.5\",\"type\":\"double\",\"description\":\"The quantile 0.5 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.75\",\"type\":\"double\",\"description\":\"The quantile 0.75 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.9\",\"type\":\"double\",\"description\":\"The quantile 0.9 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.95\",\"type\":\"double\",\"description\":\"The quantile 0.95 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.975\",\"type\":\"double\",\"description\":\"The quantile 0.975 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"},{\"name\":\"discharge_q0.99\",\"type\":\"double\",\"description\":\"The quantile 0.99 of the probabilistic streamflow prediction, as an average rate across the forecast step in m\xB3/s.\"}],\"msft:container\":\"hydroforecast\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Seasonal river flow forecasts for the Kwando and Upper Zambezi rivers in the KAZA region of Africa, produced by Upstream Tech's HydroForecast model.\",\"msft:region\":\"westeurope\"},{\"id\":\"planet-nicfi-analytic\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic\"},{\"rel\":\"license\",\"href\":\"https://assets.planet.com/docs/Planet_ParticipantLicenseAgreement_NICFI.pdf\",\"type\":\"application/pdf\",\"title\":\"Participant License Agreement.\"},{\"rel\":\"documentation\",\"href\":\"https://assets.planet.com/docs/NICFI_UserGuidesFAQ.pdf\",\"type\":\"application/pdf\",\"title\":\"Participant License Agreement.\"},{\"rel\":\"documentation\",\"href\":\"https://www.planet.com/nicfi/\",\"type\":\"text/html\",\"title\":\"NICFI Program - Satellite Imagery and Monitoring | Planet\"},{\"rel\":\"documentation\",\"href\":\"https://developers.planet.com/nicfi/\",\"type\":\"text/html\",\"title\":\"NICFI Program Resource Center\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/planet-nicfi-analytic\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Planet-NICFI Basemaps (Analytic)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/planet-nicfi-analytic-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/planet-nicfi-analytic.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-34.161818157002,180.0,30.145127179625]]},\"temporal\":{\"interval\":[[\"2015-12-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Planet\",\"NICFI\",\"Satellite\",\"Tropics\",\"Imagery\"],\"providers\":[{\"url\":\"http://planet.com\",\"name\":\"Planet\",\"roles\":[\"processor\",\"producer\",\"licensor\"],\"description\":\"Contact Planet at [planet.com/contact-sales](https://www.planet.com/contact-sales/)\"},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[4.77],\"eo:bands\":[{\"name\":\"Blue\",\"common_name\":\"blue\",\"description\":\"visible blue\"},{\"name\":\"Green\",\"common_name\":\"green\",\"description\":\"visible green\"},{\"name\":\"Red\",\"common_name\":\"red\",\"description\":\"visible red\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}],\"planet-nicfi:cadence\":[\"biannual\",\"monthly\"],\"planet-nicfi:percent_covered\":{\"maximum\":100,\"minimum\":0}},\"description\":\"*Note: Assets in this collection are only available to winners of the [GEO-Microsoft Planetary Computer RFP](https://www.earthobservations.org/geo_blog_obs.php?id=528). Others wishing to use the data can sign up and access it from Planet at [https://www.planet.com/nicfi/](https://www.planet.com/nicfi/) and email [planetarycomputer@microsoft.com](mailto:planetarycomputer@microsoft.com).*\\n\\nThrough Norway\u2019s International Climate & Forests Initiative (NICFI), users can access Planet\u2019s high-resolution, analysis-ready mosaics of the world\u2019s tropics in order to help reduce and reverse the loss of tropical forests, combat climate change, conserve biodiversity, and facilitate sustainable development.\\n\\nIn support of NICFI\u2019s mission, you can use this data for a number of projects including, but not limited to:\\n\\n* Advance scientific research about the world\u2019s tropical forests and the critical services they provide.\\n* Implement and improve policies for sustainable forest management and land use in developing tropical forest countries and jurisdictions.\\n* Increase transparency and accountability in the tropics.\\n* Protect and improve the rights of indigenous peoples and local communities in tropical forest countries.\\n* Innovate solutions towards reducing pressure on forests from global commodities and financial markets.\\n* In short, the primary purpose of the NICFI Program is to support reducing and reversing the loss of tropical forests, contributing to combating climate change, conserving biodiversity, contributing to forest regrowth, restoration, and enhancement, and facilitating sustainable development, all of which must be Non-Commercial Use.\\n\\nTo learn how more about the NICFI program, streaming and downloading basemaps please read the [NICFI Data Program User Guide](https://assets.planet.com/docs/NICFI_UserGuidesFAQ.pdf).\\n\\nThis collection contains both monthly and biannual mosaics. Biannual mosaics are available from December 2015 - August 2020. Monthly mosaics are available from September 2020. The STAC items include a `planet-nicfi:cadence` field indicating the type of mosaic.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"description\":\"a 'ground truth' representation of spatially accurate data with minimized effects of atmosphere and sensor characteristics\"},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"planet-nicfi\",\"msft:container\":\"nicfi\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"planet\",\"msft:short_description\":\"Planet's high-resolution, analysis-ready mosaics of the world's tropics\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-17A2H-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/972/MOD17_User_Guide_V61.pdf\",\"title\":\"MOD17 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD17A2H\",\"title\":\"MOD17A2H file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD17A2H\",\"title\":\"MYD17A2H file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD17A2H.061\",\"title\":\"LP DAAC - MOD17A2H\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD17A2H.061\",\"title\":\"LP DAAC - MYD17A2H\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-17A2H-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Gross Primary Productivity 8-Day\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-17A2H-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Gross Primary Productivity 8-Day thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-17A2H-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Vegetation\",\"Global\",\"MOD17A2H\",\"MYD17A2H\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Version 6.1 Gross Primary Productivity (GPP) product is a cumulative 8-day composite of values with 500 meter (m) pixel size based on the radiation use efficiency concept that can be potentially used as inputs to data models to calculate terrestrial energy, carbon, water cycle processes, and biogeochemistry of vegetation. The Moderate Resolution Imaging Spectroradiometer (MODIS) data product includes information about GPP and Net Photosynthesis (PSN). The PSN band values are the GPP less the Maintenance Respiration (MR). The data product also contains a PSN Quality Control (QC) layer. The quality layer contains quality information for both the GPP and the PSN.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"Gpp_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Gross Primary Productivity\",\"raster:bands\":[{\"unit\":\"kg C/m^2\",\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"PsnNet_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Net Photosynthesis\",\"raster:bands\":[{\"unit\":\"kg C/m^2\",\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"Psn_QC_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality control indicators\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD17A2H.061\",\"citation\":\"Running, S., Mu, Q., & Zhao, M. (2021). MODIS/Terra Gross Primary Productivity 8-Day L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD17A2H.061\"},{\"doi\":\"10.5067/MODIS/MYD17A2H.061\",\"citation\":\"Running, S., Mu, Q., & Zhao, M. (2021). MODIS/Aqua Gross Primary Productivity 8-Day L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD17A2H.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Gross Primary Productivity 8-Day\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-11A2-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/715/MOD11_User_Guide_V61.pdf\",\"title\":\"MOD11 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD11A2\",\"title\":\"MOD11A2 file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD11A2\",\"title\":\"MYD11A2 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD11A2.061\",\"title\":\"LP DAAC - MOD11A2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD11A2.061\",\"title\":\"LP DAAC - MYD11A2\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-11A2-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Land Surface Temperature/Emissivity 8-Day\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-11A2-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Land Surface Temperature/Emissivity 8-Day thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-11A2-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Temperature\",\"MOD11A2\",\"MYD11A2\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Moderate Resolution Imaging Spectroradiometer (MODIS) Land Surface Temperature/Emissivity 8-Day Version 6.1 product provides an average 8-day per-pixel Land Surface Temperature and Emissivity (LST&E) with a 1 kilometer (km) spatial resolution in a 1,200 by 1,200 km grid. Each pixel value in the MOD11A2 is a simple average of all the corresponding MOD11A1 LST pixels collected within that 8-day period. The 8-day compositing period was chosen because twice that period is the exact ground track repeat period of the Terra and Aqua platforms. Provided along with the daytime and nighttime surface temperature bands are associated quality control assessments, observation times, view zenith angles, and clear-sky coverages along with bands 31 and 32 emissivities from land cover types.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"QC_Day\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality control for daytime LST and emissivity\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Emis_31\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 31 emissivity\",\"raster:bands\":[{\"scale\":0.002,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Emis_32\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 32 emissivity\",\"raster:bands\":[{\"scale\":0.002,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"QC_Night\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality control for nighttime LST and emissivity\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"LST_Day_1km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"temperature\"],\"title\":\"8-day daytime 1km grid Landsurface Temperature\",\"raster:bands\":[{\"unit\":\"Kelvin\",\"scale\":0.02,\"data_type\":\"uint16\",\"spatial_resolution\":1000}]},\"Day_view_angl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Average view zenith angle of daytime Land-surface Temperature\",\"raster:bands\":[{\"unit\":\"Degree\",\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Day_view_time\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Average time of daytime Landsurface Temperature observation\",\"raster:bands\":[{\"unit\":\"Hours\",\"scale\":0.1,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"LST_Night_1km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"temperature\"],\"title\":\"8-day nighttime 1km grid Landsurface Temperature\",\"raster:bands\":[{\"unit\":\"Kelvin\",\"scale\":0.02,\"data_type\":\"uint16\",\"spatial_resolution\":1000}]},\"Clear_sky_days\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"the days in clear-sky conditions and with validate LSTs\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Night_view_angl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"View zenith angle of nighttime Land-surface Temperature \",\"raster:bands\":[{\"unit\":\"Degree\",\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Night_view_time\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Average view zenith angle of nighttime Land-surface Temperature\",\"raster:bands\":[{\"unit\":\"Hours\",\"scale\":0.1,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Clear_sky_nights\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"the nights in clear-sky conditions and with validate LSTs\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD11A2.061\",\"citation\":\"Wan, Z., Hook, S., & Hulley, G. (2021). MODIS/Terra Land Surface Temperature/Emissivity 8-Day L3 Global 1km SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD11A2.061\"},{\"doi\":\"10.5067/MODIS/MYD11A2.061\",\"citation\":\"Wan, Z., Hook, S., & Hulley, G. (2021). MODIS/Aqua Land Surface Temperature/Emissivity 8-Day L3 Global 1km SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD11A2.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Land Surface Temperature/Emissivity 8-Day\",\"msft:region\":\"westeurope\"},{\"id\":\"daymet-daily-pr\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr\"},{\"rel\":\"license\",\"href\":\"https://science.nasa.gov/earth-science/earth-science-data/data-information-policy\",\"title\":\"EOSDIS Data Use Policy\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.3334/ORNLDAAC/1840\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/daymet-daily-pr\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Daymet Daily Puerto Rico\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/daymet-daily-pr.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Daymet daily Puerto Rico map thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://daymet-zarr/daily/pr.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"Daily Puerto Rico Daymet Azure Blob File System Zarr root\",\"description\":\"Azure Blob File System of the daily Puerto Rico Daymet Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"daymeteuwest\"}},\"zarr-https\":{\"href\":\"https://daymeteuwest.blob.core.windows.net/daymet-zarr/daily/pr.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"Daily Puerto Rico Daymet HTTPS Zarr root\",\"description\":\"HTTPS URI of the daily Puerto Rico Daymet Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-67.9927,16.8444,-64.1196,19.9382]]},\"temporal\":{\"interval\":[[\"1980-01-01T12:00:00Z\",\"2020-12-30T12:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.3334/ORNLDAAC/1840\",\"keywords\":[\"Daymet\",\"Puerto Rico\",\"Temperature\",\"Precipitation\",\"Vapor Pressure\",\"Weather\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://doi.org/10.3334/ORNLDAAC/1840\",\"name\":\"ORNL DAAC\",\"roles\":[\"producer\"]}],\"description\":\"Gridded estimates of daily weather parameters. [Daymet](https://daymet.ornl.gov) Version 4 variables include the following parameters: minimum temperature, maximum temperature, precipitation, shortwave radiation, vapor pressure, snow water equivalent, and day length.\\n\\n[Daymet](https://daymet.ornl.gov/) provides measurements of near-surface meteorological conditions; the main purpose is to provide data estimates where no instrumentation exists. The dataset covers the period from January 1, 1980 to the present. Each year is processed individually at the close of a calendar year. Data are in a Lambert conformal conic projection for North America and are distributed in Zarr and NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\n\\nUse the DOI at [https://doi.org/10.3334/ORNLDAAC/1840](https://doi.org/10.3334/ORNLDAAC/1840) to cite your usage of the data.\\n\\nThis dataset provides coverage for Hawaii; North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#daily).\\n\\n\",\"sci:citation\":\"Thornton, M.M., R. Shrestha, P.E. Thornton, S. Kao, Y. Wei, and B.E. Wilson. 2021. Daymet Version 4 Monthly Latency: Daily Surface Weather Data. ORNL DAAC, Oak Ridge, Tennessee, USA. https://doi.org/10.3334/ORNLDAAC/1904\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"daymet\",\"cube:variables\":{\"vp\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"long_name\":\"daily average vapor pressure\",\"cell_methods\":\"area: mean time: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,231,364],\"chunks\":[365,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily average vapor pressure\"},\"lat\":{\"type\":\"auxiliary\",\"unit\":\"degrees_north\",\"attrs\":{\"units\":\"degrees_north\",\"long_name\":\"latitude coordinate\",\"standard_name\":\"latitude\"},\"shape\":[231,364],\"chunks\":[231,364],\"dimensions\":[\"y\",\"x\"],\"description\":\"latitude coordinate\"},\"lon\":{\"type\":\"auxiliary\",\"unit\":\"degrees_east\",\"attrs\":{\"units\":\"degrees_east\",\"long_name\":\"longitude coordinate\",\"standard_name\":\"longitude\"},\"shape\":[231,364],\"chunks\":[231,364],\"dimensions\":[\"y\",\"x\"],\"description\":\"longitude coordinate\"},\"swe\":{\"type\":\"data\",\"unit\":\"kg/m2\",\"attrs\":{\"units\":\"kg/m2\",\"long_name\":\"snow water equivalent\",\"cell_methods\":\"area: mean time: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,231,364],\"chunks\":[365,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"snow water equivalent\"},\"dayl\":{\"type\":\"data\",\"unit\":\"s\",\"attrs\":{\"units\":\"s\",\"long_name\":\"daylength\",\"cell_methods\":\"area: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,231,364],\"chunks\":[365,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daylength\"},\"prcp\":{\"type\":\"data\",\"unit\":\"mm/day\",\"attrs\":{\"units\":\"mm/day\",\"long_name\":\"daily total precipitation\",\"cell_methods\":\"area: mean time: sum\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,231,364],\"chunks\":[365,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily total precipitation\"},\"srad\":{\"type\":\"data\",\"unit\":\"W/m2\",\"attrs\":{\"units\":\"W/m2\",\"long_name\":\"daylight average incident shortwave radiation\",\"cell_methods\":\"area: mean time: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,231,364],\"chunks\":[365,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daylight average incident shortwave radiation\"},\"tmax\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"daily maximum temperature\",\"cell_methods\":\"area: mean time: maximum\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,231,364],\"chunks\":[365,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily maximum temperature\"},\"tmin\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"daily minimum temperature\",\"cell_methods\":\"area: mean time: minimum\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,231,364],\"chunks\":[365,231,364],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily minimum temperature\"},\"yearday\":{\"type\":\"data\",\"attrs\":{\"long_name\":\"yearday base 1\"},\"shape\":[14965],\"chunks\":[365],\"dimensions\":[\"time\"],\"description\":\"yearday base 1\"},\"time_bnds\":{\"type\":\"data\",\"attrs\":{},\"shape\":[14965,2],\"chunks\":[365,2],\"dimensions\":[\"time\",\"nv\"]},\"lambert_conformal_conic\":{\"type\":\"data\",\"attrs\":{\"false_easting\":0.0,\"false_northing\":0.0,\"semi_major_axis\":6378137.0,\"grid_mapping_name\":\"lambert_conformal_conic\",\"standard_parallel\":[25.0,60.0],\"inverse_flattening\":298.257223563,\"latitude_of_projection_origin\":42.5,\"longitude_of_central_meridian\":-100.0},\"shape\":[],\"dimensions\":[]}},\"msft:container\":\"daymet-zarr\",\"cube:dimensions\":{\"x\":{\"axis\":\"x\",\"step\":1000.0,\"type\":\"spatial\",\"extent\":[3445750.0,3808750.0],\"description\":\"x coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"y\":{\"axis\":\"y\",\"step\":-1000.0,\"type\":\"spatial\",\"extent\":[-1995000.0,-1765000.0],\"description\":\"y coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"nv\":{\"type\":\"count\",\"values\":[0,1],\"description\":\"Size of the 'time_bnds' variable.\"},\"time\":{\"type\":\"temporal\",\"extent\":[\"1980-01-01T12:00:00Z\",\"2020-12-30T12:00:00Z\"],\"description\":\"24-hour day based on local time\"}},\"msft:group_keys\":[\"daily\",\"puerto rico\"],\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"daymeteuwest\",\"msft:short_description\":\"Daily surface weather data on a 1-km grid for Puerto Rico\",\"msft:region\":\"westeurope\"},{\"id\":\"3dep-lidar-dtm-native\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/3d-elevation-program/about-3dep-products-services\",\"title\":\"About 3DEP Products & Services\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-dtm-native\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS 3DEP Lidar Digital Terrain Model (Native)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/3dep-lidar-dtm-native-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"extent\":{\"spatial\":{\"bbox\":[[-166.8546920006028,17.655357747708283,-64.56116757979399,71.39330810146807],[144.60180842809473,13.21774453924126,146.08202179248926,18.18369664008955]]},\"temporal\":{\"interval\":[[\"2012-01-01T00:00:00Z\",\"2022-01-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USGS\",\"3DEP\",\"COG\",\"DTM\"],\"providers\":[{\"name\":\"Landrush\",\"roles\":[\"processor\",\"producer\"]},{\"url\":\"https://www.usgs.gov/core-science-systems/ngp/3dep/\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[2.0]},\"description\":\"This collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc). It creates a Digital Terrain Model (DTM) using the vendor provided (native) ground classification and [`pdal.filters.range`](https://pdal.io/stages/filters.range.html#filters-range) to output a collection of Cloud Optimized GeoTIFFs, removing all points that have been classified as noise.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"COG data\",\"raster:bands\":[{\"name\":\"Z\",\"unit\":\"metre\",\"sampling\":\"point\",\"data_type\":\"float32\",\"description\":\"Raster for Z PDAL Dimension\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"3dep-lidar\",\"msft:container\":\"usgs-3dep-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json#\"],\"msft:storage_account\":\"usgslidareuwest\",\"msft:short_description\":\"3DEP Lidar collection for the Digital Terrain Model (DTM) Cloud Optimized Geotiffs (COGs) using vendor provided ground classification.\",\"msft:region\":\"westeurope\"},{\"id\":\"3dep-lidar-classification\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/3d-elevation-program/about-3dep-products-services\",\"title\":\"About 3DEP Products & Services\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-classification\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS 3DEP Lidar Classification\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/3dep-lidar-classification-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"extent\":{\"spatial\":{\"bbox\":[[-166.8546920006028,17.655357747708283,-64.56116757979399,71.39330810146807],[144.60180842809473,13.21774453924126,146.08202179248926,18.18369664008955]]},\"temporal\":{\"interval\":[[\"2012-01-01T00:00:00Z\",\"2022-01-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USGS\",\"3DEP\",\"COG\",\"Classification\"],\"providers\":[{\"name\":\"Landrush\",\"roles\":[\"processor\",\"producer\"]},{\"url\":\"https://www.usgs.gov/core-science-systems/ngp/3dep/\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[5.0]},\"description\":\"This collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc). It uses the [ASPRS](https://www.asprs.org/) (American Society for Photogrammetry and Remote Sensing) [Lidar point classification](https://desktop.arcgis.com/en/arcmap/latest/manage-data/las-dataset/lidar-point-classification.htm). See [LAS specification](https://www.ogc.org/standards/LAS) for details.\\n\\nThis COG type is based on the Classification [PDAL dimension](https://pdal.io/dimensions.html) and uses [`pdal.filters.range`](https://pdal.io/stages/filters.range.html) to select a subset of interesting classifications. Do note that not all LiDAR collections contain a full compliment of classification labels.\\nTo remove outliers, the PDAL pipeline uses a noise filter and then outputs the Classification dimension.\\n\\nThe STAC collection implements the [`item_assets`](https://github.com/stac-extensions/item-assets) and [`classification`](https://github.com/stac-extensions/classification) extensions. These classes are displayed in the \\\"Item assets\\\" below. You can programmatically access the full list of class values and descriptions using the `classification:classes` field form the `data` asset on the STAC collection.\\n\\nClassification rasters were produced as a subset of LiDAR classification categories:\\n\\n```\\n0, Never Classified\\n1, Unclassified\\n2, Ground\\n3, Low Vegetation\\n4, Medium Vegetation\\n5, High Vegetation\\n6, Building\\n9, Water\\n10, Rail\\n11, Road\\n17, Bridge Deck\\n```\\n\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"COG data\",\"raster:bands\":[{\"name\":\"Classification\",\"unit\":\"metre\",\"sampling\":\"point\",\"data_type\":\"int16\",\"description\":\"Raster for Classification PDAL dimension, ASPRS Lidar Point Classification Standard\"}],\"classification:classes\":[{\"value\":0,\"description\":\"Never Classified\"},{\"value\":1,\"description\":\"Unclassified\"},{\"value\":2,\"description\":\"Ground\"},{\"value\":3,\"description\":\"Low Vegetation\"},{\"value\":4,\"description\":\"Medium Vegetation\"},{\"value\":5,\"description\":\"High Vegetation\"},{\"value\":6,\"description\":\"Building\"},{\"value\":9,\"description\":\"Water\"},{\"value\":10,\"description\":\"Rail\"},{\"value\":11,\"description\":\"Road\"},{\"value\":17,\"description\":\"Bridge Deck\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"3dep-lidar\",\"msft:container\":\"usgs-3dep-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\"],\"msft:storage_account\":\"usgslidareuwest\",\"msft:short_description\":\"3DEP Lidar collection for Cloud Optimized Geotiffs (COGs) created according to PDAL's Intensity dimension\",\"msft:region\":\"westeurope\"},{\"id\":\"3dep-lidar-dtm\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/3d-elevation-program/about-3dep-products-services\",\"title\":\"About 3DEP Products & Services\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/3dep-lidar-dtm\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS 3DEP Lidar Digital Terrain Model\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/dtm-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"},\"geoparquet-items\":{\"href\":\"abfs://items/3dep-lidar-dtm.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-166.8546920006028,17.655357747708283,-64.56116757979399,71.39330810146807],[144.60180842809473,13.21774453924126,146.08202179248926,18.18369664008955]]},\"temporal\":{\"interval\":[[\"2012-01-01T00:00:00Z\",\"2022-01-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USGS\",\"3DEP\",\"COG\",\"DTM\"],\"providers\":[{\"name\":\"Landrush\",\"roles\":[\"processor\",\"producer\"]},{\"url\":\"https://www.usgs.gov/core-science-systems/ngp/3dep/\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[2.0]},\"description\":\"This collection is derived from the [USGS 3DEP COPC collection](https://planetarycomputer.microsoft.com/dataset/3dep-lidar-copc). It creates a Digital Terrain Model (DTM) using [`pdal.filters.smrf`](https://pdal.io/stages/filters.smrf.html#filters-smrf) to output a collection of Cloud Optimized GeoTIFFs.\\n\\nThe Simple Morphological Filter (SMRF) classifies ground points based on the approach outlined in [Pingel2013](https://pdal.io/references.html#pingel2013).\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"COG data\",\"raster:bands\":[{\"type\":\"Z\",\"unit\":\"metre\",\"sampling\":\"point\",\"data_type\":\"float32\",\"description\":\"Z PDAL Dimension\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"3DEP Lidar COG\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"3dep-lidar\",\"msft:container\":\"usgs-3dep-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json#\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"usgslidareuwest\",\"msft:short_description\":\"3DEP Lidar collection for the Digital Terrain Model (DTM) Cloud Optimized Geotiffs (COGs) using PDAL's filters.smrf.\",\"msft:region\":\"westeurope\"},{\"id\":\"gap\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/information-policies-and-instructions/copyrights-and-credits\",\"title\":\"Public Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/gap\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS Gap Land Cover\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gap.png\",\"type\":\"image/png\",\"roles\":[\"data\"],\"title\":\"USGS GAP\"},\"geoparquet-items\":{\"href\":\"abfs://items/gap.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}},\"original-data-ak\":{\"href\":\"https://ai4edataeuwest.blob.core.windows.net/usgs-gap/originals/gaplandcov_ak.zip\",\"type\":\"application/zip\",\"roles\":[\"data\"],\"title\":\"Alaska source data\",\"description\":\"Original source data for Alaska\"},\"original-data-hi\":{\"href\":\"https://ai4edataeuwest.blob.core.windows.net/usgs-gap/originals/gaplandcov_hi.zip\",\"type\":\"application/zip\",\"roles\":[\"data\"],\"title\":\"Hawaii source data\",\"description\":\"Original source data for Hawaii\"},\"original-data-pr\":{\"href\":\"https://ai4edataeuwest.blob.core.windows.net/usgs-gap/originals/pr_landcover.zip\",\"type\":\"application/zip\",\"roles\":[\"data\"],\"title\":\"Puerto Rico source data\",\"description\":\"Original source data for Puerto Rico\"},\"original-data-conus\":{\"href\":\"https://ai4edataeuwest.blob.core.windows.net/usgs-gap/originals/gap_landfire_nationalterrestrialecosystems2011.zip\",\"type\":\"application/zip\",\"roles\":[\"data\"],\"title\":\"CONUS source data\",\"description\":\"Original source data for the continental United States (CONUS)\"}},\"extent\":{\"spatial\":{\"bbox\":[[-127.9710481801793,22.797789263564383,-65.26634281147894,51.64692620669362],[-178.13166387448902,49.09079265233118,179.87849702345594,71.43382483774205],[-160.26640694607218,18.851824447510786,-154.66974350173518,22.295114188194738],[-67.9573345827195,17.874066536543,-65.21836408976736,18.5296513469496]]},\"temporal\":{\"interval\":[[\"1999-01-01T00:00:00Z\",\"2011-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USGS\",\"GAP\",\"LANDFIRE\",\"Land Cover\",\"United States\"],\"providers\":[{\"url\":\"https://www.usgs.gov/core-science-systems/science-analytics-and-synthesis/gap/science/land-cover\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[30],\"label:classes\":[{\"classes\":[\"0\",\"South Florida Bayhead Swamp\",\"South Florida Cypress Dome\",\"South Florida Dwarf Cypress Savanna\",\"South Florida Mangrove Swamp\",\"South Florida Hardwood Hammock\",\"Southeast Florida Coastal Strand and Maritime Hammock\",\"Southwest Florida Coastal Strand and Maritime Hammock\",\"South Florida Pine Rockland\",\"Atlantic Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Open Understory\",\"Atlantic Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Scrub/Shrub Understory\",\"Atlantic Coastal Plain Upland Longleaf Pine Woodland\",\"Atlantic Coastal Plain Xeric River Dune\",\"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Open Understory Modifier\",\"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Scrub/Shrub Modifier\",\"Florida Longleaf Pine Sandhill - Scrub/Shrub Understory Modifier\",\"Florida Longleaf Pine Sandhill- Open Understory Modifier\",\"West Gulf Coastal Plain Upland Longleaf Pine Forest and Woodland\",\"Atlantic Coastal Plain Central Maritime Forest\",\"Atlantic Coastal Plain Southern Maritime Forest\",\"Central and South Texas Coastal Fringe Forest and Woodland\",\"East Gulf Coastal Plain Limestone Forest\",\"East Gulf Coastal Plain Maritime Forest\",\"East Gulf Coastal Plain Southern Loess Bluff Forest\",\"East Gulf Coastal Plain Southern Mesic Slope Forest\",\"Mississippi Delta Maritime Forest\",\"Southern Coastal Plain Dry Upland Hardwood Forest\",\"Southern Coastal Plain Oak Dome and Hammock\",\"West Gulf Coastal Plain Chenier and Upper Texas Coastal Fringe Forest and Woodland\",\"West Gulf Coastal Plain Mesic Hardwood Forest\",\"East-Central Texas Plains Pine Forest and Woodland\",\"West Gulf Coastal Plain Pine-Hardwood Forest\",\"West Gulf Coastal Plain Sandhill Oak and Shortleaf Pine Forest and Woodland\",\"Atlantic Coastal Plain Fall-Line Sandhills Longleaf Pine Woodland - Loblolly Modifier\",\"Deciduous Plantations\",\"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Loblolly Modifier\",\"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Offsite Hardwood Modifier\",\"East Gulf Coastal Plain Near-Coast Pine Flatwoods - Offsite Hardwood Modifier\",\"Evergreen Plantation or Managed Pine\",\"California Central Valley Mixed Oak Savanna\",\"California Coastal Closed-Cone Conifer Forest and Woodland\",\"California Coastal Live Oak Woodland and Savanna\",\"California Lower Montane Blue Oak-Foothill Pine Woodland and Savanna\",\"Central and Southern California Mixed Evergreen Woodland\",\"Mediterranean California Lower Montane Black Oak-Conifer Forest and Woodland\",\"Southern California Oak Woodland and Savanna\",\"Madrean Encinal\",\"Madrean Pinyon-Juniper Woodland\",\"Madrean Pine-Oak Forest and Woodland\",\"Madrean Upper Montane Conifer-Oak Forest and Woodland\",\"Edwards Plateau Dry-Mesic Slope Forest and Woodland\",\"Edwards Plateau Limestone Savanna and Woodland\",\"Edwards Plateau Mesic Canyon\",\"Llano Uplift Acidic Forest, Woodland and Glade\",\"East Cascades Oak-Ponderosa Pine Forest and Woodland\",\"Mediterranean California Mixed Evergreen Forest\",\"Mediterranean California Mixed Oak Woodland\",\"North Pacific Dry Douglas-fir-(Madrone) Forest and Woodland\",\"North Pacific Oak Woodland\",\"Edwards Plateau Limestone Shrubland\",\"Allegheny-Cumberland Dry Oak Forest and Woodland - Hardwood\",\"Allegheny-Cumberland Dry Oak Forest and Woodland - Pine Modifier\",\"Central and Southern Appalachian Montane Oak Forest\",\"Central and Southern Appalachian Northern Hardwood Forest\",\"Central Appalachian Oak and Pine Forest\",\"Crosstimbers Oak Forest and Woodland\",\"East Gulf Coastal Plain Black Belt Calcareous Prairie and Woodland - Woodland Modifier\",\"East Gulf Coastal Plain Northern Dry Upland Hardwood Forest\",\"East Gulf Coastal Plain Northern Loess Plain Oak-Hickory Upland - Hardwood Modifier\",\"East Gulf Coastal Plain Northern Loess Plain Oak-Hickory Upland - Juniper Modifier\",\"East-Central Texas Plains Post Oak Savanna and Woodland\",\"Lower Mississippi River Dune Woodland and Forest\",\"Mississippi River Alluvial Plain Dry-Mesic Loess Slope Forest\",\"North-Central Interior Dry Oak Forest and Woodland\",\"North-Central Interior Dry-Mesic Oak Forest and Woodland\",\"Northeastern Interior Dry Oak Forest - Mixed Modifier\",\"Northeastern Interior Dry Oak Forest - Virginia/Pitch Pine Modifier\",\"Northeastern Interior Dry Oak Forest-Hardwood Modifier\",\"Northeastern Interior Dry-Mesic Oak Forest\",\"Northern Atlantic Coastal Plain Dry Hardwood Forest\",\"Crowley's Ridge Sand Forest\",\"Ouachita Montane Oak Forest\",\"Ozark-Ouachita Dry Oak Woodland\",\"Ozark-Ouachita Dry-Mesic Oak Forest\",\"Southern and Central Appalachian Oak Forest\",\"Southern and Central Appalachian Oak Forest - Xeric\",\"Southern Interior Low Plateau Dry-Mesic Oak Forest\",\"Southern Ridge and Valley Dry Calcareous Forest\",\"Southern Ridge and Valley Dry Calcareous Forest - Pine modifier\",\"East Gulf Coastal Plain Northern Dry Upland Hardwood Forest - Offsite Pine Modifier\",\"Managed Tree Plantation\",\"Ruderal forest\",\"Southern Piedmont Dry Oak-(Pine) Forest - Loblolly Pine Modifier\",\"Acadian Low-Elevation Spruce-Fir-Hardwood Forest\",\"Acadian-Appalachian Montane Spruce-Fir Forest\",\"Appalachian Hemlock-Hardwood Forest\",\"Central and Southern Appalachian Spruce-Fir Forest\",\"0\",\"Laurentian-Acadian Northern Hardwoods Forest\",\"Laurentian-Acadian Northern Pine-(Oak) Forest\",\"Laurentian-Acadian Pine-Hemlock-Hardwood Forest\",\"Paleozoic Plateau Bluff and Talus\",\"Southern Appalachian Northern Hardwood Forest\",\"Atlantic Coastal Plain Dry and Dry-Mesic Oak Forest\",\"Atlantic Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Offsite Hardwood\",\"East Gulf Coastal Plain Interior Shortleaf Pine-Oak Forest - Hardwood Modifier\",\"East Gulf Coastal Plain Interior Shortleaf Pine-Oak Forest - Mixed Modifier\",\"Ozark-Ouachita Shortleaf Pine-Bluestem Woodland\",\"Ozark-Ouachita Shortleaf Pine-Oak Forest and Woodland\",\"Southeastern Interior Longleaf Pine Woodland\",\"Southern Appalachian Low Mountain Pine Forest\",\"Southern Piedmont Dry Oak-(Pine) Forest\",\"Southern Piedmont Dry Oak-(Pine) Forest - Hardwood Modifier\",\"Southern Piedmont Dry Oak-(Pine) Forest - Mixed Modifier\",\"Southern Piedmont Dry Oak-Heath Forest - Mixed Modifier\",\"Eastern Great Plains Tallgrass Aspen Parkland\",\"Northwestern Great Plains Aspen Forest and Parkland\",\"Northwestern Great Plains Shrubland\",\"Western Great Plains Dry Bur Oak Forest and Woodland\",\"Western Great Plains Wooded Draw and Ravine\",\"Southern Atlantic Coastal Plain Mesic Hardwood Forest\",\"East Gulf Coastal Plain Northern Loess Bluff Forest\",\"East Gulf Coastal Plain Northern Mesic Hardwood Forest\",\"North-Central Interior Beech-Maple Forest\",\"North-Central Interior Maple-Basswood Forest\",\"Ozark-Ouachita Mesic Hardwood Forest\",\"South-Central Interior Mesophytic Forest\",\"Southern and Central Appalachian Cove Forest\",\"Crowley's Ridge Mesic Loess Slope Forest\",\"Southern Piedmont Mesic Forest\",\"Appalachian Shale Barrens\",\"Atlantic Coastal Plain Northern Maritime Forest\",\"Laurentian Pine-Oak Barrens\",\"Northeastern Interior Pine Barrens\",\"Northern Atlantic Coastal Plain Pitch Pine Barrens\",\"Southern Appalachian Montane Pine Forest and Woodland\",\"East Cascades Mesic Montane Mixed-Conifer Forest and Woodland\",\"Middle Rocky Mountain Montane Douglas-fir Forest and Woodland\",\"Northern Rocky Mountain Dry-Mesic Montane Mixed Conifer Forest\",\"Northern Rocky Mountain Foothill Conifer Wooded Steppe\",\"Northern Rocky Mountain Mesic Montane Mixed Conifer Forest\",\"Northern Rocky Mountain Ponderosa Pine Woodland and Savanna\",\"Northern Rocky Mountain Western Larch Savanna\",\"Northwestern Great Plains - Black Hills Ponderosa Pine Woodland and Savanna\",\"Rocky Mountain Foothill Limber Pine-Juniper Woodland\",\"Inter-Mountain Basins Aspen-Mixed Conifer Forest and Woodland\",\"Inter-Mountain Basins Subalpine Limber-Bristlecone Pine Woodland\",\"Northern Rocky Mountain Subalpine Woodland and Parkland\",\"Rocky Mountain Aspen Forest and Woodland\",\"Rocky Mountain Lodgepole Pine Forest\",\"Rocky Mountain Poor-Site Lodgepole Pine Forest\",\"Rocky Mountain Subalpine Dry-Mesic Spruce-Fir Forest and Woodland\",\"Rocky Mountain Subalpine Mesic Spruce-Fir Forest and Woodland\",\"Rocky Mountain Subalpine-Montane Limber-Bristlecone Pine Woodland\",\"Rocky Mountain Bigtooth Maple Ravine Woodland\",\"Southern Rocky Mountain Dry-Mesic Montane Mixed Conifer Forest and Woodland\",\"Southern Rocky Mountain Mesic Montane Mixed Conifer Forest and Woodland\",\"Southern Rocky Mountain Ponderosa Pine Savanna\",\"Southern Rocky Mountain Ponderosa Pine Woodland\",\"California Montane Jeffrey Pine-(Ponderosa Pine) Woodland\",\"Klamath-Siskiyou Lower Montane Serpentine Mixed Conifer Woodland\",\"Klamath-Siskiyou Upper Montane Serpentine Mixed Conifer Woodland\",\"Mediterranean California Dry-Mesic Mixed Conifer Forest and Woodland\",\"Mediterranean California Mesic Mixed Conifer Forest and Woodland\",\"Sierran-Intermontane Desert Western White Pine-White Fir Woodland\",\"California Coastal Redwood Forest\",\"North Pacific Broadleaf Landslide Forest and Shrubland\",\"North Pacific Dry-Mesic Silver Fir-Western Hemlock-Douglas-fir Forest\",\"North Pacific Hypermaritime Sitka Spruce Forest\",\"North Pacific Hypermaritime Western Red-cedar-Western Hemlock Forest\",\"North Pacific Lowland Mixed Hardwood-Conifer Forest and Woodland\",\"North Pacific Maritime Dry-Mesic Douglas-fir-Western Hemlock Forest\",\"North Pacific Maritime Mesic-Wet Douglas-fir-Western Hemlock Forest\",\"North Pacific Mesic Western Hemlock-Silver Fir Forest\",\"North Pacific Wooded Volcanic Flowage\",\"Mediterranean California Red Fir Forest\",\"Mediterranean California Subalpine Woodland\",\"North Pacific Maritime Mesic Subalpine Parkland\",\"North Pacific Mountain Hemlock Forest\",\"Northern California Mesic Subalpine Woodland\",\"Northern Pacific Mesic Subalpine Woodland\",\"Sierra Nevada Subalpine Lodgepole Pine Forest and Woodland\",\"Columbia Plateau Western Juniper Woodland and Savanna\",\"Great Basin Pinyon-Juniper Woodland\",\"Inter-Mountain Basins Curl-leaf Mountain Mahogany Woodland and Shrubland\",\"Inter-Mountain Basins Juniper Savanna\",\"Colorado Plateau Pinyon-Juniper Shrubland\",\"Colorado Plateau Pinyon-Juniper Woodland\",\"Southern Rocky Mountain Juniper Woodland and Savanna\",\"Southern Rocky Mountain Pinyon-Juniper Woodland\",\"Northwestern Great Plains Floodplain\",\"Northwestern Great Plains Riparian\",\"Western Great Plains Floodplain\",\"Western Great Plains Floodplain Systems\",\"Western Great Plains Riparian Woodland and Shrubland\",\"Central Appalachian Floodplain - Forest Modifier\",\"Central Appalachian Riparian - Forest Modifier\",\"Central Interior and Appalachian Floodplain Systems\",\"Central Interior and Appalachian Riparian Systems\",\"Laurentian-Acadian Floodplain Systems\",\"Ozark-Ouachita Riparian\",\"South-Central Interior Large Floodplain\",\"South-Central Interior Large Floodplain - Forest Modifier\",\"South-Central Interior Small Stream and Riparian\",\"North-Central Interior and Appalachian Rich Swamp\",\"0\",\"0\",\"Laurentian-Acadian Swamp Systems\",\"North-Central Interior Wet Flatwoods\",\"0\",\"South-Central Interior / Upper Coastal Plain Wet Flatwoods\",\"0\",\"Southern Piedmont/Ridge and Valley Upland Depression Swamp\",\"Atlantic Coastal Plain Blackwater Stream Floodplain Forest - Forest Modifier\",\"Atlantic Coastal Plain Brownwater Stream Floodplain Forest\",\"Atlantic Coastal Plain Northern Tidal Wooded Swamp\",\"Atlantic Coastal Plain Small Blackwater River Floodplain Forest\",\"Atlantic Coastal Plain Small Brownwater River Floodplain Forest\",\"Atlantic Coastal Plain Southern Tidal Wooded Swamp\",\"East Gulf Coastal Plain Large River Floodplain Forest - Forest Modifier\",\"East Gulf Coastal Plain Small Stream and River Floodplain Forest\",\"East Gulf Coastal Plain Tidal Wooded Swamp\",\"0\",\"Southeastern Great Plains Riparian Forest\",\"Southeastern Great Plains Floodplain Forest\",\"Mississippi River Bottomland Depression\",\"Mississippi River Floodplain and Riparian Forest\",\"Mississippi River Low Floodplain (Bottomland) Forest\",\"Mississippi River Riparian Forest\",\"Red River Large Floodplain Forest\",\"Southern Coastal Plain Blackwater River Floodplain Forest\",\"Southern Piedmont Large Floodplain Forest - Forest Modifier\",\"Southern Piedmont Small Floodplain and Riparian Forest\",\"West Gulf Coastal Plain Large River Floodplain Forest\",\"West Gulf Coastal Plain Near-Coast Large River Swamp\",\"West Gulf Coastal Plain Small Stream and River Forest\",\"Atlantic Coastal Plain Streamhead Seepage Swamp - Pocosin - and Baygall\",\"Gulf and Atlantic Coastal Plain Swamp Systems\",\"Southern Coastal Plain Hydric Hammock\",\"Southern Coastal Plain Seepage Swamp and Baygall\",\"West Gulf Coastal Plain Seepage Swamp and Baygall\",\"Atlantic Coastal Plain Nonriverine Swamp and Wet Hardwood Forest - Taxodium/Nyssa Modifier\",\"Atlantic Coastal Plain Nonriverine Swamp and Wet Hardwood Forest - Oak Dominated Modifier\",\"East Gulf Coastal Plain Southern Loblolly-Hardwood Flatwoods\",\"Lower Mississippi River Bottomland Depressions - Forest Modifier\",\"Lower Mississippi River Flatwoods\",\"Northern Atlantic Coastal Plain Basin Swamp and Wet Hardwood Forest\",\"Southern Coastal Plain Nonriverine Basin Swamp\",\"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Bay/Gum Modifier\",\"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Pine Modifier\",\"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Taxodium Modifier\",\"West Gulf Coastal Plain Nonriverine Wet Hardwood Flatwoods\",\"West Gulf Coastal Plain Pine-Hardwood Flatwoods\",\"Edwards Plateau Riparian\",\"Atlantic Coastal Plain Clay-Based Carolina Bay Forested Wetland\",\"Atlantic Coastal Plain Clay-Based Carolina Bay Herbaceous Wetland\",\"Atlantic Coastal Plain Southern Wet Pine Savanna and Flatwoods\",\"Central Atlantic Coastal Plain Wet Longleaf Pine Savanna and Flatwoods\",\"Central Florida Pine Flatwoods\",\"East Gulf Coastal Plain Near-Coast Pine Flatwoods\",\"East Gulf Coastal Plain Near-Coast Pine Flatwoods - Open Understory Modifier\",\"East Gulf Coastal Plain Near-Coast Pine Flatwoods - Scrub/Shrub Understory Modifier\",\"South Florida Pine Flatwoods\",\"Southern Coastal Plain Nonriverine Cypress Dome\",\"West Gulf Coastal Plain Wet Longleaf Pine Savanna and Flatwoods\",\"Columbia Basin Foothill Riparian Woodland and Shrubland\",\"Great Basin Foothill and Lower Montane Riparian Woodland and Shrubland\",\"0\",\"Northern Rocky Mountain Conifer Swamp\",\"Northern Rocky Mountain Lower Montane Riparian Woodland and Shrubland\",\"Rocky Mountain Lower Montane Riparian Woodland and Shrubland\",\"Rocky Mountain Montane Riparian Systems\",\"Rocky Mountain Subalpine-Montane Riparian Woodland\",\"North Pacific Hardwood-Conifer Swamp\",\"North Pacific Lowland Riparian Forest and Shrubland\",\"North Pacific Montane Riparian Woodland and Shrubland\",\"North Pacific Shrub Swamp\",\"California Central Valley Riparian Woodland and Shrubland\",\"Mediterranean California Foothill and Lower Montane Riparian Woodland\",\"Mediterranean California Serpentine Foothill and Lower Montane Riparian Woodland and Seep\",\"North American Warm Desert Lower Montane Riparian Woodland and Shrubland\",\"North American Warm Desert Riparian Systems\",\"North American Warm Desert Riparian Woodland and Shrubland\",\"Tamaulipan Floodplain\",\"Tamaulipan Riparian Systems\",\"Boreal Aspen-Birch Forest\",\"Boreal Jack Pine-Black Spruce Forest\",\"Boreal White Spruce-Fir-Hardwood Forest\",\"Boreal-Laurentian Conifer Acidic Swamp and Treed Poor Fen\",\"Eastern Boreal Floodplain\",\"South Florida Shell Hash Beach\",\"Southeast Florida Beach\",\"Southwest Florida Beach\",\"South Florida Everglades Sawgrass Marsh\",\"South Florida Freshwater Slough and Gator Hole\",\"South Florida Wet Marl Prairie\",\"California Maritime Chaparral\",\"California Mesic Chaparral\",\"California Xeric Serpentine Chaparral\",\"Klamath-Siskiyou Xeromorphic Serpentine Savanna and Chaparral\",\"Mediterranean California Mesic Serpentine Woodland and Chaparral\",\"Northern and Central California Dry-Mesic Chaparral\",\"Southern California Dry-Mesic Chaparral\",\"Southern California Coastal Scrub\",\"California Central Valley and Southern Coastal Grassland\",\"California Mesic Serpentine Grassland\",\"Columbia Basin Foothill and Canyon Dry Grassland\",\"Columbia Basin Palouse Prairie\",\"North Pacific Alpine and Subalpine Dry Grassland\",\"North Pacific Montane Grassland\",\"North Pacific Montane Shrubland\",\"Northern Rocky Mountain Lower Montane, Foothill and Valley Grassland\",\"Northern Rocky Mountain Montane-Foothill Deciduous Shrubland\",\"Northern Rocky Mountain Subalpine Deciduous Shrubland\",\"Northern Rocky Mountain Subalpine-Upper Montane Grassland\",\"Southern Rocky Mountain Montane-Subalpine Grassland\",\"Rocky Mountain Gambel Oak-Mixed Montane Shrubland\",\"Rocky Mountain Lower Montane-Foothill Shrubland\",\"California Northern Coastal Grassland\",\"North Pacific Herbaceous Bald and Bluff\",\"North Pacific Hypermaritime Shrub and Herbaceous Headland\",\"Willamette Valley Upland Prairie and Savanna\",\"Mediterranean California Subalpine Meadow\",\"Rocky Mountain Subalpine-Montane Mesic Meadow\",\"Central Mixedgrass Prairie\",\"Northwestern Great Plains Mixedgrass Prairie\",\"Western Great Plains Foothill and Piedmont Grassland\",\"Western Great Plains Tallgrass Prairie\",\"Western Great Plains Sand Prairie\",\"Western Great Plains Sandhill Steppe\",\"Western Great Plains Mesquite Woodland and Shrubland\",\"Western Great Plains Shortgrass Prairie\",\"Arkansas Valley Prairie and Woodland\",\"Central Tallgrass Prairie\",\"North-Central Interior Oak Savanna\",\"North-Central Interior Sand and Gravel Tallgrass Prairie\",\"North-Central Oak Barrens\",\"Northern Tallgrass Prairie\",\"Southeastern Great Plains Tallgrass Prairie\",\"Texas Blackland Tallgrass Prairie\",\"Texas-Louisiana Coastal Prairie\",\"Central Appalachian Pine-Oak Rocky Woodland\",\"Southern Appalachian Grass and Shrub Bald\",\"Southern Appalachian Grass and Shrub Bald - Herbaceous Modifier\",\"Southern Appalachian Grass and Shrub Bald - Shrub Modifier\",\"Central Appalachian Alkaline Glade and Woodland\",\"Central Interior Highlands Calcareous Glade and Barrens\",\"Central Interior Highlands Dry Acidic Glade and Barrens\",\"Cumberland Sandstone Glade and Barrens\",\"Great Lakes Alvar\",\"Nashville Basin Limestone Glade\",\"Southern Ridge and Valley / Cumberland Dry Calcareous Forest\",\"Southern Piedmont Glade and Barrens\",\"East Gulf Coastal Plain Black Belt Calcareous Prairie and Woodland - Herbaceous Modifier\",\"East Gulf Coastal Plain Jackson Prairie and Woodland\",\"Eastern Highland Rim Prairie and Barrens - Dry Modifier\",\"Coahuilan Chaparral\",\"Madrean Oriental Chaparral\",\"Mogollon Chaparral\",\"Sonora-Mojave Semi-Desert Chaparral\",\"California Montane Woodland and Chaparral\",\"Great Basin Semi-Desert Chaparral\",\"Florida Dry Prairie\",\"Florida Peninsula Inland Scrub\",\"West Gulf Coastal Plain Catahoula Barrens\",\"West Gulf Coastal Plain Nepheline Syenite Glade\",\"East Gulf Coastal Plain Jackson Plain Dry Flatwoods - Open Understory Modifier\",\"West Gulf Coastal Plain Northern Calcareous Prairie\",\"West Gulf Coastal Plain Southern Calcareous Prairie\",\"Acadian-Appalachian Subalpine Woodland and Heath-Krummholz\",\"Atlantic and Gulf Coastal Plain Interdunal Wetland\",\"Atlantic Coastal Plain Southern Dune and Maritime Grassland\",\"Central and Upper Texas Coast Dune and Coastal Grassland\",\"East Gulf Coastal Plain Dune and Coastal Grassland\",\"Great Lakes Dune\",\"Northern Atlantic Coastal Plain Dune and Swale\",\"Northern Atlantic Coastal Plain Heathland and Grassland\",\"South Texas Dune and Coastal Grassland\",\"South Texas Sand Sheet Grassland\",\"Southwest Florida Dune and Coastal Grassland\",\"North Pacific Coastal Cliff and Bluff\",\"North Pacific Maritime Coastal Sand Dune and Strand\",\"Northern California Coastal Scrub\",\"Mediterranean California Coastal Bluff\",\"Mediterranean California Northern Coastal Dune\",\"Mediterranean California Southern Coastal Dune\",\"Atlantic Coastal Plain Northern Sandy Beach\",\"Atlantic Coastal Plain Sea Island Beach\",\"Atlantic Coastal Plain Southern Beach\",\"Florida Panhandle Beach Vegetation\",\"Louisiana Beach\",\"Northern Atlantic Coastal Plain Sandy Beach\",\"Texas Coastal Bend Beach\",\"Upper Texas Coast Beach\",\"0\",\"Mediterranean California Serpentine Fen\",\"Mediterranean California Subalpine-Montane Fen\",\"North Pacific Bog and Fen\",\"Rocky Mountain Subalpine-Montane Fen\",\"Atlantic Coastal Plain Peatland Pocosin\",\"Southern and Central Appalachian Bog and Fen\",\"Atlantic Coastal Plain Central Fresh-Oligohaline Tidal Marsh\",\"Atlantic Coastal Plain Embayed Region Tidal Freshwater Marsh\",\"Atlantic Coastal Plain Northern Fresh and Oligohaline Tidal Marsh\",\"Florida Big Bend Fresh-Oligohaline Tidal Marsh\",\"Atlantic Coastal Plain Depression Pondshore\",\"Atlantic Coastal Plain Large Natural Lakeshore\",\"Central Florida Herbaceous Pondshore\",\"Central Florida Herbaceous Seep\",\"East Gulf Coastal Plain Savanna and Wet Prairie\",\"East Gulf Coastal Plain Depression Pondshore\",\"Floridian Highlands Freshwater Marsh\",\"Southern Coastal Plain Herbaceous Seepage Bog\",\"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Clethra Modifier\",\"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Nupea Modifier\",\"Texas-Louisiana Coastal Prairie Slough\",\"Central Interior and Appalachian Shrub-Herbaceous Wetland Systems\",\"Great Lakes Coastal Marsh Systems\",\"0\",\"0\",\"Laurentian-Acadian Shrub-Herbaceous Wetland Systems\",\"0\",\"Eastern Great Plains Wet Meadow, Prairie and Marsh\",\"Great Lakes Wet-Mesic Lakeplain Prairie\",\"Great Plains Prairie Pothole\",\"Western Great Plains Closed Depression Wetland\",\"Western Great Plains Depressional Wetland Systems\",\"Western Great Plains Open Freshwater Depression Wetland\",\"Cumberland Riverscour\",\"Inter-Mountain Basins Interdunal Swale Wetland\",\"North Pacific Avalanche Chute Shrubland\",\"North Pacific Intertidal Freshwater Wetland\",\"Temperate Pacific Freshwater Emergent Marsh\",\"Temperate Pacific Freshwater Mudflat\",\"Columbia Plateau Vernal Pool\",\"Northern California Claypan Vernal Pool\",\"Northern Rocky Mountain Wooded Vernal Pool\",\"Columbia Plateau Silver Sagebrush Seasonally Flooded Shrub-Steppe\",\"Rocky Mountain Alpine-Montane Wet Meadow\",\"Rocky Mountain Subalpine-Montane Riparian Shrubland\",\"Temperate Pacific Montane Wet Meadow\",\"Willamette Valley Wet Prairie\",\"Chihuahuan-Sonoran Desert Bottomland and Swale Grassland\",\"North American Arid West Emergent Marsh\",\"North American Warm Desert Riparian Mesquite Bosque\",\"Western Great Plains Saline Depression Wetland\",\"Acadian Salt Marsh and Estuary Systems\",\"Atlantic Coastal Plain Central Salt and Brackish Tidal Marsh\",\"Atlantic Coastal Plain Embayed Region Tidal Salt and Brackish Marsh\",\"Atlantic Coastal Plain Indian River Lagoon Tidal Marsh\",\"Atlantic Coastal Plain Northern Tidal Salt Marsh\",\"Florida Big Bend Salt-Brackish Tidal Marsh\",\"Gulf and Atlantic Coastal Plain Tidal Marsh Systems\",\"Mississippi Sound Salt and Brackish Tidal Marsh\",\"Texas Saline Coastal Prairie\",\"Temperate Pacific Tidal Salt and Brackish Marsh\",\"Inter-Mountain Basins Alkaline Closed Depression\",\"Inter-Mountain Basins Greasewood Flat\",\"Inter-Mountain Basins Playa\",\"North American Warm Desert Playa\",\"Apacherian-Chihuahuan Mesquite Upland Scrub\",\"Apacherian-Chihuahuan Semi-Desert Grassland and Steppe\",\"Chihuahuan Creosotebush, Mixed Desert and Thorn Scrub\",\"Chihuahuan Gypsophilous Grassland and Steppe\",\"Chihuahuan Loamy Plains Desert Grassland\",\"Chihuahuan Mixed Desert and Thorn Scrub\",\"Chihuahuan Sandy Plains Semi-Desert Grassland\",\"Chihuahuan Stabilized Coppice Dune and Sand Flat Scrub\",\"Chihuahuan Succulent Desert Scrub\",\"Madrean Juniper Savanna\",\"Mojave Mid-Elevation Mixed Desert Scrub\",\"North American Warm Desert Active and Stabilized Dune\",\"Sonora-Mojave Creosotebush-White Bursage Desert Scrub\",\"Sonoran Mid-Elevation Desert Scrub\",\"Sonoran Paloverde-Mixed Cacti Desert Scrub\",\"Chihuahuan Mixed Salt Desert Scrub\",\"Sonora-Mojave Mixed Salt Desert Scrub\",\"North American Warm Desert Wash\",\"South Texas Lomas\",\"Tamaulipan Calcareous Thornscrub\",\"Tamaulipan Clay Grassland\",\"Tamaulipan Mesquite Upland Scrub\",\"Tamaulipan Mixed Deciduous Thornscrub\",\"Tamaulipan Savanna Grassland\",\"Inter-Mountain Basins Mat Saltbush Shrubland\",\"Inter-Mountain Basins Mixed Salt Desert Scrub\",\"Inter-Mountain Basins Wash\",\"Columbia Plateau Steppe and Grassland\",\"Great Basin Xeric Mixed Sagebrush Shrubland\",\"Inter-Mountain Basins Big Sagebrush Shrubland\",\"Inter-Mountain Basins Big Sagebrush Steppe\",\"Inter-Mountain Basins Montane Sagebrush Steppe\",\"Colorado Plateau Mixed Low Sagebrush Shrubland\",\"Columbia Plateau Low Sagebrush Steppe\",\"Columbia Plateau Scabland Shrubland\",\"Wyoming Basins Dwarf Sagebrush Shrubland and Steppe\",\"Colorado Plateau Blackbrush-Mormon-tea Shrubland\",\"Inter-Mountain Basins Semi-Desert Grassland\",\"Inter-Mountain Basins Semi-Desert Shrub Steppe\",\"Southern Colorado Plateau Sand Shrubland\",\"Acadian-Appalachian Alpine Tundra\",\"Rocky Mountain Alpine Dwarf-Shrubland\",\"Rocky Mountain Alpine Fell-Field\",\"Rocky Mountain Alpine Turf\",\"Mediterranean California Alpine Dry Tundra\",\"Mediterranean California Alpine Fell-Field\",\"North Pacific Dry and Mesic Alpine Dwarf-Shrubland, Fell-field and Meadow\",\"Rocky Mountain Alpine Tundra/Fell-field/Dwarf-shrub Map Unit\",\"Temperate Pacific Intertidal Mudflat\",\"Mediterranean California Eelgrass Bed\",\"North Pacific Maritime Eelgrass Bed\",\"South-Central Interior Large Floodplain - Herbaceous Modifier\",\"East Gulf Coastal Plain Large River Floodplain Forest - Herbaceous Modifier\",\"Temperate Pacific Freshwater Aquatic Bed\",\"Central California Coast Ranges Cliff and Canyon\",\"Mediterranean California Serpentine Barrens\",\"Southern California Coast Ranges Cliff and Canyon\",\"Central Interior Acidic Cliff and Talus\",\"Central Interior Calcareous Cliff and Talus\",\"East Gulf Coastal Plain Dry Chalk Bluff\",\"North-Central Appalachian Acidic Cliff and Talus\",\"North-Central Appalachian Circumneutral Cliff and Talus\",\"Southern Appalachian Montane Cliff\",\"Southern Interior Acid Cliff\",\"Southern Interior Calcareous Cliff\",\"Southern Piedmont Cliff\",\"Southern Appalachian Granitic Dome\",\"Southern Appalachian Rocky Summit\",\"Southern Piedmont Granite Flatrock\",\"Rocky Mountain Cliff, Canyon and Massive Bedrock\",\"Klamath-Siskiyou Cliff and Outcrop\",\"North Pacific Montane Massive Bedrock, Cliff and Talus\",\"North Pacific Serpentine Barren\",\"North Pacific Active Volcanic Rock and Cinder Land\",\"Sierra Nevada Cliff and Canyon\",\"Western Great Plains Badland\",\"Southwestern Great Plains Canyon\",\"Western Great Plains Cliff and Outcrop\",\"North American Warm Desert Badland\",\"North American Warm Desert Bedrock Cliff and Outcrop\",\"North American Warm Desert Pavement\",\"North American Warm Desert Volcanic Rockland\",\"Colorado Plateau Mixed Bedrock Canyon and Tableland\",\"Columbia Plateau Ash and Tuff Badland\",\"Geysers and Hot Springs\",\"Inter-Mountain Basins Active and Stabilized Dune\",\"Inter-Mountain Basins Cliff and Canyon\",\"Inter-Mountain Basins Shale Badland\",\"Inter-Mountain Basins Volcanic Rock and Cinder Land\",\"Rocky Mountain Alpine Bedrock and Scree\",\"Mediterranean California Alpine Bedrock and Scree\",\"North Pacific Alpine and Subalpine Bedrock and Scree\",\"Unconsolidated Shore\",\"Undifferentiated Barren Land\",\"North American Alpine Ice Field\",\"Orchards Vineyards and Other High Structure Agriculture\",\"Cultivated Cropland\",\"Pasture/Hay\",\"Introduced Upland Vegetation - Annual Grassland\",\"Introduced Upland Vegetation - Perennial Grassland and Forbland\",\"Modified/Managed Southern Tall Grassland\",\"Introduced Upland Vegetation - Shrub\",\"Introduced Riparian and Wetland Vegetation\",\"Introduced Upland Vegetation - Treed\",\"0\",\"Disturbed, Non-specific\",\"Recently Logged Areas\",\"Harvested Forest - Grass/Forb Regeneration\",\"Harvested Forest-Shrub Regeneration\",\"Harvested Forest - Northwestern Conifer Regeneration\",\"Recently Burned\",\"Recently burned grassland\",\"Recently burned shrubland\",\"Recently burned forest\",\"Disturbed/Successional - Grass/Forb Regeneration\",\"Disturbed/Successional - Shrub Regeneration\",\"Disturbed/Successional - Recently Chained Pinyon-Juniper\",\"Open Water (Aquaculture)\",\"Open Water (Brackish/Salt)\",\"Open Water (Fresh)\",\"Quarries, Mines, Gravel Pits and Oil Wells\",\"Developed, Open Space\",\"Developed, Low Intensity\",\"Developed, Medium Intensity\",\"Developed, High Intensity\"]}]},\"description\":\"The [USGS GAP/LANDFIRE National Terrestrial Ecosystems data](https://www.sciencebase.gov/catalog/item/573cc51be4b0dae0d5e4b0c5), based on the [NatureServe Terrestrial Ecological Systems](https://www.natureserve.org/products/terrestrial-ecological-systems-united-states), are the foundation of the most detailed, consistent map of vegetation available for the United States. These data facilitate planning and management for biological diversity on a regional and national scale.\\n\\nThis dataset includes the [land cover](https://www.usgs.gov/core-science-systems/science-analytics-and-synthesis/gap/science/land-cover) component of the GAP/LANDFIRE project.\\n\\n\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"GeoTIFF data\",\"file:values\":[{\"values\":[0],\"summary\":\"0\"},{\"values\":[1],\"summary\":\"South Florida Bayhead Swamp\"},{\"values\":[2],\"summary\":\"South Florida Cypress Dome\"},{\"values\":[3],\"summary\":\"South Florida Dwarf Cypress Savanna\"},{\"values\":[4],\"summary\":\"South Florida Mangrove Swamp\"},{\"values\":[5],\"summary\":\"South Florida Hardwood Hammock\"},{\"values\":[6],\"summary\":\"Southeast Florida Coastal Strand and Maritime Hammock\"},{\"values\":[7],\"summary\":\"Southwest Florida Coastal Strand and Maritime Hammock\"},{\"values\":[8],\"summary\":\"South Florida Pine Rockland\"},{\"values\":[9],\"summary\":\"Atlantic Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Open Understory\"},{\"values\":[10],\"summary\":\"Atlantic Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Scrub/Shrub Understory\"},{\"values\":[11],\"summary\":\"Atlantic Coastal Plain Upland Longleaf Pine Woodland\"},{\"values\":[12],\"summary\":\"Atlantic Coastal Plain Xeric River Dune\"},{\"values\":[13],\"summary\":\"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Open Understory Modifier\"},{\"values\":[14],\"summary\":\"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Scrub/Shrub Modifier\"},{\"values\":[15],\"summary\":\"Florida Longleaf Pine Sandhill - Scrub/Shrub Understory Modifier\"},{\"values\":[16],\"summary\":\"Florida Longleaf Pine Sandhill- Open Understory Modifier\"},{\"values\":[17],\"summary\":\"West Gulf Coastal Plain Upland Longleaf Pine Forest and Woodland\"},{\"values\":[18],\"summary\":\"Atlantic Coastal Plain Central Maritime Forest\"},{\"values\":[19],\"summary\":\"Atlantic Coastal Plain Southern Maritime Forest\"},{\"values\":[20],\"summary\":\"Central and South Texas Coastal Fringe Forest and Woodland\"},{\"values\":[21],\"summary\":\"East Gulf Coastal Plain Limestone Forest\"},{\"values\":[22],\"summary\":\"East Gulf Coastal Plain Maritime Forest\"},{\"values\":[23],\"summary\":\"East Gulf Coastal Plain Southern Loess Bluff Forest\"},{\"values\":[24],\"summary\":\"East Gulf Coastal Plain Southern Mesic Slope Forest\"},{\"values\":[25],\"summary\":\"Mississippi Delta Maritime Forest\"},{\"values\":[26],\"summary\":\"Southern Coastal Plain Dry Upland Hardwood Forest\"},{\"values\":[27],\"summary\":\"Southern Coastal Plain Oak Dome and Hammock\"},{\"values\":[28],\"summary\":\"West Gulf Coastal Plain Chenier and Upper Texas Coastal Fringe Forest and Woodland\"},{\"values\":[29],\"summary\":\"West Gulf Coastal Plain Mesic Hardwood Forest\"},{\"values\":[30],\"summary\":\"East-Central Texas Plains Pine Forest and Woodland\"},{\"values\":[31],\"summary\":\"West Gulf Coastal Plain Pine-Hardwood Forest\"},{\"values\":[32],\"summary\":\"West Gulf Coastal Plain Sandhill Oak and Shortleaf Pine Forest and Woodland\"},{\"values\":[33],\"summary\":\"Atlantic Coastal Plain Fall-Line Sandhills Longleaf Pine Woodland - Loblolly Modifier\"},{\"values\":[34],\"summary\":\"Deciduous Plantations\"},{\"values\":[35],\"summary\":\"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Loblolly Modifier\"},{\"values\":[36],\"summary\":\"East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Offsite Hardwood Modifier\"},{\"values\":[37],\"summary\":\"East Gulf Coastal Plain Near-Coast Pine Flatwoods - Offsite Hardwood Modifier\"},{\"values\":[38],\"summary\":\"Evergreen Plantation or Managed Pine\"},{\"values\":[39],\"summary\":\"California Central Valley Mixed Oak Savanna\"},{\"values\":[40],\"summary\":\"California Coastal Closed-Cone Conifer Forest and Woodland\"},{\"values\":[41],\"summary\":\"California Coastal Live Oak Woodland and Savanna\"},{\"values\":[42],\"summary\":\"California Lower Montane Blue Oak-Foothill Pine Woodland and Savanna\"},{\"values\":[43],\"summary\":\"Central and Southern California Mixed Evergreen Woodland\"},{\"values\":[44],\"summary\":\"Mediterranean California Lower Montane Black Oak-Conifer Forest and Woodland\"},{\"values\":[45],\"summary\":\"Southern California Oak Woodland and Savanna\"},{\"values\":[46],\"summary\":\"Madrean Encinal\"},{\"values\":[47],\"summary\":\"Madrean Pinyon-Juniper Woodland\"},{\"values\":[48],\"summary\":\"Madrean Pine-Oak Forest and Woodland\"},{\"values\":[49],\"summary\":\"Madrean Upper Montane Conifer-Oak Forest and Woodland\"},{\"values\":[50],\"summary\":\"Edwards Plateau Dry-Mesic Slope Forest and Woodland\"},{\"values\":[51],\"summary\":\"Edwards Plateau Limestone Savanna and Woodland\"},{\"values\":[52],\"summary\":\"Edwards Plateau Mesic Canyon\"},{\"values\":[53],\"summary\":\"Llano Uplift Acidic Forest, Woodland and Glade\"},{\"values\":[54],\"summary\":\"East Cascades Oak-Ponderosa Pine Forest and Woodland\"},{\"values\":[55],\"summary\":\"Mediterranean California Mixed Evergreen Forest\"},{\"values\":[56],\"summary\":\"Mediterranean California Mixed Oak Woodland\"},{\"values\":[57],\"summary\":\"North Pacific Dry Douglas-fir-(Madrone) Forest and Woodland\"},{\"values\":[58],\"summary\":\"North Pacific Oak Woodland\"},{\"values\":[59],\"summary\":\"Edwards Plateau Limestone Shrubland\"},{\"values\":[60],\"summary\":\"Allegheny-Cumberland Dry Oak Forest and Woodland - Hardwood\"},{\"values\":[61],\"summary\":\"Allegheny-Cumberland Dry Oak Forest and Woodland - Pine Modifier\"},{\"values\":[62],\"summary\":\"Central and Southern Appalachian Montane Oak Forest\"},{\"values\":[63],\"summary\":\"Central and Southern Appalachian Northern Hardwood Forest\"},{\"values\":[64],\"summary\":\"Central Appalachian Oak and Pine Forest\"},{\"values\":[65],\"summary\":\"Crosstimbers Oak Forest and Woodland\"},{\"values\":[66],\"summary\":\"East Gulf Coastal Plain Black Belt Calcareous Prairie and Woodland - Woodland Modifier\"},{\"values\":[67],\"summary\":\"East Gulf Coastal Plain Northern Dry Upland Hardwood Forest\"},{\"values\":[68],\"summary\":\"East Gulf Coastal Plain Northern Loess Plain Oak-Hickory Upland - Hardwood Modifier\"},{\"values\":[69],\"summary\":\"East Gulf Coastal Plain Northern Loess Plain Oak-Hickory Upland - Juniper Modifier\"},{\"values\":[70],\"summary\":\"East-Central Texas Plains Post Oak Savanna and Woodland\"},{\"values\":[71],\"summary\":\"Lower Mississippi River Dune Woodland and Forest\"},{\"values\":[72],\"summary\":\"Mississippi River Alluvial Plain Dry-Mesic Loess Slope Forest\"},{\"values\":[73],\"summary\":\"North-Central Interior Dry Oak Forest and Woodland\"},{\"values\":[74],\"summary\":\"North-Central Interior Dry-Mesic Oak Forest and Woodland\"},{\"values\":[75],\"summary\":\"Northeastern Interior Dry Oak Forest - Mixed Modifier\"},{\"values\":[76],\"summary\":\"Northeastern Interior Dry Oak Forest - Virginia/Pitch Pine Modifier\"},{\"values\":[77],\"summary\":\"Northeastern Interior Dry Oak Forest-Hardwood Modifier\"},{\"values\":[78],\"summary\":\"Northeastern Interior Dry-Mesic Oak Forest\"},{\"values\":[79],\"summary\":\"Northern Atlantic Coastal Plain Dry Hardwood Forest\"},{\"values\":[80],\"summary\":\"Crowley's Ridge Sand Forest\"},{\"values\":[81],\"summary\":\"Ouachita Montane Oak Forest\"},{\"values\":[82],\"summary\":\"Ozark-Ouachita Dry Oak Woodland\"},{\"values\":[83],\"summary\":\"Ozark-Ouachita Dry-Mesic Oak Forest\"},{\"values\":[84],\"summary\":\"Southern and Central Appalachian Oak Forest\"},{\"values\":[85],\"summary\":\"Southern and Central Appalachian Oak Forest - Xeric\"},{\"values\":[86],\"summary\":\"Southern Interior Low Plateau Dry-Mesic Oak Forest\"},{\"values\":[87],\"summary\":\"Southern Ridge and Valley Dry Calcareous Forest\"},{\"values\":[88],\"summary\":\"Southern Ridge and Valley Dry Calcareous Forest - Pine modifier\"},{\"values\":[89],\"summary\":\"East Gulf Coastal Plain Northern Dry Upland Hardwood Forest - Offsite Pine Modifier\"},{\"values\":[90],\"summary\":\"Managed Tree Plantation\"},{\"values\":[91],\"summary\":\"Ruderal forest\"},{\"values\":[92],\"summary\":\"Southern Piedmont Dry Oak-(Pine) Forest - Loblolly Pine Modifier\"},{\"values\":[93],\"summary\":\"Acadian Low-Elevation Spruce-Fir-Hardwood Forest\"},{\"values\":[94],\"summary\":\"Acadian-Appalachian Montane Spruce-Fir Forest\"},{\"values\":[95],\"summary\":\"Appalachian Hemlock-Hardwood Forest\"},{\"values\":[96],\"summary\":\"Central and Southern Appalachian Spruce-Fir Forest\"},{\"values\":[97],\"summary\":\"0\"},{\"values\":[98],\"summary\":\"Laurentian-Acadian Northern Hardwoods Forest\"},{\"values\":[99],\"summary\":\"Laurentian-Acadian Northern Pine-(Oak) Forest\"},{\"values\":[100],\"summary\":\"Laurentian-Acadian Pine-Hemlock-Hardwood Forest\"},{\"values\":[101],\"summary\":\"Paleozoic Plateau Bluff and Talus\"},{\"values\":[102],\"summary\":\"Southern Appalachian Northern Hardwood Forest\"},{\"values\":[103],\"summary\":\"Atlantic Coastal Plain Dry and Dry-Mesic Oak Forest\"},{\"values\":[104],\"summary\":\"Atlantic Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Offsite Hardwood\"},{\"values\":[105],\"summary\":\"East Gulf Coastal Plain Interior Shortleaf Pine-Oak Forest - Hardwood Modifier\"},{\"values\":[106],\"summary\":\"East Gulf Coastal Plain Interior Shortleaf Pine-Oak Forest - Mixed Modifier\"},{\"values\":[107],\"summary\":\"Ozark-Ouachita Shortleaf Pine-Bluestem Woodland\"},{\"values\":[108],\"summary\":\"Ozark-Ouachita Shortleaf Pine-Oak Forest and Woodland\"},{\"values\":[109],\"summary\":\"Southeastern Interior Longleaf Pine Woodland\"},{\"values\":[110],\"summary\":\"Southern Appalachian Low Mountain Pine Forest\"},{\"values\":[111],\"summary\":\"Southern Piedmont Dry Oak-(Pine) Forest\"},{\"values\":[112],\"summary\":\"Southern Piedmont Dry Oak-(Pine) Forest - Hardwood Modifier\"},{\"values\":[113],\"summary\":\"Southern Piedmont Dry Oak-(Pine) Forest - Mixed Modifier\"},{\"values\":[114],\"summary\":\"Southern Piedmont Dry Oak-Heath Forest - Mixed Modifier\"},{\"values\":[115],\"summary\":\"Eastern Great Plains Tallgrass Aspen Parkland\"},{\"values\":[116],\"summary\":\"Northwestern Great Plains Aspen Forest and Parkland\"},{\"values\":[117],\"summary\":\"Northwestern Great Plains Shrubland\"},{\"values\":[118],\"summary\":\"Western Great Plains Dry Bur Oak Forest and Woodland\"},{\"values\":[119],\"summary\":\"Western Great Plains Wooded Draw and Ravine\"},{\"values\":[120],\"summary\":\"Southern Atlantic Coastal Plain Mesic Hardwood Forest\"},{\"values\":[121],\"summary\":\"East Gulf Coastal Plain Northern Loess Bluff Forest\"},{\"values\":[122],\"summary\":\"East Gulf Coastal Plain Northern Mesic Hardwood Forest\"},{\"values\":[123],\"summary\":\"North-Central Interior Beech-Maple Forest\"},{\"values\":[124],\"summary\":\"North-Central Interior Maple-Basswood Forest\"},{\"values\":[125],\"summary\":\"Ozark-Ouachita Mesic Hardwood Forest\"},{\"values\":[126],\"summary\":\"South-Central Interior Mesophytic Forest\"},{\"values\":[127],\"summary\":\"Southern and Central Appalachian Cove Forest\"},{\"values\":[128],\"summary\":\"Crowley's Ridge Mesic Loess Slope Forest\"},{\"values\":[129],\"summary\":\"Southern Piedmont Mesic Forest\"},{\"values\":[130],\"summary\":\"Appalachian Shale Barrens\"},{\"values\":[131],\"summary\":\"Atlantic Coastal Plain Northern Maritime Forest\"},{\"values\":[132],\"summary\":\"Laurentian Pine-Oak Barrens\"},{\"values\":[133],\"summary\":\"Northeastern Interior Pine Barrens\"},{\"values\":[134],\"summary\":\"Northern Atlantic Coastal Plain Pitch Pine Barrens\"},{\"values\":[135],\"summary\":\"Southern Appalachian Montane Pine Forest and Woodland\"},{\"values\":[136],\"summary\":\"East Cascades Mesic Montane Mixed-Conifer Forest and Woodland\"},{\"values\":[137],\"summary\":\"Middle Rocky Mountain Montane Douglas-fir Forest and Woodland\"},{\"values\":[138],\"summary\":\"Northern Rocky Mountain Dry-Mesic Montane Mixed Conifer Forest\"},{\"values\":[139],\"summary\":\"Northern Rocky Mountain Foothill Conifer Wooded Steppe\"},{\"values\":[140],\"summary\":\"Northern Rocky Mountain Mesic Montane Mixed Conifer Forest\"},{\"values\":[141],\"summary\":\"Northern Rocky Mountain Ponderosa Pine Woodland and Savanna\"},{\"values\":[142],\"summary\":\"Northern Rocky Mountain Western Larch Savanna\"},{\"values\":[143],\"summary\":\"Northwestern Great Plains - Black Hills Ponderosa Pine Woodland and Savanna\"},{\"values\":[144],\"summary\":\"Rocky Mountain Foothill Limber Pine-Juniper Woodland\"},{\"values\":[145],\"summary\":\"Inter-Mountain Basins Aspen-Mixed Conifer Forest and Woodland\"},{\"values\":[146],\"summary\":\"Inter-Mountain Basins Subalpine Limber-Bristlecone Pine Woodland\"},{\"values\":[147],\"summary\":\"Northern Rocky Mountain Subalpine Woodland and Parkland\"},{\"values\":[148],\"summary\":\"Rocky Mountain Aspen Forest and Woodland\"},{\"values\":[149],\"summary\":\"Rocky Mountain Lodgepole Pine Forest\"},{\"values\":[150],\"summary\":\"Rocky Mountain Poor-Site Lodgepole Pine Forest\"},{\"values\":[151],\"summary\":\"Rocky Mountain Subalpine Dry-Mesic Spruce-Fir Forest and Woodland\"},{\"values\":[152],\"summary\":\"Rocky Mountain Subalpine Mesic Spruce-Fir Forest and Woodland\"},{\"values\":[153],\"summary\":\"Rocky Mountain Subalpine-Montane Limber-Bristlecone Pine Woodland\"},{\"values\":[154],\"summary\":\"Rocky Mountain Bigtooth Maple Ravine Woodland\"},{\"values\":[155],\"summary\":\"Southern Rocky Mountain Dry-Mesic Montane Mixed Conifer Forest and Woodland\"},{\"values\":[156],\"summary\":\"Southern Rocky Mountain Mesic Montane Mixed Conifer Forest and Woodland\"},{\"values\":[157],\"summary\":\"Southern Rocky Mountain Ponderosa Pine Savanna\"},{\"values\":[158],\"summary\":\"Southern Rocky Mountain Ponderosa Pine Woodland\"},{\"values\":[159],\"summary\":\"California Montane Jeffrey Pine-(Ponderosa Pine) Woodland\"},{\"values\":[160],\"summary\":\"Klamath-Siskiyou Lower Montane Serpentine Mixed Conifer Woodland\"},{\"values\":[161],\"summary\":\"Klamath-Siskiyou Upper Montane Serpentine Mixed Conifer Woodland\"},{\"values\":[162],\"summary\":\"Mediterranean California Dry-Mesic Mixed Conifer Forest and Woodland\"},{\"values\":[163],\"summary\":\"Mediterranean California Mesic Mixed Conifer Forest and Woodland\"},{\"values\":[164],\"summary\":\"Sierran-Intermontane Desert Western White Pine-White Fir Woodland\"},{\"values\":[165],\"summary\":\"California Coastal Redwood Forest\"},{\"values\":[166],\"summary\":\"North Pacific Broadleaf Landslide Forest and Shrubland\"},{\"values\":[167],\"summary\":\"North Pacific Dry-Mesic Silver Fir-Western Hemlock-Douglas-fir Forest\"},{\"values\":[168],\"summary\":\"North Pacific Hypermaritime Sitka Spruce Forest\"},{\"values\":[169],\"summary\":\"North Pacific Hypermaritime Western Red-cedar-Western Hemlock Forest\"},{\"values\":[170],\"summary\":\"North Pacific Lowland Mixed Hardwood-Conifer Forest and Woodland\"},{\"values\":[171],\"summary\":\"North Pacific Maritime Dry-Mesic Douglas-fir-Western Hemlock Forest\"},{\"values\":[172],\"summary\":\"North Pacific Maritime Mesic-Wet Douglas-fir-Western Hemlock Forest\"},{\"values\":[173],\"summary\":\"North Pacific Mesic Western Hemlock-Silver Fir Forest\"},{\"values\":[174],\"summary\":\"North Pacific Wooded Volcanic Flowage\"},{\"values\":[175],\"summary\":\"Mediterranean California Red Fir Forest\"},{\"values\":[176],\"summary\":\"Mediterranean California Subalpine Woodland\"},{\"values\":[177],\"summary\":\"North Pacific Maritime Mesic Subalpine Parkland\"},{\"values\":[178],\"summary\":\"North Pacific Mountain Hemlock Forest\"},{\"values\":[179],\"summary\":\"Northern California Mesic Subalpine Woodland\"},{\"values\":[180],\"summary\":\"Northern Pacific Mesic Subalpine Woodland\"},{\"values\":[181],\"summary\":\"Sierra Nevada Subalpine Lodgepole Pine Forest and Woodland\"},{\"values\":[182],\"summary\":\"Columbia Plateau Western Juniper Woodland and Savanna\"},{\"values\":[183],\"summary\":\"Great Basin Pinyon-Juniper Woodland\"},{\"values\":[184],\"summary\":\"Inter-Mountain Basins Curl-leaf Mountain Mahogany Woodland and Shrubland\"},{\"values\":[185],\"summary\":\"Inter-Mountain Basins Juniper Savanna\"},{\"values\":[186],\"summary\":\"Colorado Plateau Pinyon-Juniper Shrubland\"},{\"values\":[187],\"summary\":\"Colorado Plateau Pinyon-Juniper Woodland\"},{\"values\":[188],\"summary\":\"Southern Rocky Mountain Juniper Woodland and Savanna\"},{\"values\":[189],\"summary\":\"Southern Rocky Mountain Pinyon-Juniper Woodland\"},{\"values\":[190],\"summary\":\"Northwestern Great Plains Floodplain\"},{\"values\":[191],\"summary\":\"Northwestern Great Plains Riparian\"},{\"values\":[192],\"summary\":\"Western Great Plains Floodplain\"},{\"values\":[193],\"summary\":\"Western Great Plains Floodplain Systems\"},{\"values\":[194],\"summary\":\"Western Great Plains Riparian Woodland and Shrubland\"},{\"values\":[195],\"summary\":\"Central Appalachian Floodplain - Forest Modifier\"},{\"values\":[196],\"summary\":\"Central Appalachian Riparian - Forest Modifier\"},{\"values\":[197],\"summary\":\"Central Interior and Appalachian Floodplain Systems\"},{\"values\":[198],\"summary\":\"Central Interior and Appalachian Riparian Systems\"},{\"values\":[199],\"summary\":\"Laurentian-Acadian Floodplain Systems\"},{\"values\":[200],\"summary\":\"Ozark-Ouachita Riparian\"},{\"values\":[201],\"summary\":\"South-Central Interior Large Floodplain\"},{\"values\":[202],\"summary\":\"South-Central Interior Large Floodplain - Forest Modifier\"},{\"values\":[203],\"summary\":\"South-Central Interior Small Stream and Riparian\"},{\"values\":[204],\"summary\":\"North-Central Interior and Appalachian Rich Swamp\"},{\"values\":[205],\"summary\":\"0\"},{\"values\":[206],\"summary\":\"0\"},{\"values\":[207],\"summary\":\"Laurentian-Acadian Swamp Systems\"},{\"values\":[208],\"summary\":\"North-Central Interior Wet Flatwoods\"},{\"values\":[209],\"summary\":\"0\"},{\"values\":[210],\"summary\":\"South-Central Interior / Upper Coastal Plain Wet Flatwoods\"},{\"values\":[211],\"summary\":\"0\"},{\"values\":[212],\"summary\":\"Southern Piedmont/Ridge and Valley Upland Depression Swamp\"},{\"values\":[213],\"summary\":\"Atlantic Coastal Plain Blackwater Stream Floodplain Forest - Forest Modifier\"},{\"values\":[214],\"summary\":\"Atlantic Coastal Plain Brownwater Stream Floodplain Forest\"},{\"values\":[215],\"summary\":\"Atlantic Coastal Plain Northern Tidal Wooded Swamp\"},{\"values\":[216],\"summary\":\"Atlantic Coastal Plain Small Blackwater River Floodplain Forest\"},{\"values\":[217],\"summary\":\"Atlantic Coastal Plain Small Brownwater River Floodplain Forest\"},{\"values\":[218],\"summary\":\"Atlantic Coastal Plain Southern Tidal Wooded Swamp\"},{\"values\":[219],\"summary\":\"East Gulf Coastal Plain Large River Floodplain Forest - Forest Modifier\"},{\"values\":[220],\"summary\":\"East Gulf Coastal Plain Small Stream and River Floodplain Forest\"},{\"values\":[221],\"summary\":\"East Gulf Coastal Plain Tidal Wooded Swamp\"},{\"values\":[222],\"summary\":\"0\"},{\"values\":[223],\"summary\":\"Southeastern Great Plains Riparian Forest\"},{\"values\":[224],\"summary\":\"Southeastern Great Plains Floodplain Forest\"},{\"values\":[225],\"summary\":\"Mississippi River Bottomland Depression\"},{\"values\":[226],\"summary\":\"Mississippi River Floodplain and Riparian Forest\"},{\"values\":[227],\"summary\":\"Mississippi River Low Floodplain (Bottomland) Forest\"},{\"values\":[228],\"summary\":\"Mississippi River Riparian Forest\"},{\"values\":[229],\"summary\":\"Red River Large Floodplain Forest\"},{\"values\":[230],\"summary\":\"Southern Coastal Plain Blackwater River Floodplain Forest\"},{\"values\":[231],\"summary\":\"Southern Piedmont Large Floodplain Forest - Forest Modifier\"},{\"values\":[232],\"summary\":\"Southern Piedmont Small Floodplain and Riparian Forest\"},{\"values\":[233],\"summary\":\"West Gulf Coastal Plain Large River Floodplain Forest\"},{\"values\":[234],\"summary\":\"West Gulf Coastal Plain Near-Coast Large River Swamp\"},{\"values\":[235],\"summary\":\"West Gulf Coastal Plain Small Stream and River Forest\"},{\"values\":[236],\"summary\":\"Atlantic Coastal Plain Streamhead Seepage Swamp - Pocosin - and Baygall\"},{\"values\":[237],\"summary\":\"Gulf and Atlantic Coastal Plain Swamp Systems\"},{\"values\":[238],\"summary\":\"Southern Coastal Plain Hydric Hammock\"},{\"values\":[239],\"summary\":\"Southern Coastal Plain Seepage Swamp and Baygall\"},{\"values\":[240],\"summary\":\"West Gulf Coastal Plain Seepage Swamp and Baygall\"},{\"values\":[241],\"summary\":\"Atlantic Coastal Plain Nonriverine Swamp and Wet Hardwood Forest - Taxodium/Nyssa Modifier\"},{\"values\":[242],\"summary\":\"Atlantic Coastal Plain Nonriverine Swamp and Wet Hardwood Forest - Oak Dominated Modifier\"},{\"values\":[243],\"summary\":\"East Gulf Coastal Plain Southern Loblolly-Hardwood Flatwoods\"},{\"values\":[244],\"summary\":\"Lower Mississippi River Bottomland Depressions - Forest Modifier\"},{\"values\":[245],\"summary\":\"Lower Mississippi River Flatwoods\"},{\"values\":[246],\"summary\":\"Northern Atlantic Coastal Plain Basin Swamp and Wet Hardwood Forest\"},{\"values\":[247],\"summary\":\"Southern Coastal Plain Nonriverine Basin Swamp\"},{\"values\":[248],\"summary\":\"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Bay/Gum Modifier\"},{\"values\":[249],\"summary\":\"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Pine Modifier\"},{\"values\":[250],\"summary\":\"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Taxodium Modifier\"},{\"values\":[251],\"summary\":\"West Gulf Coastal Plain Nonriverine Wet Hardwood Flatwoods\"},{\"values\":[252],\"summary\":\"West Gulf Coastal Plain Pine-Hardwood Flatwoods\"},{\"values\":[253],\"summary\":\"Edwards Plateau Riparian\"},{\"values\":[254],\"summary\":\"Atlantic Coastal Plain Clay-Based Carolina Bay Forested Wetland\"},{\"values\":[255],\"summary\":\"Atlantic Coastal Plain Clay-Based Carolina Bay Herbaceous Wetland\"},{\"values\":[256],\"summary\":\"Atlantic Coastal Plain Southern Wet Pine Savanna and Flatwoods\"},{\"values\":[257],\"summary\":\"Central Atlantic Coastal Plain Wet Longleaf Pine Savanna and Flatwoods\"},{\"values\":[258],\"summary\":\"Central Florida Pine Flatwoods\"},{\"values\":[259],\"summary\":\"East Gulf Coastal Plain Near-Coast Pine Flatwoods\"},{\"values\":[260],\"summary\":\"East Gulf Coastal Plain Near-Coast Pine Flatwoods - Open Understory Modifier\"},{\"values\":[261],\"summary\":\"East Gulf Coastal Plain Near-Coast Pine Flatwoods - Scrub/Shrub Understory Modifier\"},{\"values\":[262],\"summary\":\"South Florida Pine Flatwoods\"},{\"values\":[263],\"summary\":\"Southern Coastal Plain Nonriverine Cypress Dome\"},{\"values\":[264],\"summary\":\"West Gulf Coastal Plain Wet Longleaf Pine Savanna and Flatwoods\"},{\"values\":[265],\"summary\":\"Columbia Basin Foothill Riparian Woodland and Shrubland\"},{\"values\":[266],\"summary\":\"Great Basin Foothill and Lower Montane Riparian Woodland and Shrubland\"},{\"values\":[267],\"summary\":\"0\"},{\"values\":[268],\"summary\":\"Northern Rocky Mountain Conifer Swamp\"},{\"values\":[269],\"summary\":\"Northern Rocky Mountain Lower Montane Riparian Woodland and Shrubland\"},{\"values\":[270],\"summary\":\"Rocky Mountain Lower Montane Riparian Woodland and Shrubland\"},{\"values\":[271],\"summary\":\"Rocky Mountain Montane Riparian Systems\"},{\"values\":[272],\"summary\":\"Rocky Mountain Subalpine-Montane Riparian Woodland\"},{\"values\":[273],\"summary\":\"North Pacific Hardwood-Conifer Swamp\"},{\"values\":[274],\"summary\":\"North Pacific Lowland Riparian Forest and Shrubland\"},{\"values\":[275],\"summary\":\"North Pacific Montane Riparian Woodland and Shrubland\"},{\"values\":[276],\"summary\":\"North Pacific Shrub Swamp\"},{\"values\":[277],\"summary\":\"California Central Valley Riparian Woodland and Shrubland\"},{\"values\":[278],\"summary\":\"Mediterranean California Foothill and Lower Montane Riparian Woodland\"},{\"values\":[279],\"summary\":\"Mediterranean California Serpentine Foothill and Lower Montane Riparian Woodland and Seep\"},{\"values\":[280],\"summary\":\"North American Warm Desert Lower Montane Riparian Woodland and Shrubland\"},{\"values\":[281],\"summary\":\"North American Warm Desert Riparian Systems\"},{\"values\":[282],\"summary\":\"North American Warm Desert Riparian Woodland and Shrubland\"},{\"values\":[283],\"summary\":\"Tamaulipan Floodplain\"},{\"values\":[284],\"summary\":\"Tamaulipan Riparian Systems\"},{\"values\":[285],\"summary\":\"Boreal Aspen-Birch Forest\"},{\"values\":[286],\"summary\":\"Boreal Jack Pine-Black Spruce Forest\"},{\"values\":[287],\"summary\":\"Boreal White Spruce-Fir-Hardwood Forest\"},{\"values\":[288],\"summary\":\"Boreal-Laurentian Conifer Acidic Swamp and Treed Poor Fen\"},{\"values\":[289],\"summary\":\"Eastern Boreal Floodplain\"},{\"values\":[290],\"summary\":\"South Florida Shell Hash Beach\"},{\"values\":[291],\"summary\":\"Southeast Florida Beach\"},{\"values\":[292],\"summary\":\"Southwest Florida Beach\"},{\"values\":[293],\"summary\":\"South Florida Everglades Sawgrass Marsh\"},{\"values\":[294],\"summary\":\"South Florida Freshwater Slough and Gator Hole\"},{\"values\":[295],\"summary\":\"South Florida Wet Marl Prairie\"},{\"values\":[296],\"summary\":\"California Maritime Chaparral\"},{\"values\":[297],\"summary\":\"California Mesic Chaparral\"},{\"values\":[298],\"summary\":\"California Xeric Serpentine Chaparral\"},{\"values\":[299],\"summary\":\"Klamath-Siskiyou Xeromorphic Serpentine Savanna and Chaparral\"},{\"values\":[300],\"summary\":\"Mediterranean California Mesic Serpentine Woodland and Chaparral\"},{\"values\":[301],\"summary\":\"Northern and Central California Dry-Mesic Chaparral\"},{\"values\":[302],\"summary\":\"Southern California Dry-Mesic Chaparral\"},{\"values\":[303],\"summary\":\"Southern California Coastal Scrub\"},{\"values\":[304],\"summary\":\"California Central Valley and Southern Coastal Grassland\"},{\"values\":[305],\"summary\":\"California Mesic Serpentine Grassland\"},{\"values\":[306],\"summary\":\"Columbia Basin Foothill and Canyon Dry Grassland\"},{\"values\":[307],\"summary\":\"Columbia Basin Palouse Prairie\"},{\"values\":[308],\"summary\":\"North Pacific Alpine and Subalpine Dry Grassland\"},{\"values\":[309],\"summary\":\"North Pacific Montane Grassland\"},{\"values\":[310],\"summary\":\"North Pacific Montane Shrubland\"},{\"values\":[311],\"summary\":\"Northern Rocky Mountain Lower Montane, Foothill and Valley Grassland\"},{\"values\":[312],\"summary\":\"Northern Rocky Mountain Montane-Foothill Deciduous Shrubland\"},{\"values\":[313],\"summary\":\"Northern Rocky Mountain Subalpine Deciduous Shrubland\"},{\"values\":[314],\"summary\":\"Northern Rocky Mountain Subalpine-Upper Montane Grassland\"},{\"values\":[315],\"summary\":\"Southern Rocky Mountain Montane-Subalpine Grassland\"},{\"values\":[316],\"summary\":\"Rocky Mountain Gambel Oak-Mixed Montane Shrubland\"},{\"values\":[317],\"summary\":\"Rocky Mountain Lower Montane-Foothill Shrubland\"},{\"values\":[318],\"summary\":\"California Northern Coastal Grassland\"},{\"values\":[319],\"summary\":\"North Pacific Herbaceous Bald and Bluff\"},{\"values\":[320],\"summary\":\"North Pacific Hypermaritime Shrub and Herbaceous Headland\"},{\"values\":[321],\"summary\":\"Willamette Valley Upland Prairie and Savanna\"},{\"values\":[322],\"summary\":\"Mediterranean California Subalpine Meadow\"},{\"values\":[323],\"summary\":\"Rocky Mountain Subalpine-Montane Mesic Meadow\"},{\"values\":[324],\"summary\":\"Central Mixedgrass Prairie\"},{\"values\":[325],\"summary\":\"Northwestern Great Plains Mixedgrass Prairie\"},{\"values\":[326],\"summary\":\"Western Great Plains Foothill and Piedmont Grassland\"},{\"values\":[327],\"summary\":\"Western Great Plains Tallgrass Prairie\"},{\"values\":[328],\"summary\":\"Western Great Plains Sand Prairie\"},{\"values\":[329],\"summary\":\"Western Great Plains Sandhill Steppe\"},{\"values\":[330],\"summary\":\"Western Great Plains Mesquite Woodland and Shrubland\"},{\"values\":[331],\"summary\":\"Western Great Plains Shortgrass Prairie\"},{\"values\":[332],\"summary\":\"Arkansas Valley Prairie and Woodland\"},{\"values\":[333],\"summary\":\"Central Tallgrass Prairie\"},{\"values\":[334],\"summary\":\"North-Central Interior Oak Savanna\"},{\"values\":[335],\"summary\":\"North-Central Interior Sand and Gravel Tallgrass Prairie\"},{\"values\":[336],\"summary\":\"North-Central Oak Barrens\"},{\"values\":[337],\"summary\":\"Northern Tallgrass Prairie\"},{\"values\":[338],\"summary\":\"Southeastern Great Plains Tallgrass Prairie\"},{\"values\":[339],\"summary\":\"Texas Blackland Tallgrass Prairie\"},{\"values\":[340],\"summary\":\"Texas-Louisiana Coastal Prairie\"},{\"values\":[341],\"summary\":\"Central Appalachian Pine-Oak Rocky Woodland\"},{\"values\":[342],\"summary\":\"Southern Appalachian Grass and Shrub Bald\"},{\"values\":[343],\"summary\":\"Southern Appalachian Grass and Shrub Bald - Herbaceous Modifier\"},{\"values\":[344],\"summary\":\"Southern Appalachian Grass and Shrub Bald - Shrub Modifier\"},{\"values\":[345],\"summary\":\"Central Appalachian Alkaline Glade and Woodland\"},{\"values\":[346],\"summary\":\"Central Interior Highlands Calcareous Glade and Barrens\"},{\"values\":[347],\"summary\":\"Central Interior Highlands Dry Acidic Glade and Barrens\"},{\"values\":[348],\"summary\":\"Cumberland Sandstone Glade and Barrens\"},{\"values\":[349],\"summary\":\"Great Lakes Alvar\"},{\"values\":[350],\"summary\":\"Nashville Basin Limestone Glade\"},{\"values\":[351],\"summary\":\"Southern Ridge and Valley / Cumberland Dry Calcareous Forest\"},{\"values\":[352],\"summary\":\"Southern Piedmont Glade and Barrens\"},{\"values\":[353],\"summary\":\"East Gulf Coastal Plain Black Belt Calcareous Prairie and Woodland - Herbaceous Modifier\"},{\"values\":[354],\"summary\":\"East Gulf Coastal Plain Jackson Prairie and Woodland\"},{\"values\":[355],\"summary\":\"Eastern Highland Rim Prairie and Barrens - Dry Modifier\"},{\"values\":[356],\"summary\":\"Coahuilan Chaparral\"},{\"values\":[357],\"summary\":\"Madrean Oriental Chaparral\"},{\"values\":[358],\"summary\":\"Mogollon Chaparral\"},{\"values\":[359],\"summary\":\"Sonora-Mojave Semi-Desert Chaparral\"},{\"values\":[360],\"summary\":\"California Montane Woodland and Chaparral\"},{\"values\":[361],\"summary\":\"Great Basin Semi-Desert Chaparral\"},{\"values\":[362],\"summary\":\"Florida Dry Prairie\"},{\"values\":[363],\"summary\":\"Florida Peninsula Inland Scrub\"},{\"values\":[364],\"summary\":\"West Gulf Coastal Plain Catahoula Barrens\"},{\"values\":[365],\"summary\":\"West Gulf Coastal Plain Nepheline Syenite Glade\"},{\"values\":[366],\"summary\":\"East Gulf Coastal Plain Jackson Plain Dry Flatwoods - Open Understory Modifier\"},{\"values\":[367],\"summary\":\"West Gulf Coastal Plain Northern Calcareous Prairie\"},{\"values\":[368],\"summary\":\"West Gulf Coastal Plain Southern Calcareous Prairie\"},{\"values\":[369],\"summary\":\"Acadian-Appalachian Subalpine Woodland and Heath-Krummholz\"},{\"values\":[370],\"summary\":\"Atlantic and Gulf Coastal Plain Interdunal Wetland\"},{\"values\":[371],\"summary\":\"Atlantic Coastal Plain Southern Dune and Maritime Grassland\"},{\"values\":[372],\"summary\":\"Central and Upper Texas Coast Dune and Coastal Grassland\"},{\"values\":[373],\"summary\":\"East Gulf Coastal Plain Dune and Coastal Grassland\"},{\"values\":[374],\"summary\":\"Great Lakes Dune\"},{\"values\":[375],\"summary\":\"Northern Atlantic Coastal Plain Dune and Swale\"},{\"values\":[376],\"summary\":\"Northern Atlantic Coastal Plain Heathland and Grassland\"},{\"values\":[377],\"summary\":\"South Texas Dune and Coastal Grassland\"},{\"values\":[378],\"summary\":\"South Texas Sand Sheet Grassland\"},{\"values\":[379],\"summary\":\"Southwest Florida Dune and Coastal Grassland\"},{\"values\":[380],\"summary\":\"North Pacific Coastal Cliff and Bluff\"},{\"values\":[381],\"summary\":\"North Pacific Maritime Coastal Sand Dune and Strand\"},{\"values\":[382],\"summary\":\"Northern California Coastal Scrub\"},{\"values\":[383],\"summary\":\"Mediterranean California Coastal Bluff\"},{\"values\":[384],\"summary\":\"Mediterranean California Northern Coastal Dune\"},{\"values\":[385],\"summary\":\"Mediterranean California Southern Coastal Dune\"},{\"values\":[386],\"summary\":\"Atlantic Coastal Plain Northern Sandy Beach\"},{\"values\":[387],\"summary\":\"Atlantic Coastal Plain Sea Island Beach\"},{\"values\":[388],\"summary\":\"Atlantic Coastal Plain Southern Beach\"},{\"values\":[389],\"summary\":\"Florida Panhandle Beach Vegetation\"},{\"values\":[390],\"summary\":\"Louisiana Beach\"},{\"values\":[391],\"summary\":\"Northern Atlantic Coastal Plain Sandy Beach\"},{\"values\":[392],\"summary\":\"Texas Coastal Bend Beach\"},{\"values\":[393],\"summary\":\"Upper Texas Coast Beach\"},{\"values\":[394],\"summary\":\"0\"},{\"values\":[395],\"summary\":\"Mediterranean California Serpentine Fen\"},{\"values\":[396],\"summary\":\"Mediterranean California Subalpine-Montane Fen\"},{\"values\":[397],\"summary\":\"North Pacific Bog and Fen\"},{\"values\":[398],\"summary\":\"Rocky Mountain Subalpine-Montane Fen\"},{\"values\":[399],\"summary\":\"Atlantic Coastal Plain Peatland Pocosin\"},{\"values\":[400],\"summary\":\"Southern and Central Appalachian Bog and Fen\"},{\"values\":[401],\"summary\":\"Atlantic Coastal Plain Central Fresh-Oligohaline Tidal Marsh\"},{\"values\":[402],\"summary\":\"Atlantic Coastal Plain Embayed Region Tidal Freshwater Marsh\"},{\"values\":[403],\"summary\":\"Atlantic Coastal Plain Northern Fresh and Oligohaline Tidal Marsh\"},{\"values\":[404],\"summary\":\"Florida Big Bend Fresh-Oligohaline Tidal Marsh\"},{\"values\":[405],\"summary\":\"Atlantic Coastal Plain Depression Pondshore\"},{\"values\":[406],\"summary\":\"Atlantic Coastal Plain Large Natural Lakeshore\"},{\"values\":[407],\"summary\":\"Central Florida Herbaceous Pondshore\"},{\"values\":[408],\"summary\":\"Central Florida Herbaceous Seep\"},{\"values\":[409],\"summary\":\"East Gulf Coastal Plain Savanna and Wet Prairie\"},{\"values\":[410],\"summary\":\"East Gulf Coastal Plain Depression Pondshore\"},{\"values\":[411],\"summary\":\"Floridian Highlands Freshwater Marsh\"},{\"values\":[412],\"summary\":\"Southern Coastal Plain Herbaceous Seepage Bog\"},{\"values\":[413],\"summary\":\"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Clethra Modifier\"},{\"values\":[414],\"summary\":\"Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Nupea Modifier\"},{\"values\":[415],\"summary\":\"Texas-Louisiana Coastal Prairie Slough\"},{\"values\":[416],\"summary\":\"Central Interior and Appalachian Shrub-Herbaceous Wetland Systems\"},{\"values\":[417],\"summary\":\"Great Lakes Coastal Marsh Systems\"},{\"values\":[418],\"summary\":\"0\"},{\"values\":[419],\"summary\":\"0\"},{\"values\":[420],\"summary\":\"Laurentian-Acadian Shrub-Herbaceous Wetland Systems\"},{\"values\":[421],\"summary\":\"0\"},{\"values\":[422],\"summary\":\"Eastern Great Plains Wet Meadow, Prairie and Marsh\"},{\"values\":[423],\"summary\":\"Great Lakes Wet-Mesic Lakeplain Prairie\"},{\"values\":[424],\"summary\":\"Great Plains Prairie Pothole\"},{\"values\":[425],\"summary\":\"Western Great Plains Closed Depression Wetland\"},{\"values\":[426],\"summary\":\"Western Great Plains Depressional Wetland Systems\"},{\"values\":[427],\"summary\":\"Western Great Plains Open Freshwater Depression Wetland\"},{\"values\":[428],\"summary\":\"Cumberland Riverscour\"},{\"values\":[429],\"summary\":\"Inter-Mountain Basins Interdunal Swale Wetland\"},{\"values\":[430],\"summary\":\"North Pacific Avalanche Chute Shrubland\"},{\"values\":[431],\"summary\":\"North Pacific Intertidal Freshwater Wetland\"},{\"values\":[432],\"summary\":\"Temperate Pacific Freshwater Emergent Marsh\"},{\"values\":[433],\"summary\":\"Temperate Pacific Freshwater Mudflat\"},{\"values\":[434],\"summary\":\"Columbia Plateau Vernal Pool\"},{\"values\":[435],\"summary\":\"Northern California Claypan Vernal Pool\"},{\"values\":[436],\"summary\":\"Northern Rocky Mountain Wooded Vernal Pool\"},{\"values\":[437],\"summary\":\"Columbia Plateau Silver Sagebrush Seasonally Flooded Shrub-Steppe\"},{\"values\":[438],\"summary\":\"Rocky Mountain Alpine-Montane Wet Meadow\"},{\"values\":[439],\"summary\":\"Rocky Mountain Subalpine-Montane Riparian Shrubland\"},{\"values\":[440],\"summary\":\"Temperate Pacific Montane Wet Meadow\"},{\"values\":[441],\"summary\":\"Willamette Valley Wet Prairie\"},{\"values\":[442],\"summary\":\"Chihuahuan-Sonoran Desert Bottomland and Swale Grassland\"},{\"values\":[443],\"summary\":\"North American Arid West Emergent Marsh\"},{\"values\":[444],\"summary\":\"North American Warm Desert Riparian Mesquite Bosque\"},{\"values\":[445],\"summary\":\"Western Great Plains Saline Depression Wetland\"},{\"values\":[446],\"summary\":\"Acadian Salt Marsh and Estuary Systems\"},{\"values\":[447],\"summary\":\"Atlantic Coastal Plain Central Salt and Brackish Tidal Marsh\"},{\"values\":[448],\"summary\":\"Atlantic Coastal Plain Embayed Region Tidal Salt and Brackish Marsh\"},{\"values\":[449],\"summary\":\"Atlantic Coastal Plain Indian River Lagoon Tidal Marsh\"},{\"values\":[450],\"summary\":\"Atlantic Coastal Plain Northern Tidal Salt Marsh\"},{\"values\":[451],\"summary\":\"Florida Big Bend Salt-Brackish Tidal Marsh\"},{\"values\":[452],\"summary\":\"Gulf and Atlantic Coastal Plain Tidal Marsh Systems\"},{\"values\":[453],\"summary\":\"Mississippi Sound Salt and Brackish Tidal Marsh\"},{\"values\":[454],\"summary\":\"Texas Saline Coastal Prairie\"},{\"values\":[455],\"summary\":\"Temperate Pacific Tidal Salt and Brackish Marsh\"},{\"values\":[456],\"summary\":\"Inter-Mountain Basins Alkaline Closed Depression\"},{\"values\":[457],\"summary\":\"Inter-Mountain Basins Greasewood Flat\"},{\"values\":[458],\"summary\":\"Inter-Mountain Basins Playa\"},{\"values\":[459],\"summary\":\"North American Warm Desert Playa\"},{\"values\":[460],\"summary\":\"Apacherian-Chihuahuan Mesquite Upland Scrub\"},{\"values\":[461],\"summary\":\"Apacherian-Chihuahuan Semi-Desert Grassland and Steppe\"},{\"values\":[462],\"summary\":\"Chihuahuan Creosotebush, Mixed Desert and Thorn Scrub\"},{\"values\":[463],\"summary\":\"Chihuahuan Gypsophilous Grassland and Steppe\"},{\"values\":[464],\"summary\":\"Chihuahuan Loamy Plains Desert Grassland\"},{\"values\":[465],\"summary\":\"Chihuahuan Mixed Desert and Thorn Scrub\"},{\"values\":[466],\"summary\":\"Chihuahuan Sandy Plains Semi-Desert Grassland\"},{\"values\":[467],\"summary\":\"Chihuahuan Stabilized Coppice Dune and Sand Flat Scrub\"},{\"values\":[468],\"summary\":\"Chihuahuan Succulent Desert Scrub\"},{\"values\":[469],\"summary\":\"Madrean Juniper Savanna\"},{\"values\":[470],\"summary\":\"Mojave Mid-Elevation Mixed Desert Scrub\"},{\"values\":[471],\"summary\":\"North American Warm Desert Active and Stabilized Dune\"},{\"values\":[472],\"summary\":\"Sonora-Mojave Creosotebush-White Bursage Desert Scrub\"},{\"values\":[473],\"summary\":\"Sonoran Mid-Elevation Desert Scrub\"},{\"values\":[474],\"summary\":\"Sonoran Paloverde-Mixed Cacti Desert Scrub\"},{\"values\":[475],\"summary\":\"Chihuahuan Mixed Salt Desert Scrub\"},{\"values\":[476],\"summary\":\"Sonora-Mojave Mixed Salt Desert Scrub\"},{\"values\":[477],\"summary\":\"North American Warm Desert Wash\"},{\"values\":[478],\"summary\":\"South Texas Lomas\"},{\"values\":[479],\"summary\":\"Tamaulipan Calcareous Thornscrub\"},{\"values\":[480],\"summary\":\"Tamaulipan Clay Grassland\"},{\"values\":[481],\"summary\":\"Tamaulipan Mesquite Upland Scrub\"},{\"values\":[482],\"summary\":\"Tamaulipan Mixed Deciduous Thornscrub\"},{\"values\":[483],\"summary\":\"Tamaulipan Savanna Grassland\"},{\"values\":[484],\"summary\":\"Inter-Mountain Basins Mat Saltbush Shrubland\"},{\"values\":[485],\"summary\":\"Inter-Mountain Basins Mixed Salt Desert Scrub\"},{\"values\":[486],\"summary\":\"Inter-Mountain Basins Wash\"},{\"values\":[487],\"summary\":\"Columbia Plateau Steppe and Grassland\"},{\"values\":[488],\"summary\":\"Great Basin Xeric Mixed Sagebrush Shrubland\"},{\"values\":[489],\"summary\":\"Inter-Mountain Basins Big Sagebrush Shrubland\"},{\"values\":[490],\"summary\":\"Inter-Mountain Basins Big Sagebrush Steppe\"},{\"values\":[491],\"summary\":\"Inter-Mountain Basins Montane Sagebrush Steppe\"},{\"values\":[492],\"summary\":\"Colorado Plateau Mixed Low Sagebrush Shrubland\"},{\"values\":[493],\"summary\":\"Columbia Plateau Low Sagebrush Steppe\"},{\"values\":[494],\"summary\":\"Columbia Plateau Scabland Shrubland\"},{\"values\":[495],\"summary\":\"Wyoming Basins Dwarf Sagebrush Shrubland and Steppe\"},{\"values\":[496],\"summary\":\"Colorado Plateau Blackbrush-Mormon-tea Shrubland\"},{\"values\":[497],\"summary\":\"Inter-Mountain Basins Semi-Desert Grassland\"},{\"values\":[498],\"summary\":\"Inter-Mountain Basins Semi-Desert Shrub Steppe\"},{\"values\":[499],\"summary\":\"Southern Colorado Plateau Sand Shrubland\"},{\"values\":[500],\"summary\":\"Acadian-Appalachian Alpine Tundra\"},{\"values\":[501],\"summary\":\"Rocky Mountain Alpine Dwarf-Shrubland\"},{\"values\":[502],\"summary\":\"Rocky Mountain Alpine Fell-Field\"},{\"values\":[503],\"summary\":\"Rocky Mountain Alpine Turf\"},{\"values\":[504],\"summary\":\"Mediterranean California Alpine Dry Tundra\"},{\"values\":[505],\"summary\":\"Mediterranean California Alpine Fell-Field\"},{\"values\":[506],\"summary\":\"North Pacific Dry and Mesic Alpine Dwarf-Shrubland, Fell-field and Meadow\"},{\"values\":[507],\"summary\":\"Rocky Mountain Alpine Tundra/Fell-field/Dwarf-shrub Map Unit\"},{\"values\":[508],\"summary\":\"Temperate Pacific Intertidal Mudflat\"},{\"values\":[509],\"summary\":\"Mediterranean California Eelgrass Bed\"},{\"values\":[510],\"summary\":\"North Pacific Maritime Eelgrass Bed\"},{\"values\":[511],\"summary\":\"South-Central Interior Large Floodplain - Herbaceous Modifier\"},{\"values\":[512],\"summary\":\"East Gulf Coastal Plain Large River Floodplain Forest - Herbaceous Modifier\"},{\"values\":[513],\"summary\":\"Temperate Pacific Freshwater Aquatic Bed\"},{\"values\":[514],\"summary\":\"Central California Coast Ranges Cliff and Canyon\"},{\"values\":[515],\"summary\":\"Mediterranean California Serpentine Barrens\"},{\"values\":[516],\"summary\":\"Southern California Coast Ranges Cliff and Canyon\"},{\"values\":[517],\"summary\":\"Central Interior Acidic Cliff and Talus\"},{\"values\":[518],\"summary\":\"Central Interior Calcareous Cliff and Talus\"},{\"values\":[519],\"summary\":\"East Gulf Coastal Plain Dry Chalk Bluff\"},{\"values\":[520],\"summary\":\"North-Central Appalachian Acidic Cliff and Talus\"},{\"values\":[521],\"summary\":\"North-Central Appalachian Circumneutral Cliff and Talus\"},{\"values\":[522],\"summary\":\"Southern Appalachian Montane Cliff\"},{\"values\":[523],\"summary\":\"Southern Interior Acid Cliff\"},{\"values\":[524],\"summary\":\"Southern Interior Calcareous Cliff\"},{\"values\":[525],\"summary\":\"Southern Piedmont Cliff\"},{\"values\":[526],\"summary\":\"Southern Appalachian Granitic Dome\"},{\"values\":[527],\"summary\":\"Southern Appalachian Rocky Summit\"},{\"values\":[528],\"summary\":\"Southern Piedmont Granite Flatrock\"},{\"values\":[529],\"summary\":\"Rocky Mountain Cliff, Canyon and Massive Bedrock\"},{\"values\":[530],\"summary\":\"Klamath-Siskiyou Cliff and Outcrop\"},{\"values\":[531],\"summary\":\"North Pacific Montane Massive Bedrock, Cliff and Talus\"},{\"values\":[532],\"summary\":\"North Pacific Serpentine Barren\"},{\"values\":[533],\"summary\":\"North Pacific Active Volcanic Rock and Cinder Land\"},{\"values\":[534],\"summary\":\"Sierra Nevada Cliff and Canyon\"},{\"values\":[535],\"summary\":\"Western Great Plains Badland\"},{\"values\":[536],\"summary\":\"Southwestern Great Plains Canyon\"},{\"values\":[537],\"summary\":\"Western Great Plains Cliff and Outcrop\"},{\"values\":[538],\"summary\":\"North American Warm Desert Badland\"},{\"values\":[539],\"summary\":\"North American Warm Desert Bedrock Cliff and Outcrop\"},{\"values\":[540],\"summary\":\"North American Warm Desert Pavement\"},{\"values\":[541],\"summary\":\"North American Warm Desert Volcanic Rockland\"},{\"values\":[542],\"summary\":\"Colorado Plateau Mixed Bedrock Canyon and Tableland\"},{\"values\":[543],\"summary\":\"Columbia Plateau Ash and Tuff Badland\"},{\"values\":[544],\"summary\":\"Geysers and Hot Springs\"},{\"values\":[545],\"summary\":\"Inter-Mountain Basins Active and Stabilized Dune\"},{\"values\":[546],\"summary\":\"Inter-Mountain Basins Cliff and Canyon\"},{\"values\":[547],\"summary\":\"Inter-Mountain Basins Shale Badland\"},{\"values\":[548],\"summary\":\"Inter-Mountain Basins Volcanic Rock and Cinder Land\"},{\"values\":[549],\"summary\":\"Rocky Mountain Alpine Bedrock and Scree\"},{\"values\":[550],\"summary\":\"Mediterranean California Alpine Bedrock and Scree\"},{\"values\":[551],\"summary\":\"North Pacific Alpine and Subalpine Bedrock and Scree\"},{\"values\":[552],\"summary\":\"Unconsolidated Shore\"},{\"values\":[553],\"summary\":\"Undifferentiated Barren Land\"},{\"values\":[554],\"summary\":\"North American Alpine Ice Field\"},{\"values\":[555],\"summary\":\"Orchards Vineyards and Other High Structure Agriculture\"},{\"values\":[556],\"summary\":\"Cultivated Cropland\"},{\"values\":[557],\"summary\":\"Pasture/Hay\"},{\"values\":[558],\"summary\":\"Introduced Upland Vegetation - Annual Grassland\"},{\"values\":[559],\"summary\":\"Introduced Upland Vegetation - Perennial Grassland and Forbland\"},{\"values\":[560],\"summary\":\"Modified/Managed Southern Tall Grassland\"},{\"values\":[561],\"summary\":\"Introduced Upland Vegetation - Shrub\"},{\"values\":[562],\"summary\":\"Introduced Riparian and Wetland Vegetation\"},{\"values\":[563],\"summary\":\"Introduced Upland Vegetation - Treed\"},{\"values\":[564],\"summary\":\"0\"},{\"values\":[565],\"summary\":\"Disturbed, Non-specific\"},{\"values\":[566],\"summary\":\"Recently Logged Areas\"},{\"values\":[567],\"summary\":\"Harvested Forest - Grass/Forb Regeneration\"},{\"values\":[568],\"summary\":\"Harvested Forest-Shrub Regeneration\"},{\"values\":[569],\"summary\":\"Harvested Forest - Northwestern Conifer Regeneration\"},{\"values\":[570],\"summary\":\"Recently Burned\"},{\"values\":[571],\"summary\":\"Recently burned grassland\"},{\"values\":[572],\"summary\":\"Recently burned shrubland\"},{\"values\":[573],\"summary\":\"Recently burned forest\"},{\"values\":[574],\"summary\":\"Disturbed/Successional - Grass/Forb Regeneration\"},{\"values\":[575],\"summary\":\"Disturbed/Successional - Shrub Regeneration\"},{\"values\":[576],\"summary\":\"Disturbed/Successional - Recently Chained Pinyon-Juniper\"},{\"values\":[577],\"summary\":\"Open Water (Aquaculture)\"},{\"values\":[578],\"summary\":\"Open Water (Brackish/Salt)\"},{\"values\":[579],\"summary\":\"Open Water (Fresh)\"},{\"values\":[580],\"summary\":\"Quarries, Mines, Gravel Pits and Oil Wells\"},{\"values\":[581],\"summary\":\"Developed, Open Space\"},{\"values\":[582],\"summary\":\"Developed, Low Intensity\"},{\"values\":[583],\"summary\":\"Developed, Medium Intensity\"},{\"values\":[584],\"summary\":\"Developed, High Intensity\"}]}},\"stac_version\":\"1.0.0\",\"msft:container\":\"usgs-gap\",\"stac_extensions\":[\"https://stac-extensions.github.io/label/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"U.S.-wide land cover information for 2011\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-17A2HGF-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/972/MOD17_User_Guide_V61.pdf\",\"title\":\"MOD17 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD17A2HGF\",\"title\":\"MOD17A2HGF file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD17A2HGF\",\"title\":\"MYD17A2HGF file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD17A2HGF.061\",\"title\":\"LP DAAC - MOD17A2HGF\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD17A2HGF.061\",\"title\":\"LP DAAC - MYD17A2HGF\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-17A2HGF-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Gross Primary Productivity 8-Day Gap-Filled\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-17A2HGF-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Gross Primary Productivity 8-Day Gap-Filled thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-17A2HGF-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Vegetation\",\"Global\",\"MOD17A2HGF\",\"MYD17A2HGF\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Version 6.1 Gross Primary Productivity (GPP) product is a cumulative 8-day composite of values with 500 meter (m) pixel size based on the radiation use efficiency concept that can be potentially used as inputs to data models to calculate terrestrial energy, carbon, water cycle processes, and biogeochemistry of vegetation. The Moderate Resolution Imaging Spectroradiometer (MODIS) data product includes information about GPP and Net Photosynthesis (PSN). The PSN band values are the GPP less the Maintenance Respiration (MR). The data product also contains a PSN Quality Control (QC) layer. The quality layer contains quality information for both the GPP and the PSN. This product will be generated at the end of each year when the entire yearly 8-day 15A2H is available. Hence, the gap-filled A2HGF is the improved 17, which has cleaned the poor-quality inputs from 8-day Leaf Area Index and Fraction of Photosynthetically Active Radiation (FPAR/LAI) based on the Quality Control (QC) label for every pixel. If any LAI/FPAR pixel did not meet the quality screening criteria, its value is determined through linear interpolation. However, users cannot get this product in near-real time because it will be generated only at the end of a given year.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"Gpp_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Gross Primary Productivity\",\"raster:bands\":[{\"unit\":\"kg C/m^2\",\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"PsnNet_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Net Photosynthesis\",\"raster:bands\":[{\"unit\":\"kg C/m^2\",\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"Psn_QC_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality control indicators\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD17A2HGF.061\",\"citation\":\"Running, S., & Zhao, M. (2021). MODIS/Terra Gross Primary Productivity Gap-Filled 8-Day L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD17A2HGF.061\"},{\"doi\":\"10.5067/MODIS/MYD17A2HGF.061\",\"citation\":\"Running, S., & Zhao, M. (2021). MODIS/Aqua Gross Primary Productivity Gap-Filled 8-Day L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD17A2HGF.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Gross Primary Productivity 8-Day Gap-Filled\",\"msft:region\":\"westeurope\"},{\"id\":\"planet-nicfi-visual\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual\"},{\"rel\":\"license\",\"href\":\"https://assets.planet.com/docs/Planet_ParticipantLicenseAgreement_NICFI.pdf\",\"type\":\"application/pdf\",\"title\":\"Participant License Agreement.\"},{\"rel\":\"documentation\",\"href\":\"https://assets.planet.com/docs/NICFI_UserGuidesFAQ.pdf\",\"type\":\"application/pdf\",\"title\":\"Participant License Agreement.\"},{\"rel\":\"documentation\",\"href\":\"https://www.planet.com/nicfi/\",\"type\":\"text/html\",\"title\":\"NICFI Program - Satellite Imagery and Monitoring | Planet\"},{\"rel\":\"documentation\",\"href\":\"https://developers.planet.com/nicfi/\",\"type\":\"text/html\",\"title\":\"NICFI Program Resource Center\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/planet-nicfi-visual\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Planet-NICFI Basemaps (Visual)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/planet-nicfi-visual-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/planet-nicfi-visual.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-34.161818157002,180.0,30.145127179625]]},\"temporal\":{\"interval\":[[\"2015-12-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Planet\",\"NICFI\",\"Satellite\",\"Tropics\",\"Imagery\"],\"providers\":[{\"url\":\"http://planet.com\",\"name\":\"Planet\",\"roles\":[\"processor\",\"producer\",\"licensor\"],\"description\":\"Contact Planet at [planet.com/contact-sales](https://www.planet.com/contact-sales/)\"},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[4.77],\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\",\"description\":\"visible red\"},{\"name\":\"Green\",\"common_name\":\"green\",\"description\":\"visible green\"},{\"name\":\"Blue\",\"common_name\":\"blue\",\"description\":\"visible blue\"}],\"planet-nicfi:cadence\":[\"biannual\",\"monthly\"],\"planet-nicfi:percent_covered\":{\"maximum\":100,\"minimum\":0}},\"description\":\"*Note: Assets in this collection are only available to winners of the [GEO-Microsoft Planetary Computer RFP](https://www.earthobservations.org/geo_blog_obs.php?id=528). Others wishing to use the data can sign up and access it from Planet at [https://www.planet.com/nicfi/](https://www.planet.com/nicfi/) and email [planetarycomputer@microsoft.com](mailto:planetarycomputer@microsoft.com).*\\n\\nThrough Norway\u2019s International Climate & Forests Initiative (NICFI), users can access Planet\u2019s high-resolution, analysis-ready mosaics of the world\u2019s tropics in order to help reduce and reverse the loss of tropical forests, combat climate change, conserve biodiversity, and facilitate sustainable development.\\n\\nIn support of NICFI\u2019s mission, you can use this data for a number of projects including, but not limited to:\\n\\n* Advance scientific research about the world\u2019s tropical forests and the critical services they provide.\\n* Implement and improve policies for sustainable forest management and land use in developing tropical forest countries and jurisdictions.\\n* Increase transparency and accountability in the tropics.\\n* Protect and improve the rights of indigenous peoples and local communities in tropical forest countries.\\n* Innovate solutions towards reducing pressure on forests from global commodities and financial markets.\\n* In short, the primary purpose of the NICFI Program is to support reducing and reversing the loss of tropical forests, contributing to combating climate change, conserving biodiversity, contributing to forest regrowth, restoration, and enhancement, and facilitating sustainable development, all of which must be Non-Commercial Use.\\n\\nTo learn how more about the NICFI program, streaming and downloading basemaps please read the [NICFI Data Program User Guide](https://assets.planet.com/docs/NICFI_UserGuidesFAQ.pdf).\\n\\nThis collection contains both monthly and biannual mosaics. Biannual mosaics are available from December 2015 - August 2020. Monthly mosaics are available from September 2020. The STAC items include a `planet-nicfi:cadence` field indicating the type of mosaic.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"description\":\"a 'true-colour' representation of spatially accurate data with minimized haze, illumination, and topographic effects\"},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"planet-nicfi\",\"msft:container\":\"nicfi\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"planet\",\"msft:short_description\":\"Planet's high-resolution, analysis-ready mosaics of the world's tropics\",\"msft:region\":\"westeurope\"},{\"id\":\"gbif\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif\"},{\"rel\":\"license\",\"href\":\"https://www.gbif.org/terms\",\"type\":\"text/html\",\"title\":\"GBIF Terms of Use\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/gbif\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Global Biodiversity Information Facility (GBIF)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gbif.png\",\"type\":\"image/png\",\"title\":\"Forest Inventory and Analysis\"},\"geoparquet-items\":{\"href\":\"abfs://items/gbif.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-13T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"GBIF\",\"Biodiversity\",\"Species\"],\"providers\":[{\"url\":\"https://www.gbif.org/\",\"name\":\"Global Biodiversity Information Facility\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"description\":\"The [Global Biodiversity Information Facility](https://www.gbif.org) (GBIF) is an international network and data infrastructure funded by the world's governments, providing global data that document the occurrence of species. GBIF currently integrates datasets documenting over 1.6 billion species occurrences.\\n\\nThe GBIF occurrence dataset combines data from a wide array of sources, including specimen-related data from natural history museums, observations from citizen science networks, and automated environmental surveys. While these data are constantly changing at [GBIF.org](https://www.gbif.org), periodic snapshots are taken and made available here. \\n\\nData are stored in [Parquet](https://parquet.apache.org/) format; the Parquet file schema is described below. Most field names correspond to [terms from the Darwin Core standard](https://dwc.tdwg.org/terms/), and have been interpreted by GBIF's systems to align taxonomy, location, dates, etc. Additional information may be retrieved using the [GBIF API](https://www.gbif.org/developer/summary).\\n\\nPlease refer to the GBIF [citation guidelines](https://www.gbif.org/citation-guidelines) for information about how to cite GBIF data in publications.. For analyses using the whole dataset, please use the following citation:\\n\\n> GBIF.org ([Date]) GBIF Occurrence Data [DOI of dataset]\\n\\nFor analyses where data are significantly filtered, please track the datasetKeys used and use a \\\"[derived dataset](https://www.gbif.org/citation-guidelines#derivedDatasets)\\\" record for citing the data.\\n\\nThe [GBIF data blog](https://data-blog.gbif.org/categories/gbif/) contains a number of articles that can help you analyze GBIF data.\\n\",\"item_assets\":{\"data\":{\"type\":\"application/x-parquet\",\"roles\":[\"data\"],\"title\":\"Dataset root\",\"table:storage_options\":{\"account_name\":\"ai4edataeuwest\"}}},\"stac_version\":\"1.0.0\",\"table:columns\":[{\"name\":\"gbifid\",\"type\":\"int64\",\"description\":\"GBIF's identifier for the occurrence\"},{\"name\":\"datasetkey\",\"type\":\"byte_array\",\"description\":\"GBIF's UUID for the [dataset](https://www.gbif.org/developer/registry#datasets) containing this occurrence\"},{\"name\":\"occurrenceid\",\"type\":\"byte_array\",\"description\":\"See [dwc:occurrenceID](https://dwc.tdwg.org/terms/#occurrenceID).\"},{\"name\":\"kingdom\",\"type\":\"byte_array\",\"description\":\"See [dwc:kingdom](https://dwc.tdwg.org/terms/#kingdom). This field has been aligned with the [GBIF backbone taxonomy](https://doi.org/10.15468/39omei).\"},{\"name\":\"phylum\",\"type\":\"byte_array\",\"description\":\"See [dwc:phylum](https://dwc.tdwg.org/terms/#phylum). This field has been aligned with the GBIF backbone taxonomy.\"},{\"name\":\"class\",\"type\":\"byte_array\",\"description\":\"See [dwc:class](https://dwc.tdwg.org/terms/#class). This field has been aligned with the GBIF backbone taxonomy.\"},{\"name\":\"order\",\"type\":\"byte_array\",\"description\":\"See [dwc:order](https://dwc.tdwg.org/terms/#order). This field has been aligned with the GBIF backbone taxonomy.\"},{\"name\":\"family\",\"type\":\"byte_array\",\"description\":\"See [dwc:family](https://dwc.tdwg.org/terms/#family). This field has been aligned with the GBIF backbone taxonomy.\"},{\"name\":\"genus\",\"type\":\"byte_array\",\"description\":\"See [dwc:genus](https://dwc.tdwg.org/terms/#genus). This field has been aligned with the GBIF backbone taxonomy.\"},{\"name\":\"species\",\"type\":\"byte_array\",\"description\":\"See [dwc:species](https://dwc.tdwg.org/terms/#species). This field has been aligned with the GBIF backbone taxonomy.\"},{\"name\":\"infraspecificepithet\",\"type\":\"byte_array\",\"description\":\"See [dwc:infraspecificEpithet](https://dwc.tdwg.org/terms/#infraspecificEpithet). \ This field has been aligned with the GBIF backbone taxonomy.\"},{\"name\":\"taxonrank\",\"type\":\"byte_array\",\"description\":\"See [dwc:taxonRank](https://dwc.tdwg.org/terms/#taxonRank). This field has been aligned with the GBIF backbone taxonomy.\"},{\"name\":\"scientificname\",\"type\":\"byte_array\",\"description\":\"See [dwc:scientificName](https://dwc.tdwg.org/terms/#scientificName). This field has been aligned with the GBIF backbone taxonomy.\"},{\"name\":\"verbatimscientificname\",\"type\":\"byte_array\",\"description\":\"The scientific name as provided by the data publisher\"},{\"name\":\"verbatimscientificnameauthorship\",\"type\":\"byte_array\",\"description\":\"The scientific name authorship provided by the data publisher.\"},{\"name\":\"countrycode\",\"type\":\"byte_array\",\"description\":\"See [dwc:countryCode](https://dwc.tdwg.org/terms/#countryCode). GBIF's interpretation has set this to an ISO 3166-2 code.\"},{\"name\":\"locality\",\"type\":\"byte_array\",\"description\":\"See [dwc:locality](https://dwc.tdwg.org/terms/#locality).\"},{\"name\":\"stateprovince\",\"type\":\"byte_array\",\"description\":\"See [dwc:stateProvince](https://dwc.tdwg.org/terms/#stateProvince).\"},{\"name\":\"occurrencestatus\",\"type\":\"byte_array\",\"description\":\"See [dwc:occurrenceStatus](https://dwc.tdwg.org/terms/#occurrenceStatus). Either the value `PRESENT` or `ABSENT`. **Many users will wish to filter for `PRESENT` data.**\"},{\"name\":\"individualcount\",\"type\":\"int32\",\"description\":\"See [dwc:individualCount](https://dwc.tdwg.org/terms/#individualCount).\"},{\"name\":\"publishingorgkey\",\"type\":\"byte_array\",\"description\":\"GBIF's UUID for the [organization](https://www.gbif.org/developer/registry#organizations) publishing this occurrence.\"},{\"name\":\"decimallatitude\",\"type\":\"double\",\"description\":\"See [dwc:decimalLatitude](https://dwc.tdwg.org/terms/#decimalLatitude). GBIF's interpretation has normalized this to a WGS84 coordinate.\"},{\"name\":\"decimallongitude\",\"type\":\"double\",\"description\":\"See [dwc:decimalLongitude](https://dwc.tdwg.org/terms/#decimalLongitude). GBIF's interpretation has normalized this to a WGS84 coordinate.\"},{\"name\":\"coordinateuncertaintyinmeters\",\"type\":\"double\",\"description\":\"See [dwc:coordinateUncertaintyInMeters](https://dwc.tdwg.org/terms/#coordinateUncertaintyInMeters).\"},{\"name\":\"coordinateprecision\",\"type\":\"double\",\"description\":\"See [dwc:coordinatePrecision](https://dwc.tdwg.org/terms/#coordinatePrecision).\"},{\"name\":\"elevation\",\"type\":\"double\",\"description\":\"See [dwc:elevation](https://dwc.tdwg.org/terms/#elevation). If provided by the data publisher, GBIF's interpretation has normalized this value to metres.\"},{\"name\":\"elevationaccuracy\",\"type\":\"double\",\"description\":\"See [dwc:elevationAccuracy](https://dwc.tdwg.org/terms/#elevationAccuracy). If provided by the data publisher, GBIF's interpretation has normalized this value to metres.\"},{\"name\":\"depth\",\"type\":\"double\",\"description\":\"See [dwc:depth](https://dwc.tdwg.org/terms/#depth). If provided by the data publisher, GBIF's interpretation has normalized this value to metres.\"},{\"name\":\"depthaccuracy\",\"type\":\"double\",\"description\":\"See [dwc:depthAccuracy](https://dwc.tdwg.org/terms/#depthAccuracy). If provided by the data publisher, GBIF's interpretation has normalized this value to metres.\"},{\"name\":\"eventdate\",\"type\":\"byte_array\",\"description\":\"See [dwc:eventDate](https://dwc.tdwg.org/terms/#eventDate). GBIF's interpretation has normalized this value to an ISO 8601 date with a local time.\"},{\"name\":\"day\",\"type\":\"int32\",\"description\":\"See [dwc:day](https://dwc.tdwg.org/terms/#day).\"},{\"name\":\"month\",\"type\":\"int32\",\"description\":\"See [dwc:month](https://dwc.tdwg.org/terms/#month).\"},{\"name\":\"year\",\"type\":\"int32\",\"description\":\"See [dwc:year](https://dwc.tdwg.org/terms/#year).\"},{\"name\":\"taxonkey\",\"type\":\"int32\",\"description\":\"The numeric identifier for the [taxon](https://www.gbif.org/developer/species#nameUsages) in GBIF's backbone taxonomy corresponding to `scientificname`.\"},{\"name\":\"specieskey\",\"type\":\"int32\",\"description\":\"The numeric identifier for the taxon in GBIF's backbone taxonomy corresponding to `species`.\"},{\"name\":\"basisofrecord\",\"type\":\"byte_array\",\"description\":\"See [dwc:basisOfRecord](https://dwc.tdwg.org/terms/#basisOfRecord). One of `PRESERVED_SPECIMEN`, `FOSSIL_SPECIMEN`, `LIVING_SPECIMEN`, `OBSERVATION`, `HUMAN_OBSERVATION`, `MACHINE_OBSERVATION`, `MATERIAL_SAMPLE`, `LITERATURE`, `UNKNOWN`.\"},{\"name\":\"institutioncode\",\"type\":\"byte_array\",\"description\":\"See [dwc:institutionCode](https://dwc.tdwg.org/terms/#institutionCode).\"},{\"name\":\"collectioncode\",\"type\":\"byte_array\",\"description\":\"See [dwc:collectionCode](https://dwc.tdwg.org/terms/#collectionCode).\"},{\"name\":\"catalognumber\",\"type\":\"byte_array\",\"description\":\"See [dwc:catalogNumber](https://dwc.tdwg.org/terms/#catalogNumber).\"},{\"name\":\"recordnumber\",\"type\":\"byte_array\",\"description\":\"See [dwc:recordNumber](https://dwc.tdwg.org/terms/#recordNumber).\"},{\"name\":\"identifiedby\",\"type\":\"byte_array\",\"description\":\"See [dwc:identifiedBy](https://dwc.tdwg.org/terms/#identifiedBy).\"},{\"name\":\"dateidentified\",\"type\":\"byte_array\",\"description\":\"See [dwc:dateIdentified](https://dwc.tdwg.org/terms/#dateIdentified). An ISO 8601 date.\"},{\"name\":\"license\",\"type\":\"byte_array\",\"description\":\"See [dwc:license](https://dwc.tdwg.org/terms/#license). Either [`CC0_1_0`](https://creativecommons.org/publicdomain/zero/1.0/) or [`CC_BY_4_0`](https://creativecommons.org/licenses/by/4.0/). `CC_BY_NC_4_0` records are not present in this snapshot.\"},{\"name\":\"rightsholder\",\"type\":\"byte_array\",\"description\":\"See [dwc:rightsHolder](https://dwc.tdwg.org/terms/#rightsHolder).\"},{\"name\":\"recordedby\",\"type\":\"byte_array\",\"description\":\"See [dwc:recordedBy](https://dwc.tdwg.org/terms/#recordedBy).\"},{\"name\":\"typestatus\",\"type\":\"byte_array\",\"description\":\"See [dwc:typeStatus](https://dwc.tdwg.org/terms/#typeStatus).\"},{\"name\":\"establishmentmeans\",\"type\":\"byte_array\",\"description\":\"See [dwc:establishmentMeans](https://dwc.tdwg.org/terms/#establishmentMeans).\"},{\"name\":\"lastinterpreted\",\"type\":\"byte_array\",\"description\":\"The ISO 8601 date when the record was last processed by GBIF. Data are reprocessed for several reasons, including changes to the backbone taxonomy, so this date is not necessarily the date the occurrence record last changed.\"},{\"name\":\"mediatype\",\"type\":\"byte_array\",\"description\":\"See [dwc:mediaType](https://dwc.tdwg.org/terms/#mediaType). May contain `StillImage`, `MovingImage` or `Sound` (from [enumeration](http://api.gbif.org/v1/enumeration/basic/MediaType), detailing whether the occurrence has this media available.\"},{\"name\":\"issue\",\"type\":\"byte_array\",\"description\":\"A list of [issues](https://gbif.github.io/gbif-api/apidocs/org/gbif/api/vocabulary/OccurrenceIssue.html) encountered by GBIF in processing this record. More details are available on these issues and flags in [this blog post](https://data-blog.gbif.org/post/issues-and-flags/).\"}],\"msft:container\":\"gbif\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Global biodiversity observation records, documenting over 1.6 billion species occurrences\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-17A3HGF-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/972/MOD17_User_Guide_V61.pdf\",\"title\":\"MOD17 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD17A3HGF\",\"title\":\"MOD17A3HGF file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD17A3HGF\",\"title\":\"MYD17A3HGF file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD17A3HGF.061\",\"title\":\"LP DAAC - MOD17A3HGF\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD17A3HGF.061\",\"title\":\"LP DAAC - MYD17A3HGF\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-17A3HGF-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Net Primary Production Yearly Gap-Filled\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-17A3HGF-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Net Primary Production Yearly Gap-Filled thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-17A3HGF-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Vegetation\",\"Global\",\"MOD17A3HGF\",\"MYD17A3HGF\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Version 6.1 product provides information about annual Net Primary Production (NPP) at 500 meter (m) pixel resolution. Annual Moderate Resolution Imaging Spectroradiometer (MODIS) NPP is derived from the sum of all 8-day Net Photosynthesis (PSN) products (MOD17A2H) from the given year. The PSN value is the difference of the Gross Primary Productivity (GPP) and the Maintenance Respiration (MR). The product will be generated at the end of each year when the entire yearly 8-day 15A2H is available. Hence, the gap-filled product is the improved 17, which has cleaned the poor-quality inputs from 8-day Leaf Area Index and Fraction of Photosynthetically Active Radiation (LAI/FPAR) based on the Quality Control (QC) label for every pixel. If any LAI/FPAR pixel did not meet the quality screening criteria, its value is determined through linear interpolation. However, users cannot get this product in near-real time because it will be generated only at the end of a given year.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"Gpp_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Gross Primary Productivity\",\"raster:bands\":[{\"unit\":\"kg C/m^2\",\"scale\":0.0001,\"data_type\":\"uint16\",\"spatial_resolution\":500}]},\"Npp_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Net Primary Productivity\",\"raster:bands\":[{\"unit\":\"kg C/m^2\",\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"Npp_QC_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality control\",\"raster:bands\":[{\"unit\":\"Percent\",\"data_type\":\"uint8\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD17A3HGF.061\",\"citation\":\"Running, S., & Zhao, M. (2021). MODIS/Terra Net Primary Production Gap-Filled Yearly L4 Global 500 m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD17A3HGF.061\"},{\"doi\":\"10.5067/MODIS/MYD17A3HGF.061\",\"citation\":\"Running, S., & Zhao, M. (2021). MODIS/Aqua Net Primary Production Gap-Filled Yearly L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD17A3HGF.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Net Primary Production Yearly Gap-Filled\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-09A1-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/925/MOD09_User_Guide_V61.pdf\",\"title\":\"MOD09 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD09A1\",\"title\":\"MOD09A1 file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD09A1\",\"title\":\"MYD09A1 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD09A1.061\",\"title\":\"LP DAAC - MOD09A1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD09A1.061\",\"title\":\"LP DAAC - MYD09A1\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-09A1-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Surface Reflectance 8-Day (500m)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-09A1-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Surface Reflectance 8-Day (500m) thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-09A1-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Imagery\",\"Global\",\"Reflectance\",\"MOD09A1\",\"MYD09A1\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Moderate Resolution Imaging Spectroradiometer (MODIS) 09A1 Version 6.1 product provides an estimate of the surface spectral reflectance of MODIS Bands 1 through 7 corrected for atmospheric conditions such as gasses, aerosols, and Rayleigh scattering. Along with the seven 500 meter (m) reflectance bands are two quality layers and four observation bands. For each pixel, a value is selected from all the acquisitions within the 8-day composite period. The criteria for the pixel choice include cloud and solar zenith. When several acquisitions meet the criteria the pixel with the minimum channel 3 (blue) value is used.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"sur_refl_b01\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Surface Reflectance Band 1 (620-670 nm)\",\"eo:bands\":[{\"name\":\"sur_refl_b01\",\"common_name\":\"red\",\"center_wavelength\":0.645,\"full_width_half_max\":0.5}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"sur_refl_b02\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Surface Reflectance Band 2 (841-876 nm)\",\"eo:bands\":[{\"name\":\"sur_refl_b02\",\"common_name\":\"nir08\",\"center_wavelength\":0.8585,\"full_width_half_max\":0.35}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"sur_refl_b03\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Surface Reflectance Band 3 (459-479 nm)\",\"eo:bands\":[{\"name\":\"sur_refl_b03\",\"common_name\":\"blue\",\"center_wavelength\":0.469,\"full_width_half_max\":0.2}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"sur_refl_b04\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Surface Reflectance Band 4 (545-565 nm)\",\"eo:bands\":[{\"name\":\"sur_refl_b04\",\"common_name\":\"green\",\"center_wavelength\":0.555,\"full_width_half_max\":0.2}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"sur_refl_b05\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Surface Reflectance Band 5 (1230-1250 nm)\",\"eo:bands\":[{\"name\":\"sur_refl_b05\",\"common_name\":\"lwir12\",\"center_wavelength\":1.24,\"full_width_half_max\":0.2}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"sur_refl_b06\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Surface Reflectance Band 6 (1628-1652 nm)\",\"eo:bands\":[{\"name\":\"sur_refl_b06\",\"common_name\":\"swir16\",\"center_wavelength\":1.64,\"full_width_half_max\":0.24}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"sur_refl_b07\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Surface Reflectance Band 7 (2105-2155 nm)\",\"eo:bands\":[{\"name\":\"sur_refl_b07\",\"common_name\":\"swir22\",\"center_wavelength\":2.13,\"full_width_half_max\":0.5}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"sur_refl_raz\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"MODIS relative azimuth angle\",\"raster:bands\":[{\"unit\":\"Degree\",\"scale\":0.01,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"sur_refl_szen\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"MODIS solar zenith angle\",\"raster:bands\":[{\"unit\":\"Degree\",\"scale\":0.01,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"sur_refl_vzen\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"MODIS view zenith angle\",\"raster:bands\":[{\"unit\":\"Degree\",\"scale\":0.01,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"sur_refl_qc_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface reflectance 500m band quality control flags\",\"raster:bands\":[{\"data_type\":\"uint32\",\"spatial_resolution\":500}]},\"sur_refl_state_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface reflectance 500m state flags\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":500}]},\"sur_refl_day_of_year\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Day of the year for the pixel\",\"raster:bands\":[{\"unit\":\"Julian Day\",\"data_type\":\"uint16\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD09A1.061\",\"citation\":\"Vermote, E. (2021). MODIS/Terra Surface Reflectance 8-Day L3 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD09A1.061\"},{\"doi\":\"10.5067/MODIS/MYD09A1.061\",\"citation\":\"Vermote, E. (2021). MODIS/Aqua Surface Reflectance 8-Day L3 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD09A1.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Surface Reflectance 8-Day (500m)\",\"msft:region\":\"westeurope\"},{\"id\":\"alos-dem\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem\"},{\"rel\":\"license\",\"href\":\"https://earth.jaxa.jp/policy/en.html\",\"title\":\"JAXA Terms of Use of Research Data\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/alos-dem\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ALOS World 3D-30m\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/alos-dem.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"ALOS DEM\"},\"geoparquet-items\":{\"href\":\"abfs://items/alos-dem.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2016-12-07T00:00:00Z\",\"2016-12-07T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"ALOS\",\"PRISM\",\"JAXA\",\"DEM\",\"DSM\",\"Elevation\"],\"providers\":[{\"url\":\"https://www.eorc.jaxa.jp/ALOS/en/aw3d30/index.htm\",\"name\":\"Japan Aerospace Exploration Agency\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://doi.org/10.5069/G94M92HB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[30],\"platform\":[\"alos\"],\"instruments\":[\"prism\"]},\"description\":\"The \\\"ALOS World 3D-30m\\\" (AW3D30) dataset is a 30 meter resolution global digital surface model (DSM), developed by the Japan Aerospace Exploration Agency (JAXA). AWD30 was constructed from the Panchromatic Remote-sensing Instrument for Stereo Mapping (PRISM) on board Advanced Land Observing Satellite (ALOS), operated from 2006 to 2011.\\n\\nSee the [Product Description](https://www.eorc.jaxa.jp/ALOS/en/aw3d30/aw3d30v3.2_product_e_e1.2.pdf) for more details.\\n\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"]}},\"stac_version\":\"1.0.0\",\"msft:container\":\"alos-dem\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"ALOS World 3D is a global digital surface model (DSM) with a horizontal resolution of approximately 30 meters, constructed from the Panchromatic Remote-sensing Instrument for Stereo Mapping (PRISM) on board Advanced Land Observing Satellite (ALOS).\",\"msft:region\":\"westeurope\"},{\"id\":\"alos-palsar-mosaic\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic\"},{\"rel\":\"handbook\",\"href\":\"https://www.eorc.jaxa.jp/ALOS/en/dataset/pdf/DatasetDescription_PALSAR2_Mosaic_V200.pdf\",\"type\":\"application/pdf\",\"title\":\"Global 25 m Resolution PALSAR-2/PALSAR Mosaic (MOS)\",\"description\":\"Also includes data usage information\"},{\"rel\":\"license\",\"href\":\"https://earth.jaxa.jp/policy/en.html\",\"type\":\"text/html\",\"title\":\"JAXA Terms of Use of Research Data\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/alos-palsar-mosaic\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ALOS PALSAR Annual Mosaic\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/alos-palsar-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"ALOS PALSAR MOSAIC\"},\"geoparquet-items\":{\"href\":\"abfs://items/alos-palsar-mosaic.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,85.0,180.0,-56.0]]},\"temporal\":{\"interval\":[[\"2015-01-01T00:00:00Z\",\"2021-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"version\":\"2.0.0\",\"keywords\":[\"ALOS\",\"JAXA\",\"Remote Sensing\",\"Global\"],\"providers\":[{\"url\":\"https://www.eorc.jaxa.jp/ALOS/en/dataset/fnf_e.htm\",\"name\":\"Japan Aerospace Exploration Agency\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://developmentseed.org\",\"name\":\"Development Seed\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft Planetary Computer\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"ALOS\",\"ALOS-2\"],\"instruments\":[\"PALSAR\",\"PALSAR-2\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"sar:polarizations\":[[\"HH\",\"HV\"],[\"HH\",\"HV\",\"VH\",\"VV\"]],\"sar:instrument_mode\":[\"F\",\"U\"],\"sar:observation_direction\":[\"left\",\"right\"],\"palsar:number_of_polarizations\":[\"D\",\"Q\"]},\"description\":\"Global 25 m Resolution PALSAR-2/PALSAR Mosaic (MOS)\",\"item_assets\":{\"HH\":{\"role\":\"data\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"HH\",\"description\":\"HH polarization backscattering coefficient, 16-bit DN.\"},\"HV\":{\"role\":\"data\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"HV\",\"description\":\"HV polarization backscattering coefficient, 16-bit DN.\"},\"VH\":{\"role\":\"data\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"VH\",\"description\":\"VH polarization backscattering coefficient, 16-bit DN (high-sensitive beam quad-mode only).\"},\"VV\":{\"role\":\"data\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"VV\",\"description\":\"VV polarization backscattering coefficient, 16-bit DN (high-sensitive beam quad-mode only).\"},\"date\":{\"role\":\"date\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"date\",\"description\":\"Observation date (days since Jan 1, 1970).\"},\"mask\":{\"role\":\"data-mask\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"mask\",\"description\":\"Quality Mask\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\"}],\"classification:classes\":[{\"name\":\"no_data\",\"value\":0,\"description\":\"No data\"},{\"name\":\"water\",\"value\":50,\"description\":\"Water\"},{\"name\":\"lay_over\",\"value\":100,\"description\":\"Lay over\"},{\"name\":\"shadowing\",\"value\":150,\"description\":\"Shadowing\"},{\"name\":\"land\",\"value\":255,\"description\":\"Land\"}]},\"linci\":{\"role\":\"local-incidence-angle\",\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"linci\",\"description\":\"Local incidence angle (degrees).\"},\"metadata\":{\"type\":\"application/xml\",\"title\":\"metadata\",\"description\":\"Product metadata file\"}},\"stac_version\":\"1.0.0\",\"msft:container\":\"palsar\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/version/v1.0.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"https://pceo.blob.core.windows.net/\",\"msft:short_description\":\"Global 25m resolution SAR image mosaic.\",\"msft:region\":\"westeurope\"},{\"id\":\"deltares-water-availability\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability\"},{\"rel\":\"documentation\",\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/aod_docs/pc-deltares-water-availability-documentation.pdf\",\"type\":\"application/pdf\",\"title\":\"User Guide\"},{\"rel\":\"license\",\"href\":\"https://cdla.dev/permissive-1-0/\",\"type\":\"text/html\",\"title\":\"Community Data License Agreement - Permissive, Version 1.0\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/deltares-water-availability\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Deltares Global Water Availability\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.azureedge.net/assets/pc_thumbnails/additional_datasets/deltares-reservoir.jpg\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,90.0,180.0,-90.0]]},\"temporal\":{\"interval\":[[\"1970-01-01T00:00:00Z\",\"2020-12-31T00:00:00Z\"]]}},\"license\":\"CDLA-Permissive-1.0\",\"keywords\":[\"Deltares\",\"Water availability\",\"Reservoir\",\"Water\",\"Precipitation\"],\"providers\":[{\"url\":\"https://www.deltares.nl/en/\",\"name\":\"Deltares\",\"roles\":[\"producer\"]},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"deltares:reservoir\":[\"ERA5\",\"CHIRPS\",\"EOBS\",\"NLDAS\",\"BOM\"]},\"description\":\"[Deltares](https://www.deltares.nl/en/) has produced a hydrological model approach to simulate historical daily reservoir variations for 3,236 locations across the globe for the period 1970-2020 using the distributed [wflow_sbm](https://deltares.github.io/Wflow.jl/stable/model_docs/model_configurations/) model. The model outputs long-term daily information on reservoir volume, inflow and outflow dynamics, as well as information on upstream hydrological forcing.\\n\\nThey hydrological model was forced with 5 different precipitation products. Two products (ERA5 and CHIRPS) are available at the global scale, while for Europe, USA and Australia a regional product was use (i.e. EOBS, NLDAS and BOM, respectively). Using these different precipitation products, it becomes possible to assess the impact of uncertainty in the model forcing. A different number of basins upstream of reservoirs are simulated, given the spatial coverage of each precipitation product.\\n\\nSee the complete [methodology documentation](https://ai4edatasetspublicassets.blob.core.windows.net/assets/aod_docs/pc-deltares-water-availability-documentation.pdf) for more information.\\n\\n## Dataset coverages\\n\\n| Name | Scale | Period | Number of basins |\\n|--------|--------------------------|-----------|------------------|\\n| ERA5 | Global | 1967-2020 | 3236 |\\n| CHIRPS | Global (+/- 50 latitude) | 1981-2020 | 2951 |\\n| EOBS | Europe/North Africa | 1979-2020 | 682 |\\n| NLDAS | USA | 1979-2020 | 1090 |\\n| BOM | Australia | 1979-2020 | 116 |\\n\\n## STAC Metadata\\n\\nThis STAC collection includes one STAC item per dataset. The item includes a `deltares:reservoir` property that can be used to query for the URL of a specific dataset.\\n\\n## Contact\\n\\nFor questions about this dataset, contact [`aiforearthdatasets@microsoft.com`](mailto:aiforearthdatasets@microsoft.com?subject=deltares-floods%20question).\",\"item_assets\":{\"data\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Flood Map\",\"description\":\"Inundation maps of flood depth using a model that takes into account water level attenuation and is forced by sea level.\"},\"index\":{\"type\":\"application/json\",\"roles\":[\"index\"],\"title\":\"Index file\",\"description\":\"Kerchunk index file.\"}},\"stac_version\":\"1.0.0\",\"cube:variables\":{\"P\":{\"type\":\"data\",\"unit\":\"mm per day\",\"attrs\":{\"units\":\"mm per day\",\"description\":\"Average precipitation upstream of reservoir\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Average precipitation upstream of reservoir\"},\"ETa\":{\"type\":\"data\",\"unit\":\"mm per day\",\"attrs\":{\"units\":\"mm per day\",\"description\":\"Average simulated actual evapotransporation upstream of reservoir\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Average simulated actual evapotransporation upstream of reservoir\"},\"PET\":{\"type\":\"data\",\"unit\":\"mm per day\",\"attrs\":{\"units\":\"mm per day\",\"description\":\"Average potential evapotranspiration upstream of reservoir\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Average potential evapotranspiration upstream of reservoir\"},\"Melt\":{\"type\":\"data\",\"unit\":\"mm per day\",\"attrs\":{\"units\":\"mm per day\",\"description\":\"Average simulated snow melt upstream of reservoir\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Average simulated snow melt upstream of reservoir\"},\"Snow\":{\"type\":\"data\",\"unit\":\"mm\",\"attrs\":{\"units\":\"mm\",\"description\":\"Average simulated snow depth upstream of reservoir\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Average simulated snow depth upstream of reservoir\"},\"Temp\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"description\":\"Average surface temperature upstream of reservoir\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Average surface temperature upstream of reservoir\"},\"P_res\":{\"type\":\"data\",\"unit\":\"mm per day\",\"attrs\":{\"units\":\"mm per day\",\"description\":\"Precipitation reservoir\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Precipitation reservoir\"},\"S_res\":{\"type\":\"data\",\"unit\":\"m3\",\"attrs\":{\"units\":\"m3\",\"description\":\"Simulated reservoir volume\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Simulated reservoir volume\"},\"Ea_res\":{\"type\":\"data\",\"unit\":\"mm per day\",\"attrs\":{\"units\":\"mm per day\",\"description\":\"Simulated actual evaporation reservoir\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Simulated actual evaporation reservoir\"},\"Qin_res\":{\"type\":\"data\",\"unit\":\"m3 per s\",\"attrs\":{\"units\":\"m3 per s\",\"description\":\"Simulated reservoir inflow (surface+subsurface)\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Simulated reservoir inflow (surface+subsurface)\"},\"FracFull\":{\"type\":\"data\",\"unit\":\"m3\",\"attrs\":{\"units\":\"m3\",\"description\":\"Simulated reservoir volume\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Simulated reservoir volume\"},\"Qout_res\":{\"type\":\"data\",\"unit\":\"m3 per s\",\"attrs\":{\"units\":\"m3 per s\",\"description\":\"Simulated reservoir outflow\"},\"dimensions\":[\"time\",\"GrandID\",\"ksathorfrac\"],\"description\":\"Simulated reservoir outflow\"},\"latitude\":{\"type\":\"data\",\"unit\":\"degrees\",\"attrs\":{\"units\":\"degrees\",\"description\":\"Latitude of reservoir\"},\"dimensions\":[\"GrandID\"],\"description\":\"Latitude of reservoir\"},\"longitude\":{\"type\":\"data\",\"unit\":\"degrees\",\"attrs\":{\"units\":\"degrees\",\"description\":\"Longitude of reservoir\"},\"dimensions\":[\"GrandID\"],\"description\":\"Longitude of reservoir\"}},\"msft:container\":\"reservoirs\",\"cube:dimensions\":{\"time\":{\"step\":\"P1DT0H0M0S\",\"type\":\"temporal\",\"extent\":[null,\"2020-12-31T00:00:00Z\"]},\"GrandID\":{\"type\":\"identifier\",\"extent\":[null,null],\"description\":\"GrandID number of the reservoir of interest\"},\"ksathorfrac\":{\"type\":\"level\",\"values\":[5,20,50,100,250],\"description\":\"Five different value lateral anisotropy values used\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"deltaresreservoirssa\",\"msft:short_description\":\"Historical daily reservoir variations.\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-16A3GF-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/931/MOD16_User_Guide_V61.pdf\",\"title\":\"MOD16 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD16A3GF\",\"title\":\"MOD16A3GF file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD16A3GF\",\"title\":\"MYD16A3GF file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD16A3GF.061\",\"title\":\"LP DAAC - MOD16A3GF\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD16A3GF.061\",\"title\":\"LP DAAC - MYD16A3GF\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-16A3GF-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Net Evapotranspiration Yearly Gap-Filled\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-16A3GF-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Net Evapotranspiration Yearly Gap-Filled thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-16A3GF-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2001-01-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Vegetation\",\"MOD16A3GF\",\"MYD16A3GF\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Moderate Resolution Imaging Spectroradiometer (MODIS) MOD16A3GF Version 6.1 Evapotranspiration/Latent Heat Flux (ET/LE) product is a year-end gap-filled yearly composite dataset produced at 500 meter (m) pixel resolution. The algorithm used for the MOD16 data product collection is based on the logic of the Penman-Monteith equation, which includes inputs of daily meteorological reanalysis data along with MODIS remotely sensed data products such as vegetation property dynamics, albedo, and land cover. The product will be generated at the end of each year when the entire yearly 8-day MOD15A2H/MYD15A2H is available. Hence, the gap-filled product is the improved 16, which has cleaned the poor-quality inputs from yearly Leaf Area Index and Fraction of Photosynthetically Active Radiation (LAI/FPAR) based on the Quality Control (QC) label for every pixel. If any LAI/FPAR pixel did not meet the quality screening criteria, its value is determined through linear interpolation. However, users cannot get this product in near-real time because it will be generated only at the end of a given year. Provided in the product are layers for composited ET, LE, Potential ET (PET), and Potential LE (PLE) along with a quality control layer. Two low resolution browse images, ET and LE, are also available for each granule. The pixel values for the two Evapotranspiration layers (ET and PET) are the sum for all days within the defined year, and the pixel values for the two Latent Heat layers (LE and PLE) are the average of all days within the defined year.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"ET_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Total of Evapotranspiration\",\"raster:bands\":[{\"unit\":\"kg/m^2/year\",\"scale\":0.1,\"data_type\":\"uint16\",\"spatial_resolution\":500}]},\"LE_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Average of Latent Heat Flux\",\"raster:bands\":[{\"unit\":\"J/m^2/day\",\"scale\":10000,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"PET_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Total Potential Evapotranspiration\",\"raster:bands\":[{\"unit\":\"kg/m^2/year\",\"scale\":0.1,\"data_type\":\"uint16\",\"spatial_resolution\":500}]},\"PLE_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Average of Potential Latent Heat Flux\",\"raster:bands\":[{\"unit\":\"J/m^2/day\",\"scale\":10000,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"ET_QC_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Evapotranspiration Quality Assessment\",\"raster:bands\":[{\"unit\":\"Percent\",\"data_type\":\"uint8\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD16A3GF.061\",\"citation\":\"Running, S., Mu, Q., Zhao, M., & Moreno, A. (2021). MODIS/Terra Net Evapotranspiration Gap-Filled Yearly L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD16A3GF.061\"},{\"doi\":\"10.5067/MODIS/MYD16A3GF.061\",\"citation\":\"Running, S., Mu, Q., Zhao, M., & Moreno, A. (2021). MODIS/Aqua Net Evapotranspiration Gap-Filled Yearly L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD16A3GF.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Net Evapotranspiration Yearly Gap-Filled\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-21A2-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/620/MOD21_User_Guide_V61.pdf\",\"title\":\"MOD21 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD21A2\",\"title\":\"MOD21A2 file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD21A2\",\"title\":\"MYD21A2 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD21A2.061\",\"title\":\"LP DAAC - MOD21A2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD21A2.061\",\"title\":\"LP DAAC - MYD21A2\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-21A2-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Land Surface Temperature/3-Band Emissivity 8-Day\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-21A2-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Land Surface Temperature/3-Band Emissivity 8-Day thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-21A2-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-16T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Temperature\",\"MOD21A2\",\"MYD21A2\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"A suite of Moderate Resolution Imaging Spectroradiometer (MODIS) Land Surface Temperature and Emissivity (LST&E) products are available in Collection 6.1. The MOD21 Land Surface Temperatuer (LST) algorithm differs from the algorithm of the MOD11 LST products, in that the MOD21 algorithm is based on the ASTER Temperature/Emissivity Separation (TES) technique, whereas the MOD11 uses the split-window technique. The MOD21 TES algorithm uses a physics-based algorithm to dynamically retrieve both the LST and spectral emissivity simultaneously from the MODIS thermal infrared bands 29, 31, and 32. The TES algorithm is combined with an improved Water Vapor Scaling (WVS) atmospheric correction scheme to stabilize the retrieval during very warm and humid conditions. This dataset is an 8-day composite LST product at 1,000 meter spatial resolution that uses an algorithm based on a simple averaging method. The algorithm calculates the average from all the cloud free 21A1D and 21A1N daily acquisitions from the 8-day period. Unlike the 21A1 data sets where the daytime and nighttime acquisitions are separate products, the 21A2 contains both daytime and nighttime acquisitions as separate Science Dataset (SDS) layers within a single Hierarchical Data Format (HDF) file. The LST, Quality Control (QC), view zenith angle, and viewing time have separate day and night SDS layers, while the values for the MODIS emissivity bands 29, 31, and 32 are the average of both the nighttime and daytime acquisitions. Additional details regarding the method used to create this Level 3 (L3) product are available in the Algorithm Theoretical Basis Document (ATBD).\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"QC_Day\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Day Quality Control\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Emis_29\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Average Day/Night Band 29 emissivity\",\"raster:bands\":[{\"scale\":0.002,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Emis_31\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Average Day/Night Band 31 emissivity\",\"raster:bands\":[{\"scale\":0.002,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Emis_32\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Average Day/Night Band 32 emissivity\",\"raster:bands\":[{\"scale\":0.002,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"QC_Night\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Night Quality Control\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"LST_Day_1KM\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Day Land Surface Temperature\",\"raster:bands\":[{\"unit\":\"Kelvin\",\"scale\":0.02,\"data_type\":\"uint16\",\"spatial_resolution\":1000}]},\"LST_Night_1KM\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Night Land Surface Temperature\",\"raster:bands\":[{\"unit\":\"Kelvin\",\"scale\":0.02,\"data_type\":\"uint16\",\"spatial_resolution\":1000}]},\"View_Time_Day\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Day Time of Observation\",\"raster:bands\":[{\"unit\":\"Hours\",\"scale\":0.1,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"View_Angle_Day\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Day view zenith angle\",\"raster:bands\":[{\"unit\":\"Degree\",\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"View_Time_Night\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Night Time of Observation\",\"raster:bands\":[{\"unit\":\"Hours\",\"scale\":0.1,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"View_Angle_Night\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Night view zenith angle\",\"raster:bands\":[{\"unit\":\"Degree\",\"data_type\":\"uint8\",\"spatial_resolution\":1000}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD21A2.061\",\"citation\":\"Hulley, G., & Hook, S. (2021). MODIS/Terra Land Surface Temperature/3-Band Emissivity 8-Day L3 Global 1km SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD21A2.061\"},{\"doi\":\"10.5067/MODIS/MYD21A2.061\",\"citation\":\"Hulley, G. (2021). MODIS/Aqua Land Surface Temperature/3-Band Emissivity 8-Day L3 Global 1km SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD21A2.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Land Surface Temperature/3-Band Emissivity 8-Day\",\"msft:region\":\"westeurope\"},{\"id\":\"us-census\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census\"},{\"rel\":\"license\",\"href\":\"https://www.census.gov/about/policies/open-gov/open-data.html\",\"type\":\"text/html\",\"title\":\"U.S. Census Open Data Policy\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/us-census\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"US Census\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/us-census.png\",\"type\":\"image/png\",\"title\":\"US Census\"},\"geoparquet-items\":{\"href\":\"abfs://items/us-census.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-124.763068,24.523096,-66.949895,49.384358],[-179.148909,51.214183,-129.974167,71.365162],[172.461667,51.357688,179.77847,53.01075],[-178.334698,18.910361,-154.806773,28.402123],[144.618068,13.234189,144.956712,13.654383],[-67.945404,17.88328,-65.220703,18.515683],[144.886331,14.110472,146.064818,20.553802],[-65.085452,17.673976,-64.564907,18.412655],[-171.089874,-14.548699,-168.1433,-11.046934],[-178.334698,18.910361,-154.806773,28.402123]]},\"temporal\":{\"interval\":[[\"2021-08-01T00:00:00Z\",\"2021-08-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"US Census Bureau\",\"Administrative boundaries\",\"Population\",\"Demographics\"],\"providers\":[{\"url\":\"https://www.census.gov/en.html\",\"name\":\"United States Census Bureau\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://makepath.com/\",\"name\":\"makepath\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"description\":\"The [2020 Census](https://www.census.gov/programs-surveys/decennial-census/decade/2020/2020-census-main.html) counted every person living in the United States and the five U.S. territories. It marked the 24th census in U.S. history and the first time that households were invited to respond to the census online.\\n\\nThe tables included on the Planetary Computer provide information on population and geographic boundaries at various levels of cartographic aggregation.\\n\",\"item_assets\":{\"data\":{\"type\":\"application/x-parquet\",\"roles\":[\"data\"],\"title\":\"Dataset root\",\"table:storage_options\":{\"account_name\":\"ai4edataeuwest\"}}},\"stac_version\":\"1.0.0\",\"table:tables\":[{\"name\":\"American Indian/Alaska Native Areas/Hawaiian Home Lands (AIANNH)\",\"description\":\"This file contains data for legal and statistical [American Indian/Alaska Native Areas/Hawaiian Home Lands (AIANNH)](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_1) entities published by the US Census Bureau.\",\"msft:item_name\":\"cb_2020_us_aiannh_500k\"},{\"name\":\"American Indian Tribal Subdivisions (AITSN)\",\"description\":\"This file contains data on [American Indian Tribal Subdivisions](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_1). These areas are the legally defined subdivisions of American Indian Reservations (AIR), Oklahoma Tribal Statistical Areas (OTSA), and Off-Reservation Trust Land (ORTL).\",\"msft:item_name\":\"cb_2020_us_aitsn_500k\"},{\"name\":\"Alaska Native Regional Corporations (ANRC)\",\"description\":\"This file contains data on [Alaska Native Regional Corporations](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_1), which are corporations created according to the Alaska Native Claims Settlement Act. \",\"msft:item_name\":\"cb_2020_02_anrc_500k\"},{\"name\":\"Tribal Block Groups (TBG)\",\"description\":\"This file includes data on [Tribal Block Groups](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_26), which are subdivisions of Tribal Census Tracts. These block groups can extend over multiple AIRs and ORTLs due to areas not meeting Block Group minimum population thresholds.\",\"msft:item_name\":\"cb_2020_us_tbg_500k\"},{\"name\":\"Tribal Census Tracts (TTRACT)\",\"description\":\"This file includes data on [Tribal Census Tracts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_27) which are relatively small statistical subdivisions of AIRs and ORTLs defined by federally recognized tribal government officials in partnership with the Census Bureau. Due to population thresholds, the Tracts may consist of multiple non-contiguous areas.\",\"msft:item_name\":\"cb_2020_us_ttract_500k\"},{\"name\":\"Census Block Groups (BG)\",\"description\":\"This file contains data on [Census Block Groups](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_4). These groups are the second smallest geographic grouping. They consist of clusters of blocks within the same census tract that share the same first digit of their 4-character census block number. Census Block Groups generally contain between 600 and 3,000 people and generally cover contiguous areas.\",\"msft:item_name\":\"cb_2020_us_bg_500k\"},{\"name\":\"Census Tracts (TRACT)\",\"description\":\"This file contains data on [Census Tracts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_13) which are small and relatively permanent statistical subdivisions of a county or equivalent entity. Tract population size is generally between 1,200 and 8,000 people with an ideal size of 4,000. Boundaries tend to follow visible and identifiable features and are usually contiguous areas.\",\"msft:item_name\":\"cb_2020_us_tract_500k\"},{\"name\":\"Congressional Districts: 116th Congress (CD116)\",\"description\":\"This file contains data on the [Congressional Districts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_9) for the 116th Congress. \",\"msft:item_name\":\"cb_2020_us_cd116_500k\"},{\"name\":\"Consolidated Cities (CONCITY)\",\"description\":\"This file contains data on [Consolidated Cities](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_8). These are areas where one or several other incorporated places in a county or Minor Civil Division are included in a consolidated government but still exist as separate legal entities.\",\"msft:item_name\":\"cb_2020_us_concity_500k\"},{\"name\":\"Counties (COUNTY)\",\"description\":\"This file contains data on [Counties and Equivalent Entities](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_12). These are the primary legal divisions of states. Most states use the term \\\"counties,\\\" but other terms such as \\\"Parishes,\\\" \\\"Municipios,\\\" or \\\"Independent Cities\\\" may be used. \",\"msft:item_name\":\"cb_2020_us_county_500k\"},{\"name\":\"Counties within Congressional Districts: 116th Congress (COUNTY_within_CD116)\",\"description\":\"This file contains data on Counties within Congressional Districts.\",\"msft:item_name\":\"cb_2020_us_county_within_cd116_500k\"},{\"name\":\"County Subdivisions (COUSUB)\",\"description\":\"This file contains [County Subdivisions](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_11), which are the primary divisions of counties and equivalent entities. These divisions vary from state to state and include Barrios, Purchases, Townships, and other types of legal and statistical entities. \",\"msft:item_name\":\"cb_2020_us_cousub_500k\"},{\"name\":\"Divisions (DIVISION)\",\"description\":\"This file contains data on [Divisions](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_10) of the US. This file is similar to the Regions file but contains more divisions and encompasses several states per division.\",\"msft:item_name\":\"cb_2020_us_division_500k\"},{\"name\":\"Core Based Statistical Areas (CBSAs)\",\"description\":\"This file contains data on [Core Based Statistical Areas (CBSAs)](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_7). This encompasses all metropolitan and micropolitan statistical areas.\",\"msft:item_name\":\"cb_2020_us_cbsa_500k\"},{\"name\":\"Combined Statistical Areas (CSA)\",\"description\":\"This file contains data on [Combined Statistical Areas](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_7), which are areas that consist of two or more adjacent CBSAs that have significant employment interchanges.\",\"msft:item_name\":\"cb_2020_us_csa_500k\"},{\"name\":\"Metropolitan Divisions (METDIV)\",\"description\":\"This file contains data on [Metropolitan Divisions](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_7). These areas are groupings of counties or equivalent entities within a metropolitan statistical area with a core of 2.5 million inhabitants and one or more main counties that represent employment centers, plus adjacent counties with commuting ties.\",\"msft:item_name\":\"cb_2020_us_metdiv_500k\"},{\"name\":\"New England City and Town Areas (NECTA)\",\"description\":\"This file contains [New England City and Town Areas](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_7), which encompass metropolitan and micropolitan statistical areas and urban clusters in New England.\",\"msft:item_name\":\"cb_2020_us_necta_500k\"},{\"name\":\"New England City and Town Area Division (NECTADIV)\",\"description\":\"This file contains [New England City and Town Areas Divisions](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_7), which are smaller groupings of cities and towns in New England that contain a single core of 2.5 million inhabitants. Each division must have a total population of 100,000 or more.\",\"msft:item_name\":\"cb_2020_us_nectadiv_500k\"},{\"name\":\"Combined New England City and Town Areas (CNECTA)\",\"description\":\"This file contains data on [Combined New England City and Town Areas](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_7), consisting of two or more adjacent NECTAs that have significant employment interchanges.\",\"msft:item_name\":\"cb_2020_us_cnecta_500k\"},{\"name\":\"Places (PLACE)\",\"description\":\"This file contains [Places](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_14) which are Incorporated Places (legal entities) and Census Designated Places (CDPs, statistical entities). An incorporated place usually is a city, town, village, or borough but can have other legal descriptions. CDPs are settled concentrations of population that are identifiable by name but are not legally incorporated.\",\"msft:item_name\":\"cb_2020_us_place_500k\"},{\"name\":\"Regions (REGION)\",\"description\":\"This file contains [Regions](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_10) of the US and encompasses several states per division.\",\"msft:item_name\":\"cb_2020_us_region_500k\"},{\"name\":\"School Districts - Elementary (ELSD)\",\"description\":\"This file contains [Elementary School Districts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_23), referring to districts with elementary schools.\",\"msft:item_name\":\"cb_2020_us_elsd_500k\"},{\"name\":\"School Districts - Secondary (SCSD)\",\"description\":\"This file contains [Secondary School Districts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_23), referring to districts with secondary schools.\",\"msft:item_name\":\"cb_2020_us_scsd_500k\"},{\"name\":\"School Districts - Unified (UNSD)\",\"description\":\"This file contains [Unified School Districts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_23), referring to districts that provide education to children of all school ages. Unified school districts can have both secondary and elementary schools.\",\"msft:item_name\":\"cb_2020_us_unsd_500k\"},{\"name\":\"State Legislative Districts - Lower Chamber (SLDL)\",\"description\":\"This file contains [Lower Chamber State Legislative Districts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_24).\",\"msft:item_name\":\"cb_2020_us_sldl_500k\"},{\"name\":\"State Legislative Districts - Upper Chamber (SLDU)\",\"description\":\"This file contains [Upper Chamber State Legislative Districts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_24).\",\"msft:item_name\":\"cb_2020_us_sldu_500k\"},{\"name\":\"States (STATE)\",\"description\":\"This file contains the [US States and State Equivalent Entities](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_25). Within Census Bureau datasets, the District of Columbia, Puerto Rico, and the Island Areas (American Samoa, the Commonwealth of the Northern Mariana Islands, Guam, and the US Virgin Islands) are treated as statistical equivalents of states alongside the 50 US states.\",\"msft:item_name\":\"cb_2020_us_state_500k\"},{\"name\":\"Subbarrios (SUBBARRIO)\",\"description\":\"This file contains [Subbarrios](https://www.census.gov/programs-surveys/geography/about/glossary.html#pr), which are legally defined subdivisions of Minor Civil Division in Puerto Rico. They don\\\"t exist within every Minor Civil Division and don\\\"t always cover the entire Minor Civil Division where they do exist.\",\"msft:item_name\":\"cb_2020_72_subbarrio_500k\"},{\"name\":\"United States Outline\",\"description\":\"This file contains the [United States Outline](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_30) shapefile. This contains all 50 US states plus the District of Columbia, Puerto Rico, and the Island Areas (American Samoa, the Commonwealth of the Northern Mariana Islands, Guam, and the US Virgin Islands). There is only one feature within this dataset.\",\"msft:item_name\":\"cb_2020_us_nation_5m\"},{\"name\":\"Voting Districts (VTD)\",\"description\":\"This file contains all [US Voting Districts](https://www.census.gov/programs-surveys/geography/about/glossary.html#par_textimage_31), which are geographic features established by state, local and tribal governments to conduct elections.\",\"msft:item_name\":\"cb_2020_us_vtd_500k\"}],\"msft:container\":\"us-census\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"United States population counts at various levels of cartographic aggregation\",\"msft:region\":\"westeurope\"},{\"id\":\"jrc-gsw\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.1038/nature20584\"},{\"rel\":\"license\",\"href\":\"https://www.copernicus.eu/en/about-copernicus/international-cooperation\",\"title\":\"Copernicus Open Access Policy\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/jrc-gsw\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"JRC Global Surface Water\",\"assets\":{\"guide\":{\"href\":\"https://storage.cloud.google.com/global-surface-water/downloads_ancillary/DataUsersGuidev2020.pdf\",\"type\":\"application/pdf\",\"roles\":[\"metadata\"],\"title\":\"Users Guide\",\"description\":\"Data users guide and description of the JRC GSW datasets\"},\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/jrc-gsw.png\",\"title\":\"European Commission Joint Research Centre - Global Surface Water\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/jrc-gsw.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-56.0,180.0,78.0]]},\"temporal\":{\"interval\":[[\"1984-03-01T00:00:00Z\",\"2020-12-31T11:59:59Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.1038/nature20584\",\"keywords\":[\"Global\",\"Water\",\"Landsat\"],\"providers\":[{\"url\":\"https://global-surface-water.appspot.com/\",\"name\":\"European Commission Joint Research Centre\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://developers.google.com/earth-engine/datasets/tags/jrc\",\"name\":\"Google\",\"roles\":[\"producer\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"description\":\"Global surface water products from the European Commission Joint Research Centre, based on Landsat 5, 7, and 8 imagery. Layers in this collection describe the occurrence, change, and seasonality of surface water from 1984-2020. Complete documentation for each layer is available in the [Data Users Guide](https://storage.cloud.google.com/global-surface-water/downloads_ancillary/DataUsersGuidev2020.pdf).\\n\",\"item_assets\":{\"change\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Occurrence Change Intensity\",\"description\":\"Change in water occurrence between the two periods (1984-1999) and (2000-2020)\"},\"extent\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Maximum Water Extent\",\"description\":\"Binary indicator of whether water was ever present (from 1984-2020)\",\"file:values\":[{\"values\":[0],\"summary\":\"Not water\"},{\"values\":[1],\"summary\":\"Water\"}]},\"occurrence\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Occurrence\",\"description\":\"Frequency with which water was present from March 1984 to December 2020\"},\"recurrence\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Recurrence\",\"description\":\"Frequency with which water returns from year to year\"},\"seasonality\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Seasonality\",\"description\":\"Number of months that water was present from January 2020 to December 2020\"},\"transitions\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Transitions\",\"description\":\"Categorical change in surface water status from 1984 to 2020\",\"file:values\":[{\"values\":[1],\"summary\":\"Permanent\"},{\"values\":[2],\"summary\":\"New permanent\"},{\"values\":[3],\"summary\":\"Lost permanent\"},{\"values\":[4],\"summary\":\"Seasonal\"},{\"values\":[5],\"summary\":\"New seasonal\"},{\"values\":[6],\"summary\":\"Lost seasonal\"},{\"values\":[7],\"summary\":\"Seasonal to permanent\"},{\"values\":[8],\"summary\":\"Permanent to seasonal\"},{\"values\":[9],\"summary\":\"Ephemeral permanent\"},{\"values\":[10],\"summary\":\"Ephemeral seasonal\"}]}},\"sci:citation\":\"Jean-Francois Pekel, Andrew Cottam, Noel Gorelick, Alan S. Belward, High-resolution mapping of global surface water and its long-term changes. Nature 540, 418-422 (2016)\",\"stac_version\":\"1.0.0\",\"msft:container\":\"jrc-gsw\",\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Global surface water distribution and dynamics from 1984 to 2020\",\"msft:region\":\"westeurope\"},{\"id\":\"deltares-floods\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods\"},{\"rel\":\"documentation\",\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/aod_docs/11206409-003-ZWS-0003_v0.1-Planetary-Computer-Deltares-global-flood-docs.pdf\",\"type\":\"application/pdf\",\"title\":\"User Guide\"},{\"rel\":\"license\",\"href\":\"https://cdla.dev/permissive-1-0/\",\"type\":\"text/html\",\"title\":\"Community Data License Agreement - Permissive, Version 1.0\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/deltares-floods\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Deltares Global Flood Maps\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.azureedge.net/assets/pc_thumbnails/additional_datasets/deltares-flood.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,90.0,180.0,-90.0]]},\"temporal\":{\"interval\":[[\"2018-01-01T00:00:00Z\",\"2018-12-31T00:00:00Z\"],[\"2050-01-01T00:00:00Z\",\"2050-12-31T00:00:00Z\"]]}},\"license\":\"CDLA-Permissive-1.0\",\"keywords\":[\"Deltares\",\"Flood\",\"Sea level rise\",\"Water\",\"Global\"],\"providers\":[{\"url\":\"https://www.deltares.nl/en/\",\"name\":\"Deltares\",\"roles\":[\"producer\"]},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"deltares:dem_name\":[\"NASADEM\",\"MERITDEM\",\"LIDAR\"],\"deltares:resolution\":[\"90m\",\"1km\",\"5km\"],\"deltares:return_period\":[0,2,5,10,25,50,100,250],\"deltares:sea_level_year\":[2018,2050]},\"description\":\"[Deltares](https://www.deltares.nl/en/) has produced inundation maps of flood depth using a model that takes into account water level attenuation and is forced by sea level. At the coastline, the model is forced by extreme water levels containing surge and tide from GTSMip6. The water level at the coastline is extended landwards to all areas that are hydrodynamically connected to the coast following a \u2018bathtub\u2019 like approach and calculates the flood depth as the difference between the water level and the topography. Unlike a simple 'bathtub' model, this model attenuates the water level over land with a maximum attenuation factor of 0.5\u2009m\u2009km-1. The attenuation factor simulates the dampening of the flood levels due to the roughness over land.\\n\\nIn its current version, the model does not account for varying roughness over land and permanent water bodies such as rivers and lakes, and it does not account for the compound effects of waves, rainfall, and river discharge on coastal flooding. It also does not include the mitigating effect of coastal flood protection. Flood extents must thus be interpreted as the area that is potentially exposed to flooding without coastal protection.\\n\\nSee the complete [methodology documentation](https://ai4edatasetspublicassets.blob.core.windows.net/assets/aod_docs/11206409-003-ZWS-0003_v0.1-Planetary-Computer-Deltares-global-flood-docs.pdf) for more information.\\n\\n## Digital elevation models (DEMs)\\n\\nThis documentation will refer to three DEMs:\\n\\n* `NASADEM` is the SRTM-derived [NASADEM](https://planetarycomputer.microsoft.com/dataset/nasadem) product.\\n* `MERITDEM` is the [Multi-Error-Removed Improved Terrain DEM](http://hydro.iis.u-tokyo.ac.jp/~yamadai/MERIT_DEM/), derived from SRTM and AW3D.\\n* `LIDAR` is the [Global LiDAR Lowland DTM (GLL_DTM_v1)](https://data.mendeley.com/datasets/v5x4vpnzds/1).\\n\\n## Global datasets\\n\\nThis collection includes multiple global flood datasets derived from three different DEMs (`NASA`, `MERIT`, and `LIDAR`) and at different resolutions. Not all DEMs have all resolutions:\\n\\n* `NASADEM` and `MERITDEM` are available at `90m` and `1km` resolutions\\n* `LIDAR` is available at `5km` resolution\\n\\n## Historic event datasets\\n\\nThis collection also includes historical storm event data files that follow similar DEM and resolution conventions. Not all storms events are available for each DEM and resolution combination, but generally follow the format of:\\n\\n`events/[DEM]_[resolution]-wm_final/[storm_name]_[event_year]_masked.nc`\\n\\nFor example, a flood map for the MERITDEM-derived 90m flood data for the \\\"Omar\\\" storm in 2008 is available at:\\n\\n\\n\\n## Contact\\n\\nFor questions about this dataset, contact [`aiforearthdatasets@microsoft.com`](mailto:aiforearthdatasets@microsoft.com?subject=deltares-floods%20question).\",\"item_assets\":{\"data\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Flood Map\",\"description\":\"Inundation maps of flood depth using a model that takes into account water level attenuation and is forced by sea level.\"},\"index\":{\"type\":\"application/json\",\"roles\":[\"index\"],\"title\":\"Index file\",\"description\":\"Kerchunk index file.\"}},\"stac_version\":\"1.0.0\",\"cube:variables\":{\"inun\":{\"type\":\"data\",\"unit\":\"m\",\"attrs\":{\"units\":\"m\",\"long_name\":\"Coastal flooding\",\"standard_name\":\"water_surface_height_above_reference_datum\"},\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Coastal flooding\"},\"projection\":{\"type\":\"data\",\"attrs\":{\"EPSG_code\":\"EPSG:4326\",\"long_name\":\"wgs84\",\"proj4_params\":\"+proj=longlat +ellps=WGS84 +datum=WGS84 +no_defs\",\"grid_mapping_name\":\"latitude_longitude\"},\"shape\":[],\"dimensions\":[],\"description\":\"wgs84\"}},\"msft:container\":\"floods\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"type\":\"spatial\",\"extent\":[-89.97500000000002,89.975],\"description\":\"latitude\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"GeographicCRS\",\"datum\":{\"id\":{\"code\":6326,\"authority\":\"EPSG\"},\"name\":\"World Geodetic System 1984\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"WGS 84\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}}},\"lon\":{\"axis\":\"x\",\"type\":\"spatial\",\"extent\":[-179.975,179.97500000000005],\"description\":\"longitude\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"GeographicCRS\",\"datum\":{\"id\":{\"code\":6326,\"authority\":\"EPSG\"},\"name\":\"World Geodetic System 1984\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"WGS 84\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}}},\"time\":{\"type\":\"temporal\",\"extent\":[\"2010-01-01T00:00:00Z\",\"2010-01-01T00:00:00Z\"],\"description\":\"time\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"deltaresfloodssa\",\"msft:short_description\":\"Global estimates of coastal inundation under various sea level rise conditions and return periods.\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-43A4-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061\"},{\"rel\":\"help\",\"href\":\"https://www.umb.edu/spectralmass/terra_aqua_modis/v006\",\"title\":\"User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MCD43A4\",\"title\":\"MCD43A4 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MCD43A4.061\",\"title\":\"LP DAAC - MCD43A4\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-43A4-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-43A4-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-43A4-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-16T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Imagery\",\"Global\",\"Reflectance\",\"MCD43A4\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Moderate Resolution Imaging Spectroradiometer (MODIS) MCD43A4 Version 6.1 Nadir Bidirectional Reflectance Distribution Function (BRDF)-Adjusted Reflectance (NBAR) dataset is produced daily using 16 days of Terra and Aqua MODIS data at 500 meter (m) resolution. The view angle effects are removed from the directional reflectances, resulting in a stable and consistent NBAR product. Data are temporally weighted to the ninth day which is reflected in the Julian date in the file name. Users are urged to use the band specific quality flags to isolate the highest quality full inversion results for their own science applications as described in the User Guide. The MCD43A4 provides NBAR and simplified mandatory quality layers for MODIS bands 1 through 7. Essential quality information provided in the corresponding MCD43A2 data file should be consulted when using this product.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"Nadir_Reflectance_Band1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"NBAR at local solar noon for Band 1\",\"eo:bands\":[{\"name\":\"Nadir_Reflectance_Band1\",\"common_name\":\"red\",\"center_wavelength\":0.645,\"full_width_half_max\":0.5}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"Nadir_Reflectance_Band2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"NBAR at local solar noon for Band 2\",\"eo:bands\":[{\"name\":\"Nadir_Reflectance_Band2\",\"common_name\":\"nir08\",\"center_wavelength\":0.8585,\"full_width_half_max\":0.35}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"Nadir_Reflectance_Band3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"NBAR at local solar noon for Band 3\",\"eo:bands\":[{\"name\":\"Nadir_Reflectance_Band3\",\"common_name\":\"blue\",\"center_wavelength\":0.469,\"full_width_half_max\":0.2}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"Nadir_Reflectance_Band4\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"NBAR at local solar noon for Band 4\",\"eo:bands\":[{\"name\":\"Nadir_Reflectance_Band4\",\"common_name\":\"green\",\"center_wavelength\":0.555,\"full_width_half_max\":0.2}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"Nadir_Reflectance_Band5\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"NBAR at local solar noon for Band 5\",\"eo:bands\":[{\"name\":\"Nadir_Reflectance_Band5\",\"common_name\":\"lwir12\",\"center_wavelength\":1.24,\"full_width_half_max\":0.2}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"Nadir_Reflectance_Band6\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"NBAR at local solar noon for Band 6\",\"eo:bands\":[{\"name\":\"Nadir_Reflectance_Band6\",\"common_name\":\"swir16\",\"center_wavelength\":1.64,\"full_width_half_max\":0.24}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"Nadir_Reflectance_Band7\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"NBAR at local solar noon for Band 7\",\"eo:bands\":[{\"name\":\"Nadir_Reflectance_Band7\",\"common_name\":\"swir22\",\"center_wavelength\":2.13,\"full_width_half_max\":0.5}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"BRDF_Albedo_Band_Mandatory_Quality_Band1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"BRDF Albedo Mandatory Quality for Band 1\",\"eo:bands\":[{\"name\":\"BRDF_Albedo_Band_Mandatory_Quality_Band1\"}],\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}],\"classification:classes\":[{\"value\":0,\"description\":\"Processed, good quality (full BRDF inversions)\"},{\"value\":1,\"description\":\"Processed, see other QA (magnitude BRDF inversions)\"}]},\"BRDF_Albedo_Band_Mandatory_Quality_Band2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"BRDF Albedo Mandatory Quality for Band 2\",\"eo:bands\":[{\"name\":\"BRDF_Albedo_Band_Mandatory_Quality_Band2\"}],\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}],\"classification:classes\":[{\"value\":0,\"description\":\"Processed, good quality (full BRDF inversions)\"},{\"value\":1,\"description\":\"Processed, see other QA (magnitude BRDF inversions)\"}]},\"BRDF_Albedo_Band_Mandatory_Quality_Band3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"BRDF Albedo Mandatory Quality for Band 3\",\"eo:bands\":[{\"name\":\"BRDF_Albedo_Band_Mandatory_Quality_Band3\"}],\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}],\"classification:classes\":[{\"value\":0,\"description\":\"Processed, good quality (full BRDF inversions)\"},{\"value\":1,\"description\":\"Processed, see other QA (magnitude BRDF inversions)\"}]},\"BRDF_Albedo_Band_Mandatory_Quality_Band4\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"BRDF Albedo Mandatory Quality for Band 4\",\"eo:bands\":[{\"name\":\"BRDF_Albedo_Band_Mandatory_Quality_Band4\"}],\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}],\"classification:classes\":[{\"value\":0,\"description\":\"Processed, good quality (full BRDF inversions)\"},{\"value\":1,\"description\":\"Processed, see other QA (magnitude BRDF inversions)\"}]},\"BRDF_Albedo_Band_Mandatory_Quality_Band5\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"BRDF Albedo Mandatory Quality for Band 5\",\"eo:bands\":[{\"name\":\"BRDF_Albedo_Band_Mandatory_Quality_Band5\"}],\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}],\"classification:classes\":[{\"value\":0,\"description\":\"Processed, good quality (full BRDF inversions)\"},{\"value\":1,\"description\":\"Processed, see other QA (magnitude BRDF inversions)\"}]},\"BRDF_Albedo_Band_Mandatory_Quality_Band6\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"BRDF Albedo Mandatory Quality for Band 6\",\"eo:bands\":[{\"name\":\"BRDF_Albedo_Band_Mandatory_Quality_Band6\"}],\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}],\"classification:classes\":[{\"value\":0,\"description\":\"Processed, good quality (full BRDF inversions)\"},{\"value\":1,\"description\":\"Processed, see other QA (magnitude BRDF inversions)\"}]},\"BRDF_Albedo_Band_Mandatory_Quality_Band7\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"BRDF Albedo Mandatory Quality for Band 7\",\"eo:bands\":[{\"name\":\"BRDF_Albedo_Band_Mandatory_Quality_Band7\"}],\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}],\"classification:classes\":[{\"value\":0,\"description\":\"Processed, good quality (full BRDF inversions)\"},{\"value\":1,\"description\":\"Processed, see other QA (magnitude BRDF inversions)\"}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MCD43A4.061\",\"citation\":\"Schaaf, C., & Wang, Z. (2021). MODIS/Terra+Aqua BRDF/Albedo Nadir BRDF Adjusted Ref Daily L3 Global - 500m V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MCD43A4.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-09Q1-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/925/MOD09_User_Guide_V61.pdf\",\"title\":\"MOD09 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD09Q1\",\"title\":\"MOD09Q1 file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD09Q1\",\"title\":\"MYD09Q1 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD09Q1.061\",\"title\":\"LP DAAC - MOD09Q1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD09Q1.061\",\"title\":\"LP DAAC - MYD09Q1\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-09Q1-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Surface Reflectance 8-Day (250m)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-09Q1-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Surface Reflectance 8-Day (250m) thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-09Q1-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Imagery\",\"Global\",\"Reflectance\",\"MOD09Q1\",\"MYD09Q1\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The 09Q1 Version 6.1 product provides an estimate of the surface spectral reflectance of Moderate Resolution Imaging Spectroradiometer (MODIS) Bands 1 and 2, corrected for atmospheric conditions such as gasses, aerosols, and Rayleigh scattering. Provided along with the 250 meter (m) surface reflectance bands are two quality layers. For each pixel, a value is selected from all the acquisitions within the 8-day composite period. The criteria for the pixel choice include cloud and solar zenith. When several acquisitions meet the criteria the pixel with the minimum channel 3 (blue) value is used.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"sur_refl_b01\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Surface Reflectance Band 1 (620-670 nm)\",\"eo:bands\":[{\"name\":\"sur_refl_b01\",\"common_name\":\"red\",\"center_wavelength\":0.645,\"full_width_half_max\":0.5}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"sur_refl_b02\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"reflectance\"],\"title\":\"Surface Reflectance Band 2 (841-876 nm)\",\"eo:bands\":[{\"name\":\"sur_refl_b02\",\"common_name\":\"nir08\",\"center_wavelength\":0.8585,\"full_width_half_max\":0.35}],\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"sur_refl_qc_250m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Reflectance 250m Band Quality Control flags\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":250}]},\"sur_refl_state_250m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Reflectance 250m State flags\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":250}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD09Q1.061\",\"citation\":\"Vermote, E. (2021). MODIS/Terra Surface Reflectance 8-Day L3 Global 250m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD09Q1.061\"},{\"doi\":\"10.5067/MODIS/MYD09Q1.061\",\"citation\":\"Vermote, E. (2021). MODIS/Aqua Surface Reflectance 8-Day L3 Global 250m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD09Q1.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Surface Reflectance 8-Day (250m)\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-14A1-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/1005/MOD14_User_Guide_V61.pdf\",\"title\":\"MOD14 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD14A1\",\"title\":\"MOD14A1 file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD14A1\",\"title\":\"MYD14A1 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD14A1.061\",\"title\":\"LP DAAC - MOD14A1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD14A1.061\",\"title\":\"LP DAAC - MYD14A1\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-14A1-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Thermal Anomalies/Fire Daily\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-14A1-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Thermal Anomalies/Fire Daily thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-14A1-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Fire\",\"MOD14A1\",\"MYD14A1\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Moderate Resolution Imaging Spectroradiometer (MODIS) Thermal Anomalies and Fire Daily Version 6.1 data are generated every eight days at 1 kilometer (km) spatial resolution as a Level 3 product. MOD14A1 contains eight consecutive days of fire data conveniently packaged into a single file. The Science Dataset (SDS) layers include the fire mask, pixel quality indicators, maximum fire radiative power (MaxFRP), and the position of the fire pixel within the scan. Each layer consists of daily per pixel information for each of the eight days of data acquisition.\",\"item_assets\":{\"QA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Pixel quality indicators\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"MaxFRP\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Maximum Fire Radiative Power\",\"raster:bands\":[{\"unit\":\"Megawatts\",\"scale\":0.1,\"data_type\":\"uint32\",\"spatial_resolution\":1000},{\"unit\":\"Megawatts\",\"scale\":0.1,\"data_type\":\"uint32\",\"spatial_resolution\":1000},{\"unit\":\"Megawatts\",\"scale\":0.1,\"data_type\":\"uint32\",\"spatial_resolution\":1000},{\"unit\":\"Megawatts\",\"scale\":0.1,\"data_type\":\"uint32\",\"spatial_resolution\":1000},{\"unit\":\"Megawatts\",\"scale\":0.1,\"data_type\":\"uint32\",\"spatial_resolution\":1000},{\"unit\":\"Megawatts\",\"scale\":0.1,\"data_type\":\"uint32\",\"spatial_resolution\":1000},{\"unit\":\"Megawatts\",\"scale\":0.1,\"data_type\":\"uint32\",\"spatial_resolution\":1000},{\"unit\":\"Megawatts\",\"scale\":0.1,\"data_type\":\"uint32\",\"spatial_resolution\":1000}]},\"sample\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Position of fire pixel within scan\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":1000},{\"data_type\":\"uint16\",\"spatial_resolution\":1000},{\"data_type\":\"uint16\",\"spatial_resolution\":1000},{\"data_type\":\"uint16\",\"spatial_resolution\":1000},{\"data_type\":\"uint16\",\"spatial_resolution\":1000},{\"data_type\":\"uint16\",\"spatial_resolution\":1000},{\"data_type\":\"uint16\",\"spatial_resolution\":1000},{\"data_type\":\"uint16\",\"spatial_resolution\":1000}]},\"FireMask\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Confidence of fire\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000},{\"data_type\":\"uint8\",\"spatial_resolution\":1000}],\"classification:classes\":[{\"value\":0,\"description\":\"Not processed (missing input data)\"},{\"value\":1,\"description\":\"Not processed (obsolete; not used since Collection 1)\"},{\"value\":2,\"description\":\"Not processed (other reason)\"},{\"value\":3,\"description\":\"Non-fire water pixel\"},{\"value\":4,\"description\":\"Cloud (land or water)\"},{\"value\":5,\"description\":\"Non-fire land pixel\"},{\"value\":6,\"description\":\"Unknown (land or water)\"},{\"value\":7,\"description\":\"Fire (low confidence, land or water)\"},{\"value\":8,\"description\":\"Fire (nominal confidence, land or water)\"},{\"value\":9,\"description\":\"Fire (high confidence, land or water)\"}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD14A1.061\",\"citation\":\"Giglio, L., & Justice, C. (2021). MODIS/Terra Thermal Anomalies/Fire Daily L3 Global 1km SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD14A1.061\"},{\"doi\":\"10.5067/MODIS/MYD14A1.061\",\"citation\":\"Giglio, L., & Justice, C. (2021). MODIS/Aqua Thermal Anomalies/Fire Daily L3 Global 1km SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD14A1.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Thermal Anomalies/Fire Daily\",\"msft:region\":\"westeurope\"},{\"id\":\"hrea\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/licenses/by/4.0/\",\"title\":\"CC BY 4.0\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/hrea\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"HREA: High Resolution Electricity Access\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/hrea.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"HREA\"},\"geoparquet-items\":{\"href\":\"abfs://items/hrea.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-117.413972,-55.54235,-53.092722,32.718434],[-25.361528,-34.838027,50.759908,37.552639],[34.957638,-11.655904,157.037723,38.612083],[155.392502,-20.251178,172.171458,14.721388]]},\"temporal\":{\"interval\":[[\"2012-12-31T00:00:00Z\",\"2019-12-31T00:00:00Z\"]]}},\"license\":\"CC-BY-4.0\",\"keywords\":[\"HREA\",\"Electricity\",\"VIIRS\"],\"providers\":[{\"url\":\"http://www-personal.umich.edu/~brianmin/HREA/index.html/\",\"name\":\"University of Michigan\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[30,460]},\"description\":\"The [HREA](http://www-personal.umich.edu/~brianmin/HREA/index.html) project aims to provide open access to new indicators of electricity access and reliability across the world. Leveraging satellite imagery with computational methods, these high-resolution data provide new tools to track progress toward reliable and sustainable energy access across the world.\\n\\nThis dataset includes settlement-level measures of electricity access, reliability, and usage for 89 nations, derived from nightly VIIRS satellite imagery. Specifically, this dataset provides the following annual values at country-level granularity:\\n\\n1. **Access**: Predicted likelihood that a settlement is electrified, based on night-by-night comparisons of each settlement against matched uninhabited areas over a calendar year.\\n\\n2. **Reliability**: Proportion of nights a settlement is statistically brighter than matched uninhabited areas. Areas with more frequent power outages or service interruptions have lower rates.\\n\\n3. **Usage**: Higher levels of brightness indicate more robust usage of outdoor lighting, which is highly correlated with overall energy consumption.\\n\\n4. **Nighttime Lights**: Annual composites of VIIRS nighttime light output.\\n\\nFor more information and methodology, please visit the [HREA website](http://www-personal.umich.edu/~brianmin/HREA/index.html).\\n\",\"item_assets\":{\"lightscore\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Probability of electrification\"},\"light-composite\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Nighttime light annual composite\"},\"night-proportion\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Proportion of nights a settlement is brighter than uninhabited areas\"},\"estimated-brightness\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Estimated brightness levels\"}},\"stac_version\":\"1.0.0\",\"msft:container\":\"hrea\",\"stac_extensions\":[\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"hreadatasa\",\"msft:short_description\":\"Settlement-level measures of electricity access, reliability, and usage derived from VIIRS satellite imagery\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-13Q1-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/621/MOD13_User_Guide_V61.pdf\",\"title\":\"MOD13 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD13Q1\",\"title\":\"MOD13Q1 file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD13Q1\",\"title\":\"MYD13Q1 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD13Q1.061\",\"title\":\"LP DAAC - MOD13Q1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD13Q1.061\",\"title\":\"LP DAAC - MYD13Q1\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-13Q1-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Vegetation Indices 16-Day (250m)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-13Q1-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Vegetation Indices 16-Day (250m) thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-13Q1-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Vegetation\",\"MOD13Q1\",\"MYD13Q1\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Moderate Resolution Imaging Spectroradiometer (MODIS) Vegetation Indices Version 6.1 data are generated every 16 days at 250 meter (m) spatial resolution as a Level 3 product. The MOD13Q1 product provides two primary vegetation layers. The first is the Normalized Difference Vegetation Index (NDVI) which is referred to as the continuity index to the existing National Oceanic and Atmospheric Administration-Advanced Very High Resolution Radiometer (NOAA-AVHRR) derived NDVI. The second vegetation layer is the Enhanced Vegetation Index (EVI), which has improved sensitivity over high biomass regions. The algorithm chooses the best available pixel value from all the acquisitions from the 16 day period. The criteria used is low clouds, low view angle, and the highest NDVI/EVI value. Along with the vegetation layers and the two quality layers, the HDF file will have MODIS reflectance bands 1 (red), 2 (near-infrared), 3 (blue), and 7 (mid-infrared), as well as four observation layers.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"250m_16_days_EVI\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"16 day EVI\",\"raster:bands\":[{\"unit\":\"EVI\",\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"250m_16_days_NDVI\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"16 day NDVI\",\"raster:bands\":[{\"unit\":\"NDVI\",\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"250m_16_days_VI_Quality\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VI quality indicators\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":250}]},\"250m_16_days_MIR_reflectance\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Reflectance Band 7\",\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"250m_16_days_NIR_reflectance\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Reflectance Band 2\",\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"250m_16_days_red_reflectance\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Reflectance Band 1\",\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"250m_16_days_blue_reflectance\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Reflectance Band 3\",\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"250m_16_days_sun_zenith_angle\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Sun zenith angle of VI pixel\",\"raster:bands\":[{\"unit\":\"Degree\",\"scale\":0.01,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"250m_16_days_pixel_reliability\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality reliability of VI pixel\",\"raster:bands\":[{\"unit\":\"Rank\",\"data_type\":\"int8\",\"spatial_resolution\":250}],\"classification:classes\":[{\"value\":0,\"description\":\"Good data, use with confidence\"},{\"value\":1,\"description\":\"Marginal data, useful, but look at other QA information\"},{\"value\":2,\"description\":\"Snow/Ice Target covered with snow/ice\"},{\"value\":3,\"description\":\"Cloudy data\"}]},\"250m_16_days_view_zenith_angle\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"View zenith angle of VI Pixel\",\"raster:bands\":[{\"unit\":\"Degree\",\"scale\":0.01,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"250m_16_days_relative_azimuth_angle\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Relative azimuth angle of VI pixel\",\"raster:bands\":[{\"unit\":\"Degree\",\"scale\":0.01,\"data_type\":\"int16\",\"spatial_resolution\":250}]},\"250m_16_days_composite_day_of_the_year\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Day of year VI pixel\",\"raster:bands\":[{\"unit\":\"Julian Day\",\"data_type\":\"int16\",\"spatial_resolution\":250}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD13Q1.061\",\"citation\":\"Didan, K. (2021). MODIS/Terra Vegetation Indices 16-Day L3 Global 250m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD13Q1.061\"},{\"doi\":\"10.5067/MODIS/MYD13Q1.061\",\"citation\":\"Didan, K. (2021). MODIS/Aqua Vegetation Indices 16-Day L3 Global 250m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD13Q1.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Vegetation Indices 16-Day (250m)\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-14A2-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/1005/MOD14_User_Guide_V61.pdf\",\"title\":\"MOD14 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD14A2\",\"title\":\"MOD14A2 file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD14A2\",\"title\":\"MYD14A2 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD14A2.061\",\"title\":\"LP DAAC - MOD14A2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD14A2.061\",\"title\":\"LP DAAC - MYD14A2\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-14A2-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Thermal Anomalies/Fire 8-Day\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-14A2-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Thermal Anomalies/Fire 8-Day thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-14A2-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Fire\",\"MOD14A2\",\"MYD14A2\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Moderate Resolution Imaging Spectroradiometer (MODIS) Thermal Anomalies and Fire 8-Day Version 6.1 data are generated at 1 kilometer (km) spatial resolution as a Level 3 product. The MOD14A2 gridded composite contains the maximum value of the individual fire pixel classes detected during the eight days of acquisition. The Science Dataset (SDS) layers include the fire mask and pixel quality indicators.\",\"item_assets\":{\"QA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Pixel quality indicators\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"FireMask\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Confidence of fire\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000}],\"classification:classes\":[{\"value\":0,\"description\":\"Not processed (missing input data)\"},{\"value\":1,\"description\":\"Not processed (obsolete; not used since Collection 1)\"},{\"value\":2,\"description\":\"Not processed (other reason)\"},{\"value\":3,\"description\":\"Non-fire water pixel\"},{\"value\":4,\"description\":\"Cloud (land or water)\"},{\"value\":5,\"description\":\"Non-fire land pixel\"},{\"value\":6,\"description\":\"Unknown (land or water)\"},{\"value\":7,\"description\":\"Fire (low confidence, land or water)\"},{\"value\":8,\"description\":\"Fire (nominal confidence, land or water)\"},{\"value\":9,\"description\":\"Fire (high confidence, land or water)\"}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD14A2.061\",\"citation\":\"Giglio, L., & Justice, C. (2021). MODIS/Terra Thermal Anomalies/Fire 8-Day L3 Global 1km SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD14A2.061\"},{\"doi\":\"10.5067/MODIS/MYD14A2.061\",\"citation\":\"Giglio, L., & Justice, C. (2021). MODIS/Aqua Thermal Anomalies/Fire 8-Day L3 Global 1km SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD14A2.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Thermal Anomalies/Fire 8-Day\",\"msft:region\":\"westeurope\"},{\"id\":\"sentinel-2-l2a\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a\"},{\"rel\":\"license\",\"href\":\"https://scihub.copernicus.eu/twiki/pub/SciHubWebPortal/TermsConditions/Sentinel_Data_Terms_and_Conditions.pdf\",\"title\":\"Copernicus Sentinel data terms\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-2-l2a\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-2 Level-2A\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-2.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Sentinel 2 L2A\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-2-l2a.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"W-MON\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Global\",\"Imagery\",\"Reflectance\"],\"providers\":[{\"url\":\"https://sentinel.esa.int/web/sentinel/missions/sentinel-2\",\"name\":\"ESA\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://www.esri.com/\",\"name\":\"Esri\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[10,20,60],\"eo:bands\":[{\"name\":\"AOT\",\"description\":\"aerosol optical thickness\"},{\"gsd\":60,\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"coastal aerosol\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"gsd\":10,\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"visible blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"gsd\":10,\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"visible green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"gsd\":10,\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"visible red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"gsd\":20,\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"vegetation classification red edge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"gsd\":20,\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"vegetation classification red edge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"gsd\":20,\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"vegetation classification red edge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"gsd\":10,\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"near infrared\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"gsd\":20,\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"vegetation classification red edge\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"gsd\":60,\"name\":\"B09\",\"description\":\"water vapor\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"gsd\":20,\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"short-wave infrared, snow/ice/cloud classification\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"gsd\":20,\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"short-wave infrared, snow/ice/cloud classification\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"platform\":[\"Sentinel-2A\",\"Sentinel-2B\"],\"instruments\":[\"msi\"],\"constellation\":[\"sentinel-2\"],\"view:off_nadir\":[0]},\"description\":\"The [Sentinel-2](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) program provides global imagery in thirteen spectral bands at 10m-60m resolution and a revisit time of approximately five days. This dataset represents the global Sentinel-2 archive, from 2016 to the present, processed to L2A (bottom-of-atmosphere) using [Sen2Cor](https://step.esa.int/main/snap-supported-plugins/sen2cor/) and converted to [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\",\"item_assets\":{\"AOT\":{\"gsd\":10.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Aerosol optical thickness (AOT)\"},\"B01\":{\"gsd\":60.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 1 - Coastal aerosol - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"description\":\"Band 1 - Coastal aerosol\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}]},\"B02\":{\"gsd\":10.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 2 - Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band 2 - Blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}]},\"B03\":{\"gsd\":10.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 3 - Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band 3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}]},\"B04\":{\"gsd\":10.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 4 - Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band 4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}]},\"B05\":{\"gsd\":20.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 5 - Vegetation red edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"description\":\"Band 5 - Vegetation red edge 1\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}]},\"B06\":{\"gsd\":20.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 6 - Vegetation red edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"description\":\"Band 6 - Vegetation red edge 2\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}]},\"B07\":{\"gsd\":20.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 7 - Vegetation red edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"description\":\"Band 7 - Vegetation red edge 3\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}]},\"B08\":{\"gsd\":10.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 8 - NIR - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"description\":\"Band 8 - NIR\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}]},\"B09\":{\"gsd\":60.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 9 - Water vapor - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"description\":\"Band 9 - Water vapor\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}]},\"B11\":{\"gsd\":20.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 11 - SWIR (1.6) - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"description\":\"Band 11 - SWIR (1.6)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}]},\"B12\":{\"gsd\":20.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 12 - SWIR (2.2) - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"description\":\"Band 12 - SWIR (2.2)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]},\"B8A\":{\"gsd\":20.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 8A - Vegetation red edge 4 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"rededge\",\"description\":\"Band 8A - Vegetation red edge 4\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}]},\"SCL\":{\"gsd\":20.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Scene classfication map (SCL)\"},\"WVP\":{\"gsd\":10.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water vapour (WVP)\"},\"visual\":{\"gsd\":10.0,\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"description\":\"Band 4 - Red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"description\":\"Band 3 - Green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"description\":\"Band 2 - Blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"SAFE manifest\"},\"granule-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Granule metadata\"},\"inspire-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"INSPIRE metadata\"},\"product-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product metadata\"},\"datastrip-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Datastrip metadata\"}},\"stac_version\":\"1.0.0\",\"msft:container\":\"sentinel2-l2\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"sentinel2l2a01\",\"msft:short_description\":\"The Sentinel-2 program provides global imagery in thirteen spectral bands at 10m-60m resolution and a revisit time of approximately five days. This dataset contains the global Sentinel-2 archive, from 2016 to the present, processed to L2A (bottom-of-atmosphere).\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-15A2H-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/926/MOD15_User_Guide_V61.pdf\",\"title\":\"MOD15 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MCD15A2H\",\"title\":\"MCD15A2H file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD15A2H\",\"title\":\"MOD15A2H file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD15A2H\",\"title\":\"MYD15A2H file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MCD15A2H.061\",\"title\":\"LP DAAC - MCD15A2H\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD15A2H.061\",\"title\":\"LP DAAC - MOD15A2H\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD15A2H.061\",\"title\":\"LP DAAC - MYD15A2H\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-15A2H-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Leaf Area Index/FPAR 8-Day\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-15A2H-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Leaf Area Index/FPAR 8-Day thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-15A2H-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2002-07-04T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Vegetation\",\"MCD15A2H\",\"MOD15A2H\",\"MYD15A2H\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Version 6.1 Moderate Resolution Imaging Spectroradiometer (MODIS) Level 4, Combined Fraction of Photosynthetically Active Radiation (FPAR), and Leaf Area Index (LAI) product is an 8-day composite dataset with 500 meter pixel size. The algorithm chooses the best pixel available from within the 8-day period. LAI is defined as the one-sided green leaf area per unit ground area in broadleaf canopies and as one-half the total needle surface area per unit ground area in coniferous canopies. FPAR is defined as the fraction of incident photosynthetically active radiation (400-700 nm) absorbed by the green elements of a vegetation canopy.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"Lai_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Leaf Area Index\",\"description\":\"The one-sided green leaf area per unit ground area in broadleaf canopies and as one-half the total needle surface area per unit ground area in coniferous canopies\",\"raster:bands\":[{\"unit\":\"m^2/m^2\",\"scale\":0.1,\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"Fpar_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Fraction of Photosynthetically Active Radiation\",\"description\":\"The fraction of incident photosynthetically active radiation (400-700 nm) absorbed by the green elements of a vegetation canopy.\",\"raster:bands\":[{\"unit\":\"Percent\",\"scale\":0.01,\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"FparLai_QC\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality for FPAR and LAI\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"FparExtra_QC\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Extra detail Quality for FPAR and LAI\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"LaiStdDev_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Standard deviation of LAI\",\"raster:bands\":[{\"unit\":\"m^2/m^2\",\"scale\":0.1,\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"FparStdDev_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Standard deviation of FPAR\",\"raster:bands\":[{\"unit\":\"Percent\",\"scale\":0.01,\"data_type\":\"uint8\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MCD15A2H.061\",\"citation\":\"Myneni, R., Knyazikhin, Y., & Park, T. (2021). MODIS/Terra+Aqua Leaf Area Index/FPAR 8-Day L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MCD15A2H.061\"},{\"doi\":\"10.5067/MODIS/MOD15A2H.061\",\"citation\":\"Myneni, R., Knyazikhin, Y., & Park, T. (2021). MODIS/Terra Leaf Area Index/FPAR 8-Day L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD15A2H.061\"},{\"doi\":\"10.5067/MODIS/MYD15A2H.061\",\"citation\":\"Myneni, R., Knyazikhin, Y., & Park, T. (2021). MODIS/Aqua Leaf Area Index/FPAR 8-Day L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD15A2H.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Leaf Area Index/FPAR 8-Day\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-11A1-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/715/MOD11_User_Guide_V61.pdf\",\"title\":\"MOD11 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD11A1\",\"title\":\"MOD11A1 file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD11A1\",\"title\":\"MYD11A1 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD11A1.061\",\"title\":\"LP DAAC - MOD11A1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD11A1.061\",\"title\":\"LP DAAC - MYD11A1\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-11A1-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Land Surface Temperature/Emissivity Daily\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-11A1-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Land Surface Temperature/Emissivity Daily thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-11A1-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-24T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Temperature\",\"MOD11A1\",\"MYD11A1\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Moderate Resolution Imaging Spectroradiometer (MODIS) Land Surface Temperature/Emissivity Daily Version 6.1 product provides daily per-pixel Land Surface Temperature and Emissivity (LST&E) with 1 kilometer (km) spatial resolution in a 1,200 by 1,200 km grid. The pixel temperature value is derived from the MOD11_L2 swath product. Above 30 degrees latitude, some pixels may have multiple observations where the criteria for clear-sky are met. When this occurs, the pixel value is a result of the average of all qualifying observations. Provided along with the daytime and nighttime surface temperature bands are associated quality control assessments, observation times, view zenith angles, and clear-sky coverages along with bands 31 and 32 emissivities from land cover types\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"QC_Day\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality control for daytime LST and emissivity\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Emis_31\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 31 emissivity\",\"raster:bands\":[{\"scale\":0.002,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Emis_32\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Band 32 emissivity\",\"raster:bands\":[{\"scale\":0.002,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"QC_Night\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality control for nighttime LST and emissivity\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"LST_Day_1km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"temperature\"],\"title\":\"Daily daytime 1km grid Land-surface Temperature\",\"raster:bands\":[{\"unit\":\"Kelvin\",\"scale\":0.02,\"data_type\":\"uint16\",\"spatial_resolution\":1000}]},\"Clear_day_cov\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Day clear-sky coverage\",\"raster:bands\":[{\"scale\":0.0005,\"data_type\":\"uint16\",\"spatial_resolution\":1000}]},\"Day_view_angl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"View zenith angle of daytime Landsurface Temperature\",\"raster:bands\":[{\"unit\":\"Degree\",\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Day_view_time\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"(local solar) Time of daytime Land-surface Temperature observation\",\"raster:bands\":[{\"unit\":\"Hours\",\"scale\":0.1,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"LST_Night_1km\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"temperature\"],\"title\":\"Daily nighttime 1km grid Land-surface Temperature\",\"raster:bands\":[{\"unit\":\"Kelvin\",\"scale\":0.02,\"data_type\":\"uint16\",\"spatial_resolution\":1000}]},\"Clear_night_cov\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Night clear-sky coverage\",\"raster:bands\":[{\"scale\":0.0005,\"data_type\":\"uint16\",\"spatial_resolution\":1000}]},\"Night_view_angl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"View zenith angle of nighttime Landsurface Temperature\",\"raster:bands\":[{\"unit\":\"Degree\",\"data_type\":\"uint8\",\"spatial_resolution\":1000}]},\"Night_view_time\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"(local solar) Time of nighttime Landsurface Temperature observation\",\"raster:bands\":[{\"unit\":\"Hours\",\"scale\":0.1,\"data_type\":\"uint8\",\"spatial_resolution\":1000}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD11A1.061\",\"citation\":\"Wan, Z., Hook, S., & Hulley, G. (2021). MODIS/Terra Land Surface Temperature/Emissivity Daily L3 Global 1km SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD11A1.061\"},{\"doi\":\"10.5067/MODIS/MYD11A1.061\",\"citation\":\"Wan, Z., Hook, S., & Hulley, G. (2021). MODIS/Aqua Land Surface Temperature/Emissivity Daily L3 Global 1km SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD11A1.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Land Surface Temperature/Emissivity Daily\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-15A3H-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/926/MOD15_User_Guide_V61.pdf\",\"title\":\"MOD15 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MCD15A3H\",\"title\":\"MCD15A3H file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MCD15A3H.061\",\"title\":\"LP DAAC - MCD15A3H\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-15A3H-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Leaf Area Index/FPAR 4-Day\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-15A3H-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Leaf Area Index/FPAR 4-Day thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-15A3H-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2002-07-04T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Vegetation\",\"MCD15A3H\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The MCD15A3H Version 6.1 Moderate Resolution Imaging Spectroradiometer (MODIS) Level 4, Combined Fraction of Photosynthetically Active Radiation (FPAR), and Leaf Area Index (LAI) product is a 4-day composite data set with 500 meter pixel size. The algorithm chooses the best pixel available from all the acquisitions of both MODIS sensors located on NASA's Terra and Aqua satellites from within the 4-day period. LAI is defined as the one-sided green leaf area per unit ground area in broadleaf canopies and as one-half the total needle surface area per unit ground area in coniferous canopies. FPAR is defined as the fraction of incident photosynthetically active radiation (400-700 nm) absorbed by the green elements of a vegetation canopy.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"Lai_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Leaf Area Index\",\"raster:bands\":[{\"unit\":\"m^2/m^2\",\"scale\":0.1,\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"Fpar_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Fraction of Photosynthetically Active Radiation\",\"raster:bands\":[{\"unit\":\"Percent\",\"scale\":0.01,\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"FparLai_QC\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality for FPAR and LAI\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"FparExtra_QC\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Extra detail Quality for FPAR and LAI\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"LaiStdDev_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Standard deviation of LAI\",\"raster:bands\":[{\"unit\":\"m^2/m^2\",\"scale\":0.1,\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"FparStdDev_500m\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Standard deviation of FPAR\",\"raster:bands\":[{\"unit\":\"Percent\",\"scale\":0.01,\"data_type\":\"uint8\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MCD15A3H.061\",\"citation\":\"Myneni, R., Knyazikhin, Y., & Park, T. (2021). MODIS/Terra+Aqua Leaf Area Index/FPAR 4-Day L4 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MCD15A3H.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Leaf Area Index/FPAR 4-Day\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-13A1-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061\"},{\"rel\":\"help\",\"href\":\"https://lpdaac.usgs.gov/documents/621/MOD13_User_Guide_V61.pdf\",\"title\":\"MOD13 User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MOD13A1\",\"title\":\"MOD13A1 file specification\"},{\"rel\":\"describedby\",\"href\":\"https://ladsweb.modaps.eosdis.nasa.gov/filespec/MODIS/61/MYD13A1\",\"title\":\"MYD13A1 file specification\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD13A1.061\",\"title\":\"LP DAAC - MOD13A1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD13A1.061\",\"title\":\"LP DAAC - MYD13A1\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-13A1-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Vegetation Indices 16-Day (500m)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-13A1-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Vegetation Indices 16-Day (500m) thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-13A1-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Vegetation\",\"MOD13A1\",\"MYD13A1\"],\"providers\":[{\"url\":\"https://lpdaac.usgs.gov/\",\"name\":\"NASA LP DAAC at the USGS EROS Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"The Moderate Resolution Imaging Spectroradiometer (MODIS) Vegetation Indices 16-Day Version 6.1 product provides Vegetation Index (VI) values at a per pixel basis at 500 meter (m) spatial resolution. There are two primary vegetation layers. The first is the Normalized Difference Vegetation Index (NDVI), which is referred to as the continuity index to the existing National Oceanic and Atmospheric Administration-Advanced Very High Resolution Radiometer (NOAA-AVHRR) derived NDVI. The second vegetation layer is the Enhanced Vegetation Index (EVI), which has improved sensitivity over high biomass regions. The algorithm for this product chooses the best available pixel value from all the acquisitions from the 16 day period. The criteria used is low clouds, low view angle, and the highest NDVI/EVI value. Provided along with the vegetation layers and two quality assurance (QA) layers are reflectance bands 1 (red), 2 (near-infrared), 3 (blue), and 7 (mid-infrared), as well as four observation layers.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"500m_16_days_EVI\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"500m 16 days EVI\",\"raster:bands\":[{\"unit\":\"EVI\",\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"500m_16_days_NDVI\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"500m 16 days NDVI\",\"raster:bands\":[{\"unit\":\"NDVI\",\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"500m_16_days_VI_Quality\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VI quality indicators\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":500}]},\"500m_16_days_MIR_reflectance\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Reflectance Band 7\",\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"500m_16_days_NIR_reflectance\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Reflectance Band 2\",\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"500m_16_days_red_reflectance\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Reflectance Band 1\",\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"500m_16_days_blue_reflectance\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Surface Reflectance Band 3\",\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"500m_16_days_sun_zenith_angle\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Sun zenith angle of VI pixel\",\"raster:bands\":[{\"unit\":\"Degree\",\"scale\":0.01,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"500m_16_days_pixel_reliability\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Quality reliability of VI pixel\",\"raster:bands\":[{\"unit\":\"Rank\",\"data_type\":\"int8\",\"spatial_resolution\":500}],\"classification:classes\":[{\"value\":0,\"description\":\"Good data, use with confidence\"},{\"value\":1,\"description\":\"Marginal data, useful, but look at other QA information\"},{\"value\":2,\"description\":\"Snow/Ice Target covered with snow/ice\"},{\"value\":3,\"description\":\"Cloudy data\"}]},\"500m_16_days_view_zenith_angle\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"View zenith angle of VI Pixel\",\"raster:bands\":[{\"unit\":\"Degree\",\"scale\":0.01,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"500m_16_days_relative_azimuth_angle\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Relative azimuth angle of VI pixel\",\"raster:bands\":[{\"unit\":\"Degree\",\"scale\":0.01,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"500m_16_days_composite_day_of_the_year\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Day of year VI pixel\",\"raster:bands\":[{\"unit\":\"Julian Day\",\"data_type\":\"int16\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD13A1.061\",\"citation\":\"Didan, K. (2021). MODIS/Terra Vegetation Indices 16-Day L3 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MOD13A1.061\"},{\"doi\":\"10.5067/MODIS/MYD13A1.061\",\"citation\":\"Didan, K. (2021). MODIS/Aqua Vegetation Indices 16-Day L3 Global 500m SIN Grid V061 [Data set]. NASA EOSDIS Land Processes DAAC. https://doi.org/10.5067/MODIS/MYD13A1.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Vegetation Indices 16-Day (500m)\",\"msft:region\":\"westeurope\"},{\"id\":\"daymet-daily-na\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na\"},{\"rel\":\"license\",\"href\":\"https://science.nasa.gov/earth-science/earth-science-data/data-information-policy\",\"title\":\"EOSDIS Data Use Policy\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.3334/ORNLDAAC/1840\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/daymet-daily-na\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Daymet Daily North America\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/daymet-daily-na.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Daymet daily North America map thumbnail\"},\"zarr-abfs\":{\"href\":\"abfs://daymet-zarr/daily/na.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"abfs\"],\"title\":\"Daily North America Daymet Azure Blob File System Zarr root\",\"description\":\"Azure Blob File System of the daily North America Daymet Zarr Group on Azure Blob Storage for use with adlfs.\",\"xarray:open_kwargs\":{\"consolidated\":true},\"xarray:storage_options\":{\"account_name\":\"daymeteuwest\"}},\"zarr-https\":{\"href\":\"https://daymeteuwest.blob.core.windows.net/daymet-zarr/daily/na.zarr\",\"type\":\"application/vnd+zarr\",\"roles\":[\"data\",\"zarr\",\"https\"],\"title\":\"Daily North America Daymet HTTPS Zarr root\",\"description\":\"HTTPS URI of the daily North America Daymet Zarr Group on Azure Blob Storage.\",\"xarray:open_kwargs\":{\"consolidated\":true}}},\"extent\":{\"spatial\":{\"bbox\":[[-178.1333,14.0749,-53.0567,82.9143]]},\"temporal\":{\"interval\":[[\"1980-01-01T12:00:00Z\",\"2020-12-30T12:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.3334/ORNLDAAC/1840\",\"keywords\":[\"Daymet\",\"North America\",\"Temperature\",\"Precipitation\",\"Vapor Pressure\",\"Weather\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]},{\"url\":\"https://doi.org/10.3334/ORNLDAAC/1840\",\"name\":\"ORNL DAAC\",\"roles\":[\"producer\"]}],\"description\":\"Gridded estimates of daily weather parameters. [Daymet](https://daymet.ornl.gov) Version 4 variables include the following parameters: minimum temperature, maximum temperature, precipitation, shortwave radiation, vapor pressure, snow water equivalent, and day length.\\n\\n[Daymet](https://daymet.ornl.gov/) provides measurements of near-surface meteorological conditions; the main purpose is to provide data estimates where no instrumentation exists. The dataset covers the period from January 1, 1980 to the present. Each year is processed individually at the close of a calendar year. Data are in a Lambert conformal conic projection for North America and are distributed in Zarr and NetCDF formats, compliant with the [Climate and Forecast (CF) metadata conventions (version 1.6)](http://cfconventions.org/).\\n\\nUse the DOI at [https://doi.org/10.3334/ORNLDAAC/1840](https://doi.org/10.3334/ORNLDAAC/1840) to cite your usage of the data.\\n\\nThis dataset provides coverage for Hawaii; North America and Puerto Rico are provided in [separate datasets](https://planetarycomputer.microsoft.com/dataset/group/daymet#daily).\\n\\n\",\"sci:citation\":\"Thornton, M.M., R. Shrestha, P.E. Thornton, S. Kao, Y. Wei, and B.E. Wilson. 2021. Daymet Version 4 Monthly Latency: Daily Surface Weather Data. ORNL DAAC, Oak Ridge, Tennessee, USA. https://doi.org/10.3334/ORNLDAAC/1904\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"daymet\",\"cube:variables\":{\"vp\":{\"type\":\"data\",\"unit\":\"Pa\",\"attrs\":{\"units\":\"Pa\",\"long_name\":\"daily average vapor pressure\",\"cell_methods\":\"area: mean time: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,8075,7814],\"chunks\":[365,284,584],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily average vapor pressure\"},\"lat\":{\"type\":\"auxiliary\",\"unit\":\"degrees_north\",\"attrs\":{\"units\":\"degrees_north\",\"long_name\":\"latitude coordinate\",\"standard_name\":\"latitude\"},\"shape\":[8075,7814],\"chunks\":[284,584],\"dimensions\":[\"y\",\"x\"],\"description\":\"latitude coordinate\"},\"lon\":{\"type\":\"auxiliary\",\"unit\":\"degrees_east\",\"attrs\":{\"units\":\"degrees_east\",\"long_name\":\"longitude coordinate\",\"standard_name\":\"longitude\"},\"shape\":[8075,7814],\"chunks\":[284,584],\"dimensions\":[\"y\",\"x\"],\"description\":\"longitude coordinate\"},\"swe\":{\"type\":\"data\",\"unit\":\"kg/m2\",\"attrs\":{\"units\":\"kg/m2\",\"long_name\":\"snow water equivalent\",\"cell_methods\":\"area: mean time: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,8075,7814],\"chunks\":[365,284,584],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"snow water equivalent\"},\"dayl\":{\"type\":\"data\",\"unit\":\"s\",\"attrs\":{\"units\":\"s\",\"long_name\":\"daylength\",\"cell_methods\":\"area: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,8075,7814],\"chunks\":[365,284,584],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daylength\"},\"prcp\":{\"type\":\"data\",\"unit\":\"mm/day\",\"attrs\":{\"units\":\"mm/day\",\"long_name\":\"daily total precipitation\",\"cell_methods\":\"area: mean time: sum\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,8075,7814],\"chunks\":[365,284,584],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily total precipitation\"},\"srad\":{\"type\":\"data\",\"unit\":\"W/m2\",\"attrs\":{\"units\":\"W/m2\",\"long_name\":\"daylight average incident shortwave radiation\",\"cell_methods\":\"area: mean time: mean\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,8075,7814],\"chunks\":[365,284,584],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daylight average incident shortwave radiation\"},\"tmax\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"daily maximum temperature\",\"cell_methods\":\"area: mean time: maximum\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,8075,7814],\"chunks\":[365,284,584],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily maximum temperature\"},\"tmin\":{\"type\":\"data\",\"unit\":\"degrees C\",\"attrs\":{\"units\":\"degrees C\",\"long_name\":\"daily minimum temperature\",\"cell_methods\":\"area: mean time: minimum\",\"grid_mapping\":\"lambert_conformal_conic\"},\"shape\":[14965,8075,7814],\"chunks\":[365,284,584],\"dimensions\":[\"time\",\"y\",\"x\"],\"description\":\"daily minimum temperature\"},\"yearday\":{\"type\":\"data\",\"attrs\":{\"long_name\":\"day of year (DOY) starting with day 1 on January 1st\"},\"shape\":[14965],\"chunks\":[365],\"dimensions\":[\"time\"],\"description\":\"day of year (DOY) starting with day 1 on January 1st\"},\"time_bnds\":{\"type\":\"data\",\"attrs\":{},\"shape\":[14965,2],\"chunks\":[365,2],\"dimensions\":[\"time\",\"nv\"]},\"lambert_conformal_conic\":{\"type\":\"data\",\"attrs\":{\"false_easting\":0.0,\"false_northing\":0.0,\"semi_major_axis\":6378137.0,\"grid_mapping_name\":\"lambert_conformal_conic\",\"standard_parallel\":[25.0,60.0],\"inverse_flattening\":298.257223563,\"latitude_of_projection_origin\":42.5,\"longitude_of_central_meridian\":-100.0},\"shape\":[],\"dimensions\":[]}},\"msft:container\":\"daymet-zarr\",\"cube:dimensions\":{\"x\":{\"axis\":\"x\",\"step\":1000.0,\"type\":\"spatial\",\"extent\":[-4560250.0,3252750.0],\"description\":\"x coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"y\":{\"axis\":\"y\",\"step\":-1000.0,\"type\":\"spatial\",\"extent\":[-3090000.0,4984000.0],\"description\":\"y coordinate of projection\",\"reference_system\":{\"name\":\"undefined\",\"type\":\"ProjectedCRS\",\"$schema\":\"https://proj.org/schemas/v0.4/projjson.schema.json\",\"base_crs\":{\"name\":\"undefined\",\"datum\":{\"name\":\"undefined\",\"type\":\"GeodeticReferenceFrame\",\"ellipsoid\":{\"name\":\"undefined\",\"semi_major_axis\":6378137,\"inverse_flattening\":298.257223563}},\"coordinate_system\":{\"axis\":[{\"name\":\"Longitude\",\"unit\":\"degree\",\"direction\":\"east\",\"abbreviation\":\"lon\"},{\"name\":\"Latitude\",\"unit\":\"degree\",\"direction\":\"north\",\"abbreviation\":\"lat\"}],\"subtype\":\"ellipsoidal\"}},\"conversion\":{\"name\":\"unknown\",\"method\":{\"id\":{\"code\":9802,\"authority\":\"EPSG\"},\"name\":\"Lambert Conic Conformal (2SP)\"},\"parameters\":[{\"id\":{\"code\":8823,\"authority\":\"EPSG\"},\"name\":\"Latitude of 1st standard parallel\",\"unit\":\"degree\",\"value\":25},{\"id\":{\"code\":8824,\"authority\":\"EPSG\"},\"name\":\"Latitude of 2nd standard parallel\",\"unit\":\"degree\",\"value\":60},{\"id\":{\"code\":8821,\"authority\":\"EPSG\"},\"name\":\"Latitude of false origin\",\"unit\":\"degree\",\"value\":42.5},{\"id\":{\"code\":8822,\"authority\":\"EPSG\"},\"name\":\"Longitude of false origin\",\"unit\":\"degree\",\"value\":-100},{\"id\":{\"code\":8826,\"authority\":\"EPSG\"},\"name\":\"Easting at false origin\",\"unit\":\"metre\",\"value\":0},{\"id\":{\"code\":8827,\"authority\":\"EPSG\"},\"name\":\"Northing at false origin\",\"unit\":\"metre\",\"value\":0}]},\"coordinate_system\":{\"axis\":[{\"name\":\"Easting\",\"unit\":\"metre\",\"direction\":\"east\",\"abbreviation\":\"E\"},{\"name\":\"Northing\",\"unit\":\"metre\",\"direction\":\"north\",\"abbreviation\":\"N\"}],\"subtype\":\"Cartesian\"}}},\"nv\":{\"type\":\"count\",\"values\":[0,1],\"description\":\"Size of the 'time_bnds' variable.\"},\"time\":{\"type\":\"temporal\",\"extent\":[\"1980-01-01T12:00:00Z\",\"2020-12-30T12:00:00Z\"],\"description\":\"24-hour day based on local time\"}},\"msft:group_keys\":[\"daily\",\"north america\"],\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/datacube/v2.0.0/schema.json\"],\"msft:storage_account\":\"daymeteuwest\",\"msft:short_description\":\"Daily surface weather data on a 1-km grid for North America\",\"msft:region\":\"westeurope\"},{\"id\":\"nrcan-landcover\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover\"},{\"rel\":\"license\",\"href\":\"https://open.canada.ca/en/open-government-licence-canada\",\"title\":\"Open Government Licence - Canada\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/nrcan-landcover\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Land Cover of Canada\",\"assets\":{\"metadata\":{\"href\":\"https://open.canada.ca/data/en/dataset/4e615eae-b90c-420b-adee-2ca35896caf6.jsonld\",\"type\":\"application/json\",\"roles\":[\"metadata\"],\"title\":\"Land cover of Canada metadata\"},\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/nrcan-landcover.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Land cover of Canada thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/nrcan-landcover.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-141.003,41.6755,-52.6174,83.1139]]},\"temporal\":{\"interval\":[[\"2015-01-01T00:00:00Z\",\"2020-01-01T00:00:00Z\"]]}},\"license\":\"OGL-Canada-2.0\",\"keywords\":[\"Land Cover\",\"Remote Sensing\",\"Landsat\",\"North America\",\"Canada\"],\"providers\":[{\"url\":\"https://www.nrcan.gc.ca/maps-tools-publications/satellite-imagery-air-photos/application-development/land-cover/21755\",\"name\":\"Natural Resources Canada | Ressources naturelles Canada\",\"roles\":[\"licensor\",\"processor\",\"producer\"]},{\"url\":\"https://sparkgeo.com\",\"name\":\"Sparkgeo\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"proj:epsg\":[3978],\"label:type\":[\"raster\"],\"label:tasks\":[\"classification\"],\"label:classes\":[{\"name\":\"\",\"classes\":[\"Temperate or sub-polar needleleaf forest\",\"Sub-polar taiga needleleaf forest\",\"Temperate or sub-polar broadleaf deciduous forest\",\"Mixed forest\",\"Temperate or sub-polar shrubland\",\"Temperate or sub-polar grassland\",\"Sub-polar or polar shrubland-lichen-moss\",\"Sub-polar or polar grassland-lichen-moss\",\"Sub-polar or polar barren-lichen-moss\",\"Wetland\",\"Cropland\",\"Barren lands\",\"Urban\",\"Water\",\"Snow and Ice\"]}]},\"description\":\"Collection of Land Cover products for Canada as produced by Natural Resources Canada using Landsat satellite imagery. This collection of cartographic products offers classified Land Cover of Canada at a 30 metre scale, updated on a 5 year basis.\",\"item_assets\":{\"metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"],\"title\":\"Land cover of Canada metadata\"},\"landcover\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\",\"labels\",\"labels-raster\"],\"title\":\"Land cover of Canada COG\",\"proj:epsg\":3978,\"file:values\":[{\"values\":[1],\"summary\":\"Temperate or sub-polar needleleaf forest\"},{\"values\":[2],\"summary\":\"Sub-polar taiga needleleaf forest\"},{\"values\":[5],\"summary\":\"Temperate or sub-polar broadleaf deciduous forest\"},{\"values\":[6],\"summary\":\"Mixed forest\"},{\"values\":[8],\"summary\":\"Temperate or sub-polar shrubland\"},{\"values\":[10],\"summary\":\"Temperate or sub-polar grassland\"},{\"values\":[11],\"summary\":\"Sub-polar or polar shrubland-lichen-moss\"},{\"values\":[12],\"summary\":\"Sub-polar or polar grassland-lichen-moss\"},{\"values\":[13],\"summary\":\"Sub-polar or polar barren-lichen-moss\"},{\"values\":[14],\"summary\":\"Wetland\"},{\"values\":[15],\"summary\":\"Cropland\"},{\"values\":[16],\"summary\":\"Barren lands\"},{\"values\":[17],\"summary\":\"Urban\"},{\"values\":[18],\"summary\":\"Water\"},{\"values\":[19],\"summary\":\"Snow and Ice\"}],\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}]}},\"stac_version\":\"1.0.0\",\"msft:container\":\"landcover\",\"stac_extensions\":[\"https://stac-extensions.github.io/label/v1.0.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"nrcanlandcovereuwest\",\"msft:short_description\":\"Collection of Land Cover products for Canada as produced by Natural Resources Canada using Landsat satellite imagery. This collection of cartographic products offers classified Land Cover of Canada at a 30 metre scale, updated on a 5 year basis.\",\"msft:region\":\"westeurope\"},{\"id\":\"modis-10A2-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD10A2.061\",\"title\":\"MODIS/Terra Snow Cover 8-Day L3 Global 500m SIN Grid, Version 61\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD10A2.061\",\"title\":\"MODIS/Aqua Snow Cover 8-Day L3 Global 500m SIN Grid, Version 61\"},{\"rel\":\"license\",\"href\":\"https://nsidc.org/data/data-programs/nsidc-daac/citing-nsidc-daac\",\"title\":\"Use and Copyright | National Snow and Ice Data Center\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-10A2-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Snow Cover 8-day\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-10A2-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Snow Cover 8-day thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-10A2-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-18T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Snow\",\"MOD10A2\",\"MYD10A2\"],\"providers\":[{\"url\":\"https://nsidc.org\",\"name\":\"National Snow and Ice Data Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"This global Level-3 (L3) data set provides the maximum snow cover extent observed over an eight-day period within 10degx10deg MODIS sinusoidal grid tiles. Tiles are generated by compositing 500 m observations from the 'MODIS Snow Cover Daily L3 Global 500m Grid' data set. A bit flag index is used to track the eight-day snow/no-snow chronology for each 500 m cell.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"Maximum_Snow_Extent\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Maximum snow extent over the 8-day period.\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}],\"classification:classes\":[{\"value\":0,\"description\":\"missing data\"},{\"value\":1,\"description\":\"no decision\"},{\"value\":11,\"description\":\"night\"},{\"value\":25,\"description\":\"no snow\"},{\"value\":37,\"description\":\"lake\"},{\"value\":39,\"description\":\"ocean\"},{\"value\":50,\"description\":\"cloud\"},{\"value\":100,\"description\":\"lake ice\"},{\"value\":200,\"description\":\"snow\"},{\"value\":254,\"description\":\"detector saturated\"}]},\"Eight_Day_Snow_Cover\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Snow chronology bit flags for each day in the eight-day observation period.\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD10A2.061\",\"citation\":\"Hall, D. K., & Riggs, G. A. (2021). MODIS/Terra Snow Cover 8-Day L3 Global 500m Grid, Version 61 [Data set]. NASA National Snow and Ice Data Center DAAC. https://doi.org/10.5067/MODIS/MOD10A2.061\"},{\"doi\":\"10.5067/MODIS/MYD10A2.061\",\"citation\":\"Hall, D. K., & Riggs, G. A. (2021). MODIS/Aqua Snow Cover 8-Day L3 Global 500m Grid, Version 61 [Data set]. NASA National Snow and Ice Data Center DAAC. https://doi.org/10.5067/MODIS/MYD10A2.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Snow Cover 8-day\",\"msft:region\":\"westeurope\"},{\"id\":\"ecmwf-forecast\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/licenses/by/4.0/\",\"type\":\"text/html\",\"title\":\"CC-BY-4.0 license\"},{\"rel\":\"documentation\",\"href\":\"https://confluence.ecmwf.int/display/UDOC/ECMWF+Open+Data+-+Real+Time\",\"type\":\"text/html\",\"title\":\"ECMWF Open Data (Real Time) documentation\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/ecmwf-forecast\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ECMWF Open Data (real-time)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/ecmwf-forecast-thumbnail-proj.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-180,90,180,-90]]},\"temporal\":{\"interval\":[[null,null]]}},\"license\":\"CC-BY-4.0\",\"keywords\":[\"ECMWF\",\"forecast\",\"weather\"],\"providers\":[{\"url\":\"https://www.ecmwf.int/\",\"name\":\"ECMWF\",\"roles\":[\"producer\"]}],\"summaries\":{\"ecmwf:types\":[\"ef\",\"ep\",\"fc\",\"tf\"],\"ecmwf:streams\":[\"enfo\",\"mmsf\",\"oper\",\"scda\",\"scwv\",\"waef\",\"wave\"],\"ecmwf:pressure_levels\":[1000,925,850,700,500,300,250,200,50],\"ecmwf:reference_times\":[\"00\",\"06\",\"12\",\"18\"]},\"description\":\"The [ECMWF catalog of real-time products](https://www.ecmwf.int/en/forecasts/datasets/catalogue-ecmwf-real-time-products) offers real-time meterological and oceanographic productions from the ECMWF forecast system. Users should consult the [ECMWF Forecast User Guide](https://confluence.ecmwf.int/display/FUG/1+Introduction) for detailed information on each of the products.\\n\\n## Overview of products\\n\\nThe following diagram shows the publishing schedule of the various products.\\n\\n\\n\\nThe vertical axis shows the various products, defined below, which are grouped by combinations of `stream`, `forecast type`, and `reference time`. The horizontal axis shows *forecast times* in 3-hour intervals out from the reference time. A black square over a particular forecast time, or step, indicates that a forecast is made for that forecast time, for that particular `stream`, `forecast type`, `reference time` combination.\\n\\n* **stream** is the forecasting system that produced the data. The values are available in the `ecmwf:stream` summary of the STAC collection. They are:\\n \ * `enfo`: [ensemble forecast](https://confluence.ecmwf.int/display/FUG/ENS+-+Ensemble+Forecasts), atmospheric fields\\n * `mmsf`: [multi-model seasonal forecasts](https://confluence.ecmwf.int/display/FUG/Long-Range+%28Seasonal%29+Forecast) fields from the ECMWF model only.\\n * `oper`: [high-resolution forecast](https://confluence.ecmwf.int/display/FUG/HRES+-+High-Resolution+Forecast), atmospheric fields \\n * `scda`: short cut-off high-resolution forecast, atmospheric fields (also known as \\\"high-frequency products\\\")\\n * `scwv`: short cut-off high-resolution forecast, ocean wave fields (also known as \\\"high-frequency products\\\") and\\n * `waef`: [ensemble forecast](https://confluence.ecmwf.int/display/FUG/ENS+-+Ensemble+Forecasts), ocean wave fields,\\n * `wave`: wave model\\n* **type** is the forecast type. The values are available in the `ecmwf:type` summary of the STAC collection. They are:\\n * `fc`: forecast\\n * `ef`: ensemble forecast\\n * `pf`: ensemble probabilities\\n * `tf`: trajectory forecast for tropical cyclone tracks\\n* **reference time** is the hours after midnight when the model was run. Each stream / type will produce assets for different forecast times (steps from the reference datetime) depending on the reference time.\\n\\nVisit the [ECMWF's User Guide](https://confluence.ecmwf.int/display/UDOC/ECMWF+Open+Data+-+Real+Time) for more details on each of the various products.\\n\\nAssets are available for the previous 30 days.\\n\\n## Asset overview\\n\\nThe data are provided as [GRIB2 files](https://confluence.ecmwf.int/display/CKB/What+are+GRIB+files+and+how+can+I+read+them).\\nAdditionally, [index files](https://confluence.ecmwf.int/display/UDOC/ECMWF+Open+Data+-+Real+Time#ECMWFOpenDataRealTime-IndexFilesIndexfiles) are provided, which can be used to read subsets of the data from Azure Blob Storage.\\n\\nWithin each `stream`, `forecast type`, `reference time`, the structure of the data are mostly consistent. Each GRIB2 file will have the\\nsame data variables, coordinates (aside from `time` as the *reference time* changes and `step` as the *forecast time* changes). The exception\\nis the `enfo-ep` and `waef-ep` products, which have more `step`s in the 240-hour forecast than in the 360-hour forecast. \\n\\nSee the example notebook for more on how to access the data.\\n\\n## STAC metadata\\n\\nThe Planetary Computer provides a single STAC item per GRIB2 file. Each GRIB2 file is global in extent, so every item has the same\\n`bbox` and `geometry`.\\n\\nA few custom properties are available on each STAC item, which can be used in searches to narrow down the data to items of interest:\\n\\n* `ecmwf:stream`: The forecasting system (see above for definitions). The full set of values is available in the Collection's summaries.\\n* `ecmwf:type`: The forecast type (see above for definitions). The full set of values is available in the Collection's summaries.\\n* `ecmwf:step`: The offset from the reference datetime, expressed as ``, for example `\\\"3h\\\"` means \\\"3 hours from the reference datetime\\\". \\n* `ecmwf:reference_datetime`: The datetime when the model was run. This indicates when the forecast *was made*, rather than when it's valid for.\\n* `ecmwf:forecast_datetime`: The datetime for which the forecast is valid. This is also set as the item's `datetime`.\\n\\nSee the example notebook for more on how to use the STAC metadata to query for particular data.\\n\\n## Attribution\\n\\nThe products listed and described on this page are available to the public and their use is governed by the [Creative Commons CC-4.0-BY license and the ECMWF Terms of Use](https://apps.ecmwf.int/datasets/licences/general/). This means that the data may be redistributed and used commercially, subject to appropriate attribution.\\n\\nThe following wording should be attached to the use of this ECMWF dataset: \\n\\n1. Copyright statement: Copyright \\\"\xA9 [year] European Centre for Medium-Range Weather Forecasts (ECMWF)\\\".\\n2. Source [www.ecmwf.int](http://www.ecmwf.int/)\\n3. License Statement: This data is published under a Creative Commons Attribution 4.0 International (CC BY 4.0). [https://creativecommons.org/licenses/by/4.0/](https://creativecommons.org/licenses/by/4.0/)\\n4. Disclaimer: ECMWF does not accept any liability whatsoever for any error or omission in the data, their availability, or for any loss or damage arising from their use.\\n5. Where applicable, an indication if the material has been modified and an indication of previous modifications.\\n\\nThe following wording shall be attached to services created with this ECMWF dataset:\\n\\n1. Copyright statement: Copyright \\\"This service is based on data and products of the European Centre for Medium-Range Weather Forecasts (ECMWF)\\\".\\n2. Source www.ecmwf.int\\n3. License Statement: This ECMWF data is published under a Creative Commons Attribution 4.0 International (CC BY 4.0). [https://creativecommons.org/licenses/by/4.0/](https://creativecommons.org/licenses/by/4.0/)\\n4. Disclaimer: ECMWF does not accept any liability whatsoever for any error or omission in the data, their availability, or for any loss or damage arising from their use.\\n5. Where applicable, an indication if the material has been modified and an indication of previous modifications\\n\\n## More information\\n\\nFor more, see the [ECMWF's User Guide](https://confluence.ecmwf.int/display/UDOC/ECMWF+Open+Data+-+Real+Time) and [example notebooks](https://github.com/ecmwf/notebook-examples/tree/master/opencharts).\",\"item_assets\":{\"data\":{\"type\":\"application/wmo-GRIB2\",\"roles\":[\"data\"],\"title\":\"GRIB2 data file\",\"description\":\"The forecast data, as a grib2 file. Subsets of the data can be loaded using information from the associated index file.\"},\"index\":{\"type\":\"application/x-ndjson\",\"roles\":[\"index\"],\"title\":\"Index file\",\"description\":\"The index file contains information on each message within the GRIB2 file.\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:container\":\"ecmwf\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"ECMWF Open Data (Real Time) forecasts\"},{\"id\":\"noaa-mrms-qpe-24h-pass2\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2\"},{\"rel\":\"license\",\"href\":\"https://www.nssl.noaa.gov/projects/mrms/nmq_data_policy_OGCrevised.pdf\",\"type\":\"application/pdf\",\"title\":\"MRMS Dataset Sharing Policy\"},{\"rel\":\"about\",\"href\":\"https://mrms.nssl.noaa.gov\",\"type\":\"text/html\",\"title\":\"MRMS Homepage\"},{\"rel\":\"about\",\"href\":\"https://vlab.noaa.gov/web/wdtd/-/multi-sensor-qpe-1?selectedFolder=9234881\",\"type\":\"text/html\",\"title\":\"MRMS QPE Technical Product Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-mrms-qpe-24h-pass2\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"NOAA MRMS QPE 24-Hour Pass 2\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-mrms-qpe-24h-pass2-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"NOAA MRMS QPE 24-Hour Pass 2 Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-mrms-qpe-24h-pass2.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"QS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-176.0,9.0,150.0,72.0],[-130.0,20.0,-60.0,55.0],[-164.0,15.0,-151.0,26.0],[140.0,9.0,150.0,18.0],[-176.0,50.0,-126.0,72.0],[-90.0,10.0,-60.0,25.0]]},\"temporal\":{\"interval\":[[\"2022-07-21T20:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NOAA\",\"MRMS\",\"QPE\",\"Precipitation\",\"Weather\",\"United States\",\"Guam\",\"Caribbean\"],\"providers\":[{\"url\":\"https://www.nssl.noaa.gov/projects/mrms\",\"name\":\"NOAA National Severe Storms Laboratory\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"noaa_mrms_qpe:pass\":[2],\"noaa_mrms_qpe:period\":[24],\"noaa_mrms_qpe:region\":[\"CONUS\",\"HAWAII\",\"GUAM\",\"ALASKA\",\"CARIB\"]},\"description\":\"The [Multi-Radar Multi-Sensor (MRMS) Quantitative Precipitation Estimation (QPE)](https://www.nssl.noaa.gov/projects/mrms/) products are seamless 1-km mosaics of precipitation accumulation covering the continental United States, Alaska, Hawaii, the Caribbean, and Guam. The products are automatically generated through integration of data from multiple radars and radar networks, surface and satellite observations, numerical weather prediction (NWP) models, and climatology. The products are updated hourly at the top of the hour.\\n\\nMRMS QPE is available as a \\\"Pass 1\\\" or \\\"Pass 2\\\" product. The Pass 1 product is available with a 60-minute latency and includes 60-65% of gauges. The Pass 2 product has a higher latency of 120 minutes, but includes 99% of gauges. The Pass 1 and Pass 2 products are broken into 1-, 3-, 6-, 12-, 24-, 48-, and 72-hour accumulation sub-products.\\n\\nThis Collection contains the **24-Hour Pass 2** sub-product, i.e., 24-hour cumulative precipitation accumulation with a 2-hour latency. The data are available in [Cloud Optimized GeoTIFF](https://www.cogeo.org/) format as well as the original source GRIB2 format files. The GRIB2 files are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\",\"item_assets\":{\"cog\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Processed Cloud Optimized GeoTIFF file\",\"raster:bands\":[{\"unit\":\"mm\",\"data_type\":\"float64\",\"spatial_resolution\":1000}]},\"grib2\":{\"type\":\"application/wmo-GRIB2\",\"roles\":[\"data\"],\"title\":\"Original GRIB2 file\",\"raster:bands\":[{\"unit\":\"mm\",\"data_type\":\"float64\",\"spatial_resolution\":1000}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-mrms-qpe\",\"msft:container\":\"mrms-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/noaa-mrms-qpe/v1.0.0/schema.json\"],\"msft:storage_account\":\"mrms\",\"msft:short_description\":\"Integrated multi-sensor cumulative precipitation estimate for the past 24 hours with a 2-hour latency.\",\"msft:region\":\"westeurope\"},{\"id\":\"nasadem\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"Public Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/nasadem\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"NASADEM HGT v001\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/nasadem.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"NASADEM\"},\"geoparquet-items\":{\"href\":\"abfs://items/nasadem.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-179.000139,-56.000139,179.000139,61.000139]]},\"temporal\":{\"interval\":[[\"2000-02-20T00:00:00Z\",\"2000-02-20T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"JPL\",\"Elevation\",\"DEM\",\"USGS\",\"NGA\",\"SRTM\"],\"providers\":[{\"url\":\"https://earthdata.nasa.gov/esds/competitive-programs/measures/nasadem\",\"name\":\"NASA\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://trs.jpl.nasa.gov/handle/2014/46123\",\"name\":\"JPL\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://lpdaac.usgs.gov/products/nasadem_hgtv001/\",\"name\":\"USGS\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://doi.org/10.5069/G93T9FD9\",\"name\":\"OpenTopography\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[30]},\"description\":\"[NASADEM](https://earthdata.nasa.gov/esds/competitive-programs/measures/nasadem) provides global topographic data at 1 arc-second (~30m) horizontal resolution, derived primarily from data captured via the [Shuttle Radar Topography Mission](https://www2.jpl.nasa.gov/srtm/) (SRTM).\\n\\n\",\"item_assets\":{\"elevation\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Elevation\"}},\"stac_version\":\"1.0.0\",\"msft:container\":\"nasadem-cog\",\"stac_extensions\":[\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"nasademeuwest\",\"msft:short_description\":\"Global topographic data at 1 arc-second (~30m) horizontal resolution, derived primarily from data captured via the Shuttle Radar Topography Mission\",\"msft:region\":\"westeurope\"},{\"id\":\"io-lulc\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc\"},{\"rel\":\"related\",\"href\":\"https://livingatlas.arcgis.com/landcover/\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/licenses/by/4.0/\",\"type\":\"text/html\",\"title\":\"CC BY 4.0\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/io-lulc\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Esri 10-Meter Land Cover (10-class)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/io-lulc.png\",\"title\":\"Esri 10-Meter Land Cover\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/io-lulc.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2017-01-01T00:00:00Z\",\"2021-01-01T00:00:00Z\"]]}},\"license\":\"CC-BY-4.0\",\"keywords\":[\"Global\",\"Land Cover\",\"Land Use\",\"Sentinel\"],\"providers\":[{\"url\":\"https://www.esri.com/\",\"name\":\"Esri\",\"roles\":[\"licensor\"]},{\"url\":\"https://www.impactobservatory.com/\",\"name\":\"Impact Observatory\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"raster:bands\":[{\"nodata\":0,\"spatial_resolution\":10}],\"label:classes\":[{\"name\":\"\",\"classes\":[\"nodata\",\"water\",\"trees\",\"grass\",\"flooded veg\",\"crops\",\"scrub\",\"built area\",\"bare\",\"snow/ice\",\"clouds\"]}]},\"description\":\"__Note__: _A new version of this item is available for your use. This mature version of the map remains available for use in existing applications. This item will be retired in December 2024. There is 2020 data available in the newer [9-class dataset](https://planetarycomputer.microsoft.com/dataset/io-lulc-9-class)._\\n\\nGlobal estimates of 10-class land use/land cover (LULC) for 2020, derived from ESA Sentinel-2 imagery at 10m resolution. This dataset was generated by [Impact Observatory](http://impactobservatory.com/), who used billions of human-labeled pixels (curated by the National Geographic Society) to train a deep learning model for land classification. The global map was produced by applying this model to the relevant yearly Sentinel-2 scenes on the Planetary Computer.\\n\\nThis dataset is also available on the [ArcGIS Living Atlas of the World](https://livingatlas.arcgis.com/landcover/).\\n\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Global land cover data\",\"file:values\":[{\"values\":[0],\"summary\":\"No Data\"},{\"values\":[1],\"summary\":\"Water\"},{\"values\":[2],\"summary\":\"Trees\"},{\"values\":[3],\"summary\":\"Grass\"},{\"values\":[4],\"summary\":\"Flooded vegetation\"},{\"values\":[5],\"summary\":\"Crops\"},{\"values\":[6],\"summary\":\"Scrub/shrub\"},{\"values\":[7],\"summary\":\"Built area\"},{\"values\":[8],\"summary\":\"Bare ground\"},{\"values\":[9],\"summary\":\"Snow/ice\"},{\"values\":[10],\"summary\":\"Clouds\"}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"io-land-cover\",\"msft:container\":\"io-lulc\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/label/v1.0.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Global land cover information for 2020 at 10m resolution\",\"msft:region\":\"westeurope\"},{\"id\":\"landsat-c2-l1\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9AF14YV\",\"title\":\"Landsat 1-5 MSS Collection 2 Level-1\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/core-science-systems/hdds/data-policy\",\"title\":\"Public Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/landsat-c2-l1\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Landsat Collection 2 Level-1\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/landsat-c2-l1-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Landsat Collection 2 Level-1 thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/landsat-c2-l1.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-90.0,180.0,90.0]]},\"temporal\":{\"interval\":[[\"1972-07-25T00:00:00Z\",\"2013-01-07T23:23:59Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Landsat\",\"USGS\",\"NASA\",\"Satellite\",\"Global\",\"Imagery\"],\"providers\":[{\"url\":\"https://landsat.gsfc.nasa.gov/\",\"name\":\"NASA\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://www.usgs.gov/landsat-missions/landsat-collection-2-level-1-data\",\"name\":\"USGS\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[79],\"sci:doi\":[\"10.5066/P9AF14YV\"],\"eo:bands\":[{\"name\":\"B4\",\"common_name\":\"green\",\"description\":\"Visible green (Landsat 1-3 Band B4)\",\"center_wavelength\":0.55,\"full_width_half_max\":0.1},{\"name\":\"B5\",\"common_name\":\"red\",\"description\":\"Visible red (Landsat 1-3 Band B5)\",\"center_wavelength\":0.65,\"full_width_half_max\":0.1},{\"name\":\"B6\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Landsat 1-3 Band B6)\",\"center_wavelength\":0.75,\"full_width_half_max\":0.1},{\"name\":\"B7\",\"common_name\":\"nir09\",\"description\":\"Near infrared (Landsat 1-3 Band B7)\",\"center_wavelength\":0.95,\"full_width_half_max\":0.3},{\"name\":\"B1\",\"common_name\":\"green\",\"description\":\"Visible green (Landsat 4-5 Band B1)\",\"center_wavelength\":0.55,\"full_width_half_max\":0.1},{\"name\":\"B2\",\"common_name\":\"red\",\"description\":\"Visible red (Landsat 4-5 Band B2)\",\"center_wavelength\":0.65,\"full_width_half_max\":0.1},{\"name\":\"B3\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Landsat 4-5 Band B3)\",\"center_wavelength\":0.75,\"full_width_half_max\":0.1},{\"name\":\"B4\",\"common_name\":\"nir09\",\"description\":\"Near infrared (Landsat 4-5 Band B4)\",\"center_wavelength\":0.95,\"full_width_half_max\":0.3}],\"platform\":[\"landsat-1\",\"landsat-2\",\"landsat-3\",\"landsat-4\",\"landsat-5\"],\"instruments\":[\"mss\"],\"view:off_nadir\":[0]},\"description\":\"Landsat Collection 2 Level-1 data, consisting of quantized and calibrated scaled Digital Numbers (DN) representing the multispectral image data. These [Level-1](https://www.usgs.gov/landsat-missions/landsat-collection-2-level-1-data) data can be [rescaled](https://www.usgs.gov/landsat-missions/using-usgs-landsat-level-1-data-product) to top of atmosphere (TOA) reflectance and/or radiance. Thermal band data can be rescaled to TOA brightness temperature.\\n\\nThis dataset represents the global archive of Level-1 data from [Landsat Collection 2](https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-2) acquired by the [Multispectral Scanner System](https://landsat.gsfc.nasa.gov/multispectral-scanner-system/) onboard Landsat 1 through Landsat 5 from July 7, 1972 to January 7, 2013. Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\n\",\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Red Band\",\"eo:bands\":[{\"common_name\":\"red\",\"description\":\"Visible red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.1}],\"raster:bands\":[{\"unit\":\"watt/steradian/square_meter/micrometer\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":60}]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Green Band\",\"eo:bands\":[{\"common_name\":\"green\",\"description\":\"Visible green\",\"center_wavelength\":0.55,\"full_width_half_max\":0.1}],\"raster:bands\":[{\"unit\":\"watt/steradian/square_meter/micrometer\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":60}]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Near Infrared Band 0.8\",\"eo:bands\":[{\"common_name\":\"nir08\",\"description\":\"Near infrared\",\"center_wavelength\":0.75,\"full_width_half_max\":0.1}],\"raster:bands\":[{\"unit\":\"watt/steradian/square_meter/micrometer\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":60}]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Near Infrared Band 0.9\",\"eo:bands\":[{\"common_name\":\"nir09\",\"description\":\"Near infrared\",\"center_wavelength\":0.95,\"full_width_half_max\":0.3}],\"raster:bands\":[{\"unit\":\"watt/steradian/square_meter/micrometer\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":60}]},\"mtl.txt\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Product Metadata File (txt)\",\"description\":\"Collection 2 Level-1 Product Metadata File (txt)\"},\"mtl.xml\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product Metadata File (xml)\",\"description\":\"Collection 2 Level-1 Product Metadata File (xml)\"},\"mtl.json\":{\"type\":\"application/json\",\"roles\":[\"metadata\"],\"title\":\"Product Metadata File (json)\",\"description\":\"Collection 2 Level-1 Product Metadata File (json)\"},\"qa_pixel\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"cloud\"],\"title\":\"Pixel Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality Assessment Band (QA_PIXEL)\",\"raster:bands\":[{\"unit\":\"bit index\",\"nodata\":1,\"data_type\":\"uint16\",\"spatial_resolution\":60}],\"classification:bitfields\":[{\"name\":\"fill\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_fill\",\"value\":0,\"description\":\"Image data\"},{\"name\":\"fill\",\"value\":1,\"description\":\"Fill data\"}],\"description\":\"Image or fill data\"},{\"name\":\"cloud\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_cloud\",\"value\":0,\"description\":\"Cloud confidence is not high\"},{\"name\":\"cloud\",\"value\":1,\"description\":\"High confidence cloud\"}],\"description\":\"Cloud mask\"},{\"name\":\"cloud_confidence\",\"length\":2,\"offset\":8,\"classes\":[{\"name\":\"not_set\",\"value\":0,\"description\":\"No confidence level set\"},{\"name\":\"low\",\"value\":1,\"description\":\"Low confidence cloud\"},{\"name\":\"reserved\",\"value\":2,\"description\":\"Reserved - value not used\"},{\"name\":\"high\",\"value\":3,\"description\":\"High confidence cloud\"}],\"description\":\"Cloud confidence levels\"}]},\"qa_radsat\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"saturation\"],\"title\":\"Radiometric Saturation and Dropped Pixel Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation and Dropped Pixel Quality Assessment Band (QA_RADSAT)\",\"raster:bands\":[{\"unit\":\"bit index\",\"data_type\":\"uint16\",\"spatial_resolution\":60}],\"classification:bitfields\":[{\"name\":\"band1\",\"length\":1,\"offset\":0,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band 1 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 1 saturated\"}],\"description\":\"Band 1 radiometric saturation\"},{\"name\":\"band2\",\"length\":1,\"offset\":1,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band 2 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 2 saturated\"}],\"description\":\"Band 2 radiometric saturation\"},{\"name\":\"band3\",\"length\":1,\"offset\":2,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band 3 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 3 saturated\"}],\"description\":\"Band 3 radiometric saturation\"},{\"name\":\"band4\",\"length\":1,\"offset\":3,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band 4 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 4 saturated\"}],\"description\":\"Band 4 radiometric saturation\"},{\"name\":\"band5\",\"length\":1,\"offset\":4,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band 5 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 5 saturated\"}],\"description\":\"Band 5 radiometric saturation\"},{\"name\":\"band6\",\"length\":1,\"offset\":5,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band 6 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 6 saturated\"}],\"description\":\"Band 6 radiometric saturation\"},{\"name\":\"band7\",\"length\":1,\"offset\":6,\"classes\":[{\"name\":\"not_saturated\",\"value\":0,\"description\":\"Band 7 not saturated\"},{\"name\":\"saturated\",\"value\":1,\"description\":\"Band 7 saturated\"}],\"description\":\"Band 7 radiometric saturation\"},{\"name\":\"dropped\",\"length\":1,\"offset\":9,\"classes\":[{\"name\":\"not_dropped\",\"value\":0,\"description\":\"Detector has a value - pixel present\"},{\"name\":\"dropped\",\"value\":1,\"description\":\"Detector does not have a value - no data\"}],\"description\":\"Dropped pixel\"}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"landsat\",\"msft:container\":\"landsat-c2\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"landsateuwest\",\"msft:short_description\":\"Landsat Collection 2 Level-1 data from the Multispectral Scanner System (MSS) onboard Landsat 1 through Landsat 5.\",\"msft:region\":\"westeurope\"},{\"id\":\"drcog-lulc\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc\"},{\"rel\":\"license\",\"href\":\"https://drcog.org/legal-terms\",\"type\":\"text/html\",\"title\":\"DRCOG Legal Terms\"},{\"rel\":\"describedby\",\"href\":\"https://gis.drcog.org/rdc/supplemental/lulc_pilot_report.zip\",\"type\":\"application/zip\",\"title\":\"Supplemental Information\"},{\"rel\":\"original\",\"href\":\"https://landcoverarchive.s3.amazonaws.com/2018/lulc_pilot_raster_2018.zip\",\"type\":\"application/zip\",\"title\":\"Land_Cover_Raster_Data_2018\"},{\"rel\":\"original\",\"href\":\"https://landcoverarchive.s3.amazonaws.com/2020/DRCOG_2020_Landcover.zip\",\"type\":\"application/zip\",\"title\":\"Land_Cover_Raster_Data_2020\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/drcog-lulc\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Denver Regional Council of Governments Land Use Land Cover\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/drcog-lulc.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"DRCOG LULC\"},\"geoparquet-items\":{\"href\":\"abfs://items/drcog-lulc.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-105.93962510864995,39.10438697007073,-103.66801443832743,40.320593119647256],[-105.54671456161505,39.54013841830152,-104.46335720577567,39.94430501943824]]},\"temporal\":{\"interval\":[[\"2018-01-01T00:00:00Z\",\"2020-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Land Cover\",\"Land Use\",\"NAIP\",\"USDA\"],\"providers\":[{\"url\":\"https://drcog.org/services-and-resources/data-maps-and-modeling/regional-land-use-land-cover-project\",\"name\":\"Denver Regional Council of Governments\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"mission\":[\"2018 DRCOG LULC pilot study covering 1,000 square miles\",\"2020 DRCOG LULC study covering 6,000 square miles\"]},\"description\":\"The [Denver Regional Council of Governments (DRCOG) Land Use/Land Cover (LULC)](https://drcog.org/services-and-resources/data-maps-and-modeling/regional-land-use-land-cover-project) datasets are developed in partnership with the [Babbit Center for Land and Water Policy](https://www.lincolninst.edu/our-work/babbitt-center-land-water-policy) and the [Chesapeake Conservancy](https://www.chesapeakeconservancy.org/)'s Conservation Innovation Center (CIC). DRCOG LULC includes 2018 data at 3.28ft (1m) resolution covering 1,000 square miles and 2020 data at 1ft resolution covering 6,000 square miles of the Denver, Colorado region. The classification data is derived from the USDA's 1m National Agricultural Imagery Program (NAIP) aerial imagery and leaf-off aerial ortho-imagery captured as part of the [Denver Regional Aerial Photography Project](https://drcog.org/services-and-resources/data-maps-and-modeling/denver-regional-aerial-photography-project) (6in resolution everywhere except the mountainous regions to the west, which are 1ft resolution).\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"DRCOG LULC\",\"description\":\"Denver Regional Council of Governments (DRCOG) Land Use Land Cover (LULC) Classifications\",\"raster:bands\":[{\"unit\":\"usft\",\"sampling\":\"area\",\"data_type\":\"uint8\",\"description\":\"Classification values\"}],\"classification:classes\":[{\"value\":1,\"color_hint\":\"FF0000\",\"description\":\"Structures\"},{\"value\":2,\"color_hint\":\"B2B2B2\",\"description\":\"Impervious Surfaces\"},{\"value\":3,\"color_hint\":\"00A9E6\",\"description\":\"Water\"},{\"value\":4,\"color_hint\":\"C7D79E\",\"description\":\"Prairie/Grassland/Natural Ground Cover\"},{\"value\":5,\"color_hint\":\"267300\",\"description\":\"Tree Canopy\"},{\"value\":6,\"color_hint\":\"70A800\",\"description\":\"Turf/Irrigated Land\"},{\"value\":7,\"color_hint\":\"FFEBAF\",\"description\":\"Barren Land\"},{\"value\":8,\"color_hint\":\"FFAE42\",\"description\":\"Cropland\"}]}},\"stac_version\":\"1.0.0\",\"msft:container\":\"drcog-lulc\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.1.0/schema.json\"],\"msft:storage_account\":\"landcoverdata\",\"msft:short_description\":\"2018 and 2020 Land Use/Land Cover classification of the Denver, Colorado region.\",\"msft:region\":\"westeurope\"},{\"id\":\"chesapeake-lc-7\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7\"},{\"rel\":\"describedby\",\"href\":\"https://www.chesapeakeconservancy.org/wp-content/uploads/2020/06/Chesapeake_Conservancy_LandCover101Guide_June2020.pdf\",\"type\":\"application/pdf\",\"title\":\"User Guide\"},{\"rel\":\"license\",\"href\":\"https://www.chesapeakeconservancy.org/conservation-innovation-center/precision-conservation/chesapeake-bay-program/\",\"type\":\"text/html\",\"title\":\"Data Availability Description\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/chesapeake-lc-7\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Chesapeake Land Cover (7-class)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/chesapeake-lc-7-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Chesapeake Land Cover (7-class) Thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-81.14658496196135,36.21291717905733,-73.27357561029186,44.77821441524524]]},\"temporal\":{\"interval\":[[\"2013-01-01T00:00:00Z\",\"2014-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Land Cover\",\"Chesapeake Bay Watershed\",\"Chesapeake Conservancy\"],\"providers\":[{\"url\":\"https://www.chesapeakeconservancy.org/conservation-innovation-center/high-resolution-data/land-cover-data-project/\",\"name\":\"Chesapeake Conservancy Conservation Innovation Center\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"description\":\"A high-resolution 1-meter [land cover data product](https://www.chesapeakeconservancy.org/conservation-innovation-center/high-resolution-data/land-cover-data-project/) in raster format for the entire Chesapeake Bay watershed based on 2013-2014 imagery from the National Agriculture Imagery Program (NAIP). The product area encompasses over 250,000 square kilometers in New York, Pennsylvania, Maryland, Delaware, West Virginia, Virginia, and the District of Columbia. The dataset was created by the [Chesapeake Conservancy](https://www.chesapeakeconservancy.org/) [Conservation Innovation Center](https://www.chesapeakeconservancy.org/conservation-innovation-center/) for the [Chesapeake Bay Program](https://www.chesapeakebay.net/), which is a regional partnership of EPA, other federal, state, and local agencies and governments, nonprofits, and academic institutions, that leads and directs Chesapeake Bay restoration efforts. \\n\\nThe dataset is composed of a uniform set of 7 land cover classes. Additional information is available in a [User Guide](https://www.chesapeakeconservancy.org/wp-content/uploads/2020/06/Chesapeake_Conservancy_LandCover101Guide_June2020.pdf). Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Land Cover Classes\",\"raster:bands\":[{\"nodata\":15,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":1}],\"classification:classes\":[{\"value\":1,\"color-hint\":\"00C5FF\",\"description\":\"Water\"},{\"value\":2,\"color-hint\":\"267300\",\"description\":\"Tree Canopy and Shrubs\"},{\"value\":3,\"color-hint\":\"A3FF73\",\"description\":\"Low Vegetation\"},{\"value\":4,\"color-hint\":\"FFAA00\",\"description\":\"Barren\"},{\"value\":5,\"color-hint\":\"9C9C9C\",\"description\":\"Impervious Surfaces\"},{\"value\":6,\"color-hint\":\"000000\",\"description\":\"Impervious Roads\"},{\"value\":7,\"color-hint\":\"C500FF\",\"description\":\"Aberdeen Proving Ground\"}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"chesapeake-lulc\",\"msft:container\":\"chesapeake\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\"],\"msft:storage_account\":\"landcoverdata\",\"msft:short_description\":\"Chesapeake Bay Watershed land cover product with 7 classes at 1m resolution.\",\"msft:region\":\"westeurope\"},{\"id\":\"chesapeake-lc-13\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13\"},{\"rel\":\"describedby\",\"href\":\"https://www.chesapeakeconservancy.org/wp-content/uploads/2020/06/Chesapeake_Conservancy_LandCover101Guide_June2020.pdf\",\"type\":\"application/pdf\",\"title\":\"User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://www.chesapeakeconservancy.org/wp-content/uploads/2020/03/LC_Class_Descriptions.pdf\",\"type\":\"application/pdf\",\"title\":\"Class Descriptions\"},{\"rel\":\"license\",\"href\":\"https://www.chesapeakeconservancy.org/conservation-innovation-center/precision-conservation/chesapeake-bay-program/\",\"type\":\"text/html\",\"title\":\"Data Availability Description\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/chesapeake-lc-13\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Chesapeake Land Cover (13-class)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/chesapeake-lc-13-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Chesapeake Land Cover (13-class) Thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-81.14658496196135,36.21291717905733,-73.27357561029186,44.77821441524524]]},\"temporal\":{\"interval\":[[\"2013-01-01T00:00:00Z\",\"2014-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Land Cover\",\"Chesapeake Bay Watershed\",\"Chesapeake Conservancy\"],\"providers\":[{\"url\":\"https://www.chesapeakeconservancy.org/conservation-innovation-center/high-resolution-data/land-cover-data-project/\",\"name\":\"Chesapeake Conservancy Conservation Innovation Center\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"description\":\"A high-resolution 1-meter [land cover data product](https://www.chesapeakeconservancy.org/conservation-innovation-center/high-resolution-data/land-cover-data-project/) in raster format for the entire Chesapeake Bay watershed based on 2013-2014 imagery from the National Agriculture Imagery Program (NAIP). The product area encompasses over 250,000 square kilometers in New York, Pennsylvania, Maryland, Delaware, West Virginia, Virginia, and the District of Columbia. The dataset was created by the [Chesapeake Conservancy](https://www.chesapeakeconservancy.org/) [Conservation Innovation Center](https://www.chesapeakeconservancy.org/conservation-innovation-center/) for the [Chesapeake Bay Program](https://www.chesapeakebay.net/), which is a regional partnership of EPA, other federal, state, and local agencies and governments, nonprofits, and academic institutions, that leads and directs Chesapeake Bay restoration efforts. \\n\\nThe dataset is composed of 13 land cover classes, although not all classes are used in all areas. Additional information is available in a [User Guide](https://www.chesapeakeconservancy.org/wp-content/uploads/2020/06/Chesapeake_Conservancy_LandCover101Guide_June2020.pdf) and [Class Description](https://www.chesapeakeconservancy.org/wp-content/uploads/2020/03/LC_Class_Descriptions.pdf) document. Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Land Cover Classes\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":1}],\"classification:classes\":[{\"value\":1,\"color-hint\":\"00C5FF\",\"description\":\"Water\"},{\"value\":2,\"color-hint\":\"00A884\",\"description\":\"Emergent Wetlands\"},{\"value\":3,\"color-hint\":\"267300\",\"description\":\"Tree Canopy\"},{\"value\":4,\"color-hint\":\"4CE600\",\"description\":\"Shrubland\"},{\"value\":5,\"color-hint\":\"A3FF73\",\"description\":\"Low Vegetation\"},{\"value\":6,\"color-hint\":\"FFAA00\",\"description\":\"Barren\"},{\"value\":7,\"color-hint\":\"FF0000\",\"description\":\"Structures\"},{\"value\":8,\"color-hint\":\"9C9C9C\",\"description\":\"Impervious Surfaces\"},{\"value\":9,\"color-hint\":\"000000\",\"description\":\"Impervious Roads\"},{\"value\":10,\"color-hint\":\"737300\",\"description\":\"Tree Canopy over Structures\"},{\"value\":11,\"color-hint\":\"E6E600\",\"description\":\"Tree Canopy over Impervious Surfaces\"},{\"value\":12,\"color-hint\":\"FFFF73\",\"description\":\"Tree Canopy over impervious Roads\"},{\"value\":13,\"color-hint\":\"C500FF\",\"description\":\"Aberdeen Proving Ground\"}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"chesapeake-lulc\",\"msft:container\":\"chesapeake\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\"],\"msft:storage_account\":\"landcoverdata\",\"msft:short_description\":\"Chesapeake Bay Watershed land cover product with 13 classes at 1m resolution.\",\"msft:region\":\"westeurope\"},{\"id\":\"chesapeake-lu\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu\"},{\"rel\":\"describedby\",\"href\":\"https://www.chesapeakeconservancy.org/wp-content/uploads/2018/11/2013-Phase-6-Mapped-Land-Use-Definitions-Updated-PC-11302018.pdf\",\"type\":\"application/pdf\",\"title\":\"Class Descriptions\"},{\"rel\":\"license\",\"href\":\"https://www.chesapeakeconservancy.org/conservation-innovation-center/precision-conservation/chesapeake-bay-program/\",\"type\":\"text/html\",\"title\":\"Data Availability Description\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/chesapeake-lu\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Chesapeake Land Use\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/chesapeake-lu-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Chesapeake Land Use Thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-81.14648244566828,36.18730972451623,-73.11082086653798,44.7781991560751]]},\"temporal\":{\"interval\":[[\"2013-01-01T00:00:00Z\",\"2014-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Land Use\",\"Chesapeake Bay Watershed\",\"Chesapeake Conservancy\"],\"providers\":[{\"url\":\"https://www.chesapeakeconservancy.org/conservation-innovation-center/high-resolution-data/land-use-data-project/\",\"name\":\"Chesapeake Conservancy Conservation Innovation Center\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"description\":\"A high-resolution 1-meter [land use data product](https://www.chesapeakeconservancy.org/conservation-innovation-center/high-resolution-data/land-use-data-project/) in raster format for the entire Chesapeake Bay watershed. The dataset was created by modifying the 2013-2014 high-resolution [land cover dataset](https://www.chesapeakeconservancy.org/conservation-innovation-center/high-resolution-data/land-cover-data-project/) using 13 ancillary datasets including data on zoning, land use, parcel boundaries, landfills, floodplains, and wetlands. The product area encompasses over 250,000 square kilometers in New York, Pennsylvania, Maryland, Delaware, West Virginia, Virginia, and the District of Columbia. The dataset was created by the [Chesapeake Conservancy](https://www.chesapeakeconservancy.org/) [Conservation Innovation Center](https://www.chesapeakeconservancy.org/conservation-innovation-center/) for the [Chesapeake Bay Program](https://www.chesapeakebay.net/), which is a regional partnership of EPA, other federal, state, and local agencies and governments, nonprofits, and academic institutions that leads and directs Chesapeake Bay restoration efforts.\\n\\nThe dataset is composed of 17 land use classes in Virginia and 16 classes in all other jurisdictions. Additional information is available in a land use [Class Description](https://www.chesapeakeconservancy.org/wp-content/uploads/2018/11/2013-Phase-6-Mapped-Land-Use-Definitions-Updated-PC-11302018.pdf) document. Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Land Use Classes\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":1}],\"classification:classes\":[{\"value\":1,\"color-hint\":\"000000\",\"description\":\"Impervious Roads\"},{\"value\":2,\"color-hint\":\"730000\",\"description\":\"Impervious Non-Roads\"},{\"value\":3,\"color-hint\":\"55FF00\",\"description\":\"Tree Canopy over Impervious Surfaces\"},{\"value\":4,\"color-hint\":\"0070FF\",\"description\":\"Water\"},{\"value\":5,\"color-hint\":\"00FFC5\",\"description\":\"Tidal Wetlands\"},{\"value\":6,\"color-hint\":\"00E6A9\",\"description\":\"Floodplain Wetlands\"},{\"value\":7,\"color-hint\":\"00E6A9\",\"description\":\"Other Wetlands\"},{\"value\":8,\"color-hint\":\"267300\",\"description\":\"Forest\"},{\"value\":9,\"color-hint\":\"AAFF00\",\"description\":\"Tree Canopy over Turf Grass\"},{\"value\":10,\"color-hint\":\"A87000\",\"description\":\"Mixed Open\"},{\"value\":11,\"color-hint\":\"FFBEE8\",\"description\":\"Fractional Turf (small)\"},{\"value\":12,\"color-hint\":\"FFBEE8\",\"description\":\"Fractional Turf (medium)\"},{\"value\":13,\"color-hint\":\"FFBEE8\",\"description\":\"Fractional Turf (large)\"},{\"value\":14,\"color-hint\":\"C500FF\",\"description\":\"Fractional Impervious\"},{\"value\":15,\"color-hint\":\"FFFF73\",\"description\":\"Turf Grass\"},{\"value\":16,\"color-hint\":\"E69800\",\"description\":\"Cropland\"},{\"value\":17,\"color-hint\":\"E69800\",\"description\":\"Pasture/Hay\"}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"chesapeake-lulc\",\"msft:container\":\"chesapeake\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\"],\"msft:storage_account\":\"landcoverdata\",\"msft:short_description\":\"Chesapeake Bay Watershed land use product with 17 classes at 1m resolution.\",\"msft:region\":\"westeurope\"},{\"id\":\"noaa-mrms-qpe-1h-pass1\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1\"},{\"rel\":\"license\",\"href\":\"https://www.nssl.noaa.gov/projects/mrms/nmq_data_policy_OGCrevised.pdf\",\"type\":\"application/pdf\",\"title\":\"MRMS Dataset Sharing Policy\"},{\"rel\":\"about\",\"href\":\"https://mrms.nssl.noaa.gov\",\"type\":\"text/html\",\"title\":\"MRMS Homepage\"},{\"rel\":\"about\",\"href\":\"https://vlab.noaa.gov/web/wdtd/-/multi-sensor-qpe-1?selectedFolder=9234881\",\"type\":\"text/html\",\"title\":\"MRMS QPE Technical Product Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-mrms-qpe-1h-pass1\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"NOAA MRMS QPE 1-Hour Pass 1\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-mrms-qpe-1h-pass1-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"NOAA MRMS QPE 1-Hour Pass 1 Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-mrms-qpe-1h-pass1.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"QS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-176.0,9.0,150.0,72.0],[-130.0,20.0,-60.0,55.0],[-164.0,15.0,-151.0,26.0],[140.0,9.0,150.0,18.0],[-176.0,50.0,-126.0,72.0],[-90.0,10.0,-60.0,25.0]]},\"temporal\":{\"interval\":[[\"2022-07-21T20:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NOAA\",\"MRMS\",\"QPE\",\"Precipitation\",\"Weather\",\"United States\",\"Guam\",\"Caribbean\"],\"providers\":[{\"url\":\"https://www.nssl.noaa.gov/projects/mrms\",\"name\":\"NOAA National Severe Storms Laboratory\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"noaa_mrms_qpe:pass\":[1],\"noaa_mrms_qpe:period\":[1],\"noaa_mrms_qpe:region\":[\"CONUS\",\"HAWAII\",\"GUAM\",\"ALASKA\",\"CARIB\"]},\"description\":\"The [Multi-Radar Multi-Sensor (MRMS) Quantitative Precipitation Estimation (QPE)](https://www.nssl.noaa.gov/projects/mrms/) products are seamless 1-km mosaics of precipitation accumulation covering the continental United States, Alaska, Hawaii, the Caribbean, and Guam. The products are automatically generated through integration of data from multiple radars and radar networks, surface and satellite observations, numerical weather prediction (NWP) models, and climatology. The products are updated hourly at the top of the hour.\\n\\nMRMS QPE is available as a \\\"Pass 1\\\" or \\\"Pass 2\\\" product. The Pass 1 product is available with a 60-minute latency and includes 60-65% of gauges. The Pass 2 product has a higher latency of 120 minutes, but includes 99% of gauges. The Pass 1 and Pass 2 products are broken into 1-, 3-, 6-, 12-, 24-, 48-, and 72-hour accumulation sub-products.\\n\\nThis Collection contains the **1-Hour Pass 1** sub-product, i.e., 1-hour cumulative precipitation accumulation with a 1-hour latency. The data are available in [Cloud Optimized GeoTIFF](https://www.cogeo.org/) format as well as the original source GRIB2 format files. The GRIB2 files are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\n\",\"item_assets\":{\"cog\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Processed Cloud Optimized GeoTIFF file\",\"raster:bands\":[{\"unit\":\"mm\",\"data_type\":\"float64\",\"spatial_resolution\":1000}]},\"grib2\":{\"type\":\"application/wmo-GRIB2\",\"roles\":[\"data\"],\"title\":\"Original GRIB2 file\",\"raster:bands\":[{\"unit\":\"mm\",\"data_type\":\"float64\",\"spatial_resolution\":1000}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-mrms-qpe\",\"msft:container\":\"mrms-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/noaa-mrms-qpe/v1.0.0/schema.json\"],\"msft:storage_account\":\"mrms\",\"msft:short_description\":\"Integrated multi-sensor cumulative precipation estimate for the past hour with a 1-hour latency.\",\"msft:region\":\"westeurope\"},{\"id\":\"noaa-mrms-qpe-1h-pass2\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2\"},{\"rel\":\"license\",\"href\":\"https://www.nssl.noaa.gov/projects/mrms/nmq_data_policy_OGCrevised.pdf\",\"type\":\"application/pdf\",\"title\":\"MRMS Dataset Sharing Policy\"},{\"rel\":\"about\",\"href\":\"https://mrms.nssl.noaa.gov\",\"type\":\"text/html\",\"title\":\"MRMS Homepage\"},{\"rel\":\"about\",\"href\":\"https://vlab.noaa.gov/web/wdtd/-/multi-sensor-qpe-1?selectedFolder=9234881\",\"type\":\"text/html\",\"title\":\"MRMS QPE Technical Product Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-mrms-qpe-1h-pass2\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"NOAA MRMS QPE 1-Hour Pass 2\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-mrms-qpe-1h-pass2-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"NOAA MRMS QPE 1-Hour Pass 2 Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-mrms-qpe-1h-pass2.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"QS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-176.0,9.0,150.0,72.0],[-130.0,20.0,-60.0,55.0],[-164.0,15.0,-151.0,26.0],[140.0,9.0,150.0,18.0],[-176.0,50.0,-126.0,72.0],[-90.0,10.0,-60.0,25.0]]},\"temporal\":{\"interval\":[[\"2022-07-21T20:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NOAA\",\"MRMS\",\"QPE\",\"Precipitation\",\"Weather\",\"United States\",\"Guam\",\"Caribbean\"],\"providers\":[{\"url\":\"https://www.nssl.noaa.gov/projects/mrms\",\"name\":\"NOAA National Severe Storms Laboratory\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"noaa_mrms_qpe:pass\":[2],\"noaa_mrms_qpe:period\":[1],\"noaa_mrms_qpe:region\":[\"CONUS\",\"HAWAII\",\"GUAM\",\"ALASKA\",\"CARIB\"]},\"description\":\"The [Multi-Radar Multi-Sensor (MRMS) Quantitative Precipitation Estimation (QPE)](https://www.nssl.noaa.gov/projects/mrms/) products are seamless 1-km mosaics of precipitation accumulation covering the continental United States, Alaska, Hawaii, the Caribbean, and Guam. The products are automatically generated through integration of data from multiple radars and radar networks, surface and satellite observations, numerical weather prediction (NWP) models, and climatology. The products are updated hourly at the top of the hour.\\n\\nMRMS QPE is available as a \\\"Pass 1\\\" or \\\"Pass 2\\\" product. The Pass 1 product is available with a 60-minute latency and includes 60-65% of gauges. The Pass 2 product has a higher latency of 120 minutes, but includes 99% of gauges. The Pass 1 and Pass 2 products are broken into 1-, 3-, 6-, 12-, 24-, 48-, and 72-hour accumulation sub-products.\\n\\nThis Collection contains the **1-Hour Pass 2** sub-product, i.e., 1-hour cumulative precipitation accumulation with a 2-hour latency. The data are available in [Cloud Optimized GeoTIFF](https://www.cogeo.org/) format as well as the original source GRIB2 format files. The GRIB2 files are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\n\",\"item_assets\":{\"cog\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Processed Cloud Optimized GeoTIFF file\",\"raster:bands\":[{\"unit\":\"mm\",\"data_type\":\"float64\",\"spatial_resolution\":1000}]},\"grib2\":{\"type\":\"application/wmo-GRIB2\",\"roles\":[\"data\"],\"title\":\"Original GRIB2 file\",\"raster:bands\":[{\"unit\":\"mm\",\"data_type\":\"float64\",\"spatial_resolution\":1000}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-mrms-qpe\",\"msft:container\":\"mrms-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/noaa-mrms-qpe/v1.0.0/schema.json\"],\"msft:storage_account\":\"mrms\",\"msft:short_description\":\"Integrated multi-sensor cumulative precipation estimate for the past hour with a 2-hour latency.\",\"msft:region\":\"westeurope\"},{\"id\":\"noaa-nclimgrid-monthly\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.7289/V5SX6B56\",\"type\":\"text/html\",\"title\":\"NOAA Monthly U.S. Climate Gridded Dataset (NClimGrid)\"},{\"rel\":\"license\",\"href\":\"https://www.ncei.noaa.gov/access/metadata/landing-page/bin/iso?id=gov.noaa.ncdc:C00332#Constraints\",\"type\":\"text/html\",\"title\":\"NClimGrid Data Use and Access Constraints\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/access/metadata/landing-page/bin/iso?id=gov.noaa.ncdc:C00332\",\"type\":\"text/html\",\"title\":\"Product Landing Page\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-nclimgrid-monthly\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-nclimgrid-monthly-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Monthly NOAA NClimGrid Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-nclimgrid-monthly.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-124.708333,24.541666,-66.999995,49.375001]]},\"temporal\":{\"interval\":[[\"1895-01-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.7289/V5SX6B56\",\"keywords\":[\"United States\",\"NOAA\",\"NClimGrid\",\"Climate\",\"Precipitation\",\"Temperature\"],\"providers\":[{\"url\":\"https://www.ncei.noaa.gov/\",\"name\":\"NOAA National Centers for Environmental Information\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"description\":\"The [NOAA U.S. Climate Gridded Dataset (NClimGrid)](https://www.ncei.noaa.gov/access/metadata/landing-page/bin/iso?id=gov.noaa.ncdc:C00332) consists of four climate variables derived from the [Global Historical Climatology Network daily (GHCNd)](https://www.ncei.noaa.gov/products/land-based-station/global-historical-climatology-network-daily) dataset: maximum temperature, minimum temperature, average temperature, and precipitation. The data is provided in 1/24 degree lat/lon (nominal 5x5 kilometer) grids for the Continental United States (CONUS). \\n\\nNClimGrid data is available in monthly and daily temporal intervals, with the daily data further differentiated as \\\"prelim\\\" (preliminary) or \\\"scaled\\\". Preliminary daily data is available within approximately three days of collection. Once a calendar month of preliminary daily data has been collected, it is scaled to match the corresponding monthly value. Monthly data is available from 1895 to the present. Daily preliminary and daily scaled data is available from 1951 to the present. \\n\\nThis Collection contains **Monthly** data. See the journal publication [\\\"Improved Historical Temperature and Precipitation Time Series for U.S. Climate Divisions\\\"](https://journals.ametsoc.org/view/journals/apme/53/5/jamc-d-13-0248.1.xml) for more information about monthly gridded data.\\n\\nUsers of all NClimGrid data product should be aware that [NOAA advertises](https://www.ncei.noaa.gov/access/metadata/landing-page/bin/iso?id=gov.noaa.ncdc:C00332) that:\\n>\\\"On an annual basis, approximately one year of 'final' NClimGrid data is submitted to replace the initially supplied 'preliminary' data for the same time period. Users should be sure to ascertain which level of data is required for their research.\\\"\\n\\nThe source NetCDF files are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\n\\n*Note*: The Planetary Computer currently has STAC metadata for just the monthly collection. We'll have STAC metadata for daily data in our next release. In the meantime, you can access the daily NetCDF data directly from Blob Storage using the storage container at `https://nclimgridwesteurope.blob.core.windows.net/nclimgrid`. See https://planetarycomputer.microsoft.com/docs/concepts/data-catalog/#access-patterns for more.*\\n\",\"item_assets\":{\"prcp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Monthly Precipitation (mm)\",\"raster:bands\":[{\"unit\":\"mm\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tavg\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Monthly Average Temperature (degree Celsius)\",\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmax\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Monthly Maximmum Temperature (degree Celsius)\",\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmin\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Monthly Minimum Temperature (degree Celsius)\",\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]}},\"sci:citation\":\"Vose, Russell S., Applequist, Scott, Squires, Mike, Durre, Imke, Menne, Matthew J., Williams, Claude N. Jr., Fenimore, Chris, Gleason, Karin, and Arndt, Derek (2014): NOAA Monthly U.S. Climate Gridded Dataset (NClimGrid), Version 1. NOAA National Centers for Environmental Information. DOI:10.7289/V5SX6B56.\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-nclimgrid\",\"msft:container\":\"nclimgrid-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.1175/JAMC-D-13-0248.1\",\"citation\":\"Vose, R. S., Applequist, S., Squires, M., Durre, I., Menne, M. J., Williams, C. N., Jr., Fenimore, C., Gleason, K., & Arndt, D. (2014). Improved Historical Temperature and Precipitation Time Series for U.S. Climate Divisions, Journal of Applied Meteorology and Climatology, 53(5), 1232-1251.\"}],\"msft:storage_account\":\"nclimgridwesteurope\",\"msft:short_description\":\"Gridded surface observations of monthly temperature and precipitation for the continental United States\",\"msft:region\":\"westeurope\"},{\"id\":\"usda-cdl\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl\"},{\"rel\":\"about\",\"href\":\"https://www.nass.usda.gov/Research_and_Science/Cropland/SARS1a.php\",\"title\":\"Product Landing Page\"},{\"rel\":\"license\",\"href\":\"https://www.nass.usda.gov/Research_and_Science/Cropland/sarsfaqs2.php#Section3_5.0\",\"title\":\"Redistribution information\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/usda-cdl\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USDA Cropland Data Layers (CDLs)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/usda-cdl-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"USDA Cropland Data Layer (CDL) thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-127.887212,22.94027,-65.345507,51.603492]]},\"temporal\":{\"interval\":[[\"2008-01-01T00:00:00Z\",\"2021-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USDA\",\"United States\",\"Land Cover\",\"Land Use\",\"Agriculture\"],\"providers\":[{\"url\":\"https://www.nass.usda.gov/\",\"name\":\"United States Department of Agriculture - National Agricultural Statistics Service\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"usda_cdl:type\":[\"cropland\",\"frequency\",\"cultivated\"]},\"description\":\"The Cropland Data Layer (CDL) is a product of the USDA National Agricultural Statistics Service (NASS) with the mission \\\"to provide timely, accurate and useful statistics in service to U.S. agriculture\\\" (Johnson and Mueller, 2010, p. 1204). The CDL is a crop-specific land cover classification product of more than 100 crop categories grown in the United States. CDLs are derived using a supervised land cover classification of satellite imagery. The supervised classification relies on first manually identifying pixels within certain images, often called training sites, which represent the same crop or land cover type. Using these training sites, a spectral signature is developed for each crop type that is then used by the analysis software to identify all other pixels in the satellite image representing the same crop. Using this method, a new CDL is compiled annually and released to the public a few months after the end of the growing season.\\n\\nThis collection includes Cropland, Confidence, Cultivated, and Frequency products.\\n\\n- Cropland: Crop-specific land cover data created annually. There are currently four individual crop frequency data layers that represent four major crops: corn, cotton, soybeans, and wheat.\\n- Confidence: The predicted confidence associated with an output pixel. A value of zero indicates low confidence, while a value of 100 indicates high confidence.\\n- Cultivated: cultivated and non-cultivated land cover for CONUS based on land cover information derived from the 2017 through 2021 Cropland products.\\n- Frequency: crop specific planting frequency based on land cover information derived from the 2008 through 2021 Cropland products.\\n\\nFor more, visit the [Cropland Data Layer homepage](https://www.nass.usda.gov/Research_and_Science/Cropland/SARS1a.php).\",\"item_assets\":{\"corn\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"nodata\":255,\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"wheat\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"nodata\":255,\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"cotton\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"nodata\":255,\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"cropland\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"value\":1,\"color_hint\":\"FFD200\",\"description\":\"Corn\"},{\"value\":2,\"color_hint\":\"FF2525\",\"description\":\"Cotton\"},{\"value\":3,\"color_hint\":\"00A8E3\",\"description\":\"Rice\"},{\"value\":4,\"color_hint\":\"FF9E0A\",\"description\":\"Sorghum\"},{\"value\":5,\"color_hint\":\"256F00\",\"description\":\"Soybeans\"},{\"value\":6,\"color_hint\":\"FFFF00\",\"description\":\"Sunflower\"},{\"value\":10,\"color_hint\":\"6FA400\",\"description\":\"Peanuts\"},{\"value\":11,\"color_hint\":\"00AE4A\",\"description\":\"Tobacco\"},{\"value\":12,\"color_hint\":\"DDA40A\",\"description\":\"Sweet Corn\"},{\"value\":13,\"color_hint\":\"DDA40A\",\"description\":\"Pop or Orn Corn\"},{\"value\":14,\"color_hint\":\"7DD2FF\",\"description\":\"Mint\"},{\"value\":21,\"color_hint\":\"E1007B\",\"description\":\"Barley\"},{\"value\":22,\"color_hint\":\"886153\",\"description\":\"Durum Wheat\"},{\"value\":23,\"color_hint\":\"D7B56B\",\"description\":\"Spring Wheat\"},{\"value\":24,\"color_hint\":\"A46F00\",\"description\":\"Winter Wheat\"},{\"value\":25,\"color_hint\":\"D59EBB\",\"description\":\"Other Small Grains\"},{\"value\":26,\"color_hint\":\"6F6F00\",\"description\":\"Winter Wheat/Soybeans\"},{\"value\":27,\"color_hint\":\"AC007B\",\"description\":\"Rye\"},{\"value\":28,\"color_hint\":\"9F5888\",\"description\":\"Oats\"},{\"value\":29,\"color_hint\":\"6F0048\",\"description\":\"Millet\"},{\"value\":30,\"color_hint\":\"D59EBB\",\"description\":\"Speltz\"},{\"value\":31,\"color_hint\":\"D1FF00\",\"description\":\"Canola\"},{\"value\":32,\"color_hint\":\"7D99FF\",\"description\":\"Flaxseed\"},{\"value\":33,\"color_hint\":\"D5D500\",\"description\":\"Safflower\"},{\"value\":34,\"color_hint\":\"D1FF00\",\"description\":\"Rape Seed\"},{\"value\":35,\"color_hint\":\"00AE4A\",\"description\":\"Mustard\"},{\"value\":36,\"color_hint\":\"FFA4E1\",\"description\":\"Alfalfa\"},{\"value\":37,\"color_hint\":\"A4F18B\",\"description\":\"Other Hay/Non Alfalfa\"},{\"value\":38,\"color_hint\":\"00AE4A\",\"description\":\"Camelina\"},{\"value\":39,\"color_hint\":\"D59EBB\",\"description\":\"Buckwheat\"},{\"value\":41,\"color_hint\":\"A800E3\",\"description\":\"Sugarbeets\"},{\"value\":42,\"color_hint\":\"A40000\",\"description\":\"Dry Beans\"},{\"value\":43,\"color_hint\":\"6F2500\",\"description\":\"Potatoes\"},{\"value\":44,\"color_hint\":\"00AE4A\",\"description\":\"Other Crops\"},{\"value\":45,\"color_hint\":\"B07DFF\",\"description\":\"Sugarcane\"},{\"value\":46,\"color_hint\":\"6F2500\",\"description\":\"Sweet Potatoes\"},{\"value\":47,\"color_hint\":\"FF6666\",\"description\":\"Misc. Vegs & Fruits\"},{\"value\":48,\"color_hint\":\"FF6666\",\"description\":\"Watermelons\"},{\"value\":49,\"color_hint\":\"FFCC66\",\"description\":\"Onions\"},{\"value\":50,\"color_hint\":\"FF6666\",\"description\":\"Cucumbers\"},{\"value\":51,\"color_hint\":\"00AE4A\",\"description\":\"Chick Peas\"},{\"value\":52,\"color_hint\":\"00DDAE\",\"description\":\"Lentils\"},{\"value\":53,\"color_hint\":\"53FF00\",\"description\":\"Peas\"},{\"value\":54,\"color_hint\":\"F1A277\",\"description\":\"Tomatoes\"},{\"value\":55,\"color_hint\":\"FF6666\",\"description\":\"Caneberries\"},{\"value\":56,\"color_hint\":\"00AE4A\",\"description\":\"Hops\"},{\"value\":57,\"color_hint\":\"7DD2FF\",\"description\":\"Herbs\"},{\"value\":58,\"color_hint\":\"E8BEFF\",\"description\":\"Clover/Wildflowers\"},{\"value\":59,\"color_hint\":\"AEFFDD\",\"description\":\"Sod/Grass Seed\"},{\"value\":60,\"color_hint\":\"00AE4A\",\"description\":\"Switchgrass\"},{\"value\":61,\"color_hint\":\"BEBE77\",\"description\":\"Fallow/Idle Cropland\"},{\"value\":63,\"color_hint\":\"92CC92\",\"description\":\"Forest\"},{\"value\":64,\"color_hint\":\"C5D59E\",\"description\":\"Shrubland\"},{\"value\":65,\"color_hint\":\"CCBEA2\",\"description\":\"Barren\"},{\"value\":66,\"color_hint\":\"FF00FF\",\"description\":\"Cherries\"},{\"value\":67,\"color_hint\":\"FF8EAA\",\"description\":\"Peaches\"},{\"value\":68,\"color_hint\":\"B9004F\",\"description\":\"Apples\"},{\"value\":69,\"color_hint\":\"6F4488\",\"description\":\"Grapes\"},{\"value\":70,\"color_hint\":\"007777\",\"description\":\"Christmas Trees\"},{\"value\":71,\"color_hint\":\"B09A6F\",\"description\":\"Other Tree Crops\"},{\"value\":72,\"color_hint\":\"FFFF7D\",\"description\":\"Citrus\"},{\"value\":74,\"color_hint\":\"B56F5B\",\"description\":\"Pecans\"},{\"value\":75,\"color_hint\":\"00A482\",\"description\":\"Almonds\"},{\"value\":76,\"color_hint\":\"E9D5AE\",\"description\":\"Walnuts\"},{\"value\":77,\"color_hint\":\"B09A6F\",\"description\":\"Pears\"},{\"value\":81,\"color_hint\":\"F1F1F1\",\"description\":\"Clouds/No Data\"},{\"value\":82,\"color_hint\":\"9A9A9A\",\"description\":\"Developed\"},{\"value\":83,\"color_hint\":\"4A6fA2\",\"description\":\"Water\"},{\"value\":87,\"color_hint\":\"7DB0B0\",\"description\":\"Wetlands\"},{\"value\":88,\"color_hint\":\"E8FFBE\",\"description\":\"Nonag/Undefined\"},{\"value\":92,\"color_hint\":\"00FFFF\",\"description\":\"Aquaculture\"},{\"value\":111,\"color_hint\":\"4A6FA2\",\"description\":\"Open Water\"},{\"value\":112,\"color_hint\":\"D2E1F8\",\"description\":\"Perennial Ice/Snow\"},{\"value\":121,\"color_hint\":\"9A9A9A\",\"description\":\"Developed/Open Space\"},{\"value\":122,\"color_hint\":\"9A9A9A\",\"description\":\"Developed/Low Intensity\"},{\"value\":123,\"color_hint\":\"9A9A9A\",\"description\":\"Developed/Med Intensity\"},{\"value\":124,\"color_hint\":\"9A9A9A\",\"description\":\"Developed/High Intensity\"},{\"value\":131,\"color_hint\":\"CCBEA2\",\"description\":\"Barren\"},{\"value\":141,\"color_hint\":\"92CC92\",\"description\":\"Deciduous Forest\"},{\"value\":142,\"color_hint\":\"92CC92\",\"description\":\"Evergreen Forest\"},{\"value\":143,\"color_hint\":\"92CC92\",\"description\":\"Mixed Forest\"},{\"value\":152,\"color_hint\":\"C5D59E\",\"description\":\"Shrubland\"},{\"value\":176,\"color_hint\":\"E8FFBE\",\"description\":\"Grassland/Pasture\"},{\"value\":190,\"color_hint\":\"7DB0B0\",\"description\":\"Woody Wetlands\"},{\"value\":195,\"color_hint\":\"7DB0B0\",\"description\":\"Herbaceous Wetlands\"},{\"value\":204,\"color_hint\":\"00FF8B\",\"description\":\"Pistachios\"},{\"value\":205,\"color_hint\":\"D59EBB\",\"description\":\"Triticale\"},{\"value\":206,\"color_hint\":\"FF6666\",\"description\":\"Carrots\"},{\"value\":207,\"color_hint\":\"FF6666\",\"description\":\"Asparagus\"},{\"value\":208,\"color_hint\":\"FF6666\",\"description\":\"Garlic\"},{\"value\":209,\"color_hint\":\"FF6666\",\"description\":\"Cantaloupes\"},{\"value\":210,\"color_hint\":\"FF8EAA\",\"description\":\"Prunes\"},{\"value\":211,\"color_hint\":\"334833\",\"description\":\"Olives\"},{\"value\":212,\"color_hint\":\"E36F25\",\"description\":\"Oranges\"},{\"value\":213,\"color_hint\":\"FF6666\",\"description\":\"Honeydew Melons\"},{\"value\":214,\"color_hint\":\"FF6666\",\"description\":\"Broccoli\"},{\"value\":215,\"color_hint\":\"66994B\",\"description\":\"Avocados\"},{\"value\":216,\"color_hint\":\"FF6666\",\"description\":\"Peppers\"},{\"value\":217,\"color_hint\":\"B09A6F\",\"description\":\"Pomegranates\"},{\"value\":218,\"color_hint\":\"FF8EAA\",\"description\":\"Nectarines\"},{\"value\":219,\"color_hint\":\"FF6666\",\"description\":\"Greens\"},{\"value\":220,\"color_hint\":\"FF8EAA\",\"description\":\"Plums\"},{\"value\":221,\"color_hint\":\"FF6666\",\"description\":\"Strawberreis\"},{\"value\":222,\"color_hint\":\"FF6666\",\"description\":\"Squash\"},{\"value\":223,\"color_hint\":\"FF8EAA\",\"description\":\"Apricots\"},{\"value\":224,\"color_hint\":\"00AE4A\",\"description\":\"Vetch\"},{\"value\":225,\"color_hint\":\"FFD200\",\"description\":\"Winter Wheat/Corn\"},{\"value\":226,\"color_hint\":\"FFD200\",\"description\":\"Oats/Corn\"},{\"value\":227,\"color_hint\":\"FF6666\",\"description\":\"Lettuce\"},{\"value\":228,\"color_hint\":\"FF6666\",\"description\":\"Triticale/Corn\"},{\"value\":229,\"color_hint\":\"FF6666\",\"description\":\"Pumpkins\"},{\"value\":230,\"color_hint\":\"886153\",\"description\":\"Lettuce/Durum Wheat\"},{\"value\":231,\"color_hint\":\"FF6666\",\"description\":\"Lettuce/Cataloupe\"},{\"value\":232,\"color_hint\":\"FF2525\",\"description\":\"Lettuce/Cotton\"},{\"value\":233,\"color_hint\":\"A1007B\",\"description\":\"Lettuce/Barley\"},{\"value\":234,\"color_hint\":\"FF9E0A\",\"description\":\"Durum Wheat/Sorghum\"},{\"value\":235,\"color_hint\":\"FF9E0A\",\"description\":\"Barley/Sorghum\"},{\"value\":236,\"color_hint\":\"A46F00\",\"description\":\"Winter Wheat/Sorghum\"},{\"value\":237,\"color_hint\":\"FFD200\",\"description\":\"Barley/Corn\"},{\"value\":238,\"color_hint\":\"A46F00\",\"description\":\"Winter Wheat/Cotton\"},{\"value\":239,\"color_hint\":\"256F00\",\"description\":\"Soybeans/Cotton\"},{\"value\":240,\"color_hint\":\"256F00\",\"description\":\"Soybeans/Oats \"},{\"value\":241,\"color_hint\":\"FFD200\",\"description\":\"Corn/Soybeans\"},{\"value\":242,\"color_hint\":\"000099\",\"description\":\"Blueberries\"},{\"value\":243,\"color_hint\":\"FF6666\",\"description\":\"Cabbage\"},{\"value\":244,\"color_hint\":\"FF6666\",\"description\":\"Cauliflower\"},{\"value\":245,\"color_hint\":\"FF6666\",\"description\":\"Celery\"},{\"value\":246,\"color_hint\":\"FF6666\",\"description\":\"Radishes\"},{\"value\":247,\"color_hint\":\"FF6666\",\"description\":\"Turnips\"},{\"value\":248,\"color_hint\":\"FF6666\",\"description\":\"Eggplants\"},{\"value\":249,\"color_hint\":\"FF6666\",\"description\":\"Gourds\"},{\"value\":250,\"color_hint\":\"FF6666\",\"description\":\"Cranberries\"},{\"value\":254,\"color_hint\":\"256F00\",\"description\":\"Barley/Soybeans\"}]},\"soybeans\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"nodata\":255,\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"confidence\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"cultivated\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"value\":1,\"color_hint\":\"000000\",\"description\":\"Non-Cultivated\"},{\"value\":2,\"color_hint\":\"006300\",\"description\":\"Cultivated\"}]}},\"stac_version\":\"1.0.0\",\"msft:container\":\"usda-cdl\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.1.0/schema.json\"],\"msft:storage_account\":\"landcoverdata\",\"msft:short_description\":\"The UDA Cropland Data Layer is an annual raster, geo-referenced, crop-specific land cover data layer produced using satellite imagery and extensive agricultural ground truth collected during the current growing season.\",\"msft:region\":\"westeurope\"},{\"id\":\"eclipse\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse\"},{\"rel\":\"license\",\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/aod_docs/Microsoft%20Project%20Eclipse%20API%20Terms%20of%20Use_Mar%202022.pdf\",\"type\":\"application/pdf\",\"title\":\"Terms of use\"},{\"rel\":\"cite-as\",\"href\":\"https://www.microsoft.com/en-us/research/uploads/prod/2022/05/ACM_2022-IPSN_FINAL_Eclipse.pdf\",\"type\":\"application/pdf\",\"title\":\"Eclipse: An End-to-End Platform for Low-Cost, Hyperlocal Environment Sensing in Cities\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/eclipse\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Urban Innovation Eclipse Sensor Data\",\"assets\":{\"data\":{\"href\":\"abfs://eclipse/Chicago/\",\"type\":\"application/x-parquet\",\"roles\":[\"data\"],\"title\":\"Full dataset\",\"description\":\"Full parquet dataset\",\"table:storage_options\":{\"account_name\":\"ai4edataeuwest\"}},\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/eclipse-thumbnail.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Urban Innovation Chicago Sensors\"},\"geoparquet-items\":{\"href\":\"abfs://items/eclipse.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-87.94011408252348,41.64454312178303,-87.5241371038952,42.023038586147585]]},\"temporal\":{\"interval\":[[\"2021-01-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Eclipse\",\"PM25\",\"air pollution\"],\"providers\":[{\"url\":\"https://www.microsoft.com/en-us/research/urban-innovation-research/\",\"name\":\"Urban Innovation\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"description\":\"The [Project Eclipse](https://www.microsoft.com/en-us/research/project/project-eclipse/) Network is a low-cost air quality sensing network for cities and a research project led by the [Urban Innovation Group]( https://www.microsoft.com/en-us/research/urban-innovation-research/) at Microsoft Research.\\n\\nProject Eclipse currently includes over 100 locations in Chicago, Illinois, USA.\\n\\nThis network was deployed starting in July, 2021, through a collaboration with the City of Chicago, the Array of Things Project, JCDecaux Chicago, and the Environmental Law and Policy Center as well as local environmental justice organizations in the city. [This talk]( https://www.microsoft.com/en-us/research/video/technology-demo-project-eclipse-hyperlocal-air-quality-monitoring-for-cities/) documents the network design and data calibration strategy.\\n\\n## Storage resources\\n\\nData are stored in [Parquet](https://parquet.apache.org/) files in Azure Blob Storage in the West Europe Azure region, in the following blob container:\\n\\n`https://ai4edataeuwest.blob.core.windows.net/eclipse`\\n\\nWithin that container, the periodic occurrence snapshots are stored in `Chicago/YYYY-MM-DD`, where `YYYY-MM-DD` corresponds to the date of the snapshot.\\nEach snapshot contains a sensor readings from the next 7-days in Parquet format starting with date on the folder name YYYY-MM-DD.\\nTherefore, the data files for the first snapshot are at\\n\\n`https://ai4edataeuwest.blob.core.windows.net/eclipse/chicago/2022-01-01/data_*.parquet\\n\\nThe Parquet file schema is as described below. \\n\\n## Additional Documentation\\n\\nFor details on Calibration of Pm2.5, O3 and NO2, please see [this PDF](https://ai4edatasetspublicassets.blob.core.windows.net/assets/aod_docs/Calibration_Doc_v1.1.pdf).\\n\\n## License and attribution\\nPlease cite: Daepp, Cabral, Ranganathan et al. (2022) [Eclipse: An End-to-End Platform for Low-Cost, Hyperlocal Environmental Sensing in Cities. ACM/IEEE Information Processing in Sensor Networks. Milan, Italy.](https://www.microsoft.com/en-us/research/uploads/prod/2022/05/ACM_2022-IPSN_FINAL_Eclipse.pdf)\\n\\n## Contact\\n\\nFor questions about this dataset, contact [`msrurbanops@microsoft.com`](mailto:msrurbanops@microsoft.com?subject=eclipse%20question) \\n\\n\\n## Learn more\\n\\nThe [Eclipse Project](https://www.microsoft.com/en-us/research/urban-innovation-research/) contains an overview of the Project Eclipse at Microsoft Research.\\n\\n\",\"item_assets\":{\"data\":{\"type\":\"application/x-parquet\",\"roles\":[\"data\"],\"title\":\"Weekly dataset\",\"table:storage_options\":{\"account_name\":\"ai4edataeuwest\"}}},\"sci:citation\":\"Daepp, Cabral, Ranganathan et al. (2022) Eclipse: An End-to-End Platform for Low-Cost, Hyperlocal Environmental Sensing in Cities. ACM/IEEE Information Processing in Sensor Networks. Milan, Italy. Eclipse: An End-to-End Platform for Low-Cost, Hyperlocal Environmental Sensing in Cities\",\"stac_version\":\"1.0.0\",\"table:columns\":[{\"name\":\"City\",\"type\":\"byte_array\",\"description\":\"City where the Microsoft Eclipse device is deployed\"},{\"name\":\"DeviceId\",\"type\":\"int32\",\"description\":\"Id for a given device\"},{\"name\":\"LocationName\",\"type\":\"byte_array\",\"description\":\"Unique string describing the device location\"},{\"name\":\"Latitude\",\"type\":\"double\",\"description\":\"Latitude of the device location\"},{\"name\":\"Longitude\",\"type\":\"double\",\"description\":\"Longitude of the device location\"},{\"name\":\"ReadingDateTimeUTC\",\"type\":\"int96\",\"description\":\"The UTC date time string (like 2022-03-04 20:27:25.000) when the reading from the Eclipse sensor was recorded\"},{\"name\":\"PM25\",\"type\":\"double\",\"description\":\"Uncalibrated Fine particulate matter (PM 2.5) in \xB5g/m\xB3\"},{\"name\":\"CalibratedPM25\",\"type\":\"double\",\"description\":\"Calibrated PM 2.5 in \xB5g/m\xB3\"},{\"name\":\"CalibratedO3\",\"type\":\"double\",\"description\":\"Calibrated Ozone in PPB\"},{\"name\":\"CalibratedNO2\",\"type\":\"double\",\"description\":\"Calibrated Nitrogen Dioxide in PPB\"},{\"name\":\"CO\",\"type\":\"double\",\"description\":\"Uncalibrated Carbon monoxide (CO) in PPM\"},{\"name\":\"Temperature\",\"type\":\"double\",\"description\":\"Degree Celsius\"},{\"name\":\"Humidity\",\"type\":\"double\",\"description\":\"Relative humidity\"},{\"name\":\"BatteryLevel\",\"type\":\"double\",\"description\":\"Device battery level in Volts\"},{\"name\":\"PercentBattery\",\"type\":\"double\",\"description\":\"Percent of device battery\"},{\"name\":\"CellSignal\",\"type\":\"double\",\"description\":\"Cellular signal strength in dB\"}],\"msft:container\":\"eclipse\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"A network of low-cost air quality sensing network for cities and led by the Urban Innovation Group at Microsoft Research\",\"msft:region\":\"westeurope\"},{\"id\":\"esa-cci-lc\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc\"},{\"rel\":\"license\",\"href\":\"https://cds.climate.copernicus.eu/api/v2/terms/static/satellite-land-cover.pdf\",\"type\":\"text/html\",\"title\":\"ESA CCI license\"},{\"rel\":\"license\",\"href\":\"https://cds.climate.copernicus.eu/api/v2/terms/static/licence-to-use-copernicus-products.pdf\",\"type\":\"text/html\",\"title\":\"COPERNICUS license\"},{\"rel\":\"license\",\"href\":\"https://cds.climate.copernicus.eu/api/v2/terms/static/vito-proba-v.pdf\",\"type\":\"text/html\",\"title\":\"VITO License\"},{\"rel\":\"about\",\"href\":\"https://cds.climate.copernicus.eu/cdsapp#!/dataset/satellite-land-cover\",\"type\":\"text/html\",\"title\":\"Product Landing Page\"},{\"rel\":\"about\",\"href\":\"https://datastore.copernicus-climate.eu/documents/satellite-land-cover/D5.3.1_PUGS_ICDR_LC_v2.1.x_PRODUCTS_v1.1.pdf\",\"type\":\"application/pdf\",\"title\":\"Product user guide for version 2.1\"},{\"rel\":\"about\",\"href\":\"https://datastore.copernicus-climate.eu/documents/satellite-land-cover/D3.3.11-v1.0_PUGS_CDR_LC-CCI_v2.0.7cds_Products_v1.0.1_APPROVED_Ver1.pdf\",\"type\":\"application/pdf\",\"title\":\"Product user guide for version 2.0\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.24381/cds.006f2c9a\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/esa-cci-lc\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/esa-cci-lc-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"ESA CCI Land Cover COGs Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/esa-cci-lc.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-90.0,180.0,90.0]]},\"temporal\":{\"interval\":[[\"1992-01-01T00:00:00Z\",\"2020-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.24381/cds.006f2c9a\",\"keywords\":[\"Land Cover\",\"ESA\",\"CCI\",\"Global\"],\"providers\":[{\"url\":\"https://vito.be\",\"name\":\"VITO\",\"roles\":[\"licensor\"],\"description\":\"Provides the PROBA-V source data (for v2.0).\"},{\"url\":\"https://uclouvain.be\",\"name\":\"UCLouvain\",\"roles\":[\"producer\"],\"description\":\"UCLouvain produces the dataset (v2.1) for the ESA Climate Change Initiative.\"},{\"url\":\"https://brockmann-consult.de\",\"name\":\"Brockmann Consult\",\"roles\":[\"processor\"],\"description\":\"Brockmann Consult is responsible for the required pre-processing and the distribution of the dataset (v2.1).\"},{\"url\":\"http://esa-landcover-cci.org\",\"name\":\"ESA Climate Change Initiative\",\"roles\":[\"licensor\"],\"description\":\"The ESA Climate Change Initiative (CCI) is leading the product creation.\"},{\"url\":\"https://copernicus.eu\",\"name\":\"Copernicus\",\"roles\":[\"licensor\"],\"description\":\"Hosts the data on the Copernicus Climate Data Store (CDS).\"},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"esa_cci_lc:version\":[\"2.0.7cds\",\"2.1.1\"]},\"description\":\"The ESA Climate Change Initiative (CCI) [Land Cover dataset](https://cds.climate.copernicus.eu/cdsapp#!/dataset/satellite-land-cover?tab=overview) provides consistent global annual land cover maps at 300m spatial resolution from 1992 to 2020. The land cover classes are defined using the United Nations Food and Agriculture Organization's (UN FAO) [Land Cover Classification System](https://www.fao.org/land-water/land/land-governance/land-resources-planning-toolbox/category/details/en/c/1036361/) (LCCS). In addition to the land cover maps, four quality flags are produced to document the reliability of the classification and change detection. \\n\\nThe data in this Collection have been converted from the [original NetCDF data](https://planetarycomputer.microsoft.com/dataset/esa-cci-lc-netcdf) to a set of tiled [Cloud Optimized GeoTIFFs](https://www.cogeo.org/) (COGs).\\n\",\"item_assets\":{\"lccs_class\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Land Cover Class Defined in the Land Cover Classification System\",\"description\":\"Land cover class per pixel, defined using the Land Cover Classification System developed by the United Nations Food and Agriculture Organization.\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":300}],\"classification:classes\":[{\"name\":\"no-data\",\"value\":0,\"no_data\":true,\"color_hint\":\"000000\",\"description\":\"No data\"},{\"name\":\"cropland-1\",\"value\":10,\"color_hint\":\"FFFF64\",\"description\":\"Cropland, rainfed\"},{\"name\":\"cropland-1a\",\"value\":11,\"regional\":true,\"color_hint\":\"FFFF64\",\"description\":\"Cropland, rainfed, herbaceous cover\"},{\"name\":\"cropland-1b\",\"value\":12,\"regional\":true,\"color_hint\":\"FFFF00\",\"description\":\"Cropland, rainfed, tree, or shrub cover\"},{\"name\":\"cropland-2\",\"value\":20,\"color_hint\":\"AAF0F0\",\"description\":\"Cropland, irrigated or post-flooding\"},{\"name\":\"cropland-3\",\"value\":30,\"color_hint\":\"DCF064\",\"description\":\"Mosaic cropland (>50%) / natural vegetation (tree, shrub, herbaceous cover) (<50%)\"},{\"name\":\"natural-veg\",\"value\":40,\"color_hint\":\"C8C864\",\"description\":\"Mosaic natural vegetation (tree, shrub, herbaceous cover) (>50%) / cropland (<50%)\"},{\"name\":\"tree-1\",\"value\":50,\"color_hint\":\"006400\",\"description\":\"Tree cover, broadleaved, evergreen, closed to open (>15%)\"},{\"name\":\"tree-2\",\"value\":60,\"color_hint\":\"00A000\",\"description\":\"Tree cover, broadleaved, deciduous, closed to open (>15%)\"},{\"name\":\"tree-2a\",\"value\":61,\"regional\":true,\"color_hint\":\"00A000\",\"description\":\"Tree cover, broadleaved, deciduous, closed (>40%)\"},{\"name\":\"tree-2b\",\"value\":62,\"regional\":true,\"color_hint\":\"AAC800\",\"description\":\"Tree cover, broadleaved, deciduous, open (15-40%)\"},{\"name\":\"tree-3\",\"value\":70,\"color_hint\":\"003C00\",\"description\":\"Tree cover, needleleaved, evergreen, closed to open (>15%)\"},{\"name\":\"tree-3a\",\"value\":71,\"regional\":true,\"color_hint\":\"003C00\",\"description\":\"Tree cover, needleleaved, evergreen, closed (>40%)\"},{\"name\":\"tree-3b\",\"value\":72,\"regional\":true,\"color_hint\":\"005000\",\"description\":\"Tree cover, needleleaved, evergreen, open (15-40%)\"},{\"name\":\"tree-4\",\"value\":80,\"color_hint\":\"285000\",\"description\":\"Tree cover, needleleaved, deciduous, closed to open (>15%)\"},{\"name\":\"tree-4a\",\"value\":81,\"regional\":true,\"color_hint\":\"285000\",\"description\":\"Tree cover, needleleaved, deciduous, closed (>40%)\"},{\"name\":\"tree-4b\",\"value\":82,\"regional\":true,\"color_hint\":\"286400\",\"description\":\"Tree cover, needleleaved, deciduous, open (15-40%)\"},{\"name\":\"tree-5\",\"value\":90,\"color_hint\":\"788200\",\"description\":\"Tree cover, mixed leaf type (broadleaved and needleleaved)\"},{\"name\":\"tree-shrub\",\"value\":100,\"color_hint\":\"8CA000\",\"description\":\"Mosaic tree and shrub (>50%) / herbaceous cover (<50%)\"},{\"name\":\"herbaceous\",\"value\":110,\"color_hint\":\"BE9600\",\"description\":\"Mosaic herbaceous cover (>50%) / tree and shrub (<50%)\"},{\"name\":\"shrubland\",\"value\":120,\"color_hint\":\"966400\",\"description\":\"Shrubland\"},{\"name\":\"shrubland-a\",\"value\":121,\"regional\":true,\"color_hint\":\"966400\",\"description\":\"Evergreen shrubland\"},{\"name\":\"shrubland-b\",\"value\":122,\"regional\":true,\"color_hint\":\"966400\",\"description\":\"Deciduous shrubland\"},{\"name\":\"grassland\",\"value\":130,\"color_hint\":\"FFB432\",\"description\":\"Grassland\"},{\"name\":\"lichens-moses\",\"value\":140,\"color_hint\":\"FFDCD2\",\"description\":\"Lichens and mosses\"},{\"name\":\"sparse-veg\",\"value\":150,\"color_hint\":\"FFEBAF\",\"description\":\"Sparse vegetation (tree, shrub, herbaceous cover) (<15%)\"},{\"name\":\"sparse-veg-a\",\"value\":151,\"regional\":true,\"color_hint\":\"FFC864\",\"description\":\"Sparse tree (<15%)\"},{\"name\":\"sparse-veg-b\",\"value\":152,\"regional\":true,\"color_hint\":\"FFD278\",\"description\":\"Sparse shrub (<15%)\"},{\"name\":\"sparse-veg-c\",\"value\":153,\"regional\":true,\"color_hint\":\"FFEBAF\",\"description\":\"Sparse herbaceous cover (<15%)\"},{\"name\":\"flooded-tree-1\",\"value\":160,\"color_hint\":\"00785A\",\"description\":\"Tree cover, flooded, fresh or brackish water\"},{\"name\":\"flooded-tree-2\",\"value\":170,\"color_hint\":\"009678\",\"description\":\"Tree cover, flooded, saline water\"},{\"name\":\"flooded-shrub-herbaceous\",\"value\":180,\"color_hint\":\"00DC82\",\"description\":\"Shrub or herbaceous cover, flooded, fresh/saline/brackish water\"},{\"name\":\"urban\",\"value\":190,\"color_hint\":\"C31400\",\"description\":\"Urban areas\"},{\"name\":\"bare\",\"value\":200,\"color_hint\":\"FFF5D7\",\"description\":\"Bare areas\"},{\"name\":\"bare-a\",\"value\":201,\"regional\":true,\"color_hint\":\"DCDCDC\",\"description\":\"Consolidated bare areas\"},{\"name\":\"bare-b\",\"value\":202,\"regional\":true,\"color_hint\":\"FFF5D7\",\"description\":\"Unconsolidated bare areas\"},{\"name\":\"water\",\"value\":210,\"color_hint\":\"0046C8\",\"description\":\"Water bodies\"},{\"name\":\"snow-ice\",\"value\":220,\"color_hint\":\"FFFFFF\",\"description\":\"Permanent snow and ice\"}]},\"change_count\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"quality\"],\"title\":\"Number of Class Changes\",\"description\":\"Number of years where land cover class changes have occurred, since 1992. 0 for stable, greater than 0 for changes.\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":300}]},\"processed_flag\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"quality\"],\"title\":\"Land Cover Map Processed Area Flag\",\"description\":\"Flag to mark areas that could not be classified.\",\"raster:bands\":[{\"nodata\":255,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":300}],\"classification:classes\":[{\"name\":\"not_processed\",\"value\":0,\"description\":\"Not processed\"},{\"name\":\"processed\",\"value\":1,\"description\":\"Processed\"}]},\"observation_count\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"quality\"],\"title\":\"Number of Valid Observations\",\"description\":\"Number of valid satellite observations that have contributed to each pixel's classification.\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"uint16\",\"spatial_resolution\":300}]},\"current_pixel_state\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"quality\"],\"title\":\"Land Cover Pixel Type Mask\",\"description\":\"Pixel identification from satellite surface reflectance observations, mainly distinguishing between land, water, and snow/ice.\",\"raster:bands\":[{\"nodata\":255,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":300}],\"classification:classes\":[{\"name\":\"land\",\"value\":1,\"description\":\"Clear land\"},{\"name\":\"water\",\"value\":2,\"description\":\"Clear water\"},{\"name\":\"snow\",\"value\":3,\"description\":\"Clear snow / ice\"},{\"name\":\"cloud\",\"value\":4,\"description\":\"Cloud\"},{\"name\":\"cloud_shadow\",\"value\":5,\"description\":\"Cloud shadow\"},{\"name\":\"filled\",\"value\":6,\"description\":\"Filled\"}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"esa-cci-lc\",\"msft:container\":\"esa-cci-lc\",\"stac_extensions\":[\"https://stac-extensions.github.io/classification/v1.1.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"landcoverdata\",\"msft:short_description\":\"Tiled ESA CCI global land cover maps in COG format\",\"msft:region\":\"westeurope\"},{\"id\":\"esa-cci-lc-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf\"},{\"rel\":\"license\",\"href\":\"https://cds.climate.copernicus.eu/api/v2/terms/static/satellite-land-cover.pdf\",\"type\":\"text/html\",\"title\":\"ESA CCI license\"},{\"rel\":\"license\",\"href\":\"https://cds.climate.copernicus.eu/api/v2/terms/static/licence-to-use-copernicus-products.pdf\",\"type\":\"text/html\",\"title\":\"COPERNICUS license\"},{\"rel\":\"license\",\"href\":\"https://cds.climate.copernicus.eu/api/v2/terms/static/vito-proba-v.pdf\",\"type\":\"text/html\",\"title\":\"VITO License\"},{\"rel\":\"about\",\"href\":\"https://cds.climate.copernicus.eu/cdsapp#!/dataset/satellite-land-cover\",\"type\":\"text/html\",\"title\":\"Product Landing Page\"},{\"rel\":\"about\",\"href\":\"https://datastore.copernicus-climate.eu/documents/satellite-land-cover/D5.3.1_PUGS_ICDR_LC_v2.1.x_PRODUCTS_v1.1.pdf\",\"type\":\"application/pdf\",\"title\":\"Product user guide for version 2.1\"},{\"rel\":\"about\",\"href\":\"https://datastore.copernicus-climate.eu/documents/satellite-land-cover/D3.3.11-v1.0_PUGS_CDR_LC-CCI_v2.0.7cds_Products_v1.0.1_APPROVED_Ver1.pdf\",\"type\":\"application/pdf\",\"title\":\"Product user guide for version 2.0\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.24381/cds.006f2c9a\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/esa-cci-lc-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ESA Climate Change Initiative Land Cover Maps (NetCDF)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/esa-cci-lc-netcdf-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"ESA CCI Land Cover NetCDF Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/esa-cci-lc-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-90.0,180.0,90.0]]},\"temporal\":{\"interval\":[[\"1992-01-01T00:00:00Z\",\"2020-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.24381/cds.006f2c9a\",\"keywords\":[\"Land Cover\",\"ESA\",\"CCI\",\"Global\"],\"providers\":[{\"url\":\"https://vito.be\",\"name\":\"VITO\",\"roles\":[\"licensor\"],\"description\":\"Provides the PROBA-V source data (for v2.0).\"},{\"url\":\"https://uclouvain.be\",\"name\":\"UCLouvain\",\"roles\":[\"producer\"],\"description\":\"UCLouvain produces the dataset (v2.1) for the ESA Climate Change Initiative.\"},{\"url\":\"https://brockmann-consult.de\",\"name\":\"Brockmann Consult\",\"roles\":[\"processor\"],\"description\":\"Brockmann Consult is responsible for the required pre-processing and the distribution of the dataset (v2.1).\"},{\"url\":\"http://esa-landcover-cci.org\",\"name\":\"ESA Climate Change Initiative\",\"roles\":[\"licensor\"],\"description\":\"The ESA Climate Change Initiative (CCI) is leading the product creation.\"},{\"url\":\"https://copernicus.eu\",\"name\":\"Copernicus\",\"roles\":[\"licensor\"],\"description\":\"Hosts the data on the Copernicus Climate Data Store (CDS).\"},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"esa_cci_lc:version\":[\"2.0.7cds\",\"2.1.1\"]},\"description\":\"The ESA Climate Change Initiative (CCI) [Land Cover dataset](https://cds.climate.copernicus.eu/cdsapp#!/dataset/satellite-land-cover?tab=overview) provides consistent global annual land cover maps at 300m spatial resolution from 1992 to 2020. The land cover classes are defined using the United Nations Food and Agriculture Organization's (UN FAO) [Land Cover Classification System](https://www.fao.org/land-water/land/land-governance/land-resources-planning-toolbox/category/details/en/c/1036361/) (LCCS). In addition to the land cover maps, four quality flags are produced to document the reliability of the classification and change detection. \\n\\nThe data in this Collection are the original NetCDF files accessed from the [Copernicus Climate Data Store](https://cds.climate.copernicus.eu/#!/home). We recommend users use the [`esa-cci-lc` Collection](planetarycomputer.microsoft.com/dataset/esa-cci-lc), which provides the data as Cloud Optimized GeoTIFFs.\",\"item_assets\":{\"netcdf\":{\"type\":\"application/netcdf\",\"roles\":[\"data\",\"quality\"],\"title\":\"ESA CCI Land Cover NetCDF 4 File\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"esa-cci-lc\",\"msft:container\":\"esa-cci-lc\",\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"landcoverdata\",\"msft:short_description\":\"ESA CCI global land cover maps in NetCDF format\",\"msft:region\":\"westeurope\"},{\"id\":\"fws-nwi\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi\"},{\"rel\":\"describedby\",\"href\":\"https://www.fws.gov/wetlands/Data/metadata/FWS_Wetlands.xml\",\"type\":\"application/xml\",\"title\":\"Wetlands metadata\"},{\"rel\":\"about\",\"href\":\"https://www.fws.gov/sites/default/files/documents/national-wetlands-inventory-fact-sheet.pdf\",\"type\":\"application/pdf\",\"title\":\"Project Fact Sheet\"},{\"rel\":\"about\",\"href\":\"https://www.fws.gov/program/national-wetlands-inventory\",\"type\":\"text/html\",\"title\":\"Project Landing Page\"},{\"rel\":\"license\",\"href\":\"http://www.usa.gov/publicdomain/label/1.0/\",\"type\":\"text/html\",\"title\":\"US Public Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/fws-nwi\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"FWS National Wetlands Inventory\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/fws-nwi-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"FWS National Wetlands Inventory thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-64.54958,13.16667,144.6,71.99633],[144.6,13.16667,180.0,71.99633],[-180.0,13.16667,-64.54958,71.99633]]},\"temporal\":{\"interval\":[[\"2022-10-01T00:00:00Z\",\"2022-10-01T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"USFWS\",\"Wetlands\",\"United States\"],\"providers\":[{\"url\":\"https://www.fws.gov\",\"name\":\"U.S. Fish and Wildlife Service\",\"email\":\"wetlands_team@fws.gov\",\"roles\":[\"producer\",\"licensor\"],\"description\":\"The U.S. Fish and Wildlife Service is the principal federal agency tasked with providing information to the public on the extent and status of the nation's wetland and deepwater habitats, as well as changes to these habitats over time.\"},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"fws_nwi:state\":[\"Alabama\",\"Alaska\",\"Arizona\",\"Arkansas\",\"California\",\"Colorado\",\"Connecticut\",\"Delaware\",\"District of Columbia\",\"Florida\",\"Georgia\",\"Hawaii\",\"Idaho\",\"Illinois\",\"Indiana\",\"Iowa\",\"Kansas\",\"Kentucky\",\"Louisiana\",\"Maine\",\"Maryland\",\"Massachusetts\",\"Michigan\",\"Minnesota\",\"Mississippi\",\"Missouri\",\"Montana\",\"Nebraska\",\"Nevada\",\"New Hampshire\",\"New Jersey\",\"New Mexico\",\"New York\",\"North Carolina\",\"North Dakota\",\"Ohio\",\"Oklahoma\",\"Oregon\",\"Pacific Trust Islands\",\"Pennsylvania\",\"Puerto Rico and Virgin Islands\",\"Rhode Island\",\"South Carolina\",\"South Dakota\",\"Tennessee\",\"Texas\",\"Utah\",\"Vermont\",\"Virginia\",\"Washington\",\"West Virginia\",\"Wisconsin\",\"Wyoming\"],\"fws_nwi:content\":[\"riparian\",\"historic_wetlands\",\"wetlands\"],\"fws_nwi:state_code\":[\"AL\",\"AK\",\"AZ\",\"AR\",\"CA\",\"CO\",\"CT\",\"DE\",\"DC\",\"FL\",\"GA\",\"HI\",\"ID\",\"IL\",\"IN\",\"IA\",\"KS\",\"KY\",\"LA\",\"ME\",\"MD\",\"MA\",\"MI\",\"MN\",\"MS\",\"MO\",\"MT\",\"NE\",\"NV\",\"NH\",\"NJ\",\"NM\",\"NY\",\"NC\",\"ND\",\"OH\",\"OK\",\"OR\",\"PacTrust\",\"PA\",\"PRVI\",\"RI\",\"SC\",\"SD\",\"TN\",\"TX\",\"UT\",\"VT\",\"VA\",\"WA\",\"WV\",\"WI\",\"WY\"]},\"description\":\"The Wetlands Data Layer is the product of over 45 years of work by the National Wetlands Inventory (NWI) and its collaborators and currently contains more than 35 million wetland and deepwater features. This dataset, covering the conterminous United States, Hawaii, Puerto Rico, the Virgin Islands, Guam, the major Northern Mariana Islands and Alaska, continues to grow at a rate of 50 to 100 million acres annually as data are updated.\\n\\n**NOTE:** Due to the variation in use and analysis of this data by the end user, each state's wetlands data extends beyond the state boundary. Each state includes wetlands data that intersect the 1:24,000 quadrangles that contain part of that state (1:2,000,000 source data). This allows the user to clip the data to their specific analysis datasets. Beware that two adjacent states will contain some of the same data along their borders.\\n\\nFor more information, visit the National Wetlands Inventory [homepage](https://www.fws.gov/program/national-wetlands-inventory).\\n\\n## STAC Metadata\\n\\nIn addition to the `zip` asset in every STAC item, each item has its own assets unique to its wetlands. In general, each item will have several assets, each linking to a [geoparquet](https://github.com/opengeospatial/geoparquet) asset with data for the entire region or a sub-region within that state. Use the `cloud-optimized` [role](https://github.com/radiantearth/stac-spec/blob/master/item-spec/item-spec.md#asset-roles) to select just the geoparquet assets. See the Example Notebook for more.\",\"item_assets\":{\"zip\":{\"type\":\"application/zip\",\"roles\":[\"data\",\"archive\",\"source\"]}},\"stac_version\":\"1.0.0\",\"msft:container\":\"fws-nwi\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Vector dataset containing wetlands boundaries and identification across the United States.\",\"msft:region\":\"westeurope\"},{\"id\":\"usgs-lcmap-conus-v13\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13\"},{\"rel\":\"about\",\"href\":\"https://www.usgs.gov/special-topics/lcmap/collection-13-conus-science-products\",\"type\":\"text/html\",\"title\":\"LCMAP CONUS Science Products\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/special-topics/lcmap/collection-13-conus-science-products\",\"type\":\"text/html\",\"title\":\"Proprietary, Unrestricted\"},{\"rel\":\"source\",\"href\":\"https://www.usgs.gov/special-topics/lcmap/lcmap-data-access\",\"type\":\"text/html\",\"title\":\"USGS Data Access Options\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.1016/j.rse.2019.111356\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.1016/j.rse.2014.01.011\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9C46NG0\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/usgs-lcmap-conus-v13\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS LCMAP CONUS Collection 1.3\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/usgs-lcmap-conus-v13-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"USGS LCMAP CONUS 1.3 Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/usgs-lcmap-conus-v13.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-129.27732,21.805095,-63.11843,52.92172]]},\"temporal\":{\"interval\":[[\"1985-01-01T00:00:00Z\",\"2021-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.5066/P9C46NG0\",\"keywords\":[\"USGS\",\"LCMAP\",\"Land Cover\",\"Land Cover Change\",\"CONUS\"],\"providers\":[{\"url\":\"https://www.usgs.gov/special-topics/lcmap\",\"name\":\"United States Geological Survey\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"usgs_lcmap:vertical_tile\":{\"maximum\":20,\"minimum\":0},\"usgs_lcmap:horizontal_tile\":{\"maximum\":32,\"minimum\":1}},\"description\":\"The [Land Change Monitoring, Assessment, and Projection](https://www.usgs.gov/special-topics/lcmap) (LCMAP) product provides land cover mapping and change monitoring from the U.S. Geological Survey's [Earth Resources Observation and Science](https://www.usgs.gov/centers/eros) (EROS) Center. LCMAP's Science Products are developed by applying time-series modeling on a per-pixel basis to [Landsat Analysis Ready Data](https://www.usgs.gov/landsat-missions/landsat-us-analysis-ready-data) (ARD) using an implementation of the [Continuous Change Detection and Classification](https://doi.org/10.1016/j.rse.2014.01.011) (CCDC) algorithm. All available clear (non-cloudy) U.S. Landsat ARD observations are fit to a harmonic model to predict future Landsat-like surface reflectance. Where Landsat surface reflectance observations differ significantly from those predictions, a change is identified. Attributes of the resulting model sequences (e.g., start/end dates, residuals, model coefficients) are then used to produce a set of land surface change products and as inputs to the subsequent classification to thematic land cover. \\n\\nThis [STAC](https://stacspec.org/en) Collection contains [LCMAP CONUS Collection 1.3](https://www.usgs.gov/special-topics/lcmap/collection-13-conus-science-products), which was released in August 2022 for years 1985-2021. The data are tiled according to the Landsat ARD tile grid and consist of [Cloud Optimized GeoTIFFs](https://www.cogeo.org/) (COGs) and corresponding metadata files. Note that the provided COGs differ slightly from those in the USGS source data. They have been reprocessed to add overviews, \\\"nodata\\\" values where appropriate, and an updated projection definition.\\n\",\"item_assets\":{\"dates\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Landsat Observation Dates\",\"description\":\"Landsat observation dates used as input to the CCDC algorithm.\"},\"lcpri\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Primary Land Cover\",\"description\":\"Land cover classification consisting of eight general land cover types. The most likely land cover according to the modeling process.\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"name\":\"nodata\",\"value\":0,\"color_hint\":\"000000\",\"description\":\"No Data\"},{\"name\":\"developed\",\"value\":1,\"color_hint\":\"ff3232\",\"description\":\"Developed\"},{\"name\":\"cropland\",\"value\":2,\"color_hint\":\"be8c5a\",\"description\":\"Cropland\"},{\"name\":\"grass_shrub\",\"value\":3,\"color_hint\":\"e6f0d2\",\"description\":\"Grass/Shrub\"},{\"name\":\"tree_cover\",\"value\":4,\"color_hint\":\"1c6330\",\"description\":\"Tree Cover\"},{\"name\":\"water\",\"value\":5,\"color_hint\":\"0070ff\",\"description\":\"Water\"},{\"name\":\"wetlands\",\"value\":6,\"color_hint\":\"b3d9ff\",\"description\":\"Wetlands\"},{\"name\":\"ice_snow\",\"value\":7,\"color_hint\":\"ffffff\",\"description\":\"Snow/Ice\"},{\"name\":\"barren\",\"value\":8,\"color_hint\":\"b3aea3\",\"description\":\"Barren\"}]},\"lcsec\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Secondary Land Cover\",\"description\":\"Land cover classification consisting of eight general land cover types. The second most likely land cover according to the modeling process.\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"name\":\"nodata\",\"value\":0,\"color_hint\":\"000000\",\"description\":\"No Data\"},{\"name\":\"developed\",\"value\":1,\"color_hint\":\"ff3232\",\"description\":\"Developed\"},{\"name\":\"cropland\",\"value\":2,\"color_hint\":\"be8c5a\",\"description\":\"Cropland\"},{\"name\":\"grass_shrub\",\"value\":3,\"color_hint\":\"e6f0d2\",\"description\":\"Grass/Shrub\"},{\"name\":\"tree_cover\",\"value\":4,\"color_hint\":\"1c6330\",\"description\":\"Tree Cover\"},{\"name\":\"water\",\"value\":5,\"color_hint\":\"0070ff\",\"description\":\"Water\"},{\"name\":\"wetlands\",\"value\":6,\"color_hint\":\"b3d9ff\",\"description\":\"Wetlands\"},{\"name\":\"ice_snow\",\"value\":7,\"color_hint\":\"ffffff\",\"description\":\"Snow/Ice\"},{\"name\":\"barren\",\"value\":8,\"color_hint\":\"b3aea3\",\"description\":\"Barren\"}]},\"scmag\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Change Magnitude\",\"description\":\"The spectral strength or intensity of a time series model 'break' when spectral observations have diverged from the model predictions.\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"float32\",\"spatial_resolution\":30}]},\"scmqa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Model Quality\",\"description\":\"Information regarding the type of time series model applied to the current product year.\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"name\":\"no_model\",\"value\":0,\"description\":\"No model established for July 1st of current year.\"},{\"name\":\"simple_model\",\"value\":4,\"description\":\"A partial, 4-coefficient harmonic model.\"},{\"name\":\"advanced_model\",\"value\":6,\"description\":\"A partial, 6-coefficient harmonic model.\"},{\"name\":\"full_model\",\"value\":8,\"description\":\"A full, 8-coefficient harmonic model.\"},{\"name\":\"start_fit\",\"value\":14,\"description\":\"A simple model at the beginning of a time series where sparse and/or highly variable spectral measurements prevent establishment of a harmonic model.\"},{\"name\":\"end_fit\",\"value\":24,\"description\":\"A simple model at the end of a time series where there are insufficient observations and/or time to establish a new harmonic model following a model break.\"},{\"name\":\"insufficient_clear\",\"value\":44,\"description\":\"A simple model for the entire time series in cases where fewer than 25% of input observations are labeled as 'Clear' or 'Water' by the U.S. Landsat ARD per-pixel quality band (PIXELQA).\"},{\"name\":\"persistent_snow\",\"value\":54,\"description\":\"A simple model for the entire time series in cases where 75% or more of input observations are labeled as 'Snow' by the U.S. Landsat ARD per-pixel quality band (PIXELQA).\"}]},\"browse\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"USGS Browse Image\",\"description\":\"Image generated by USGS for viewing LCMAP classification data in web applications.\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"lcachg\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Annual Land Cover Change\",\"description\":\"Synthesis of Primary Land Cover of current and previous year identifying changes in land cover class.\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"name\":\"nodata\",\"value\":0,\"color_hint\":\"000000\",\"description\":\"No Data\"},{\"name\":\"developed\",\"value\":1,\"color_hint\":\"ff3232\",\"description\":\"Developed\"},{\"name\":\"cropland\",\"value\":2,\"color_hint\":\"be8c5a\",\"description\":\"Cropland\"},{\"name\":\"grass_shrub\",\"value\":3,\"color_hint\":\"e6f0d2\",\"description\":\"Grass/Shrub\"},{\"name\":\"tree_cover\",\"value\":4,\"color_hint\":\"1c6330\",\"description\":\"Tree Cover\"},{\"name\":\"water\",\"value\":5,\"color_hint\":\"0070ff\",\"description\":\"Water\"},{\"name\":\"wetlands\",\"value\":6,\"color_hint\":\"b3d9ff\",\"description\":\"Wetlands\"},{\"name\":\"ice_snow\",\"value\":7,\"color_hint\":\"ffffff\",\"description\":\"Snow/Ice\"},{\"name\":\"barren\",\"value\":8,\"color_hint\":\"b3aea3\",\"description\":\"Barren\"},{\"name\":\"1_to_2\",\"value\":12,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Cropland\"},{\"name\":\"1_to_3\",\"value\":13,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Grass/Shrub\"},{\"name\":\"1_to_4\",\"value\":14,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Tree Cover\"},{\"name\":\"1_to_5\",\"value\":15,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Water\"},{\"name\":\"1_to_6\",\"value\":16,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Wetlands\"},{\"name\":\"1_to_7\",\"value\":17,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Snow/Ice\"},{\"name\":\"1_to_8\",\"value\":18,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Barren\"},{\"name\":\"2_to_1\",\"value\":21,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Developed\"},{\"name\":\"2_to_3\",\"value\":23,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Grass/Shrub\"},{\"name\":\"2_to_4\",\"value\":24,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Tree Cover\"},{\"name\":\"2_to_5\",\"value\":25,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Water\"},{\"name\":\"2_to_6\",\"value\":26,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Wetlands\"},{\"name\":\"2_to_7\",\"value\":27,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Snow/Ice\"},{\"name\":\"2_to_8\",\"value\":28,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Barren\"},{\"name\":\"3_to_1\",\"value\":31,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Developed\"},{\"name\":\"3_to_2\",\"value\":32,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Cropland\"},{\"name\":\"3_to_4\",\"value\":34,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Tree Cover\"},{\"name\":\"3_to_5\",\"value\":35,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Water\"},{\"name\":\"3_to_6\",\"value\":36,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Wetlands\"},{\"name\":\"3_to_7\",\"value\":37,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Snow/Ice\"},{\"name\":\"3_to_8\",\"value\":38,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Barren\"},{\"name\":\"4_to_1\",\"value\":41,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Developed\"},{\"name\":\"4_to_2\",\"value\":42,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Cropland\"},{\"name\":\"4_to_3\",\"value\":43,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Grass/Shrub\"},{\"name\":\"4_to_5\",\"value\":45,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Water\"},{\"name\":\"4_to_6\",\"value\":46,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Wetlands\"},{\"name\":\"4_to_7\",\"value\":47,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Snow/Ice\"},{\"name\":\"4_to_8\",\"value\":48,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Barren\"},{\"name\":\"5_to_1\",\"value\":51,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Developed\"},{\"name\":\"5_to_2\",\"value\":52,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Cropland\"},{\"name\":\"5_to_3\",\"value\":53,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Grass/Shrub\"},{\"name\":\"5_to_4\",\"value\":54,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Tree Cover\"},{\"name\":\"5_to_6\",\"value\":56,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Wetlands\"},{\"name\":\"5_to_7\",\"value\":57,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Snow/Ice\"},{\"name\":\"5_to_8\",\"value\":58,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Barren\"},{\"name\":\"6_to_1\",\"value\":61,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Developed\"},{\"name\":\"6_to_2\",\"value\":62,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Cropland\"},{\"name\":\"6_to_3\",\"value\":63,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Grass/Shrub\"},{\"name\":\"6_to_4\",\"value\":64,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Tree Cover\"},{\"name\":\"6_to_5\",\"value\":65,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Water\"},{\"name\":\"6_to_7\",\"value\":67,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Snow/Ice\"},{\"name\":\"6_to_8\",\"value\":68,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Barren\"},{\"name\":\"7_to_1\",\"value\":71,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Developed\"},{\"name\":\"7_to_2\",\"value\":72,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Cropland\"},{\"name\":\"7_to_3\",\"value\":73,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Grass/Shrub\"},{\"name\":\"7_to_4\",\"value\":74,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Tree Cover\"},{\"name\":\"7_to_5\",\"value\":75,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Water\"},{\"name\":\"7_to_6\",\"value\":76,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Wetlands\"},{\"name\":\"7_to_8\",\"value\":78,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Barren\"},{\"name\":\"8_to_1\",\"value\":81,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Developed\"},{\"name\":\"8_to_2\",\"value\":82,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Cropland\"},{\"name\":\"8_to_3\",\"value\":83,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Grass/Shrub\"},{\"name\":\"8_to_4\",\"value\":84,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Tree Cover\"},{\"name\":\"8_to_5\",\"value\":85,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Water\"},{\"name\":\"8_to_6\",\"value\":86,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Wetlands\"},{\"name\":\"8_to_7\",\"value\":87,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Snow/Ice\"}]},\"sclast\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Time Since Last Change\",\"description\":\"Time, in days, since the last identified Spectral Change (SCTIME).\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"scstab\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Spectral Stability Period\",\"description\":\"Measure of the amount of time in days that a pixel has been in its current spectral state as of July 1st. Current spectral state can refer to both during stable time series segments or a period outside of stable time series segments.\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"sctime\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Time of Spectral Change\",\"description\":\"Represents the timing of a spectral change within the current product year as the day of year the change occurred.\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"lcpconf\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Primary Land Cover Confidence\",\"description\":\"Provides provenance tracking and a measure of confidence that the Primary Land Cover label matches the training data.\",\"file:values\":[{\"values\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100],\"summary\":\"Measure of confidence that the Primary Land Cover label matches the training data.\"},{\"values\":[151],\"summary\":\"Time series model identified as transition from a Grass/Shrub class to a Tree Cover class. Primary Land Cover class assignment based on secondary analysis.\"},{\"values\":[152],\"summary\":\"Time series model identified as transition from a Tree Cover class to a Grass/Shrub class. Primary Land cover class assignment based on secondary analysis.\"},{\"values\":[201],\"summary\":\"No stable time series models were produced for this location. Primary Land Cover was assigned the land cover class present in NLCD-2001 (cross-walked to LCMAP Level 1 classification schema, see LCMAP Science Product Guide for more information).\"},{\"values\":[202],\"summary\":\"Insufficient data available to extend most recent time series model past July 1st of current year. Land cover assigned the last identified cover class from earlier year.\"},{\"values\":[211],\"summary\":\"July 1st falls in a gap between two stable time series models of the same land cover class. Primary Land Cover assigned the primary land cover class of those before/after models.\"},{\"values\":[212],\"summary\":\"July 1st falls in a gap between two stable time series models of differing land cover class. If July 1st is before the 'break date' of the earlier model, Primary Land Cover is assigned the primary land cover class of that earlier model. Otherwise, Primary Land Cover is assigned the primary land cover class of the subsequent, later model.\"},{\"values\":[213],\"summary\":\"Insufficient data available to establish a stable time series model at the beginning of the time series prior to July 1st of the current year. Primary Land Cover assigned the primary land cover class of 1st subsequent model.\"},{\"values\":[214],\"summary\":\"Insufficient data available to establish a new stable time series model following a break near the end of the time series prior to July 1st of the current year. Primary Land Cover assigned the last identified primary land cover class from earlier year.\"}],\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"lcsconf\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Secondary Land Cover Confidence\",\"description\":\"Provides provenance tracking and a measure of confidence that the Secondary Land Cover label matches the training data.\",\"file:values\":[{\"values\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100],\"summary\":\"Measure of confidence that the Secondary Land Cover label matches the training data.\"},{\"values\":[151],\"summary\":\"Time series model identified as transition from a Grass/Shrub class to a Tree Cover class in Primary Land Cover. Primary Land Cover class assignment based on secondary analysis and Secondary Land Cover class assigned logical opposite of Primary.\"},{\"values\":[152],\"summary\":\"Time series model identified as transition from a Tree Cover class to a Grass/Shrub class in Primary Land Cover. Primary Land Cover class assignment based on secondary analysis and Secondary Land Cover class assigned logical opposite of Primary.\"},{\"values\":[201],\"summary\":\"No stable time series models were produced for this location. Secondary Land Cover assigned the land cover class present in NLCD-2001 (cross-walked to LCMAP classification schema, see LCMAP Science Product Guide for more information).\"},{\"values\":[202],\"summary\":\"Insufficient data available to extend most recent time series model past July 1st of current year. Secondary Land Cover assigned the last identified secondary cover class from earlier year.\"},{\"values\":[211],\"summary\":\"July 1st falls in a gap between two stable time series models of the same secondary land cover class. Secondary Land Cover assigned the land cover class of those before/after models.\"},{\"values\":[212],\"summary\":\"July 1st falls in a gap between two stable time series models of differing secondary land cover classes. If July 1st is before the 'break date' of the earlier model, Secondary Land Cover is assigned the secondary land cover class of the earlier model. Otherwise, Secondary Land Cover is assigned the secondary land cover class of the subsequent model.\"},{\"values\":[213],\"summary\":\"Insufficient data available to establish a stable time series model at the beginning of the time series prior to July 1st of the current year. Secondary Land Cover assigned the secondary land cover class of 1st subsequent model.\"},{\"values\":[214],\"summary\":\"Insufficient data available to establish a new stable time series model following a break near the end of the time series prior to July 1st of the current year. Secondary Land Cover assigned the last identified secondary cover class from earlier year.\"}],\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"lcpri_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Primary Land Cover Metadata\",\"description\":\"Primary Land Cover product metadata\"},\"lcsec_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Secondary Land Cover Metadata\",\"description\":\"Secondary Land Cover product metadata\"},\"scmag_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Change Magnitude Metadata\",\"description\":\"Change Magnitude product metadata\"},\"scmqa_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Model Quality Metadata\",\"description\":\"Model Quality product metadata\"},\"lcachg_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Annual Land Cover Change Metadata\",\"description\":\"Annual Land Cover Change product metadata\"},\"sclast_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Time Since Last Change Metadata\",\"description\":\"Time Since Last Change product metadata\"},\"scstab_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Spectral Stability Period Metadata\",\"description\":\"Spectral Stability Period product metadata\"},\"sctime_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Time of Spectral Change Metadata\",\"description\":\"Time of Spectral Change product metadata\"},\"lcpconf_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Primary Land Cover Confidence Metadata\",\"description\":\"Primary Land Cover Confidence product metadata\"},\"lcsconf_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Secondary Land Cover Confidence Metadata\",\"description\":\"Secondary Land Cover Confidence product metadata\"}},\"sci:citation\":\"U.S. Geological Survey (USGS), 2022, Land Change Monitoring, Assessment, and Projection (LCMAP) Collection 1.3 Science Products for the Conterminous United States: USGS data release\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"usgs-lcmap\",\"msft:container\":\"lcmap\",\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.1.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.1016/j.rse.2019.111356\",\"citation\":\"Brown, J.F., Tollerud, H.J., Barber, C.P., Zhou, Q., Dwyer, J.L., Vogelmann, J.E., Loveland, T.R., Woodcock, C.E., Stehman, S.V., Zhu, Z., Pengra, B.W., Smith, K., Horton, J.A., Xian, G., Auch, R.F., Sohl, T.L., Sayler, K.L., Gallant, A.L., Zelenak, D., Reker, R.R., and Rover, J., 2020, Lessons learned implementing an operational continuous United States national land change monitoring capability-The Land Change Monitoring, Assessment, and Projection (LCMAP) approach: Remote Sensing of Environment, v. 238, article 111356\"},{\"doi\":\"10.1016/j.rse.2014.01.011\",\"citation\":\"Zhu, Z., and Woodcock, C.E., 2014, Continuous change detection and classification of land cover using all available Landsat data: Remote Sensing of Environment, v. 144, p. 152-171\"}],\"msft:storage_account\":\"landcoverdata\",\"msft:short_description\":\"USGS Land Change Monitoring, Assessment, and Projection (LCMAP) Collection 1.3 Science Products for the Conterminous United States.\",\"msft:region\":\"westeurope\"},{\"id\":\"usgs-lcmap-hawaii-v10\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10\"},{\"rel\":\"about\",\"href\":\"https://www.usgs.gov/special-topics/lcmap/collection-1-hawaii-science-products\",\"type\":\"text/html\",\"title\":\"LCMAP Hawaii Science Products\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/special-topics/lcmap/collection-1-hawaii-science-products\",\"type\":\"text/html\",\"title\":\"Proprietary, Unrestricted\"},{\"rel\":\"source\",\"href\":\"https://www.usgs.gov/special-topics/lcmap/lcmap-data-access\",\"type\":\"text/html\",\"title\":\"USGS Data Access Options\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.1016/j.jag.2022.103015\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.1016/j.rse.2019.111356\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P91E8M23\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/usgs-lcmap-hawaii-v10\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"USGS LCMAP Hawaii Collection 1.0\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/usgs-lcmap-hawaii-v10-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"USGS LCMAP Hawaii 1.0 Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/usgs-lcmap-hawaii-v10.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-161.27577,18.505136,-154.058649,22.624478]]},\"temporal\":{\"interval\":[[\"2000-01-01T00:00:00Z\",\"2020-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.5066/P91E8M23\",\"keywords\":[\"USGS\",\"LCMAP\",\"Land Cover\",\"Land Cover Change\",\"Hawaii\"],\"providers\":[{\"url\":\"https://www.usgs.gov/special-topics/lcmap\",\"name\":\"United States Geological Survey\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"usgs_lcmap:vertical_tile\":{\"maximum\":2,\"minimum\":0},\"usgs_lcmap:horizontal_tile\":{\"maximum\":4,\"minimum\":0}},\"description\":\"The [Land Change Monitoring, Assessment, and Projection](https://www.usgs.gov/special-topics/lcmap) (LCMAP) product provides land cover mapping and change monitoring from the U.S. Geological Survey's [Earth Resources Observation and Science](https://www.usgs.gov/centers/eros) (EROS) Center. LCMAP's Science Products are developed by applying time-series modeling on a per-pixel basis to [Landsat Analysis Ready Data](https://www.usgs.gov/landsat-missions/landsat-us-analysis-ready-data) (ARD) using an implementation of the [Continuous Change Detection and Classification](https://doi.org/10.1016/j.rse.2014.01.011) (CCDC) algorithm. All available clear (non-cloudy) U.S. Landsat ARD observations are fit to a harmonic model to predict future Landsat-like surface reflectance. Where Landsat surface reflectance observations differ significantly from those predictions, a change is identified. Attributes of the resulting model sequences (e.g., start/end dates, residuals, model coefficients) are then used to produce a set of land surface change products and as inputs to the subsequent classification to thematic land cover. \\n\\nThis [STAC](https://stacspec.org/en) Collection contains [LCMAP Hawaii Collection 1.0](https://www.usgs.gov/special-topics/lcmap/collection-1-hawaii-science-products), which was released in January 2022 for years 2000-2020. The data are tiled according to the Landsat ARD tile grid and consist of [Cloud Optimized GeoTIFFs](https://www.cogeo.org/) (COGs) and corresponding metadata files. Note that the provided COGs differ slightly from those in the USGS source data. They have been reprocessed to add overviews, \\\"nodata\\\" values where appropriate, and an updated projection definition.\\n\",\"item_assets\":{\"dates\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"Landsat Observation Dates\",\"description\":\"Landsat observation dates used as input to the CCDC algorithm.\"},\"lcpri\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Primary Land Cover\",\"description\":\"Land cover classification consisting of eight general land cover types. The most likely land cover according to the modeling process.\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"name\":\"nodata\",\"value\":0,\"color_hint\":\"000000\",\"description\":\"No Data\"},{\"name\":\"developed\",\"value\":1,\"color_hint\":\"ff3232\",\"description\":\"Developed\"},{\"name\":\"cropland\",\"value\":2,\"color_hint\":\"be8c5a\",\"description\":\"Cropland\"},{\"name\":\"grass_shrub\",\"value\":3,\"color_hint\":\"e6f0d2\",\"description\":\"Grass/Shrub\"},{\"name\":\"tree_cover\",\"value\":4,\"color_hint\":\"1c6330\",\"description\":\"Tree Cover\"},{\"name\":\"water\",\"value\":5,\"color_hint\":\"0070ff\",\"description\":\"Water\"},{\"name\":\"wetlands\",\"value\":6,\"color_hint\":\"b3d9ff\",\"description\":\"Wetlands\"},{\"name\":\"ice_snow\",\"value\":7,\"color_hint\":\"ffffff\",\"description\":\"Snow/Ice\"},{\"name\":\"barren\",\"value\":8,\"color_hint\":\"b3aea3\",\"description\":\"Barren\"}]},\"lcsec\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Secondary Land Cover\",\"description\":\"Land cover classification consisting of eight general land cover types. The second most likely land cover according to the modeling process.\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"name\":\"nodata\",\"value\":0,\"color_hint\":\"000000\",\"description\":\"No Data\"},{\"name\":\"developed\",\"value\":1,\"color_hint\":\"ff3232\",\"description\":\"Developed\"},{\"name\":\"cropland\",\"value\":2,\"color_hint\":\"be8c5a\",\"description\":\"Cropland\"},{\"name\":\"grass_shrub\",\"value\":3,\"color_hint\":\"e6f0d2\",\"description\":\"Grass/Shrub\"},{\"name\":\"tree_cover\",\"value\":4,\"color_hint\":\"1c6330\",\"description\":\"Tree Cover\"},{\"name\":\"water\",\"value\":5,\"color_hint\":\"0070ff\",\"description\":\"Water\"},{\"name\":\"wetlands\",\"value\":6,\"color_hint\":\"b3d9ff\",\"description\":\"Wetlands\"},{\"name\":\"ice_snow\",\"value\":7,\"color_hint\":\"ffffff\",\"description\":\"Snow/Ice\"},{\"name\":\"barren\",\"value\":8,\"color_hint\":\"b3aea3\",\"description\":\"Barren\"}]},\"scmag\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Change Magnitude\",\"description\":\"The spectral strength or intensity of a time series model 'break' when spectral observations have diverged from the model predictions.\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"float32\",\"spatial_resolution\":30}]},\"scmqa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Model Quality\",\"description\":\"Information regarding the type of time series model applied to the current product year.\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"name\":\"no_model\",\"value\":0,\"description\":\"No model established for July 1st of current year.\"},{\"name\":\"simple_model\",\"value\":4,\"description\":\"A partial, 4-coefficient harmonic model.\"},{\"name\":\"advanced_model\",\"value\":6,\"description\":\"A partial, 6-coefficient harmonic model.\"},{\"name\":\"full_model\",\"value\":8,\"description\":\"A full, 8-coefficient harmonic model.\"},{\"name\":\"start_fit\",\"value\":14,\"description\":\"A simple model at the beginning of a time series where sparse and/or highly variable spectral measurements prevent establishment of a harmonic model.\"},{\"name\":\"end_fit\",\"value\":24,\"description\":\"A simple model at the end of a time series where there are insufficient observations and/or time to establish a new harmonic model following a model break.\"},{\"name\":\"insufficient_clear\",\"value\":44,\"description\":\"A simple model for the entire time series in cases where fewer than 25% of input observations are labeled as 'Clear' or 'Water' by the U.S. Landsat ARD per-pixel quality band (PIXELQA).\"},{\"name\":\"persistent_snow\",\"value\":54,\"description\":\"A simple model for the entire time series in cases where 75% or more of input observations are labeled as 'Snow' by the U.S. Landsat ARD per-pixel quality band (PIXELQA).\"}]},\"browse\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"USGS Browse Image\",\"description\":\"Image generated by USGS for viewing LCMAP classification data in web applications.\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"lcachg\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Annual Land Cover Change\",\"description\":\"Synthesis of Primary Land Cover of current and previous year identifying changes in land cover class.\",\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}],\"classification:classes\":[{\"name\":\"nodata\",\"value\":0,\"color_hint\":\"000000\",\"description\":\"No Data\"},{\"name\":\"developed\",\"value\":1,\"color_hint\":\"ff3232\",\"description\":\"Developed\"},{\"name\":\"cropland\",\"value\":2,\"color_hint\":\"be8c5a\",\"description\":\"Cropland\"},{\"name\":\"grass_shrub\",\"value\":3,\"color_hint\":\"e6f0d2\",\"description\":\"Grass/Shrub\"},{\"name\":\"tree_cover\",\"value\":4,\"color_hint\":\"1c6330\",\"description\":\"Tree Cover\"},{\"name\":\"water\",\"value\":5,\"color_hint\":\"0070ff\",\"description\":\"Water\"},{\"name\":\"wetlands\",\"value\":6,\"color_hint\":\"b3d9ff\",\"description\":\"Wetlands\"},{\"name\":\"ice_snow\",\"value\":7,\"color_hint\":\"ffffff\",\"description\":\"Snow/Ice\"},{\"name\":\"barren\",\"value\":8,\"color_hint\":\"b3aea3\",\"description\":\"Barren\"},{\"name\":\"1_to_2\",\"value\":12,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Cropland\"},{\"name\":\"1_to_3\",\"value\":13,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Grass/Shrub\"},{\"name\":\"1_to_4\",\"value\":14,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Tree Cover\"},{\"name\":\"1_to_5\",\"value\":15,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Water\"},{\"name\":\"1_to_6\",\"value\":16,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Wetlands\"},{\"name\":\"1_to_7\",\"value\":17,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Snow/Ice\"},{\"name\":\"1_to_8\",\"value\":18,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Developed to Barren\"},{\"name\":\"2_to_1\",\"value\":21,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Developed\"},{\"name\":\"2_to_3\",\"value\":23,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Grass/Shrub\"},{\"name\":\"2_to_4\",\"value\":24,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Tree Cover\"},{\"name\":\"2_to_5\",\"value\":25,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Water\"},{\"name\":\"2_to_6\",\"value\":26,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Wetlands\"},{\"name\":\"2_to_7\",\"value\":27,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Snow/Ice\"},{\"name\":\"2_to_8\",\"value\":28,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Cropland to Barren\"},{\"name\":\"3_to_1\",\"value\":31,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Developed\"},{\"name\":\"3_to_2\",\"value\":32,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Cropland\"},{\"name\":\"3_to_4\",\"value\":34,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Tree Cover\"},{\"name\":\"3_to_5\",\"value\":35,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Water\"},{\"name\":\"3_to_6\",\"value\":36,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Wetlands\"},{\"name\":\"3_to_7\",\"value\":37,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Snow/Ice\"},{\"name\":\"3_to_8\",\"value\":38,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Grass/Shrub to Barren\"},{\"name\":\"4_to_1\",\"value\":41,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Developed\"},{\"name\":\"4_to_2\",\"value\":42,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Cropland\"},{\"name\":\"4_to_3\",\"value\":43,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Grass/Shrub\"},{\"name\":\"4_to_5\",\"value\":45,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Water\"},{\"name\":\"4_to_6\",\"value\":46,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Wetlands\"},{\"name\":\"4_to_7\",\"value\":47,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Snow/Ice\"},{\"name\":\"4_to_8\",\"value\":48,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Tree Cover to Barren\"},{\"name\":\"5_to_1\",\"value\":51,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Developed\"},{\"name\":\"5_to_2\",\"value\":52,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Cropland\"},{\"name\":\"5_to_3\",\"value\":53,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Grass/Shrub\"},{\"name\":\"5_to_4\",\"value\":54,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Tree Cover\"},{\"name\":\"5_to_6\",\"value\":56,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Wetlands\"},{\"name\":\"5_to_7\",\"value\":57,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Snow/Ice\"},{\"name\":\"5_to_8\",\"value\":58,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Water to Barren\"},{\"name\":\"6_to_1\",\"value\":61,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Developed\"},{\"name\":\"6_to_2\",\"value\":62,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Cropland\"},{\"name\":\"6_to_3\",\"value\":63,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Grass/Shrub\"},{\"name\":\"6_to_4\",\"value\":64,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Tree Cover\"},{\"name\":\"6_to_5\",\"value\":65,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Water\"},{\"name\":\"6_to_7\",\"value\":67,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Snow/Ice\"},{\"name\":\"6_to_8\",\"value\":68,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Wetlands to Barren\"},{\"name\":\"7_to_1\",\"value\":71,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Developed\"},{\"name\":\"7_to_2\",\"value\":72,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Cropland\"},{\"name\":\"7_to_3\",\"value\":73,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Grass/Shrub\"},{\"name\":\"7_to_4\",\"value\":74,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Tree Cover\"},{\"name\":\"7_to_5\",\"value\":75,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Water\"},{\"name\":\"7_to_6\",\"value\":76,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Wetlands\"},{\"name\":\"7_to_8\",\"value\":78,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Snow/Ice to Barren\"},{\"name\":\"8_to_1\",\"value\":81,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Developed\"},{\"name\":\"8_to_2\",\"value\":82,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Cropland\"},{\"name\":\"8_to_3\",\"value\":83,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Grass/Shrub\"},{\"name\":\"8_to_4\",\"value\":84,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Tree Cover\"},{\"name\":\"8_to_5\",\"value\":85,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Water\"},{\"name\":\"8_to_6\",\"value\":86,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Wetlands\"},{\"name\":\"8_to_7\",\"value\":87,\"color_hint\":\"ab00d6\",\"description\":\"Cover change from Barren to Snow/Ice\"}]},\"sclast\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Time Since Last Change\",\"description\":\"Time, in days, since the last identified Spectral Change (SCTIME).\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"scstab\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Spectral Stability Period\",\"description\":\"Measure of the amount of time in days that a pixel has been in its current spectral state as of July 1st. Current spectral state can refer to both during stable time series segments or a period outside of stable time series segments.\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"sctime\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Time of Spectral Change\",\"description\":\"Represents the timing of a spectral change within the current product year as the day of year the change occurred.\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"uint16\",\"spatial_resolution\":30}]},\"lcpconf\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Primary Land Cover Confidence\",\"description\":\"Provides provenance tracking and a measure of confidence that the Primary Land Cover label matches the training data.\",\"file:values\":[{\"values\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100],\"summary\":\"Measure of confidence that the Primary Land Cover label matches the training data.\"},{\"values\":[151],\"summary\":\"Time series model identified as transition from a Grass/Shrub class to a Tree Cover class. Primary Land Cover class assignment based on secondary analysis.\"},{\"values\":[152],\"summary\":\"Time series model identified as transition from a Tree Cover class to a Grass/Shrub class. Primary Land cover class assignment based on secondary analysis.\"},{\"values\":[201],\"summary\":\"No stable time series models were produced for this location. Primary Land Cover was assigned the land cover class present in NLCD-2001 (cross-walked to LCMAP Level 1 classification schema, see LCMAP Science Product Guide for more information).\"},{\"values\":[202],\"summary\":\"Insufficient data available to extend most recent time series model past July 1st of current year. Land cover assigned the last identified cover class from earlier year.\"},{\"values\":[211],\"summary\":\"July 1st falls in a gap between two stable time series models of the same land cover class. Primary Land Cover assigned the primary land cover class of those before/after models.\"},{\"values\":[212],\"summary\":\"July 1st falls in a gap between two stable time series models of differing land cover class. If July 1st is before the 'break date' of the earlier model, Primary Land Cover is assigned the primary land cover class of that earlier model. Otherwise, Primary Land Cover is assigned the primary land cover class of the subsequent, later model.\"},{\"values\":[213],\"summary\":\"Insufficient data available to establish a stable time series model at the beginning of the time series prior to July 1st of the current year. Primary Land Cover assigned the primary land cover class of 1st subsequent model.\"},{\"values\":[214],\"summary\":\"Insufficient data available to establish a new stable time series model following a break near the end of the time series prior to July 1st of the current year. Primary Land Cover assigned the last identified primary land cover class from earlier year.\"}],\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"lcsconf\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Secondary Land Cover Confidence\",\"description\":\"Provides provenance tracking and a measure of confidence that the Secondary Land Cover label matches the training data.\",\"file:values\":[{\"values\":[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100],\"summary\":\"Measure of confidence that the Secondary Land Cover label matches the training data.\"},{\"values\":[151],\"summary\":\"Time series model identified as transition from a Grass/Shrub class to a Tree Cover class in Primary Land Cover. Primary Land Cover class assignment based on secondary analysis and Secondary Land Cover class assigned logical opposite of Primary.\"},{\"values\":[152],\"summary\":\"Time series model identified as transition from a Tree Cover class to a Grass/Shrub class in Primary Land Cover. Primary Land Cover class assignment based on secondary analysis and Secondary Land Cover class assigned logical opposite of Primary.\"},{\"values\":[201],\"summary\":\"No stable time series models were produced for this location. Secondary Land Cover assigned the land cover class present in NLCD-2001 (cross-walked to LCMAP classification schema, see LCMAP Science Product Guide for more information).\"},{\"values\":[202],\"summary\":\"Insufficient data available to extend most recent time series model past July 1st of current year. Secondary Land Cover assigned the last identified secondary cover class from earlier year.\"},{\"values\":[211],\"summary\":\"July 1st falls in a gap between two stable time series models of the same secondary land cover class. Secondary Land Cover assigned the land cover class of those before/after models.\"},{\"values\":[212],\"summary\":\"July 1st falls in a gap between two stable time series models of differing secondary land cover classes. If July 1st is before the 'break date' of the earlier model, Secondary Land Cover is assigned the secondary land cover class of the earlier model. Otherwise, Secondary Land Cover is assigned the secondary land cover class of the subsequent model.\"},{\"values\":[213],\"summary\":\"Insufficient data available to establish a stable time series model at the beginning of the time series prior to July 1st of the current year. Secondary Land Cover assigned the secondary land cover class of 1st subsequent model.\"},{\"values\":[214],\"summary\":\"Insufficient data available to establish a new stable time series model following a break near the end of the time series prior to July 1st of the current year. Secondary Land Cover assigned the last identified secondary cover class from earlier year.\"}],\"raster:bands\":[{\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"lcpri_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Primary Land Cover Metadata\",\"description\":\"Primary Land Cover product metadata\"},\"lcsec_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Secondary Land Cover Metadata\",\"description\":\"Secondary Land Cover product metadata\"},\"scmag_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Change Magnitude Metadata\",\"description\":\"Change Magnitude product metadata\"},\"scmqa_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Model Quality Metadata\",\"description\":\"Model Quality product metadata\"},\"lcachg_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Annual Land Cover Change Metadata\",\"description\":\"Annual Land Cover Change product metadata\"},\"sclast_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Time Since Last Change Metadata\",\"description\":\"Time Since Last Change product metadata\"},\"scstab_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Spectral Stability Period Metadata\",\"description\":\"Spectral Stability Period product metadata\"},\"sctime_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Time of Spectral Change Metadata\",\"description\":\"Time of Spectral Change product metadata\"},\"lcpconf_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Primary Land Cover Confidence Metadata\",\"description\":\"Primary Land Cover Confidence product metadata\"},\"lcsconf_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Secondary Land Cover Confidence Metadata\",\"description\":\"Secondary Land Cover Confidence product metadata\"}},\"sci:citation\":\"U.S. Geological Survey (USGS), 2022, Land Change Monitoring, Assessment, and Projection (LCMAP) Collection 1.0 Science Products for Hawaii: USGS data release\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"usgs-lcmap\",\"msft:container\":\"lcmap\",\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.1.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.1016/j.jag.2022.103015\",\"citation\":\"Li, C., Xian, G., Wellington, D., Smith, K., Horton, J., & Zhou, Q., 2022, Development of the LCMAP annual land cover product across Hawaii: International Journal of Applied Earth Observation and Geoinformation, v. 113, article 103015.\"},{\"doi\":\"10.1016/j.rse.2019.111356\",\"citation\":\"Brown, J.F., Tollerud, H.J., Barber, C.P., Zhou, Q., Dwyer, J.L., Vogelmann, J.E., Loveland, T.R., Woodcock, C.E., Stehman, S.V., Zhu, Z., Pengra, B.W., Smith, K., Horton, J.A., Xian, G., Auch, R.F., Sohl, T.L., Sayler, K.L., Gallant, A.L., Zelenak, D., Reker, R.R., and Rover, J., 2020, Lessons learned implementing an operational continuous United States national land change monitoring capability-The Land Change Monitoring, Assessment, and Projection (LCMAP) approach: Remote Sensing of Environment, v. 238, article 111356\"}],\"msft:storage_account\":\"landcoverdata\",\"msft:short_description\":\"USGS Land Change Monitoring, Assessment, and Projection (LCMAP) Collection 1.0 Science Products for Hawaii\",\"msft:region\":\"westeurope\"},{\"id\":\"noaa-climate-normals-tabular\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.1175/BAMS-D-11-00197.1\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.1175/BAMS-D-11-00173.1\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/products/land-based-station/us-climate-normals\",\"type\":\"text/html\",\"title\":\"NOAA U.S. Climate Normals Landing Page\"},{\"rel\":\"license\",\"href\":\"https://www.noaa.gov/information-technology/open-data-dissemination\",\"type\":\"text/html\",\"title\":\"NOAA Open Data Dissemination\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-climate-normals-tabular\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"NOAA US Tabular Climate Normals\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-climate-normals-tabular-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"NOAA U.S. Tabular Climate Normals Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-climate-normals-tabular.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-177.38333,-14.3306,174.1,71.3214]]},\"temporal\":{\"interval\":[[\"1981-01-01T00:00:00Z\",\"2020-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"NOAA\",\"Climate Normals\",\"Weather\",\"Surface Observations\",\"Climatology\",\"CONUS\"],\"providers\":[{\"url\":\"https://www.ncei.noaa.gov/\",\"name\":\"NOAA National Centers for Environmental Information\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"noaa_climate_normals:period\":[\"1981-2010\",\"1991-2020\",\"2006-2020\"],\"noaa_climate_normals:frequency\":[\"hourly\",\"daily\",\"monthly\",\"annualseasonal\"]},\"description\":\"The [NOAA United States Climate Normals](https://www.ncei.noaa.gov/products/land-based-station/us-climate-normals) provide information about typical climate conditions for thousands of weather station locations across the United States. Normals act both as a ruler to compare current weather and as a predictor of conditions in the near future. The official normals are calculated for a uniform 30 year period, and consist of annual/seasonal, monthly, daily, and hourly averages and statistics of temperature, precipitation, and other climatological variables for each weather station. \\n\\nNOAA produces Climate Normals in accordance with the [World Meteorological Organization](https://public.wmo.int/en) (WMO), of which the United States is a member. The WMO requires each member nation to compute 30-year meteorological quantity averages at least every 30 years, and recommends an update each decade, in part to incorporate newer weather stations. The 1991\u20132020 U.S. Climate Normals are the latest in a series of decadal normals first produced in the 1950s. \\n\\nThis Collection contains tabular weather variable data at weather station locations in GeoParquet format, converted from the source CSV files. The source NetCDF files are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\n\\nData are provided for annual/seasonal, monthly, daily, and hourly frequencies for the following time periods:\\n\\n- Legacy 30-year normals (1981\u20132010)\\n- Supplemental 15-year normals (2006\u20132020)\\n\",\"item_assets\":{\"geoparquet\":{\"type\":\"application/x-parquet\",\"roles\":[\"data\"],\"title\":\"Dataset root\",\"table:storage_options\":{\"account_name\":\"noaanormals\"}}},\"msft:region\":\"eastus\",\"stac_version\":\"1.0.0\",\"table:tables\":[{\"name\":\"1981_2010-hourly\",\"description\":\"Hourly Climate Normals for Period 1981-2010\"},{\"name\":\"1981_2010-daily\",\"description\":\"Daily Climate Normals for Period 1981-2010\"},{\"name\":\"1981_2010-monthly\",\"description\":\"Monthly Climate Normals for Period 1981-2010\"},{\"name\":\"1981_2010-annualseasonal\",\"description\":\"Annual/Seasonal Climate Normals for Period 1981-2010\"},{\"name\":\"1991_2020-hourly\",\"description\":\"Hourly Climate Normals for Period 1991-2020\"},{\"name\":\"1991_2020-daily\",\"description\":\"Daily Climate Normals for Period 1991-2020\"},{\"name\":\"1991_2020-monthly\",\"description\":\"Monthly Climate Normals for Period 1991-2020\"},{\"name\":\"1991_2020-annualseasonal\",\"description\":\"Annual/Seasonal Climate Normals for Period 1991-2020\"},{\"name\":\"2006_2020-hourly\",\"description\":\"Hourly Climate Normals for Period 2006-2020\"},{\"name\":\"2006_2020-daily\",\"description\":\"Daily Climate Normals for Period 2006-2020\"},{\"name\":\"2006_2020-monthly\",\"description\":\"Monthly Climate Normals for Period 2006-2020\"},{\"name\":\"2006_2020-annualseasonal\",\"description\":\"Annual/Seasonal Climate Normals for Period 2006-2020\"}],\"msft:group_id\":\"noaa-climate-normals\",\"msft:container\":\"climate-normals-geoparquet\",\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.1175/BAMS-D-11-00197.1\",\"citation\":\"Arguez, A., I. Durre, S. Applequist, R. Vose, M. Squires, X. Yin, R. Heim, and T. Owen, 2012: NOAA's 1981-2010 climate normals: An overview. Bull. Amer. Meteor. Soc., 93, 1687-1697. DOI: 10.1175/BAMS-D-11-00197.1.\"},{\"doi\":\"10.1175/BAMS-D-11-00173.1\",\"citation\":\"Applequist, S., A. Arguez, I. Durre, M. Squires, R. Vose, and X. Yin, 2012: 1981-2010 U.S. Hourly Normals. Bulletin of the American Meteorological Society, 93, 1637-1640. DOI: 10.1175/BAMS-D-11-00173.1.\"}],\"msft:storage_account\":\"noaanormals\",\"msft:short_description\":\"Tabular Climate Normal data for over 15,000 United States weather station locations in GeoParquet format.\"},{\"id\":\"noaa-climate-normals-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/products/land-based-station/us-climate-normals\",\"type\":\"text/html\",\"title\":\"NOAA U.S. Climate Normals Landing Page\"},{\"rel\":\"license\",\"href\":\"https://www.noaa.gov/information-technology/open-data-dissemination\",\"type\":\"text/html\",\"title\":\"NOAA Open Data Dissemination\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/sites/default/files/2022-04/Readme_Monthly_Gridded_Normals.pdf\",\"type\":\"application/pdf\",\"title\":\"Readme for Monthly Gridded Normals\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/sites/default/files/2022-04/Documentation_Monthly_Gridded_Normals.pdf\",\"type\":\"application/pdf\",\"title\":\"Documentation for Monthly Gridded Normals\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-climate-normals-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"NOAA US Gridded Climate Normals (NetCDF)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-climate-normals-netcdf-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"NOAA U.S. Gridded Climate Normals (NetCDF) Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-climate-normals-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-124.708333,24.541666,-66.999995,49.375001]]},\"temporal\":{\"interval\":[[\"1901-01-01T00:00:00Z\",\"2020-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"NOAA\",\"Climate Normals\",\"Weather\",\"Surface Observations\",\"Climatology\",\"CONUS\"],\"providers\":[{\"url\":\"https://www.ncei.noaa.gov/\",\"name\":\"NOAA National Centers for Environmental Information\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"noaa_climate_normals:period\":[\"1901-2000\",\"1991-2020\",\"2006-2020\"],\"noaa_climate_normals:frequency\":[\"daily\",\"monthly\"]},\"description\":\"The [NOAA Gridded United States Climate Normals](https://www.ncei.noaa.gov/products/land-based-station/us-climate-normals#tab-1027) provide a continuous grid of temperature and precipitation data across the contiguous United States (CONUS). The grids are derived from NOAA's [NClimGrid dataset](https://planetarycomputer.microsoft.com/dataset/group/noaa-nclimgrid), and resolutions (nominal 5x5 kilometer) and spatial extents (CONUS) therefore match that of NClimGrid. Monthly, seasonal, and annual gridded normals are computed from simple averages of the NClimGrid data and are provided for three time-periods: 1901\u20132020, 1991\u20132020, and 2006\u20132020. Daily gridded normals are smoothed for a smooth transition from one day to another and are provided for two time-periods: 1991\u20132020, and 2006\u20132020.\\n\\nNOAA produces Climate Normals in accordance with the [World Meteorological Organization](https://public.wmo.int/en) (WMO), of which the United States is a member. The WMO requires each member nation to compute 30-year meteorological quantity averages at least every 30 years, and recommends an update each decade, in part to incorporate newer weather stations. The 1991\u20132020 U.S. Climate Normals are the latest in a series of decadal normals first produced in the 1950s. \\n\\nThe data in this Collection are the original NetCDF files provided by NOAA's National Centers for Environmental Information. This Collection contains gridded data for the following frequencies and time periods:\\n\\n- Annual, seasonal, and monthly normals\\n - 100-year (1901\u20132000)\\n - 30-year (1991\u20132020)\\n \ - 15-year (2006\u20132020)\\n- Daily normals\\n - 30-year (1991\u20132020)\\n \ - 15-year (2006\u20132020)\\n\\nFor most use-cases, we recommend using the [`noaa-climate-normals-gridded`](https://planetarycomputer.microsoft.com/dataset/noaa-climate-normals-gridded) collection, which contains the same data in Cloud Optimized GeoTIFF format. The NetCDF files are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\n\",\"item_assets\":{\"netcdf\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"]}},\"msft:region\":\"eastus\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-climate-normals\",\"msft:container\":\"gridded-normals\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"noaanormals\",\"msft:short_description\":\"Gridded Climate Normals for the contiguous United States in the original NetCDF format provided by NOAA's National Centers for Environmental Information.\"},{\"id\":\"goes-glm\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm\"},{\"rel\":\"license\",\"href\":\"https://www.ncei.noaa.gov/access/metadata/landing-page/bin/iso?id=gov.noaa.ncdc:C01527\",\"title\":\"License\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/access/metadata/landing-page/bin/iso?id=gov.noaa.ncdc:C01527\",\"type\":\"text/html\",\"title\":\"Product Landing Page\"},{\"rel\":\"about\",\"href\":\"https://www.goes-r.gov/users/docs/PUG-main-vol1.pdf\",\"type\":\"application/pdf\",\"title\":\"Product Definition and Users' Guide (PUG) Vol.1 Main\"},{\"rel\":\"about\",\"href\":\"https://www.goes-r.gov/products/docs/PUG-L2+-vol5.pdf\",\"type\":\"application/pdf\",\"title\":\"Product Definition and Users' Guide (PUG) Vol.5 Level 2+ Products\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.7289/V5KH0KK6\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/goes-glm\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"GOES-R Lightning Detection\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/goes-glm-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"GOES GLM Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/goes-glm.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"QS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-66.56,-8.44,66.56],[156.44,-66.56,180.0,66.56]]},\"temporal\":{\"interval\":[[\"2018-02-13T16:10:00Z\",null]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.7289/V5KH0KK6\",\"keywords\":[\"GOES\",\"NOAA\",\"NASA\",\"Satellite\",\"Lightning\",\"Weather\"],\"providers\":[{\"url\":\"https://www.nasa.gov/content/goes\",\"name\":\"NASA\",\"roles\":[\"producer\"]},{\"url\":\"https://www.goes-r.gov/\",\"name\":\"NOAA\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[8000],\"mission\":[\"GOES\"],\"platform\":[\"GOES-16\",\"GOES-17\",\"GOES-18\",\"GOES-19\"],\"instruments\":[\"FM1\",\"FM2\"],\"constellation\":[\"GOES\"],\"processing:level\":[\"L2\"],\"goes:orbital-slot\":[\"West\",\"East\",\"Test\"]},\"description\":\"The [Geostationary Lightning Mapper (GLM)](https://www.goes-r.gov/spacesegment/glm.html) is a single-channel, near-infrared optical transient detector that can detect the momentary changes in an optical scene, indicating the presence of lightning. GLM measures total lightning (in-cloud, cloud-to-cloud and cloud-to-ground) activity continuously over the Americas and adjacent ocean regions with near-uniform spatial resolution of approximately 10 km. GLM collects information such as the frequency, location and extent of lightning discharges to identify intensifying thunderstorms and tropical cyclones. Trends in total lightning available from the GLM provide critical information to forecasters, allowing them to focus on developing severe storms much earlier and before these storms produce damaging winds, hail or even tornadoes.\\n\\nThe GLM data product consists of a hierarchy of earth-located lightning radiant energy measures including events, groups, and flashes:\\n\\n- Lightning events are detected by the instrument.\\n- Lightning groups are a collection of one or more lightning events that satisfy temporal and spatial coincidence thresholds.\\n- Similarly, lightning flashes are a collection of one or more lightning groups that satisfy temporal and spatial coincidence thresholds.\\n\\nThe product includes the relationship among lightning events, groups, and flashes, and the area coverage of lightning groups and flashes. The product also includes processing and data quality metadata, and satellite state and location information. \\n\\nThe NetCDF files are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\",\"item_assets\":{\"netcdf\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"],\"title\":\"Original NetCDF4 file\"}},\"msft:region\":\"westeurope\",\"sci:citation\":\"GOES-R Algorithm Working Group and GOES-R Series Program, (2018): NOAA GOES-R Series Geostationary Lightning Mapper (GLM) Level 2 Lightning Detection: Events, Groups, and Flashes. NOAA National Centers for Environmental Information. doi:10.7289/V5KH0KK6.\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"goes\",\"msft:container\":\"noaa-goes-geoparquet\",\"stac_extensions\":[\"https://stac-extensions.github.io/goes/v1.0.0/schema.json\",\"https://stac-extensions.github.io/processing/v1.1.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"goeseuwest\",\"msft:short_description\":\"Continuous lightning detection over the Western Hemisphere from the Geostationary Lightning Mapper (GLM) instrument.\"},{\"id\":\"sentinel-1-grd\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"Copernicus Sentinel data terms\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-1-grd\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel 1 Level-1 Ground Range Detected (GRD)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-1-grd.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Sentinel 1 GRD\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-1-grd.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2014-10-10T00:28:21Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"ESA\",\"Copernicus\",\"Sentinel\",\"C-Band\",\"SAR\",\"GRD\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"platform\":[\"SENTINEL-1A\",\"SENTINEL-1B\",\"SENTINEL-1C\"],\"constellation\":[\"Sentinel-1\"],\"s1:resolution\":[\"full\",\"high\",\"medium\"],\"s1:orbit_source\":[\"DOWNLINK\",\"POEORB\",\"PREORB\",\"RESORB\"],\"sar:looks_range\":[5,6,3,2],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"sar:product_type\":[\"GRD\"],\"sar:looks_azimuth\":[1,6,2],\"sar:polarizations\":[[\"VV\",\"VH\"],[\"HH\",\"HV\"],[\"VV\"],[\"VH\"],[\"HH\"],[\"HV\"]],\"sar:frequency_band\":[\"C\"],\"s1:processing_level\":[\"1\"],\"sar:instrument_mode\":[\"IW\",\"EW\",\"SM\"],\"sar:center_frequency\":[5.405],\"sar:resolution_range\":[20,23,50,93,9],\"s1:product_timeliness\":[\"NRT-10m\",\"NRT-1h\",\"NRT-3h\",\"Fast-24h\",\"Off-line\",\"Reprocessing\"],\"sar:resolution_azimuth\":[22,23,50,87,9],\"sar:pixel_spacing_range\":[10,25,40,3.5],\"sar:observation_direction\":[\"right\"],\"sar:pixel_spacing_azimuth\":[10,25,40,3.5],\"sar:looks_equivalent_number\":[4.4,29.7,2.7,10.7,3.7],\"sat:platform_international_designator\":[\"2014-016A\",\"2016-025A\",\"0000-000A\"]},\"description\":\"The [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) mission is a constellation of two polar-orbiting satellites, operating day and night performing C-band synthetic aperture radar imaging. The Level-1 Ground Range Detected (GRD) products in this Collection consist of focused SAR data that has been detected, multi-looked and projected to ground range using the Earth ellipsoid model WGS84. The ellipsoid projection of the GRD products is corrected using the terrain height specified in the product general annotation. The terrain height used varies in azimuth but is constant in range (but can be different for each IW/EW sub-swath).\\n\\nGround range coordinates are the slant range coordinates projected onto the ellipsoid of the Earth. Pixel values represent detected amplitude. Phase information is lost. The resulting product has approximately square resolution pixels and square pixel spacing with reduced speckle at a cost of reduced spatial resolution.\\n\\nFor the IW and EW GRD products, multi-looking is performed on each burst individually. All bursts in all sub-swaths are then seamlessly merged to form a single, contiguous, ground range, detected image per polarization.\\n\\nFor more information see the [ESA documentation](https://sentinel.esa.int/web/sentinel/user-guides/sentinel-1-sar/product-types-processing-levels/level-1)\\n\\n### Terrain Correction\\n\\nUsers might want to geometrically or radiometrically terrain correct the Sentinel-1 GRD data from this collection. The [Sentinel-1-RTC Collection](https://planetarycomputer.microsoft.com/dataset/sentinel-1-rtc) collection is a global radiometrically terrain corrected dataset derived from Sentinel-1 GRD. Additionally, users can terrain-correct on the fly using [any DEM available on the Planetary Computer](https://planetarycomputer.microsoft.com/catalog?tags=DEM). See [Customizable radiometric terrain correction](https://planetarycomputer.microsoft.com/docs/tutorials/customizable-rtc-sentinel1/) for more.\",\"item_assets\":{\"hh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HH: horizontal transmit, horizontal receive\",\"description\":\"Amplitude of signal transmitted with horizontal polarization and received with horizontal polarization with radiometric terrain correction applied.\"},\"hv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HV: horizontal transmit, vertical receive\",\"description\":\"Amplitude of signal transmitted with horizontal polarization and received with vertical polarization with radiometric terrain correction applied.\"},\"vh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VH: vertical transmit, horizontal receive\",\"description\":\"Amplitude of signal transmitted with vertical polarization and received with horizontal polarization with radiometric terrain correction applied.\"},\"vv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VV: vertical transmit, vertical receive\",\"description\":\"Amplitude of signal transmitted with vertical polarization and received with vertical polarization with radiometric terrain correction applied.\"},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Preview Image\",\"description\":\"An averaged, decimated preview image in PNG format. Single polarisation products are represented with a grey scale image. Dual polarisation products are represented by a single composite colour image in RGB with the red channel (R) representing the co-polarisation VV or HH), the green channel (G) represents the cross-polarisation (VH or HV) and the blue channel (B) represents the ratio of the cross an co-polarisations.\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Manifest File\",\"description\":\"General product metadata in XML format. Contains a high-level textual description of the product and references to all of product's components, the product metadata, including the product identification and the resource references, and references to the physical location of each component file contained in the product.\"},\"schema-noise-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\"},\"schema-noise-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\"},\"schema-noise-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\"},\"schema-noise-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Noise Schema\",\"description\":\"Estimated thermal noise look-up tables\"},\"schema-product-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\"},\"schema-product-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\"},\"schema-product-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\"},\"schema-product-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Product Schema\",\"description\":\"Describes the main characteristics corresponding to the band: state of the platform during acquisition, image properties, Doppler information, geographic location, etc.\"},\"schema-calibration-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\"},\"schema-calibration-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\"},\"schema-calibration-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\"},\"schema-calibration-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Calibration Schema\",\"description\":\"Calibration metadata including calibration information and the beta nought, sigma nought, gamma and digital number look-up tables that can be used for absolute product calibration.\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-1\",\"msft:container\":\"s1-grd\",\"stac_extensions\":[\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"sentinel1euwest\",\"msft:short_description\":\"Sentinel-1 Level-1 Ground Range Detected (GRD) products consist of focused SAR data that has been detected, multi-looked and projected to ground range using an Earth ellipsoid model.\",\"msft:region\":\"westeurope\"},{\"id\":\"noaa-climate-normals-gridded\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/products/land-based-station/us-climate-normals\",\"type\":\"text/html\",\"title\":\"NOAA U.S. Climate Normals Landing Page\"},{\"rel\":\"license\",\"href\":\"https://www.noaa.gov/information-technology/open-data-dissemination\",\"type\":\"text/html\",\"title\":\"NOAA Open Data Dissemination\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/sites/default/files/2022-04/Readme_Monthly_Gridded_Normals.pdf\",\"type\":\"application/pdf\",\"title\":\"Readme for Monthly Gridded Normals\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/sites/default/files/2022-04/Documentation_Monthly_Gridded_Normals.pdf\",\"type\":\"application/pdf\",\"title\":\"Documentation for Monthly Gridded Normals\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-climate-normals-gridded\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-climate-normals-gridded-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"NOAA U.S. Gridded Climate Normals (Cloud-Optimized GeoTIFF) Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-climate-normals-gridded.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-124.708333,24.541666,-66.999995,49.375001]]},\"temporal\":{\"interval\":[[\"1901-01-01T00:00:00Z\",\"2020-12-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"NOAA\",\"Climate Normals\",\"Weather\",\"Surface Observations\",\"Climatology\",\"CONUS\"],\"providers\":[{\"url\":\"https://www.ncei.noaa.gov/\",\"name\":\"NOAA National Centers for Environmental Information\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"noaa_climate_normals:period\":[\"1901-2000\",\"1991-2020\",\"2006-2020\"],\"noaa_climate_normals:frequency\":[\"daily\",\"monthly\",\"seasonal\",\"annual\"]},\"description\":\"The [NOAA Gridded United States Climate Normals](https://www.ncei.noaa.gov/products/land-based-station/us-climate-normals#tab-1027) provide a continuous grid of temperature and precipitation data across the contiguous United States (CONUS). The grids are derived from NOAA's [NClimGrid dataset](https://planetarycomputer.microsoft.com/dataset/group/noaa-nclimgrid), and resolutions (nominal 5x5 kilometer) and spatial extents (CONUS) therefore match that of NClimGrid. Monthly, seasonal, and annual gridded normals are computed from simple averages of the NClimGrid data and are provided for three time-periods: 1901\u20132020, 1991\u20132020, and 2006\u20132020. Daily gridded normals are smoothed for a smooth transition from one day to another and are provided for two time-periods: 1991\u20132020, and 2006\u20132020.\\n\\nNOAA produces Climate Normals in accordance with the [World Meteorological Organization](https://public.wmo.int/en) (WMO), of which the United States is a member. The WMO requires each member nation to compute 30-year meteorological quantity averages at least every 30 years, and recommends an update each decade, in part to incorporate newer weather stations. The 1991\u20132020 U.S. Climate Normals are the latest in a series of decadal normals first produced in the 1950s. \\n\\nThis Collection contains gridded data for the following frequencies and time periods:\\n\\n- Annual, seasonal, and monthly normals\\n - 100-year (1901\u20132000)\\n \ - 30-year (1991\u20132020)\\n - 15-year (2006\u20132020)\\n- Daily normals\\n - 30-year (1991\u20132020)\\n - 15-year (2006\u20132020)\\n\\nThe data in this Collection have been converted from the original NetCDF format to Cloud Optimized GeoTIFFs (COGs). The source NetCDF files are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\n\\n## STAC Metadata\\n\\nThe STAC items in this collection contain several custom fields that can be used to further filter the data.\\n\\n* `noaa_climate_normals:period`: Climate normal time period. This can be \\\"1901-2000\\\", \\\"1991-2020\\\", or \\\"2006-2020\\\".\\n* `noaa_climate_normals:frequency`: Climate normal temporal interval (frequency). This can be \\\"daily\\\", \\\"monthly\\\", \\\"seasonal\\\" , or \\\"annual\\\"\\n* `noaa_climate_normals:time_index`: Time step index, e.g., month of year (1-12).\\n\\nThe `description` field of the assets varies by frequency. Using `prcp_norm` as an example, the descriptions are\\n\\n* annual: \\\"Annual precipitation normals from monthly precipitation normal values\\\"\\n* seasonal: \\\"Seasonal precipitation normals (WSSF) from monthly normals\\\"\\n* monthly: \\\"Monthly precipitation normals from monthly precipitation values\\\"\\n* daily: \\\"Precipitation normals from daily averages\\\"\\n\\nCheck the assets on individual items for the appropriate description.\\n\\nThe STAC keys for most assets consist of two abbreviations. A \\\"variable\\\":\\n\\n\\n| Abbreviation | Description |\\n| ------------ | ---------------------------------------- |\\n| prcp | Precipitation over the time period |\\n| tavg | Mean temperature over the time period |\\n| tmax | Maximum temperature over the time period |\\n| tmin | Minimum temperature over the time period |\\n\\nAnd an \\\"aggregation\\\":\\n\\n| Abbreviation | Description \ |\\n| ------------ | ------------------------------------------------------------------------------ |\\n| max | Maximum of the variable over the time period |\\n| min | Minimum of the variable over the time period |\\n| std | Standard deviation of the value over the time period |\\n| flag | An count of the number of inputs (months, years, etc.) to calculate the normal |\\n| norm | The normal for the variable over the time period |\\n\\nSo, for example, `prcp_max` for monthly data is the \\\"Maximum values of all input monthly precipitation normal values\\\".\\n\",\"item_assets\":{\"prcp_max\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"millimeter\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"prcp_min\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"millimeter\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"prcp_std\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"millimeter\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tavg_max\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tavg_min\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tavg_std\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmax_max\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmax_min\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmax_std\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmin_max\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmin_min\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmin_std\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"prcp_flag\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"months\",\"nodata\":0,\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"prcp_norm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"millimeter\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tavg_flag\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"months\",\"nodata\":0,\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tavg_norm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmax_flag\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"months\",\"nodata\":0,\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmax_norm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmin_flag\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"months\",\"nodata\":0,\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"tmin_norm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"m2dprcp_norm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"description\":\"Month-To-Day Precipitation normals\",\"raster:bands\":[{\"unit\":\"millimeter\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]},\"y2dprcp_norm\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"description\":\"Year-To-Day Precipitation normals\",\"raster:bands\":[{\"unit\":\"millimeter\",\"nodata\":\"nan\",\"data_type\":\"float32\",\"spatial_resolution\":5000}]}},\"msft:region\":\"eastus\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-climate-normals\",\"msft:container\":\"gridded-normals-cogs\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"],\"msft:storage_account\":\"noaanormals\",\"msft:short_description\":\"Gridded Climate Normals for the contiguous United States in Cloud Optimized GeoTIFF (COG) format.\"},{\"id\":\"aster-l1t\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/core-science-systems/hdds/data-policy\",\"title\":\"Public Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/aster-l1t\",\"type\":\"text/html\",\"title\":\"Human readable dataset overview and reference\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/aster-l1t\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ASTER L1T\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/aster.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"ASTER L1T\"},\"geoparquet-items\":{\"href\":\"abfs://items/aster-l1t.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-03-04T12:00:00Z\",\"2006-12-31T12:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"ASTER\",\"USGS\",\"NASA\",\"Satellite\",\"Global\"],\"providers\":[{\"url\":\"https://terra.nasa.gov/about/terra-instruments/aster\",\"name\":\"NASA\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://lpdaac.usgs.gov/data/get-started-data/collection-overview/missions/aster-overview/\",\"name\":\"USGS\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[15,30,90],\"eo:bands\":[{\"gsd\":15,\"name\":\"VNIR_Band1\",\"common_name\":\"green\",\"description\":\"visible yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"gsd\":15,\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"gsd\":15,\"name\":\"VNIR_Band3N\",\"common_name\":\"nir08\",\"description\":\"near infrared\",\"center_wavelength\":0.82,\"full_width_half_max\":0.08},{\"gsd\":30,\"name\":\"SWIR_Band4\",\"common_name\":\"swir16\",\"description\":\"short-wave infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"gsd\":30,\"name\":\"SWIR_Band5\",\"common_name\":\"swir22\",\"description\":\"short-wave infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band6\",\"common_name\":\"swir22\",\"description\":\"short-wave infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band7\",\"common_name\":\"swir22\",\"description\":\"short-wave infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"gsd\":30,\"name\":\"SWIR_Band8\",\"description\":\"short-wave infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"gsd\":30,\"name\":\"SWIR_Band9\",\"description\":\"short-wave infrared\",\"center_wavelength\":2.395,\"full_width_half_max\":0.07},{\"gsd\":90,\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"gsd\":90,\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal infrared\",\"center_wavelength\":11.3,\"full_width_half_max\":0.7}],\"platform\":[\"terra\"],\"instruments\":[\"aster\"]},\"description\":\"The [ASTER](https://terra.nasa.gov/about/terra-instruments/aster) instrument, launched on-board NASA's [Terra](https://terra.nasa.gov/) satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. ASTER images provide information about land surface temperature, color, elevation, and mineral composition.\\n\\nThis dataset represents ASTER [L1T](https://lpdaac.usgs.gov/products/ast_l1tv003/) data from 2000-2006. L1T images have been terrain-corrected and rotated to a north-up UTM projection. Images are in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\n\",\"item_assets\":{\"TIR\":{\"roles\":[\"data\"],\"title\":\"TIR Swath data\",\"eo:bands\":[{\"gsd\":90,\"name\":\"TIR_Band10\",\"common_name\":\"lwir\",\"description\":\"thermal infrared\",\"center_wavelength\":8.3,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band11\",\"common_name\":\"lwir\",\"description\":\"thermal infrared\",\"center_wavelength\":8.65,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band12\",\"common_name\":\"lwir\",\"description\":\"thermal infrared\",\"center_wavelength\":9.11,\"full_width_half_max\":0.35},{\"gsd\":90,\"name\":\"TIR_Band13\",\"common_name\":\"lwir\",\"description\":\"thermal infrared\",\"center_wavelength\":10.6,\"full_width_half_max\":0.7},{\"gsd\":90,\"name\":\"TIR_Band14\",\"common_name\":\"lwir\",\"description\":\"thermal infrared\",\"center_wavelength\":11.3,\"full_width_half_max\":0.7}],\"raster:bands\":[{\"name\":\"TIR_Band10\",\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":90},{\"name\":\"TIR_Band11\",\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":90},{\"name\":\"TIR_Band12\",\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":90},{\"name\":\"TIR_Band13\",\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":90},{\"name\":\"TIR_Band14\",\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":90}]},\"xml\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"XML metadata\"},\"SWIR\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR Swath data\",\"eo:bands\":[{\"gsd\":30,\"name\":\"SWIR_Band4\",\"common_name\":\"swir\",\"description\":\"short-wave infrared\",\"center_wavelength\":1.65,\"full_width_half_max\":0.1},{\"gsd\":30,\"name\":\"SWIR_Band5\",\"common_name\":\"swir\",\"description\":\"short-wave infrared\",\"center_wavelength\":2.165,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band6\",\"common_name\":\"swir\",\"description\":\"short-wave infrared\",\"center_wavelength\":2.205,\"full_width_half_max\":0.04},{\"gsd\":30,\"name\":\"SWIR_Band7\",\"common_name\":\"swir\",\"description\":\"short-wave infrared\",\"center_wavelength\":2.26,\"full_width_half_max\":0.05},{\"gsd\":30,\"name\":\"SWIR_Band8\",\"common_name\":\"swir\",\"description\":\"short-wave infrared\",\"center_wavelength\":2.339,\"full_width_half_max\":0.07},{\"gsd\":30,\"name\":\"SWIR_Band9\",\"common_name\":\"swir\",\"description\":\"short-wave infrared\",\"center_wavelength\":2.395,\"full_width_half_max\":0.07}],\"raster:bands\":[{\"name\":\"SWIR_Band4\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":30},{\"name\":\"SWIR_Band5\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":30},{\"name\":\"SWIR_Band6\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":30},{\"name\":\"SWIR_Band7\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":30},{\"name\":\"SWIR_Band8\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":30},{\"name\":\"SWIR_Band9\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":30}]},\"VNIR\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VNIR Swath data\",\"eo:bands\":[{\"gsd\":15,\"name\":\"VNIR_Band1\",\"common_name\":\"yellow/green\",\"description\":\"visible yellow/green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"gsd\":15,\"name\":\"VNIR_Band2\",\"common_name\":\"red\",\"description\":\"visible red\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"gsd\":15,\"name\":\"VNIR_Band3N\",\"common_name\":\"near infrared\",\"description\":\"near infrared\",\"center_wavelength\":0.82,\"full_width_half_max\":0.08}],\"raster:bands\":[{\"name\":\"VNIR_Band1\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":15},{\"name\":\"VNIR_Band2\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":15},{\"name\":\"VNIR_Band3N\",\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":15}]},\"qa-txt\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"QA browse file\",\"description\":\"Geometric quality assessment report.\"},\"qa-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"QA browse file\",\"description\":\"Single-band black and white reduced resolution browse overlaid with red, green, and blue (RGB) markers for GCPs used during the geometric verification quality check.\"},\"tir-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"Standalone reduced resolution TIR\"},\"vnir-browse\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"VNIR browse file\",\"description\":\"Standalone reduced resolution VNIR\"}},\"stac_version\":\"1.0.0\",\"msft:container\":\"aster\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"astersa\",\"msft:short_description\":\"The ASTER instrument, launched on-board NASA's Terra satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. This dataset contains ASTER data from 2000-2006.\",\"msft:region\":\"westeurope\"},{\"id\":\"cil-gdpcir-cc-by-sa\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa\"},{\"rel\":\"license\",\"href\":\"https://spdx.org/licenses/CC-BY-SA-4.0.html\",\"type\":\"text/html\",\"title\":\"Creative Commons Attribution Share Alike 4.0 International\"},{\"rel\":\"cite-as\",\"href\":\"https://zenodo.org/record/6403794\",\"type\":\"text/html\"},{\"rel\":\"describedby\",\"href\":\"https://github.com/ClimateImpactLab/downscaleCMIP6/\",\"type\":\"text/html\",\"title\":\"Project homepage\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by-sa\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gdpcir.png\",\"type\":\"image/png\",\"title\":\"Thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1950-01-01T00:00:00Z\",\"2100-12-31T00:00:00Z\"]]}},\"license\":\"CC-BY-SA-4.0\",\"sci:doi\":\"10.5194/egusphere-2022-1513\",\"keywords\":[\"CMIP6\",\"Climate Impact Lab\",\"Rhodium Group\",\"Precipitation\",\"Temperature\"],\"providers\":[{\"url\":\"https://impactlab.org/\",\"name\":\"Climate Impact Lab\",\"roles\":[\"producer\"]},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"cmip6:variable\":[\"pr\",\"tasmax\",\"tasmin\"],\"cmip6:source_id\":[\"CanESM5\"],\"cmip6:experiment_id\":[\"historical\",\"ssp126\",\"ssp245\",\"ssp370\",\"ssp585\"],\"cmip6:institution_id\":[\"BCC\",\"CAS\",\"CCCma\",\"CMCC\",\"CSIRO\",\"CSIRO-ARCCSS\",\"DKRZ\",\"EC-Earth-Consortium\",\"INM\",\"MIROC\",\"MOHC\",\"MPI-M\",\"NCC\",\"NOAA-GFDL\",\"NUIST\"]},\"description\":\"The World Climate Research Programme's [6th Coupled Model Intercomparison Project (CMIP6)](https://www.wcrp-climate.org/wgcm-cmip/wgcm-cmip6) represents an enormous advance in the quality, detail, and scope of climate modeling.\\n\\nThe [Global Downscaled Projections for Climate Impacts Research](https://github.com/ClimateImpactLab/downscaleCMIP6) dataset makes this modeling more applicable to understanding the impacts of changes in the climate on humans and society with two key developments: trend-preserving bias correction and downscaling. In this dataset, the [Climate Impact Lab](https://impactlab.org) provides global, daily minimum and maximum air temperature at the surface (`tasmin` and `tasmax`) and daily cumulative surface precipitation (`pr`) corresponding to the CMIP6 historical, ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 scenarios for 25 global climate models on a 1/4-degree regular global grid.\\n\\n## Accessing the data\\n\\nGDPCIR data can be accessed on the Microsoft Planetary Computer. The dataset is made of of three collections, distinguished by data license:\\n* [Public domain (CC0-1.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0)\\n* [Attribution (CC BY 4.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by)\\n* [Attribution-ShareAlike (CC BY SA 4.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by-sa)\\n\\nEach modeling center with bias corrected and downscaled data in this collection falls into one of these license categories - see the [table below](/dataset/cil-gdpcir-cc-by-sa#available-institutions-models-and-scenarios-by-license-collection) to see which model is in each collection, and see the section below on [Citing, Licensing, and using data produced by this project](/dataset/cil-gdpcir-cc-by-sa#citing-licensing-and-using-data-produced-by-this-project) for citations and additional information about each license.\\n\\n## Data format & contents\\n\\nThe data is stored as partitioned zarr stores (see [https://zarr.readthedocs.io](https://zarr.readthedocs.io)), each of which includes thousands of data and metadata files covering the full time span of the experiment. Historical zarr stores contain just over 50 GB, while SSP zarr stores contain nearly 70GB. Each store is stored as a 32-bit float, with dimensions time (daily datetime), lat (float latitude), and lon (float longitude). The data is chunked at each interval of 365 days and 90 degree interval of latitude and longitude. Therefore, each chunk is `(365, 360, 360)`, with each chunk occupying approximately 179MB in memory.\\n\\nHistorical data is daily, excluding leap days, from Jan 1, 1950 to Dec 31, 2014; SSP data is daily, excluding leap days, from Jan 1, 2015 to either Dec 31, 2099 or Dec 31, 2100, depending on data availability in the source GCM.\\n\\nThe spatial domain covers all 0.25-degree grid cells, indexed by the grid center, with grid edges on the quarter-degree, using a -180 to 180 longitude convention. Thus, the \u201Clon\u201D coordinate extends from -179.875 to 179.875, and the \u201Clat\u201D coordinate extends from -89.875 to 89.875, with intermediate values at each 0.25-degree increment between (e.g. -179.875, -179.625, -179.375, etc).\\n\\n## Available institutions, models, and scenarios by license collection\\n\\n| Modeling institution | Source model | Available experiments \ | License collection |\\n| -------------------- | ----------------- | ------------------------------------------ | ---------------------- |\\n| CAS | FGOALS-g3 [^1] | SSP2-4.5, SSP3-7.0, and SSP5-8.5 \ | Public domain datasets |\\n| INM | INM-CM4-8 \ | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets |\\n| INM | INM-CM5-0 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets |\\n| BCC | BCC-CSM2-MR \ | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40] |\\n| CMCC | CMCC-CM2-SR5 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 \ | CC-BY-40] |\\n| CMCC | CMCC-ESM2 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 | CC-BY-40] |\\n| CSIRO-ARCCSS | ACCESS-CM2 | SSP2-4.5 and SSP3-7.0 | CC-BY-40] |\\n| CSIRO | ACCESS-ESM1-5 | SSP1-2.6, SSP2-4.5, and SSP3-7.0 | CC-BY-40] |\\n| MIROC | MIROC-ES2L | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40] \ |\\n| MIROC | MIROC6 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40] |\\n| MOHC | HadGEM3-GC31-LL | SSP1-2.6, SSP2-4.5, and SSP5-8.5 | CC-BY-40] \ |\\n| MOHC | UKESM1-0-LL | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40] |\\n| MPI-M | MPI-ESM1-2-LR | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40] \ |\\n| MPI-M/DKRZ [^2] | MPI-ESM1-2-HR | SSP1-2.6 and SSP5-8.5 | CC-BY-40] |\\n| NCC | NorESM2-LM | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40] \ |\\n| NCC | NorESM2-MM | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40] |\\n| NOAA-GFDL | GFDL-CM4 | SSP2-4.5 and SSP5-8.5 | CC-BY-40] \ |\\n| NOAA-GFDL | GFDL-ESM4 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40] |\\n| NUIST | NESM3 | SSP1-2.6, SSP2-4.5, and SSP5-8.5 | CC-BY-40] \ |\\n| EC-Earth-Consortium | EC-Earth3 | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40] |\\n| EC-Earth-Consortium \ | EC-Earth3-AerChem | ssp370 | CC-BY-40] \ |\\n| EC-Earth-Consortium | EC-Earth3-CC | ssp245 and ssp585 | CC-BY-40] |\\n| EC-Earth-Consortium \ | EC-Earth3-Veg | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40] \ |\\n| EC-Earth-Consortium | EC-Earth3-Veg-LR | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40] |\\n| CCCma | CanESM5 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 | CC-BY-SA-40] \ |\\n\\n*Notes:*\\n\\n[^1]: At the time of running, no ssp1-2.6 precipitation data was available. Therefore, we provide `tasmin` and `tamax` for this model and experiment, but not `pr`. All other model/experiment combinations in the above table include all three variables.\\n\\n[^2]: The institution which ran MPI-ESM1-2-HR\u2019s historical (CMIP) simulations is `MPI-M`, while the future (ScenarioMIP) simulations were run by `DKRZ`. Therefore, the institution component of `MPI-ESM1-2-HR` filepaths differ between `historical` and `SSP` scenarios.\\n\\n## Project methods\\n\\nThis project makes use of statistical bias correction and downscaling algorithms, which are specifically designed to accurately represent changes in the extremes. For this reason, we selected Quantile Delta Mapping (QDM), following the method introduced by [Cannon et al. (2015)](https://doi.org/10.1175/JCLI-D-14-00754.1), which preserves quantile-specific trends from the GCM while fitting the full distribution for a given day-of-year to a reference dataset (ERA5).\\n\\nWe then introduce a similar method tailored to increase spatial resolution while preserving extreme behavior, Quantile-Preserving Localized-Analog Downscaling (QPLAD).\\n\\nTogether, these methods provide a robust means to handle both the central and tail behavior seen in climate model output, while aligning the full distribution to a state-of-the-art reanalysis dataset and providing the spatial granularity needed to study surface impacts.\\n\\nFor further documentation, see [Global downscaled projections for climate impacts research (GDPCIR): preserving extremes for modeling future climate impacts](https://egusphere.copernicus.org/preprints/2023/egusphere-2022-1513/) (EGUsphere, 2022 [preprint]).\\n\\n## Citing, licensing, and using data produced by this project\\n\\nProjects making use of the data produced as part of the Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CIL GDPCIR) project are requested to cite both this project and the source datasets from which these results are derived. Additionally, the use of data derived from some GCMs *requires* citations, and some modeling centers impose licensing restrictions & requirements on derived works. See each GCM's license info in the links below for more information.\\n\\n### CIL GDPCIR\\n\\nUsers are requested to cite this project in derived works. Our method documentation paper may be cited using the following:\\n\\n> Gergel, D. R., Malevich, S. B., McCusker, K. E., Tenezakis, E., Delgado, M. T., Fish, M. A., and Kopp, R. E.: Global downscaled projections for climate impacts research (GDPCIR): preserving extremes for modeling future climate impacts, EGUsphere [preprint], https://doi.org/10.5194/egusphere-2022-1513, 2023. \\n\\nThe code repository may be cited using the following:\\n\\n> Diana Gergel, Kelly McCusker, Brewster Malevich, Emile Tenezakis, Meredith Fish, Michael Delgado (2022). ClimateImpactLab/downscaleCMIP6: (v1.0.0). Zenodo. https://doi.org/10.5281/zenodo.6403794\\n\\n### ERA5\\n\\nAdditionally, we request you cite the historical dataset used in bias correction and downscaling, ERA5. See the [ECMWF guide to citing a dataset on the Climate Data Store](https://confluence.ecmwf.int/display/CKB/How+to+acknowledge+and+cite+a+Climate+Data+Store+%28CDS%29+catalogue+entry+and+the+data+published+as+part+of+it):\\n\\n> Hersbach, H, et al. The ERA5 global reanalysis. Q J R Meteorol Soc.2020; 146: 1999\u20132049. DOI: [10.1002/qj.3803](https://doi.org/10.1002/qj.3803)\\n>\\n> Mu\xF1oz Sabater, J., (2019): ERA5-Land hourly data from 1981 to present. Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\n>\\n> Mu\xF1oz Sabater, J., (2021): ERA5-Land hourly data from 1950 to 1980. Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\n\\n### GCM-specific citations & licenses\\n\\nThe CMIP6 simulation data made available through the Earth System Grid Federation (ESGF) are subject to Creative Commons [BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) or [BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) licenses. The Climate Impact Lab has reached out to each of the modeling institutions to request waivers from these terms so the outputs of this project may be used with fewer restrictions, and has been granted permission to release the data using the licenses listed here.\\n\\n#### Public Domain Datasets\\n\\nThe following bias corrected and downscaled model simulations are available in the public domain using a [CC0 1.0 Universal Public Domain Declaration](https://creativecommons.org/publicdomain/zero/1.0/). Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0.\\n\\n* **FGOALS-g3**\\n\\n License description: [data_licenses/FGOALS-g3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/FGOALS-g3.txt)\\n\\n \ CMIP Citation:\\n\\n > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6 CMIP*. Version 20190826. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1783\\n\\n ScenarioMIP Citation:\\n\\n \ > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190818; SSP2-4.5 version 20190818; SSP3-7.0 version 20190820; SSP5-8.5 tasmax version 20190819; SSP5-8.5 tasmin version 20190819; SSP5-8.5 pr version 20190818. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2056\\n\\n\\n* **INM-CM4-8**\\n\\n License description: [data_licenses/INM-CM4-8.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/INM-CM4-8.txt)\\n\\n \ CMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8 model output prepared for CMIP6 CMIP*. Version 20190530. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1422\\n\\n ScenarioMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8 model output prepared for CMIP6 ScenarioMIP*. Version 20190603. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12321\\n\\n\\n* **INM-CM5-0**\\n\\n \ License description: [data_licenses/INM-CM5-0.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/INM-CM5-0.txt)\\n\\n \ CMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0 model output prepared for CMIP6 CMIP*. Version 20190610. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1423\\n\\n ScenarioMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190619; SSP2-4.5 version 20190619; SSP3-7.0 version 20190618; SSP5-8.5 version 20190724. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12322\\n\\n\\n#### CC-BY-4.0\\n\\nThe following bias corrected and downscaled model simulations are licensed under a [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/). Note that this license requires citation of the source model output (included here). Please see https://creativecommons.org/licenses/by/4.0/ for more information. Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by.\\n\\n* **ACCESS-CM2**\\n\\n License description: [data_licenses/ACCESS-CM2.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/ACCESS-CM2.txt)\\n\\n \ CMIP Citation:\\n\\n > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2281\\n\\n ScenarioMIP Citation:\\n\\n \ > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2285\\n\\n\\n* **ACCESS-ESM1-5**\\n\\n \ License description: [data_licenses/ACCESS-ESM1-5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/ACCESS-ESM1-5.txt)\\n\\n \ CMIP Citation:\\n\\n > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2288\\n\\n ScenarioMIP Citation:\\n\\n \ > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 ScenarioMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2291\\n\\n\\n* **BCC-CSM2-MR**\\n\\n License description: [data_licenses/BCC-CSM2-MR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/BCC-CSM2-MR.txt)\\n\\n \ CMIP Citation:\\n\\n > Xin, Xiaoge; Zhang, Jie; Zhang, Fang; Wu, Tongwen; Shi, Xueli; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei, Min **(2018)**. *BCC BCC-CSM2MR model output prepared for CMIP6 CMIP*. Version 20181126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1725\\n\\n \ ScenarioMIP Citation:\\n\\n > Xin, Xiaoge; Wu, Tongwen; Shi, Xueli; Zhang, Fang; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei, Min **(2019)**. *BCC BCC-CSM2MR model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190315; SSP2-4.5 version 20190318; SSP3-7.0 version 20190318; SSP5-8.5 version 20190318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1732\\n\\n\\n* **CMCC-CM2-SR5**\\n\\n License description: [data_licenses/CMCC-CM2-SR5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CMCC-CM2-SR5.txt)\\n\\n \ CMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5 model output prepared for CMIP6 CMIP*. Version 20200616. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1362\\n\\n ScenarioMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200717; SSP2-4.5 version 20200617; SSP3-7.0 version 20200622; SSP5-8.5 version 20200622. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1365\\n\\n\\n* **CMCC-ESM2**\\n\\n License description: [data_licenses/CMCC-ESM2.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CMCC-ESM2.txt)\\n\\n \ CMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele; Butensch\xF6n, Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 CMIP*. Version 20210114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13164\\n\\n \ ScenarioMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele; Butensch\xF6n, Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20210126; SSP2-4.5 version 20210129; SSP3-7.0 version 20210202; SSP5-8.5 version 20210126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13168\\n\\n\\n* **EC-Earth3-AerChem**\\n\\n License description: [data_licenses/EC-Earth3-AerChem.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-AerChem.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 CMIP*. Version 20200624. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.639\\n\\n \ ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 ScenarioMIP*. Version 20200827. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.724\\n\\n\\n* **EC-Earth3-CC**\\n\\n License description: [data_licenses/EC-Earth3-CC.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-CC.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth-3-CC model output prepared for CMIP6 CMIP*. Version 20210113. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.640\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2021)**. *EC-Earth-Consortium EC-Earth3-CC model output prepared for CMIP6 ScenarioMIP*. Version 20210113. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.15327\\n\\n\\n* **EC-Earth3-Veg-LR**\\n\\n License description: [data_licenses/EC-Earth3-Veg-LR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-Veg-LR.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 CMIP*. Version 20200217. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.643\\n\\n \ ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20201201; SSP2-4.5 version 20201123; SSP3-7.0 version 20201123; SSP5-8.5 version 20201201. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.728\\n\\n\\n* **EC-Earth3-Veg**\\n\\n License description: [data_licenses/EC-Earth3-Veg.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-Veg.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3-Veg model output prepared for CMIP6 CMIP*. Version 20200225. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.642\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3-Veg model output prepared for CMIP6 ScenarioMIP*. Version 20200225. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.727\\n\\n\\n* **EC-Earth3**\\n\\n License description: [data_licenses/EC-Earth3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3 model output prepared for CMIP6 CMIP*. Version 20200310. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.181\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3 model output prepared for CMIP6 ScenarioMIP*. Version 20200310. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.251\\n\\n\\n* **GFDL-CM4**\\n\\n License description: [data_licenses/GFDL-CM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-CM4.txt)\\n\\n \ CMIP Citation:\\n\\n > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Bushuk, Mitchell; Dunne, Krista A.; Dussin, Raphael; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, P.C.D; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4 model output*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1402\\n\\n ScenarioMIP Citation:\\n\\n \ > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, Chris; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.9242\\n\\n\\n* **GFDL-ESM4**\\n\\n \ License description: [data_licenses/GFDL-ESM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-ESM4.txt)\\n\\n \ CMIP Citation:\\n\\n > Krasting, John P.; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Silvers, Levi; Wyman, Bruce; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Dussin, Raphael; Guo, Huan; He, Jian; Held, Isaac M; Horowitz, Larry W.; Lin, Pu; Milly, P.C.D; Shevliakova, Elena; Stock, Charles; Winton, Michael; Wittenberg, Andrew T.; Xie, Yuanyu; Zhao, Ming **(2018)**. *NOAA-GFDL GFDL-ESM4 model output prepared for CMIP6 CMIP*. Version 20190726. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1407\\n\\n ScenarioMIP Citation:\\n\\n \ > John, Jasmin G; Blanton, Chris; McHugh, Colleen; Radhakrishnan, Aparna; Rand, Kristopher; Vahlenkamp, Hans; Wilson, Chandin; Zadeh, Niki T.; Dunne, John P.; Dussin, Raphael; Horowitz, Larry W.; Krasting, John P.; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Ploshay, Jeffrey; Shevliakova, Elena; Silvers, Levi; Stock, Charles; Winton, Michael; Zeng, Yujin **(2018)**. *NOAA-GFDL GFDL-ESM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1414\\n\\n\\n* **HadGEM3-GC31-LL**\\n\\n License description: [data_licenses/HadGEM3-GC31-LL.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/HadGEM3-GC31-LL.txt)\\n\\n \ CMIP Citation:\\n\\n > Ridley, Jeff; Menary, Matthew; Kuhlbrodt, Till; Andrews, Martin; Andrews, Tim **(2018)**. *MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP*. Version 20190624. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.419\\n\\n ScenarioMIP Citation:\\n\\n \ > Good, Peter **(2019)**. *MOHC HadGEM3-GC31-LL model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200114; SSP2-4.5 version 20190908; SSP5-8.5 version 20200114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.10845\\n\\n\\n* **MIROC-ES2L**\\n\\n License description: [data_licenses/MIROC-ES2L.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MIROC-ES2L.txt)\\n\\n \ CMIP Citation:\\n\\n > Hajima, Tomohiro; Abe, Manabu; Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogura, Tomoo; Ogochi, Koji; Watanabe, Michio; Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio; Tachiiri, Kaoru **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 CMIP*. Version 20191129. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.902\\n\\n \ ScenarioMIP Citation:\\n\\n > Tachiiri, Kaoru; Abe, Manabu; Hajima, Tomohiro; Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogochi, Koji; Watanabe, Michio; Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 ScenarioMIP*. Version 20200318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.936\\n\\n\\n* **MIROC6**\\n\\n License description: [data_licenses/MIROC6.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MIROC6.txt)\\n\\n \ CMIP Citation:\\n\\n > Tatebe, Hiroaki; Watanabe, Masahiro **(2018)**. *MIROC MIROC6 model output prepared for CMIP6 CMIP*. Version 20191016. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.881\\n\\n ScenarioMIP Citation:\\n\\n > Shiogama, Hideo; Abe, Manabu; Tatebe, Hiroaki **(2019)**. *MIROC MIROC6 model output prepared for CMIP6 ScenarioMIP*. Version 20191016. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.898\\n\\n\\n* **MPI-ESM1-2-HR**\\n\\n License description: [data_licenses/MPI-ESM1-2-HR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MPI-ESM1-2-HR.txt)\\n\\n \ CMIP Citation:\\n\\n > Jungclaus, Johann; Bittner, Matthias; Wieners, Karl-Hermann; Wachsmann, Fabian; Schupfner, Martin; Legutke, Stephanie; Giorgetta, Marco; Reick, Christian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Esch, Monika; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-HR model output prepared for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.741\\n\\n \ ScenarioMIP Citation:\\n\\n > Schupfner, Martin; Wieners, Karl-Hermann; Wachsmann, Fabian; Steger, Christian; Bittner, Matthias; Jungclaus, Johann; Fr\xFCh, Barbara; Pankatz, Klaus; Giorgetta, Marco; Reick, Christian; Legutke, Stephanie; Esch, Monika; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *DKRZ MPI-ESM1.2-HR model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2450\\n\\n\\n* **MPI-ESM1-2-LR**\\n\\n License description: [data_licenses/MPI-ESM1-2-LR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MPI-ESM1-2-LR.txt)\\n\\n \ CMIP Citation:\\n\\n > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Legutke, Stephanie; Schupfner, Martin; Wachsmann, Fabian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.742\\n\\n \ ScenarioMIP Citation:\\n\\n > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.793\\n\\n\\n* **NESM3**\\n\\n \ License description: [data_licenses/NESM3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NESM3.txt)\\n\\n \ CMIP Citation:\\n\\n > Cao, Jian; Wang, Bin **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 CMIP*. Version 20190812. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2021\\n\\n ScenarioMIP Citation:\\n\\n \ > Cao, Jian **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190806; SSP2-4.5 version 20190805; SSP5-8.5 version 20190811. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2027\\n\\n\\n* **NorESM2-LM**\\n\\n License description: [data_licenses/NorESM2-LM.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NorESM2-LM.txt)\\n\\n \ CMIP Citation:\\n\\n > Seland, \xD8yvind; Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 CMIP*. Version 20190815. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.502\\n\\n ScenarioMIP Citation:\\n\\n \ > Seland, \xD8yvind; Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.604\\n\\n\\n* **NorESM2-MM**\\n\\n License description: [data_licenses/NorESM2-MM.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NorESM2-MM.txt)\\n\\n \ CMIP Citation:\\n\\n > Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Seland, \xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.506\\n\\n ScenarioMIP Citation:\\n\\n \ > Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Seland, \xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.608\\n\\n\\n* **UKESM1-0-LL**\\n\\n License description: [data_licenses/UKESM1-0-LL.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/UKESM1-0-LL.txt)\\n\\n \ CMIP Citation:\\n\\n > Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Mulcahy, Jane; Sellar, Alistair; Walton, Jeremy; Jones, Colin **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 CMIP*. Version 20190627. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1569\\n\\n \ ScenarioMIP Citation:\\n\\n > Good, Peter; Sellar, Alistair; Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Kuhlbrodt, Till; Walton, Jeremy **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190708; SSP2-4.5 version 20190715; SSP3-7.0 version 20190726; SSP5-8.5 version 20190726. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1567\\n\\n\\n#### CC-BY-SA-4.0\\n\\nThe following bias corrected and downscaled model simulations are licensed under a [Creative Commons Attribution-ShareAlike 4.0 International License](https://creativecommons.org/licenses/by-sa/4.0/). Note that this license requires citation of the source model output (included here) and requires that derived works be shared under the same license. Please see https://creativecommons.org/licenses/by-sa/4.0/ for more information. Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by-sa.\\n\\n* **CanESM5**\\n\\n License description: [data_licenses/CanESM5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CanESM5.txt)\\n\\n \ CMIP Citation:\\n\\n > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model output prepared for CMIP6 CMIP*. Version 20190429. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1303\\n\\n ScenarioMIP Citation:\\n\\n > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model output prepared for CMIP6 ScenarioMIP*. Version 20190429. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1317\\n\\n## Acknowledgements\\n\\nThis work is the result of many years worth of work by members of the [Climate Impact Lab](https://impactlab.org), but would not have been possible without many contributions from across the wider scientific and computing communities.\\n\\nSpecifically, we would like to acknowledge the World Climate Research Programme's Working Group on Coupled Modeling, which is responsible for CMIP, and we would like to thank the climate modeling groups for producing and making their model output available. We would particularly like to thank the modeling institutions whose results are included as an input to this repository (listed above) for their contributions to the CMIP6 project and for responding to and granting our requests for license waivers.\\n\\nWe would also like to thank Lamont-Doherty Earth Observatory, the [Pangeo Consortium](https://github.com/pangeo-data) (and especially the [ESGF Cloud Data Working Group](https://pangeo-data.github.io/pangeo-cmip6-cloud/#)) and Google Cloud and the Google Public Datasets program for making the [CMIP6 Google Cloud collection](https://console.cloud.google.com/marketplace/details/noaa-public/cmip6) possible. In particular we're extremely grateful to [Ryan Abernathey](https://github.com/rabernat), [Naomi Henderson](https://github.com/naomi-henderson), [Charles Blackmon-Luca](https://github.com/charlesbluca), [Aparna Radhakrishnan](https://github.com/aradhakrishnanGFDL), [Julius Busecke](https://github.com/jbusecke), and [Charles Stern](https://github.com/cisaacstern) for the huge amount of work they've done to translate the ESGF CMIP6 netCDF archives into consistently-formattted, analysis-ready zarr stores on Google Cloud.\\n\\nWe're also grateful to the [xclim developers](https://github.com/Ouranosinc/xclim/graphs/contributors) ([DOI: 10.5281/zenodo.2795043](https://doi.org/10.5281/zenodo.2795043)), in particular [Pascal Bourgault](https://github.com/aulemahal), [David Huard](https://github.com/huard), and [Travis Logan](https://github.com/tlogan2000), for implementing the QDM bias correction method in the xclim python package, supporting our QPLAD implementation into the package, and ongoing support in integrating dask into downscaling workflows. For method advice and useful conversations, we would like to thank Keith Dixon, Dennis Adams-Smith, and [Joe Hamman](https://github.com/jhamman).\\n\\n## Financial support\\n\\nThis research has been supported by The Rockefeller Foundation and the Microsoft AI for Earth Initiative.\\n\\n## Additional links:\\n\\n* CIL GDPCIR project homepage: [github.com/ClimateImpactLab/downscaleCMIP6](https://github.com/ClimateImpactLab/downscaleCMIP6)\\n* Project listing on zenodo: https://doi.org/10.5281/zenodo.6403794\\n* Climate Impact Lab homepage: [impactlab.org](https://impactlab.org)\",\"item_assets\":{\"pr\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Precipitation\",\"description\":\"Precipitation\"},\"tasmax\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Daily Maximum Near-Surface Air Temperature\",\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Daily Minimum Near-Surface Air Temperature\",\"description\":\"Daily Minimum Near-Surface Air Temperature\"}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"cil-gdpcir\",\"cube:variables\":{\"pr\":{\"type\":\"data\",\"unit\":\"mm day-1\",\"attrs\":{\"units\":\"mm day-1\"},\"dimensions\":[\"time\",\"lat\",\"lon\"]},\"tasmax\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"maximum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: max')\",\"long_name\":\"Daily Maximum Near-Surface Air Temperature\",\"coordinates\":\"height\",\"cell_methods\":\"area: mean time: maximum (interval: 5 minutes)\",\"cell_measures\":\"area: areacella\",\"original_name\":\"TREFHTMX\",\"standard_name\":\"air_temperature\"},\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"minimum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: min')\",\"long_name\":\"Daily Minimum Near-Surface Air Temperature\",\"coordinates\":\"height\",\"cell_methods\":\"area: mean time: minimum (interval: 5 minutes)\",\"cell_measures\":\"area: areacella\",\"original_name\":\"TREFHTMN\",\"standard_name\":\"air_temperature\"},\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Minimum Near-Surface Air Temperature\"}},\"msft:container\":\"cil-gdpcir\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[-89.875,89.875],\"reference_system\":\"epsg:4326\"},\"lon\":{\"axis\":\"x\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[-179.875,179.875],\"reference_system\":\"epsg:4326\"},\"time\":{\"step\":\"P1DT0H0M0S\",\"type\":\"temporal\",\"extent\":[\"1950-01-01T12:00:00Z\",\"2100-12-31T12:00:00Z\"],\"description\":\"time\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\"msft:storage_account\":\"rhgeuwest\",\"msft:short_description\":\"Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)\",\"msft:region\":\"westeurope\"},{\"id\":\"naip\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip\"},{\"rel\":\"license\",\"href\":\"https://www.fsa.usda.gov/help/policies-and-links/\",\"title\":\"Public Domain\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/naip\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"NAIP: National Agriculture Imagery Program\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/naip.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"NAIP thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/naip.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-124.784,24.744,-66.951,49.346],[-156.003,19.059,-154.809,20.127],[-67.316,17.871,-65.596,18.565],[-64.94,17.622,-64.56,17.814]]},\"temporal\":{\"interval\":[[\"2010-01-01T00:00:00Z\",\"2023-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"NAIP\",\"Aerial\",\"Imagery\",\"USDA\",\"AFPO\",\"Agriculture\",\"United States\"],\"providers\":[{\"url\":\"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/\",\"name\":\"USDA Farm Service Agency\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://www.esri.com/\",\"name\":\"Esri\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"gsd\":[0.3,0.6,1.0],\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\",\"description\":\"visible red\"},{\"name\":\"Green\",\"common_name\":\"green\",\"description\":\"visible green\"},{\"name\":\"Blue\",\"common_name\":\"blue\",\"description\":\"visible blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"description\":\"The [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/) (NAIP) \\nprovides U.S.-wide, high-resolution aerial imagery, with four spectral bands (R, G, B, IR). \\nNAIP is administered by the [Aerial Field Photography Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/) (AFPO) \\nwithin the [US Department of Agriculture](https://www.usda.gov/) (USDA). \\nData are captured at least once every three years for each state. \\nThis dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\nYou can visualize the coverage of current and past collections [here](https://naip-usdaonline.hub.arcgis.com/). \\n\",\"item_assets\":{\"image\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"name\":\"Blue\",\"common_name\":\"blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"metadata\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"FGDC Metdata\"},\"thumbnail\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:container\":\"naip\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"naipeuwest\",\"msft:short_description\":\"NAIP provides US-wide, high-resolution aerial imagery. This dataset includes NAIP images from 2010 to the present.\"},{\"id\":\"io-lulc-9-class\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class\"},{\"rel\":\"related\",\"href\":\"https://livingatlas.arcgis.com/landcover/\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/licenses/by/4.0/\",\"type\":\"text/html\",\"title\":\"CC BY 4.0\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/io-lulc-9-class\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"10m Annual Land Use Land Cover (9-class) V1\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/io-lulc-9-class.png\",\"title\":\"10m Annual Land Use Land Cover (9-class)\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/io-lulc-9-class.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2017-01-01T00:00:00Z\",\"2023-01-01T00:00:00Z\"]]}},\"license\":\"CC-BY-4.0\",\"keywords\":[\"Global\",\"Land Cover\",\"Land Use\",\"Sentinel\"],\"providers\":[{\"url\":\"https://www.esri.com/\",\"name\":\"Esri\",\"roles\":[\"licensor\"]},{\"url\":\"https://www.impactobservatory.com/\",\"name\":\"Impact Observatory\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"raster:bands\":[{\"nodata\":0,\"spatial_resolution\":10}]},\"description\":\"__Note__: _A new version of this item is available for your use. This mature version of the map remains available for use in existing applications. This item will be retired in December 2024. There is 2023 data available in the newer [9-class v2 dataset](https://planetarycomputer.microsoft.com/dataset/io-lulc-annual-v02)._\\n\\nTime series of annual global maps of land use and land cover (LULC). It currently has data from 2017-2022. The maps are derived from ESA Sentinel-2 imagery at 10m resolution. Each map is a composite of LULC predictions for 9 classes throughout the year in order to generate a representative snapshot of each year.\\n\\nThis dataset was generated by [Impact Observatory](http://impactobservatory.com/), who used billions of human-labeled pixels (curated by the National Geographic Society) to train a deep learning model for land classification. The global map was produced by applying this model to the Sentinel-2 annual scene collections on the Planetary Computer. Each of the maps has an assessed average accuracy of over 75%.\\n\\nThis map uses an updated model from the [10-class model](https://planetarycomputer.microsoft.com/dataset/io-lulc) and combines Grass(formerly class 3) and Scrub (formerly class 6) into a single Rangeland class (class 11). The original Esri 2020 Land Cover collection uses 10 classes (Grass and Scrub separate) and an older version of the underlying deep learning model. The Esri 2020 Land Cover map was also produced by Impact Observatory. The map remains available for use in existing applications. New applications should use the updated version of 2020 once it is available in this collection, especially when using data from multiple years of this time series, to ensure consistent classification.\\n\\nAll years are available under a Creative Commons BY-4.0.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Global land cover data\",\"file:values\":[{\"values\":[0],\"summary\":\"No Data\"},{\"values\":[1],\"summary\":\"Water\"},{\"values\":[2],\"summary\":\"Trees\"},{\"values\":[4],\"summary\":\"Flooded vegetation\"},{\"values\":[5],\"summary\":\"Crops\"},{\"values\":[7],\"summary\":\"Built area\"},{\"values\":[8],\"summary\":\"Bare ground\"},{\"values\":[9],\"summary\":\"Snow/ice\"},{\"values\":[10],\"summary\":\"Clouds\"},{\"values\":[11],\"summary\":\"Rangeland\"}]}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"io-land-cover\",\"msft:container\":\"io-lulc\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/label/v1.0.0/schema.json\",\"https://stac-extensions.github.io/file/v2.1.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Global land cover information with 9 classes for 2017-2022 at 10m resolution\"},{\"id\":\"io-biodiversity\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity\"},{\"rel\":\"license\",\"href\":\"https://creativecommons.org/licenses/by/4.0/\",\"type\":\"text/html\",\"title\":\"CC BY 4.0\"},{\"rel\":\"about\",\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pdfs/io-biodiversity/Biodiversity_Intactness_whitepaper.pdf\",\"type\":\"application/pdf\",\"title\":\"Technical White Paper\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/io-biodiversity\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Biodiversity Intactness\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/io-biodiversity-thumb.png\",\"title\":\"Biodiversity Intactness\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/io-biodiversity.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2017-01-01T00:00:00Z\",\"2020-12-31T23:59:59Z\"]]}},\"license\":\"CC-BY-4.0\",\"keywords\":[\"Global\",\"Biodiversity\"],\"providers\":[{\"url\":\"https://www.impactobservatory.com/\",\"name\":\"Impact Observatory\",\"roles\":[\"processor\",\"producer\",\"licensor\"]},{\"url\":\"https://www.vizzuality.com/\",\"name\":\"Vizzuality\",\"roles\":[\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"version\":[\"v1\"]},\"description\":\"Generated by [Impact Observatory](https://www.impactobservatory.com/), in collaboration with [Vizzuality](https://www.vizzuality.com/), these datasets estimate terrestrial Biodiversity Intactness as 100-meter gridded maps for the years 2017-2020.\\n\\nMaps depicting the intactness of global biodiversity have become a critical tool for spatial planning and management, monitoring the extent of biodiversity across Earth, and identifying critical remaining intact habitat. Yet, these maps are often years out of date by the time they are available to scientists and policy-makers. The datasets in this STAC Collection build on past studies that map Biodiversity Intactness using the [PREDICTS database](https://onlinelibrary.wiley.com/doi/full/10.1002/ece3.2579) of spatially referenced observations of biodiversity across 32,000 sites from over 750 studies. The approach differs from previous work by modeling the relationship between observed biodiversity metrics and contemporary, global, geospatial layers of human pressures, with the intention of providing a high resolution monitoring product into the future.\\n\\nBiodiversity intactness is estimated as a combination of two metrics: Abundance, the quantity of individuals, and Compositional Similarity, how similar the composition of species is to an intact baseline. Linear mixed effects models are fit to estimate the predictive capacity of spatial datasets of human pressures on each of these metrics and project results spatially across the globe. These methods, as well as comparisons to other leading datasets and guidance on interpreting results, are further explained in a methods [white paper](https://ai4edatasetspublicassets.blob.core.windows.net/assets/pdfs/io-biodiversity/Biodiversity_Intactness_whitepaper.pdf) entitled \u201CGlobal 100m Projections of Biodiversity Intactness for the years 2017-2020.\u201D\\n\\nAll years are available under a Creative Commons BY-4.0 license.\\n\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Biodiversity Intactness\",\"description\":\"Terrestrial biodiversity intactness at 100m resolution\",\"raster:bands\":[{\"sampling\":\"area\",\"data_type\":\"float32\",\"spatial_resolution\":100}]}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:container\":\"impact\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"pcdata01euw\",\"msft:short_description\":\"Global terrestrial biodiversity intactness at 100m resolution for years 2017-2020\"},{\"id\":\"noaa-cdr-sea-surface-temperature-whoi\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi\"},{\"rel\":\"license\",\"href\":\"https://www.ncei.noaa.gov/pub/data/sds/cdr/CDRs/Sea%20Surface%20Temperature%20-%20WHOI/UseAgreement_01B-27a.pdf\",\"type\":\"application/pdf\",\"title\":\"NOAA CDR Sea Surface Temperature - WHOI Use Agreement\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/products/climate-data-records/sea-surface-temperature-whoi\",\"type\":\"text/html\",\"title\":\"Sea Surface Temperature - WHOI CDR\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.7289/V5FB510W\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-cdr-sea-surface-temperature-whoi\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sea Surface Temperature - WHOI CDR\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-cdr-sea-surface-temperature-whoi-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Sea Surface Temperature - WHOI CDR thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-cdr-sea-surface-temperature-whoi.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-90,180,90]]},\"temporal\":{\"interval\":[[\"1988-01-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.7289/V5FB510W\",\"keywords\":[\"Global\",\"Climate\",\"NOAA\",\"Ocean\",\"Temperature\"],\"providers\":[{\"url\":\"https://www.ncei.noaa.gov/\",\"name\":\"National Centers for Environmental Information\",\"roles\":[\"producer\",\"processor\",\"licensor\"],\"description\":\"NCEI is the Nation's leading authority for environmental data, and manage one of the largest archives of atmospheric, coastal, geophysical, and oceanic research in the world. NCEI contributes to the NESDIS mission by developing new products and services that span the science disciplines and enable better data discovery.\"},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"description\":\"The Sea Surface Temperature-Woods Hole Oceanographic Institution (WHOI) Climate Data Record (CDR) is one of three CDRs which combine to form the NOAA Ocean Surface Bundle (OSB) CDR. The resultant sea surface temperature (SST) data are produced through modeling the diurnal variability in combination with AVHRR SST observations. The final record is output to a 3-hourly 0.25\xB0 resolution grid over the global ice-free oceans from January 1988\u2014present.\\n\\nThese Cloud Optimized GeoTIFFs (COGs) were created from NetCDF files which are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\nFor the NetCDF files, see collection `noaa-cdr-sea-surface-temperature-whoi-netcdf`.\\n\",\"item_assets\":{\"fill_missing_qc\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"nodata\":\"nan\",\"data_type\":\"float32\"}]},\"sea_surface_temperature\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"degree Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\"}]}},\"msft:region\":\"eastus\",\"sci:citation\":\"Clayson, Carol Anne; Brown, Jeremiah; and NOAA CDR Program (2016). NOAA Climate Data Record (CDR) of Sea Surface Temperature - WHOI, Version 2. NOAA National Climatic Data Center. doi:10.7289/V5FB510W\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-cdr\",\"msft:container\":\"sea-surface-temperature-whoi\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"],\"msft:storage_account\":\"noaacdr\",\"msft:short_description\":\"The Sea Surface Temperature-Woods Hole Oceanographic Institution (WHOI) Climate Data Record (CDR) is one of three CDRs which combine to form the NOAA Ocean Surface Bundle (OSB) CDR. The resultant sea surface temperature (SST) data are produced through modeling the diurnal variability in combination with AVHRR SST observations.\"},{\"id\":\"noaa-cdr-ocean-heat-content\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content\"},{\"rel\":\"license\",\"href\":\"https://www.ncei.noaa.gov/pub/data/sds/cdr/CDRs/Ocean_Heat_Content/UseAgreement_01B-41.pdf\",\"type\":\"application/pdf\",\"title\":\"NOAA CDR Ocean Heat Content Use Agreement\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/products/climate-data-records/global-ocean-heat-content\",\"type\":\"text/html\",\"title\":\"Global Ocean Heat Content CDR\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.7289/v53f4mvp\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-cdr-ocean-heat-content\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Global Ocean Heat Content CDR\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-cdr-ocean-heat-content-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Global Ocean Heat Content CDR thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-cdr-ocean-heat-content.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-90.0,180.0,90.0]]},\"temporal\":{\"interval\":[[\"1972-03-01T00:00:00Z\",\"2022-03-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.7289/v53f4mvp\",\"keywords\":[\"Global\",\"Climate\",\"NOAA\",\"Temperature\",\"Ocean\"],\"providers\":[{\"url\":\"https://www.ncei.noaa.gov/\",\"name\":\"National Centers for Environmental Information\",\"roles\":[\"producer\",\"processor\",\"licensor\"],\"description\":\"NCEI is the Nation's leading authority for environmental data, and manage one of the largest archives of atmospheric, coastal, geophysical, and oceanic research in the world. NCEI contributes to the NESDIS mission by developing new products and services that span the science disciplines and enable better data discovery.\"},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"noaa_cdr:interval\":[\"monthly\",\"seasonal\",\"yearly\",\"pentadal\"],\"noaa_cdr:max_depth\":[100,700,2000]},\"description\":\"The Ocean Heat Content Climate Data Record (CDR) is a set of ocean heat content anomaly (OHCA) time-series for 1955-present on 3-monthly, yearly, and pentadal (five-yearly) scales. This CDR quantifies ocean heat content change over time, which is an essential metric for understanding climate change and the Earth's energy budget. It provides time-series for multiple depth ranges in the global ocean and each of the major basins (Atlantic, Pacific, and Indian) divided by hemisphere (Northern, Southern).\\n\\nThese Cloud Optimized GeoTIFFs (COGs) were created from NetCDF files which are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\nFor the NetCDF files, see collection `noaa-cdr-ocean-heat-content-netcdf`.\\n\",\"item_assets\":{\"heat_content\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Ocean Heat Content anomalies from WOA09\",\"raster:bands\":[{\"unit\":\"10^18 joules\",\"nodata\":\"nan\",\"data_type\":\"float32\"}]},\"mean_salinity\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Mean salinity anomalies from WOA09\",\"raster:bands\":[{\"nodata\":\"nan\",\"data_type\":\"float32\"}]},\"mean_temperature\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Mean temperature anomalies from WOA09\",\"raster:bands\":[{\"unit\":\"degrees Celsius\",\"nodata\":\"nan\",\"data_type\":\"float32\"}]},\"mean_halosteric_sea_level\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Mean halosteric sea level anomalies from WOA09\",\"raster:bands\":[{\"unit\":\"millimeters\",\"nodata\":\"nan\",\"data_type\":\"float32\"}]},\"mean_thermosteric_sea_level\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Mean thermosteric sea level anomalies from WOA09\",\"raster:bands\":[{\"unit\":\"millimeters\",\"nodata\":\"nan\",\"data_type\":\"float32\"}]},\"mean_total_steric_sea_level\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Mean total steric sea level anomalies from WOA09\",\"raster:bands\":[{\"unit\":\"millimeters\",\"nodata\":\"nan\",\"data_type\":\"float32\"}]}},\"msft:region\":\"eastus\",\"sci:citation\":\"Levitus, Sydney; Antonov, John I.; Boyer, Tim P.; Baranova, Olga K.; Garc\xEDa, Hern\xE1n E.; Locarnini, Ricardo A.; Mishonov, Alexey V.; Reagan, James R.; [Seidov, Dan; Yarosh, Evgeney; Zweng, Melissa M. (2017). NCEI ocean heat content, temperature anomalies, salinity anomalies, thermosteric sea level anomalies, halosteric sea level anomalies, and total steric sea level anomalies from 1955 to present calculated from in situ oceanographic subsurface profile data (NCEI Accession 0164586). NOAA National Centers for Environmental Information. Dataset. https://doi.org/10.7289/v53f4mvp.\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-cdr\",\"msft:container\":\"ocean-heat-content\",\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"noaacdr\",\"msft:short_description\":\"The Ocean Heat Content Climate Data Record (CDR) is a set of ocean heat content anomaly (OHCA) time-series for 1955-present on 3-monthly, yearly, and pentadal (five-yearly) scales.\"},{\"id\":\"cil-gdpcir-cc0\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0\"},{\"rel\":\"license\",\"href\":\"https://spdx.org/licenses/CC0-1.0.html\",\"type\":\"text/html\",\"title\":\"Creative Commons Zero v1.0 Universal\"},{\"rel\":\"cite-as\",\"href\":\"https://zenodo.org/record/6403794\",\"type\":\"text/html\"},{\"rel\":\"describedby\",\"href\":\"https://github.com/ClimateImpactLab/downscaleCMIP6/\",\"type\":\"text/html\",\"title\":\"Project homepage\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gdpcir.png\",\"type\":\"image/png\",\"title\":\"Thumbnail\"}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1950-01-01T00:00:00Z\",\"2100-12-31T00:00:00Z\"]]}},\"license\":\"CC0-1.0\",\"sci:doi\":\"10.5194/egusphere-2022-1513\",\"keywords\":[\"CMIP6\",\"Climate Impact Lab\",\"Rhodium Group\",\"Precipitation\",\"Temperature\"],\"providers\":[{\"url\":\"https://impactlab.org/\",\"name\":\"Climate Impact Lab\",\"roles\":[\"producer\"]},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"cmip6:variable\":[\"pr\",\"tasmax\",\"tasmin\"],\"cmip6:source_id\":[\"FGOALS-g3\",\"INM-CM4-8\",\"INM-CM5-0\"],\"cmip6:experiment_id\":[\"historical\",\"ssp126\",\"ssp245\",\"ssp370\",\"ssp585\"],\"cmip6:institution_id\":[\"BCC\",\"CAS\",\"CCCma\",\"CMCC\",\"CSIRO\",\"CSIRO-ARCCSS\",\"DKRZ\",\"EC-Earth-Consortium\",\"INM\",\"MIROC\",\"MOHC\",\"MPI-M\",\"NCC\",\"NOAA-GFDL\",\"NUIST\"]},\"description\":\"The World Climate Research Programme's [6th Coupled Model Intercomparison Project (CMIP6)](https://www.wcrp-climate.org/wgcm-cmip/wgcm-cmip6) represents an enormous advance in the quality, detail, and scope of climate modeling.\\n\\nThe [Global Downscaled Projections for Climate Impacts Research](https://github.com/ClimateImpactLab/downscaleCMIP6) dataset makes this modeling more applicable to understanding the impacts of changes in the climate on humans and society with two key developments: trend-preserving bias correction and downscaling. In this dataset, the [Climate Impact Lab](https://impactlab.org) provides global, daily minimum and maximum air temperature at the surface (`tasmin` and `tasmax`) and daily cumulative surface precipitation (`pr`) corresponding to the CMIP6 historical, ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 scenarios for 25 global climate models on a 1/4-degree regular global grid.\\n\\n## Accessing the data\\n\\nGDPCIR data can be accessed on the Microsoft Planetary Computer. The dataset is made of of three collections, distinguished by data license:\\n* [Public domain (CC0-1.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0)\\n* [Attribution (CC BY 4.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by)\\n\\nEach modeling center with bias corrected and downscaled data in this collection falls into one of these license categories - see the [table below](/dataset/cil-gdpcir-cc0#available-institutions-models-and-scenarios-by-license-collection) to see which model is in each collection, and see the section below on [Citing, Licensing, and using data produced by this project](/dataset/cil-gdpcir-cc0#citing-licensing-and-using-data-produced-by-this-project) for citations and additional information about each license.\\n\\n## Data format & contents\\n\\nThe data is stored as partitioned zarr stores (see [https://zarr.readthedocs.io](https://zarr.readthedocs.io)), each of which includes thousands of data and metadata files covering the full time span of the experiment. Historical zarr stores contain just over 50 GB, while SSP zarr stores contain nearly 70GB. Each store is stored as a 32-bit float, with dimensions time (daily datetime), lat (float latitude), and lon (float longitude). The data is chunked at each interval of 365 days and 90 degree interval of latitude and longitude. Therefore, each chunk is `(365, 360, 360)`, with each chunk occupying approximately 180MB in memory.\\n\\nHistorical data is daily, excluding leap days, from Jan 1, 1950 to Dec 31, 2014; SSP data is daily, excluding leap days, from Jan 1, 2015 to either Dec 31, 2099 or Dec 31, 2100, depending on data availability in the source GCM.\\n\\nThe spatial domain covers all 0.25-degree grid cells, indexed by the grid center, with grid edges on the quarter-degree, using a -180 to 180 longitude convention. Thus, the \u201Clon\u201D coordinate extends from -179.875 to 179.875, and the \u201Clat\u201D coordinate extends from -89.875 to 89.875, with intermediate values at each 0.25-degree increment between (e.g. -179.875, -179.625, -179.375, etc).\\n\\n## Available institutions, models, and scenarios by license collection\\n\\n| Modeling institution | Source model | Available experiments \ | License collection |\\n| -------------------- | ----------------- | ------------------------------------------ | ---------------------- |\\n| CAS | FGOALS-g3 [^1] | SSP2-4.5, SSP3-7.0, and SSP5-8.5 \ | Public domain datasets |\\n| INM | INM-CM4-8 \ | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets |\\n| INM | INM-CM5-0 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets |\\n| BCC | BCC-CSM2-MR \ | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| CMCC | CMCC-CM2-SR5 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 \ | CC-BY-40 |\\n| CMCC | CMCC-ESM2 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 | CC-BY-40 |\\n| CSIRO-ARCCSS | ACCESS-CM2 | SSP2-4.5 and SSP3-7.0 | CC-BY-40 |\\n| CSIRO | ACCESS-ESM1-5 | SSP1-2.6, SSP2-4.5, and SSP3-7.0 | CC-BY-40 |\\n| MIROC | MIROC-ES2L | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| MIROC | MIROC6 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| MOHC | HadGEM3-GC31-LL | SSP1-2.6, SSP2-4.5, and SSP5-8.5 | CC-BY-40 \ |\\n| MOHC | UKESM1-0-LL | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| MPI-M | MPI-ESM1-2-LR | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| MPI-M/DKRZ [^2] | MPI-ESM1-2-HR | SSP1-2.6 and SSP5-8.5 | CC-BY-40 |\\n| NCC | NorESM2-LM | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| NCC | NorESM2-MM | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| NOAA-GFDL \ | GFDL-CM4 | SSP2-4.5 and SSP5-8.5 | CC-BY-40 |\\n| NOAA-GFDL | GFDL-ESM4 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| NUIST | NESM3 | SSP1-2.6, SSP2-4.5, and SSP5-8.5 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3 | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 |\\n| EC-Earth-Consortium \ | EC-Earth3-AerChem | ssp370 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3-CC | ssp245 and ssp585 | CC-BY-40 |\\n| EC-Earth-Consortium \ | EC-Earth3-Veg | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3-Veg-LR | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 |\\n| CCCma | CanESM5 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 | CC-BY-40[^3] \ |\\n\\n*Notes:*\\n\\n[^1]: At the time of running, no ssp1-2.6 precipitation data was available. Therefore, we provide `tasmin` and `tamax` for this model and experiment, but not `pr`. All other model/experiment combinations in the above table include all three variables.\\n\\n[^2]: The institution which ran MPI-ESM1-2-HR\u2019s historical (CMIP) simulations is `MPI-M`, while the future (ScenarioMIP) simulations were run by `DKRZ`. Therefore, the institution component of `MPI-ESM1-2-HR` filepaths differ between `historical` and `SSP` scenarios.\\n\\n[^3]: This dataset was previously licensed as [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/), but was relicensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0) in March, 2023. \\n\\n## Project methods\\n\\nThis project makes use of statistical bias correction and downscaling algorithms, which are specifically designed to accurately represent changes in the extremes. For this reason, we selected Quantile Delta Mapping (QDM), following the method introduced by [Cannon et al. (2015)](https://doi.org/10.1175/JCLI-D-14-00754.1), which preserves quantile-specific trends from the GCM while fitting the full distribution for a given day-of-year to a reference dataset (ERA5).\\n\\nWe then introduce a similar method tailored to increase spatial resolution while preserving extreme behavior, Quantile-Preserving Localized-Analog Downscaling (QPLAD).\\n\\nTogether, these methods provide a robust means to handle both the central and tail behavior seen in climate model output, while aligning the full distribution to a state-of-the-art reanalysis dataset and providing the spatial granularity needed to study surface impacts.\\n\\nFor further documentation, see [Global downscaled projections for climate impacts research (GDPCIR): preserving extremes for modeling future climate impacts](https://egusphere.copernicus.org/preprints/2023/egusphere-2022-1513/) (EGUsphere, 2022 [preprint]).\\n\\n\\n## Citing, licensing, and using data produced by this project\\n\\nProjects making use of the data produced as part of the Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CIL GDPCIR) project are requested to cite both this project and the source datasets from which these results are derived. Additionally, the use of data derived from some GCMs *requires* citations, and some modeling centers impose licensing restrictions & requirements on derived works. See each GCM's license info in the links below for more information.\\n\\n### CIL GDPCIR\\n\\nUsers are requested to cite this project in derived works. Our method documentation paper may be cited using the following:\\n\\n> Gergel, D. R., Malevich, S. B., McCusker, K. E., Tenezakis, E., Delgado, M. T., Fish, M. A., and Kopp, R. E.: Global downscaled projections for climate impacts research (GDPCIR): preserving extremes for modeling future climate impacts, EGUsphere [preprint], https://doi.org/10.5194/egusphere-2022-1513, 2023. \\n\\nThe code repository may be cited using the following:\\n\\n> Diana Gergel, Kelly McCusker, Brewster Malevich, Emile Tenezakis, Meredith Fish, Michael Delgado (2022). ClimateImpactLab/downscaleCMIP6: (v1.0.0). Zenodo. https://doi.org/10.5281/zenodo.6403794\\n\\n### ERA5\\n\\nAdditionally, we request you cite the historical dataset used in bias correction and downscaling, ERA5. See the [ECMWF guide to citing a dataset on the Climate Data Store](https://confluence.ecmwf.int/display/CKB/How+to+acknowledge+and+cite+a+Climate+Data+Store+%28CDS%29+catalogue+entry+and+the+data+published+as+part+of+it):\\n\\n> Hersbach, H, et al. The ERA5 global reanalysis. Q J R Meteorol Soc.2020; 146: 1999\u20132049. DOI: [10.1002/qj.3803](https://doi.org/10.1002/qj.3803)\\n>\\n> Mu\xF1oz Sabater, J., (2019): ERA5-Land hourly data from 1981 to present. Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\n>\\n> Mu\xF1oz Sabater, J., (2021): ERA5-Land hourly data from 1950 to 1980. Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\n\\n### GCM-specific citations & licenses\\n\\nThe CMIP6 simulation data made available through the Earth System Grid Federation (ESGF) are subject to Creative Commons [BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) or [BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) licenses. The Climate Impact Lab has reached out to each of the modeling institutions to request waivers from these terms so the outputs of this project may be used with fewer restrictions, and has been granted permission to release the data using the licenses listed here.\\n\\n#### Public Domain Datasets\\n\\nThe following bias corrected and downscaled model simulations are available in the public domain using a [CC0 1.0 Universal Public Domain Declaration](https://creativecommons.org/publicdomain/zero/1.0/). Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0.\\n\\n* **FGOALS-g3**\\n\\n License description: [data_licenses/FGOALS-g3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/FGOALS-g3.txt)\\n\\n \ CMIP Citation:\\n\\n > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6 CMIP*. Version 20190826. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1783\\n\\n ScenarioMIP Citation:\\n\\n \ > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190818; SSP2-4.5 version 20190818; SSP3-7.0 version 20190820; SSP5-8.5 tasmax version 20190819; SSP5-8.5 tasmin version 20190819; SSP5-8.5 pr version 20190818. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2056\\n\\n\\n* **INM-CM4-8**\\n\\n License description: [data_licenses/INM-CM4-8.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/INM-CM4-8.txt)\\n\\n \ CMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8 model output prepared for CMIP6 CMIP*. Version 20190530. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1422\\n\\n ScenarioMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8 model output prepared for CMIP6 ScenarioMIP*. Version 20190603. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12321\\n\\n\\n* **INM-CM5-0**\\n\\n \ License description: [data_licenses/INM-CM5-0.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/INM-CM5-0.txt)\\n\\n \ CMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0 model output prepared for CMIP6 CMIP*. Version 20190610. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1423\\n\\n ScenarioMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190619; SSP2-4.5 version 20190619; SSP3-7.0 version 20190618; SSP5-8.5 version 20190724. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12322\\n\\n\\n#### CC-BY-4.0\\n\\nThe following bias corrected and downscaled model simulations are licensed under a [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/). Note that this license requires citation of the source model output (included here). Please see https://creativecommons.org/licenses/by/4.0/ for more information. Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by.\\n\\n* **ACCESS-CM2**\\n\\n License description: [data_licenses/ACCESS-CM2.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/ACCESS-CM2.txt)\\n\\n \ CMIP Citation:\\n\\n > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2281\\n\\n ScenarioMIP Citation:\\n\\n \ > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2285\\n\\n\\n* **ACCESS-ESM1-5**\\n\\n \ License description: [data_licenses/ACCESS-ESM1-5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/ACCESS-ESM1-5.txt)\\n\\n \ CMIP Citation:\\n\\n > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2288\\n\\n ScenarioMIP Citation:\\n\\n \ > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 ScenarioMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2291\\n\\n\\n* **BCC-CSM2-MR**\\n\\n License description: [data_licenses/BCC-CSM2-MR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/BCC-CSM2-MR.txt)\\n\\n \ CMIP Citation:\\n\\n > Xin, Xiaoge; Zhang, Jie; Zhang, Fang; Wu, Tongwen; Shi, Xueli; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei, Min **(2018)**. *BCC BCC-CSM2MR model output prepared for CMIP6 CMIP*. Version 20181126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1725\\n\\n \ ScenarioMIP Citation:\\n\\n > Xin, Xiaoge; Wu, Tongwen; Shi, Xueli; Zhang, Fang; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei, Min **(2019)**. *BCC BCC-CSM2MR model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190315; SSP2-4.5 version 20190318; SSP3-7.0 version 20190318; SSP5-8.5 version 20190318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1732\\n\\n\\n* **CMCC-CM2-SR5**\\n\\n License description: [data_licenses/CMCC-CM2-SR5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CMCC-CM2-SR5.txt)\\n\\n \ CMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5 model output prepared for CMIP6 CMIP*. Version 20200616. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1362\\n\\n ScenarioMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200717; SSP2-4.5 version 20200617; SSP3-7.0 version 20200622; SSP5-8.5 version 20200622. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1365\\n\\n\\n* **CMCC-ESM2**\\n\\n License description: [data_licenses/CMCC-ESM2.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CMCC-ESM2.txt)\\n\\n \ CMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele; Butensch\xF6n, Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 CMIP*. Version 20210114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13164\\n\\n \ ScenarioMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele; Butensch\xF6n, Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20210126; SSP2-4.5 version 20210129; SSP3-7.0 version 20210202; SSP5-8.5 version 20210126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13168\\n\\n\\n* **EC-Earth3-AerChem**\\n\\n License description: [data_licenses/EC-Earth3-AerChem.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-AerChem.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 CMIP*. Version 20200624. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.639\\n\\n \ ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 ScenarioMIP*. Version 20200827. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.724\\n\\n\\n* **EC-Earth3-CC**\\n\\n License description: [data_licenses/EC-Earth3-CC.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-CC.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth-3-CC model output prepared for CMIP6 CMIP*. Version 20210113. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.640\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2021)**. *EC-Earth-Consortium EC-Earth3-CC model output prepared for CMIP6 ScenarioMIP*. Version 20210113. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.15327\\n\\n\\n* **EC-Earth3-Veg-LR**\\n\\n License description: [data_licenses/EC-Earth3-Veg-LR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-Veg-LR.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 CMIP*. Version 20200217. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.643\\n\\n \ ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20201201; SSP2-4.5 version 20201123; SSP3-7.0 version 20201123; SSP5-8.5 version 20201201. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.728\\n\\n\\n* **EC-Earth3-Veg**\\n\\n License description: [data_licenses/EC-Earth3-Veg.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-Veg.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3-Veg model output prepared for CMIP6 CMIP*. Version 20200225. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.642\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3-Veg model output prepared for CMIP6 ScenarioMIP*. Version 20200225. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.727\\n\\n\\n* **EC-Earth3**\\n\\n License description: [data_licenses/EC-Earth3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3 model output prepared for CMIP6 CMIP*. Version 20200310. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.181\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3 model output prepared for CMIP6 ScenarioMIP*. Version 20200310. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.251\\n\\n\\n* **GFDL-CM4**\\n\\n License description: [data_licenses/GFDL-CM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-CM4.txt)\\n\\n \ CMIP Citation:\\n\\n > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Bushuk, Mitchell; Dunne, Krista A.; Dussin, Raphael; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, P.C.D; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4 model output*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1402\\n\\n ScenarioMIP Citation:\\n\\n \ > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, Chris; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.9242\\n\\n\\n* **GFDL-ESM4**\\n\\n \ License description: [data_licenses/GFDL-ESM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-ESM4.txt)\\n\\n \ CMIP Citation:\\n\\n > Krasting, John P.; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Silvers, Levi; Wyman, Bruce; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Dussin, Raphael; Guo, Huan; He, Jian; Held, Isaac M; Horowitz, Larry W.; Lin, Pu; Milly, P.C.D; Shevliakova, Elena; Stock, Charles; Winton, Michael; Wittenberg, Andrew T.; Xie, Yuanyu; Zhao, Ming **(2018)**. *NOAA-GFDL GFDL-ESM4 model output prepared for CMIP6 CMIP*. Version 20190726. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1407\\n\\n ScenarioMIP Citation:\\n\\n \ > John, Jasmin G; Blanton, Chris; McHugh, Colleen; Radhakrishnan, Aparna; Rand, Kristopher; Vahlenkamp, Hans; Wilson, Chandin; Zadeh, Niki T.; Dunne, John P.; Dussin, Raphael; Horowitz, Larry W.; Krasting, John P.; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Ploshay, Jeffrey; Shevliakova, Elena; Silvers, Levi; Stock, Charles; Winton, Michael; Zeng, Yujin **(2018)**. *NOAA-GFDL GFDL-ESM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1414\\n\\n\\n* **HadGEM3-GC31-LL**\\n\\n License description: [data_licenses/HadGEM3-GC31-LL.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/HadGEM3-GC31-LL.txt)\\n\\n \ CMIP Citation:\\n\\n > Ridley, Jeff; Menary, Matthew; Kuhlbrodt, Till; Andrews, Martin; Andrews, Tim **(2018)**. *MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP*. Version 20190624. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.419\\n\\n ScenarioMIP Citation:\\n\\n \ > Good, Peter **(2019)**. *MOHC HadGEM3-GC31-LL model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200114; SSP2-4.5 version 20190908; SSP5-8.5 version 20200114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.10845\\n\\n\\n* **MIROC-ES2L**\\n\\n License description: [data_licenses/MIROC-ES2L.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MIROC-ES2L.txt)\\n\\n \ CMIP Citation:\\n\\n > Hajima, Tomohiro; Abe, Manabu; Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogura, Tomoo; Ogochi, Koji; Watanabe, Michio; Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio; Tachiiri, Kaoru **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 CMIP*. Version 20191129. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.902\\n\\n \ ScenarioMIP Citation:\\n\\n > Tachiiri, Kaoru; Abe, Manabu; Hajima, Tomohiro; Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogochi, Koji; Watanabe, Michio; Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 ScenarioMIP*. Version 20200318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.936\\n\\n\\n* **MIROC6**\\n\\n License description: [data_licenses/MIROC6.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MIROC6.txt)\\n\\n \ CMIP Citation:\\n\\n > Tatebe, Hiroaki; Watanabe, Masahiro **(2018)**. *MIROC MIROC6 model output prepared for CMIP6 CMIP*. Version 20191016. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.881\\n\\n ScenarioMIP Citation:\\n\\n > Shiogama, Hideo; Abe, Manabu; Tatebe, Hiroaki **(2019)**. *MIROC MIROC6 model output prepared for CMIP6 ScenarioMIP*. Version 20191016. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.898\\n\\n\\n* **MPI-ESM1-2-HR**\\n\\n License description: [data_licenses/MPI-ESM1-2-HR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MPI-ESM1-2-HR.txt)\\n\\n \ CMIP Citation:\\n\\n > Jungclaus, Johann; Bittner, Matthias; Wieners, Karl-Hermann; Wachsmann, Fabian; Schupfner, Martin; Legutke, Stephanie; Giorgetta, Marco; Reick, Christian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Esch, Monika; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-HR model output prepared for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.741\\n\\n \ ScenarioMIP Citation:\\n\\n > Schupfner, Martin; Wieners, Karl-Hermann; Wachsmann, Fabian; Steger, Christian; Bittner, Matthias; Jungclaus, Johann; Fr\xFCh, Barbara; Pankatz, Klaus; Giorgetta, Marco; Reick, Christian; Legutke, Stephanie; Esch, Monika; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *DKRZ MPI-ESM1.2-HR model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2450\\n\\n\\n* **MPI-ESM1-2-LR**\\n\\n License description: [data_licenses/MPI-ESM1-2-LR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MPI-ESM1-2-LR.txt)\\n\\n \ CMIP Citation:\\n\\n > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Legutke, Stephanie; Schupfner, Martin; Wachsmann, Fabian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.742\\n\\n \ ScenarioMIP Citation:\\n\\n > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.793\\n\\n\\n* **NESM3**\\n\\n \ License description: [data_licenses/NESM3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NESM3.txt)\\n\\n \ CMIP Citation:\\n\\n > Cao, Jian; Wang, Bin **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 CMIP*. Version 20190812. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2021\\n\\n ScenarioMIP Citation:\\n\\n \ > Cao, Jian **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190806; SSP2-4.5 version 20190805; SSP5-8.5 version 20190811. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2027\\n\\n\\n* **NorESM2-LM**\\n\\n License description: [data_licenses/NorESM2-LM.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NorESM2-LM.txt)\\n\\n \ CMIP Citation:\\n\\n > Seland, \xD8yvind; Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 CMIP*. Version 20190815. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.502\\n\\n ScenarioMIP Citation:\\n\\n \ > Seland, \xD8yvind; Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.604\\n\\n\\n* **NorESM2-MM**\\n\\n License description: [data_licenses/NorESM2-MM.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NorESM2-MM.txt)\\n\\n \ CMIP Citation:\\n\\n > Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Seland, \xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.506\\n\\n ScenarioMIP Citation:\\n\\n \ > Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Seland, \xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.608\\n\\n\\n* **UKESM1-0-LL**\\n\\n License description: [data_licenses/UKESM1-0-LL.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/UKESM1-0-LL.txt)\\n\\n \ CMIP Citation:\\n\\n > Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Mulcahy, Jane; Sellar, Alistair; Walton, Jeremy; Jones, Colin **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 CMIP*. Version 20190627. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1569\\n\\n \ ScenarioMIP Citation:\\n\\n > Good, Peter; Sellar, Alistair; Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Kuhlbrodt, Till; Walton, Jeremy **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190708; SSP2-4.5 version 20190715; SSP3-7.0 version 20190726; SSP5-8.5 version 20190726. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1567\\n\\n\\n* **CanESM5**\\n\\n License description: [data_licenses/CanESM5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CanESM5.txt). Note: this dataset was previously licensed\\n under CC BY-SA 4.0, but was relicensed as CC BY 4.0 in March, 2023.\\n\\n CMIP Citation:\\n\\n > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model output prepared for CMIP6 CMIP*. Version 20190429. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1303\\n\\n ScenarioMIP Citation:\\n\\n \ > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model output prepared for CMIP6 ScenarioMIP*. Version 20190429. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1317\\n\\n## Acknowledgements\\n\\nThis work is the result of many years worth of work by members of the [Climate Impact Lab](https://impactlab.org), but would not have been possible without many contributions from across the wider scientific and computing communities.\\n\\nSpecifically, we would like to acknowledge the World Climate Research Programme's Working Group on Coupled Modeling, which is responsible for CMIP, and we would like to thank the climate modeling groups for producing and making their model output available. We would particularly like to thank the modeling institutions whose results are included as an input to this repository (listed above) for their contributions to the CMIP6 project and for responding to and granting our requests for license waivers.\\n\\nWe would also like to thank Lamont-Doherty Earth Observatory, the [Pangeo Consortium](https://github.com/pangeo-data) (and especially the [ESGF Cloud Data Working Group](https://pangeo-data.github.io/pangeo-cmip6-cloud/#)) and Google Cloud and the Google Public Datasets program for making the [CMIP6 Google Cloud collection](https://console.cloud.google.com/marketplace/details/noaa-public/cmip6) possible. In particular we're extremely grateful to [Ryan Abernathey](https://github.com/rabernat), [Naomi Henderson](https://github.com/naomi-henderson), [Charles Blackmon-Luca](https://github.com/charlesbluca), [Aparna Radhakrishnan](https://github.com/aradhakrishnanGFDL), [Julius Busecke](https://github.com/jbusecke), and [Charles Stern](https://github.com/cisaacstern) for the huge amount of work they've done to translate the ESGF CMIP6 netCDF archives into consistently-formattted, analysis-ready zarr stores on Google Cloud.\\n\\nWe're also grateful to the [xclim developers](https://github.com/Ouranosinc/xclim/graphs/contributors) ([DOI: 10.5281/zenodo.2795043](https://doi.org/10.5281/zenodo.2795043)), in particular [Pascal Bourgault](https://github.com/aulemahal), [David Huard](https://github.com/huard), and [Travis Logan](https://github.com/tlogan2000), for implementing the QDM bias correction method in the xclim python package, supporting our QPLAD implementation into the package, and ongoing support in integrating dask into downscaling workflows. For method advice and useful conversations, we would like to thank Keith Dixon, Dennis Adams-Smith, and [Joe Hamman](https://github.com/jhamman).\\n\\n## Financial support\\n\\nThis research has been supported by The Rockefeller Foundation and the Microsoft AI for Earth Initiative.\\n\\n## Additional links:\\n\\n* CIL GDPCIR project homepage: [github.com/ClimateImpactLab/downscaleCMIP6](https://github.com/ClimateImpactLab/downscaleCMIP6)\\n* Project listing on zenodo: https://doi.org/10.5281/zenodo.6403794\\n* Climate Impact Lab homepage: [impactlab.org](https://impactlab.org)\",\"item_assets\":{\"pr\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Precipitation\",\"description\":\"Precipitation\"},\"tasmax\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Daily Maximum Near-Surface Air Temperature\",\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Daily Minimum Near-Surface Air Temperature\",\"description\":\"Daily Minimum Near-Surface Air Temperature\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"cil-gdpcir\",\"cube:variables\":{\"pr\":{\"type\":\"data\",\"unit\":\"mm day-1\",\"attrs\":{\"units\":\"mm day-1\"},\"dimensions\":[\"time\",\"lat\",\"lon\"]},\"tasmax\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"maximum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: max')\",\"long_name\":\"Daily Maximum Near-Surface Air Temperature\",\"coordinates\":\"height\",\"cell_methods\":\"area: mean time: maximum (interval: 5 minutes)\",\"cell_measures\":\"area: areacella\",\"original_name\":\"TREFHTMX\",\"standard_name\":\"air_temperature\"},\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"minimum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: min')\",\"long_name\":\"Daily Minimum Near-Surface Air Temperature\",\"coordinates\":\"height\",\"cell_methods\":\"area: mean time: minimum (interval: 5 minutes)\",\"cell_measures\":\"area: areacella\",\"original_name\":\"TREFHTMN\",\"standard_name\":\"air_temperature\"},\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Minimum Near-Surface Air Temperature\"}},\"msft:container\":\"cil-gdpcir\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[-89.875,89.875],\"reference_system\":\"epsg:4326\"},\"lon\":{\"axis\":\"x\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[-179.875,179.875],\"reference_system\":\"epsg:4326\"},\"time\":{\"step\":\"P1DT0H0M0S\",\"type\":\"temporal\",\"extent\":[\"1950-01-01T12:00:00Z\",\"2100-12-31T12:00:00Z\"],\"description\":\"time\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\"msft:storage_account\":\"rhgeuwest\",\"msft:short_description\":\"Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CC0-1.0)\"},{\"id\":\"cil-gdpcir-cc-by\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by\"},{\"rel\":\"license\",\"href\":\"https://spdx.org/licenses/CC-BY-4.0.html\",\"type\":\"text/html\",\"title\":\"Creative Commons Attribution 4.0 International\"},{\"rel\":\"cite-as\",\"href\":\"https://zenodo.org/record/6403794\",\"type\":\"text/html\"},{\"rel\":\"describedby\",\"href\":\"https://github.com/ClimateImpactLab/downscaleCMIP6/\",\"type\":\"text/html\",\"title\":\"Project homepage\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gdpcir.png\",\"type\":\"image/png\",\"title\":\"Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/cil-gdpcir-cc-by.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1950-01-01T00:00:00Z\",\"2100-12-31T00:00:00Z\"]]}},\"license\":\"CC-BY-4.0\",\"sci:doi\":\"10.5194/egusphere-2022-1513\",\"keywords\":[\"CMIP6\",\"Climate Impact Lab\",\"Rhodium Group\",\"Precipitation\",\"Temperature\"],\"providers\":[{\"url\":\"https://impactlab.org/\",\"name\":\"Climate Impact Lab\",\"roles\":[\"producer\"]},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"cmip6:variable\":[\"pr\",\"tasmax\",\"tasmin\"],\"cmip6:source_id\":[\"BCC-CSM2-MR\",\"ACCESS-ESM1-5\",\"ACCESS-CM2\",\"MIROC-ES2L\",\"MIROC6\",\"NorESM2-LM\",\"NorESM2-MM\",\"GFDL-CM4\",\"GFDL-ESM4\",\"NESM3\",\"MPI-ESM1-2-HR\",\"HadGEM3-GC31-LL\",\"UKESM1-0-LL\",\"MPI-ESM1-2-LR\",\"EC-Earth3\",\"EC-Earth3-AerChem\",\"EC-Earth3-CC\",\"EC-Earth3-Veg\",\"EC-Earth3-Veg-LR\",\"CMCC-CM2-SR5\",\"CMCC-ESM2\"],\"cmip6:experiment_id\":[\"historical\",\"ssp126\",\"ssp245\",\"ssp370\",\"ssp585\"],\"cmip6:institution_id\":[\"BCC\",\"CAS\",\"CCCma\",\"CMCC\",\"CSIRO\",\"CSIRO-ARCCSS\",\"DKRZ\",\"EC-Earth-Consortium\",\"INM\",\"MIROC\",\"MOHC\",\"MPI-M\",\"NCC\",\"NOAA-GFDL\",\"NUIST\"]},\"description\":\"The World Climate Research Programme's [6th Coupled Model Intercomparison Project (CMIP6)](https://www.wcrp-climate.org/wgcm-cmip/wgcm-cmip6) represents an enormous advance in the quality, detail, and scope of climate modeling.\\n\\nThe [Global Downscaled Projections for Climate Impacts Research](https://github.com/ClimateImpactLab/downscaleCMIP6) dataset makes this modeling more applicable to understanding the impacts of changes in the climate on humans and society with two key developments: trend-preserving bias correction and downscaling. In this dataset, the [Climate Impact Lab](https://impactlab.org) provides global, daily minimum and maximum air temperature at the surface (`tasmin` and `tasmax`) and daily cumulative surface precipitation (`pr`) corresponding to the CMIP6 historical, ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 scenarios for 25 global climate models on a 1/4-degree regular global grid.\\n\\n## Accessing the data\\n\\nGDPCIR data can be accessed on the Microsoft Planetary Computer. The dataset is made of of three collections, distinguished by data license:\\n* [Public domain (CC0-1.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0)\\n* [Attribution (CC BY 4.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by)\\n\\nEach modeling center with bias corrected and downscaled data in this collection falls into one of these license categories - see the [table below](/dataset/cil-gdpcir-cc-by#available-institutions-models-and-scenarios-by-license-collection) to see which model is in each collection, and see the section below on [Citing, Licensing, and using data produced by this project](/dataset/cil-gdpcir-cc-by#citing-licensing-and-using-data-produced-by-this-project) for citations and additional information about each license.\\n\\n## Data format & contents\\n\\nThe data is stored as partitioned zarr stores (see [https://zarr.readthedocs.io](https://zarr.readthedocs.io)), each of which includes thousands of data and metadata files covering the full time span of the experiment. Historical zarr stores contain just over 50 GB, while SSP zarr stores contain nearly 70GB. Each store is stored as a 32-bit float, with dimensions time (daily datetime), lat (float latitude), and lon (float longitude). The data is chunked at each interval of 365 days and 90 degree interval of latitude and longitude. Therefore, each chunk is `(365, 360, 360)`, with each chunk occupying approximately 180MB in memory.\\n\\nHistorical data is daily, excluding leap days, from Jan 1, 1950 to Dec 31, 2014; SSP data is daily, excluding leap days, from Jan 1, 2015 to either Dec 31, 2099 or Dec 31, 2100, depending on data availability in the source GCM.\\n\\nThe spatial domain covers all 0.25-degree grid cells, indexed by the grid center, with grid edges on the quarter-degree, using a -180 to 180 longitude convention. Thus, the \u201Clon\u201D coordinate extends from -179.875 to 179.875, and the \u201Clat\u201D coordinate extends from -89.875 to 89.875, with intermediate values at each 0.25-degree increment between (e.g. -179.875, -179.625, -179.375, etc).\\n\\n## Available institutions, models, and scenarios by license collection\\n\\n| Modeling institution | Source model | Available experiments \ | License collection |\\n| -------------------- | ----------------- | ------------------------------------------ | ---------------------- |\\n| CAS | FGOALS-g3 [^1] | SSP2-4.5, SSP3-7.0, and SSP5-8.5 \ | Public domain datasets |\\n| INM | INM-CM4-8 \ | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets |\\n| INM | INM-CM5-0 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets |\\n| BCC | BCC-CSM2-MR \ | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| CMCC | CMCC-CM2-SR5 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 \ | CC-BY-40 |\\n| CMCC | CMCC-ESM2 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 | CC-BY-40 |\\n| CSIRO-ARCCSS | ACCESS-CM2 | SSP2-4.5 and SSP3-7.0 | CC-BY-40 |\\n| CSIRO | ACCESS-ESM1-5 | SSP1-2.6, SSP2-4.5, and SSP3-7.0 | CC-BY-40 |\\n| MIROC | MIROC-ES2L | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| MIROC | MIROC6 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| MOHC | HadGEM3-GC31-LL | SSP1-2.6, SSP2-4.5, and SSP5-8.5 | CC-BY-40 \ |\\n| MOHC | UKESM1-0-LL | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| MPI-M | MPI-ESM1-2-LR | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| MPI-M/DKRZ [^2] | MPI-ESM1-2-HR | SSP1-2.6 and SSP5-8.5 | CC-BY-40 |\\n| NCC | NorESM2-LM | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| NCC | NorESM2-MM | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| NOAA-GFDL \ | GFDL-CM4 | SSP2-4.5 and SSP5-8.5 | CC-BY-40 |\\n| NOAA-GFDL | GFDL-ESM4 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| NUIST | NESM3 | SSP1-2.6, SSP2-4.5, and SSP5-8.5 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3 | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 |\\n| EC-Earth-Consortium \ | EC-Earth3-AerChem | ssp370 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3-CC | ssp245 and ssp585 | CC-BY-40 |\\n| EC-Earth-Consortium \ | EC-Earth3-Veg | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3-Veg-LR | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 |\\n| CCCma | CanESM5 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 | CC-BY-40[^3] \ |\\n\\n*Notes:*\\n\\n[^1]: At the time of running, no ssp1-2.6 precipitation data was available. Therefore, we provide `tasmin` and `tamax` for this model and experiment, but not `pr`. All other model/experiment combinations in the above table include all three variables.\\n\\n[^2]: The institution which ran MPI-ESM1-2-HR\u2019s historical (CMIP) simulations is `MPI-M`, while the future (ScenarioMIP) simulations were run by `DKRZ`. Therefore, the institution component of `MPI-ESM1-2-HR` filepaths differ between `historical` and `SSP` scenarios.\\n\\n[^3]: This dataset was previously licensed as [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/), but was relicensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0) in March, 2023. \\n\\n## Project methods\\n\\nThis project makes use of statistical bias correction and downscaling algorithms, which are specifically designed to accurately represent changes in the extremes. For this reason, we selected Quantile Delta Mapping (QDM), following the method introduced by [Cannon et al. (2015)](https://doi.org/10.1175/JCLI-D-14-00754.1), which preserves quantile-specific trends from the GCM while fitting the full distribution for a given day-of-year to a reference dataset (ERA5).\\n\\nWe then introduce a similar method tailored to increase spatial resolution while preserving extreme behavior, Quantile-Preserving Localized-Analog Downscaling (QPLAD).\\n\\nTogether, these methods provide a robust means to handle both the central and tail behavior seen in climate model output, while aligning the full distribution to a state-of-the-art reanalysis dataset and providing the spatial granularity needed to study surface impacts.\\n\\nFor further documentation, see [Global downscaled projections for climate impacts research (GDPCIR): preserving extremes for modeling future climate impacts](https://egusphere.copernicus.org/preprints/2023/egusphere-2022-1513/) (EGUsphere, 2022 [preprint]).\\n\\n## Citing, licensing, and using data produced by this project\\n\\nProjects making use of the data produced as part of the Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CIL GDPCIR) project are requested to cite both this project and the source datasets from which these results are derived. Additionally, the use of data derived from some GCMs *requires* citations, and some modeling centers impose licensing restrictions & requirements on derived works. See each GCM's license info in the links below for more information.\\n\\n### CIL GDPCIR\\n\\nUsers are requested to cite this project in derived works. Our method documentation paper may be cited using the following:\\n\\n> Gergel, D. R., Malevich, S. B., McCusker, K. E., Tenezakis, E., Delgado, M. T., Fish, M. A., and Kopp, R. E.: Global downscaled projections for climate impacts research (GDPCIR): preserving extremes for modeling future climate impacts, EGUsphere [preprint], https://doi.org/10.5194/egusphere-2022-1513, 2023. \\n\\nThe code repository may be cited using the following:\\n\\n> Diana Gergel, Kelly McCusker, Brewster Malevich, Emile Tenezakis, Meredith Fish, Michael Delgado (2022). ClimateImpactLab/downscaleCMIP6: (v1.0.0). Zenodo. https://doi.org/10.5281/zenodo.6403794\\n\\n### ERA5\\n\\nAdditionally, we request you cite the historical dataset used in bias correction and downscaling, ERA5. See the [ECMWF guide to citing a dataset on the Climate Data Store](https://confluence.ecmwf.int/display/CKB/How+to+acknowledge+and+cite+a+Climate+Data+Store+%28CDS%29+catalogue+entry+and+the+data+published+as+part+of+it):\\n\\n> Hersbach, H, et al. The ERA5 global reanalysis. Q J R Meteorol Soc.2020; 146: 1999\u20132049. DOI: [10.1002/qj.3803](https://doi.org/10.1002/qj.3803)\\n>\\n> Mu\xF1oz Sabater, J., (2019): ERA5-Land hourly data from 1981 to present. Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\n>\\n> Mu\xF1oz Sabater, J., (2021): ERA5-Land hourly data from 1950 to 1980. Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\n\\n### GCM-specific citations & licenses\\n\\nThe CMIP6 simulation data made available through the Earth System Grid Federation (ESGF) are subject to Creative Commons [BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) or [BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) licenses. The Climate Impact Lab has reached out to each of the modeling institutions to request waivers from these terms so the outputs of this project may be used with fewer restrictions, and has been granted permission to release the data using the licenses listed here.\\n\\n#### Public Domain Datasets\\n\\nThe following bias corrected and downscaled model simulations are available in the public domain using a [CC0 1.0 Universal Public Domain Declaration](https://creativecommons.org/publicdomain/zero/1.0/). Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0.\\n\\n* **FGOALS-g3**\\n\\n License description: [data_licenses/FGOALS-g3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/FGOALS-g3.txt)\\n\\n \ CMIP Citation:\\n\\n > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6 CMIP*. Version 20190826. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1783\\n\\n ScenarioMIP Citation:\\n\\n \ > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190818; SSP2-4.5 version 20190818; SSP3-7.0 version 20190820; SSP5-8.5 tasmax version 20190819; SSP5-8.5 tasmin version 20190819; SSP5-8.5 pr version 20190818. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2056\\n\\n\\n* **INM-CM4-8**\\n\\n License description: [data_licenses/INM-CM4-8.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/INM-CM4-8.txt)\\n\\n \ CMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8 model output prepared for CMIP6 CMIP*. Version 20190530. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1422\\n\\n ScenarioMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8 model output prepared for CMIP6 ScenarioMIP*. Version 20190603. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12321\\n\\n\\n* **INM-CM5-0**\\n\\n \ License description: [data_licenses/INM-CM5-0.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/INM-CM5-0.txt)\\n\\n \ CMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0 model output prepared for CMIP6 CMIP*. Version 20190610. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1423\\n\\n ScenarioMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190619; SSP2-4.5 version 20190619; SSP3-7.0 version 20190618; SSP5-8.5 version 20190724. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12322\\n\\n\\n#### CC-BY-4.0\\n\\nThe following bias corrected and downscaled model simulations are licensed under a [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/). Note that this license requires citation of the source model output (included here). Please see https://creativecommons.org/licenses/by/4.0/ for more information. Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by.\\n\\n* **ACCESS-CM2**\\n\\n License description: [data_licenses/ACCESS-CM2.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/ACCESS-CM2.txt)\\n\\n \ CMIP Citation:\\n\\n > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2281\\n\\n ScenarioMIP Citation:\\n\\n \ > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2285\\n\\n\\n* **ACCESS-ESM1-5**\\n\\n \ License description: [data_licenses/ACCESS-ESM1-5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/ACCESS-ESM1-5.txt)\\n\\n \ CMIP Citation:\\n\\n > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2288\\n\\n ScenarioMIP Citation:\\n\\n \ > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 ScenarioMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2291\\n\\n\\n* **BCC-CSM2-MR**\\n\\n License description: [data_licenses/BCC-CSM2-MR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/BCC-CSM2-MR.txt)\\n\\n \ CMIP Citation:\\n\\n > Xin, Xiaoge; Zhang, Jie; Zhang, Fang; Wu, Tongwen; Shi, Xueli; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei, Min **(2018)**. *BCC BCC-CSM2MR model output prepared for CMIP6 CMIP*. Version 20181126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1725\\n\\n \ ScenarioMIP Citation:\\n\\n > Xin, Xiaoge; Wu, Tongwen; Shi, Xueli; Zhang, Fang; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei, Min **(2019)**. *BCC BCC-CSM2MR model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190315; SSP2-4.5 version 20190318; SSP3-7.0 version 20190318; SSP5-8.5 version 20190318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1732\\n\\n\\n* **CMCC-CM2-SR5**\\n\\n License description: [data_licenses/CMCC-CM2-SR5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CMCC-CM2-SR5.txt)\\n\\n \ CMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5 model output prepared for CMIP6 CMIP*. Version 20200616. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1362\\n\\n ScenarioMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200717; SSP2-4.5 version 20200617; SSP3-7.0 version 20200622; SSP5-8.5 version 20200622. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1365\\n\\n\\n* **CMCC-ESM2**\\n\\n License description: [data_licenses/CMCC-ESM2.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CMCC-ESM2.txt)\\n\\n \ CMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele; Butensch\xF6n, Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 CMIP*. Version 20210114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13164\\n\\n \ ScenarioMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele; Butensch\xF6n, Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20210126; SSP2-4.5 version 20210129; SSP3-7.0 version 20210202; SSP5-8.5 version 20210126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13168\\n\\n\\n* **EC-Earth3-AerChem**\\n\\n License description: [data_licenses/EC-Earth3-AerChem.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-AerChem.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 CMIP*. Version 20200624. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.639\\n\\n \ ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 ScenarioMIP*. Version 20200827. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.724\\n\\n\\n* **EC-Earth3-CC**\\n\\n License description: [data_licenses/EC-Earth3-CC.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-CC.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth-3-CC model output prepared for CMIP6 CMIP*. Version 20210113. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.640\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2021)**. *EC-Earth-Consortium EC-Earth3-CC model output prepared for CMIP6 ScenarioMIP*. Version 20210113. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.15327\\n\\n\\n* **EC-Earth3-Veg-LR**\\n\\n License description: [data_licenses/EC-Earth3-Veg-LR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-Veg-LR.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 CMIP*. Version 20200217. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.643\\n\\n \ ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20201201; SSP2-4.5 version 20201123; SSP3-7.0 version 20201123; SSP5-8.5 version 20201201. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.728\\n\\n\\n* **EC-Earth3-Veg**\\n\\n License description: [data_licenses/EC-Earth3-Veg.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-Veg.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3-Veg model output prepared for CMIP6 CMIP*. Version 20200225. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.642\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3-Veg model output prepared for CMIP6 ScenarioMIP*. Version 20200225. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.727\\n\\n\\n* **EC-Earth3**\\n\\n License description: [data_licenses/EC-Earth3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3 model output prepared for CMIP6 CMIP*. Version 20200310. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.181\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3 model output prepared for CMIP6 ScenarioMIP*. Version 20200310. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.251\\n\\n\\n* **GFDL-CM4**\\n\\n License description: [data_licenses/GFDL-CM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-CM4.txt)\\n\\n \ CMIP Citation:\\n\\n > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Bushuk, Mitchell; Dunne, Krista A.; Dussin, Raphael; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, P.C.D; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4 model output*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1402\\n\\n ScenarioMIP Citation:\\n\\n \ > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, Chris; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.9242\\n\\n\\n* **GFDL-ESM4**\\n\\n \ License description: [data_licenses/GFDL-ESM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-ESM4.txt)\\n\\n \ CMIP Citation:\\n\\n > Krasting, John P.; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Silvers, Levi; Wyman, Bruce; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Dussin, Raphael; Guo, Huan; He, Jian; Held, Isaac M; Horowitz, Larry W.; Lin, Pu; Milly, P.C.D; Shevliakova, Elena; Stock, Charles; Winton, Michael; Wittenberg, Andrew T.; Xie, Yuanyu; Zhao, Ming **(2018)**. *NOAA-GFDL GFDL-ESM4 model output prepared for CMIP6 CMIP*. Version 20190726. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1407\\n\\n ScenarioMIP Citation:\\n\\n \ > John, Jasmin G; Blanton, Chris; McHugh, Colleen; Radhakrishnan, Aparna; Rand, Kristopher; Vahlenkamp, Hans; Wilson, Chandin; Zadeh, Niki T.; Dunne, John P.; Dussin, Raphael; Horowitz, Larry W.; Krasting, John P.; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Ploshay, Jeffrey; Shevliakova, Elena; Silvers, Levi; Stock, Charles; Winton, Michael; Zeng, Yujin **(2018)**. *NOAA-GFDL GFDL-ESM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1414\\n\\n\\n* **HadGEM3-GC31-LL**\\n\\n License description: [data_licenses/HadGEM3-GC31-LL.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/HadGEM3-GC31-LL.txt)\\n\\n \ CMIP Citation:\\n\\n > Ridley, Jeff; Menary, Matthew; Kuhlbrodt, Till; Andrews, Martin; Andrews, Tim **(2018)**. *MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP*. Version 20190624. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.419\\n\\n ScenarioMIP Citation:\\n\\n \ > Good, Peter **(2019)**. *MOHC HadGEM3-GC31-LL model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200114; SSP2-4.5 version 20190908; SSP5-8.5 version 20200114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.10845\\n\\n\\n* **MIROC-ES2L**\\n\\n License description: [data_licenses/MIROC-ES2L.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MIROC-ES2L.txt)\\n\\n \ CMIP Citation:\\n\\n > Hajima, Tomohiro; Abe, Manabu; Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogura, Tomoo; Ogochi, Koji; Watanabe, Michio; Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio; Tachiiri, Kaoru **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 CMIP*. Version 20191129. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.902\\n\\n \ ScenarioMIP Citation:\\n\\n > Tachiiri, Kaoru; Abe, Manabu; Hajima, Tomohiro; Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogochi, Koji; Watanabe, Michio; Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 ScenarioMIP*. Version 20200318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.936\\n\\n\\n* **MIROC6**\\n\\n License description: [data_licenses/MIROC6.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MIROC6.txt)\\n\\n \ CMIP Citation:\\n\\n > Tatebe, Hiroaki; Watanabe, Masahiro **(2018)**. *MIROC MIROC6 model output prepared for CMIP6 CMIP*. Version 20191016. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.881\\n\\n ScenarioMIP Citation:\\n\\n > Shiogama, Hideo; Abe, Manabu; Tatebe, Hiroaki **(2019)**. *MIROC MIROC6 model output prepared for CMIP6 ScenarioMIP*. Version 20191016. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.898\\n\\n\\n* **MPI-ESM1-2-HR**\\n\\n License description: [data_licenses/MPI-ESM1-2-HR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MPI-ESM1-2-HR.txt)\\n\\n \ CMIP Citation:\\n\\n > Jungclaus, Johann; Bittner, Matthias; Wieners, Karl-Hermann; Wachsmann, Fabian; Schupfner, Martin; Legutke, Stephanie; Giorgetta, Marco; Reick, Christian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Esch, Monika; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-HR model output prepared for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.741\\n\\n \ ScenarioMIP Citation:\\n\\n > Schupfner, Martin; Wieners, Karl-Hermann; Wachsmann, Fabian; Steger, Christian; Bittner, Matthias; Jungclaus, Johann; Fr\xFCh, Barbara; Pankatz, Klaus; Giorgetta, Marco; Reick, Christian; Legutke, Stephanie; Esch, Monika; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *DKRZ MPI-ESM1.2-HR model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2450\\n\\n\\n* **MPI-ESM1-2-LR**\\n\\n License description: [data_licenses/MPI-ESM1-2-LR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MPI-ESM1-2-LR.txt)\\n\\n \ CMIP Citation:\\n\\n > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Legutke, Stephanie; Schupfner, Martin; Wachsmann, Fabian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.742\\n\\n \ ScenarioMIP Citation:\\n\\n > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.793\\n\\n\\n* **NESM3**\\n\\n \ License description: [data_licenses/NESM3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NESM3.txt)\\n\\n \ CMIP Citation:\\n\\n > Cao, Jian; Wang, Bin **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 CMIP*. Version 20190812. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2021\\n\\n ScenarioMIP Citation:\\n\\n \ > Cao, Jian **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190806; SSP2-4.5 version 20190805; SSP5-8.5 version 20190811. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2027\\n\\n\\n* **NorESM2-LM**\\n\\n License description: [data_licenses/NorESM2-LM.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NorESM2-LM.txt)\\n\\n \ CMIP Citation:\\n\\n > Seland, \xD8yvind; Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 CMIP*. Version 20190815. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.502\\n\\n ScenarioMIP Citation:\\n\\n \ > Seland, \xD8yvind; Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.604\\n\\n\\n* **NorESM2-MM**\\n\\n License description: [data_licenses/NorESM2-MM.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NorESM2-MM.txt)\\n\\n \ CMIP Citation:\\n\\n > Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Seland, \xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.506\\n\\n ScenarioMIP Citation:\\n\\n \ > Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Seland, \xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.608\\n\\n\\n* **UKESM1-0-LL**\\n\\n License description: [data_licenses/UKESM1-0-LL.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/UKESM1-0-LL.txt)\\n\\n \ CMIP Citation:\\n\\n > Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Mulcahy, Jane; Sellar, Alistair; Walton, Jeremy; Jones, Colin **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 CMIP*. Version 20190627. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1569\\n\\n \ ScenarioMIP Citation:\\n\\n > Good, Peter; Sellar, Alistair; Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Kuhlbrodt, Till; Walton, Jeremy **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190708; SSP2-4.5 version 20190715; SSP3-7.0 version 20190726; SSP5-8.5 version 20190726. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1567\\n\\n* **CanESM5**\\n\\n License description: [data_licenses/CanESM5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CanESM5.txt). Note: this dataset was previously licensed\\n under CC BY-SA 4.0, but was relicensed as CC BY 4.0 in March, 2023.\\n\\n CMIP Citation:\\n\\n > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model output prepared for CMIP6 CMIP*. Version 20190429. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1303\\n\\n ScenarioMIP Citation:\\n\\n \ > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model output prepared for CMIP6 ScenarioMIP*. Version 20190429. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1317\\n\\n## Acknowledgements\\n\\nThis work is the result of many years worth of work by members of the [Climate Impact Lab](https://impactlab.org), but would not have been possible without many contributions from across the wider scientific and computing communities.\\n\\nSpecifically, we would like to acknowledge the World Climate Research Programme's Working Group on Coupled Modeling, which is responsible for CMIP, and we would like to thank the climate modeling groups for producing and making their model output available. We would particularly like to thank the modeling institutions whose results are included as an input to this repository (listed above) for their contributions to the CMIP6 project and for responding to and granting our requests for license waivers.\\n\\nWe would also like to thank Lamont-Doherty Earth Observatory, the [Pangeo Consortium](https://github.com/pangeo-data) (and especially the [ESGF Cloud Data Working Group](https://pangeo-data.github.io/pangeo-cmip6-cloud/#)) and Google Cloud and the Google Public Datasets program for making the [CMIP6 Google Cloud collection](https://console.cloud.google.com/marketplace/details/noaa-public/cmip6) possible. In particular we're extremely grateful to [Ryan Abernathey](https://github.com/rabernat), [Naomi Henderson](https://github.com/naomi-henderson), [Charles Blackmon-Luca](https://github.com/charlesbluca), [Aparna Radhakrishnan](https://github.com/aradhakrishnanGFDL), [Julius Busecke](https://github.com/jbusecke), and [Charles Stern](https://github.com/cisaacstern) for the huge amount of work they've done to translate the ESGF CMIP6 netCDF archives into consistently-formattted, analysis-ready zarr stores on Google Cloud.\\n\\nWe're also grateful to the [xclim developers](https://github.com/Ouranosinc/xclim/graphs/contributors) ([DOI: 10.5281/zenodo.2795043](https://doi.org/10.5281/zenodo.2795043)), in particular [Pascal Bourgault](https://github.com/aulemahal), [David Huard](https://github.com/huard), and [Travis Logan](https://github.com/tlogan2000), for implementing the QDM bias correction method in the xclim python package, supporting our QPLAD implementation into the package, and ongoing support in integrating dask into downscaling workflows. For method advice and useful conversations, we would like to thank Keith Dixon, Dennis Adams-Smith, and [Joe Hamman](https://github.com/jhamman).\\n\\n## Financial support\\n\\nThis research has been supported by The Rockefeller Foundation and the Microsoft AI for Earth Initiative.\\n\\n## Additional links:\\n\\n* CIL GDPCIR project homepage: [github.com/ClimateImpactLab/downscaleCMIP6](https://github.com/ClimateImpactLab/downscaleCMIP6)\\n* Project listing on zenodo: https://doi.org/10.5281/zenodo.6403794\\n* Climate Impact Lab homepage: [impactlab.org](https://impactlab.org)\",\"item_assets\":{\"pr\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Precipitation\",\"description\":\"Precipitation\"},\"tasmax\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Daily Maximum Near-Surface Air Temperature\",\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Daily Minimum Near-Surface Air Temperature\",\"description\":\"Daily Minimum Near-Surface Air Temperature\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"cil-gdpcir\",\"cube:variables\":{\"pr\":{\"type\":\"data\",\"unit\":\"mm day-1\",\"attrs\":{\"units\":\"mm day-1\"},\"dimensions\":[\"time\",\"lat\",\"lon\"]},\"tasmax\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"maximum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: max')\",\"long_name\":\"Daily Maximum Near-Surface Air Temperature\",\"coordinates\":\"height\",\"cell_methods\":\"area: mean time: maximum (interval: 5 minutes)\",\"cell_measures\":\"area: areacella\",\"original_name\":\"TREFHTMX\",\"standard_name\":\"air_temperature\"},\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"minimum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: min')\",\"long_name\":\"Daily Minimum Near-Surface Air Temperature\",\"coordinates\":\"height\",\"cell_methods\":\"area: mean time: minimum (interval: 5 minutes)\",\"cell_measures\":\"area: areacella\",\"original_name\":\"TREFHTMN\",\"standard_name\":\"air_temperature\"},\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Minimum Near-Surface Air Temperature\"}},\"msft:container\":\"cil-gdpcir\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[-89.875,89.875],\"reference_system\":\"epsg:4326\"},\"lon\":{\"axis\":\"x\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[-179.875,179.875],\"reference_system\":\"epsg:4326\"},\"time\":{\"step\":\"P1DT0H0M0S\",\"type\":\"temporal\",\"extent\":[\"1950-01-01T12:00:00Z\",\"2100-12-31T12:00:00Z\"],\"description\":\"time\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\"msft:storage_account\":\"rhgeuwest\",\"msft:short_description\":\"Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)\"},{\"id\":\"noaa-cdr-sea-surface-temperature-whoi-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf\"},{\"rel\":\"license\",\"href\":\"https://www.ncei.noaa.gov/pub/data/sds/cdr/CDRs/Sea%20Surface%20Temperature%20-%20WHOI/UseAgreement_01B-27a.pdf\",\"type\":\"application/pdf\",\"title\":\"NOAA CDR Sea Surface Temperature - WHOI Use Agreement\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/products/climate-data-records/sea-surface-temperature-whoi\",\"type\":\"text/html\",\"title\":\"Sea Surface Temperature - WHOI CDR\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.7289/V5FB510W\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-cdr-sea-surface-temperature-whoi-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sea Surface Temperature - WHOI CDR NetCDFs\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-cdr-sea-surface-temperature-whoi-netcdf-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Sea Surface Temperature - WHOI (NetCDF) CDR thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-cdr-sea-surface-temperature-whoi-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-90,180,90]]},\"temporal\":{\"interval\":[[\"1988-01-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.7289/V5FB510W\",\"keywords\":[\"Global\",\"Climate\",\"NOAA\",\"Ocean\",\"Temperature\"],\"providers\":[{\"url\":\"https://www.ncei.noaa.gov/\",\"name\":\"National Centers for Environmental Information\",\"roles\":[\"producer\",\"processor\",\"licensor\"],\"description\":\"NCEI is the Nation's leading authority for environmental data, and manage one of the largest archives of atmospheric, coastal, geophysical, and oceanic research in the world. NCEI contributes to the NESDIS mission by developing new products and services that span the science disciplines and enable better data discovery.\"},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"description\":\"The Sea Surface Temperature-Woods Hole Oceanographic Institution (WHOI) Climate Data Record (CDR) is one of three CDRs which combine to form the NOAA Ocean Surface Bundle (OSB) CDR. The resultant sea surface temperature (SST) data are produced through modeling the diurnal variability in combination with AVHRR SST observations. The final record is output to a 3-hourly 0.25\xB0 resolution grid over the global ice-free oceans from January 1988\u2014present.\\n\\nThis is a NetCDF-only collection, for Cloud-Optimized GeoTIFFs use collection `noaa-cdr-sea-surface-temperature-whoi`.\\nThe NetCDF files are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\n\",\"item_assets\":{\"netcdf\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"]}},\"msft:region\":\"eastus\",\"sci:citation\":\"Clayson, Carol Anne; Brown, Jeremiah; and NOAA CDR Program (2016). NOAA Climate Data Record (CDR) of Sea Surface Temperature - WHOI, Version 2. NOAA National Climatic Data Center. doi:10.7289/V5FB510W\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-cdr\",\"msft:container\":\"sea-surface-temperature-whoi\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"],\"msft:storage_account\":\"noaacdr\",\"msft:short_description\":\"The Sea Surface Temperature-Woods Hole Oceanographic Institution (WHOI) Climate Data Record (CDR) is one of three CDRs which combine to form the NOAA Ocean Surface Bundle (OSB) CDR. The resultant sea surface temperature (SST) data are produced through modeling the diurnal variability in combination with AVHRR SST observations.\"},{\"id\":\"noaa-cdr-sea-surface-temperature-optimum-interpolation\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation\"},{\"rel\":\"license\",\"href\":\"https://www.ncei.noaa.gov/pub/data/sds/cdr/CDRs/Sea_Surface_Temperature_Optimum_Interpolation/UseAgreement_01B-09.pdf\",\"type\":\"application/pdf\",\"title\":\"NOAA CDR Sea Surface Temperature - Optimum Interpolation Use Agreement\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/products/climate-data-records/sea-surface-temperature-optimum-interpolation\",\"type\":\"text/html\",\"title\":\"Sea Surface Temperature - Optimum Interpolation CDR\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.25921/RE9P-PT57\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-cdr-sea-surface-temperature-optimum-interpolation\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sea Surface Temperature - Optimum Interpolation CDR\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-cdr-sea-surface-temperature-optimum-interpolation-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Sea Surface Temperature - Optimum Interpolation CDR thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-cdr-sea-surface-temperature-optimum-interpolation.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-90.0,180.0,90.0]]},\"temporal\":{\"interval\":[[\"1981-09-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.25921/RE9P-PT57\",\"keywords\":[\"Global\",\"Climate\",\"NOAA\",\"Temperature\",\"Ocean\"],\"providers\":[{\"url\":\"https://www.ncei.noaa.gov/\",\"name\":\"National Centers for Environmental Information\",\"roles\":[\"producer\",\"processor\",\"licensor\"],\"description\":\"NCEI is the Nation's leading authority for environmental data, and manage one of the largest archives of atmospheric, coastal, geophysical, and oceanic research in the world. NCEI contributes to the NESDIS mission by developing new products and services that span the science disciplines and enable better data discovery.\"},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"description\":\"The NOAA 1/4\xB0 daily Optimum Interpolation Sea Surface Temperature (or daily OISST) Climate Data Record (CDR) provides complete ocean temperature fields constructed by combining bias-adjusted observations from different platforms (satellites, ships, buoys) on a regular global grid, with gaps filled in by interpolation. The main input source is satellite data from the Advanced Very High Resolution Radiometer (AVHRR), which provides high temporal-spatial coverage from late 1981-present. This input must be adjusted to the buoys due to erroneous cold SST data following the Mt Pinatubo and El Chichon eruptions. Applications include climate modeling, resource management, ecological studies on annual to daily scales.\\n\\nThese Cloud Optimized GeoTIFFs (COGs) were created from NetCDF files which are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\nFor the NetCDF files, see collection `noaa-cdr-sea-surface-temperature-optimum-interpolation-netcdf`.\\n\",\"item_assets\":{\"err\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"Celsius\",\"scale\":0.009999999776482582,\"nodata\":-999,\"data_type\":\"int16\"}]},\"ice\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"%\",\"scale\":0.009999999776482582,\"nodata\":-999,\"data_type\":\"int16\"}]},\"sst\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"Celsius\",\"scale\":0.009999999776482582,\"nodata\":-999,\"data_type\":\"int16\"}]},\"anom\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"raster:bands\":[{\"unit\":\"Celsius\",\"scale\":0.009999999776482582,\"nodata\":-999,\"data_type\":\"int16\"}]},\"netcdf\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"]}},\"msft:region\":\"eastus\",\"sci:citation\":\"Huang, Boyin; Liu, Chunying; Banzon, Viva F.; Freeman, Eric; Graham, Garrett; Hankins, Bill; Smith, Thomas M.; Zhang, Huai-Min. (2020): NOAA 0.25-degree Daily Optimum Interpolation Sea Surface Temperature (OISST), Version 2.1. NOAA National Centers for Environmental Information. https://doi.org/10.25921/RE9P-PT57.\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-cdr\",\"msft:container\":\"sea-surface-temperature-optimum-interpolation\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"],\"msft:storage_account\":\"noaacdr\",\"msft:short_description\":\"The NOAA 1/4\xB0 daily Optimum Interpolation Sea Surface Temperature (or daily OISST) Climate Data Record (CDR) provides complete ocean temperature fields constructed by combining bias-adjusted observations from different platforms (satellites, ships, buoys) on a regular global grid, with gaps filled in by interpolation.\"},{\"id\":\"modis-10A1-061\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MOD10A1.061\",\"title\":\"MODIS/Terra Snow Cover Daily L3 Global 500m SIN Grid, Version 61\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5067/MODIS/MYD10A1.061\",\"title\":\"MODIS/Aqua Snow Cover Daily L3 Global 500m SIN Grid, Version 61\"},{\"rel\":\"license\",\"href\":\"https://nsidc.org/data/data-programs/nsidc-daac/citing-nsidc-daac\",\"title\":\"Use and Copyright | National Snow and Ice Data Center\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/modis-10A1-061\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"MODIS Snow Cover Daily\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/modis-10A1-061.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"MODIS Snow Cover Daily thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/modis-10A1-061.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2000-02-24T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"NASA\",\"MODIS\",\"Satellite\",\"Global\",\"Snow\",\"MOD10A1\",\"MYD10A1\"],\"providers\":[{\"url\":\"https://nsidc.org\",\"name\":\"National Snow and Ice Data Center\",\"roles\":[\"producer\",\"licensor\",\"processor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\",\"processor\"]}],\"summaries\":{\"platform\":[\"aqua\",\"terra\"],\"instruments\":[\"modis\"]},\"description\":\"This global Level-3 (L3) data set provides a daily composite of snow cover and albedo derived from the 'MODIS Snow Cover 5-Min L2 Swath 500m' data set. Each data granule is a 10degx10deg tile projected to a 500 m sinusoidal grid.\",\"item_assets\":{\"hdf\":{\"type\":\"application/x-hdf\",\"roles\":[\"data\"],\"title\":\"Source data containing all bands\"},\"NDSI\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Raw NDSI values (i.e. prior to screening).\",\"raster:bands\":[{\"scale\":0.0001,\"data_type\":\"int16\",\"spatial_resolution\":500}]},\"metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"Federal Geographic Data Committee (FGDC) Metadata\"},\"orbit_pnt\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Pointer to the orbit of the swath mapped into each grid cell.\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"granule_pnt\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Pointer for identifying the swath mapped into each grid cell.\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"NDSI_Snow_Cover\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Gridded NDSI snow cover and data flag values.\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"Snow_Albedo_Daily_Tile\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Daily snow albedo corresponding to the NDSI_Snow_Cover parameter.\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]},\"NDSI_Snow_Cover_Basic_QA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"A general estimate of the quality of the algorithm result.\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}],\"classification:classes\":[{\"value\":0,\"description\":\"best\"},{\"value\":1,\"description\":\"good\"},{\"value\":2,\"description\":\"ok\"},{\"value\":3,\"description\":\"poor (not used)\"},{\"value\":4,\"description\":\"other (not used)\"}]},\"NDSI_Snow_Cover_Algorithm_Flags_QA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Algorithm-specific bit flags set for data screens and for inland water.\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":500}]}},\"stac_version\":\"1.0.0\",\"msft:group_id\":\"modis\",\"msft:container\":\"modis-061\",\"stac_extensions\":[\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"sci:publications\":[{\"doi\":\"10.5067/MODIS/MOD10A1.061\",\"citation\":\"Hall, D. K., & Riggs, G. A. (2021). MODIS/Aqua Snow Cover Daily L3 Global 500m Grid, Version 61 [Data set]. NASA National Snow and Ice Data Center DAAC. https://doi.org/10.5067/MODIS/MOD10A1.061\"},{\"doi\":\"10.5067/MODIS/MYD10A1.061\",\"citation\":\"Hall, D. K., & Riggs, G. A. (2021). MODIS/Aqua Snow Cover Daily L3 Global 500m Grid, Version 61 [Data set]. NASA National Snow and Ice Data Center DAAC. https://doi.org/10.5067/MODIS/MYD10A1.061\"}],\"msft:storage_account\":\"modiseuwest\",\"msft:short_description\":\"MODIS Snow Cover Daily\",\"msft:region\":\"westeurope\"},{\"id\":\"sentinel-5p-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinel.esa.int/web/sentinel/missions/sentinel-5p\",\"type\":\"text/html\",\"title\":\"Sentinel-5 Precursor Mission\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-5p-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-5P Level-2\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-5p-l2-netcdf-thumb.png\",\"title\":\"Sentinel-5P Level-2 NetCDF Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-5p-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2018-04-30T00:18:50Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"ESA\",\"Copernicus\",\"Sentinel\",\"Air Quality\",\"Climate Change\",\"Forecasting\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"platform\":[\"Sentinel 5 Precursor\"],\"instruments\":[\"TROPOMI\"],\"constellation\":[\"Sentinel-5P\"],\"s5p:product_name\":[\"aer-ai\",\"aer-lh\",\"ch4\",\"cloud\",\"co\",\"hcho\",\"no2\",\"np-bd3\",\"np-bd6\",\"np-bd7\",\"o3-tcl\",\"o3\",\"so2\"],\"s5p:product_type\":[\"L2__AER_AI\",\"L2__AER_LH\",\"L2__CH4___\",\"L2__CLOUD_\",\"L2__CO____\",\"L2__HCHO__\",\"L2__NO2___\",\"L2__NP_BD3\",\"L2__NP_BD6\",\"L2__NP_BD7\",\"L2__O3_TCL\",\"L2__O3____\",\"L2__SO2___\"],\"s5p:processing_mode\":[\"NRTI\",\"OFFL\",\"RPRO\"],\"s5p:collection_identifier\":[\"01\",\"02\",\"03\"],\"sat:platform_international_designator\":[\"2017-064A\"]},\"description\":\"The Copernicus [Sentinel-5 Precursor](https://sentinels.copernicus.eu/web/sentinel/missions/sentinel-5p) mission provides high spatio-temporal resolution measurements of the Earth's atmosphere. The mission consists of one satellite carrying the [TROPOspheric Monitoring Instrument](http://www.tropomi.eu/) (TROPOMI). The satellite flies in loose formation with NASA's [Suomi NPP](https://www.nasa.gov/mission_pages/NPP/main/index.html) spacecraft, allowing utilization of co-located cloud mask data provided by the [Visible Infrared Imaging Radiometer Suite](https://www.nesdis.noaa.gov/current-satellite-missions/currently-flying/joint-polar-satellite-system/visible-infrared-imaging) (VIIRS) instrument onboard Suomi NPP during processing of the TROPOMI methane product.\\n\\nThe Sentinel-5 Precursor mission aims to reduce the global atmospheric data gap between the retired [ENVISAT](https://earth.esa.int/eogateway/missions/envisat) and [AURA](https://www.nasa.gov/mission_pages/aura/main/index.html) missions and the future [Sentinel-5](https://sentinels.copernicus.eu/web/sentinel/missions/sentinel-5) mission. Sentinel-5 Precursor [Level 2 data](http://www.tropomi.eu/data-products/level-2-products) provide total columns of ozone, sulfur dioxide, nitrogen dioxide, carbon monoxide and formaldehyde, tropospheric columns of ozone, vertical profiles of ozone and cloud & aerosol information. These measurements are used for improving air quality forecasts and monitoring the concentrations of atmospheric constituents.\\n\\nThis STAC Collection provides Sentinel-5 Precursor Level 2 data, in NetCDF format, since April 2018 for the following products:\\n\\n* [`L2__AER_AI`](http://www.tropomi.eu/data-products/uv-aerosol-index): Ultraviolet aerosol index\\n* [`L2__AER_LH`](http://www.tropomi.eu/data-products/aerosol-layer-height): Aerosol layer height\\n* [`L2__CH4___`](http://www.tropomi.eu/data-products/methane): Methane (CH4) total column\\n* [`L2__CLOUD_`](http://www.tropomi.eu/data-products/cloud): Cloud fraction, albedo, and top pressure\\n* [`L2__CO____`](http://www.tropomi.eu/data-products/carbon-monoxide): Carbon monoxide (CO) total column\\n* [`L2__HCHO__`](http://www.tropomi.eu/data-products/formaldehyde): Formaldehyde (HCHO) total column\\n* [`L2__NO2___`](http://www.tropomi.eu/data-products/nitrogen-dioxide): Nitrogen dioxide (NO2) total column\\n* [`L2__O3____`](http://www.tropomi.eu/data-products/total-ozone-column): Ozone (O3) total column\\n* [`L2__O3_TCL`](http://www.tropomi.eu/data-products/tropospheric-ozone-column): Ozone (O3) tropospheric column\\n* [`L2__SO2___`](http://www.tropomi.eu/data-products/sulphur-dioxide): Sulfur dioxide (SO2) total column\\n* [`L2__NP_BD3`](http://www.tropomi.eu/data-products/auxiliary): Cloud from the Suomi NPP mission, band 3\\n* [`L2__NP_BD6`](http://www.tropomi.eu/data-products/auxiliary): Cloud from the Suomi NPP mission, band 6\\n* [`L2__NP_BD7`](http://www.tropomi.eu/data-products/auxiliary): Cloud from the Suomi NPP mission, band 7\\n\",\"item_assets\":{\"co\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Carbon Monoxide Total Column\"},\"o3\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Ozone Total Column\"},\"ch4\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Methane Total Column\"},\"no2\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Nitrogen Dioxide Total Column\"},\"so2\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Sulphur Dioxide Total Column\"},\"hcho\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Formaldehyde Total Column\"},\"cloud\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Cloud Fraction, Albedo, and Top Pressure\"},\"aer-ai\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Ultraviolet Aerosol Index\"},\"aer-lh\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Aerosol Layer Height\"},\"np-bd3\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"VIIRS/NPP Band 3 Cloud Mask\"},\"np-bd6\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"VIIRS/NPP Band 6 Cloud Mask\"},\"np-bd7\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"VIIRS/NPP Band 7 Cloud Mask\"},\"o3-tcl\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"title\":\"Ozone Tropospheric Column\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:container\":\"sentinel-5p\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"sentinel5euwest\",\"msft:short_description\":\"Sentinel-5P Level 2 atmospheric monitoring products in NetCDF format\"},{\"id\":\"sentinel-3-olci-wfr-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-olci/product-types/level-2-water\",\"type\":\"text/html\",\"title\":\"Sentinel-3 Water (LRR and LFR) Product User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-olci-wfr-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 Water (Full Resolution)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-olci-wfr-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 OLCI WFR L2 NetCDF Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-olci-wfr-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2017-11-01T00:07:01.738487Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"ESA\",\"Copernicus\",\"Sentinel\",\"Water\",\"Ocean\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"eo:bands\":[{\"name\":\"Oa01\",\"description\":\"Band 1 - Aerosol correction, improved water constituent retrieval\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015},{\"name\":\"Oa02\",\"description\":\"Band 2 - Yellow substance and detrital pigments (turbidity)\",\"center_wavelength\":0.4125,\"full_width_half_max\":0.01},{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa04\",\"description\":\"Band 4 - Chlorophyll\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01},{\"name\":\"Oa05\",\"description\":\"Band 5 - Chlorophyll, sediment, turbidity, red tide\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01},{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01},{\"name\":\"Oa07\",\"description\":\"Band 7 - Sediment loading\",\"center_wavelength\":0.62,\"full_width_half_max\":0.01},{\"name\":\"Oa08\",\"description\":\"Band 8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\",\"center_wavelength\":0.665,\"full_width_half_max\":0.01},{\"name\":\"Oa09\",\"description\":\"Band 9 - Improved fluorescence retrieval\",\"center_wavelength\":0.67375,\"full_width_half_max\":0.0075},{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa11\",\"description\":\"Band 11 - Chlorophyll fluorescence baseline, red edge transition\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01},{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075},{\"name\":\"Oa16\",\"description\":\"Band 16 - Atmospheric / aerosol correction\",\"center_wavelength\":0.77875,\"full_width_half_max\":0.015},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"Oa19\",\"description\":\"Band 19 - Water vapour absorption, vegetation monitoring (maximum REFLECTANCE)\",\"center_wavelength\":0.9,\"full_width_half_max\":0.01},{\"name\":\"Oa21\",\"description\":\"Band 21 - Water vapour absorption, atmospheric / aerosol correction\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04}],\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"OLCI\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"olci-wfr\"],\"s3:product_type\":[\"OL_2_WFR___\"],\"sat:orbit_state\":[\"descending\",\"ascending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides Sentinel-3 Full Resolution [OLCI Level-2 Water][olci-l2] products containing data on water-leaving reflectance, ocean color, and more.\\n\\n## Data files\\n\\nThis dataset includes data on:\\n\\n- Surface directional reflectance\\n- Chlorophyll-a concentration\\n- Suspended matter concentration\\n- Energy flux\\n- Aerosol load\\n- Integrated water vapor column\\n\\nEach variable is contained within NetCDF files. Error estimates are available for each product.\\n\\n## Processing overview\\n\\nThe values in the data files have been converted from Top of Atmosphere radiance to reflectance, and include various corrections for gaseous absorption and pixel classification. More information about the product and data processing can be found in the [User Guide](https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-olci/product-types/level-2-water) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-olci/level-2/processing).\\n\\nThis Collection contains Level-2 data in NetCDF files from November 2017 to present.\\n\\n[olci-l2]: https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-olci/level-2/ocean-products\\n\",\"item_assets\":{\"iwv\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"Oa19\",\"description\":\"Band 19 - Water vapour absorption, vegetation monitoring (maximum REFLECTANCE)\",\"center_wavelength\":0.9,\"full_width_half_max\":0.01}],\"description\":\"Integrated water vapour column\"},\"par\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Photosynthetically active radiation\"},\"trsp\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa04\",\"description\":\"Band 4 - Chlorophyll\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01},{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01}],\"description\":\"Transparency properties of water\"},\"wqsf\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Water quality and science flags\"},\"w-aer\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa05\",\"description\":\"Band 5 - Chlorophyll, sediment, turbidity, red tide\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01},{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02}],\"description\":\"Aerosol over water\"},\"chl-nn\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa01\",\"description\":\"Band 1 - Aerosol correction, improved water constituent retrieval\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015},{\"name\":\"Oa02\",\"description\":\"Band 2 - Yellow substance and detrital pigments (turbidity)\",\"center_wavelength\":0.4125,\"full_width_half_max\":0.01},{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa04\",\"description\":\"Band 4 - Chlorophyll\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01},{\"name\":\"Oa05\",\"description\":\"Band 5 - Chlorophyll, sediment, turbidity, red tide\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01},{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01},{\"name\":\"Oa07\",\"description\":\"Band 7 - Sediment loading\",\"center_wavelength\":0.62,\"full_width_half_max\":0.01},{\"name\":\"Oa08\",\"description\":\"Band 8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\",\"center_wavelength\":0.665,\"full_width_half_max\":0.01},{\"name\":\"Oa09\",\"description\":\"Band 9 - Improved fluorescence retrieval\",\"center_wavelength\":0.67375,\"full_width_half_max\":0.0075},{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa11\",\"description\":\"Band 11 - Chlorophyll fluorescence baseline, red edge transition\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01},{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075},{\"name\":\"Oa16\",\"description\":\"Band 16 - Atmospheric / aerosol correction\",\"center_wavelength\":0.77875,\"full_width_half_max\":0.015},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"Oa21\",\"description\":\"Band 21 - Water vapour absorption, atmospheric / aerosol correction\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04}],\"description\":\"Neural net chlorophyll concentration\"},\"iop-nn\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa01\",\"description\":\"Band 1 - Aerosol correction, improved water constituent retrieval\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015},{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075},{\"name\":\"Oa16\",\"description\":\"Band 16 - Atmospheric / aerosol correction\",\"center_wavelength\":0.77875,\"full_width_half_max\":0.015},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"Oa21\",\"description\":\"Band 21 - Water vapour absorption, atmospheric / aerosol correction\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04}],\"description\":\"Inherent optical properties of water\"},\"tsm-nn\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa01\",\"description\":\"Band 1 - Aerosol correction, improved water constituent retrieval\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015},{\"name\":\"Oa02\",\"description\":\"Band 2 - Yellow substance and detrital pigments (turbidity)\",\"center_wavelength\":0.4125,\"full_width_half_max\":0.01},{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa04\",\"description\":\"Band 4 - Chlorophyll\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01},{\"name\":\"Oa05\",\"description\":\"Band 5 - Chlorophyll, sediment, turbidity, red tide\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01},{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01},{\"name\":\"Oa07\",\"description\":\"Band 7 - Sediment loading\",\"center_wavelength\":0.62,\"full_width_half_max\":0.01},{\"name\":\"Oa08\",\"description\":\"Band 8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\",\"center_wavelength\":0.665,\"full_width_half_max\":0.01},{\"name\":\"Oa09\",\"description\":\"Band 9 - Improved fluorescence retrieval\",\"center_wavelength\":0.67375,\"full_width_half_max\":0.0075},{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa11\",\"description\":\"Band 11 - Chlorophyll fluorescence baseline, red edge transition\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01},{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075},{\"name\":\"Oa16\",\"description\":\"Band 16 - Atmospheric / aerosol correction\",\"center_wavelength\":0.77875,\"full_width_half_max\":0.015},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"Oa21\",\"description\":\"Band 21 - Water vapour absorption, atmospheric / aerosol correction\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04}],\"description\":\"Total suspended matter concentration\"},\"chl-oc4me\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa04\",\"description\":\"Band 4 - Chlorophyll\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01},{\"name\":\"Oa05\",\"description\":\"Band 5 - Chlorophyll, sediment, turbidity, red tide\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01},{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01}],\"description\":\"OC4Me algorithm chlorophyll concentration\"},\"tie-meteo\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Tie-point meteo annotations\"},\"browse-jpg\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"description\":\"Preview image produced by the European Organisation for the Exploitation of Meteorological Satellites (EUMETSAT)\"},\"eop-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"Metadata produced by the European Organisation for the Exploitation of Meteorological Satellites (EUMETSAT)\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"},\"tie-geometries\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Tie-point geometry annotations\"},\"geo-coordinates\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Geo coordinate annotations\"},\"instrument-data\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Instrument annotations\"},\"oa01-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa01\",\"description\":\"Band 1 - Aerosol correction, improved water constituent retrieval\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015}],\"description\":\"Reflectance for OLCI acquisition band Oa01\"},\"oa02-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa02\",\"description\":\"Band 2 - Yellow substance and detrital pigments (turbidity)\",\"center_wavelength\":0.4125,\"full_width_half_max\":0.01}],\"description\":\"Reflectance for OLCI acquisition band Oa02\"},\"oa03-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01}],\"description\":\"Reflectance for OLCI acquisition band Oa03\"},\"oa04-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa04\",\"description\":\"Band 4 - Chlorophyll\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01}],\"description\":\"Reflectance for OLCI acquisition band Oa04\"},\"oa05-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa05\",\"description\":\"Band 5 - Chlorophyll, sediment, turbidity, red tide\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01}],\"description\":\"Reflectance for OLCI acquisition band Oa05\"},\"oa06-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01}],\"description\":\"Reflectance for OLCI acquisition band Oa06\"},\"oa07-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa07\",\"description\":\"Band 7 - Sediment loading\",\"center_wavelength\":0.62,\"full_width_half_max\":0.01}],\"description\":\"Reflectance for OLCI acquisition band Oa07\"},\"oa08-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa08\",\"description\":\"Band 8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\",\"center_wavelength\":0.665,\"full_width_half_max\":0.01}],\"description\":\"Reflectance for OLCI acquisition band Oa08\"},\"oa09-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa09\",\"description\":\"Band 9 - Improved fluorescence retrieval\",\"center_wavelength\":0.67375,\"full_width_half_max\":0.0075}],\"description\":\"Reflectance for OLCI acquisition band Oa09\"},\"oa10-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075}],\"description\":\"Reflectance for OLCI acquisition band Oa10\"},\"oa11-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa11\",\"description\":\"Band 11 - Chlorophyll fluorescence baseline, red edge transition\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01}],\"description\":\"Reflectance for OLCI acquisition band Oa11\"},\"oa12-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075}],\"description\":\"Reflectance for OLCI acquisition band Oa12\"},\"oa16-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa16\",\"description\":\"Band 16 - Atmospheric / aerosol correction\",\"center_wavelength\":0.77875,\"full_width_half_max\":0.015}],\"description\":\"Reflectance for OLCI acquisition band Oa16\"},\"oa17-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02}],\"description\":\"Reflectance for OLCI acquisition band Oa17\"},\"oa18-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01}],\"description\":\"Reflectance for OLCI acquisition band Oa18\"},\"oa21-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa21\",\"description\":\"Band 21 - Water vapour absorption, atmospheric / aerosol correction\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04}],\"description\":\"Reflectance for OLCI acquisition band Oa21\"},\"time-coordinates\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Time coordinate annotations\"},\"tie-geo-coordinates\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Tie-point geo coordinate annotations\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 Land Full Resolution water and atmospheric geophysical products (OLCI WFR).\"},{\"id\":\"noaa-cdr-ocean-heat-content-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf\"},{\"rel\":\"license\",\"href\":\"https://www.ncei.noaa.gov/pub/data/sds/cdr/CDRs/Ocean_Heat_Content/UseAgreement_01B-41.pdf\",\"type\":\"application/pdf\",\"title\":\"NOAA CDR Ocean Heat Content Use Agreement\"},{\"rel\":\"about\",\"href\":\"https://www.ncei.noaa.gov/products/climate-data-records/global-ocean-heat-content\",\"type\":\"text/html\",\"title\":\"Global Ocean Heat Content CDR\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.7289/v53f4mvp\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/noaa-cdr-ocean-heat-content-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Global Ocean Heat Content CDR NetCDFs\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/noaa-cdr-ocean-heat-content-netcdf-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Global Ocean Heat Content (NetCDF) CDR thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/noaa-cdr-ocean-heat-content-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-90.0,180.0,90.0]]},\"temporal\":{\"interval\":[[\"1972-03-01T00:00:00Z\",\"2022-03-31T23:59:59Z\"]]}},\"license\":\"proprietary\",\"sci:doi\":\"10.7289/v53f4mvp\",\"keywords\":[\"Global\",\"Climate\",\"NOAA\",\"Temperature\",\"Ocean\"],\"providers\":[{\"url\":\"https://www.ncei.noaa.gov/\",\"name\":\"National Centers for Environmental Information\",\"roles\":[\"producer\",\"processor\",\"licensor\"],\"description\":\"NCEI is the Nation's leading authority for environmental data, and manage one of the largest archives of atmospheric, coastal, geophysical, and oceanic research in the world. NCEI contributes to the NESDIS mission by developing new products and services that span the science disciplines and enable better data discovery.\"},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"processor\",\"host\"]}],\"summaries\":{\"noaa_cdr:interval\":[\"monthly\",\"seasonal\",\"yearly\",\"pentadal\"],\"noaa_cdr:max_depth\":[100,700,2000]},\"description\":\"The Ocean Heat Content Climate Data Record (CDR) is a set of ocean heat content anomaly (OHCA) time-series for 1955-present on 3-monthly, yearly, and pentadal (five-yearly) scales. This CDR quantifies ocean heat content change over time, which is an essential metric for understanding climate change and the Earth's energy budget. It provides time-series for multiple depth ranges in the global ocean and each of the major basins (Atlantic, Pacific, and Indian) divided by hemisphere (Northern, Southern).\\n\\nThis is a NetCDF-only collection, for Cloud-Optimized GeoTIFFs use collection `noaa-cdr-ocean-heat-content`.\\nThe NetCDF files are delivered to Azure as part of the [NOAA Open Data Dissemination (NODD) Program](https://www.noaa.gov/information-technology/open-data-dissemination).\\n\",\"item_assets\":{\"netcdf\":{\"type\":\"application/netcdf\",\"roles\":[\"data\"]}},\"msft:region\":\"eastus\",\"sci:citation\":\"Levitus, Sydney; Antonov, John I.; Boyer, Tim P.; Baranova, Olga K.; Garc\xEDa, Hern\xE1n E.; Locarnini, Ricardo A.; Mishonov, Alexey V.; Reagan, James R.; [Seidov, Dan; Yarosh, Evgeney; Zweng, Melissa M. (2017). NCEI ocean heat content, temperature anomalies, salinity anomalies, thermosteric sea level anomalies, halosteric sea level anomalies, and total steric sea level anomalies from 1955 to present calculated from in situ oceanographic subsurface profile data (NCEI Accession 0164586). NOAA National Centers for Environmental Information. Dataset. https://doi.org/10.7289/v53f4mvp.\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"noaa-cdr\",\"msft:container\":\"ocean-heat-content\",\"stac_extensions\":[\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"noaacdr\",\"msft:short_description\":\"The Ocean Heat Content Climate Data Record (CDR) is a set of ocean heat content anomaly (OHCA) time-series for 1955-present on 3-monthly, yearly, and pentadal (five-yearly) scales.\"},{\"id\":\"hls2-l30\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/hls2-l30\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/hls2-l30.webp\",\"type\":\"image/webp\",\"title\":\"HLS2 Landsat Collection Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/hls2-l30.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"W-MON\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2020-01-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Landsat\",\"HLS\",\"Satellite\",\"Global\",\"Imagery\"],\"providers\":[{\"url\":\"https://doi.org/10.5067/HLS/HLSL30.002\",\"name\":\"LP DAAC\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[30],\"platform\":[\"Landsat 8\",\"Landsat 9\"]},\"description\":\"Harmonized Landsat Sentinel-2 (HLS) Version 2.0 provides consistent surface reflectance (SR)\\nand top of atmosphere (TOA) brightness data from the Operational Land Imager (OLI) aboard the\\njoint NASA/USGS Landsat 8 and Landsat 9 satellites and the Multi-Spectral Instrument (MSI)\\naboard the ESA (European Space Agency) Sentinel-2A, Sentinel-2B, and Sentinel-2C satellites.\\nThe combined measurement enables global observations of the land every 2-3 days at 30 meter\\n(m) spatial resolution. The HLS-S30 and HLS-L30 products are gridded to the same resolution and\\nMilitary Grid Reference System (MGRS) tiling system and are \\\"stackable\\\" for time series analysis.\\nThis dataset is in the form of cloud-optimized GeoTIFFs. The HLS v2.0 data is generated by NASA's\\nIMPACT team at Marshall Space Flight Center. The product latency is 1.7 days, from the satellite\\noverpass to the HLS data availability at NASA's Land Processes Distributed Active Archive Center\\n(LP DAAC). For more information see LP DAAC's\\n[HLS Overview](https://lpdaac.usgs.gov/data/get-started-data/collection-overview/missions/harmonized-landsat-sentinel-2-hls-overview/).\\n\\nThis collection contains HLS data collected from Landsat-8 and Landsat-9.\\nHLS data generated from Sentinel-2 satellites can be found in a separate collection.\\n\",\"item_assets\":{\"B01\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Coastal Aerosol\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.48,\"full_width_half_max\":0.02}]},\"B02\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Blue\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.44,\"full_width_half_max\":0.06}]},\"B03\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Green\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06}]},\"B04\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Red\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04}]},\"B05\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"NIR Narrow\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"nir\",\"center_wavelength\":0.86,\"full_width_half_max\":0.03}]},\"B06\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR 1\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"swir16\",\"center_wavelength\":1.6,\"full_width_half_max\":0.08}]},\"B07\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR 2\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"swir22\",\"center_wavelength\":2.2,\"full_width_half_max\":0.2}]},\"B09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Cirrus\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"cirrus\",\"center_wavelength\":1.37,\"full_width_half_max\":0.02}]},\"B10\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Thermal Infrared 1\",\"eo:bands\":[{\"name\":\"B10\",\"common_name\":\"lwir11\",\"center_wavelength\":10.9,\"full_width_half_max\":0.8}]},\"B11\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Thermal Infrared 2\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"lwir12\",\"center_wavelength\":12.0,\"full_width_half_max\":1.0}]},\"SAA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SAA\",\"eo:bands\":[{\"name\":\"SAA\"}]},\"SZA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SZA\",\"eo:bands\":[{\"name\":\"SZA\"}]},\"VAA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VAA\",\"eo:bands\":[{\"name\":\"VAA\"}]},\"VZA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VZA\",\"eo:bands\":[{\"name\":\"VZA\"}]},\"Fmask\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Fmask\",\"eo:bands\":[{\"name\":\"Fmask\"}]}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"hls2\",\"msft:container\":\"hls2\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\"msft:storage_account\":\"hls2euwest\",\"msft:short_description\":\"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data\"},{\"id\":\"sentinel-3-synergy-aod-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/level-2-aod\",\"type\":\"text/html\",\"title\":\"Sentinel-3 Global Aerosol Product User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-synergy-aod-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 Global Aerosol\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-synergy-aod-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 Global Aerosol Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-synergy-aod-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2020-04-16T19:36:28.012367Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Global\",\"Aerosol\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"eo:bands\":[{\"name\":\"SYN_1600\",\"description\":\"SLSTR nadir and oblique channel S5\",\"center_wavelength\":1.61,\"full_width_half_max\":0.06},{\"name\":\"SYN_2250\",\"description\":\"SLSTR nadir and oblique channel S6\",\"center_wavelength\":2.25,\"full_width_half_max\":0.05},{\"name\":\"SYN_440\",\"description\":\"OLCI channel Oa03\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"SYN_550\",\"description\":\"SLSTR nadir and oblique channel S1\",\"center_wavelength\":0.55,\"full_width_half_max\":0.02},{\"name\":\"SYN_670\",\"description\":\"SLSTR nadir and oblique channel S2\",\"center_wavelength\":0.659,\"full_width_half_max\":0.02},{\"name\":\"SYN_865\",\"description\":\"OLCI channel Oa17, SLSTR nadir and oblique channel S2\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02}],\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"OLCI\",\"SLSTR\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"synergy-aod\"],\"s3:product_type\":[\"SY_2_AOD___\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides the Sentinel-3 [Synergy Level-2 Aerosol Optical Depth](https://sentinels.copernicus.eu/web/sentinel/level-2-aod) product, which is a downstream development of the Sentinel-2 Level-1 [OLCI Full Resolution](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-olci/data-formats/level-1) and [SLSTR Radiances and Brightness Temperatures](https://sentinels.copernicus.eu/web/sentinel/user-guides/Sentinel-3-slstr/data-formats/level-1) products. The dataset provides both retrieved and diagnostic global aerosol parameters at super-pixel (4.5 km x 4.5 km) resolution in a single NetCDF file for all regions over land and ocean free of snow/ice cover, excluding high cloud fraction data. The retrieved and derived aerosol parameters are:\\n\\n- Aerosol Optical Depth (AOD) at 440, 550, 670, 985, 1600 and 2250 nm\\n- Error estimates (i.e. standard deviation) in AOD at 440, 550, 670, 985, 1600 and 2250 nm\\n- Single Scattering Albedo (SSA) at 440, 550, 670, 985, 1600 and 2250 nm\\n- Fine-mode AOD at 550nm\\n- Aerosol Angstrom parameter between 550 and 865nm\\n- Dust AOD at 550nm\\n- Aerosol absorption optical depth at 550nm\\n\\nAtmospherically corrected nadir surface directional reflectances at 440, 550, 670, 985, 1600 and 2250 nm at super-pixel (4.5 km x 4.5 km) resolution are also provided. More information about the product and data processing can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/level-2-aod) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-synergy/products-algorithms/level-2-aod-algorithms-and-products).\\n\\nThis Collection contains Level-2 data in NetCDF files from April 2020 to present.\\n\",\"item_assets\":{\"ntc-aod\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN_440\",\"description\":\"OLCI channel Oa03\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"SYN_550\",\"description\":\"SLSTR nadir and oblique channel S1\",\"center_wavelength\":0.55,\"full_width_half_max\":0.02},{\"name\":\"SYN_670\",\"description\":\"SLSTR nadir and oblique channel S2\",\"center_wavelength\":0.659,\"full_width_half_max\":0.02},{\"name\":\"SYN_865\",\"description\":\"OLCI channel Oa17, SLSTR nadir and oblique channel S2\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"SYN_1600\",\"description\":\"SLSTR nadir and oblique channel S5\",\"center_wavelength\":1.61,\"full_width_half_max\":0.06},{\"name\":\"SYN_2250\",\"description\":\"SLSTR nadir and oblique channel S6\",\"center_wavelength\":2.25,\"full_width_half_max\":0.05}],\"description\":\"Global aerosol parameters\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 global aerosol and surface reflectance at super-pixel (4.5km) resolution (SYNERGY AOD).\"},{\"id\":\"sentinel-3-synergy-v10-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vg1-v10\",\"type\":\"text/html\",\"title\":\"Sentinel-3 10-Day Surface Reflectance and NDVI Product (SPOT VEGETATION) User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-synergy-v10-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-synergy-v10-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION) Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-synergy-v10-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-56.0,180.0,75.0]]},\"temporal\":{\"interval\":[[\"2018-09-27T11:17:21Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Reflectance\",\"NDVI\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"eo:bands\":[{\"name\":\"B0\",\"description\":\"OLCI channels Oa02, Oa03\",\"center_wavelength\":0.45,\"full_width_half_max\":0.02},{\"name\":\"B2\",\"description\":\"OLCI channels Oa06, Oa07, Oa08, Oa09, Oa10\",\"center_wavelength\":0.645,\"full_width_half_max\":0.035},{\"name\":\"B3\",\"description\":\"OLCI channels Oa16, Oa17, Oa18, Oa21\",\"center_wavelength\":0.835,\"full_width_half_max\":0.055},{\"name\":\"MIR\",\"description\":\"SLSTR nadir and oblique channels S5, S6\",\"center_wavelength\":1.665,\"full_width_half_max\":0.085}],\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"OLCI\",\"SLSTR\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"synergy-v10\"],\"s3:product_type\":[\"SY_2_V10___\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides the Sentinel-3 [Synergy Level-2 10-Day Surface Reflectance and NDVI](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vg1-v10) products, which are SPOT VEGETATION Continuity Products similar to those obtained from the [VEGETATION instrument](https://docs.terrascope.be/#/Satellites/SPOT-VGT/MissionInstruments) onboard the SPOT-4 and SPOT-5 satellites. The primary variables are a maximum Normalized Difference Vegetation Index (NDVI) composite, which is derived from ground reflectance during a 10-day window, and four surface reflectance bands:\\n\\n- B0 (Blue, 450nm)\\n- B2 (Red, 645nm)\\n- B3 (NIR, 835nm)\\n- MIR (SWIR, 1665nm)\\n\\nThe four reflectance bands have center wavelengths matching those on the original SPOT VEGETATION instrument. The NDVI variable, which is an indicator of the amount of vegetation, is derived from the B3 and B2 bands.\\n\\n## Data files\\n\\nThe four reflectance bands and NDVI values are each contained in dedicated NetCDF files. Additional metadata are delivered in annotation NetCDF files, each containing a single variable, including the geometric viewing and illumination conditions, the total water vapour and ozone columns, and the aerosol optical depth.\\n\\nEach 10-day product is delivered as a set of 10 rectangular scenes:\\n\\n- AFRICA\\n- NORTH_AMERICA\\n- SOUTH_AMERICA\\n- CENTRAL_AMERICA\\n- NORTH_ASIA\\n- WEST_ASIA\\n- SOUTH_EAST_ASIA\\n- ASIAN_ISLANDS\\n- AUSTRALASIA\\n- EUROPE\\n\\nMore information about the product and data processing can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vg1-v10) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-synergy/vgt-s/v10-product).\\n\\nThis Collection contains Level-2 data in NetCDF files from September 2018 to present.\\n\",\"item_assets\":{\"ag\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Aerosol optical thickness data\"},\"b0\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B0\",\"description\":\"OLCI channels Oa02, Oa03\",\"center_wavelength\":0.45,\"full_width_half_max\":0.02}],\"description\":\"Surface Reflectance Data Set associated with VGT-B0 channel\"},\"b2\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B2\",\"description\":\"OLCI channels Oa06, Oa07, Oa08, Oa09, Oa10\",\"center_wavelength\":0.645,\"full_width_half_max\":0.035}],\"description\":\"Surface Reflectance Data Set associated with VGT-B2 channel\"},\"b3\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B3\",\"description\":\"OLCI channels Oa16, Oa17, Oa18, Oa21\",\"center_wavelength\":0.835,\"full_width_half_max\":0.055}],\"description\":\"Surface Reflectance Data Set associated with VGT-B3 channel\"},\"og\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Total Ozone column data\"},\"sm\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Status Map data\"},\"tg\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Synthesis time data\"},\"mir\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"MIR\",\"description\":\"SLSTR nadir and oblique channels S5, S6\",\"center_wavelength\":1.665,\"full_width_half_max\":0.085}],\"description\":\"Surface Reflectance Data Set associated with VGT-MIR channel\"},\"saa\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Solar azimuth angle data\"},\"sza\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Solar zenith angle data\"},\"vaa\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"View azimuth angle data\"},\"vza\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"View zenith angle data\"},\"wvg\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Total column Water vapour data\"},\"ndvi\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B2\",\"description\":\"OLCI channels Oa06, Oa07, Oa08, Oa09, Oa10\",\"center_wavelength\":0.645,\"full_width_half_max\":0.035},{\"name\":\"B3\",\"description\":\"OLCI channels Oa16, Oa17, Oa18, Oa21\",\"center_wavelength\":0.835,\"full_width_half_max\":0.055}],\"description\":\"Normalised difference vegetation index\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 10-day surface reflectance and NDVI (SYNERGY V10, a SPOT VEGETATION Continuity Product).\"},{\"id\":\"sentinel-3-olci-lfr-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-olci/product-types/level-2-land\",\"type\":\"text/html\",\"title\":\"Sentinel-3 Land (LRR and LFR) Product User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-olci-lfr-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 Land (Full Resolution)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-olci-lfr-l2-netcdf-thumb.png\",\"title\":\"Sentinel-5P Level-2 NetCDF Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-olci-lfr-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2016-04-25T11:33:47.368562Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"ESA\",\"Copernicus\",\"Sentinel\",\"Land\",\"Biomass\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"eo:bands\":[{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa11\",\"description\":\"Band 11 - Chlorophyll fluorescence baseline, red edge transition\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01},{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"Oa19\",\"description\":\"Band 19 - Water vapour absorption, vegetation monitoring (maximum REFLECTANCE)\",\"center_wavelength\":0.9,\"full_width_half_max\":0.01}],\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"OLCI\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"olci-lfr\"],\"s3:product_type\":[\"OL_2_LFR___\"],\"sat:orbit_state\":[\"descending\",\"ascending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This collection provides Sentinel-3 Full Resolution [OLCI Level-2 Land][olci-l2] products containing data on global vegetation, chlorophyll, and water vapor.\\n\\n## Data files\\n\\nThis dataset includes data on three primary variables:\\n\\n* OLCI global vegetation index file\\n* terrestrial Chlorophyll index file\\n* integrated water vapor over water file.\\n\\nEach variable is contained within a separate NetCDF file, and is cataloged as an asset in each Item.\\n\\nSeveral associated variables are also provided in the annotations data files:\\n\\n* rectified reflectance for red and NIR channels (RC681 and RC865)\\n* classification, quality and science flags (LQSF)\\n* common data such as the ortho-geolocation of land pixels, solar and satellite angles, atmospheric and meteorological data, time stamp or instrument information. These variables are inherited from Level-1B products.\\n\\nThis full resolution product offers a spatial sampling of approximately 300 m.\\n\\n## Processing overview\\n\\nThe values in the data files have been converted from Top of Atmosphere radiance to reflectance, and include various corrections for gaseous absorption and pixel classification. More information about the product and data processing can be found in the [User Guide](https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-olci/product-types/level-2-land) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-olci/level-2/processing).\\n\\nThis Collection contains Level-2 data in NetCDF files from April 2016 to present.\\n\\n[olci-l2]: https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-olci/level-2/land-products\\n\",\"item_assets\":{\"iwv\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"Oa19\",\"description\":\"Band 19 - Water vapour absorption, vegetation monitoring (maximum REFLECTANCE)\",\"center_wavelength\":0.9,\"full_width_half_max\":0.01}],\"description\":\"Integrated water vapour column\"},\"lqsf\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Land quality and science flags\"},\"ogvi\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02}],\"description\":\"OLCI Global Vegetation Index (OGVI)\"},\"otci\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa11\",\"description\":\"Band 11 - Chlorophyll fluorescence baseline, red edge transition\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01},{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075}],\"description\":\"OLCI Terrestrial Chlorophyll Index (OTCI)\"},\"gifapar\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02}],\"description\":\"Green instantaneous Fraction of Absorbed Photosynthetically Active Radiation (FAPAR)\"},\"rc-ogvi\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02}],\"description\":\"Rectified reflectance\"},\"tie-meteo\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Tie-point meteo annotations\"},\"rc-gifapar\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Rectified reflectance\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"},\"tie-geometries\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Tie-point geometry annotations\"},\"geo-coordinates\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Geo coordinate annotations\"},\"instrument-data\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Instrument annotations\"},\"time-coordinates\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Time coordinate annotations\"},\"tie-geo-coordinates\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Tie-point geo coordinate annotations\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 Land Full Resolution vegetation index, chlorophyll index, and water vapor (OLCI LFR).\"},{\"id\":\"sentinel-3-sral-lan-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-altimetry/product-types\",\"type\":\"text/html\",\"title\":\"Sentinel-3 Land Radar Altimetry Product User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-sral-lan-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 Land Radar Altimetry\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-sral-lan-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 Land Radar Altimetry Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-sral-lan-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"QS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-81.5,180,81.5]]},\"temporal\":{\"interval\":[[\"2016-03-01T14:07:51.632846Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Radar\",\"Altimetry\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"SRAL\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"sral-lan\"],\"s3:product_type\":[\"SR_2_LAN___\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides Sentinel-3 [SRAL Level-2 Land Altimetry](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-altimetry/level-2-algorithms-products) products, which contain data on land radar altimetry measurements. Each product contains three NetCDF files:\\n\\n- A reduced data file containing a subset of the 1 Hz Ku-band parameters.\\n- A standard data file containing the standard 1 Hz and 20 Hz Ku- and C-band parameters.\\n- An enhanced data file containing the standard 1 Hz and 20 Hz Ku- and C-band parameters along with the waveforms and parameters necessary to reprocess the data.\\n\\nMore information about the product and data processing can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-altimetry/overview) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-altimetry).\\n\\nThis Collection contains Level-2 data in NetCDF files from March 2016 to present.\\n\",\"item_assets\":{\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"},\"reduced-measurement\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Reduced measurement data file\",\"s3:altimetry_bands\":[{\"band_width\":0.32,\"description\":\"Band Ku - Range measurements\",\"frequency_band\":\"Ku\",\"center_frequency\":13.575000064}]},\"enhanced-measurement\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Enhanced measurement data file\",\"s3:altimetry_bands\":[{\"band_width\":0.29,\"description\":\"Band C - Ionospheric correction\",\"frequency_band\":\"C\",\"center_frequency\":5.409999872},{\"band_width\":0.32,\"description\":\"Band Ku - Range measurements\",\"frequency_band\":\"Ku\",\"center_frequency\":13.575000064}]},\"standard-measurement\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Standard measurement data file\",\"s3:altimetry_bands\":[{\"band_width\":0.29,\"description\":\"Band C - Ionospheric correction\",\"frequency_band\":\"C\",\"center_frequency\":5.409999872},{\"band_width\":0.32,\"description\":\"Band Ku - Range measurements\",\"frequency_band\":\"Ku\",\"center_frequency\":13.575000064}]}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 radar altimetry over land (SRAL LAN).\"},{\"id\":\"sentinel-3-slstr-lst-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-slstr/product-types/level-2-lst\",\"type\":\"text/html\",\"title\":\"Sentinel-3 Land Surface Temperature Product User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-slstr-lst-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 Land Surface Temperature\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-slstr-lst-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 Land Surface Temperature Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-slstr-lst-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"W\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2016-04-19T01:35:17.188500Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Temperature\",\"Land\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"eo:bands\":[{\"name\":\"S8\",\"description\":\"Band 8 - SST, LST, Active fire\",\"center_wavelength\":10.854,\"full_width_half_max\":0.776},{\"name\":\"S9\",\"description\":\"Band 9 - SST, LST\",\"center_wavelength\":12.0225,\"full_width_half_max\":0.905}],\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"SLSTR\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"slstr-lst\"],\"s3:product_type\":[\"SL_2_LST___\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides Sentinel-3 [SLSTR Level-2 Land Surface Temperature](https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-slstr/product-types/level-2-lst) products containing data on land surface temperature measurements on a 1km grid. Radiance is measured in two channels to determine the temperature of the Earth's surface skin in the instrument field of view, where the term \\\"skin\\\" refers to the top surface of bare soil or the effective emitting temperature of vegetation canopies as viewed from above.\\n\\n## Data files\\n\\nThe dataset includes data on the primary measurement variable, land surface temperature, in a single NetCDF file, `LST_in.nc`. A second file, `LST_ancillary.nc`, contains several ancillary variables:\\n\\n- Normalized Difference Vegetation Index\\n- Surface biome classification\\n- Fractional vegetation cover\\n- Total water vapor column\\n\\nIn addition to the primary and ancillary data files, a standard set of annotation data files provide meteorological information, geolocation and time coordinates, geometry information, and quality flags. More information about the product and data processing can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-slstr/product-types/level-2-lst) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-slstr/level-2/lst-processing).\\n\\nThis Collection contains Level-2 data in NetCDF files from April 2016 to present.\\n\\n## STAC Item geometries\\n\\nThe Collection contains small \\\"chips\\\" and long \\\"stripes\\\" of data collected along the satellite direction of travel. Approximately five percent of the STAC Items describing long stripes of data contain geometries that encompass a larger area than an exact concave hull of the data extents. This may require additional filtering when searching the Collection for Items that spatially intersect an area of interest.\\n\",\"item_assets\":{\"lst-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"S8\",\"description\":\"Band 8 - SST, LST, Active fire\",\"center_wavelength\":10.854,\"full_width_half_max\":0.776},{\"name\":\"S9\",\"description\":\"Band 9 - SST, LST\",\"center_wavelength\":12.0225,\"full_width_half_max\":0.905}],\"description\":\"Land Surface Temperature (LST) values\"},\"slstr-met-tx\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Meteorological parameters regridded onto the 16km tie points\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"},\"slstr-time-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Time annotations for the 1km grid\"},\"slstr-flags-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Global flags for the 1km TIR grid, nadir view\"},\"lst-ancillary-ds\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"LST ancillary measurement dataset\"},\"slstr-indices-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Scan, pixel and detector indices annotations for the 1km TIR grid, nadir view\"},\"slstr-geodetic-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Full resolution geodetic coordinates for the 1km TIR grid, nadir view\"},\"slstr-geodetic-tx\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"16km geodetic coordinates\"},\"slstr-geometry-tn\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"16km solar and satellite geometry annotations, nadir view\"},\"slstr-cartesian-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Full resolution cartesian coordinates for the 1km TIR grid, nadir view\"},\"slstr-cartesian-tx\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"16km cartesian coordinates\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 land surface temperature (SLSTR LST).\"},{\"id\":\"sentinel-3-slstr-wst-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-slstr/product-types/level-2-wst\",\"type\":\"text/html\",\"title\":\"Sentinel-3 Sea Surface Temperature Product User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-slstr-wst-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 Sea Surface Temperature\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-slstr-wst-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 Sea Surface Temperature Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-slstr-wst-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"MS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2017-10-31T23:59:57.451604Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Temperature\",\"Ocean\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"eo:bands\":[{\"name\":\"S7\",\"description\":\"Band 7 - SST, LST, Active fire\",\"center_wavelength\":3.742,\"full_width_half_max\":0.398},{\"name\":\"S8\",\"description\":\"Band 8 - SST, LST, Active fire\",\"center_wavelength\":10.854,\"full_width_half_max\":0.776},{\"name\":\"S9\",\"description\":\"Band 9 - SST, LST\",\"center_wavelength\":12.0225,\"full_width_half_max\":0.905}],\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"SLSTR\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"slstr-wst\"],\"s3:product_type\":[\"SL_2_WST___\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides Sentinel-3 [SLSTR Level-2 Water Surface Temperature](https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-slstr/product-types/level-2-wst) products containing data on sea surface temperature measurements on a 1km grid. Each product consists of a single NetCDF file containing all data variables:\\n\\n- Sea Surface Temperature (SST) value\\n- SST total uncertainty\\n- Latitude and longitude coordinates\\n- SST time deviation\\n- Single Sensor Error Statistic (SSES) bias and standard deviation estimate\\n- Contextual parameters such as wind speed at 10 m and fractional sea-ice contamination\\n- Quality flag\\n- Satellite zenith angle\\n- Top Of Atmosphere (TOA) Brightness Temperature (BT)\\n- TOA noise equivalent BT\\n\\nMore information about the product and data processing can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-slstr/product-types/level-2-wst) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-slstr/level-2/sst-processing).\\n\\nThis Collection contains Level-2 data in NetCDF files from October 2017 to present.\\n\",\"item_assets\":{\"l2p\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"S7\",\"description\":\"Band 7 - SST, LST, Active fire\",\"center_wavelength\":3.742,\"full_width_half_max\":0.398},{\"name\":\"S8\",\"description\":\"Band 8 - SST, LST, Active fire\",\"center_wavelength\":10.854,\"full_width_half_max\":0.776},{\"name\":\"S9\",\"description\":\"Band 9 - SST, LST\",\"center_wavelength\":12.0225,\"full_width_half_max\":0.905}],\"description\":\"Skin Sea Surface Temperature (SST) values\"},\"browse-jpg\":{\"type\":\"image/jpeg\",\"roles\":[\"thumbnail\"],\"description\":\"Preview image produced by the European Organisation for the Exploitation of Meteorological Satellites (EUMETSAT)\"},\"eop-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"Metadata produced by the European Organisation for the Exploitation of Meteorological Satellites (EUMETSAT)\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 sea surface temperature (SLSTR WST).\"},{\"id\":\"sentinel-3-sral-wat-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-altimetry/product-types\",\"type\":\"text/html\",\"title\":\"Sentinel-3 Ocean Radar Altimetry Product User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-sral-wat-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 Ocean Radar Altimetry\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-sral-wat-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 Ocean Radar Altimetry Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-sral-wat-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"QS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-81.5,180,81.5]]},\"temporal\":{\"interval\":[[\"2017-01-28T00:59:14.149496Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Radar\",\"Altimetry\",\"Ocean\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"SRAL\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"sral-wat\"],\"s3:product_type\":[\"SR_2_WAT___\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides Sentinel-3 [SRAL Level-2 Ocean Altimetry](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-altimetry/level-2-algorithms-products) products, which contain data on ocean radar altimetry measurements. Each product contains three NetCDF files:\\n\\n- A reduced data file containing a subset of the 1 Hz Ku-band parameters.\\n- A standard data file containing the standard 1 Hz and 20 Hz Ku- and C-band parameters.\\n- An enhanced data file containing the standard 1 Hz and 20 Hz Ku- and C-band parameters along with the waveforms and parameters necessary to reprocess the data.\\n\\nMore information about the product and data processing can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-altimetry/overview) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-altimetry).\\n\\nThis Collection contains Level-2 data in NetCDF files from January 2017 to present.\\n\",\"item_assets\":{\"eop-metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"Product metadata file produced by the European Organisation for the Exploitation of Meteorological Satellites (EUMETSAT)\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"},\"reduced-measurement\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Reduced measurement data file\",\"s3:altimetry_bands\":[{\"band_width\":0.32,\"description\":\"Band Ku - Range measurements\",\"frequency_band\":\"Ku\",\"center_frequency\":13.575000064}]},\"enhanced-measurement\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Enhanced measurement data file\",\"s3:altimetry_bands\":[{\"band_width\":0.29,\"description\":\"Band C - Ionospheric correction\",\"frequency_band\":\"C\",\"center_frequency\":5.409999872},{\"band_width\":0.32,\"description\":\"Band Ku - Range measurements\",\"frequency_band\":\"Ku\",\"center_frequency\":13.575000064}]},\"standard-measurement\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Standard measurement data file\",\"s3:altimetry_bands\":[{\"band_width\":0.29,\"description\":\"Band C - Ionospheric correction\",\"frequency_band\":\"C\",\"center_frequency\":5.409999872},{\"band_width\":0.32,\"description\":\"Band Ku - Range measurements\",\"frequency_band\":\"Ku\",\"center_frequency\":13.575000064}]}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 radar altimetry over ocean (SRAL WAT).\"},{\"id\":\"hls2-s30\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30\"},{\"rel\":\"license\",\"href\":\"https://lpdaac.usgs.gov/data/data-citation-and-policies/\",\"title\":\"LP DAAC - Data Citation and Policies\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/hls2-s30\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/hls2-s30.webp\",\"type\":\"image/webp\",\"title\":\"HLS2 Sentinel Collection Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/hls2-s30.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"W-MON\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2020-01-01T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Landsat\",\"HLS\",\"Satellite\",\"Global\",\"Imagery\"],\"providers\":[{\"url\":\"https://www.esa.int/Applications/Observing_the_Earth/Copernicus/Sentinel-2\",\"name\":\"ESA\",\"roles\":[\"producer\"]},{\"url\":\"https://doi.org/10.5067/HLS/HLSL30.002\",\"name\":\"LP DAAC\",\"roles\":[\"producer\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"gsd\":[30],\"platform\":[\"Sentinel-2A\",\"Sentinel-2B\",\"Sentinel-2C\"]},\"description\":\"Harmonized Landsat Sentinel-2 (HLS) Version 2.0 provides consistent surface reflectance (SR)\\nand top of atmosphere (TOA) brightness data from the Operational Land Imager (OLI) aboard the\\njoint NASA/USGS Landsat 8 and Landsat 9 satellites and the Multi-Spectral Instrument (MSI)\\naboard the ESA (European Space Agency) Sentinel-2A, Sentinel-2B, and Sentinel-2C satellites.\\nThe combined measurement enables global observations of the land every 2-3 days at 30 meter\\n(m) spatial resolution. The HLS-S30 and HLS-L30 products are gridded to the same resolution and\\nMilitary Grid Reference System (MGRS) tiling system and are \\\"stackable\\\" for time series analysis.\\nThis dataset is in the form of cloud-optimized GeoTIFFs. The HLS v2.0 data is generated by NASA's\\nIMPACT team at Marshall Space Flight Center. The product latency is 1.7 days, from the satellite\\noverpass to the HLS data availability at NASA's Land Processes Distributed Active Archive Center\\n(LP DAAC). For more information see LP DAAC's\\n[HLS Overview](https://lpdaac.usgs.gov/data/get-started-data/collection-overview/missions/harmonized-landsat-sentinel-2-hls-overview/).\\n\\nThis collection contains HLS data collected from Sentinel-2A, Sentinel-2B, and Sentinel-2C.\\nHLS data generated from Landsat can be found in a separate collection.\\n\",\"item_assets\":{\"B01\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Coastal Aerosol\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.4439,\"full_width_half_max\":0.027}]},\"B02\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Blue\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.4966,\"full_width_half_max\":0.098}]},\"B03\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Green\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}]},\"B04\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Red\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.6645,\"full_width_half_max\":0.038}]},\"B05\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Red-Edge 1\",\"eo:bands\":[{\"name\":\"B05\",\"center_wavelength\":0.7039,\"full_width_half_max\":0.019}]},\"B06\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Red-Edge 2\",\"eo:bands\":[{\"name\":\"B06\",\"center_wavelength\":0.7402,\"full_width_half_max\":0.018}]},\"B07\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Red-Edge 3\",\"eo:bands\":[{\"name\":\"B07\",\"center_wavelength\":0.7825,\"full_width_half_max\":0.028}]},\"B08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"NIR Broad\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.8351,\"full_width_half_max\":0.145}]},\"B09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Water Vapor\",\"eo:bands\":[{\"name\":\"B09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}]},\"B10\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Cirrus\",\"eo:bands\":[{\"name\":\"B10\",\"common_name\":\"cirrus\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075}]},\"B11\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR 1\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.6137,\"full_width_half_max\":0.143}]},\"B12\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SWIR 2\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.22024,\"full_width_half_max\":0.242}]},\"B8A\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"NIR Narrow\",\"eo:bands\":[{\"name\":\"B8A\",\"center_wavelength\":0.8648,\"full_width_half_max\":0.033}]},\"SAA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SAA\",\"eo:bands\":[{\"name\":\"SAA\"}]},\"SZA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"SZA\",\"eo:bands\":[{\"name\":\"SZA\"}]},\"VAA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VAA\",\"eo:bands\":[{\"name\":\"VAA\"}]},\"VZA\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VZA\",\"eo:bands\":[{\"name\":\"VZA\"}]},\"Fmask\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Fmask\",\"eo:bands\":[{\"name\":\"Fmask\"}]}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"hls2\",\"msft:container\":\"hls2\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\",\"https://stac-extensions.github.io/projection/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\"msft:storage_account\":\"hls2euwest\",\"msft:short_description\":\"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data\"},{\"id\":\"ms-buildings\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings\"},{\"rel\":\"license\",\"href\":\"https://github.com/microsoft/GlobalMLBuildingFootprints/blob/main/LICENSE\",\"type\":\"text/html\",\"title\":\"ODbL-1.0 License\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/ms-buildings\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Microsoft Building Footprints\",\"assets\":{\"delta\":{\"href\":\"az://footprints/delta/2023-04-25/ml-buildings.parquet/\",\"title\":\"Delta table\",\"description\":\"Delta table with latest buildings footprints partitioned by Region and quadkey.\",\"table:storage_options\":{\"account_name\":\"bingmlbuildings\"}},\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/msbuildings-thumbnail.png\",\"type\":\"image/png\",\"title\":\"Thumbnail\"},\"global-footprints\":{\"title\":\"Global Bing ML building footprints\",\"href\":\"https://planetarycomputer.microsoft.com/api/data/v1/vector/collections/ms-buildings/tilesets/global-footprints/tilejson.json\",\"type\":\"application/json\",\"roles\":[\"tiles\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,90.0,180.0,-90.0]]},\"temporal\":{\"interval\":[[\"2014-01-01T00:00:00Z\",null]]}},\"license\":\"ODbL-1.0\",\"keywords\":[\"Bing Maps\",\"Buildings\",\"geoparquet\",\"Microsoft\",\"Footprint\",\"Delta\"],\"providers\":[{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"producer\",\"processor\",\"host\"]}],\"summaries\":{\"msbuildings:processing-date\":[\"2023-04-25\"]},\"description\":\"Bing Maps is releasing open building footprints around the world. We have detected over 999 million buildings from Bing Maps imagery between 2014 and 2021 including Maxar and Airbus imagery. The data is freely available for download and use under ODbL. This dataset complements our other releases.\\n\\nFor more information, see the [GlobalMLBuildingFootprints](https://github.com/microsoft/GlobalMLBuildingFootprints/) repository on GitHub.\\n\\n## Building footprint creation\\n\\nThe building extraction is done in two stages:\\n\\n1. Semantic Segmentation \u2013 Recognizing building pixels on an aerial image using deep neural networks (DNNs)\\n2. Polygonization \u2013 Converting building pixel detections into polygons\\n\\n**Stage 1: Semantic Segmentation**\\n\\n![Semantic segmentation](https://raw.githubusercontent.com/microsoft/GlobalMLBuildingFootprints/main/images/segmentation.jpg)\\n\\n**Stage 2: Polygonization**\\n\\n![Polygonization](https://github.com/microsoft/GlobalMLBuildingFootprints/raw/main/images/polygonization.jpg)\\n\\n## Data assets\\n\\nThe building footprints are provided as a set of [geoparquet](https://github.com/opengeospatial/geoparquet) datasets in [Delta][delta] table format.\\nThe data are partitioned by\\n\\n1. Region\\n2. quadkey at [Bing Map Tiles][tiles] level 9\\n\\nEach `(Region, quadkey)` pair will have one or more geoparquet files, depending on the density of the of the buildings in that area.\\n\\nNote that older items in this dataset are *not* spatially partitioned. We recommend using data with a processing date\\nof 2023-04-25 or newer. This processing date is part of the URL for each parquet file and is captured in the STAC metadata\\nfor each item (see below).\\n\\n## Delta Format\\n\\nThe collection-level asset under the `delta` key gives you the fsspec-style URL\\nto the Delta table. This can be used to efficiently query for matching partitions\\nby `Region` and `quadkey`. See the notebook for an example using Python.\\n\\n## STAC metadata\\n\\nThis STAC collection has one STAC item per region. The `msbuildings:region`\\nproperty can be used to filter items to a specific region, and the `msbuildings:quadkey`\\nproperty can be used to filter items to a specific quadkey (though you can also search\\nby the `geometry`).\\n\\nNote that older STAC items are not spatially partitioned. We recommend filtering on\\nitems with an `msbuildings:processing-date` of `2023-04-25` or newer. See the collection\\nsummary for `msbuildings:processing-date` for a list of valid values.\\n\\n[delta]: https://delta.io/\\n[tiles]: https://learn.microsoft.com/en-us/bingmaps/articles/bing-maps-tile-system\\n\",\"item_assets\":{\"data\":{\"type\":\"application/x-parquet\",\"roles\":[\"data\"],\"title\":\"Building Footprints\",\"description\":\"Parquet dataset with the building footprints for this region.\",\"table:storage_options\":{\"account_name\":\"bingmlbuildings\"}}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"table:columns\":[{\"name\":\"geometry\",\"type\":\"byte_array\",\"description\":\"Building footprint polygons\"}],\"msft:container\":\"footprints\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"bingmlbuildings\",\"msft:short_description\":\"Machine learning detected buildings footprints.\"},{\"id\":\"sentinel-3-slstr-frp-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-slstr/product-types/level-2-frp\",\"type\":\"text/html\",\"title\":\"Sentinel-3 Fire Radiative Power Product User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-slstr-frp-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 Fire Radiative Power\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-slstr-frp-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 Fire Radiative Power Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-slstr-frp-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"W\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2020-08-08T23:11:15.617203Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Temperature\",\"Fire\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"eo:bands\":[{\"name\":\"F1\",\"description\":\"Band 10 - Active fire\",\"center_wavelength\":3.742,\"full_width_half_max\":0.398},{\"name\":\"S5\",\"description\":\"Band 5 - Cloud clearing, ice, snow, vegetation monitoring\",\"center_wavelength\":1.6134,\"full_width_half_max\":0.06068},{\"name\":\"S6\",\"description\":\"Band 6 - Vegetation state and cloud clearing\",\"center_wavelength\":2.2557,\"full_width_half_max\":0.05015},{\"name\":\"S7\",\"description\":\"Band 7 - SST, LST, Active fire\",\"center_wavelength\":3.742,\"full_width_half_max\":0.398}],\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"SLSTR\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"slstr-frp\"],\"s3:product_type\":[\"SL_2_FRP___\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides Sentinel-3 [SLSTR Level-2 Fire Radiative Power](https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-slstr/product-types/level-2-frp) (FRP) products containing data on fires detected over land and ocean.\\n\\n## Data files\\n\\nThe primary measurement data is contained in the `FRP_in.nc` file and provides FRP and uncertainties, projected onto a 1km grid, for fires detected in the thermal infrared (TIR) spectrum over land. Since February 2022, FRP and uncertainties are also provided for fires detected in the short wave infrared (SWIR) spectrum over both land and ocean, with the delivered data projected onto a 500m grid. The latter SWIR-detected fire data is only available for night-time measurements and is contained in the `FRP_an.nc` or `FRP_bn.nc` files.\\n\\nIn addition to the measurement data files, a standard set of annotation data files provide meteorological information, geolocation and time coordinates, geometry information, and quality flags.\\n\\n## Processing\\n\\nThe TIR fire detection is based on measurements from the S7 and F1 bands of the [SLSTR instrument](https://sentinels.copernicus.eu/web/sentinel/technical-guides/sentinel-3-slstr/instrument); SWIR fire detection is based on the S5 and S6 bands. More information about the product and data processing can be found in the [User Guide](https://sentinel.esa.int/web/sentinel/user-guides/sentinel-3-slstr/product-types/level-2-frp) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-slstr/level-2/frp-processing).\\n\\nThis Collection contains Level-2 data in NetCDF files from August 2020 to present.\\n\",\"item_assets\":{\"frp-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"S5\",\"description\":\"Band 5 - Cloud clearing, ice, snow, vegetation monitoring\",\"center_wavelength\":1.6134,\"full_width_half_max\":0.06068},{\"name\":\"S6\",\"description\":\"Band 6 - Vegetation state and cloud clearing\",\"center_wavelength\":2.2557,\"full_width_half_max\":0.05015},{\"name\":\"S7\",\"description\":\"Band 7 - SST, LST, Active fire\",\"center_wavelength\":3.742,\"full_width_half_max\":0.398},{\"name\":\"F1\",\"description\":\"Band 10 - Active fire\",\"center_wavelength\":3.742,\"full_width_half_max\":0.398}],\"description\":\"Fire Radiative Power (FRP) dataset\"},\"slstr-met-tx\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Meteorological parameters regridded onto the 16km tie points\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"},\"slstr-time-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Time annotations for the 1 KM grid\"},\"slstr-flags-fn\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Global flags for the 1km F1 grid, nadir view\"},\"slstr-flags-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Global flags for the 1km TIR grid, nadir view\"},\"slstr-indices-fn\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Scan, pixel and detector annotations for the 1km F1 grid, nadir view\"},\"slstr-indices-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Scan, pixel and detector annotations for the 1km TIR grid, nadir view\"},\"slstr-geodetic-fn\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Full resolution geodetic coordinates for the 1km F1 grid, nadir view\"},\"slstr-geodetic-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Full resolution geodetic coordinates for the 1km TIR grid, nadir view\"},\"slstr-geodetic-tx\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"16km geodetic coordinates\"},\"slstr-geometry-tn\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"16km solar and satellite geometry annotations, nadir view\"},\"slstr-cartesian-fn\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Full resolution cartesian coordinates for the 1km F1 grid, nadir view\"},\"slstr-cartesian-in\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Full resolution cartesian coordinates for the 1km TIR grid, nadir view\"},\"slstr-cartesian-tx\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"16km cartesian coordinates\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 fire detection over land (SLSTR FRP).\"},{\"id\":\"sentinel-3-synergy-syn-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-syn\",\"type\":\"text/html\",\"title\":\"Sentinel-3 Land Surface Reflectance and Aerosol Product User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-synergy-syn-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 Land Surface Reflectance and Aerosol\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-synergy-syn-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 Land Surface Reflectance and Aerosol Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-synergy-syn-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"W\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2018-09-22T16:51:00.001276Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Land\",\"Reflectance\",\"Aerosol\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"eo:bands\":[{\"name\":\"Oa01\",\"description\":\"Band 1 - Aerosol correction, improved water constituent retrieval\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015},{\"name\":\"Oa02\",\"description\":\"Band 2 - Yellow substance and detrital pigments (turbidity)\",\"center_wavelength\":0.4125,\"full_width_half_max\":0.01},{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa04\",\"description\":\"Band 4 - Chlorophyll\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01},{\"name\":\"Oa05\",\"description\":\"Band 5 - Chlorophyll, sediment, turbidity, red tide\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01},{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01},{\"name\":\"Oa07\",\"description\":\"Band 7 - Sediment loading\",\"center_wavelength\":0.62,\"full_width_half_max\":0.01},{\"name\":\"Oa08\",\"description\":\"Band 8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\",\"center_wavelength\":0.665,\"full_width_half_max\":0.01},{\"name\":\"Oa09\",\"description\":\"Band 9 - Improved fluorescence retrieval\",\"center_wavelength\":0.67375,\"full_width_half_max\":0.0075},{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa11\",\"description\":\"Band 11 - Chlorophyll fluorescence baseline, red edge transition\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01},{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075},{\"name\":\"Oa13\",\"description\":\"Band 13 - O2 absorption / aerosol correction\",\"center_wavelength\":0.76125,\"full_width_half_max\":0.0025},{\"name\":\"Oa16\",\"description\":\"Band 16 - Atmospheric / aerosol correction\",\"center_wavelength\":0.77875,\"full_width_half_max\":0.015},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"Oa19\",\"description\":\"Band 19 - Water vapour absorption, vegetation monitoring (maximum REFLECTANCE)\",\"center_wavelength\":0.9,\"full_width_half_max\":0.01},{\"name\":\"Oa21\",\"description\":\"Band 21 - Water vapour absorption, atmospheric / aerosol correction\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04},{\"name\":\"S1\",\"description\":\"Band 1 - Cloud screening, vegetation monitoring, aerosol\",\"center_wavelength\":0.55427,\"full_width_half_max\":0.01926},{\"name\":\"S2\",\"description\":\"Band 2 - NDVI, vegetation monitoring, aerosol\",\"center_wavelength\":0.65947,\"full_width_half_max\":0.01925},{\"name\":\"S3\",\"description\":\"Band 3 - NDVI, cloud flagging, pixel co-registration\",\"center_wavelength\":0.868,\"full_width_half_max\":0.0206},{\"name\":\"S4\",\"description\":\"Band 4 - Cirrus detection over land\",\"center_wavelength\":1.3748,\"full_width_half_max\":0.0208},{\"name\":\"S5\",\"description\":\"Band 5 - Cloud clearing, ice, snow, vegetation monitoring\",\"center_wavelength\":1.6134,\"full_width_half_max\":0.06068},{\"name\":\"S6\",\"description\":\"Band 6 - Vegetation state and cloud clearing\",\"center_wavelength\":2.2557,\"full_width_half_max\":0.05015},{\"name\":\"SYN01\",\"description\":\"OLCI channel Oa01\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015},{\"name\":\"SYN02\",\"description\":\"OLCI channel Oa02\",\"center_wavelength\":0.4125,\"full_width_half_max\":0.01},{\"name\":\"SYN03\",\"description\":\"OLCI channel Oa03\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"SYN04\",\"description\":\"OLCI channel Oa04\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01},{\"name\":\"SYN05\",\"description\":\"OLCI channel Oa05\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01},{\"name\":\"SYN06\",\"description\":\"OLCI channel Oa06\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01},{\"name\":\"SYN07\",\"description\":\"OLCI channel Oa07\",\"center_wavelength\":0.62,\"full_width_half_max\":0.01},{\"name\":\"SYN08\",\"description\":\"OLCI channel Oa08\",\"center_wavelength\":0.665,\"full_width_half_max\":0.01},{\"name\":\"SYN09\",\"description\":\"OLCI channel Oa09\",\"center_wavelength\":0.67375,\"full_width_half_max\":0.0075},{\"name\":\"SYN10\",\"description\":\"OLCI channel Oa10\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"SYN11\",\"description\":\"OLCI channel Oa11\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01},{\"name\":\"SYN12\",\"description\":\"OLCI channel Oa12\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075},{\"name\":\"SYN13\",\"description\":\"OLCI channel Oa16\",\"center_wavelength\":0.7785,\"full_width_half_max\":0.015},{\"name\":\"SYN14\",\"description\":\"OLCI channel Oa17\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"SYN15\",\"description\":\"OLCI channel Oa18\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"SYN16\",\"description\":\"OLCI channel Oa21\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04},{\"name\":\"SYN17\",\"description\":\"SLSTR nadir channel S1\",\"center_wavelength\":0.555,\"full_width_half_max\":0.02},{\"name\":\"SYN18\",\"description\":\"SLSTR nadir channel S2\",\"center_wavelength\":0.659,\"full_width_half_max\":0.02},{\"name\":\"SYN19\",\"description\":\"SLSTR nadir channel S3\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"SYN20\",\"description\":\"SLSTR nadir channel S5\",\"center_wavelength\":1.61,\"full_width_half_max\":0.06},{\"name\":\"SYN21\",\"description\":\"SLSTR nadir channel S6\",\"center_wavelength\":2.25,\"full_width_half_max\":0.05},{\"name\":\"SYN22\",\"description\":\"SLSTR oblique channel S1\",\"center_wavelength\":0.555,\"full_width_half_max\":0.02},{\"name\":\"SYN23\",\"description\":\"SLSTR oblique channel S2\",\"center_wavelength\":0.659,\"full_width_half_max\":0.02},{\"name\":\"SYN24\",\"description\":\"SLSTR oblique channel S3\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"SYN25\",\"description\":\"SLSTR oblique channel S5\",\"center_wavelength\":1.61,\"full_width_half_max\":0.06},{\"name\":\"SYN26\",\"description\":\"SLSTR oblique channel S6\",\"center_wavelength\":2.25,\"full_width_half_max\":0.05}],\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"OLCI\",\"SLSTR\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"synergy-syn\"],\"s3:product_type\":[\"SY_2_SYN___\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides the Sentinel-3 [Synergy Level-2 Land Surface Reflectance and Aerosol](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-syn) product, which contains data on Surface Directional Reflectance, Aerosol Optical Thickness, and an Angstrom coefficient estimate over land.\\n\\n## Data Files\\n\\nIndividual NetCDF files for the following variables:\\n\\n- Surface Directional Reflectance (SDR) with their associated error estimates for the sun-reflective [SLSTR](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-slstr) channels (S1 to S6 for both nadir and oblique views, except S4) and for all [OLCI](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-olci) channels, except for the oxygen absorption bands Oa13, Oa14, Oa15, and the water vapor bands Oa19 and Oa20.\\n- Aerosol optical thickness at 550nm with error estimates.\\n- Angstrom coefficient at 550nm.\\n\\nMore information about the product and data processing can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-syn) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-synergy/level-2/syn-level-2-product).\\n\\nThis Collection contains Level-2 data in NetCDF files from September 2018 to present.\\n\",\"item_assets\":{\"time\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Time stamps annotation\"},\"syn-amin\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"L2 Aerosol model index number data\"},\"syn-flags\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Classification and quality Flags associated with OLCI, SLSTR and SYNERGY products\"},\"syn-ato550\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"S1\",\"description\":\"Band 1 - Cloud screening, vegetation monitoring, aerosol\",\"center_wavelength\":0.55427,\"full_width_half_max\":0.01926},{\"name\":\"S2\",\"description\":\"Band 2 - NDVI, vegetation monitoring, aerosol\",\"center_wavelength\":0.65947,\"full_width_half_max\":0.01925},{\"name\":\"S3\",\"description\":\"Band 3 - NDVI, cloud flagging, pixel co-registration\",\"center_wavelength\":0.868,\"full_width_half_max\":0.0206},{\"name\":\"S5\",\"description\":\"Band 5 - Cloud clearing, ice, snow, vegetation monitoring\",\"center_wavelength\":1.6134,\"full_width_half_max\":0.06068},{\"name\":\"S6\",\"description\":\"Band 6 - Vegetation state and cloud clearing\",\"center_wavelength\":2.2557,\"full_width_half_max\":0.05015},{\"name\":\"Oa01\",\"description\":\"Band 1 - Aerosol correction, improved water constituent retrieval\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015},{\"name\":\"Oa02\",\"description\":\"Band 2 - Yellow substance and detrital pigments (turbidity)\",\"center_wavelength\":0.4125,\"full_width_half_max\":0.01},{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa04\",\"description\":\"Band 4 - Chlorophyll\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01},{\"name\":\"Oa05\",\"description\":\"Band 5 - Chlorophyll, sediment, turbidity, red tide\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01},{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01},{\"name\":\"Oa07\",\"description\":\"Band 7 - Sediment loading\",\"center_wavelength\":0.62,\"full_width_half_max\":0.01},{\"name\":\"Oa08\",\"description\":\"Band 8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\",\"center_wavelength\":0.665,\"full_width_half_max\":0.01},{\"name\":\"Oa09\",\"description\":\"Band 9 - Improved fluorescence retrieval\",\"center_wavelength\":0.67375,\"full_width_half_max\":0.0075},{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa11\",\"description\":\"Band 11 - Chlorophyll fluorescence baseline, red edge transition\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01},{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075},{\"name\":\"Oa16\",\"description\":\"Band 16 - Atmospheric / aerosol correction\",\"center_wavelength\":0.77875,\"full_width_half_max\":0.015},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"Oa21\",\"description\":\"Band 21 - Water vapour absorption, atmospheric / aerosol correction\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04}],\"description\":\"Aerosol Optical Thickness Data Set\"},\"geolocation\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"High resolution georeferencing data\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"},\"tiepoints-olci\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Low resolution georeferencing data and Sun and View angles associated with OLCI products\"},\"tiepoints-meteo\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"ECMWF meteorology data\"},\"tiepoints-slstr-n\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Low resolution georeferencing data and Sun and View angles associated with SLSTR nadir view products\"},\"tiepoints-slstr-o\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Low resolution georeferencing data and Sun and View angles associated with SLSTR oblique view products\"},\"syn-angstrom-exp550\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"S1\",\"description\":\"Band 1 - Cloud screening, vegetation monitoring, aerosol\",\"center_wavelength\":0.55427,\"full_width_half_max\":0.01926},{\"name\":\"S2\",\"description\":\"Band 2 - NDVI, vegetation monitoring, aerosol\",\"center_wavelength\":0.65947,\"full_width_half_max\":0.01925},{\"name\":\"S3\",\"description\":\"Band 3 - NDVI, cloud flagging, pixel co-registration\",\"center_wavelength\":0.868,\"full_width_half_max\":0.0206},{\"name\":\"S5\",\"description\":\"Band 5 - Cloud clearing, ice, snow, vegetation monitoring\",\"center_wavelength\":1.6134,\"full_width_half_max\":0.06068},{\"name\":\"S6\",\"description\":\"Band 6 - Vegetation state and cloud clearing\",\"center_wavelength\":2.2557,\"full_width_half_max\":0.05015},{\"name\":\"Oa01\",\"description\":\"Band 1 - Aerosol correction, improved water constituent retrieval\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015},{\"name\":\"Oa02\",\"description\":\"Band 2 - Yellow substance and detrital pigments (turbidity)\",\"center_wavelength\":0.4125,\"full_width_half_max\":0.01},{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa04\",\"description\":\"Band 4 - Chlorophyll\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01},{\"name\":\"Oa05\",\"description\":\"Band 5 - Chlorophyll, sediment, turbidity, red tide\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01},{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01},{\"name\":\"Oa07\",\"description\":\"Band 7 - Sediment loading\",\"center_wavelength\":0.62,\"full_width_half_max\":0.01},{\"name\":\"Oa08\",\"description\":\"Band 8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\",\"center_wavelength\":0.665,\"full_width_half_max\":0.01},{\"name\":\"Oa09\",\"description\":\"Band 9 - Improved fluorescence retrieval\",\"center_wavelength\":0.67375,\"full_width_half_max\":0.0075},{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa11\",\"description\":\"Band 11 - Chlorophyll fluorescence baseline, red edge transition\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01},{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075},{\"name\":\"Oa16\",\"description\":\"Band 16 - Atmospheric / aerosol correction\",\"center_wavelength\":0.77875,\"full_width_half_max\":0.015},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"Oa21\",\"description\":\"Band 21 - Water vapour absorption, atmospheric / aerosol correction\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04}],\"description\":\"Aerosol Angstrom Exponent Data Set\"},\"syn-s1n-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN17\",\"description\":\"SLSTR nadir channel S1\",\"center_wavelength\":0.555,\"full_width_half_max\":0.02}],\"description\":\"Surface directional reflectance associated with SLSTR channel 01 acquired in nadir view\"},\"syn-s1o-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN22\",\"description\":\"SLSTR oblique channel S1\",\"center_wavelength\":0.555,\"full_width_half_max\":0.02}],\"description\":\"Surface directional reflectance associated with SLSTR channel 01 acquired in oblique view\"},\"syn-s2n-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN18\",\"description\":\"SLSTR nadir channel S2\",\"center_wavelength\":0.659,\"full_width_half_max\":0.02}],\"description\":\"Surface directional reflectance associated with SLSTR channel 02 acquired in nadir view\"},\"syn-s2o-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN23\",\"description\":\"SLSTR oblique channel S2\",\"center_wavelength\":0.659,\"full_width_half_max\":0.02}],\"description\":\"Surface directional reflectance associated with SLSTR channel 02 acquired in oblique view\"},\"syn-s3n-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN19\",\"description\":\"SLSTR nadir channel S3\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02}],\"description\":\"Surface directional reflectance associated with SLSTR channel 03 acquired in nadir view\"},\"syn-s3o-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN24\",\"description\":\"SLSTR oblique channel S3\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02}],\"description\":\"Surface directional reflectance associated with SLSTR channel 03 acquired in oblique view\"},\"syn-s5n-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN20\",\"description\":\"SLSTR nadir channel S5\",\"center_wavelength\":1.61,\"full_width_half_max\":0.06}],\"description\":\"Surface directional reflectance associated with SLSTR channel 05 acquired in nadir view\"},\"syn-s5o-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN25\",\"description\":\"SLSTR oblique channel S5\",\"center_wavelength\":1.61,\"full_width_half_max\":0.06}],\"description\":\"Surface directional reflectance associated with SLSTR channel 05 acquired in oblique view\"},\"syn-s6n-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN21\",\"description\":\"SLSTR nadir channel S6\",\"center_wavelength\":2.25,\"full_width_half_max\":0.05}],\"description\":\"Surface directional reflectance associated with SLSTR channel 06 acquired in nadir view\"},\"syn-s6o-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN26\",\"description\":\"SLSTR oblique channel S6\",\"center_wavelength\":2.25,\"full_width_half_max\":0.05}],\"description\":\"Surface directional reflectance associated with SLSTR channel 06 acquired in oblique view\"},\"syn-oa01-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN01\",\"description\":\"OLCI channel Oa01\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015}],\"description\":\"Surface directional reflectance associated with OLCI channel 01\"},\"syn-oa02-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN02\",\"description\":\"OLCI channel Oa02\",\"center_wavelength\":0.4125,\"full_width_half_max\":0.01}],\"description\":\"Surface directional reflectance associated with OLCI channel 02\"},\"syn-oa03-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN03\",\"description\":\"OLCI channel Oa03\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01}],\"description\":\"Surface directional reflectance associated with OLCI channel 03\"},\"syn-oa04-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN04\",\"description\":\"OLCI channel Oa04\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01}],\"description\":\"Surface directional reflectance associated with OLCI channel 04\"},\"syn-oa05-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN05\",\"description\":\"OLCI channel Oa05\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01}],\"description\":\"Surface directional reflectance associated with OLCI channel 05\"},\"syn-oa06-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN06\",\"description\":\"OLCI channel Oa06\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01}],\"description\":\"Surface directional reflectance associated with OLCI channel 06\"},\"syn-oa07-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN07\",\"description\":\"OLCI channel Oa07\",\"center_wavelength\":0.62,\"full_width_half_max\":0.01}],\"description\":\"Surface directional reflectance associated with OLCI channel 07\"},\"syn-oa08-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN08\",\"description\":\"OLCI channel Oa08\",\"center_wavelength\":0.665,\"full_width_half_max\":0.01}],\"description\":\"Surface directional reflectance associated with OLCI channel 08\"},\"syn-oa09-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN09\",\"description\":\"OLCI channel Oa09\",\"center_wavelength\":0.67375,\"full_width_half_max\":0.0075}],\"description\":\"Surface directional reflectance associated with OLCI channel 09\"},\"syn-oa10-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN10\",\"description\":\"OLCI channel Oa10\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075}],\"description\":\"Surface directional reflectance associated with OLCI channel 10\"},\"syn-oa11-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN11\",\"description\":\"OLCI channel Oa11\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01}],\"description\":\"Surface directional reflectance associated with OLCI channel 11\"},\"syn-oa12-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN12\",\"description\":\"OLCI channel Oa12\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075}],\"description\":\"Surface directional reflectance associated with OLCI channel 12\"},\"syn-oa16-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN13\",\"description\":\"OLCI channel Oa16\",\"center_wavelength\":0.7785,\"full_width_half_max\":0.015}],\"description\":\"Surface directional reflectance associated with OLCI channel 16\"},\"syn-oa17-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN14\",\"description\":\"OLCI channel Oa17\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02}],\"description\":\"Surface directional reflectance associated with OLCI channel 17\"},\"syn-oa18-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN15\",\"description\":\"OLCI channel Oa18\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01}],\"description\":\"Surface directional reflectance associated with OLCI channel 18\"},\"syn-oa21-reflectance\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"SYN16\",\"description\":\"OLCI channel Oa21\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04}],\"description\":\"Surface directional reflectance associated with OLCI channel 21\"},\"syn-sdr-removed-pixels\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"S1\",\"description\":\"Band 1 - Cloud screening, vegetation monitoring, aerosol\",\"center_wavelength\":0.55427,\"full_width_half_max\":0.01926},{\"name\":\"S2\",\"description\":\"Band 2 - NDVI, vegetation monitoring, aerosol\",\"center_wavelength\":0.65947,\"full_width_half_max\":0.01925},{\"name\":\"S3\",\"description\":\"Band 3 - NDVI, cloud flagging, pixel co-registration\",\"center_wavelength\":0.868,\"full_width_half_max\":0.0206},{\"name\":\"S4\",\"description\":\"Band 4 - Cirrus detection over land\",\"center_wavelength\":1.3748,\"full_width_half_max\":0.0208},{\"name\":\"S6\",\"description\":\"Band 6 - Vegetation state and cloud clearing\",\"center_wavelength\":2.2557,\"full_width_half_max\":0.05015},{\"name\":\"Oa01\",\"description\":\"Band 1 - Aerosol correction, improved water constituent retrieval\",\"center_wavelength\":0.4,\"full_width_half_max\":0.015},{\"name\":\"Oa02\",\"description\":\"Band 2 - Yellow substance and detrital pigments (turbidity)\",\"center_wavelength\":0.4125,\"full_width_half_max\":0.01},{\"name\":\"Oa03\",\"description\":\"Band 3 - Chlorophyll absorption maximum, biogeochemistry, vegetation\",\"center_wavelength\":0.4425,\"full_width_half_max\":0.01},{\"name\":\"Oa04\",\"description\":\"Band 4 - Chlorophyll\",\"center_wavelength\":0.49,\"full_width_half_max\":0.01},{\"name\":\"Oa05\",\"description\":\"Band 5 - Chlorophyll, sediment, turbidity, red tide\",\"center_wavelength\":0.51,\"full_width_half_max\":0.01},{\"name\":\"Oa06\",\"description\":\"Band 6 - Chlorophyll reference (minimum)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.01},{\"name\":\"Oa07\",\"description\":\"Band 7 - Sediment loading\",\"center_wavelength\":0.62,\"full_width_half_max\":0.01},{\"name\":\"Oa08\",\"description\":\"Band 8 - 2nd Chlorophyll absorption maximum, sediment, yellow substance / vegetation\",\"center_wavelength\":0.665,\"full_width_half_max\":0.01},{\"name\":\"Oa09\",\"description\":\"Band 9 - Improved fluorescence retrieval\",\"center_wavelength\":0.67375,\"full_width_half_max\":0.0075},{\"name\":\"Oa10\",\"description\":\"Band 10 - Chlorophyll fluorescence peak, red edge\",\"center_wavelength\":0.68125,\"full_width_half_max\":0.0075},{\"name\":\"Oa11\",\"description\":\"Band 11 - Chlorophyll fluorescence baseline, red edge transition\",\"center_wavelength\":0.70875,\"full_width_half_max\":0.01},{\"name\":\"Oa12\",\"description\":\"Band 12 - O2 absorption / clouds, vegetation\",\"center_wavelength\":0.75375,\"full_width_half_max\":0.0075},{\"name\":\"Oa13\",\"description\":\"Band 13 - O2 absorption / aerosol correction\",\"center_wavelength\":0.76125,\"full_width_half_max\":0.0025},{\"name\":\"Oa16\",\"description\":\"Band 16 - Atmospheric / aerosol correction\",\"center_wavelength\":0.77875,\"full_width_half_max\":0.015},{\"name\":\"Oa17\",\"description\":\"Band 17 - Atmospheric / aerosol correction, clouds, pixel co-registration\",\"center_wavelength\":0.865,\"full_width_half_max\":0.02},{\"name\":\"Oa18\",\"description\":\"Band 18 - Water vapour absorption reference. Common reference band with SLSTR. Vegetation monitoring\",\"center_wavelength\":0.885,\"full_width_half_max\":0.01},{\"name\":\"Oa19\",\"description\":\"Band 19 - Water vapour absorption, vegetation monitoring (maximum REFLECTANCE)\",\"center_wavelength\":0.9,\"full_width_half_max\":0.01},{\"name\":\"Oa21\",\"description\":\"Band 21 - Water vapour absorption, atmospheric / aerosol correction\",\"center_wavelength\":1.02,\"full_width_half_max\":0.04}],\"description\":\"Surface directional reflectance and aerosol parameters associated with removed pixel\"},\"annotations-removed-pixels\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Annotations parameters associated with removed pixel\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 surface reflectance and aerosol over land (SYNERGY SYN).\"},{\"id\":\"sentinel-3-synergy-vgp-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vgp\",\"type\":\"text/html\",\"title\":\"Sentinel-3 Top of Atmosphere Reflectance Product (SPOT VEGETATION) User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-synergy-vgp-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-synergy-vgp-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION) Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-synergy-vgp-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"QS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2018-10-08T08:09:40.491227Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Reflectance\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"eo:bands\":[{\"name\":\"B0\",\"description\":\"OLCI channels Oa02, Oa03\",\"center_wavelength\":0.45,\"full_width_half_max\":0.02},{\"name\":\"B2\",\"description\":\"OLCI channels Oa06, Oa07, Oa08, Oa09, Oa10\",\"center_wavelength\":0.645,\"full_width_half_max\":0.035},{\"name\":\"B3\",\"description\":\"OLCI channels Oa16, Oa17, Oa18, Oa21\",\"center_wavelength\":0.835,\"full_width_half_max\":0.055},{\"name\":\"MIR\",\"description\":\"SLSTR nadir and oblique channels S5, S6\",\"center_wavelength\":1.665,\"full_width_half_max\":0.085}],\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"OLCI\",\"SLSTR\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"synergy-vgp\"],\"s3:product_type\":[\"SY_2_VGP___\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides the Sentinel-3 [Synergy Level-2 Top of Atmosphere Reflectance](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vgp) product, which is a SPOT VEGETATION Continuity Product containing measurement data similar to that obtained by the [VEGETATION instrument](https://docs.terrascope.be/#/Satellites/SPOT-VGT/MissionInstruments) onboad the SPOT-3 and SPOT-4 satellites. The primary variables are four top of atmosphere reflectance bands:\\n\\n- B0 (Blue, 450nm)\\n- B2 (Red, 645nm)\\n- B3 (NIR, 835nm)\\n- MIR (SWIR, 1665nm)\\n\\nThe four reflectance bands have center wavelengths matching those on the original SPOT VEGETATION instrument and have been adapted for scientific applications requiring highly accurate physical measurements through correction for systematic errors and re-sampling to predefined geographic projections. The pixel brightness count is the ground area's apparent reflectance as seen at the top of atmosphere.\\n\\n## Data files\\n\\nNetCDF files are provided for the four reflectance bands. Additional metadata are delivered in annotation NetCDF files, each containing a single variable, including the geometric viewing and illumination conditions, the total water vapour and ozone columns, and the aerosol optical depth.\\n\\nMore information about the product and data processing can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vgp) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-synergy/level-2/vgt-p-product).\\n\\nThis Collection contains Level-2 data in NetCDF files from October 2018 to present.\\n\",\"item_assets\":{\"ag\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Aerosol optical thickness data\"},\"b0\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B0\",\"description\":\"OLCI channels Oa02, Oa03\",\"center_wavelength\":0.45,\"full_width_half_max\":0.02}],\"description\":\"Top of atmosphere reflectance data set associated with the VGT-B0 channel\"},\"b2\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B2\",\"description\":\"OLCI channels Oa06, Oa07, Oa08, Oa09, Oa10\",\"center_wavelength\":0.645,\"full_width_half_max\":0.035}],\"description\":\"Top of atmosphere reflectance data set associated with the VGT-B2 channel\"},\"b3\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B3\",\"description\":\"OLCI channels Oa16, Oa17, Oa18, Oa21\",\"center_wavelength\":0.835,\"full_width_half_max\":0.055}],\"description\":\"Top of atmosphere reflectance data set associated with the VGT-B3 channel\"},\"og\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Total ozone column data\"},\"sm\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Status map data\"},\"mir\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"MIR\",\"description\":\"SLSTR nadir and oblique channels S5, S6\",\"center_wavelength\":1.665,\"full_width_half_max\":0.085}],\"description\":\"Top of atmosphere Reflectance data set associated with the VGT-MIR channel\"},\"saa\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Solar azimuth angle data\"},\"sza\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Solar zenith angle data\"},\"vaa\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"View azimuth angle data\"},\"vza\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"View zenith angle data\"},\"wvg\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Total column water vapour data\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 top of atmosphere reflectance (SYNERGY VGP, a SPOT VEGETATION Continuity Product).\"},{\"id\":\"sentinel-3-synergy-vg1-l2-netcdf\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"type\":\"application/pdf\",\"title\":\"Sentinel Data License\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vg1-v10\",\"type\":\"text/html\",\"title\":\"Sentinel-3 1-Day Surface Reflectance and NDVI Product (SPOT VEGETATION) User Guide\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/sentinel-3-synergy-vg1-l2-netcdf\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-3-synergy-vg1-l2-netcdf-thumb.png\",\"title\":\"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION) Thumbnail\",\"media_type\":\"image/png\"},\"geoparquet-items\":{\"href\":\"abfs://items/sentinel-3-synergy-vg1-l2-netcdf.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC Items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":true,\"partition_frequency\":\"AS\"},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-56.0,180.0,75.0]]},\"temporal\":{\"interval\":[[\"2018-10-04T23:17:21Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Sentinel\",\"Copernicus\",\"ESA\",\"Satellite\",\"Reflectance\",\"NDVI\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"eo:bands\":[{\"name\":\"B0\",\"description\":\"OLCI channels Oa02, Oa03\",\"center_wavelength\":0.45,\"full_width_half_max\":0.02},{\"name\":\"B2\",\"description\":\"OLCI channels Oa06, Oa07, Oa08, Oa09, Oa10\",\"center_wavelength\":0.645,\"full_width_half_max\":0.035},{\"name\":\"B3\",\"description\":\"OLCI channels Oa16, Oa17, Oa18, Oa21\",\"center_wavelength\":0.835,\"full_width_half_max\":0.055},{\"name\":\"MIR\",\"description\":\"SLSTR nadir and oblique channels S5, S6\",\"center_wavelength\":1.665,\"full_width_half_max\":0.085}],\"platform\":[\"Sentinel-3A\",\"Sentinel-3B\"],\"instruments\":[\"OLCI\",\"SLSTR\"],\"constellation\":[\"Sentinel-3\"],\"s3:product_name\":[\"synergy-vg1\"],\"s3:product_type\":[\"SY_2_VG1___\"],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"s3:processing_timeliness\":[\"NT\"],\"sat:platform_international_designator\":[\"2016-011A\",\"2018-039A\"]},\"description\":\"This Collection provides the Sentinel-3 [Synergy Level-2 1-Day Surface Reflectance and NDVI](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vg1-v10) products, which are SPOT VEGETATION Continuity Products similar to those obtained from the [VEGETATION instrument](https://docs.terrascope.be/#/Satellites/SPOT-VGT/MissionInstruments) onboard the SPOT-4 and SPOT-5 satellites. The primary variables are a maximum Normalized Difference Vegetation Index (NDVI) composite, which is derived from daily ground reflecrtance, and four surface reflectance bands:\\n\\n- B0 (Blue, 450nm)\\n- B2 (Red, 645nm)\\n- B3 (NIR, 835nm)\\n- MIR (SWIR, 1665nm)\\n\\nThe four reflectance bands have center wavelengths matching those on the original SPOT VEGETATION instrument. The NDVI variable, which is an indicator of the amount of vegetation, is derived from the B3 and B2 bands.\\n\\n## Data files\\n\\nThe four reflectance bands and NDVI values are each contained in dedicated NetCDF files. Additional metadata are delivered in annotation NetCDF files, each containing a single variable, including the geometric viewing and illumination conditions, the total water vapour and ozone columns, and the aerosol optical depth.\\n\\nEach 1-day product is delivered as a set of 10 rectangular scenes:\\n\\n- AFRICA\\n- NORTH_AMERICA\\n- SOUTH_AMERICA\\n- CENTRAL_AMERICA\\n- NORTH_ASIA\\n- WEST_ASIA\\n- SOUTH_EAST_ASIA\\n- ASIAN_ISLANDS\\n- AUSTRALASIA\\n- EUROPE\\n\\nMore information about the product and data processing can be found in the [User Guide](https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-3-synergy/product-types/level-2-vg1-v10) and [Technical Guide](https://sentinel.esa.int/web/sentinel/technical-guides/sentinel-3-synergy/vgt-s/vg1-product-surface-reflectance).\\n\\nThis Collection contains Level-2 data in NetCDF files from October 2018 to present.\\n\",\"item_assets\":{\"ag\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Aerosol optical thickness data\"},\"b0\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B0\",\"description\":\"OLCI channels Oa02, Oa03\",\"center_wavelength\":0.45,\"full_width_half_max\":0.02}],\"description\":\"Surface Reflectance Data Set associated with VGT-B0 channel\"},\"b2\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B2\",\"description\":\"OLCI channels Oa06, Oa07, Oa08, Oa09, Oa10\",\"center_wavelength\":0.645,\"full_width_half_max\":0.035}],\"description\":\"Surface Reflectance Data Set associated with VGT-B2 channel\"},\"b3\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B3\",\"description\":\"OLCI channels Oa16, Oa17, Oa18, Oa21\",\"center_wavelength\":0.835,\"full_width_half_max\":0.055}],\"description\":\"Surface Reflectance Data Set associated with VGT-B3 channel\"},\"og\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Total Ozone column data\"},\"sm\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Status Map data\"},\"tg\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Synthesis time data\"},\"mir\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"MIR\",\"description\":\"SLSTR nadir and oblique channels S5, S6\",\"center_wavelength\":1.665,\"full_width_half_max\":0.085}],\"description\":\"Surface Reflectance Data Set associated with VGT-MIR channel\"},\"saa\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Solar azimuth angle data\"},\"sza\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Solar zenith angle data\"},\"vaa\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"View azimuth angle data\"},\"vza\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"View zenith angle data\"},\"wvg\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"description\":\"Total column Water vapour data\"},\"ndvi\":{\"type\":\"application/x-netcdf\",\"roles\":[\"data\"],\"eo:bands\":[{\"name\":\"B2\",\"description\":\"OLCI channels Oa06, Oa07, Oa08, Oa09, Oa10\",\"center_wavelength\":0.645,\"full_width_half_max\":0.035},{\"name\":\"B3\",\"description\":\"OLCI channels Oa16, Oa17, Oa18, Oa21\",\"center_wavelength\":0.835,\"full_width_half_max\":0.055}],\"description\":\"Normalised difference vegetation index\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"description\":\"SAFE product manifest\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"sentinel-3\",\"msft:container\":\"sentinel-3\",\"stac_extensions\":[\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.1.0/schema.json\"],\"msft:storage_account\":\"sentinel3euwest\",\"msft:short_description\":\"Sentinel-3 1-day surface reflectance and NDVI (SYNERGY VG1, a SPOT VEGETATION Continuity Product).\"},{\"id\":\"esa-worldcover\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover\"},{\"rel\":\"license\",\"href\":\"https://spdx.org/licenses/CC-BY-4.0.html\",\"type\":\"text/html\",\"title\":\"Creative Commons Attribution 4.0 International License\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5281/zenodo.5571936 \",\"type\":\"text/html\",\"title\":\"2020 Data DOI\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5281/zenodo.7254221\",\"type\":\"text/html\",\"title\":\"2021 Data DOI\"},{\"rel\":\"about\",\"href\":\"https://esa-worldcover.s3.amazonaws.com/v100/2020/docs/WorldCover_PUM_V1.0.pdf\",\"type\":\"application/pdf\",\"title\":\"2020 Product Version 1.0.0 User Manual\"},{\"rel\":\"about\",\"href\":\"https://esa-worldcover.s3.eu-central-1.amazonaws.com/v200/2021/docs/WorldCover_PUM_V2.0.pdf\",\"type\":\"application/pdf\",\"title\":\"2021 Product Version 2.0.0 User Manual\"},{\"rel\":\"about\",\"href\":\"https://worldcover2020.esa.int/data/docs/WorldCover_PVR_V1.1.pdf\",\"type\":\"application/pdf\",\"title\":\"2020 Product Version 1.0.0 Validation Report\"},{\"rel\":\"about\",\"href\":\"https://esa-worldcover.s3.eu-central-1.amazonaws.com/v200/2021/docs/WorldCover_PVR_V2.0.pdf\",\"type\":\"application/pdf\",\"title\":\"2021 Product Version 2.0.0 Validation Report\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/esa-worldcover\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"ESA WorldCover\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/esa-worldcover-thumb.png\",\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"ESA WorldCover thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/esa-worldcover.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180.0,-60.0,180.0,82.75]]},\"temporal\":{\"interval\":[[\"2020-01-01T00:00:00Z\",\"2021-12-31T23:59:59Z\"]]}},\"license\":\"CC-BY-4.0\",\"keywords\":[\"Global\",\"Land Cover\",\"Sentinel\",\"ESA\"],\"providers\":[{\"url\":\"https://esa-worldcover.org\",\"name\":\"ESA\",\"roles\":[\"licensor\",\"producer\"]},{\"url\":\"https://esa-worldcover.org\",\"name\":\"ESA WorldCover Consortium\",\"roles\":[\"processor\"],\"description\":\"The WorldCover product is developed by a consortium led by VITO Remote Sensing together with partners Brockmann Consult, CS SI, Gamma Remote Sensing AG, IIASA and Wageningen University\"},{\"url\":\"https://planetarycomputer.microsoft.com\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"mission\":[\"sentinel-1\",\"sentinel-2\"],\"platform\":[\"sentinel-1a\",\"sentinel-1b\",\"sentinel-2a\",\"sentinel-2b\"],\"instruments\":[\"c-sar\",\"msi\"],\"esa_worldcover:product_version\":[\"1.0.0\",\"2.0.0\"]},\"description\":\"The European Space Agency (ESA) [WorldCover](https://esa-worldcover.org/en) product provides global land cover maps for the years 2020 and 2021 at 10 meter resolution based on the combination of [Sentinel-1](https://sentinel.esa.int/web/sentinel/missions/sentinel-1) radar data and [Sentinel-2](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) imagery. The discrete classification maps provide 11 classes defined using the Land Cover Classification System (LCCS) developed by the United Nations (UN) Food and Agriculture Organization (FAO). The map images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\n\\nThe WorldCover product is developed by a consortium of European service providers and research organizations. [VITO](https://remotesensing.vito.be/) (Belgium) is the prime contractor of the WorldCover consortium together with [Brockmann Consult](https://www.brockmann-consult.de/) (Germany), [CS SI](https://www.c-s.fr/) (France), [Gamma Remote Sensing AG](https://www.gamma-rs.ch/) (Switzerland), [International Institute for Applied Systems Analysis](https://www.iiasa.ac.at/) (Austria), and [Wageningen University](https://www.wur.nl/nl/Wageningen-University.htm) (The Netherlands).\\n\\nTwo versions of the WorldCover product are available:\\n\\n- WorldCover 2020 produced using v100 of the algorithm\\n - [WorldCover 2020 v100 User Manual](https://esa-worldcover.s3.eu-central-1.amazonaws.com/v100/2020/docs/WorldCover_PUM_V1.0.pdf)\\n \ - [WorldCover 2020 v100 Validation Report]()\\n\\n- WorldCover 2021 produced using v200 of the algorithm\\n - [WorldCover 2021 v200 User Manual]()\\n \ - [WorldCover 2021 v200 Validaton Report]()\\n\\nSince the WorldCover maps for 2020 and 2021 were generated with different algorithm versions (v100 and v200, respectively), changes between the maps include both changes in real land cover and changes due to the used algorithms.\\n\",\"item_assets\":{\"map\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Land Cover Classes\",\"description\":\"Discrete classification according to the Land Cover Classification System scheme developed by the United Nations Food and Agriculture Organization\",\"raster:bands\":[{\"name\":\"Band1\",\"nodata\":0,\"sampling\":\"area\",\"data_type\":\"uint8\",\"description\":\"Classification values\",\"spatial_resolution\":10}],\"classification:classes\":[{\"value\":10,\"color-hint\":\"006400\",\"description\":\"Tree cover\"},{\"value\":20,\"color-hint\":\"FFBB22\",\"description\":\"Shrubland\"},{\"value\":30,\"color-hint\":\"FFFF4C\",\"description\":\"Grassland\"},{\"value\":40,\"color-hint\":\"F096FF\",\"description\":\"Cropland\"},{\"value\":50,\"color-hint\":\"FA0000\",\"description\":\"Built-up\"},{\"value\":60,\"color-hint\":\"B4B4B4\",\"description\":\"Bare / sparse vegetation\"},{\"value\":70,\"color-hint\":\"F0F0F0\",\"description\":\"Snow and ice\"},{\"value\":80,\"color-hint\":\"0064C8\",\"description\":\"Permanent water bodies\"},{\"value\":90,\"color-hint\":\"0096A0\",\"description\":\"Herbaceous wetland\"},{\"value\":95,\"color-hint\":\"00CF75\",\"description\":\"Mangroves\"},{\"value\":100,\"color-hint\":\"FAE6A0\",\"description\":\"Moss and lichen\"}]},\"input_quality\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"metadata\"],\"title\":\"Classification Input Data Quality\",\"description\":\"Per pixel quality indicator showing the quality of the input data.\",\"raster:bands\":[{\"name\":\"Band1\",\"nodata\":-1,\"sampling\":\"area\",\"data_type\":\"int16\",\"description\":\"Number of Sentinel-1 GAMMA0 observations used in the classification workflow\",\"spatial_resolution\":60},{\"name\":\"Band2\",\"nodata\":-1,\"sampling\":\"area\",\"data_type\":\"int16\",\"description\":\"Number of Sentinel-2 L2A observations used in the classification workflow\",\"spatial_resolution\":60},{\"name\":\"Band3\",\"nodata\":-1,\"sampling\":\"area\",\"data_type\":\"int16\",\"description\":\"Percentage (0-100) of invalid S2 observations discarded in the classification workflow (after cloud and cloud shadow filtering)\",\"spatial_resolution\":60}]}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:container\":\"esa-worldcover\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.0.0/schema.json\",\"https://stac-extensions.github.io/classification/v1.0.0/schema.json\",\"https://stac-extensions.github.io/table/v1.2.0/schema.json\"],\"msft:storage_account\":\"ai4edataeuwest\",\"msft:short_description\":\"Global land cover product at 10 meter resolution based on Sentinel-1 and Sentinel-2 data\"}],\"links\":[{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections\"}]}" headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '205481' Content-Type: - application/json Date: - Thu, 17 Jul 2025 13:05:19 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T130518Z-167d46d96d8znrdrhC1DEN4cgc000000066g00000000569w status: code: 200 message: OK - request: body: '{"collections": ["sentinel-2-l2a"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '35' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716","bbox":[118.2169585,42.492896,118.5443546,43.3462],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_AOT_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R60m/T50TPN_20250717T031151_B01_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B02_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B03_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B04_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B05_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B06_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B07_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B08_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R60m/T50TPN_20250717T031151_B09_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B11_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B12_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B8A_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_SCL_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_WVP_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_TCI_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/DATASTRIP/DS_2APS_20250717T060716_S20250717T031154/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.5443546,43.3410102],[118.5336127,43.313588],[118.4767986,43.1679071],[118.4200672,43.0223138],[118.363583,42.8767423],[118.3076044,42.7309403],[118.2514322,42.5851422],[118.2169585,42.492896],[118.2338121,43.3462],[118.5443546,43.3410102]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:11:51.024000Z","platform":"Sentinel-2A","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TPN","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T060716_A052582_T50TPN_N05.11","eo:cloud_cover":37.504357,"s2:datatake_id":"GS2A_20250717T031151_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T060716_S20250717T031154_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T06:07:16.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.005036,"s2:mean_solar_zenith":24.4791112148997,"s2:mean_solar_azimuth":148.082651359385,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":42.258921,"s2:thin_cirrus_percentage":7.103997,"s2:cloud_shadow_percentage":11.257639,"s2:nodata_pixel_percentage":90.118074,"s2:unclassified_percentage":0.714036,"s2:not_vegetated_percentage":8.081225,"s2:degraded_msi_data_percentage":0.0041,"s2:high_proba_clouds_percentage":17.202029,"s2:reflectance_conversion_factor":0.96769091883615,"s2:medium_proba_clouds_percentage":13.198331,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716","bbox":[115.0575906,44.1468602,115.8719187,45.1480732],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_AOT_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R60m/T50TLQ_20250717T031151_B01_60m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B02_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B03_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B04_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B05_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B06_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B07_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B08_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R60m/T50TLQ_20250717T031151_B09_60m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B11_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B12_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B8A_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_SCL_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_WVP_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_TCI_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/DATASTRIP/DS_2APS_20250717T060716_S20250717T031154/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.0575906,44.1468602],[115.1011869,44.2782072],[115.1502472,44.4250039],[115.1989562,44.5720106],[115.2484172,44.7188577],[115.2981315,44.865624],[115.3479419,45.0123669],[115.3916184,45.1406223],[115.8525926,45.1480732],[115.8719187,44.1597966],[115.0575906,44.1468602]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:11:51.024000Z","platform":"Sentinel-2A","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TLQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T060716_A052582_T50TLQ_N05.11","eo:cloud_cover":72.285634,"s2:datatake_id":"GS2A_20250717T031151_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T060716_S20250717T031154_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T06:07:16.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.001972,"s2:mean_solar_zenith":27.5224023843446,"s2:mean_solar_azimuth":142.894627902949,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":5.61901,"s2:thin_cirrus_percentage":18.582772,"s2:cloud_shadow_percentage":1.436035,"s2:nodata_pixel_percentage":53.895164,"s2:unclassified_percentage":0.504762,"s2:not_vegetated_percentage":20.151974,"s2:degraded_msi_data_percentage":0.0243,"s2:high_proba_clouds_percentage":25.602505,"s2:reflectance_conversion_factor":0.96769091883615,"s2:medium_proba_clouds_percentage":28.100359,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716","bbox":[115.8880749,35.834919,115.9908287,36.1401671],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_AOT_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R60m/T50SME_20250717T031151_B01_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B02_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B03_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B04_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B05_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B06_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B07_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B08_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R60m/T50SME_20250717T031151_B09_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B11_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B12_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B8A_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_SCL_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_WVP_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_TCI_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/DATASTRIP/DS_2APS_20250717T060716_S20250717T031154/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.9908287,36.1401671],[115.9438729,35.9950224],[115.8965727,35.848305],[115.892273,35.834919],[115.8880749,36.1397366],[115.9908287,36.1401671]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:11:51.024000Z","platform":"Sentinel-2A","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SME","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T060716_A052582_T50SME_N05.11","eo:cloud_cover":47.183838,"s2:datatake_id":"GS2A_20250717T031151_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T060716_S20250717T031154_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T06:07:16.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.101275,"s2:mean_solar_zenith":19.8235202933671,"s2:mean_solar_azimuth":132.817782085647,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":43.840736,"s2:thin_cirrus_percentage":15.224913,"s2:cloud_shadow_percentage":0.102303,"s2:nodata_pixel_percentage":98.709226,"s2:unclassified_percentage":3.013829,"s2:not_vegetated_percentage":5.741826,"s2:degraded_msi_data_percentage":0.0021,"s2:high_proba_clouds_percentage":16.757917,"s2:reflectance_conversion_factor":0.96769091883615,"s2:medium_proba_clouds_percentage":15.201008,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712","bbox":[128.9996085,62.1408465,129.8006331,62.7419066],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R60m/T52VEQ_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R60m/T52VEQ_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9996085,62.7419066],[129.3348229,62.6719642],[129.3491627,62.6689494],[129.348033,62.6677051],[129.3528745,62.6666135],[129.352699,62.6664204],[129.4534519,62.6439367],[129.8006331,62.565659],[129.6739234,62.4289043],[129.5469863,62.2900438],[129.4212215,62.151078],[129.4120261,62.1408465],[128.9996163,62.1439815],[128.9996085,62.7419066]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VEQ_N05.11","eo:cloud_cover":0.000763,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.179538,"s2:mean_solar_zenith":41.555142486688,"s2:mean_solar_azimuth":174.585341968684,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.208325,"s2:thin_cirrus_percentage":0.000699,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":84.345657,"s2:unclassified_percentage":0.07844,"s2:not_vegetated_percentage":0.532063,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.000064,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712","bbox":[128.9996152,61.6772872,129.490866,62.2317701],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R60m/T52VEP_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R60m/T52VEP_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.490866,62.2280327],[129.4212215,62.151078],[129.2962974,62.0120782],[129.1720438,61.8729258],[129.0490893,61.7335802],[128.999622,61.6772872],[128.9996152,62.2317701],[129.490866,62.2280327]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEP","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VEP_N05.11","eo:cloud_cover":0.000152,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.205156,"s2:mean_solar_zenith":40.6603597363943,"s2:mean_solar_azimuth":174.526032947034,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":98.683,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":93.438905,"s2:unclassified_percentage":0.135321,"s2:not_vegetated_percentage":0.975464,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.000152,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712","bbox":[127.0165743,63.0279332,127.5170036,63.1171334],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R60m/T52VDR_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R60m/T52VDR_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0165743,63.1171334],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.5170036,63.0310476],[127.0228562,63.0279332],[127.0165743,63.1171334]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDR","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDR_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.089908,"s2:mean_solar_zenith":42.5550553789093,"s2:mean_solar_azimuth":171.901675873215,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.055481,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.977798,"s2:unclassified_percentage":0.072705,"s2:not_vegetated_percentage":0.779959,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712","bbox":[127.0168934,62.1306897,129.1908025,63.1157098],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R60m/T52VDQ_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R60m/T52VDQ_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0250686,63.1157098],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.5863074,63.0188193],[127.5853142,63.0176504],[127.5853219,63.017649],[127.5852843,63.0176048],[127.9988353,62.940722],[127.9988523,62.9407417],[127.998859,62.9407404],[127.9989099,62.9407993],[127.9990872,62.9407663],[127.9991731,62.940866],[128.0030855,62.9401388],[128.0032019,62.9402737],[128.0034798,62.9402222],[128.0040857,62.9409228],[128.4608686,62.8531384],[128.4657378,62.8521987],[128.4646482,62.8509597],[128.8780099,62.7661366],[128.8781506,62.766294],[128.8783839,62.7662462],[128.8784644,62.7663364],[128.8824752,62.765515],[128.8827621,62.7658365],[128.882924,62.7658034],[128.8829464,62.7658285],[128.8833939,62.7657373],[128.8837086,62.7660891],[129.1908025,62.702014],[129.1872239,62.143855],[127.0815883,62.1306897],[127.0168934,63.1156582],[127.0250686,63.1157098]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDQ_N05.11","eo:cloud_cover":5.201023,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.444513,"s2:mean_solar_zenith":41.660975876224,"s2:mean_solar_azimuth":171.880878712841,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":79.42512,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":6.495123,"s2:nodata_pixel_percentage":21.144556,"s2:unclassified_percentage":0.661313,"s2:not_vegetated_percentage":7.766136,"s2:degraded_msi_data_percentage":0.0187,"s2:high_proba_clouds_percentage":1.77157,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":3.429453,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712","bbox":[127.0760204,61.2345813,129.1877677,62.231643],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R60m/T52VDP_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R60m/T52VDP_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.3432582,61.2345813],[127.1337622,61.2777318],[127.0760204,62.2184291],[129.1877677,62.231643],[129.1857101,61.8882308],[129.1720438,61.8729258],[129.0490893,61.7335802],[128.9266298,61.5942232],[128.8056844,61.4546144],[128.6854216,61.3149099],[128.6232308,61.2425179],[127.3432582,61.2345813]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDP","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDP_N05.11","eo:cloud_cover":5.202496,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.858072,"s2:mean_solar_zenith":40.7667686010522,"s2:mean_solar_azimuth":171.854576639774,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":86.080956,"s2:thin_cirrus_percentage":0.000277,"s2:cloud_shadow_percentage":5.805069,"s2:nodata_pixel_percentage":9.062117,"s2:unclassified_percentage":0.581971,"s2:not_vegetated_percentage":1.446041,"s2:degraded_msi_data_percentage":0.0252,"s2:high_proba_clouds_percentage":1.739334,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":3.462885,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712","bbox":[127.1312482,61.0025097,128.6995513,61.3313238],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R60m/T52VDN_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R60m/T52VDN_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.4187135,61.0025097],[127.9690619,61.1041713],[127.9691274,61.1042502],[127.9686036,61.1043609],[127.9689712,61.1048051],[127.7134838,61.1582637],[127.5692104,61.1887463],[127.5690063,61.1884943],[127.5677994,61.1887468],[127.5676201,61.1885253],[127.5669824,61.1886589],[127.566871,61.1885231],[127.133769,61.2777304],[127.1312482,61.3215913],[128.6995513,61.3313238],[128.6854216,61.3149099],[128.5653652,61.1751607],[128.4464531,61.0352923],[128.4187135,61.0025097]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDN","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDN_N05.11","eo:cloud_cover":0.580258,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":12.036611,"s2:mean_solar_zenith":39.8729740524278,"s2:mean_solar_azimuth":171.822741890705,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.533697,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":1.129968,"s2:nodata_pixel_percentage":85.815692,"s2:unclassified_percentage":0.586644,"s2:not_vegetated_percentage":0.96022,"s2:degraded_msi_data_percentage":0.0198,"s2:high_proba_clouds_percentage":0.175081,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.405177,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712","bbox":[124.9899031,62.9866068,127.2172106,63.4248872],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R60m/T52VCR_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R60m/T52VCR_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.9899031,63.4248872],[125.2932314,63.3847438],[125.2932886,63.3848182],[125.2979312,63.3841971],[125.2981631,63.384498],[125.2989197,63.3843977],[125.2995225,63.3851818],[125.3895905,63.372172],[125.632161,63.3370397],[125.6340874,63.3367593],[125.7889128,63.314125],[125.7886802,63.3138295],[125.7887275,63.3138223],[125.7877109,63.3125302],[125.7877482,63.3125246],[125.7876699,63.3124252],[126.2195538,63.2478247],[126.2196728,63.2479728],[126.2197034,63.2479682],[126.2197423,63.2480168],[126.2246919,63.2472743],[126.2254384,63.2482054],[126.3050526,63.2354271],[126.3824637,63.2229757],[126.6983208,63.1720815],[126.6971974,63.1707085],[126.697223,63.1707043],[126.6971894,63.1706633],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.2137791,63.08455],[127.2172106,63.0305154],[125.0515033,62.9866068],[124.9899031,63.4248872]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCR","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCR_N05.11","eo:cloud_cover":8.21901,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.656129,"s2:mean_solar_zenith":42.6743589294175,"s2:mean_solar_azimuth":169.168645103758,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":82.176405,"s2:thin_cirrus_percentage":7.90844,"s2:cloud_shadow_percentage":0.498461,"s2:nodata_pixel_percentage":74.510235,"s2:unclassified_percentage":0.358015,"s2:not_vegetated_percentage":8.088169,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.049592,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.260978,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712","bbox":[125.0396236,62.0909077,127.2701768,63.1145955],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R60m/T52VCQ_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R60m/T52VCQ_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0317166,63.1145955],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.2138297,63.0845411],[127.2701768,62.1331753],[125.1685297,62.0909077],[125.0396236,63.0741757],[127.0317166,63.1145955]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCQ_N05.11","eo:cloud_cover":3.044319,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.262499,"s2:mean_solar_zenith":41.7812611954988,"s2:mean_solar_azimuth":169.186086335173,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":87.450129,"s2:thin_cirrus_percentage":0.000076,"s2:cloud_shadow_percentage":4.792491,"s2:nodata_pixel_percentage":0.1421,"s2:unclassified_percentage":0.395385,"s2:not_vegetated_percentage":4.05145,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.876345,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":2.167897,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712","bbox":[125.1574343,61.2394793,127.3194781,62.2209238],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R60m/T52VCP_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R60m/T52VCP_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.3194781,61.2394793],[127.1231788,61.2799116],[127.1232847,61.2800426],[127.1219084,61.2803084],[127.1220094,61.2804344],[127.1199989,61.2808238],[127.1202491,61.2811357],[126.7235626,61.3576592],[126.7234342,61.357496],[126.7230399,61.3575721],[126.7228081,61.3572812],[126.2803626,61.4399715],[126.2805356,61.4401926],[126.2800414,61.4402802],[126.28051,61.4408843],[125.8827905,61.5113669],[125.882757,61.511323],[125.8786748,61.5120461],[125.8781038,61.5113084],[125.6894189,61.5430415],[125.4306695,61.5865714],[125.4311657,61.5872339],[125.4264335,61.587998],[125.4268802,61.5885931],[125.2257255,61.6211511],[125.1574343,62.1785001],[127.2651556,62.2209238],[127.3194781,61.2394793]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCP","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCP_N05.11","eo:cloud_cover":0.378669,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.324839,"s2:mean_solar_zenith":40.8881029281013,"s2:mean_solar_azimuth":169.192930712771,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.305993,"s2:thin_cirrus_percentage":0.003307,"s2:cloud_shadow_percentage":0.609475,"s2:nodata_pixel_percentage":22.153567,"s2:unclassified_percentage":0.245625,"s2:not_vegetated_percentage":5.071058,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.08969,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.285671,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712","bbox":[126.9371671,61.2395079,127.3193394,61.3239944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R60m/T52VCN_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R60m/T52VCN_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.3193394,61.2395079],[127.1231788,61.2799116],[127.1232847,61.2800426],[127.1219084,61.2803084],[127.1220094,61.2804344],[127.1199989,61.2808238],[127.1202491,61.2811357],[126.9371671,61.3164534],[127.314961,61.3239944],[127.3193394,61.2395079]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCN","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCN_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.0,"s2:mean_solar_zenith":39.99542120153,"s2:mean_solar_azimuth":169.189539087694,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.996364,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.178582,"s2:unclassified_percentage":0.003635,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712","bbox":[124.9763539,62.9810794,127.1580834,63.4229999],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_AOT_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R60m/T51VXL_20250717T031031_B01_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B02_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B03_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B04_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B05_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B06_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B07_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B08_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R60m/T51VXL_20250717T031031_B09_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B11_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B12_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B8A_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_SCL_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_WVP_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_TCI_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.0041644,63.4229999],[125.2932314,63.3847438],[125.2932886,63.3848182],[125.2979312,63.3841971],[125.2981631,63.384498],[125.2989197,63.3843977],[125.2995225,63.3851818],[125.3895905,63.372172],[125.632161,63.3370397],[125.6340874,63.3367593],[125.7889128,63.314125],[125.7886802,63.3138295],[125.7887275,63.3138223],[125.7877109,63.3125302],[125.7877482,63.3125246],[125.7876699,63.3124252],[126.2195538,63.2478247],[126.2196728,63.2479728],[126.2197034,63.2479682],[126.2197423,63.2480168],[126.2246919,63.2472743],[126.2254384,63.2482054],[126.3050526,63.2354271],[126.3824637,63.2229757],[126.6983208,63.1720815],[126.6971974,63.1707085],[126.697223,63.1707043],[126.6971894,63.1706633],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.1580834,63.0943772],[127.141383,62.9810794],[124.9763539,63.0279443],[125.0041644,63.4229999]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXL","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VXL_N05.11","eo:cloud_cover":8.247952,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.686861,"s2:mean_solar_zenith":42.6678613842167,"s2:mean_solar_azimuth":169.206249487435,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":82.077497,"s2:thin_cirrus_percentage":7.931365,"s2:cloud_shadow_percentage":0.614416,"s2:nodata_pixel_percentage":73.752838,"s2:unclassified_percentage":0.342299,"s2:not_vegetated_percentage":8.025804,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.05055,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.266037,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712","bbox":[124.9176451,62.0855865,127.1538391,63.1156693],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_AOT_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R60m/T51VXK_20250717T031031_B01_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B02_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B03_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B04_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B05_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B06_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B07_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B08_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R60m/T51VXK_20250717T031031_B09_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B11_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B12_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B8A_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_SCL_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_WVP_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_TCI_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.9823142,63.1156693],[127.1538391,63.0686274],[127.0186771,62.0855865],[124.9176451,62.1307003],[124.9823142,63.1156693]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXK","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VXK_N05.11","eo:cloud_cover":2.430609,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.282683,"s2:mean_solar_zenith":41.7905952014376,"s2:mean_solar_azimuth":168.972251447119,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":88.523567,"s2:thin_cirrus_percentage":0.00207,"s2:cloud_shadow_percentage":3.906056,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.334412,"s2:not_vegetated_percentage":4.519023,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.6896,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":1.738939,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712","bbox":[124.8897369,61.3196438,127.0303111,62.2184397],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_AOT_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R60m/T51VXJ_20250717T031031_B01_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B02_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B03_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B04_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B05_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B06_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B07_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B08_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R60m/T51VXJ_20250717T031031_B09_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B11_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B12_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B8A_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_SCL_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_WVP_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_TCI_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.9206288,61.3196438],[126.7235626,61.3576592],[126.7234342,61.357496],[126.7230399,61.3575721],[126.7228081,61.3572812],[126.2803626,61.4399715],[126.2805356,61.4401926],[126.2800414,61.4402802],[126.28051,61.4408843],[125.8827905,61.5113669],[125.882757,61.511323],[125.8786748,61.5120461],[125.8781038,61.5113084],[125.6894189,61.5430415],[125.4306695,61.5865714],[125.4311657,61.5872339],[125.4264335,61.587998],[125.4268802,61.5885931],[125.0213233,61.6542347],[125.0206154,61.6532697],[125.0205831,61.6532264],[124.8897369,61.6728839],[124.9232108,62.2184397],[127.0303111,62.1731593],[126.9206288,61.3196438]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXJ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VXJ_N05.11","eo:cloud_cover":0.09484,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.390283,"s2:mean_solar_zenith":40.9134462760282,"s2:mean_solar_azimuth":168.736071092909,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.095291,"s2:thin_cirrus_percentage":0.002062,"s2:cloud_shadow_percentage":0.189878,"s2:nodata_pixel_percentage":29.218137,"s2:unclassified_percentage":0.256012,"s2:not_vegetated_percentage":5.894198,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.020653,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.072125,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712","bbox":[123.9805079,63.0251146,125.1982436,63.512869],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R60m/T51VWL_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R60m/T51VWL_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.9805079,63.0342255],[124.0175404,63.085966],[124.1204767,63.2286379],[124.224467,63.3711768],[124.32843,63.512869],[124.5210703,63.4881189],[124.6346038,63.4734666],[124.8427827,63.4461241],[124.8426612,63.4459627],[124.843131,63.4458996],[124.8420428,63.4444555],[125.1982436,63.3973148],[125.1694829,63.0251146],[123.9805079,63.0342255]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWL","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VWL_N05.11","eo:cloud_cover":1.018668,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":2.220357,"s2:mean_solar_zenith":42.8838893759669,"s2:mean_solar_azimuth":166.489936893053,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":72.827864,"s2:thin_cirrus_percentage":0.982256,"s2:cloud_shadow_percentage":0.032739,"s2:nodata_pixel_percentage":79.224998,"s2:unclassified_percentage":0.36414,"s2:not_vegetated_percentage":23.532301,"s2:degraded_msi_data_percentage":0.0254,"s2:high_proba_clouds_percentage":0.00452,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.031893,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712","bbox":[123.354832,62.1279766,125.1760247,63.1215163],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R60m/T51VWK_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R60m/T51VWK_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.354832,62.1412813],[123.4144574,62.228337],[123.5131015,62.3715201],[123.6127497,62.51456],[123.7130394,62.6574937],[123.8139747,62.8003313],[123.9153436,62.9431804],[124.0175404,63.085966],[124.0431896,63.1215163],[125.1760247,63.1128289],[125.1050472,62.1279766],[123.354832,62.1412813]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWK","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VWK_N05.11","eo:cloud_cover":7.135528,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.506344,"s2:mean_solar_zenith":42.0087072062846,"s2:mean_solar_azimuth":166.295937583059,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.679336,"s2:thin_cirrus_percentage":5.686684,"s2:cloud_shadow_percentage":2.243425,"s2:nodata_pixel_percentage":32.554737,"s2:unclassified_percentage":0.489599,"s2:not_vegetated_percentage":5.940771,"s2:degraded_msi_data_percentage":0.0169,"s2:high_proba_clouds_percentage":0.370124,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":1.07872,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712","bbox":[123.1985668,61.6459062,125.1111559,62.2286126],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R60m/T51VWJ_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R60m/T51VWJ_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.0727792,61.6459062],[125.0213233,61.6542347],[125.0206154,61.6532697],[125.0205831,61.6532264],[124.5618784,61.7221392],[124.5626009,61.7231425],[124.5564762,61.7240349],[124.5565079,61.7240783],[124.5563956,61.7240948],[124.5565044,61.7242461],[124.1371289,61.7858646],[124.1365717,61.7850755],[123.6592948,61.8481846],[123.660187,61.8494696],[123.3815512,61.8856612],[123.1985668,61.909715],[123.2200843,61.9419286],[123.3164139,62.0851892],[123.4144574,62.228337],[123.4146472,62.2286126],[125.1111559,62.2157059],[125.0727792,61.6459062]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWJ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VWJ_N05.11","eo:cloud_cover":17.276834,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.309421,"s2:mean_solar_zenith":41.1337724557747,"s2:mean_solar_azimuth":166.094856835182,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":78.719282,"s2:thin_cirrus_percentage":15.268284,"s2:cloud_shadow_percentage":1.109277,"s2:nodata_pixel_percentage":60.790163,"s2:unclassified_percentage":0.225751,"s2:not_vegetated_percentage":2.317589,"s2:degraded_msi_data_percentage":0.0102,"s2:high_proba_clouds_percentage":0.228628,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":1.779921,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500","bbox":[158.999207,76.4849983,160.3514349,76.9244244],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R60m/T57XWF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R60m/T57XWF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[158.999207,76.9244244],[159.0277214,76.9172337],[159.0284819,76.9173979],[159.0286906,76.9173453],[159.0290513,76.9174232],[159.0291725,76.9173927],[159.0304404,76.9176667],[159.0305714,76.9176338],[159.0316672,76.9178705],[159.0319787,76.9177922],[159.0327171,76.9179518],[159.032787,76.9179342],[159.0333799,76.9180625],[159.0336093,76.9180049],[159.034998,76.9183053],[159.0353471,76.9182178],[159.0360053,76.9183601],[159.036266,76.9182948],[159.0372549,76.9185087],[159.2809197,76.8551048],[159.7206787,76.7400003],[159.7134913,76.7384641],[160.3514349,76.5588516],[160.0037225,76.4849983],[158.9992329,76.493385],[158.999207,76.9244244]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XWF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XWF_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.998295,"s2:mean_solar_zenith":57.0125193903975,"s2:mean_solar_azimuth":206.318532794304,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001708,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":92.03369,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.019,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500","bbox":[158.999228,76.2654779,160.3514349,76.5810287],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R60m/T57XWE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R60m/T57XWE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[160.3115986,76.5700674],[160.3514349,76.5588516],[159.8829236,76.4593409],[159.4120142,76.3571229],[158.9992446,76.2654779],[158.999228,76.5810287],[160.3115986,76.5700674]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XWE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XWE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":100.0,"s2:mean_solar_zenith":56.2005204288736,"s2:mean_solar_azimuth":206.477256331399,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":94.691265,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500","bbox":[154.729453,77.3578558,157.1147583,77.8563411],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R60m/T57XVG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R60m/T57XVG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[154.729453,77.8563411],[154.8202751,77.8399709],[154.8207919,77.8400908],[154.8208739,77.8400761],[154.8230835,77.8405892],[154.8243286,77.8403644],[154.8293017,77.8415197],[155.2337823,77.7636555],[155.6282619,77.6875444],[155.6194528,77.6855303],[156.3071352,77.5465017],[156.3073866,77.5465585],[156.307522,77.5465311],[156.3087991,77.5468196],[156.309347,77.5467088],[156.3159533,77.5482018],[157.0648,77.3881022],[157.0565254,77.3862579],[157.1147583,77.3731023],[154.9021672,77.3578558],[154.729453,77.8563411]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVG_N05.11","eo:cloud_cover":0.341631,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.655706,"s2:mean_solar_zenith":57.4702757300568,"s2:mean_solar_azimuth":201.548329525018,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.00266,"s2:thin_cirrus_percentage":0.027108,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":87.528163,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0006,"s2:high_proba_clouds_percentage":0.005161,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.309362,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500","bbox":[154.8738859,76.4642293,159.3841769,77.4586326],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R60m/T57XVF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R60m/T57XVF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.7349029,77.4586326],[157.0648,77.3881022],[157.0565254,77.3862579],[157.7022397,77.2403818],[157.702601,77.2404615],[157.7027581,77.240426],[157.7047207,77.2408589],[157.7054919,77.2406847],[157.7066273,77.2409352],[157.7066411,77.2409321],[157.7066482,77.2409337],[157.7069247,77.2408713],[157.7113152,77.2418411],[157.751275,77.2323977],[158.3681624,77.0864368],[158.4215766,77.0737874],[158.4137157,77.0720741],[159.0277214,76.9172337],[159.0284819,76.9173979],[159.0286906,76.9173453],[159.0290513,76.9174232],[159.0291725,76.9173927],[159.0304404,76.9176667],[159.0305714,76.9176338],[159.0316672,76.9178705],[159.0319787,76.9177922],[159.0327171,76.9179518],[159.032787,76.9179342],[159.0333799,76.9180625],[159.0336093,76.9180049],[159.034998,76.9183053],[159.0353471,76.9182178],[159.0360053,76.9183601],[159.036266,76.9182948],[159.0372549,76.9185087],[159.2809197,76.8551048],[159.3841769,76.8280778],[159.3743463,76.4931072],[155.1684626,76.4642293],[154.8738859,77.4458044],[156.7349029,77.4586326]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVF_N05.11","eo:cloud_cover":0.183424,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.799508,"s2:mean_solar_zenith":56.6528706201607,"s2:mean_solar_azimuth":201.956721906669,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000284,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.012645,"s2:nodata_pixel_percentage":19.528614,"s2:unclassified_percentage":0.000025,"s2:not_vegetated_percentage":0.003999,"s2:degraded_msi_data_percentage":0.0129,"s2:high_proba_clouds_percentage":0.050012,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.133412,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500","bbox":[155.1439841,75.5697411,159.376745,76.580749],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R60m/T57XVE_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R60m/T57XVE_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[159.3707743,76.3479666],[158.9476216,76.2540163],[158.4897237,76.1501067],[158.0387006,76.0453667],[157.5940915,75.9398774],[157.1558349,75.8336193],[156.7242541,75.7265717],[156.2992958,75.618772],[156.1292961,75.5747183],[155.4016102,75.5697411],[155.1439841,76.5516761],[159.376745,76.580749],[159.3707743,76.3479666]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.999988,"s2:mean_solar_zenith":55.8369908790616,"s2:mean_solar_azimuth":202.358804292345,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":5e-6,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":31.199139,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":5e-6,"s2:degraded_msi_data_percentage":0.0254,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500","bbox":[155.3801086,75.3937971,156.4805352,75.6647472],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R60m/T57XVD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R60m/T57XVD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.4805352,75.6647472],[156.2992958,75.618772],[155.8804421,75.5102304],[155.4676367,75.400987],[155.4410269,75.3937971],[155.3801086,75.6572177],[156.4805352,75.6647472]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVD_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":100.0,"s2:mean_solar_zenith":55.0232203762536,"s2:mean_solar_azimuth":202.757833932918,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":96.295464,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500","bbox":[152.999126,77.3539538,157.1995181,78.1584369],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R60m/T56XNM_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R60m/T56XNM_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[152.999126,78.1584369],[153.2137934,78.1240967],[153.2164319,78.1247293],[153.2181228,78.1244585],[153.2226392,78.1255419],[153.6076847,78.0591084],[154.0880985,77.9760879],[154.0781257,77.9737392],[154.8202751,77.8399709],[154.8207919,77.8400908],[154.8208739,77.8400761],[154.8230835,77.8405892],[154.8243286,77.8403644],[154.8293017,77.8415197],[155.2337823,77.7636555],[155.6282619,77.6875444],[155.6194528,77.6855303],[156.3071352,77.5465017],[156.3073866,77.5465585],[156.307522,77.5465311],[156.3087991,77.5468196],[156.309347,77.5467088],[156.3159533,77.5482018],[157.0648,77.3881022],[157.0565254,77.3862579],[157.1995181,77.3539538],[152.9991794,77.3891507],[152.999126,78.1584369]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNM_N05.11","eo:cloud_cover":5.330747,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":94.668388,"s2:mean_solar_zenith":57.340280258578,"s2:mean_solar_azimuth":199.653776562899,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000865,"s2:thin_cirrus_percentage":2.421382,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":62.79549,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0251,"s2:high_proba_clouds_percentage":0.541456,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.36791,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500","bbox":[152.999228,75.571101,157.2301741,76.5810287],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R60m/T56XNK_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R60m/T56XNK_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[157.0152107,75.7987394],[156.7242541,75.7265717],[156.2992958,75.618772],[156.1153371,75.571101],[152.9992797,75.5970173],[152.999228,76.5810287],[157.2301741,76.5456907],[157.0152107,75.7987394]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNK_N05.11","eo:cloud_cover":33.50164,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":66.49825,"s2:mean_solar_zenith":55.6396491325,"s2:mean_solar_azimuth":199.832394104259,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000014,"s2:thin_cirrus_percentage":0.030269,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":2.534195,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000092,"s2:degraded_msi_data_percentage":0.0223,"s2:high_proba_clouds_percentage":24.216855,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.254517,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500","bbox":[152.9992754,74.7005381,156.4460123,75.6846675],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R60m/T56XNJ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R60m/T56XNJ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.4460123,75.6559898],[156.2992958,75.618772],[155.8804421,75.5102304],[155.4676367,75.400987],[155.0607457,75.2910453],[155.0597053,75.2907587],[155.0571479,75.2900682],[154.8086754,75.2215872],[154.6595007,75.180482],[154.6578474,75.1800178],[154.6559695,75.1795002],[154.637369,75.1742679],[154.2635992,75.0693229],[153.8728205,74.9574878],[153.4876079,74.8449646],[153.1077556,74.7318693],[153.0045456,74.7005381],[152.999321,74.7005814],[152.9992754,75.6846675],[156.4460123,75.6559898]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNJ_N05.11","eo:cloud_cover":70.339298,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":29.659665,"s2:mean_solar_zenith":54.7911516161212,"s2:mean_solar_azimuth":199.962093717898,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.127737,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":56.646645,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.001041,"s2:degraded_msi_data_percentage":0.0227,"s2:high_proba_clouds_percentage":60.172588,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.038975,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500","bbox":[152.9993171,74.698952,153.2907765,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R60m/T56XNH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R60m/T56XNH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.2907765,74.786361],[153.1077556,74.7318693],[152.9993208,74.698952],[152.9993171,74.7887762],[153.2907765,74.786361]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNH_N05.11","eo:cloud_cover":91.559899,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":8.429157,"s2:mean_solar_zenith":53.9446261366776,"s2:mean_solar_azimuth":200.114987193235,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.109418,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.666452,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.010942,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":68.745273,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":22.705208,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500","bbox":[150.9180636,78.2677006,152.2768507,78.4028043],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R60m/T56XMN_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R60m/T56XMN_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.9180636,78.2677006],[150.9973416,78.2879305],[151.4584651,78.4028043],[152.0501679,78.3119796],[152.2768507,78.2770951],[150.9180636,78.2677006]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMN_N05.11","eo:cloud_cover":98.9811,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.018898,"s2:mean_solar_zenith":57.9347833437519,"s2:mean_solar_azimuth":194.608044592398,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.390734,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":52.855265,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":46.125838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500","bbox":[148.785543,77.3578558,153.4242399,78.3609268],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R60m/T56XMM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R60m/T56XMM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.785543,77.694455],[148.7915312,77.6961872],[149.2156941,77.8158741],[149.6482867,77.9348992],[150.0892084,78.0532582],[150.5388616,78.1709369],[150.9973416,78.2879305],[151.2777707,78.3577902],[151.7312878,78.3609268],[152.0501679,78.3119796],[152.4104764,78.2565313],[152.4077242,78.2558588],[152.4080935,78.2557991],[152.4073844,78.2556261],[152.4076782,78.2555787],[152.4070375,78.2554222],[152.4070648,78.2554178],[152.4060861,78.2551787],[152.4060873,78.2551785],[152.4018478,78.2541446],[152.4019927,78.2541215],[152.4015927,78.2540239],[153.2137934,78.1240967],[153.2164319,78.1247293],[153.2181228,78.1244585],[153.2226392,78.1255419],[153.4242399,78.0907589],[153.4004489,77.3888525],[148.9021672,77.3578558],[148.785543,77.694455]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMM_N05.11","eo:cloud_cover":53.933001,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":46.066993,"s2:mean_solar_zenith":57.0791530126844,"s2:mean_solar_azimuth":194.974581699899,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":4e-6,"s2:thin_cirrus_percentage":0.964429,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":23.851644,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0112,"s2:high_proba_clouds_percentage":37.277386,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.691185,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500","bbox":[148.8738859,76.4642293,153.4032221,77.4770256],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R60m/T56XML_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R60m/T56XML_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.8738859,77.4458044],[153.4032221,77.4770256],[153.3743463,76.4931072],[149.1684626,76.4642293],[148.8738859,77.4458044]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XML","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XML_N05.11","eo:cloud_cover":53.365338,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":16.842276,"s2:mean_solar_zenith":56.2252079251133,"s2:mean_solar_azimuth":195.327958642391,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":29.711074,"s2:vegetation_percentage":0.00001,"s2:thin_cirrus_percentage":8.906405,"s2:cloud_shadow_percentage":0.073955,"s2:nodata_pixel_percentage":0.000017,"s2:unclassified_percentage":0.000524,"s2:not_vegetated_percentage":0.004741,"s2:degraded_msi_data_percentage":0.0244,"s2:high_proba_clouds_percentage":17.852481,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":26.606452,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500","bbox":[149.1439841,75.5697411,153.376745,76.580749],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R60m/T56XMK_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R60m/T56XMK_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.1439841,76.5516761],[153.376745,76.580749],[153.3515061,75.5967575],[149.4016102,75.5697411],[149.1439841,76.5516761]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMK_N05.11","eo:cloud_cover":45.38013,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":52.364403,"s2:mean_solar_zenith":55.3719755202348,"s2:mean_solar_azimuth":195.673002025668,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":1.971009,"s2:vegetation_percentage":0.000159,"s2:thin_cirrus_percentage":5.233015,"s2:cloud_shadow_percentage":0.283665,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.00003,"s2:not_vegetated_percentage":0.000601,"s2:degraded_msi_data_percentage":0.0026,"s2:high_proba_clouds_percentage":21.191287,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.95583,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500","bbox":[149.3801086,74.6749694,153.353612,75.684406],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R60m/T56XMJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R60m/T56XMJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.3336017,74.7991116],[153.1077556,74.7318693],[152.9963672,74.6980554],[149.6072622,74.6749694],[149.3801086,75.6572177],[153.353612,75.684406],[153.3336017,74.7991116]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMJ_N05.11","eo:cloud_cover":85.592216,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":13.543333,"s2:mean_solar_zenith":54.5200220153859,"s2:mean_solar_azimuth":196.01289650902,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.145424,"s2:vegetation_percentage":0.000017,"s2:thin_cirrus_percentage":1.460761,"s2:cloud_shadow_percentage":0.7084,"s2:nodata_pixel_percentage":0.474215,"s2:unclassified_percentage":0.005104,"s2:not_vegetated_percentage":0.005507,"s2:degraded_msi_data_percentage":0.0183,"s2:high_proba_clouds_percentage":67.295456,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":16.835994,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500","bbox":[149.5881136,73.7804829,153.2972396,74.7882853],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R60m/T56XMH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R60m/T56XMH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.2972396,74.7882853],[153.1077556,74.7318693],[152.733329,74.6182055],[152.364361,74.5038966],[152.0006473,74.3890213],[151.6423724,74.2735787],[151.2890793,74.1575707],[150.9406558,74.0410123],[150.5970299,73.923947],[150.2579129,73.8063941],[150.1921903,73.7832117],[149.7898569,73.7804829],[149.5881136,74.763009],[153.2972396,74.7882853]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMH_N05.11","eo:cloud_cover":99.362773,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.636787,"s2:mean_solar_zenith":53.6699179512728,"s2:mean_solar_azimuth":196.350226583669,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000036,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.212714,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":44.940388,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000404,"s2:degraded_msi_data_percentage":0.0241,"s2:high_proba_clouds_percentage":93.303627,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":5.846434,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500","bbox":[149.7728973,73.6488294,150.448892,73.8725959],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R60m/T56XMG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R60m/T56XMG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.448892,73.8725959],[150.2579129,73.8063941],[149.9231974,73.6883294],[149.81311,73.6488294],[149.7728973,73.8680091],[150.448892,73.8725959]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMG_N05.11","eo:cloud_cover":99.953437,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.046564,"s2:mean_solar_zenith":52.8207046054607,"s2:mean_solar_azimuth":196.687646798262,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":97.905159,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":98.446125,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.507312,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500","bbox":[150.8601802,78.2447576,151.8739788,78.4028043],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R60m/T55XEH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R60m/T55XEH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.8601802,78.2529301],[150.9973416,78.2879305],[151.4584651,78.4028043],[151.8739788,78.3390241],[151.8321726,78.2447576],[150.8601802,78.2529301]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEH_N05.11","eo:cloud_cover":98.501015,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.498985,"s2:mean_solar_zenith":57.8666844216934,"s2:mean_solar_azimuth":193.082431081795,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.070586,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":45.901051,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":52.599967,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500","bbox":[147.7295877,77.3514755,151.8679037,78.3377171],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R60m/T55XEG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R60m/T55XEG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.7295877,77.3830302],[147.9673017,77.455002],[148.3756143,77.5758752],[148.7915312,77.6961872],[149.2156941,77.8158741],[149.6482867,77.9348992],[150.0892084,78.0532582],[150.5388616,78.1709369],[150.9973416,78.2879305],[151.1971937,78.3377171],[151.8679037,78.332076],[151.4952763,77.3514755],[147.7295877,77.3830302]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEG_N05.11","eo:cloud_cover":77.95974,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":22.04026,"s2:mean_solar_zenith":56.9884929302579,"s2:mean_solar_azimuth":193.066565610651,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.72874,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":51.733977,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0006,"s2:high_proba_clouds_percentage":60.839087,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":16.391915,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500","bbox":[146.999193,76.458284,151.5262788,77.4688195],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R60m/T55XEF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R60m/T55XEF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.999193,77.1566382],[147.1725997,77.2116075],[147.5662727,77.333584],[147.9673017,77.455002],[148.0139776,77.4688195],[151.5262788,77.4393779],[151.2033368,76.458284],[146.9992329,76.493385],[146.999193,77.1566382]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEF_N05.11","eo:cloud_cover":82.031554,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":10.689694,"s2:mean_solar_zenith":56.1114584570531,"s2:mean_solar_azimuth":193.082010454725,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":7.173916,"s2:vegetation_percentage":0.000031,"s2:thin_cirrus_percentage":4.543883,"s2:cloud_shadow_percentage":0.097317,"s2:nodata_pixel_percentage":3.864735,"s2:unclassified_percentage":0.000538,"s2:not_vegetated_percentage":0.00556,"s2:degraded_msi_data_percentage":0.0197,"s2:high_proba_clouds_percentage":52.378035,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.109643,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500","bbox":[146.999228,75.5641782,151.2301741,76.5810287],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R60m/T55XEE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R60m/T55XEE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.999228,76.5810287],[151.2301741,76.5456907],[150.9477068,75.5641782],[146.9992797,75.5970173],[146.999228,76.5810287]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEE_N05.11","eo:cloud_cover":53.384507,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":46.615151,"s2:mean_solar_zenith":55.2345549596294,"s2:mean_solar_azimuth":193.124143423144,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000093,"s2:thin_cirrus_percentage":4.994157,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000249,"s2:degraded_msi_data_percentage":0.0196,"s2:high_proba_clouds_percentage":39.077944,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.312408,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500","bbox":[146.9992754,74.6697452,150.9712829,75.6846675],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R60m/T55XED_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R60m/T55XED_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.9992754,75.6846675],[150.9712829,75.6516194],[150.7222017,74.6697452],[146.999321,74.7005814],[146.9992754,75.6846675]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XED","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XED_N05.11","eo:cloud_cover":77.311695,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":12.304876,"s2:mean_solar_zenith":54.3583376728985,"s2:mean_solar_azimuth":193.18952409454,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":2.859898,"s2:vegetation_percentage":0.440835,"s2:thin_cirrus_percentage":2.720784,"s2:cloud_shadow_percentage":1.480692,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":3.236721,"s2:not_vegetated_percentage":2.365284,"s2:degraded_msi_data_percentage":0.0013,"s2:high_proba_clouds_percentage":59.503609,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.087296,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500","bbox":[146.9993171,73.7783931,150.7431996,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R60m/T55XEC_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R60m/T55XEC_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.55186,73.9082891],[150.2579129,73.8063941],[150.1785294,73.7783931],[146.9993576,73.8046111],[146.9993171,74.7887762],[150.7431996,74.7577532],[150.55186,73.9082891]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEC_N05.11","eo:cloud_cover":68.469048,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":7.635746,"s2:mean_solar_zenith":53.4833641272104,"s2:mean_solar_azimuth":193.275554588597,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":23.895152,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":1.61995,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.685422,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.00006,"s2:degraded_msi_data_percentage":0.0197,"s2:high_proba_clouds_percentage":52.331609,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.517485,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951","bbox":[146.9993572,72.901175,149.0036291,73.8089506],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R60m/T55XEB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R60m/T55XEB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.9993572,73.8089506],[147.1427832,73.7794979],[147.1388486,73.7779517],[147.7229513,73.6506409],[147.7233951,73.650813],[147.7235094,73.6507881],[147.7236932,73.6508593],[147.7240475,73.6507822],[147.7243296,73.6508916],[147.7243504,73.6508871],[147.7247691,73.6510496],[147.7248505,73.6510319],[147.7255062,73.6512862],[147.7257039,73.6512433],[147.7261293,73.6514081],[147.7263864,73.6513524],[147.7267364,73.6514879],[147.7270351,73.6514232],[147.727791,73.651716],[147.7280459,73.6516608],[147.7281685,73.6517083],[148.1005415,73.5684062],[148.3843142,73.504544],[148.3808209,73.5032084],[149.0036291,73.3532031],[148.6905197,73.2352856],[148.3769724,73.1148966],[148.0677956,72.9940723],[147.8341147,72.901175],[146.9993903,72.9080271],[146.9993572,73.8089506]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XEB_N05.11","eo:cloud_cover":2.939822,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":97.059447,"s2:mean_solar_zenith":52.6086159254848,"s2:mean_solar_azimuth":193.380384898633,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000733,"s2:thin_cirrus_percentage":2.770614,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":67.427117,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0269,"s2:high_proba_clouds_percentage":0.010828,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.15838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500","bbox":[146.9993542,73.2165381,150.4241503,73.8922753],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R60m/T55XEB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R60m/T55XEB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.9964017,73.3707326],[148.0002195,73.3721947],[147.7680023,73.4239233],[147.412226,73.503572],[147.4092088,73.5024014],[147.0642351,73.5769222],[146.9993652,73.5909837],[146.9993542,73.8922753],[150.4241503,73.8640193],[150.2579129,73.8063941],[149.9231974,73.6883294],[149.5927626,73.5697675],[149.2665598,73.4507085],[148.9449355,73.3311567],[148.6417125,73.2165381],[148.2633675,73.3068357],[147.9964017,73.3707326]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEB_N05.11","eo:cloud_cover":30.561236,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":69.43807,"s2:mean_solar_zenith":52.6086159254848,"s2:mean_solar_azimuth":193.380384898633,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":8.89519,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":59.988683,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000697,"s2:degraded_msi_data_percentage":0.0254,"s2:high_proba_clouds_percentage":16.320927,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":5.34512,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951","bbox":[146.9993873,72.5599198,148.0501794,72.9956989],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R60m/T55XEA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R60m/T55XEA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.0501794,72.9870692],[147.7628731,72.8728537],[147.4620504,72.751222],[147.1650834,72.6291719],[146.9994017,72.5599198],[146.9993873,72.9956989],[148.0501794,72.9870692]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XEA_N05.11","eo:cloud_cover":12.590303,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":74.539685,"s2:mean_solar_zenith":51.7346580706931,"s2:mean_solar_azimuth":193.502587708943,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":12.870012,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":11.001419,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":93.117845,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.228802,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.360082,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500","bbox":[144.9727037,76.4766174,147.3974775,77.2812842],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R60m/T55XDF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R60m/T55XDF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[144.9727037,76.4766174],[145.3052262,76.5938859],[145.6660787,76.7184031],[146.0332306,76.8424469],[146.4064577,76.966006],[146.7860659,77.0890777],[147.1725997,77.2116075],[147.3974775,77.2812842],[147.3743463,76.4931072],[144.9727037,76.4766174]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDF_N05.11","eo:cloud_cover":97.803628,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.196238,"s2:mean_solar_zenith":55.9469383487191,"s2:mean_solar_azimuth":188.652071215512,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.00006,"s2:thin_cirrus_percentage":0.096082,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":77.772284,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000075,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":91.611886,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.09566,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500","bbox":[143.3258015,75.5697411,147.376745,76.580749],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R60m/T55XDE_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R60m/T55XDE_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.3258015,75.8586838],[143.5955298,75.9644114],[143.9254381,76.0911774],[144.2610233,76.2175534],[144.6027971,76.3434738],[144.9508318,76.4689039],[145.2260891,76.5659771],[147.376745,76.580749],[147.3515061,75.5967575],[143.4016102,75.5697411],[143.3258015,75.8586838]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDE_N05.11","eo:cloud_cover":90.807956,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.909883,"s2:mean_solar_zenith":55.0674685642311,"s2:mean_solar_azimuth":188.93362573964,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.239319,"s2:vegetation_percentage":1.220182,"s2:thin_cirrus_percentage":0.605449,"s2:cloud_shadow_percentage":0.091088,"s2:nodata_pixel_percentage":17.870143,"s2:unclassified_percentage":0.886826,"s2:not_vegetated_percentage":3.844749,"s2:degraded_msi_data_percentage":0.0112,"s2:high_proba_clouds_percentage":81.95383,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.248676,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500","bbox":[143.3801086,74.6749694,147.353612,75.684406],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R60m/T55XDD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R60m/T55XDD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.3801086,75.6572177],[147.353612,75.684406],[147.3313691,74.7003374],[143.6072622,74.6749694],[143.3801086,75.6572177]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDD_N05.11","eo:cloud_cover":58.769011,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":6.432378,"s2:mean_solar_zenith":54.188595245275,"s2:mean_solar_azimuth":189.20742134287,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":18.296257,"s2:vegetation_percentage":4.808707,"s2:thin_cirrus_percentage":15.144363,"s2:cloud_shadow_percentage":0.7723,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.309027,"s2:not_vegetated_percentage":9.612324,"s2:degraded_msi_data_percentage":0.0249,"s2:high_proba_clouds_percentage":32.176167,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.448479,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951","bbox":[143.6576412,73.7804829,147.0309408,74.4243973],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R60m/T55XDC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R60m/T55XDC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.6576412,74.4243973],[143.8425029,74.3949498],[143.8427858,74.3950704],[143.8428508,74.3950601],[143.8432757,74.3952413],[143.8433346,74.3952319],[143.8442535,74.3956238],[143.8455124,74.3954229],[143.8477618,74.3963821],[143.8611116,74.3941139],[144.564333,74.2744318],[144.5600383,74.2726344],[145.1837304,74.1618627],[145.183849,74.1619116],[145.1839586,74.1618921],[145.1842111,74.1619961],[145.1843403,74.1619731],[145.1848576,74.1621862],[145.1854279,74.1620849],[145.18592,74.1622875],[145.1861034,74.1622549],[145.1886967,74.163322],[145.8756247,74.034811],[145.8715136,74.0331463],[146.4711492,73.9150241],[146.4713366,73.9150989],[146.4714534,73.9150759],[146.4717724,73.9152032],[146.4720054,73.9151573],[146.4729092,73.9155181],[146.4735859,73.9153848],[146.4740415,73.9155666],[146.4745134,73.9154737],[146.4762838,73.9161797],[146.7211208,73.8660542],[146.8460013,73.8404424],[147.0309408,73.8024649],[143.7898569,73.7804829],[143.6576412,74.4243973]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XDC_N05.11","eo:cloud_cover":8.149624,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":91.848963,"s2:mean_solar_zenith":53.3108710887811,"s2:mean_solar_azimuth":189.475936283652,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001413,"s2:thin_cirrus_percentage":8.13981,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":69.469947,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.002,"s2:high_proba_clouds_percentage":0.001554,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.008259,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500","bbox":[143.5881136,73.795527,147.3332438,74.7885307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R60m/T55XDC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R60m/T55XDC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.0080057,73.795527],[145.9698994,73.8030006],[145.4871549,73.8978162],[145.4905777,73.8992053],[145.4899398,73.8993243],[145.49035,73.8994909],[145.4900864,73.89954],[145.4905524,73.8997292],[144.8815565,74.0132759],[144.8811576,74.0131115],[144.880944,74.0131514],[144.8801573,74.012827],[144.8800192,74.0128527],[144.8767525,74.0115065],[144.1773071,74.1355529],[144.1811868,74.1371806],[144.1796693,74.1374379],[144.1809535,74.1379769],[143.6996537,74.2197888],[143.5881136,74.763009],[147.3332438,74.7885307],[147.313497,73.8043812],[146.0080057,73.795527]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDC_N05.11","eo:cloud_cover":28.899541,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":71.100444,"s2:mean_solar_zenith":53.3108710887811,"s2:mean_solar_azimuth":189.475936283652,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000015,"s2:thin_cirrus_percentage":13.928008,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":13.920067,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0067,"s2:high_proba_clouds_percentage":8.524251,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.447282,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951","bbox":[143.7728973,72.8852322,147.3124334,73.887309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R60m/T55XDB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R60m/T55XDB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.617302,73.887309],[146.7211208,73.8660542],[146.8460013,73.8404424],[147.1427832,73.7794979],[147.1388486,73.7779517],[147.3124334,73.7401172],[147.297514,72.90781],[143.9532063,72.8852322],[143.7728973,73.8680091],[146.617302,73.887309]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XDB_N05.11","eo:cloud_cover":1.884676,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":98.115051,"s2:mean_solar_zenith":52.4332724762266,"s2:mean_solar_azimuth":189.741694550662,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000273,"s2:thin_cirrus_percentage":1.371634,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":1.536909,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0111,"s2:high_proba_clouds_percentage":0.180282,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.332761,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500","bbox":[145.5766032,73.524143,147.3151567,73.8920442],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R60m/T55XDB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R60m/T55XDB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.308562,73.524143],[147.0642351,73.5769222],[146.7539348,73.6441841],[146.757624,73.6456368],[146.1872056,73.761992],[146.1629589,73.7669515],[146.1599113,73.7657346],[145.9698994,73.8030006],[145.5766032,73.8802477],[147.3151567,73.8920442],[147.308562,73.524143]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDB_N05.11","eo:cloud_cover":8.546601,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":91.453397,"s2:mean_solar_zenith":52.4332724762266,"s2:mean_solar_azimuth":189.741694550662,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":7.799733,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":90.71641,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.020871,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.725997,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951","bbox":[143.9380027,71.989773,147.2990014,72.9954806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R60m/T55XDA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R60m/T55XDA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.2939546,72.6821365],[147.1650834,72.6291719],[146.8721115,72.5067147],[146.5833251,72.3838049],[146.2981795,72.2604713],[146.0160354,72.1367849],[145.8225341,72.0506566],[145.7348784,72.0116786],[145.7103461,72.0005912],[144.1000757,71.989773],[143.9380027,72.9727797],[147.2990014,72.9954806],[147.2939546,72.6821365]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XDA_N05.11","eo:cloud_cover":4.178511,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":45.487988,"s2:mean_solar_zenith":51.5563580868775,"s2:mean_solar_azimuth":190.006349868291,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":19.9306,"s2:vegetation_percentage":18.95621,"s2:thin_cirrus_percentage":3.178966,"s2:cloud_shadow_percentage":0.016211,"s2:nodata_pixel_percentage":16.86351,"s2:unclassified_percentage":0.001732,"s2:not_vegetated_percentage":11.428755,"s2:degraded_msi_data_percentage":0.0268,"s2:high_proba_clouds_percentage":0.226987,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.772558,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951","bbox":[144.0862883,71.2917806,145.911249,72.090144],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R60m/T55WDV_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R60m/T55WDV_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[145.911249,72.090144],[145.8225341,72.0506566],[145.7348784,72.0116786],[145.6002591,71.9508375],[145.4618036,71.8883175],[145.1900375,71.7635196],[144.9218929,71.638388],[144.657853,71.5128494],[144.3973893,71.387001],[144.2033674,71.2917806],[144.0862883,72.0778773],[145.911249,72.090144]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WDV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55WDV_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":20.162447,"s2:mean_solar_zenith":50.6806861481694,"s2:mean_solar_azimuth":190.271271226905,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":61.317939,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":77.268368,"s2:unclassified_percentage":0.007108,"s2:not_vegetated_percentage":18.512507,"s2:degraded_msi_data_percentage":0.013,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951","bbox":[143.8987666,71.9504888,147.4017391,72.972798],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R60m/T54XXF_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R60m/T54XXF_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.334089,72.6986313],[147.1650834,72.6291719],[146.8721115,72.5067147],[146.5833251,72.3838049],[146.2981795,72.2604713],[146.0160354,72.1367849],[145.8225341,72.0506566],[145.7348784,72.0116786],[145.6002591,71.9508375],[145.5994869,71.9504888],[143.8987666,71.9897902],[144.0607752,72.972798],[147.4017391,72.8951551],[147.334089,72.6986313]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XXF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XXF_N05.11","eo:cloud_cover":3.613853,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":44.992217,"s2:mean_solar_zenith":51.5059130620187,"s2:mean_solar_azimuth":189.959083750985,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":16.5314,"s2:vegetation_percentage":22.158545,"s2:thin_cirrus_percentage":2.81934,"s2:cloud_shadow_percentage":0.016218,"s2:nodata_pixel_percentage":18.535386,"s2:unclassified_percentage":0.002317,"s2:not_vegetated_percentage":12.685449,"s2:degraded_msi_data_percentage":0.0267,"s2:high_proba_clouds_percentage":0.182719,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.611794,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500","bbox":[142.642721,75.5641782,145.2301741,76.5461933],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R60m/T54XWK_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R60m/T54XWK_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[142.642721,75.5833488],[142.9522892,75.7096954],[143.2711197,75.8372498],[143.5955298,75.9644114],[143.9254381,76.0911774],[144.2610233,76.2175534],[144.6027971,76.3434738],[144.9508318,76.4689039],[145.1699908,76.5461933],[145.2301741,76.5456907],[144.9477068,75.5641782],[142.642721,75.5833488]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XWK_N05.11","eo:cloud_cover":72.699803,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":5.865882,"s2:mean_solar_zenith":54.9924664658243,"s2:mean_solar_azimuth":186.368779040953,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":2.459931,"s2:vegetation_percentage":3.335379,"s2:thin_cirrus_percentage":4.421542,"s2:cloud_shadow_percentage":0.405315,"s2:nodata_pixel_percentage":70.761877,"s2:unclassified_percentage":2.99689,"s2:not_vegetated_percentage":12.236802,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":53.297496,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.980765,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951","bbox":[140.9993155,74.6932115,141.8890895,74.8190142],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R60m/T54XWJ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R60m/T54XWJ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993155,74.8190142],[141.2888983,74.7793529],[141.6421896,74.7308209],[141.7279364,74.7189072],[141.7270199,74.718493],[141.7271871,74.7184689],[141.7267913,74.7182899],[141.7267941,74.7182895],[141.7233817,74.7167444],[141.8890895,74.6932115],[140.999321,74.7005814],[140.9993155,74.8190142]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWJ_N05.11","eo:cloud_cover":44.347519,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":12.819929,"s2:mean_solar_zenith":54.100346650766,"s2:mean_solar_azimuth":186.364404467272,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":42.826158,"s2:vegetation_percentage":0.001421,"s2:thin_cirrus_percentage":0.680291,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.598808,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.004973,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":27.896923,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.770306,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500","bbox":[140.9993131,74.6697452,144.9712829,75.6692426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R60m/T54XWJ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R60m/T54XWJ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993131,74.8708045],[141.1431699,74.936469],[141.4329284,75.0661884],[141.7274136,75.1955858],[142.0264599,75.3246509],[142.3302554,75.4533604],[142.6387495,75.5817279],[142.8531737,75.6692426],[144.9712829,75.6516194],[144.7222017,74.6697452],[140.999321,74.7005814],[140.9993131,74.8708045]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XWJ_N05.11","eo:cloud_cover":36.025184,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":8.738525,"s2:mean_solar_zenith":54.100346650766,"s2:mean_solar_azimuth":186.364404467272,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":22.222336,"s2:vegetation_percentage":6.057433,"s2:thin_cirrus_percentage":17.357659,"s2:cloud_shadow_percentage":0.880937,"s2:nodata_pixel_percentage":19.857705,"s2:unclassified_percentage":3.742191,"s2:not_vegetated_percentage":22.333394,"s2:degraded_msi_data_percentage":0.0106,"s2:high_proba_clouds_percentage":4.333816,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.33371,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951","bbox":[140.9993171,73.7755608,144.6310856,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R60m/T54XWH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R60m/T54XWH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[141.2343127,74.7868289],[141.2888983,74.7793529],[141.6421896,74.7308209],[141.7279364,74.7189072],[141.7270199,74.718493],[141.7271871,74.7184689],[141.7267913,74.7182899],[141.7267941,74.7182895],[141.7233817,74.7167444],[142.4260678,74.6169529],[142.4274429,74.6175627],[142.4284679,74.6174161],[142.4286886,74.6175139],[142.4293456,74.6174205],[142.4313117,74.6182925],[142.5714281,74.5968342],[143.0565481,74.522405],[143.1901437,74.5018368],[143.1851411,74.4996642],[143.8425029,74.3949498],[143.8427858,74.3950704],[143.8428508,74.3950601],[143.8432757,74.3952413],[143.8433346,74.3952319],[143.8442535,74.3956238],[143.8455124,74.3954229],[143.8477618,74.3963821],[143.8611116,74.3941139],[144.564333,74.2744318],[144.5600383,74.2726344],[144.6310856,74.260016],[144.5219633,73.7755608],[140.9993576,73.8046111],[140.9993171,74.7887762],[141.2343127,74.7868289]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWH_N05.11","eo:cloud_cover":15.946352,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":20.537336,"s2:mean_solar_zenith":53.2089328359889,"s2:mean_solar_azimuth":186.37760112025,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":59.982371,"s2:vegetation_percentage":2.560437,"s2:thin_cirrus_percentage":9.459811,"s2:cloud_shadow_percentage":0.034289,"s2:nodata_pixel_percentage":23.364276,"s2:unclassified_percentage":0.002771,"s2:not_vegetated_percentage":0.936446,"s2:degraded_msi_data_percentage":0.0213,"s2:high_proba_clouds_percentage":2.69999,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.786552,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500","bbox":[140.9993171,74.0629478,144.7431996,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R60m/T54XWH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R60m/T54XWH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[144.5866965,74.0629478],[144.1773071,74.1355529],[144.1811868,74.1371806],[144.1796693,74.1374379],[144.1809535,74.1379769],[143.5452185,74.2460398],[143.540708,74.244115],[142.8065067,74.3613423],[142.809754,74.3627563],[142.8066019,74.3632394],[142.8066661,74.3632673],[142.80603,74.3633653],[142.8066123,74.3636189],[142.1339778,74.467267],[142.1294965,74.4652781],[141.6961413,74.5267268],[141.3473333,74.576475],[141.3517476,74.57848],[140.9993238,74.6268919],[140.9993171,74.7887762],[144.7431996,74.7577532],[144.5866965,74.0629478]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XWH_N05.11","eo:cloud_cover":51.360768,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":12.210329,"s2:mean_solar_zenith":53.208932835989,"s2:mean_solar_azimuth":186.37760112025,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":36.428866,"s2:vegetation_percentage":0.000038,"s2:thin_cirrus_percentage":47.277904,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":56.844443,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0262,"s2:high_proba_clouds_percentage":1.294806,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.788056,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951","bbox":[140.9993542,72.8805816,144.5405623,73.8922753],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R60m/T54XWG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R60m/T54XWG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993542,73.8922753],[144.5405623,73.8630589],[144.3428176,72.8805816],[140.9993903,72.9080271],[140.9993542,73.8922753]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWG_N05.11","eo:cloud_cover":2.097392,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":27.304021,"s2:mean_solar_zenith":52.3171650640296,"s2:mean_solar_azimuth":186.406378672536,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":33.061871,"s2:vegetation_percentage":31.237328,"s2:thin_cirrus_percentage":1.785213,"s2:cloud_shadow_percentage":0.151642,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.05427,"s2:not_vegetated_percentage":6.093477,"s2:degraded_msi_data_percentage":0.0137,"s2:high_proba_clouds_percentage":0.028587,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.283592,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951","bbox":[140.9993873,71.9853678,144.3594919,72.9956989],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R60m/T54XWF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R60m/T54XWF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993873,72.9956989],[144.3594919,72.9681038],[144.181736,71.9853678],[140.9994198,72.0113634],[140.9993873,72.9956989]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWF_N05.11","eo:cloud_cover":0.000063,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":19.687065,"s2:mean_solar_zenith":51.4255870137129,"s2:mean_solar_azimuth":186.449108624762,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":15.100153,"s2:vegetation_percentage":42.105362,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.002445,"s2:not_vegetated_percentage":23.104914,"s2:degraded_msi_data_percentage":0.0019,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000063,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951","bbox":[140.6201516,74.6954927,141.3330181,74.8309812],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R60m/T54XVJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R60m/T54XVJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.6201516,74.6954927],[140.6341605,74.7021176],[140.9119394,74.8309812],[141.2888983,74.7793529],[141.3330181,74.7732921],[141.3313691,74.7003374],[140.6201516,74.6954927]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVJ_N05.11","eo:cloud_cover":74.726093,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":7.062066,"s2:mean_solar_zenith":54.0353756222663,"s2:mean_solar_azimuth":182.361351685279,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":18.206279,"s2:vegetation_percentage":0.001442,"s2:thin_cirrus_percentage":0.115579,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.389578,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.00412,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":53.441209,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.169306,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500","bbox":[140.619971,74.6954915,141.3386848,75.0239973],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R60m/T54XVJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R60m/T54XVJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.619971,74.6954915],[140.8582521,74.8064162],[141.1431699,74.936469],[141.3386848,75.0239973],[141.3313691,74.7003374],[140.619971,74.6954915]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XVJ_N05.11","eo:cloud_cover":77.274442,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":20.548312,"s2:mean_solar_zenith":54.0353756222664,"s2:mean_solar_azimuth":182.361351685279,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.012121,"s2:vegetation_percentage":0.000112,"s2:thin_cirrus_percentage":0.441083,"s2:cloud_shadow_percentage":2.165012,"s2:nodata_pixel_percentage":97.043848,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":42.865559,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":33.967799,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951","bbox":[138.800028,73.7873342,141.3329382,74.7878078],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R60m/T54XVH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R60m/T54XVH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.800028,73.7873342],[139.0408218,73.9136998],[139.296295,74.0458292],[139.5555232,74.1776776],[139.8187172,74.3092406],[140.086072,74.4405095],[140.3578673,74.571457],[140.6341605,74.7021176],[140.8127876,74.784984],[141.2271654,74.7878078],[141.2888983,74.7793529],[141.3329382,74.7733031],[141.313497,73.8043812],[138.800028,73.7873342]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVH_N05.11","eo:cloud_cover":46.900082,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":19.634269,"s2:mean_solar_zenith":53.1422322075326,"s2:mean_solar_azimuth":182.555905771605,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":22.965646,"s2:vegetation_percentage":3.566145,"s2:thin_cirrus_percentage":8.210114,"s2:cloud_shadow_percentage":1.8615,"s2:nodata_pixel_percentage":58.156729,"s2:unclassified_percentage":0.490754,"s2:not_vegetated_percentage":4.581606,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":20.102456,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.58751,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500","bbox":[140.5930405,74.5815923,141.3332438,74.7885307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R60m/T54XVH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R60m/T54XVH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[141.3290916,74.5815923],[140.8795148,74.6433499],[140.5930405,74.6829548],[140.8122043,74.78498],[141.3332438,74.7885307],[141.3290916,74.5815923]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XVH_N05.11","eo:cloud_cover":73.722351,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":14.889362,"s2:mean_solar_zenith":53.1422322075327,"s2:mean_solar_azimuth":182.555905771605,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":11.388166,"s2:vegetation_percentage":0.000119,"s2:thin_cirrus_percentage":2.290314,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":97.210932,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":38.146052,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":33.285987,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951","bbox":[137.8799475,72.8852322,141.3151567,73.8920442],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R60m/T54XVG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R60m/T54XVG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.8799475,73.2845304],[138.0540315,73.382468],[138.2950343,73.5157073],[138.5398695,73.6486677],[138.7885911,73.7813322],[138.9692245,73.8761265],[141.3151567,73.8920442],[141.297514,72.90781],[137.9532063,72.8852322],[137.8799475,73.2845304]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVG_N05.11","eo:cloud_cover":8.419208,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":33.768678,"s2:mean_solar_zenith":52.2486793462447,"s2:mean_solar_azimuth":182.744340259198,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":49.342129,"s2:vegetation_percentage":5.999731,"s2:thin_cirrus_percentage":6.089519,"s2:cloud_shadow_percentage":0.459979,"s2:nodata_pixel_percentage":10.380324,"s2:unclassified_percentage":0.059182,"s2:not_vegetated_percentage":1.951094,"s2:degraded_msi_data_percentage":0.0157,"s2:high_proba_clouds_percentage":0.555568,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.774121,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951","bbox":[137.9380027,71.989773,141.2990014,72.9954806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R60m/T54XVF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R60m/T54XVF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.9380027,72.9727797],[141.2990014,72.9954806],[141.2831475,72.0111578],[138.1000757,71.989773],[137.9380027,72.9727797]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVF_N05.11","eo:cloud_cover":8.302079,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":25.15133,"s2:mean_solar_zenith":51.3552596440843,"s2:mean_solar_azimuth":182.928194484078,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":36.912629,"s2:vegetation_percentage":16.042349,"s2:thin_cirrus_percentage":6.249959,"s2:cloud_shadow_percentage":0.201569,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.006553,"s2:not_vegetated_percentage":13.383493,"s2:degraded_msi_data_percentage":0.0241,"s2:high_proba_clouds_percentage":0.650638,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.401482,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951","bbox":[143.7661688,71.093762,145.78636,72.0778947],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R60m/T54WXE_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R60m/T54WXE_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[145.78636,72.034571],[145.7348784,72.0116786],[145.6002591,71.9508375],[145.4618036,71.8883175],[145.1900375,71.7635196],[144.9218929,71.638388],[144.657853,71.5128494],[144.3973893,71.387001],[144.1403129,71.2608353],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.8058313,71.093762],[143.7661688,71.0946736],[143.9125486,72.0778947],[145.78636,72.034571]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WXE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WXE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":17.80114,"s2:mean_solar_zenith":50.6173097050979,"s2:mean_solar_azimuth":189.890433656743,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":64.843941,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":70.015293,"s2:unclassified_percentage":0.006584,"s2:not_vegetated_percentage":17.348334,"s2:degraded_msi_data_percentage":0.016,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951","bbox":[143.7637458,71.0724966,143.9735536,71.1822592],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R60m/T54WXD_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R60m/T54WXD_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.9735536,71.1777753],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.7637458,71.0724966],[143.7785751,71.1822592],[143.9735536,71.1777753]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WXD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WXD_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":37.691283,"s2:mean_solar_zenith":49.728460700465,"s2:mean_solar_azimuth":189.847226215649,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":52.84155,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.66892,"s2:unclassified_percentage":0.048102,"s2:not_vegetated_percentage":9.419063,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951","bbox":[140.999417,71.0923697,144.196858,72.0995811],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R60m/T54WWE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R60m/T54WWE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[144.0573242,71.2195],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.8030759,71.0923697],[140.9994464,71.1151545],[140.999417,72.0995811],[144.196858,72.073449],[144.0573242,71.2195]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WWE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WWE_N05.11","eo:cloud_cover":0.000043,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":11.577826,"s2:mean_solar_zenith":50.5347458337918,"s2:mean_solar_azimuth":186.504601337355,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00004,"s2:vegetation_percentage":76.62341,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.535061,"s2:unclassified_percentage":0.003769,"s2:not_vegetated_percentage":11.794909,"s2:degraded_msi_data_percentage":0.0199,"s2:high_proba_clouds_percentage":7e-6,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000037,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951","bbox":[140.9994439,70.2091535,143.975301,71.2028426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R60m/T54WWD_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R60m/T54WWD_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.975301,71.1786456],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.6330812,71.0064731],[143.5205388,70.9486732],[143.3873848,70.880465],[143.1424829,70.7530538],[142.9002939,70.6252531],[142.6604381,70.4972318],[142.4236022,70.3689064],[142.1895253,70.2403091],[142.1336098,70.2091535],[140.9994705,70.2183208],[140.9994439,71.2028426],[143.975301,71.1786456]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WWD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WWD_N05.11","eo:cloud_cover":0.000053,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":13.600075,"s2:mean_solar_zenith":49.6435833253783,"s2:mean_solar_azimuth":186.571966927614,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000058,"s2:vegetation_percentage":81.680822,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":31.762895,"s2:unclassified_percentage":0.002431,"s2:not_vegetated_percentage":4.716554,"s2:degraded_msi_data_percentage":0.0283,"s2:high_proba_clouds_percentage":0.00001,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000044,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951","bbox":[140.9994682,69.5568751,142.2901301,70.3060175],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R60m/T54WWC_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R60m/T54WWC_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[142.2901301,70.2955794],[142.1895253,70.2403091],[141.9582319,70.1114347],[141.7294833,69.9824322],[141.5033786,69.8532883],[141.2813115,69.7236358],[141.0612888,69.5938449],[140.9994867,69.5568751],[140.9994682,70.3060175],[142.2901301,70.2955794]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WWC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WWC_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.064775,"s2:mean_solar_zenith":48.7526479783835,"s2:mean_solar_azimuth":186.650496601281,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.002181,"s2:vegetation_percentage":78.974593,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":83.264059,"s2:unclassified_percentage":0.000119,"s2:not_vegetated_percentage":18.958335,"s2:degraded_msi_data_percentage":0.0073,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951","bbox":[138.0862883,71.0946572,141.284496,72.0993744],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R60m/T54WVE_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R60m/T54WVE_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.0862883,72.0778773],[141.284496,72.0993744],[141.2701751,71.1149593],[138.2327264,71.0946572],[138.0862883,72.0778773]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVE_N05.11","eo:cloud_cover":5.863766,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":28.236791,"s2:mean_solar_zenith":50.4625171471027,"s2:mean_solar_azimuth":183.108802615492,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":3.599776,"s2:vegetation_percentage":43.710288,"s2:thin_cirrus_percentage":5.068998,"s2:cloud_shadow_percentage":0.022166,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.020202,"s2:not_vegetated_percentage":18.547009,"s2:degraded_msi_data_percentage":0.0078,"s2:high_proba_clouds_percentage":0.318177,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.476591,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951","bbox":[138.2203151,70.1988218,141.2713887,71.2026464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R60m/T54WVD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R60m/T54WVD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.2203151,71.1822428],[141.2713887,71.2026464],[141.258393,70.2181351],[138.3532315,70.1988218],[138.2203151,71.1822428]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVD_N05.11","eo:cloud_cover":0.000017,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":11.096323,"s2:mean_solar_zenith":49.5693878530036,"s2:mean_solar_azimuth":183.287525469711,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00004,"s2:vegetation_percentage":80.303013,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.001261,"s2:not_vegetated_percentage":8.599345,"s2:degraded_msi_data_percentage":0.0062,"s2:high_proba_clouds_percentage":7e-6,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.00001,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951","bbox":[138.3419414,69.302813,141.2594967,70.3058309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R60m/T54WVC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R60m/T54WVC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[141.252288,69.7065149],[141.0612888,69.5938449],[140.8438762,69.4637893],[140.631353,69.3329125],[140.6054012,69.3169743],[138.4630916,69.302813],[138.3419414,70.2864248],[141.2594967,70.3058309],[141.252288,69.7065149]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVC_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.304452,"s2:mean_solar_zenith":48.6764182398639,"s2:mean_solar_azimuth":183.465358157545,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.070214,"s2:vegetation_percentage":75.791138,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":4.585987,"s2:unclassified_percentage":0.000042,"s2:not_vegetated_percentage":23.83392,"s2:degraded_msi_data_percentage":0.0233,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951","bbox":[138.4527167,68.4071754,140.7503058,69.4061665],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R60m/T54WVB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R60m/T54WVB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.7503058,69.4061665],[140.631353,69.3329125],[140.4187678,69.2023538],[140.2079766,69.0715492],[139.9991895,68.9404648],[139.7925405,68.8091917],[139.5884797,68.6776793],[139.38814,68.5455772],[139.1906958,68.413147],[139.1878784,68.4112778],[138.5635706,68.4071754],[138.4527167,69.3909702],[140.7503058,69.4061665]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVB_N05.11","eo:cloud_cover":3.335383,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.970102,"s2:mean_solar_zenith":47.784152898517,"s2:mean_solar_azimuth":183.643037696029,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.071176,"s2:vegetation_percentage":79.263401,"s2:thin_cirrus_percentage":3.248752,"s2:cloud_shadow_percentage":0.290992,"s2:nodata_pixel_percentage":47.297373,"s2:unclassified_percentage":0.009349,"s2:not_vegetated_percentage":15.899885,"s2:degraded_msi_data_percentage":0.0255,"s2:high_proba_clouds_percentage":0.001788,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.084843,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951","bbox":[138.5541183,68.0155973,139.3199586,68.4998464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R60m/T54WVA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R60m/T54WVA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[139.3199586,68.4998464],[139.1906958,68.413147],[139.0044204,68.2895577],[138.99053,68.2803526],[138.978028,68.271814],[138.7975345,68.1490727],[138.6050813,68.0165698],[138.603688,68.0155973],[138.5541183,68.494811],[139.3199586,68.4998464]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVA_N05.11","eo:cloud_cover":6.39925,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.708158,"s2:mean_solar_zenith":46.891533182743,"s2:mean_solar_azimuth":183.821664487087,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":1.753561,"s2:vegetation_percentage":34.304196,"s2:thin_cirrus_percentage":5.917664,"s2:cloud_shadow_percentage":0.006917,"s2:nodata_pixel_percentage":93.140912,"s2:unclassified_percentage":0.039955,"s2:not_vegetated_percentage":52.866346,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.017849,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.463737,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951","bbox":[137.8987666,71.9166252,141.4017391,72.972798],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R60m/T53XPA_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R60m/T53XPA_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.0607752,72.972798],[141.4017391,72.8951551],[141.0648961,71.9166252],[137.8987666,71.9897902],[138.0607752,72.972798]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53XPA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53XPA_N05.11","eo:cloud_cover":8.471534,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":25.152224,"s2:mean_solar_zenith":51.305817275075,"s2:mean_solar_azimuth":182.876057466885,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":35.284233,"s2:vegetation_percentage":16.72368,"s2:thin_cirrus_percentage":6.34322,"s2:cloud_shadow_percentage":0.240537,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.005819,"s2:not_vegetated_percentage":14.121971,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":0.718425,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.409889,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951","bbox":[137.1986657,72.8805816,138.4922012,73.6227809],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R60m/T53XNB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R60m/T53XNB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.1986657,72.8899737],[137.3529907,72.9812994],[137.5830159,73.1152239],[137.8167258,73.2489626],[138.0540315,73.382468],[138.2950343,73.5157073],[138.4922012,73.6227809],[138.3428176,72.8805816],[137.1986657,72.8899737]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53XNB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53XNB_N05.11","eo:cloud_cover":10.7994,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":22.729982,"s2:mean_solar_zenith":52.2312101532652,"s2:mean_solar_azimuth":179.393948289904,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":66.468495,"s2:vegetation_percentage":0.002124,"s2:thin_cirrus_percentage":9.430973,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":87.50307,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.240589,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.127837,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951","bbox":[135.7810207,71.9853678,138.3594919,72.9764372],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R60m/T53XNA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R60m/T53XNA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[135.7810207,72.0049787],[135.8306676,72.0376004],[136.0398937,72.1730333],[136.25145,72.3082848],[136.4654229,72.4433503],[136.6822884,72.5782131],[136.9025759,72.7128205],[137.1263184,72.8471604],[137.3447744,72.9764372],[138.3594919,72.9681038],[138.181736,71.9853678],[135.7810207,72.0049787]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53XNA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53XNA_N05.11","eo:cloud_cover":4.452536,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":95.541453,"s2:mean_solar_zenith":51.3351404866702,"s2:mean_solar_azimuth":179.353434492462,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.006011,"s2:thin_cirrus_percentage":3.826519,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":47.843993,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0008,"s2:high_proba_clouds_percentage":0.184047,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.441969,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951","bbox":[137.7661688,71.0251958,141.093564,72.0778947],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R60m/T53WPV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R60m/T53WPV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.9125486,72.0778947],[141.093564,72.0043476],[140.7889605,71.0251958],[137.7661688,71.0946736],[137.9125486,72.0778947]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPV_N05.11","eo:cloud_cover":5.74511,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":32.687479,"s2:mean_solar_zenith":50.4111090772672,"s2:mean_solar_azimuth":182.720923216345,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":4.85146,"s2:vegetation_percentage":37.601638,"s2:thin_cirrus_percentage":5.047541,"s2:cloud_shadow_percentage":0.023882,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.018172,"s2:not_vegetated_percentage":19.072258,"s2:degraded_msi_data_percentage":0.0117,"s2:high_proba_clouds_percentage":0.269389,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.42818,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951","bbox":[137.6457116,70.1327293,140.814787,71.1822592],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R60m/T53WPU_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R60m/T53WPU_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.7785751,71.1822592],[140.814787,71.1124355],[140.5381092,70.1327293],[137.6457116,70.1988374],[137.7785751,71.1822592]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPU_N05.11","eo:cloud_cover":3e-6,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":13.414465,"s2:mean_solar_zenith":49.5157431265834,"s2:mean_solar_azimuth":182.587133584315,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":77.782768,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.001921,"s2:not_vegetated_percentage":8.80084,"s2:degraded_msi_data_percentage":0.0012,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3e-6,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951","bbox":[137.5358953,69.2398107,140.5616186,70.2864405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R60m/T53WPT_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R60m/T53WPT_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.6569973,70.2864405],[140.5616186,70.2200158],[140.3092739,69.2398107],[137.5358953,69.3028279],[137.6569973,70.2864405]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPT_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.085959,"s2:mean_solar_zenith":48.6202573099626,"s2:mean_solar_azimuth":182.472257995074,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.097359,"s2:vegetation_percentage":76.235116,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":23.58157,"s2:degraded_msi_data_percentage":0.0173,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951","bbox":[137.4354563,68.3690508,140.3308902,69.3909851],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R60m/T53WPS_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R60m/T53WPS_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.2812653,69.1170279],[140.2079766,69.0715492],[139.9991895,68.9404648],[139.7925405,68.8091917],[139.5884797,68.6776793],[139.38814,68.5455772],[139.1906958,68.413147],[139.1242334,68.3690508],[137.4354563,68.4071896],[137.546266,69.3909851],[140.3308902,69.3276752],[140.2812653,69.1170279]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPS_N05.11","eo:cloud_cover":9.896792,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.361735,"s2:mean_solar_zenith":47.7251878306583,"s2:mean_solar_azimuth":182.374139174231,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.202622,"s2:vegetation_percentage":71.319681,"s2:thin_cirrus_percentage":6.357141,"s2:cloud_shadow_percentage":1.606275,"s2:nodata_pixel_percentage":14.510258,"s2:unclassified_percentage":0.019405,"s2:not_vegetated_percentage":15.364692,"s2:degraded_msi_data_percentage":0.0247,"s2:high_proba_clouds_percentage":1.873058,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.666593,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951","bbox":[137.3431637,67.4987463,139.2516026,68.4948252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R60m/T53WPR_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R60m/T53WPR_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[139.2516026,68.4539985],[139.1906958,68.413147],[139.0044204,68.2895577],[138.99053,68.2803526],[138.978028,68.271814],[138.7975345,68.1490727],[138.6050813,68.0165698],[138.414898,67.8838321],[138.2278795,67.7506648],[138.0449052,67.6167832],[137.8826614,67.4987463],[137.3431637,67.5108527],[137.4449048,68.4948252],[139.2516026,68.4539985]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPR_N05.11","eo:cloud_cover":50.947386,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.132876,"s2:mean_solar_zenith":46.829461693452,"s2:mean_solar_azimuth":182.29099033466,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.371113,"s2:vegetation_percentage":28.684637,"s2:thin_cirrus_percentage":14.934808,"s2:cloud_shadow_percentage":2.099002,"s2:nodata_pixel_percentage":55.891585,"s2:unclassified_percentage":0.706798,"s2:not_vegetated_percentage":16.609885,"s2:degraded_msi_data_percentage":0.0239,"s2:high_proba_clouds_percentage":21.74134,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.271238,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951","bbox":[137.3011384,67.0659149,137.9997823,67.5985039],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R60m/T53WPQ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R60m/T53WPQ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.9997823,67.583955],[137.8613163,67.4832171],[137.6800852,67.3492598],[137.5000028,67.2152473],[137.3213521,67.0811797],[137.3011384,67.0659149],[137.3518535,67.5985039],[137.9997823,67.583955]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPQ_N05.11","eo:cloud_cover":80.372506,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.581574,"s2:mean_solar_zenith":45.9336159916215,"s2:mean_solar_azimuth":182.221357511726,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.009367,"s2:vegetation_percentage":12.079749,"s2:thin_cirrus_percentage":13.551554,"s2:cloud_shadow_percentage":1.584354,"s2:nodata_pixel_percentage":93.269897,"s2:unclassified_percentage":1.45884,"s2:not_vegetated_percentage":3.908234,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":25.341576,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.479379,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951","bbox":[134.9994355,71.0904748,138.196858,72.0920994],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R60m/T53WNV_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R60m/T53WNV_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994355,71.4781682],[135.0219441,71.4939117],[135.2197311,71.6301191],[135.4205147,71.7661413],[135.6242101,71.9019427],[135.8306676,72.0376004],[135.9148614,72.0920994],[138.196858,72.073449],[138.0362417,71.0904748],[134.9994464,71.1151545],[134.9994355,71.4781682]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNV_N05.11","eo:cloud_cover":0.039394,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":36.798185,"s2:mean_solar_zenith":50.4394772497286,"s2:mean_solar_azimuth":179.321853230839,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":27.153489,"s2:vegetation_percentage":20.840448,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":9.368174,"s2:unclassified_percentage":0.006403,"s2:not_vegetated_percentage":15.162079,"s2:degraded_msi_data_percentage":0.0173,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.039394,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951","bbox":[134.9994439,70.1948429,138.049855,71.2028426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R60m/T53WNU_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R60m/T53WNU_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994439,71.2028426],[138.049855,71.1780394],[137.9040632,70.1948429],[134.9994705,70.2183208],[134.9994439,71.2028426]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNU_N05.11","eo:cloud_cover":0.488346,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":16.513933,"s2:mean_solar_zenith":49.543143601069,"s2:mean_solar_azimuth":179.298078790733,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001158,"s2:vegetation_percentage":77.088505,"s2:thin_cirrus_percentage":0.47116,"s2:cloud_shadow_percentage":0.000617,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.008119,"s2:not_vegetated_percentage":5.899327,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.017186,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951","bbox":[134.9994682,69.2990206,137.9164472,70.3060175],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R60m/T53WNT_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R60m/T53WNT_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994682,70.3060175],[137.9164472,70.2824267],[137.7835563,69.2990206],[134.9994925,69.3213967],[134.9994682,70.3060175]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNT_N05.11","eo:cloud_cover":4.688246,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.84148,"s2:mean_solar_zenith":48.6466760123962,"s2:mean_solar_azimuth":179.281215552931,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.02204,"s2:vegetation_percentage":77.097553,"s2:thin_cirrus_percentage":4.368287,"s2:cloud_shadow_percentage":0.050149,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.002482,"s2:not_vegetated_percentage":17.298049,"s2:degraded_msi_data_percentage":0.0154,"s2:high_proba_clouds_percentage":0.000292,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.319667,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951","bbox":[134.9994904,68.4035546,137.7949369,69.4096405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R60m/T53WNS_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R60m/T53WNS_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994904,69.4096405],[137.7949369,69.3871601],[137.6733361,68.4035546],[134.9995126,68.4249171],[134.9994904,69.4096405]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNS_N05.11","eo:cloud_cover":3.499497,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.498203,"s2:mean_solar_zenith":47.750610937167,"s2:mean_solar_azimuth":179.27051116146,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000332,"s2:vegetation_percentage":83.526266,"s2:thin_cirrus_percentage":2.582646,"s2:cloud_shadow_percentage":0.218712,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.010491,"s2:not_vegetated_percentage":12.246495,"s2:degraded_msi_data_percentage":0.0003,"s2:high_proba_clouds_percentage":0.441279,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.475572,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951","bbox":[134.9995107,67.5073771,137.6837049,68.5126321],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R60m/T53WNR_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R60m/T53WNR_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9995107,68.5126321],[137.6837049,68.491174],[137.5720525,67.5073771],[134.9995311,67.5278024],[134.9995107,68.5126321]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNR_N05.11","eo:cloud_cover":36.66355,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.499322,"s2:mean_solar_zenith":46.8538715277138,"s2:mean_solar_azimuth":179.265415984781,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.004509,"s2:vegetation_percentage":44.98021,"s2:thin_cirrus_percentage":10.196213,"s2:cloud_shadow_percentage":3.757443,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":2.886065,"s2:not_vegetated_percentage":11.208901,"s2:degraded_msi_data_percentage":0.0146,"s2:high_proba_clouds_percentage":17.368774,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.098563,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951","bbox":[134.9995294,66.6170156,137.581589,67.6155271],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R60m/T53WNQ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R60m/T53WNQ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.5454291,67.2490523],[137.5000028,67.2152473],[137.3213521,67.0811797],[137.1438475,66.9471341],[136.9697618,66.8125882],[136.7971426,66.6780005],[136.7200851,66.6170156],[134.9995482,66.6305875],[134.9995294,67.6155271],[137.581589,67.5950132],[137.5454291,67.2490523]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNQ_N05.11","eo:cloud_cover":71.882689,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.241975,"s2:mean_solar_zenith":45.956994707828,"s2:mean_solar_azimuth":179.265390275024,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000881,"s2:vegetation_percentage":11.376605,"s2:thin_cirrus_percentage":8.059323,"s2:cloud_shadow_percentage":3.133707,"s2:nodata_pixel_percentage":10.036112,"s2:unclassified_percentage":6.558467,"s2:not_vegetated_percentage":6.805665,"s2:degraded_msi_data_percentage":0.0236,"s2:high_proba_clouds_percentage":44.913453,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.909921,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951","bbox":[134.9995465,65.7288235,136.8310071,66.7188603],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R60m/T53WNP_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R60m/T53WNP_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[136.8310071,66.7044039],[136.7971426,66.6780005],[136.6268255,66.5432079],[136.4554565,66.4089337],[136.2905121,66.2734345],[136.124355,66.1384481],[135.9590236,66.0034615],[135.7973805,65.8677223],[135.6387393,65.7314011],[135.6357109,65.7288235],[134.9995639,65.7338076],[134.9995465,66.7188603],[136.8310071,66.7044039]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNP_N05.11","eo:cloud_cover":79.262155,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.064865,"s2:mean_solar_zenith":45.0605176677555,"s2:mean_solar_azimuth":179.27010740126,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001381,"s2:vegetation_percentage":11.749259,"s2:thin_cirrus_percentage":35.7537,"s2:cloud_shadow_percentage":1.796817,"s2:nodata_pixel_percentage":50.036603,"s2:unclassified_percentage":1.188451,"s2:not_vegetated_percentage":5.935958,"s2:degraded_msi_data_percentage":0.0263,"s2:high_proba_clouds_percentage":7.194892,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":36.313558,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951","bbox":[134.9995624,65.1784831,135.7369237,65.8215524],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R60m/T53WNN_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R60m/T53WNN_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[135.7369237,65.8157714],[135.6387393,65.7314011],[135.4790342,65.5954711],[135.3203988,65.4595167],[135.1640839,65.3232305],[135.009083,65.1869289],[134.9995729,65.1784831],[134.9995624,65.8215524],[135.7369237,65.8157714]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNN_N05.11","eo:cloud_cover":99.833322,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000033,"s2:mean_solar_zenith":44.163363602334,"s2:mean_solar_azimuth":179.279169599448,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.150944,"s2:thin_cirrus_percentage":28.099704,"s2:cloud_shadow_percentage":0.000668,"s2:nodata_pixel_percentage":90.066993,"s2:unclassified_percentage":0.001436,"s2:not_vegetated_percentage":0.013595,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":14.312494,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":57.421124,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951","bbox":[134.4811106,71.1096852,135.2782462,71.6697606],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R60m/T53WMV_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R60m/T53WMV_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.4811106,71.1096852],[134.6351874,71.2210221],[134.8269898,71.3575522],[135.0219441,71.4939117],[135.2197311,71.6301191],[135.2782462,71.6697606],[135.2701751,71.1149593],[134.4811106,71.1096852]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMV_N05.11","eo:cloud_cover":0.039226,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":24.383707,"s2:mean_solar_zenith":50.4784982490092,"s2:mean_solar_azimuth":175.916797651609,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.759301,"s2:vegetation_percentage":45.216641,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":92.96276,"s2:unclassified_percentage":0.023998,"s2:not_vegetated_percentage":29.577124,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.039226,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951","bbox":[133.2861284,70.2050237,135.2713887,71.2026464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R60m/T53WMU_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R60m/T53WMU_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.2861284,70.2050237],[133.3563274,70.2605362],[133.533248,70.3982007],[133.7113221,70.5358675],[133.8919369,70.6731953],[134.0746049,70.8103348],[134.2592913,70.9473583],[134.4459812,71.0843005],[134.6035773,71.1981805],[135.2713887,71.2026464],[135.258393,70.2181351],[133.2861284,70.2050237]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMU_N05.11","eo:cloud_cover":0.35225,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":3.292965,"s2:mean_solar_zenith":49.58155452922,"s2:mean_solar_azimuth":176.004006870427,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.002004,"s2:vegetation_percentage":90.762228,"s2:thin_cirrus_percentage":0.319707,"s2:cloud_shadow_percentage":0.003768,"s2:nodata_pixel_percentage":55.793881,"s2:unclassified_percentage":0.005914,"s2:not_vegetated_percentage":5.580869,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":8e-6,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.032536,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951","bbox":[132.4375113,69.302813,135.2594967,70.3058309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R60m/T53WMT_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R60m/T53WMT_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.4375113,69.510498],[132.5072291,69.5697717],[132.6725396,69.7081763],[132.8399998,69.846495],[133.010646,69.9845106],[133.1819808,70.122665],[133.3563274,70.2605362],[133.3986312,70.2934534],[135.2594967,70.3058309],[135.2476536,69.3212198],[132.4630916,69.302813],[132.4375113,69.510498]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMT_N05.11","eo:cloud_cover":0.83192,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.963727,"s2:mean_solar_zenith":48.684473752372,"s2:mean_solar_azimuth":176.085958812526,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.012127,"s2:vegetation_percentage":82.922882,"s2:thin_cirrus_percentage":0.805923,"s2:cloud_shadow_percentage":0.00147,"s2:nodata_pixel_percentage":14.697061,"s2:unclassified_percentage":0.003228,"s2:not_vegetated_percentage":15.264641,"s2:degraded_msi_data_percentage":0.014,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.025997,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951","bbox":[132.4527167,68.4071754,135.2486677,69.4094627],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R60m/T53WMS_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R60m/T53WMS_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.4527167,69.3909702],[135.2486677,69.4094627],[135.2378328,68.4247482],[132.5635706,68.4071754],[132.4527167,69.3909702]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMS_N05.11","eo:cloud_cover":1.381439,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.717108,"s2:mean_solar_zenith":47.7877908664443,"s2:mean_solar_azimuth":176.163362195745,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":80.133373,"s2:thin_cirrus_percentage":0.558542,"s2:cloud_shadow_percentage":0.66032,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.270719,"s2:not_vegetated_percentage":15.837045,"s2:degraded_msi_data_percentage":0.023,"s2:high_proba_clouds_percentage":0.428001,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.394896,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951","bbox":[132.5541183,67.5108391,135.2387566,68.5124624],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R60m/T53WMR_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R60m/T53WMR_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.5541183,68.494811],[135.2387566,68.5124624],[135.2288099,67.5276409],[132.6559,67.5108391],[132.5541183,68.494811]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMR_N05.11","eo:cloud_cover":1.407487,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.355294,"s2:mean_solar_zenith":46.8904280749316,"s2:mean_solar_azimuth":176.236873363626,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.387017,"s2:thin_cirrus_percentage":0.862691,"s2:cloud_shadow_percentage":0.62312,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.23916,"s2:not_vegetated_percentage":12.987924,"s2:degraded_msi_data_percentage":0.0178,"s2:high_proba_clouds_percentage":0.214253,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.330543,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951","bbox":[132.6472067,66.6143459,135.2296594,67.6153648],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R60m/T53WMQ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R60m/T53WMQ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.6472067,67.5984902],[135.2296594,67.6153648],[135.2204986,66.6304328],[132.7409581,66.6143459],[132.6472067,67.5984902]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMQ_N05.11","eo:cloud_cover":48.034894,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.562238,"s2:mean_solar_zenith":45.9929211883906,"s2:mean_solar_azimuth":176.306964756757,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":43.581593,"s2:thin_cirrus_percentage":24.397135,"s2:cloud_shadow_percentage":1.614102,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.005252,"s2:not_vegetated_percentage":5.20192,"s2:degraded_msi_data_percentage":0.0018,"s2:high_proba_clouds_percentage":9.764101,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.873656,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951","bbox":[132.732889,65.718237,135.221287,66.718705],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R60m/T53WMP_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R60m/T53WMP_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.732889,66.7025501],[135.221287,66.718705],[135.2128247,65.7336593],[132.8195021,65.718237],[132.732889,66.7025501]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMP_N05.11","eo:cloud_cover":96.877158,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":45.0958071044653,"s2:mean_solar_azimuth":176.374033706648,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":1.051838,"s2:thin_cirrus_percentage":17.849383,"s2:cloud_shadow_percentage":0.780558,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.527862,"s2:not_vegetated_percentage":0.762589,"s2:degraded_msi_data_percentage":0.012,"s2:high_proba_clouds_percentage":28.265235,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":50.762534,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951","bbox":[132.8120825,64.8214388,135.2135496,65.8214035],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R60m/T53WMN_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R60m/T53WMN_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[135.2099039,65.3631796],[135.1640839,65.3232305],[135.009083,65.1869289],[134.8555479,65.0505759],[134.7035955,64.9141124],[134.6140229,64.8324549],[132.8923143,64.8214388],[132.8120825,65.8059182],[135.2135496,65.8214035],[135.2099039,65.3631796]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMN_N05.11","eo:cloud_cover":98.44386,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.028701,"s2:mean_solar_zenith":44.1980073241091,"s2:mean_solar_azimuth":176.438516584663,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00057,"s2:vegetation_percentage":1.056921,"s2:thin_cirrus_percentage":20.16459,"s2:cloud_shadow_percentage":0.393805,"s2:nodata_pixel_percentage":6.942555,"s2:unclassified_percentage":0.029457,"s2:not_vegetated_percentage":0.044553,"s2:degraded_msi_data_percentage":0.0227,"s2:high_proba_clouds_percentage":46.016845,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":32.26243,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951","bbox":[132.8854324,63.9244911,134.7110691,64.9208241],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R60m/T53WMM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R60m/T53WMM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.7110691,64.9208241],[134.7035955,64.9141124],[134.5536454,64.7774128],[134.4045168,64.6408004],[134.2802415,64.524936],[134.2564905,64.5028569],[134.2103015,64.4586964],[134.1136279,64.3664568],[133.9697259,64.2290907],[133.8236568,64.0922739],[133.6820659,63.954531],[133.6563042,63.9289139],[132.9599395,63.9244911],[132.8854324,64.9091348],[134.7110691,64.9208241]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMM_N05.11","eo:cloud_cover":33.978871,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.19202,"s2:mean_solar_zenith":43.3000574461588,"s2:mean_solar_azimuth":176.500781592237,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.743309,"s2:vegetation_percentage":30.364639,"s2:thin_cirrus_percentage":15.058976,"s2:cloud_shadow_percentage":0.091821,"s2:nodata_pixel_percentage":45.192254,"s2:unclassified_percentage":0.995471,"s2:not_vegetated_percentage":21.746081,"s2:degraded_msi_data_percentage":0.0279,"s2:high_proba_clouds_percentage":7.460166,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.459728,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951","bbox":[132.9535015,63.2747981,133.7470856,64.0177837],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R60m/T53VML_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R60m/T53VML_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.7470856,64.0177837],[133.6820659,63.954531],[133.5430972,63.816342],[133.4042308,63.6782928],[133.2668301,63.5400978],[133.1303171,63.4019607],[133.0054708,63.2747981],[132.9535015,64.0127397],[133.7470856,64.0177837]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53VML","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53VML_N05.11","eo:cloud_cover":12.662388,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.697701,"s2:mean_solar_zenith":42.4024958912698,"s2:mean_solar_azimuth":176.56100877451,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.731281,"s2:vegetation_percentage":71.997678,"s2:thin_cirrus_percentage":12.659788,"s2:cloud_shadow_percentage":0.096674,"s2:nodata_pixel_percentage":86.858964,"s2:unclassified_percentage":0.285579,"s2:not_vegetated_percentage":9.435956,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.000328,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.002272,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951","bbox":[130.913343,62.9866068,133.1897998,64.015435],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R60m/T53VLL_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R60m/T53VLL_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.1897998,63.462151],[133.1303171,63.4019607],[132.994726,63.2638539],[132.8604581,63.1256284],[132.7601712,63.0212492],[131.0515033,62.9866068],[130.913343,63.9696051],[133.1546638,64.015435],[133.1897998,63.462151]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53VLL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53VLL_N05.11","eo:cloud_cover":9.69805,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.908008,"s2:mean_solar_zenith":42.4500229392061,"s2:mean_solar_azimuth":173.818382111021,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.030738,"s2:vegetation_percentage":84.882092,"s2:thin_cirrus_percentage":9.672086,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":4.712111,"s2:unclassified_percentage":0.32355,"s2:not_vegetated_percentage":1.908846,"s2:degraded_msi_data_percentage":0.0223,"s2:high_proba_clouds_percentage":0.000024,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.02594,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951","bbox":[131.1574343,61.3660298,131.9897108,62.195252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R60m/T53VLJ_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R60m/T53VLJ_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.9897108,62.195252],[131.9519214,62.1538178],[131.8263048,62.0146449],[131.7734854,61.9555542],[131.7025895,61.8764038],[131.5792047,61.7370479],[131.4572377,61.5976178],[131.3361918,61.4581338],[131.2569852,61.3660298],[131.1574343,62.1785001],[131.9897108,62.195252]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53VLJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53VLJ_N05.11","eo:cloud_cover":0.438324,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.222577,"s2:mean_solar_zenith":40.6529531920545,"s2:mean_solar_azimuth":174.0039605909,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":95.807463,"s2:thin_cirrus_percentage":0.000185,"s2:cloud_shadow_percentage":1.201613,"s2:nodata_pixel_percentage":83.840901,"s2:unclassified_percentage":0.557658,"s2:not_vegetated_percentage":0.61831,"s2:degraded_msi_data_percentage":0.004,"s2:high_proba_clouds_percentage":0.072151,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.365989,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951","bbox":[131.2581395,66.5592595,133.9254764,67.5985039],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R60m/T52WFV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R60m/T52WFV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.3518535,67.5985039],[133.9254764,67.5407149],[133.7299138,66.5592595],[131.2581395,66.6143589],[131.3518535,67.5985039]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFV_N05.11","eo:cloud_cover":69.579434,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.356283,"s2:mean_solar_zenith":45.999385627067,"s2:mean_solar_azimuth":174.519173584484,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":26.530567,"s2:thin_cirrus_percentage":45.736045,"s2:cloud_shadow_percentage":0.558913,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.08071,"s2:not_vegetated_percentage":2.894091,"s2:degraded_msi_data_percentage":0.0213,"s2:high_proba_clouds_percentage":3.3369,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":20.506491,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951","bbox":[131.1796268,65.66542,133.7467491,66.7025631],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R60m/T52WFU_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R60m/T52WFU_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.2662054,66.7025631],[133.7467491,66.6472313],[133.5660076,65.66542],[131.1796268,65.7182494],[131.2662054,66.7025631]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFU_N05.11","eo:cloud_cover":80.381471,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.040909,"s2:mean_solar_zenith":45.1111715791707,"s2:mean_solar_azimuth":174.346133667649,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":14.363141,"s2:thin_cirrus_percentage":37.047416,"s2:cloud_shadow_percentage":2.320102,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.216419,"s2:not_vegetated_percentage":1.677957,"s2:degraded_msi_data_percentage":0.0075,"s2:high_proba_clouds_percentage":15.949947,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":27.384108,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951","bbox":[131.1068437,64.7707414,133.5814932,65.8059307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R60m/T52WFT_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R60m/T52WFT_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.1870434,65.8059307],[133.5814932,65.7528862],[133.4140108,64.7707414],[131.1068437,64.8214508],[131.1870434,65.8059307]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFT_N05.11","eo:cloud_cover":57.527,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.089396,"s2:mean_solar_zenith":44.2222573271832,"s2:mean_solar_azimuth":174.178715827812,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.03204,"s2:vegetation_percentage":30.414471,"s2:thin_cirrus_percentage":18.254933,"s2:cloud_shadow_percentage":2.321787,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.492108,"s2:not_vegetated_percentage":7.543512,"s2:degraded_msi_data_percentage":0.0011,"s2:high_proba_clouds_percentage":20.062615,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":19.209455,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951","bbox":[131.0392454,63.8757772,133.4283789,64.9091468],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R60m/T52WFS_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R60m/T52WFS_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.1137228,64.9091468],[133.4283789,64.8582363],[133.2727989,63.8757772],[131.0392454,63.9245026],[131.1137228,64.9091468]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFS_N05.11","eo:cloud_cover":9.216897,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.248951,"s2:mean_solar_zenith":43.3331813369737,"s2:mean_solar_azimuth":174.015842397136,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.667234,"s2:vegetation_percentage":54.976976,"s2:thin_cirrus_percentage":7.174903,"s2:cloud_shadow_percentage":0.037306,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.938136,"s2:not_vegetated_percentage":21.746583,"s2:degraded_msi_data_percentage":0.0156,"s2:high_proba_clouds_percentage":0.313619,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.728375,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951","bbox":[134.3782739,71.0251958,134.9105306,71.4159842],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R60m/T52WFE_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R60m/T52WFE_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.3782739,71.0346353],[134.4459812,71.0843005],[134.6351874,71.2210221],[134.8269898,71.3575522],[134.9105306,71.4159842],[134.7889605,71.0251958],[134.3782739,71.0346353]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":14.570828,"s2:mean_solar_zenith":50.4399499537414,"s2:mean_solar_azimuth":175.523721823951,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":68.903619,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":97.471303,"s2:unclassified_percentage":0.027554,"s2:not_vegetated_percentage":16.497999,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951","bbox":[132.1782345,69.2398107,134.5616186,70.2479433],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R60m/T52WFC_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R60m/T52WFC_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.1782345,69.2882325],[132.1831794,69.2925464],[132.3442605,69.4312167],[132.5072291,69.5697717],[132.6725396,69.7081763],[132.8399998,69.846495],[133.010646,69.9845106],[133.1819808,70.122665],[133.340403,70.2479433],[134.5616186,70.2200158],[134.3092739,69.2398107],[132.1782345,69.2882325]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFC_N05.11","eo:cloud_cover":0.066171,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.05008,"s2:mean_solar_zenith":48.664054088493,"s2:mean_solar_azimuth":175.086798999784,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.013523,"s2:vegetation_percentage":85.094708,"s2:thin_cirrus_percentage":0.066171,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":41.09005,"s2:unclassified_percentage":0.000608,"s2:not_vegetated_percentage":14.774911,"s2:degraded_msi_data_percentage":0.0032,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951","bbox":[131.4354563,68.3470175,134.3308902,69.3743442],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R60m/T52WFB_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R60m/T52WFB_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.4627689,68.6496772],[131.5574948,68.7362757],[131.7116764,68.8755213],[131.8668155,69.0147346],[132.0240415,69.1537179],[132.1831794,69.2925464],[132.2781968,69.3743442],[134.3308902,69.3276752],[134.0998643,68.3470175],[131.4354563,68.4071896],[131.4627689,68.6496772]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFB_N05.11","eo:cloud_cover":1.499358,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.444134,"s2:mean_solar_zenith":47.7763639288029,"s2:mean_solar_azimuth":174.88800636576,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000163,"s2:vegetation_percentage":77.548021,"s2:thin_cirrus_percentage":0.589012,"s2:cloud_shadow_percentage":0.710457,"s2:nodata_pixel_percentage":10.278857,"s2:unclassified_percentage":0.299622,"s2:not_vegetated_percentage":19.498242,"s2:degraded_msi_data_percentage":0.0174,"s2:high_proba_clouds_percentage":0.476632,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.433714,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951","bbox":[129.4326646,66.6110311,131.581589,67.6046234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R60m/T52WEV_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R60m/T52WEV_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.4326646,66.627171],[129.4395568,66.6346719],[129.569974,66.7756814],[129.7029067,66.9163859],[129.8368444,67.0570373],[129.9718905,67.1976125],[130.1092595,67.3378121],[130.2467967,67.4780835],[130.3719703,67.6046234],[131.581589,67.5950132],[131.478743,66.6110311],[129.4326646,66.627171]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEV_N05.11","eo:cloud_cover":56.754273,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.137858,"s2:mean_solar_zenith":46.1415775723871,"s2:mean_solar_azimuth":171.570681979177,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.010488,"s2:vegetation_percentage":27.792656,"s2:thin_cirrus_percentage":26.870412,"s2:cloud_shadow_percentage":9.748025,"s2:nodata_pixel_percentage":35.875851,"s2:unclassified_percentage":2.108658,"s2:not_vegetated_percentage":3.448037,"s2:degraded_msi_data_percentage":0.0056,"s2:high_proba_clouds_percentage":15.36417,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.519691,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951","bbox":[128.9995566,65.715059,131.487595,66.7148022],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R60m/T52WEU_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R60m/T52WEU_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995566,66.1472915],[129.0568185,66.2112587],[129.1820685,66.3526398],[129.3100284,66.4937028],[129.4395568,66.6346719],[129.5136678,66.7148022],[131.487595,66.6992212],[131.3925776,65.715059],[128.9995639,65.7338076],[128.9995566,66.1472915]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEU_N05.11","eo:cloud_cover":58.694005,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.187807,"s2:mean_solar_zenith":45.2540563512696,"s2:mean_solar_azimuth":171.460375519743,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.020823,"s2:vegetation_percentage":19.575879,"s2:thin_cirrus_percentage":6.623583,"s2:cloud_shadow_percentage":7.282652,"s2:nodata_pixel_percentage":6.247365,"s2:unclassified_percentage":4.842953,"s2:not_vegetated_percentage":9.395286,"s2:degraded_msi_data_percentage":0.0214,"s2:high_proba_clouds_percentage":38.061482,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.008942,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951","bbox":[128.9995624,64.8183886,131.4007172,65.8215524],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R60m/T52WET_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R60m/T52WET_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995624,65.8215524],[131.4007172,65.8027272],[131.3126985,64.8183886],[128.9995785,64.8363831],[128.9995624,65.8215524]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WET","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WET_N05.11","eo:cloud_cover":41.352487,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.192166,"s2:mean_solar_zenith":44.3658966769181,"s2:mean_solar_azimuth":171.348870647938,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.034827,"s2:vegetation_percentage":27.956703,"s2:thin_cirrus_percentage":4.539822,"s2:cloud_shadow_percentage":6.532108,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":5.609962,"s2:not_vegetated_percentage":16.073813,"s2:degraded_msi_data_percentage":0.0221,"s2:high_proba_clouds_percentage":25.178194,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.634471,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951","bbox":[128.9995771,63.9215604,131.3202484,64.9241384],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R60m/T52WES_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R60m/T52WES_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995771,64.9241384],[131.3202484,64.9060724],[131.2385085,63.9215604],[128.999592,63.9388493],[128.9995771,64.9241384]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WES","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WES_N05.11","eo:cloud_cover":5.759115,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.227425,"s2:mean_solar_zenith":43.4776424575435,"s2:mean_solar_azimuth":171.235576308309,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.078951,"s2:vegetation_percentage":69.004923,"s2:thin_cirrus_percentage":4.732712,"s2:cloud_shadow_percentage":0.28985,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.741132,"s2:not_vegetated_percentage":19.847569,"s2:degraded_msi_data_percentage":0.0189,"s2:high_proba_clouds_percentage":0.423821,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.602583,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951","bbox":[131.2005488,68.4035546,131.7341807,68.8957154],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R60m/T52WEB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R60m/T52WEB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.2005488,68.407332],[131.253871,68.4573715],[131.4049718,68.5968391],[131.5574948,68.7362757],[131.7116764,68.8755213],[131.7341807,68.8957154],[131.6733361,68.4035546],[131.2005488,68.407332]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEB_N05.11","eo:cloud_cover":2.489419,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":47.9173483017124,"s2:mean_solar_azimuth":171.790393089591,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.960938,"s2:thin_cirrus_percentage":2.489419,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":95.824677,"s2:unclassified_percentage":0.003894,"s2:not_vegetated_percentage":37.49553,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951","bbox":[130.2858757,67.5073771,131.6837049,68.4942905],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R60m/T52WEA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R60m/T52WEA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[130.2858757,67.5175891],[130.3854935,67.6182942],[130.5247857,67.7586223],[130.6679007,67.8983912],[130.8118693,68.038218],[130.9577475,68.1779816],[131.1050539,68.317716],[131.253871,68.4573715],[131.2938695,68.4942905],[131.6837049,68.491174],[131.5720525,67.5073771],[130.2858757,67.5175891]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEA_N05.11","eo:cloud_cover":44.600189,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.317938,"s2:mean_solar_zenith":47.0295225315839,"s2:mean_solar_azimuth":171.680458025836,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":47.277573,"s2:thin_cirrus_percentage":40.49665,"s2:cloud_shadow_percentage":0.390534,"s2:nodata_pixel_percentage":68.255192,"s2:unclassified_percentage":0.01643,"s2:not_vegetated_percentage":7.39556,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.938311,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.165226,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951","bbox":[128.6313048,65.7299121,129.2184871,66.3927877],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R60m/T52WDU_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R60m/T52WDU_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.6313048,65.7299121],[128.6803133,65.7885544],[128.8051215,65.929389],[128.9306399,66.0703047],[129.0568185,66.2112587],[129.1820685,66.3526398],[129.2184871,66.3927877],[129.2128247,65.7336593],[128.6313048,65.7299121]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WDU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WDU_N05.11","eo:cloud_cover":87.409705,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.016386,"s2:mean_solar_zenith":45.4096751438101,"s2:mean_solar_azimuth":168.577958033717,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.006044,"s2:vegetation_percentage":0.90118,"s2:thin_cirrus_percentage":1.310954,"s2:cloud_shadow_percentage":6.273145,"s2:nodata_pixel_percentage":92.204446,"s2:unclassified_percentage":1.957238,"s2:not_vegetated_percentage":3.422431,"s2:degraded_msi_data_percentage":0.0014,"s2:high_proba_clouds_percentage":70.731151,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.367594,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951","bbox":[127.8753205,64.8277285,129.2135496,65.8214035],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R60m/T52WDT_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R60m/T52WDT_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.8753205,64.8277285],[127.9655371,64.9388521],[128.0824097,65.080645],[128.2006112,65.2223042],[128.3185328,65.3641777],[128.4419513,65.50498],[128.5616802,65.6466009],[128.6803133,65.7885544],[128.7065269,65.8181341],[129.2135496,65.8214035],[129.2057115,64.8362408],[127.8753205,64.8277285]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WDT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WDT_N05.11","eo:cloud_cover":92.608041,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003467,"s2:mean_solar_zenith":44.5226742738124,"s2:mean_solar_azimuth":168.523026107826,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.003244,"s2:vegetation_percentage":2.630634,"s2:thin_cirrus_percentage":1.981442,"s2:cloud_shadow_percentage":0.228093,"s2:nodata_pixel_percentage":61.34249,"s2:unclassified_percentage":2.109787,"s2:not_vegetated_percentage":1.963161,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":80.711335,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.915261,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951","bbox":[127.1646008,63.925791,129.2063838,64.9239955],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R60m/T52WDS_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R60m/T52WDS_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.1646008,63.925791],[127.1790362,63.9448436],[127.2877065,64.0870749],[127.3983676,64.2290554],[127.5091714,64.3712024],[127.6227764,64.5129161],[127.7367608,64.6547273],[127.8502661,64.7968679],[127.9469287,64.9159314],[129.2063838,64.9239955],[129.1991056,63.9387126],[127.1646008,63.925791]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WDS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WDS_N05.11","eo:cloud_cover":39.816773,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.976928,"s2:mean_solar_zenith":43.6356587032227,"s2:mean_solar_azimuth":168.459967188638,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.053122,"s2:vegetation_percentage":42.942822,"s2:thin_cirrus_percentage":5.197151,"s2:cloud_shadow_percentage":1.370669,"s2:nodata_pixel_percentage":27.974859,"s2:unclassified_percentage":2.059083,"s2:not_vegetated_percentage":11.335365,"s2:degraded_msi_data_percentage":0.0083,"s2:high_proba_clouds_percentage":26.782978,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":7.836644,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951","bbox":[130.9763539,62.9899815,133.2862441,64.0127512],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R60m/T52VFR_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R60m/T52VFR_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.2162377,63.4889035],[133.1303171,63.4019607],[132.994726,63.2638539],[132.8604581,63.1256284],[132.7301294,62.9899815],[130.9763539,63.0279443],[131.0456808,64.0127512],[133.2862441,63.9638363],[133.2162377,63.4889035]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFR_N05.11","eo:cloud_cover":10.351101,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.941527,"s2:mean_solar_zenith":42.4444820685437,"s2:mean_solar_azimuth":173.856552211937,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.02482,"s2:vegetation_percentage":84.155053,"s2:thin_cirrus_percentage":10.325257,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":4.998215,"s2:unclassified_percentage":0.317888,"s2:not_vegetated_percentage":2.000846,"s2:degraded_msi_data_percentage":0.0214,"s2:high_proba_clouds_percentage":0.000035,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.025809,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951","bbox":[130.9176451,62.1093539,132.8127904,63.1156693],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R60m/T52VFQ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R60m/T52VFQ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.8127904,63.0760156],[132.7275337,62.9872799],[132.5959738,62.8488806],[132.4656772,62.7103375],[132.3362041,62.5716607],[132.2074656,62.4328557],[132.0795897,62.2939248],[132.014806,62.2227676],[131.9519214,62.1538178],[131.9117885,62.1093539],[130.9176451,62.1307003],[130.9823142,63.1156693],[132.8127904,63.0760156]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFQ_N05.11","eo:cloud_cover":5.314786,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.061753,"s2:mean_solar_zenith":41.5550985030653,"s2:mean_solar_azimuth":173.69971435638,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":91.024876,"s2:thin_cirrus_percentage":5.117859,"s2:cloud_shadow_percentage":0.524357,"s2:nodata_pixel_percentage":34.316128,"s2:unclassified_percentage":0.436825,"s2:not_vegetated_percentage":0.565136,"s2:degraded_msi_data_percentage":0.0293,"s2:high_proba_clouds_percentage":0.036056,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.160871,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951","bbox":[130.8627658,61.2274397,131.9899516,62.2184397],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R60m/T52VFP_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R60m/T52VFP_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.9899516,62.1955161],[131.9519214,62.1538178],[131.8263048,62.0146449],[131.7734854,61.9555542],[131.7025895,61.8764038],[131.5792047,61.7370479],[131.4572377,61.5976178],[131.3361918,61.4581338],[131.2161762,61.3185757],[131.1384299,61.2274397],[130.8627658,61.2333094],[130.9232108,62.2184397],[131.9899516,62.1955161]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFP_N05.11","eo:cloud_cover":0.242587,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.536898,"s2:mean_solar_zenith":40.6655719220419,"s2:mean_solar_azimuth":173.54448998684,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":96.210164,"s2:thin_cirrus_percentage":0.000156,"s2:cloud_shadow_percentage":0.661625,"s2:nodata_pixel_percentage":68.093097,"s2:unclassified_percentage":0.582098,"s2:not_vegetated_percentage":0.597519,"s2:degraded_msi_data_percentage":0.0145,"s2:high_proba_clouds_percentage":0.039618,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.202812,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951","bbox":[130.8423379,60.8748244,131.2124947,61.3216015],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R60m/T52VFN_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R60m/T52VFN_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.2124947,61.3142602],[131.0970869,61.1789765],[130.9797062,61.0391954],[130.8627034,60.8993834],[130.8423379,60.8748244],[130.868005,61.3216015],[131.2124947,61.3142602]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFN_N05.11","eo:cloud_cover":0.009899,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.141616,"s2:mean_solar_zenith":39.7764401618711,"s2:mean_solar_azimuth":173.39022892516,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.690014,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.003032,"s2:nodata_pixel_percentage":96.279573,"s2:unclassified_percentage":0.075267,"s2:not_vegetated_percentage":0.072146,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.000357,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.009542,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951","bbox":[128.9995907,63.0251146,131.2455715,64.0271539],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R60m/T52VER_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R60m/T52VER_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995907,64.0271539],[131.2455715,64.0097976],[131.1694829,63.0251146],[128.9996046,63.041742],[128.9995907,64.0271539]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VER","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VER_N05.11","eo:cloud_cover":4.716614,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":7.009887,"s2:mean_solar_zenith":42.5898323635958,"s2:mean_solar_azimuth":171.120065448574,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000189,"s2:vegetation_percentage":86.070371,"s2:thin_cirrus_percentage":4.71378,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.491173,"s2:not_vegetated_percentage":1.652437,"s2:degraded_msi_data_percentage":0.0047,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.002833,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951","bbox":[128.9996034,62.1279766,131.1760247,63.1295192],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R60m/T52VEQ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R60m/T52VEQ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9996034,63.1295192],[131.1760247,63.1128289],[131.1050472,62.1279766],[128.9996163,62.1439815],[128.9996034,63.1295192]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEQ_N05.11","eo:cloud_cover":4.926161,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":6.093029,"s2:mean_solar_zenith":41.7014131027106,"s2:mean_solar_azimuth":171.001607845712,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.765083,"s2:thin_cirrus_percentage":4.925355,"s2:cloud_shadow_percentage":0.000561,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.629424,"s2:not_vegetated_percentage":3.559852,"s2:degraded_msi_data_percentage":0.0033,"s2:high_proba_clouds_percentage":0.000013,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000793,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951","bbox":[128.9996152,61.2306854,131.1111559,62.2317701],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R60m/T52VEP_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R60m/T52VEP_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9996152,62.2317701],[131.1111559,62.2157059],[131.0448136,61.2306854],[128.9996273,61.2461037],[128.9996152,62.2317701]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEP_N05.11","eo:cloud_cover":0.008547,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":4.470636,"s2:mean_solar_zenith":40.8129259048393,"s2:mean_solar_azimuth":170.87977634975,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":92.479879,"s2:thin_cirrus_percentage":0.000282,"s2:cloud_shadow_percentage":0.037405,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.522623,"s2:not_vegetated_percentage":2.433456,"s2:degraded_msi_data_percentage":0.0185,"s2:high_proba_clouds_percentage":0.000899,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.007366,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951","bbox":[128.9996263,60.3381652,131.050564,61.3344425],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R60m/T52VEN_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R60m/T52VEN_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.0372417,61.1077108],[130.9797062,61.0391954],[130.8627034,60.8993834],[130.7465924,60.7593638],[130.6309458,60.619276],[130.575031,60.5508652],[130.5154066,60.4780474],[130.4017775,60.3381652],[128.9996376,60.3486448],[128.9996263,61.3344425],[131.050564,61.318968],[131.0372417,61.1077108]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEN_N05.11","eo:cloud_cover":0.068222,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.089501,"s2:mean_solar_zenith":39.9249157120179,"s2:mean_solar_azimuth":170.754112760966,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.534261,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.162721,"s2:nodata_pixel_percentage":11.716418,"s2:unclassified_percentage":0.056872,"s2:not_vegetated_percentage":0.084025,"s2:degraded_msi_data_percentage":0.0231,"s2:high_proba_clouds_percentage":0.008475,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.059747,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951","bbox":[128.9996366,59.4453304,130.4726708,60.4364568],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R60m/T52VEM_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R60m/T52VEM_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[130.4726708,60.4254378],[130.4014547,60.3377678],[130.2889588,60.197265],[130.2189943,60.109708],[130.1775702,60.0578764],[130.176963,60.0571081],[130.1767648,60.05686],[130.1755344,60.0553004],[130.0665401,59.9173806],[129.9561049,59.7769528],[129.8471001,59.6363193],[129.7393285,59.4955713],[129.7009413,59.4453304],[128.9996473,59.4505251],[128.9996366,60.4364568],[130.4726708,60.4254378]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEM_N05.11","eo:cloud_cover":34.67139,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.262607,"s2:mean_solar_zenith":39.0363297021797,"s2:mean_solar_azimuth":170.623913261053,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":64.85399,"s2:thin_cirrus_percentage":22.233857,"s2:cloud_shadow_percentage":0.013978,"s2:nodata_pixel_percentage":45.096695,"s2:unclassified_percentage":0.034989,"s2:not_vegetated_percentage":0.151711,"s2:degraded_msi_data_percentage":0.0303,"s2:high_proba_clouds_percentage":1.785089,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.652445,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951","bbox":[128.9996463,58.5520155,129.7677234,59.5383491],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R60m/T52VEL_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R60m/T52VEL_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.7677234,59.5326546],[129.7393285,59.4955713],[129.6318376,59.3548878],[129.5256621,59.2140441],[129.4200495,59.0730297],[129.3148762,58.9319202],[129.2100621,58.7908103],[129.1061322,58.6495909],[129.0358358,58.5520155],[128.9996563,58.5522811],[128.9996463,59.5383491],[129.7677234,59.5326546]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEL_N05.11","eo:cloud_cover":91.924906,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":38.1477121807761,"s2:mean_solar_azimuth":170.48875262019,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":7.422899,"s2:thin_cirrus_percentage":11.432301,"s2:cloud_shadow_percentage":0.642389,"s2:nodata_pixel_percentage":79.423267,"s2:unclassified_percentage":0.001322,"s2:not_vegetated_percentage":0.008481,"s2:degraded_msi_data_percentage":0.006,"s2:high_proba_clouds_percentage":17.982896,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":62.509716,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951","bbox":[128.9996555,58.5018767,129.0991687,58.6406562],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R60m/T52VEK_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R60m/T52VEK_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.0991687,58.6399252],[129.0041457,58.5080279],[128.9996568,58.5018767],[128.9996555,58.6406562],[129.0991687,58.6399252]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEK_N05.11","eo:cloud_cover":100.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":37.2596152541718,"s2:mean_solar_azimuth":170.348076961828,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.012802,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.663079,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":59.963173,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":40.024027,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951","bbox":[126.977122,63.0279332,129.1997345,64.0270166],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R60m/T52VDR_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R60m/T52VDR_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.977122,63.6773387],[127.0712145,63.802535],[127.1790362,63.9448436],[127.2322652,64.0145115],[129.1997345,64.0270166],[129.1929602,63.0416105],[127.0228562,63.0279332],[126.977122,63.6773387]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDR_N05.11","eo:cloud_cover":0.046248,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":8.477577,"s2:mean_solar_zenith":42.7491680001305,"s2:mean_solar_azimuth":168.388860780674,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":88.414162,"s2:thin_cirrus_percentage":0.037266,"s2:cloud_shadow_percentage":0.033034,"s2:nodata_pixel_percentage":2.253692,"s2:unclassified_percentage":0.710184,"s2:not_vegetated_percentage":2.224082,"s2:degraded_msi_data_percentage":0.0206,"s2:high_proba_clouds_percentage":0.00058,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.008401,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951","bbox":[127.0168934,62.1306897,129.1935426,63.1293872],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R60m/T52VDQ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R60m/T52VDQ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0168934,63.1156582],[129.1935426,63.1293872],[129.1872239,62.143855],[127.0815883,62.1306897],[127.0168934,63.1156582]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDQ_N05.11","eo:cloud_cover":4.532895,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.381983,"s2:mean_solar_zenith":41.8621575784698,"s2:mean_solar_azimuth":168.309427119423,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.332455,"s2:thin_cirrus_percentage":0.932575,"s2:cloud_shadow_percentage":4.556654,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.507586,"s2:not_vegetated_percentage":6.684162,"s2:degraded_msi_data_percentage":0.0222,"s2:high_proba_clouds_percentage":1.081294,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.519026,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951","bbox":[127.0760204,61.2332992,129.1877677,62.231643],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R60m/T52VDP_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R60m/T52VDP_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0760204,62.2184291],[129.1877677,62.231643],[129.1818621,61.2459818],[127.1364896,61.2332992],[127.0760204,62.2184291]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDP_N05.11","eo:cloud_cover":5.962572,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.812217,"s2:mean_solar_zenith":40.975169144676,"s2:mean_solar_azimuth":168.221622562471,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.394979,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":5.817081,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.569607,"s2:not_vegetated_percentage":1.407165,"s2:degraded_msi_data_percentage":0.016,"s2:high_proba_clouds_percentage":2.054761,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.907811,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951","bbox":[127.1312482,60.3363003,129.1823739,61.3343201],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R60m/T52VDN_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R60m/T52VDN_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.1312482,61.3215913],[129.1823739,61.3343201],[129.1768439,60.3485273],[127.1878754,60.3363003],[127.1312482,61.3215913]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDN_N05.11","eo:cloud_cover":0.321011,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.933388,"s2:mean_solar_zenith":40.0887563936172,"s2:mean_solar_azimuth":168.125212521695,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":95.36674,"s2:thin_cirrus_percentage":0.000272,"s2:cloud_shadow_percentage":0.706696,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.184877,"s2:not_vegetated_percentage":0.423277,"s2:degraded_msi_data_percentage":0.0017,"s2:high_proba_clouds_percentage":0.067886,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.252853,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951","bbox":[127.1829927,59.4386163,129.1773207,60.4363388],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R60m/T52VDM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R60m/T52VDM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.1829927,60.4240684],[129.1773207,60.4363388],[129.1721336,59.4504118],[127.236112,59.4386163],[127.1829927,60.4240684]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDM_N05.11","eo:cloud_cover":47.327846,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.029535,"s2:mean_solar_zenith":39.2018693815406,"s2:mean_solar_azimuth":168.019860507826,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":51.659262,"s2:thin_cirrus_percentage":16.004343,"s2:cloud_shadow_percentage":0.865906,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.025936,"s2:not_vegetated_percentage":0.089638,"s2:degraded_msi_data_percentage":0.0084,"s2:high_proba_clouds_percentage":12.341492,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.982011,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951","bbox":[127.2315279,58.5407855,129.1725812,59.5382354],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R60m/T52VDL_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R60m/T52VDL_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.1686087,58.7344837],[129.1061322,58.6495909],[129.0353728,58.5513728],[127.2814375,58.5407855],[127.2315279,59.5263988],[129.1725812,59.5382354],[129.1686087,58.7344837]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDL_N05.11","eo:cloud_cover":93.35587,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.016872,"s2:mean_solar_zenith":38.3150631080366,"s2:mean_solar_azimuth":167.905246417085,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":5.907575,"s2:thin_cirrus_percentage":26.277691,"s2:cloud_shadow_percentage":0.566101,"s2:nodata_pixel_percentage":0.694115,"s2:unclassified_percentage":0.058368,"s2:not_vegetated_percentage":0.094859,"s2:degraded_msi_data_percentage":0.028,"s2:high_proba_clouds_percentage":24.890532,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":42.187646,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951","bbox":[127.2771006,57.6433463,129.0993167,58.6401306],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R60m/T52VDK_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R60m/T52VDK_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.0993167,58.6401306],[129.0041457,58.5080279],[128.9655697,58.4551675],[128.9003554,58.3658761],[128.7965655,58.2250694],[128.7334728,58.1337096],[128.6989907,58.0840318],[128.5969669,57.9430622],[128.497614,57.8016144],[128.4011714,57.6596215],[128.3943184,57.6497449],[127.3240672,57.6433463],[127.2771006,58.6291209],[129.0993167,58.6401306]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDK_N05.11","eo:cloud_cover":99.998522,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":37.4288897872923,"s2:mean_solar_azimuth":167.781074358126,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":9e-6,"s2:thin_cirrus_percentage":1.261552,"s2:cloud_shadow_percentage":0.001149,"s2:nodata_pixel_percentage":22.927535,"s2:unclassified_percentage":0.000142,"s2:not_vegetated_percentage":0.000181,"s2:degraded_msi_data_percentage":0.0265,"s2:high_proba_clouds_percentage":75.842607,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":22.894354,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951","bbox":[127.3200079,56.7452211,128.4543698,57.7379458],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R60m/T52VDJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R60m/T52VDJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.4543698,57.7379458],[128.4011714,57.6596215],[128.3029818,57.518109],[128.2067018,57.3761853],[128.1100626,57.2343255],[128.0110463,57.0930677],[127.9190438,56.950263],[127.8253816,56.8079231],[127.7851523,56.7477124],[127.3642661,56.7452211],[127.3200079,57.7311575],[128.4543698,57.7379458]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDJ_N05.11","eo:cloud_cover":88.149291,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.006661,"s2:mean_solar_zenith":36.5423098098697,"s2:mean_solar_azimuth":167.646738291023,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.010077,"s2:vegetation_percentage":6.651367,"s2:thin_cirrus_percentage":9.607031,"s2:cloud_shadow_percentage":2.944999,"s2:nodata_pixel_percentage":57.660306,"s2:unclassified_percentage":0.658542,"s2:not_vegetated_percentage":1.438749,"s2:degraded_msi_data_percentage":0.0314,"s2:high_proba_clouds_percentage":44.659731,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":33.882529,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951","bbox":[127.3604383,56.1382728,127.8437979,56.8359107],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R60m/T52VDH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R60m/T52VDH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.8437979,56.8359107],[127.8253816,56.8079231],[127.7844507,56.7466624],[127.7298105,56.6651172],[127.6636084,56.5627038],[127.6382617,56.5235954],[127.5710385,56.4205765],[127.5448612,56.3805035],[127.4530232,56.238231],[127.4230386,56.1907083],[127.3898619,56.1382728],[127.3604383,56.8330467],[127.8437979,56.8359107]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDH_N05.11","eo:cloud_cover":99.999857,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":35.6558828244402,"s2:mean_solar_azimuth":167.501766686448,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.686651,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":90.70968,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000143,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":80.570889,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.742315,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951","bbox":[126.4913407,63.0157988,127.2172106,63.9206225],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R60m/T52VCR_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R60m/T52VCR_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.4913407,63.0157988],[126.5442443,63.0895601],[126.5914974,63.1545953],[126.6477818,63.2318841],[126.7522213,63.3745676],[126.7741412,63.4043398],[126.8578044,63.5175778],[126.9641677,63.6601022],[127.0712145,63.802535],[127.1606848,63.9206225],[127.2172106,63.0305154],[126.4913407,63.0157988]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCR_N05.11","eo:cloud_cover":0.115362,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.82724,"s2:mean_solar_zenith":42.9221743799511,"s2:mean_solar_azimuth":165.669840361009,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":96.303809,"s2:thin_cirrus_percentage":0.00009,"s2:cloud_shadow_percentage":0.260315,"s2:nodata_pixel_percentage":85.300654,"s2:unclassified_percentage":0.439103,"s2:not_vegetated_percentage":1.004424,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.013791,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.101481,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951","bbox":[125.8574215,62.1047625,127.2701768,63.1182501],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R60m/T52VCQ_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R60m/T52VCQ_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.8574215,62.1047625],[125.9440647,62.232065],[126.041841,62.3750828],[126.1404532,62.5180708],[126.2399976,62.661007],[126.340658,62.8038308],[126.4418096,62.9467397],[126.5442443,63.0895601],[126.5554127,63.1049313],[127.2118332,63.1182501],[127.2701768,62.1331753],[125.8574215,62.1047625]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCQ_N05.11","eo:cloud_cover":5.341376,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.304834,"s2:mean_solar_zenith":42.0370052606386,"s2:mean_solar_azimuth":165.629689768671,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":82.501113,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":7.249346,"s2:nodata_pixel_percentage":51.830238,"s2:unclassified_percentage":0.722848,"s2:not_vegetated_percentage":3.875196,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.534252,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.807124,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951","bbox":[125.2743035,61.1949732,127.3196877,62.2209238],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R60m/T52VCP_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R60m/T52VCP_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.2743035,61.2246888],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3699042,61.3723446],[125.4636208,61.5157764],[125.5065532,61.5809699],[125.5583435,61.6594893],[125.654055,61.8027201],[125.749814,61.9460176],[125.8467433,62.0890734],[125.9180275,62.1938091],[127.2651556,62.2209238],[127.3196877,61.2356936],[125.2779445,61.1949732],[125.2743035,61.2246888]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCP_N05.11","eo:cloud_cover":0.771749,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.248412,"s2:mean_solar_zenith":41.1519640110838,"s2:mean_solar_azimuth":165.576204350518,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.241757,"s2:thin_cirrus_percentage":0.030352,"s2:cloud_shadow_percentage":0.985723,"s2:nodata_pixel_percentage":17.972867,"s2:unclassified_percentage":0.266751,"s2:not_vegetated_percentage":4.414283,"s2:degraded_msi_data_percentage":0.0132,"s2:high_proba_clouds_percentage":0.193152,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.548245,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951","bbox":[125.2742181,60.2993491,127.3660277,61.3239944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R60m/T52VCN_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R60m/T52VCN_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.2742181,61.2245552],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3127039,61.284028],[127.314961,61.3239944],[127.3660277,60.3386088],[125.3803718,60.2993491],[125.2742181,61.2245552]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCN_N05.11","eo:cloud_cover":5.284181,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.514631,"s2:mean_solar_zenith":40.2676107637875,"s2:mean_solar_azimuth":165.509433344206,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":88.531071,"s2:thin_cirrus_percentage":2.980587,"s2:cloud_shadow_percentage":2.747851,"s2:nodata_pixel_percentage":0.092269,"s2:unclassified_percentage":0.387848,"s2:not_vegetated_percentage":0.435736,"s2:degraded_msi_data_percentage":0.0223,"s2:high_proba_clouds_percentage":0.849839,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.453755,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951","bbox":[125.3706384,59.4029675,127.4095273,60.426385],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R60m/T52VCM_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R60m/T52VCM_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.3706384,60.386986],[127.3616245,60.426385],[127.4095273,59.4408433],[125.4765375,59.4029675],[125.3706384,60.386986]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCM_N05.11","eo:cloud_cover":54.562652,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000969,"s2:mean_solar_zenith":39.3829023138874,"s2:mean_solar_azimuth":165.429353133968,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":42.078218,"s2:thin_cirrus_percentage":17.758116,"s2:cloud_shadow_percentage":2.886878,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.211021,"s2:not_vegetated_percentage":0.2563,"s2:degraded_msi_data_percentage":0.0222,"s2:high_proba_clouds_percentage":15.312667,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.49187,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951","bbox":[125.467398,58.506372,127.4504014,59.5286335],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R60m/T52VCL_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R60m/T52VCL_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.467398,59.4906256],[127.4053934,59.5286335],[127.4504014,58.5429352],[125.5669133,58.506372],[125.467398,59.4906256]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCL_N05.11","eo:cloud_cover":76.46718,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.084867,"s2:mean_solar_zenith":38.4984031318894,"s2:mean_solar_azimuth":165.335805493598,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001311,"s2:vegetation_percentage":18.992594,"s2:thin_cirrus_percentage":18.077123,"s2:cloud_shadow_percentage":1.707032,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.10983,"s2:not_vegetated_percentage":1.617009,"s2:degraded_msi_data_percentage":0.1382,"s2:high_proba_clouds_percentage":21.402517,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":36.987537,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951","bbox":[125.5582651,57.6101061,127.488844,58.6312781],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R60m/T52VCK_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R60m/T52VCK_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.5582651,58.5945887],[127.4464903,58.6312781],[127.488844,57.6454227],[125.6519254,57.6101061],[125.5582651,58.5945887]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCK_N05.11","eo:cloud_cover":85.446417,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003105,"s2:mean_solar_zenith":37.6146677210644,"s2:mean_solar_azimuth":165.228708429987,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00145,"s2:vegetation_percentage":8.690373,"s2:thin_cirrus_percentage":9.627593,"s2:cloud_shadow_percentage":3.039114,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.310062,"s2:not_vegetated_percentage":1.484424,"s2:degraded_msi_data_percentage":0.0157,"s2:high_proba_clouds_percentage":40.221915,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":35.59691,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951","bbox":[125.6438299,56.7130985,127.5250943,57.7332409],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R60m/T52VCJ_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R60m/T52VCJ_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.6438299,57.6978051],[127.4851834,57.7332409],[127.5250943,56.7472276],[125.7321002,56.7130985],[125.6438299,57.6978051]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCJ_N05.11","eo:cloud_cover":97.759056,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.001977,"s2:mean_solar_zenith":36.7306734519704,"s2:mean_solar_azimuth":165.107555251711,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000153,"s2:vegetation_percentage":0.413011,"s2:thin_cirrus_percentage":4.231559,"s2:cloud_shadow_percentage":1.778043,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.022478,"s2:not_vegetated_percentage":0.022658,"s2:degraded_msi_data_percentage":0.0206,"s2:high_proba_clouds_percentage":46.142748,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":47.384754,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951","bbox":[125.7244654,55.8158913,127.5393279,56.8350599],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R60m/T52VCH_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R60m/T52VCH_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.5393279,56.3719315],[127.4530232,56.238231],[127.4230386,56.1907083],[127.3635027,56.0966123],[127.2728758,55.9543032],[127.2018322,55.8421537],[125.8077653,55.8158913],[125.7244654,56.8008172],[127.5216425,56.8350599],[127.5393279,56.3719315]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCH_N05.11","eo:cloud_cover":99.637979,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":35.8469826643837,"s2:mean_solar_azimuth":164.972040568133,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.049283,"s2:thin_cirrus_percentage":3.240846,"s2:cloud_shadow_percentage":0.29987,"s2:nodata_pixel_percentage":5.534351,"s2:unclassified_percentage":0.01263,"s2:not_vegetated_percentage":0.000239,"s2:degraded_msi_data_percentage":0.0267,"s2:high_proba_clouds_percentage":38.787299,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":57.609838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951","bbox":[125.8005114,54.9190265,127.258534,55.9316633],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R60m/T52UCG_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R60m/T52UCG_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.258534,55.9316633],[127.1827045,55.8119586],[127.0940249,55.6692617],[127.0057939,55.5265009],[126.917857,55.3837001],[126.8299533,55.2409646],[126.74296,55.0980927],[126.6564661,54.9552042],[126.6432996,54.9332676],[125.8792201,54.9190265],[125.8005114,55.9041676],[127.258534,55.9316633]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52UCG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52UCG_N05.11","eo:cloud_cover":98.357725,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":34.9641683856508,"s2:mean_solar_azimuth":164.821706661523,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.787698,"s2:thin_cirrus_percentage":5.856419,"s2:cloud_shadow_percentage":0.69695,"s2:nodata_pixel_percentage":36.292416,"s2:unclassified_percentage":0.155951,"s2:not_vegetated_percentage":0.001677,"s2:degraded_msi_data_percentage":0.0297,"s2:high_proba_clouds_percentage":51.1594,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.34191,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951","bbox":[125.872404,54.0214307,126.6970015,55.0221689],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R60m/T52UCF_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R60m/T52UCF_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.6970015,55.0221689],[126.6564661,54.9552042],[126.5706774,54.8122726],[126.4853614,54.6693457],[126.4006598,54.5263376],[126.3157278,54.3834622],[126.2320757,54.2404286],[126.1492445,54.0972465],[126.1076334,54.0243943],[125.9468576,54.0214307],[125.872404,55.0067836],[126.6970015,55.0221689]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52UCF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52UCF_N05.11","eo:cloud_cover":99.999827,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":34.0812138922962,"s2:mean_solar_azimuth":164.655760015323,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.312156,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":71.359682,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000174,"s2:degraded_msi_data_percentage":0.0129,"s2:high_proba_clouds_percentage":78.24527,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.442401,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951","bbox":[125.9404063,53.7745817,126.1584915,54.1132308],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R60m/T52UCE_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R60m/T52UCE_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.1584915,54.1132308],[126.1492445,54.0972465],[126.0673388,53.9538472],[125.9848749,53.8105611],[125.9643445,53.7745817],[125.9404063,54.1092064],[126.1584915,54.1132308]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52UCE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52UCE_N05.11","eo:cloud_cover":96.291208,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003274,"s2:mean_solar_zenith":33.1987005853998,"s2:mean_solar_azimuth":164.473521748612,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":3.364669,"s2:thin_cirrus_percentage":8.658732,"s2:cloud_shadow_percentage":0.058003,"s2:nodata_pixel_percentage":97.872138,"s2:unclassified_percentage":0.276452,"s2:not_vegetated_percentage":0.006393,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":61.876446,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.756034,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951","bbox":[125.8612845,62.0855865,127.1538391,63.0819513],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R60m/T51VXK_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R60m/T51VXK_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.8612845,62.1104383],[125.9440647,62.232065],[126.041841,62.3750828],[126.1404532,62.5180708],[126.2399976,62.661007],[126.340658,62.8038308],[126.4418096,62.9467397],[126.5387871,63.0819513],[127.1538391,63.0686274],[127.0186771,62.0855865],[125.8612845,62.1104383]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXK_N05.11","eo:cloud_cover":4.719193,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.263164,"s2:mean_solar_zenith":42.0506712037409,"s2:mean_solar_azimuth":165.417113163303,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.87838,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":6.934454,"s2:nodata_pixel_percentage":58.767182,"s2:unclassified_percentage":0.555618,"s2:not_vegetated_percentage":3.645528,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.320873,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.39832,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951","bbox":[125.2742138,61.1898465,127.0303111,62.1970148],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R60m/T51VXJ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R60m/T51VXJ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.2742138,61.2245484],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3699042,61.3723446],[125.4636208,61.5157764],[125.5065532,61.5809699],[125.5583435,61.6594893],[125.654055,61.8027201],[125.749814,61.9460176],[125.8467433,62.0890734],[125.9202093,62.1970148],[127.0303111,62.1731593],[126.903949,61.1898465],[125.2742138,61.2245484]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXJ_N05.11","eo:cloud_cover":0.22014,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.302835,"s2:mean_solar_zenith":41.1867835009883,"s2:mean_solar_azimuth":165.122628454948,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.371725,"s2:thin_cirrus_percentage":0.028434,"s2:cloud_shadow_percentage":0.398179,"s2:nodata_pixel_percentage":34.213015,"s2:unclassified_percentage":0.265908,"s2:not_vegetated_percentage":5.351976,"s2:degraded_msi_data_percentage":0.0064,"s2:high_proba_clouds_percentage":0.036045,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.155662,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951","bbox":[124.8114005,60.2944061,126.914903,61.3117421],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R60m/T51VXH_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R60m/T51VXH_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.8210903,60.5049769],[124.8249807,60.5113176],[124.9138654,60.6549626],[125.0032327,60.7986453],[125.0941823,60.9421125],[125.1853742,61.0856306],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3306535,61.3117421],[126.914903,61.2779804],[126.7965453,60.2944061],[124.8114005,60.3363102],[124.8210903,60.5049769]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXH_N05.11","eo:cloud_cover":7.542037,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.279637,"s2:mean_solar_zenith":40.3238955866215,"s2:mean_solar_azimuth":164.822379623298,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.434909,"s2:thin_cirrus_percentage":3.581131,"s2:cloud_shadow_percentage":4.534865,"s2:nodata_pixel_percentage":9.713614,"s2:unclassified_percentage":0.522446,"s2:not_vegetated_percentage":0.597518,"s2:degraded_msi_data_percentage":0.0176,"s2:high_proba_clouds_percentage":1.54485,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.416056,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951","bbox":[124.7631831,59.3981984,126.8067517,60.4240783],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R60m/T51VXG_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R60m/T51VXG_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.8162812,60.4240783],[126.8067517,60.3820254],[126.6957051,59.3981984],[124.7631831,59.4386259],[124.8162812,60.4240783]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXG_N05.11","eo:cloud_cover":57.89808,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000305,"s2:mean_solar_zenith":39.4610213628829,"s2:mean_solar_azimuth":164.514884494607,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.59192,"s2:thin_cirrus_percentage":17.715505,"s2:cloud_shadow_percentage":4.72235,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.428356,"s2:not_vegetated_percentage":0.355357,"s2:degraded_msi_data_percentage":0.0216,"s2:high_proba_clouds_percentage":14.115481,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":26.067099,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951","bbox":[124.7178757,58.5017681,126.705289,59.5264083],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R60m/T51VXF_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R60m/T51VXF_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.7677654,59.5264083],[126.705289,59.48584],[126.6009344,58.5017681],[124.7178757,58.5407947],[124.7677654,59.5264083]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXF_N05.11","eo:cloud_cover":84.907711,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.051762,"s2:mean_solar_zenith":38.5987462846354,"s2:mean_solar_azimuth":164.199051968167,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00133,"s2:vegetation_percentage":10.837167,"s2:thin_cirrus_percentage":10.934602,"s2:cloud_shadow_percentage":1.625469,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.823939,"s2:not_vegetated_percentage":1.739268,"s2:degraded_msi_data_percentage":0.1559,"s2:high_proba_clouds_percentage":30.019575,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":43.953529,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951","bbox":[124.675263,57.605659,126.6100032,58.6291301],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R60m/T51VXE_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R60m/T51VXE_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.7222109,58.6291301],[126.6100032,58.5899689],[126.5117866,57.605659],[124.675263,57.6433552],[124.7222109,58.6291301]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXE_N05.11","eo:cloud_cover":83.065593,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003457,"s2:mean_solar_zenith":37.737647148645,"s2:mean_solar_azimuth":163.873932455555,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001311,"s2:vegetation_percentage":9.472118,"s2:thin_cirrus_percentage":10.507391,"s2:cloud_shadow_percentage":3.265965,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.934967,"s2:not_vegetated_percentage":2.231472,"s2:degraded_msi_data_percentage":0.0231,"s2:high_proba_clouds_percentage":44.325012,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.233185,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951","bbox":[124.6350802,56.7088008,126.520276,57.7311664],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R60m/T51VXD_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R60m/T51VXD_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6793207,57.7311664],[126.520276,57.6933429],[126.4277099,56.7088008],[124.6350802,56.7452297],[124.6793207,57.7311664]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXD_N05.11","eo:cloud_cover":86.153275,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.045823,"s2:mean_solar_zenith":36.8767690687929,"s2:mean_solar_azimuth":163.537818213253,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000046,"s2:vegetation_percentage":8.697088,"s2:thin_cirrus_percentage":8.987717,"s2:cloud_shadow_percentage":2.873391,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.415002,"s2:not_vegetated_percentage":0.781066,"s2:degraded_msi_data_percentage":0.0258,"s2:high_proba_clouds_percentage":51.484102,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.681457,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951","bbox":[124.5971619,55.811736,126.4357163,56.8330553],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R60m/T51VXC_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R60m/T51VXC_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6389064,56.8330553],[126.4357163,56.7965052],[126.3483613,55.811736],[124.5971619,55.8469564],[124.6389064,56.8330553]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXC_N05.11","eo:cloud_cover":80.37315,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.040378,"s2:mean_solar_zenith":36.0167025115408,"s2:mean_solar_azimuth":163.189664865841,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001802,"s2:vegetation_percentage":13.058314,"s2:thin_cirrus_percentage":9.831335,"s2:cloud_shadow_percentage":5.830083,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.345865,"s2:not_vegetated_percentage":0.336887,"s2:degraded_msi_data_percentage":0.2077,"s2:high_proba_clouds_percentage":28.778237,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.763577,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951","bbox":[124.7173583,60.3337804,125.0193553,60.8240776],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R60m/T51VWH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R60m/T51VWH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.7173583,60.3358065],[124.7368049,60.3676069],[124.8249807,60.5113176],[124.9138654,60.6549626],[125.0032327,60.7986453],[125.0193553,60.8240776],[124.9884362,60.3337804],[124.7173583,60.3358065]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWH_N05.11","eo:cloud_cover":2.231455,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.123831,"s2:mean_solar_zenith":40.6013483995389,"s2:mean_solar_azimuth":162.238556121133,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":94.158405,"s2:thin_cirrus_percentage":1.469386,"s2:cloud_shadow_percentage":1.166013,"s2:nodata_pixel_percentage":96.806538,"s2:unclassified_percentage":0.425865,"s2:not_vegetated_percentage":0.821289,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.140466,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.621603,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951","bbox":[124.1812178,59.4361854,124.9937932,60.4232067],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R60m/T51VWG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R60m/T51VWG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.1812178,59.4417727],[124.2178591,59.5041056],[124.3024279,59.6482388],[124.3884266,59.7921383],[124.4747037,59.9360939],[124.5615303,60.0800233],[124.6489053,60.2238678],[124.7368049,60.3676069],[124.770919,60.4232067],[124.9937932,60.4215395],[124.9355133,59.4361854],[124.1812178,59.4417727]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWG_N05.11","eo:cloud_cover":55.649191,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":39.7418448623104,"s2:mean_solar_azimuth":161.959303472834,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.038169,"s2:thin_cirrus_percentage":22.523712,"s2:cloud_shadow_percentage":7.36936,"s2:nodata_pixel_percentage":75.410157,"s2:unclassified_percentage":0.573913,"s2:not_vegetated_percentage":0.368027,"s2:degraded_msi_data_percentage":0.0011,"s2:high_proba_clouds_percentage":10.974427,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":22.151056,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951","bbox":[123.6714801,58.5384388,124.9405427,59.5292081],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R60m/T51VWF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R60m/T51VWF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.6714801,58.5473506],[123.722775,58.639394],[123.8039467,58.7835312],[123.8853601,58.9276965],[123.9666585,59.0720401],[124.0498987,59.2160415],[124.1332296,59.3601371],[124.2178591,59.5041056],[124.2325877,59.5292081],[124.9405427,59.5239593],[124.8857837,58.5384388],[123.6714801,58.5473506]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWF_N05.11","eo:cloud_cover":81.033099,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.043118,"s2:mean_solar_zenith":38.8831309879419,"s2:mean_solar_azimuth":161.667799182135,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":10.345491,"s2:thin_cirrus_percentage":16.57799,"s2:cloud_shadow_percentage":4.357751,"s2:nodata_pixel_percentage":50.038314,"s2:unclassified_percentage":2.540173,"s2:not_vegetated_percentage":1.678819,"s2:degraded_msi_data_percentage":0.005,"s2:high_proba_clouds_percentage":37.707323,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":26.747787,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951","bbox":[123.1828317,57.6410797,124.8905421,58.6353608],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R60m/T51VWE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R60m/T51VWE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.1828317,57.6531181],[123.2468288,57.7728426],[123.3244985,57.9174652],[123.4033861,58.0619148],[123.481966,58.2065113],[123.5622705,58.3507675],[123.6423679,58.4951117],[123.7205273,58.6353608],[124.8905421,58.6267661],[124.8390116,57.6410797],[123.1828317,57.6531181]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWE_N05.11","eo:cloud_cover":99.754447,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":38.0257934249818,"s2:mean_solar_azimuth":161.363270080768,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":1.372901,"s2:cloud_shadow_percentage":0.24555,"s2:nodata_pixel_percentage":24.488933,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0105,"s2:high_proba_clouds_percentage":72.708732,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.672811,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951","bbox":[122.999668,56.7430308,124.8434653,57.7406252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R60m/T51VWD_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R60m/T51VWD_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.999668,57.3064169],[123.0167676,57.3389609],[123.0928648,57.4836288],[123.1695307,57.6282349],[123.2296074,57.7406252],[124.8434653,57.7288832],[124.794906,56.7430308],[122.9996729,56.7559505],[122.999668,57.3064169]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWD_N05.11","eo:cloud_cover":96.187341,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.002037,"s2:mean_solar_zenith":37.1688958453377,"s2:mean_solar_azimuth":161.04420339059,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":2.456396,"s2:thin_cirrus_percentage":3.343562,"s2:cloud_shadow_percentage":0.507342,"s2:nodata_pixel_percentage":2.935342,"s2:unclassified_percentage":0.74617,"s2:not_vegetated_percentage":0.086305,"s2:degraded_msi_data_percentage":0.0291,"s2:high_proba_clouds_percentage":51.66654,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.177237,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951","bbox":[122.9996721,55.8448305,124.7991059,56.8438118],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R60m/T51VWC_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R60m/T51VWC_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.9996721,56.8438118],[124.7991059,56.8308491],[124.7532859,55.8448305],[122.9996805,55.8573211],[122.9996721,56.8438118]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWC_N05.11","eo:cloud_cover":61.630154,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.030153,"s2:mean_solar_zenith":36.3130386398673,"s2:mean_solar_azimuth":160.709692363544,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.016443,"s2:vegetation_percentage":24.218497,"s2:thin_cirrus_percentage":7.01362,"s2:cloud_shadow_percentage":11.141433,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.582566,"s2:not_vegetated_percentage":2.323748,"s2:degraded_msi_data_percentage":0.1589,"s2:high_proba_clouds_percentage":29.178974,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.437561,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951","bbox":[122.7126308,56.7532025,123.1633916,57.6166554],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R60m/T51VVD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R60m/T51VVD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.7126308,56.7532025],[122.7162521,56.7604165],[122.790841,56.9050909],[122.8653564,57.0498061],[122.9408001,57.1943794],[123.0167676,57.3389609],[123.0928648,57.4836288],[123.1633916,57.6166554],[123.1596203,56.7558483],[122.7126308,56.7532025]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VVD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VVD_N05.11","eo:cloud_cover":92.885494,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.011394,"s2:mean_solar_zenith":37.4767638724535,"s2:mean_solar_azimuth":158.568712849072,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":3.241396,"s2:thin_cirrus_percentage":14.323263,"s2:cloud_shadow_percentage":0.650767,"s2:nodata_pixel_percentage":89.516771,"s2:unclassified_percentage":0.875791,"s2:not_vegetated_percentage":2.301516,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":49.858767,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.703463,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951","bbox":[122.2595518,55.851971,123.159994,56.8437093],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R60m/T51VVC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R60m/T51VVC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.2595518,55.851971],[122.2790468,55.8910374],[122.3491953,56.0363776],[122.4226852,56.1810109],[122.4957057,56.325857],[122.5695814,56.4705657],[122.6434336,56.6153529],[122.7162521,56.7604165],[122.7579667,56.8413273],[123.159994,56.8437093],[123.1559167,55.8572224],[122.2595518,55.851971]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VVC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VVC_N05.11","eo:cloud_cover":98.473299,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000751,"s2:mean_solar_zenith":36.6255546904771,"s2:mean_solar_azimuth":158.249173729644,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.333282,"s2:thin_cirrus_percentage":2.277825,"s2:cloud_shadow_percentage":1.097256,"s2:nodata_pixel_percentage":63.752663,"s2:unclassified_percentage":0.074426,"s2:not_vegetated_percentage":0.018966,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":21.215393,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":74.98008,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951","bbox":[126.045107,53.9152179,126.1543823,54.109222],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R60m/T51UYV_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R60m/T51UYV_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.1543823,54.1061278],[126.1492445,54.0972465],[126.0673388,53.9538472],[126.045107,53.9152179],[126.0589827,54.109222],[126.1543823,54.1061278]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UYV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UYV_N05.11","eo:cloud_cover":99.981284,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":33.1506421165131,"s2:mean_solar_azimuth":164.537132209352,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000645,"s2:thin_cirrus_percentage":0.393647,"s2:cloud_shadow_percentage":0.001291,"s2:nodata_pixel_percentage":99.485868,"s2:unclassified_percentage":0.008389,"s2:not_vegetated_percentage":0.008389,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":93.898463,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":5.689174,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736","bbox":[124.4953796,53.1302708,125.8664881,53.8933641],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R60m/T51UXV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R60m/T51UXV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.4884241,53.6901522],[125.4885654,53.6904054],[125.4891078,53.6902887],[125.4894449,53.6908929],[125.5039535,53.6874959],[125.503751,53.687133],[125.6506011,53.6531602],[125.8664881,53.6026128],[125.7859926,53.4606453],[125.7054103,53.3171489],[125.6253696,53.1736377],[125.6012551,53.1302708],[124.4953796,53.1517855],[124.5219295,53.8933641],[124.7816897,53.8417288],[124.7817719,53.8418812],[124.7821093,53.8418142],[124.7824295,53.8424074],[124.9417879,53.8085628],[125.1531166,53.7635297],[125.1531058,53.76351],[125.1535946,53.7634037],[125.1534731,53.7631817],[125.1537243,53.7631272],[125.1537101,53.7631014],[125.1540333,53.7630313],[125.1539083,53.762803],[125.1539368,53.7627968],[125.1536511,53.7622749],[125.4884241,53.6901522]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UXV_N05.11","eo:cloud_cover":57.297868,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.051528,"s2:mean_solar_zenith":33.4428233592958,"s2:mean_solar_azimuth":162.058972933642,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":38.879889,"s2:thin_cirrus_percentage":21.175461,"s2:cloud_shadow_percentage":1.375699,"s2:nodata_pixel_percentage":52.880234,"s2:unclassified_percentage":0.661029,"s2:not_vegetated_percentage":1.733291,"s2:degraded_msi_data_percentage":0.0264,"s2:high_proba_clouds_percentage":18.629491,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":17.492916,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951","bbox":[124.5154737,53.4389177,126.15453,54.1383733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R60m/T51UXV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R60m/T51UXV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.5141266,53.4995389],[125.4119279,53.5234491],[125.4118286,53.523271],[125.4117048,53.5233],[125.4115105,53.5229515],[125.3948381,53.5265454],[125.3950925,53.5270036],[125.0625067,53.5992397],[125.0624721,53.5991765],[125.0382765,53.6042932],[125.0382994,53.6043352],[125.038216,53.6043529],[125.0383493,53.6045975],[124.7113843,53.6741125],[124.7113072,53.6739695],[124.7101066,53.6742254],[124.710092,53.6741983],[124.7100034,53.6742172],[124.7097646,53.6737754],[124.7088823,53.6739509],[124.6918944,53.6775433],[124.6920168,53.6777704],[124.5154737,53.7130452],[124.5307013,54.1383733],[126.15453,54.106383],[126.1492445,54.0972465],[126.0673388,53.9538472],[125.9848749,53.8105611],[125.9030535,53.6671698],[125.8216955,53.5237566],[125.7738209,53.4389177],[125.5141266,53.4995389]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UXV_N05.11","eo:cloud_cover":75.041485,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.015173,"s2:mean_solar_zenith":33.4428233592958,"s2:mean_solar_azimuth":162.058972933642,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":20.049483,"s2:thin_cirrus_percentage":21.57958,"s2:cloud_shadow_percentage":2.185212,"s2:nodata_pixel_percentage":50.558668,"s2:unclassified_percentage":0.303577,"s2:not_vegetated_percentage":2.394095,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":25.175184,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.286716,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736","bbox":[124.4649804,52.2409272,125.649989,53.2402083],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R60m/T51UXU_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R60m/T51UXU_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.649989,53.2177799],[125.6253696,53.1736377],[125.5456072,53.0301951],[125.4665804,52.8866619],[125.3880901,52.7430708],[125.3099468,52.5994597],[125.2321784,52.4558624],[125.1550113,52.3121694],[125.1166706,52.2409272],[124.4649804,52.2534568],[124.4984604,53.2402083],[125.649989,53.2177799]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UXU_N05.11","eo:cloud_cover":78.283638,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.117534,"s2:mean_solar_zenith":32.5874882578317,"s2:mean_solar_azimuth":161.648350107667,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":16.530271,"s2:thin_cirrus_percentage":14.665918,"s2:cloud_shadow_percentage":0.601585,"s2:nodata_pixel_percentage":44.84674,"s2:unclassified_percentage":2.471653,"s2:not_vegetated_percentage":1.994159,"s2:degraded_msi_data_percentage":0.0306,"s2:high_proba_clouds_percentage":42.633015,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":20.984702,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736","bbox":[124.4361206,51.3503969,125.1634942,52.3413551],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R60m/T51UXT_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R60m/T51UXT_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.1634942,52.3279654],[125.1550113,52.3121694],[125.0776825,52.168482],[125.0011792,52.0245944],[124.9247977,51.8807541],[124.8488376,51.7368822],[124.7740366,51.5928144],[124.6995434,51.4487578],[124.6489659,51.3503969],[124.4361206,51.3544394],[124.4678842,52.3413551],[125.1634942,52.3279654]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UXT_N05.11","eo:cloud_cover":42.99162,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.008262,"s2:mean_solar_zenith":31.7329884341935,"s2:mean_solar_azimuth":161.21765425791,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":49.09727,"s2:thin_cirrus_percentage":7.465654,"s2:cloud_shadow_percentage":3.823742,"s2:nodata_pixel_percentage":71.850431,"s2:unclassified_percentage":3.486861,"s2:not_vegetated_percentage":0.590113,"s2:degraded_msi_data_percentage":0.0137,"s2:high_proba_clouds_percentage":20.667204,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.858763,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951","bbox":[124.5613574,54.9150072,126.3559683,55.9353354],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R60m/T51UXB_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R60m/T51UXB_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6007969,55.9353354],[126.3559683,55.8999986],[126.2734267,54.9150072],[124.5613574,54.949074],[124.6007969,55.9353354]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UXB_N05.11","eo:cloud_cover":88.807923,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.020468,"s2:mean_solar_zenith":35.1580547342679,"s2:mean_solar_azimuth":162.828282523976,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":9.042518,"s2:thin_cirrus_percentage":24.010889,"s2:cloud_shadow_percentage":1.367089,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.223838,"s2:not_vegetated_percentage":0.532002,"s2:degraded_msi_data_percentage":0.0269,"s2:high_proba_clouds_percentage":33.219445,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":31.57759,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951","bbox":[122.9996938,53.6836594,124.6803359,54.1481041],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R60m/T51UWV_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R60m/T51UWV_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6625437,53.6836594],[124.3645949,53.7431921],[124.3645896,53.7431821],[124.3424073,53.7474544],[124.3426493,53.7479108],[124.0176633,53.8106443],[124.017598,53.810519],[124.0164772,53.8107353],[124.0162841,53.8103658],[124.0059661,53.8122532],[123.9970036,53.8139794],[123.9973736,53.8146887],[123.6701786,53.874526],[123.669832,53.8738516],[123.6573272,53.8760265],[123.648813,53.8775839],[123.6489988,53.8779461],[123.6486847,53.8780006],[123.6487191,53.8780676],[123.64867,53.8780761],[123.6486992,53.8781329],[123.3008855,53.9384707],[123.2994055,53.9387182],[123.2994322,53.9387709],[123.2071657,53.954145],[122.9996949,53.9888438],[122.9996938,54.1481041],[124.6803359,54.1363774],[124.6625437,53.6836594]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UWV_N05.11","eo:cloud_cover":30.101115,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.016995,"s2:mean_solar_zenith":33.7533105076474,"s2:mean_solar_azimuth":159.600653364513,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.237719,"s2:thin_cirrus_percentage":12.295584,"s2:cloud_shadow_percentage":8.178432,"s2:nodata_pixel_percentage":69.2334,"s2:unclassified_percentage":1.578633,"s2:not_vegetated_percentage":0.859638,"s2:degraded_msi_data_percentage":0.0011,"s2:high_proba_clouds_percentage":8.614112,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.191418,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736","bbox":[122.9997279,47.930217,123.3765395,48.753013],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R60m/T51UWP_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R60m/T51UWP_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.3765395,48.7505719],[123.3585612,48.7119546],[123.3552534,48.7048697],[123.3513598,48.6965415],[123.2878676,48.5609815],[123.2215248,48.4159299],[123.1546532,48.2710565],[123.0884539,48.1260927],[123.0227773,47.9810966],[122.9997322,47.930217],[122.9997279,48.753013],[123.3765395,48.7505719]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UWP_N05.11","eo:cloud_cover":63.980716,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":28.6794760102683,"s2:mean_solar_azimuth":156.759918302674,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":34.175,"s2:thin_cirrus_percentage":30.567065,"s2:cloud_shadow_percentage":0.858481,"s2:nodata_pixel_percentage":89.681041,"s2:unclassified_percentage":0.258059,"s2:not_vegetated_percentage":0.727008,"s2:degraded_msi_data_percentage":0.0003,"s2:high_proba_clouds_percentage":11.811411,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.60224,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951","bbox":[122.9996798,54.9470178,124.7572757,55.9457344],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R60m/T51UWB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R60m/T51UWB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.9996798,55.9457344],[124.7572757,55.9332025],[124.7139855,54.9470178],[122.9996877,54.9590989],[122.9996798,55.9457344]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UWB_N05.11","eo:cloud_cover":49.787244,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.044164,"s2:mean_solar_zenith":35.4588406100177,"s2:mean_solar_azimuth":160.358673885298,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":37.789297,"s2:thin_cirrus_percentage":13.094236,"s2:cloud_shadow_percentage":10.389226,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.397232,"s2:not_vegetated_percentage":1.566494,"s2:degraded_msi_data_percentage":0.1166,"s2:high_proba_clouds_percentage":17.587948,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":19.105059,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736","bbox":[122.9996936,54.0555765,123.6635938,54.1679624],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R60m/T51UWA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R60m/T51UWA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.9996936,54.1679624],[123.0491081,54.1603337],[123.0489318,54.1599803],[123.049026,54.1599646],[123.0487058,54.1593229],[123.382052,54.1037045],[123.382073,54.1037458],[123.3821003,54.1037413],[123.3821741,54.1038871],[123.3823408,54.1038593],[123.3824132,54.1040024],[123.3824393,54.103998],[123.3824639,54.1040465],[123.3828133,54.1039882],[123.3829292,54.1042174],[123.6635938,54.0555765],[122.9996944,54.0602038],[122.9996936,54.1679624]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UWA_N05.11","eo:cloud_cover":8.451172,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.065912,"s2:mean_solar_zenith":34.6053844976197,"s2:mean_solar_azimuth":159.989421016063,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":87.770379,"s2:thin_cirrus_percentage":0.290421,"s2:cloud_shadow_percentage":1.6381,"s2:nodata_pixel_percentage":97.880805,"s2:unclassified_percentage":0.714232,"s2:not_vegetated_percentage":1.220707,"s2:degraded_msi_data_percentage":0.0028,"s2:high_proba_clouds_percentage":4.407667,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.753084,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951","bbox":[122.999687,54.0485147,124.7177342,55.046986],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R60m/T51UWA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R60m/T51UWA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.999687,55.046986],[124.7177342,55.0348657],[124.6767881,54.0485147],[122.9996944,54.0602038],[122.999687,55.046986]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UWA_N05.11","eo:cloud_cover":28.662688,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.010066,"s2:mean_solar_zenith":34.6053844976197,"s2:mean_solar_azimuth":159.989421016063,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.858567,"s2:thin_cirrus_percentage":11.501379,"s2:cloud_shadow_percentage":10.085355,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.358572,"s2:not_vegetated_percentage":0.998374,"s2:degraded_msi_data_percentage":0.0181,"s2:high_proba_clouds_percentage":8.541209,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.6201,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951","bbox":[121.9838497,53.9639095,123.1494256,54.1480114],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R60m/T51UVV_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R60m/T51UVV_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.1487821,53.9639095],[122.9479832,53.9974924],[122.9481262,53.9977808],[122.6132063,54.0496365],[122.6131096,54.049439],[122.5886183,54.0532539],[122.5886636,54.0533466],[122.2889777,54.0984146],[122.2284259,54.1076076],[122.2286166,54.1080021],[122.2278167,54.108111],[122.2278316,54.1081418],[122.1761686,54.1151418],[121.9838497,54.1413221],[123.1494256,54.1480114],[123.1487821,53.9639095]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UVV_N05.11","eo:cloud_cover":3.08952,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.017315,"s2:mean_solar_zenith":34.0813654983863,"s2:mean_solar_azimuth":157.166422690752,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":92.764705,"s2:thin_cirrus_percentage":0.131603,"s2:cloud_shadow_percentage":2.433042,"s2:nodata_pixel_percentage":93.5233,"s2:unclassified_percentage":0.330672,"s2:not_vegetated_percentage":1.343744,"s2:degraded_msi_data_percentage":0.0402,"s2:high_proba_clouds_percentage":0.973729,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.984188,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951","bbox":[121.8245577,54.9513065,123.1562717,55.9456353],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R60m/T51UVB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R60m/T51UVB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.8245577,54.9513065],[121.8573636,55.0210211],[121.9265895,55.1661143],[121.99571,55.3112522],[122.0657173,55.4562553],[122.1360145,55.6013198],[122.2068202,55.7463008],[122.2790468,55.8910374],[122.3029832,55.9406311],[123.1562717,55.9456353],[123.1524197,54.9590034],[121.8245577,54.9513065]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UVB_N05.11","eo:cloud_cover":87.740666,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.040295,"s2:mean_solar_zenith":35.7762565582716,"s2:mean_solar_azimuth":157.909946927641,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":8.209021,"s2:thin_cirrus_percentage":4.126655,"s2:cloud_shadow_percentage":3.075512,"s2:nodata_pixel_percentage":37.455398,"s2:unclassified_percentage":0.626232,"s2:not_vegetated_percentage":0.301926,"s2:degraded_msi_data_percentage":0.8614,"s2:high_proba_clouds_percentage":18.792695,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":64.821315,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736","bbox":[121.4668827,54.0504964,123.1494142,54.3749405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R60m/T51UVA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R60m/T51UVA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.4668827,54.1836475],[121.4887371,54.230434],[121.5558041,54.3749405],[121.9281611,54.3242906],[121.9282534,54.3244854],[121.928668,54.3244291],[121.9287311,54.3245624],[121.9290838,54.3245147],[121.9291289,54.32461],[121.9295965,54.3245468],[121.9297185,54.3248042],[121.9301434,54.324747],[121.9301624,54.3247872],[121.9305235,54.3247387],[121.9306037,54.3249078],[121.9308485,54.324875],[121.9308513,54.324881],[122.293863,54.2755855],[122.3246217,54.2713226],[122.3244758,54.2710202],[122.3247688,54.2709758],[122.3246482,54.2707258],[122.325808,54.2705502],[122.3257694,54.2704702],[122.3261054,54.2704194],[122.326099,54.2704061],[122.3264015,54.2703605],[122.3263961,54.2703493],[122.375888,54.2628902],[122.3867791,54.2612461],[122.6681326,54.2187082],[122.6681627,54.2187697],[122.6684173,54.2187312],[122.6684497,54.2187973],[122.6686699,54.2187641],[122.6687585,54.2189444],[122.668847,54.218931],[122.6688765,54.2189911],[122.6689649,54.2189778],[122.6689848,54.2190182],[123.0491081,54.1603337],[123.0489318,54.1599803],[123.049026,54.1599646],[123.0487058,54.1593229],[123.1494142,54.1425198],[123.14911,54.0601114],[121.4719201,54.0504964],[121.4668827,54.1836475]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UVA_N05.11","eo:cloud_cover":16.879188,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.006543,"s2:mean_solar_zenith":34.9279765778761,"s2:mean_solar_azimuth":157.549415349823,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":70.123202,"s2:thin_cirrus_percentage":0.069427,"s2:cloud_shadow_percentage":10.63133,"s2:nodata_pixel_percentage":79.059011,"s2:unclassified_percentage":0.881372,"s2:not_vegetated_percentage":1.458544,"s2:degraded_msi_data_percentage":0.0188,"s2:high_proba_clouds_percentage":8.416358,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.393401,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951","bbox":[121.4790494,54.056768,123.1527533,55.0468902],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R60m/T51UVA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R60m/T51UVA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.5659122,54.056768],[122.2889777,54.0984146],[122.2284259,54.1076076],[122.2286166,54.1080021],[122.2278167,54.108111],[122.2278316,54.1081418],[122.1761686,54.1151418],[121.8811708,54.1552997],[121.8810903,54.1551292],[121.8806732,54.1551863],[121.8806703,54.1551802],[121.8794626,54.1553438],[121.8793785,54.155165],[121.8535206,54.1587227],[121.8538059,54.1593139],[121.4790494,54.2095157],[121.5188676,54.2942384],[121.5851657,54.439808],[121.6527232,54.5851212],[121.7207465,54.7304114],[121.788983,54.8757081],[121.8573636,55.0210211],[121.8661441,55.0394246],[123.1527533,55.0468902],[123.14911,54.0601114],[122.5659122,54.056768]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UVA_N05.11","eo:cloud_cover":52.653968,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003285,"s2:mean_solar_zenith":34.9279765778761,"s2:mean_solar_azimuth":157.549415349823,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":37.74555,"s2:thin_cirrus_percentage":1.242309,"s2:cloud_shadow_percentage":7.265861,"s2:nodata_pixel_percentage":16.475068,"s2:unclassified_percentage":1.050488,"s2:not_vegetated_percentage":1.254543,"s2:degraded_msi_data_percentage":2.0749,"s2:high_proba_clouds_percentage":16.001086,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":35.410574,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736","bbox":[120.9984315,53.1416409,121.6511208,54.1401868],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R60m/T51UUV_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R60m/T51UUV_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.9984315,53.1416409],[121.0293857,53.2129719],[121.0939341,53.3584219],[121.1582032,53.5039295],[121.2234148,53.6493069],[121.2891205,53.7946536],[121.3556109,53.9398481],[121.4209831,54.0853839],[121.4450805,54.1369727],[121.6192567,54.1401868],[121.6511208,53.1535351],[120.9984315,53.1416409]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UUV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UUV_N05.11","eo:cloud_cover":4.091585,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.931335,"s2:mean_solar_zenith":34.4261817607303,"s2:mean_solar_azimuth":154.760325095232,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":91.110557,"s2:thin_cirrus_percentage":1.435339,"s2:cloud_shadow_percentage":3.054372,"s2:nodata_pixel_percentage":75.347459,"s2:unclassified_percentage":0.269249,"s2:not_vegetated_percentage":0.481111,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.107008,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.549238,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736","bbox":[120.6056024,52.2358279,121.6785441,53.2419635],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R60m/T51UUU_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R60m/T51UUU_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.6056024,52.2358279],[120.6495214,52.3393057],[120.7117381,52.4850079],[120.7745227,52.6306574],[120.8384771,52.7760809],[120.9017741,52.9217141],[120.9661176,53.0671769],[121.0293857,53.2129719],[121.0373045,53.2308157],[121.6483415,53.2419635],[121.6785441,52.2551507],[120.6056024,52.2358279]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UUU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UUU_N05.11","eo:cloud_cover":29.20112,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.027118,"s2:mean_solar_zenith":33.5881135017548,"s2:mean_solar_azimuth":154.358239976182,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":65.406787,"s2:thin_cirrus_percentage":14.649937,"s2:cloud_shadow_percentage":4.400674,"s2:nodata_pixel_percentage":48.51661,"s2:unclassified_percentage":0.382532,"s2:not_vegetated_percentage":0.568262,"s2:degraded_msi_data_percentage":0.1776,"s2:high_proba_clouds_percentage":5.582973,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.968209,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736","bbox":[121.4043239,54.0482962,121.6221725,54.3749405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R60m/T51UUA_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R60m/T51UUA_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.4043239,54.0482962],[121.4209831,54.0853839],[121.4887371,54.230434],[121.5558041,54.3749405],[121.6114247,54.3673747],[121.6221725,54.0523118],[121.4043239,54.0482962]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UUA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UUA_N05.11","eo:cloud_cover":25.536171,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":35.2668931326153,"s2:mean_solar_azimuth":155.135981523394,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":53.405219,"s2:thin_cirrus_percentage":0.00171,"s2:cloud_shadow_percentage":18.725342,"s2:nodata_pixel_percentage":97.477144,"s2:unclassified_percentage":0.516839,"s2:not_vegetated_percentage":1.798414,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":12.719624,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":12.814838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736","bbox":[121.7069511,45.0581917,122.1752693,46.0486504],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R60m/T51TVL_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R60m/T51TVL_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.1752693,46.0486504],[122.1329686,45.9488702],[122.0720409,45.8035458],[122.0110653,45.6582561],[121.9502934,45.5129648],[121.8899568,45.3675816],[121.8298896,45.2221331],[121.8252616,45.2109057],[121.7701436,45.0773904],[121.7623215,45.0583569],[121.7294164,45.0581917],[121.7069511,46.0462596],[122.1752693,46.0486504]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TVL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TVL_N05.11","eo:cloud_cover":98.190892,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000057,"s2:mean_solar_zenith":26.5701043469989,"s2:mean_solar_azimuth":152.40220453019,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.665535,"s2:thin_cirrus_percentage":3.684097,"s2:cloud_shadow_percentage":1.088557,"s2:nodata_pixel_percentage":82.523805,"s2:unclassified_percentage":0.051316,"s2:not_vegetated_percentage":0.00131,"s2:degraded_msi_data_percentage":0.0629,"s2:high_proba_clouds_percentage":58.089715,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":36.417076,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736","bbox":[121.7274503,44.9821886,121.7989239,45.1471066],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R60m/T51TVK_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R60m/T51TVK_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.7989239,45.1471066],[121.7701436,45.0773904],[121.7310193,44.9821886],[121.7274503,45.1467472],[121.7989239,45.1471066]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TVK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TVK_N05.11","eo:cloud_cover":100.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":25.7525590817109,"s2:mean_solar_azimuth":151.679725430971,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.615014,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":99.540663,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.459336,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736","bbox":[120.5688037,42.060235,120.7221903,42.429263],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R60m/T51TUG_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R60m/T51TUG_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.7221903,42.429263],[120.676057,42.3076801],[120.6206454,42.1618905],[120.5826297,42.060235],[120.5688037,42.4269017],[120.7221903,42.429263]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TUG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TUG_N05.11","eo:cloud_cover":99.987483,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":23.7890219812945,"s2:mean_solar_azimuth":146.652794097916,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.352288,"s2:cloud_shadow_percentage":0.00634,"s2:nodata_pixel_percentage":97.959131,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.006178,"s2:degraded_msi_data_percentage":0.0599,"s2:high_proba_clouds_percentage":66.681027,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":32.954165,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736","bbox":[119.4545363,39.6090131,120.0489377,40.6113254],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R60m/T51TTE_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R60m/T51TTE_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.0489377,40.6113254],[120.0282934,40.5542995],[119.9758153,40.4080915],[119.9230646,40.2620155],[119.8714404,40.1156798],[119.8513154,40.0589762],[119.819189,39.9686227],[119.7672769,39.8222937],[119.7387107,39.7415223],[119.7157065,39.6765674],[119.6935001,39.6136387],[119.5054874,39.6090131],[119.4545363,40.5964015],[120.0489377,40.6113254]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TTE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TTE_N05.11","eo:cloud_cover":80.006087,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":17.062339,"s2:mean_solar_zenith":22.7403756866213,"s2:mean_solar_azimuth":142.117565763747,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000243,"s2:vegetation_percentage":1.548352,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.00516,"s2:nodata_pixel_percentage":69.909889,"s2:unclassified_percentage":0.602656,"s2:not_vegetated_percentage":0.769749,"s2:degraded_msi_data_percentage":0.2965,"s2:high_proba_clouds_percentage":75.100821,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":4.905267,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736","bbox":[119.5010231,39.1430719,119.7250791,39.703032],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R60m/T51STD_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R60m/T51STD_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.7250791,39.703032],[119.7157065,39.6765674],[119.6640093,39.5300675],[119.6124705,39.3835187],[119.5611444,39.2369834],[119.528373,39.1430719],[119.5010231,39.6975095],[119.7250791,39.703032]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51STD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51STD_N05.11","eo:cloud_cover":2.799612,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":97.144371,"s2:mean_solar_zenith":21.9895965995577,"s2:mean_solar_azimuth":140.961465471589,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":95.220464,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.05602,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.027767,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.771845,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736","bbox":[120.5925969,52.1754847,121.634183,53.1792832],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R60m/T50UQD_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R60m/T50UQD_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.5925969,52.2051856],[120.6495214,52.3393057],[120.7117381,52.4850079],[120.7745227,52.6306574],[120.8384771,52.7760809],[120.9017741,52.9217141],[120.9661176,53.0671769],[121.0147664,53.1792832],[121.634183,53.159422],[121.5310322,52.1754847],[120.5925969,52.2051856]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UQD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UQD_N05.11","eo:cloud_cover":25.962237,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.047666,"s2:mean_solar_zenith":33.5713724823885,"s2:mean_solar_azimuth":154.209458513207,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":68.457073,"s2:thin_cirrus_percentage":14.526783,"s2:cloud_shadow_percentage":4.580833,"s2:nodata_pixel_percentage":52.271348,"s2:unclassified_percentage":0.378007,"s2:not_vegetated_percentage":0.564111,"s2:degraded_msi_data_percentage":0.0622,"s2:high_proba_clouds_percentage":4.97154,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.463914,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736","bbox":[120.2219412,51.2789252,121.5399797,52.2919894],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R60m/T50UQC_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R60m/T50UQC_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.2219412,51.3170712],[120.2227487,51.3190554],[120.2831008,51.4648783],[120.3435517,51.6106504],[120.4035932,51.7565431],[120.4652142,51.9021099],[120.5259895,52.0479574],[120.58769,52.1936244],[120.629439,52.2919894],[121.5399797,52.2631374],[121.4420952,51.2789252],[120.2219412,51.3170712]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UQC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UQC_N05.11","eo:cloud_cover":31.898367,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.214088,"s2:mean_solar_zenith":32.7693558338171,"s2:mean_solar_azimuth":153.582585084605,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":54.990929,"s2:thin_cirrus_percentage":5.04574,"s2:cloud_shadow_percentage":11.602494,"s2:nodata_pixel_percentage":33.275384,"s2:unclassified_percentage":0.805883,"s2:not_vegetated_percentage":0.448126,"s2:degraded_msi_data_percentage":0.1617,"s2:high_proba_clouds_percentage":14.983115,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.869514,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736","bbox":[119.169004,48.6298216,119.9045728,49.6229567],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R60m/T50UPV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R60m/T50UPV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.169004,48.6422133],[119.1869991,48.6899548],[119.2419162,48.8362346],[119.2974718,48.9824502],[119.3533039,49.128699],[119.4092168,49.2749858],[119.4656067,49.4212239],[119.5224453,49.5673876],[119.544024,49.6229567],[119.9045728,49.6162737],[119.8474785,48.6298216],[119.169004,48.6422133]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UPV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UPV_N05.11","eo:cloud_cover":28.28463,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.360298,"s2:mean_solar_zenith":30.8534709153541,"s2:mean_solar_azimuth":149.224726944608,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000436,"s2:vegetation_percentage":47.813132,"s2:thin_cirrus_percentage":0.020456,"s2:cloud_shadow_percentage":13.622352,"s2:nodata_pixel_percentage":65.792853,"s2:unclassified_percentage":0.628211,"s2:not_vegetated_percentage":9.29018,"s2:degraded_msi_data_percentage":0.0525,"s2:high_proba_clouds_percentage":17.138596,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.12558,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736","bbox":[119.5100935,49.5284183,119.9593861,50.5158587],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R60m/T50UPA_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R60m/T50UPA_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.5100935,49.5356243],[119.5224453,49.5673876],[119.5792112,49.7135705],[119.6363844,49.8596112],[119.6936125,50.0056639],[119.7510548,50.1516985],[119.8090594,50.2976236],[119.8668884,50.4436337],[119.8960822,50.5158587],[119.9593861,50.51467],[119.8993597,49.5284183],[119.5100935,49.5356243]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UPA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UPA_N05.11","eo:cloud_cover":22.555679,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.007636,"s2:mean_solar_zenith":31.6359537791406,"s2:mean_solar_azimuth":149.938004776559,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.772295,"s2:thin_cirrus_percentage":0.005205,"s2:cloud_shadow_percentage":14.883555,"s2:nodata_pixel_percentage":85.531396,"s2:unclassified_percentage":0.312989,"s2:not_vegetated_percentage":2.459519,"s2:degraded_msi_data_percentage":0.0117,"s2:high_proba_clouds_percentage":12.131319,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.419154,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736","bbox":[119.5794595,45.8957353,121.0656571,46.9235731],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R60m/T50TQS_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R60m/T50TQS_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.6264854,46.9235731],[121.0656571,46.8814597],[120.9930022,45.8957353],[119.5794595,45.9364309],[119.6264854,46.9235731]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQS_N05.11","eo:cloud_cover":27.660647,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000289,"s2:mean_solar_zenith":28.0407323538848,"s2:mean_solar_azimuth":149.157109553527,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":56.90102,"s2:thin_cirrus_percentage":0.050043,"s2:cloud_shadow_percentage":13.618906,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.215981,"s2:not_vegetated_percentage":1.600997,"s2:degraded_msi_data_percentage":0.0667,"s2:high_proba_clouds_percentage":16.988012,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.622592,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736","bbox":[119.4272955,42.3046906,120.8181237,43.326257],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R60m/T50TQN_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R60m/T50TQN_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.7739049,42.5651556],[120.7313982,42.4535302],[120.676057,42.3076801],[120.6749208,42.3046906],[119.4272955,42.3383721],[119.4662891,43.326257],[120.8181237,43.2890818],[120.7739049,42.5651556]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQN_N05.11","eo:cloud_cover":97.065979,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.004349,"s2:mean_solar_zenith":24.9974691461116,"s2:mean_solar_azimuth":145.343136428766,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":1.203796,"s2:thin_cirrus_percentage":0.286871,"s2:cloud_shadow_percentage":0.210673,"s2:nodata_pixel_percentage":0.893073,"s2:unclassified_percentage":0.388368,"s2:not_vegetated_percentage":1.126617,"s2:degraded_msi_data_percentage":0.0407,"s2:high_proba_clouds_percentage":79.418463,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":17.360643,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736","bbox":[119.361109,40.5215379,120.3744324,41.5268623],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R60m/T50TQL_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R60m/T50TQL_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.3744324,41.5008773],[120.3485427,41.4317422],[120.2947043,41.2854654],[120.240833,41.1392216],[120.187221,40.992973],[120.1342279,40.8466718],[120.0812006,40.7004455],[120.0282934,40.5542995],[120.0165344,40.5215379],[119.361109,40.5386175],[119.3967036,41.5268623],[120.3744324,41.5008773]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQL_N05.11","eo:cloud_cover":99.236029,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.015013,"s2:mean_solar_zenith":23.5228477672578,"s2:mean_solar_azimuth":143.079866845773,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.006039,"s2:thin_cirrus_percentage":5e-6,"s2:cloud_shadow_percentage":0.731515,"s2:nodata_pixel_percentage":37.700263,"s2:unclassified_percentage":0.004974,"s2:not_vegetated_percentage":0.006428,"s2:degraded_msi_data_percentage":0.1815,"s2:high_proba_clouds_percentage":96.402979,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.833042,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736","bbox":[119.3301855,39.6287972,120.0480229,40.6266494],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R60m/T50TQK_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R60m/T50TQK_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.0480229,40.6087983],[120.0282934,40.5542995],[119.9758153,40.4080915],[119.9230646,40.2620155],[119.8714404,40.1156798],[119.8513154,40.0589762],[119.819189,39.9686227],[119.7672769,39.8222937],[119.7387107,39.7415223],[119.7157065,39.6765674],[119.6988493,39.6287972],[119.3301855,39.6382276],[119.3642082,40.6266494],[120.0480229,40.6087983]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQK_N05.11","eo:cloud_cover":75.909507,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":16.082352,"s2:mean_solar_zenith":22.7998528423952,"s2:mean_solar_azimuth":141.840330969318,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000196,"s2:vegetation_percentage":4.620372,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.517618,"s2:nodata_pixel_percentage":59.397584,"s2:unclassified_percentage":1.103476,"s2:not_vegetated_percentage":1.764095,"s2:degraded_msi_data_percentage":0.2493,"s2:high_proba_clouds_percentage":69.136828,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.772681,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736","bbox":[118.2142871,42.3357822,119.5875362,43.3462],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R60m/T50TPN_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R60m/T50TPN_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.2338121,43.3462],[119.5875362,43.3235766],[119.5466306,42.3357822],[118.2142871,42.3576415],[118.2338121,43.3462]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TPN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TPN_N05.11","eo:cloud_cover":36.116058,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.106227,"s2:mean_solar_zenith":25.5386119791428,"s2:mean_solar_azimuth":143.028396117195,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000962,"s2:vegetation_percentage":37.823474,"s2:thin_cirrus_percentage":0.452646,"s2:cloud_shadow_percentage":6.894921,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.214482,"s2:not_vegetated_percentage":17.791484,"s2:degraded_msi_data_percentage":0.0557,"s2:high_proba_clouds_percentage":24.020392,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.64302,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736","bbox":[118.1987909,45.9567699,118.4342866,46.6304619],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R60m/T50TNS_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R60m/T50TNS_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.1987909,45.9581201],[118.2325341,46.0544868],[118.2834303,46.2012099],[118.3349002,46.347706],[118.3862382,46.4942726],[118.4342866,46.6304619],[118.4166561,45.9567699],[118.1987909,45.9581201]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TNS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TNS_N05.11","eo:cloud_cover":11.262465,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.830601,"s2:mean_solar_zenith":29.0507935392686,"s2:mean_solar_azimuth":144.596861136244,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":68.35593,"s2:thin_cirrus_percentage":5.509831,"s2:cloud_shadow_percentage":4.810938,"s2:nodata_pixel_percentage":95.042419,"s2:unclassified_percentage":0.336697,"s2:not_vegetated_percentage":14.377066,"s2:degraded_msi_data_percentage":0.0001,"s2:high_proba_clouds_percentage":2.567159,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.185475,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736","bbox":[117.8895777,45.0567486,118.4189041,46.0459415],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R60m/T50TNR_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R60m/T50TNR_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.8895777,45.0598289],[117.9284054,45.1743711],[117.9784136,45.3210777],[118.0286379,45.4678191],[118.0790918,45.6145875],[118.1299256,45.7612573],[118.1811913,45.9078576],[118.229542,46.0459415],[118.4189041,46.0447662],[118.3942539,45.0567486],[117.8895777,45.0598289]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TNR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TNR_N05.11","eo:cloud_cover":7.710127,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.227757,"s2:mean_solar_zenith":28.3008404942099,"s2:mean_solar_azimuth":143.720238992279,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.020385,"s2:vegetation_percentage":62.175059,"s2:thin_cirrus_percentage":0.104868,"s2:cloud_shadow_percentage":5.627007,"s2:nodata_pixel_percentage":75.651205,"s2:unclassified_percentage":0.755714,"s2:not_vegetated_percentage":22.477517,"s2:degraded_msi_data_percentage":0.001,"s2:high_proba_clouds_percentage":3.633779,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.971479,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736","bbox":[117.5889028,44.1571166,118.3964112,45.1482147],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R60m/T50TNQ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R60m/T50TNQ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.5889028,44.1618268],[117.6325885,44.2939196],[117.681421,44.4407804],[117.7306125,44.5875027],[117.7798669,44.7342142],[117.8291308,44.8809633],[117.8786777,45.0276736],[117.9195388,45.1482147],[118.3964112,45.1452997],[118.372894,44.1571166],[117.5889028,44.1618268]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TNQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TNQ_N05.11","eo:cloud_cover":23.080322,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0417,"s2:mean_solar_zenith":27.5586205163193,"s2:mean_solar_azimuth":142.794105299252,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.57253,"s2:thin_cirrus_percentage":2.204978,"s2:cloud_shadow_percentage":8.319222,"s2:nodata_pixel_percentage":54.831058,"s2:unclassified_percentage":0.561122,"s2:not_vegetated_percentage":8.392074,"s2:degraded_msi_data_percentage":0.0172,"s2:high_proba_clouds_percentage":12.556584,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.31876,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736","bbox":[116.7218325,41.4618364,117.1186942,42.4526297],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R60m/T50TMM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R60m/T50TMM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.7218325,41.4618364],[116.7342955,41.5018647],[116.7799969,41.6489077],[116.8264115,41.795836],[116.8730517,41.9427994],[116.9188569,42.0900523],[116.965478,42.2370827],[117.0122762,42.3841243],[117.0340859,42.4522246],[117.1186942,42.4526297],[117.1168731,41.4636925],[116.7218325,41.4618364]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TMM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TMM_N05.11","eo:cloud_cover":13.409732,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.037201,"s2:mean_solar_zenith":25.9700458856941,"s2:mean_solar_azimuth":137.491697498845,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":78.346264,"s2:thin_cirrus_percentage":0.000019,"s2:cloud_shadow_percentage":1.496124,"s2:nodata_pixel_percentage":82.224864,"s2:unclassified_percentage":0.696433,"s2:not_vegetated_percentage":5.929337,"s2:degraded_msi_data_percentage":0.0003,"s2:high_proba_clouds_percentage":6.646004,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.763709,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736","bbox":[116.4430791,40.55959,117.1170316,41.5517851],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R60m/T50TML_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R60m/T50TML_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.4430791,40.55959],[116.4611705,40.6197993],[116.5059286,40.7670862],[116.5513424,40.9141132],[116.5979323,41.0607592],[116.6417932,41.2082121],[116.6885271,41.354867],[116.7342955,41.5018647],[116.7492729,41.5500542],[117.1170316,41.5517851],[117.1152916,40.5626924],[116.4430791,40.55959]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TML","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TML_N05.11","eo:cloud_cover":1.470486,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.085095,"s2:mean_solar_zenith":25.2769763879235,"s2:mean_solar_azimuth":136.332294279426,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":95.43981,"s2:thin_cirrus_percentage":0.000202,"s2:cloud_shadow_percentage":0.891395,"s2:nodata_pixel_percentage":60.542274,"s2:unclassified_percentage":0.097371,"s2:not_vegetated_percentage":1.950037,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.67822,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.792064,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736","bbox":[119.3006375,38.7360413,119.7299013,39.7268153],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R60m/T50SQJ_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R60m/T50SQJ_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.7299013,39.7166481],[119.7157065,39.6765674],[119.6640093,39.5300675],[119.6124705,39.3835187],[119.5611444,39.2369834],[119.5100199,39.0904785],[119.4591559,38.9439878],[119.4085484,38.797521],[119.3874031,38.7360413],[119.3006375,38.7382186],[119.3331665,39.7268153],[119.7299013,39.7166481]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SQJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SQJ_N05.11","eo:cloud_cover":20.921469,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":78.946793,"s2:mean_solar_zenith":22.0883445369773,"s2:mean_solar_azimuth":140.521557816201,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.017688,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.01604,"s2:nodata_pixel_percentage":81.280202,"s2:unclassified_percentage":0.003864,"s2:not_vegetated_percentage":0.094148,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":11.769027,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.152442,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736","bbox":[119.2918736,38.4576552,119.4174953,38.8262817],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R60m/T50SQH_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R60m/T50SQH_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.4174953,38.8234148],[119.4085484,38.797521],[119.3581734,38.651056],[119.307937,38.5046006],[119.2918736,38.4576552],[119.3034704,38.8262817],[119.4174953,38.8234148]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SQH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SQH_N05.11","eo:cloud_cover":47.70222,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":52.205902,"s2:mean_solar_zenith":21.3885780137229,"s2:mean_solar_azimuth":139.115402045806,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.4038,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.091874,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":18.943036,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.759184,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736","bbox":[118.1508722,38.7363369,119.447885,39.7443999],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R60m/T50SPJ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R60m/T50SPJ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.4167008,38.8211153],[119.4085484,38.797521],[119.3875048,38.7363369],[118.1508722,38.7551983],[118.167158,39.7443999],[119.447885,39.7244518],[119.4167008,38.8211153]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SPJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SPJ_N05.11","eo:cloud_cover":20.222032,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":39.885443,"s2:mean_solar_zenith":22.6840681044289,"s2:mean_solar_azimuth":138.199942169003,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":22.857326,"s2:thin_cirrus_percentage":0.000242,"s2:cloud_shadow_percentage":1.767036,"s2:nodata_pixel_percentage":0.111814,"s2:unclassified_percentage":2.368912,"s2:not_vegetated_percentage":12.879643,"s2:degraded_msi_data_percentage":0.0202,"s2:high_proba_clouds_percentage":11.702741,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.519049,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736","bbox":[118.1102397,36.0461721,118.8109879,37.041254],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R60m/T50SPF_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R60m/T50SPF_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.8109879,37.0311754],[118.76475,36.8915401],[118.7163983,36.7449153],[118.6679767,36.5983507],[118.6198789,36.4517246],[118.5720684,36.3049556],[118.5236848,36.1582592],[118.4874197,36.0461721],[118.1102397,36.0515828],[118.1244855,37.041254],[118.8109879,37.0311754]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SPF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SPF_N05.11","eo:cloud_cover":36.983517,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.265535,"s2:mean_solar_zenith":20.6750215960592,"s2:mean_solar_azimuth":133.711979389783,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":34.599906,"s2:thin_cirrus_percentage":6.869698,"s2:cloud_shadow_percentage":12.036689,"s2:nodata_pixel_percentage":56.897491,"s2:unclassified_percentage":0.989636,"s2:not_vegetated_percentage":15.108298,"s2:degraded_msi_data_percentage":0.0491,"s2:high_proba_clouds_percentage":16.961607,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.15221,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736","bbox":[118.0934106,34.8104737,118.228127,35.2380875],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R60m/T50SPD_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R60m/T50SPD_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.228127,35.2362718],[118.1941734,35.1294626],[118.1475869,34.9825917],[118.1013403,34.8357003],[118.0934106,34.8104737],[118.0990408,35.2380875],[118.228127,35.2362718]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SPD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SPD_N05.11","eo:cloud_cover":26.308063,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.43517,"s2:mean_solar_zenith":19.4188388313226,"s2:mean_solar_azimuth":130.20887712026,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":46.315238,"s2:thin_cirrus_percentage":22.232413,"s2:cloud_shadow_percentage":0.66529,"s2:nodata_pixel_percentage":97.789735,"s2:unclassified_percentage":0.501519,"s2:not_vegetated_percentage":25.741094,"s2:degraded_msi_data_percentage":0.0255,"s2:high_proba_clouds_percentage":0.583179,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.49247,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736","bbox":[116.9997724,36.9514795,118.2493543,37.9475896],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R60m/T50SNG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R60m/T50SNG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.9997724,37.9475896],[118.2493543,37.9409562],[118.2330052,36.9514795],[116.9997753,36.9578811],[116.9997724,37.9475896]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SNG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SNG_N05.11","eo:cloud_cover":47.13845,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.602669,"s2:mean_solar_zenith":21.9739264966328,"s2:mean_solar_azimuth":133.083464061664,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":31.315121,"s2:thin_cirrus_percentage":16.231024,"s2:cloud_shadow_percentage":9.945966,"s2:nodata_pixel_percentage":3e-6,"s2:unclassified_percentage":0.741862,"s2:not_vegetated_percentage":10.248818,"s2:degraded_msi_data_percentage":0.0126,"s2:high_proba_clouds_percentage":16.119608,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.787817,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736","bbox":[116.9997848,32.4474308,117.666375,33.4395751],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R60m/T50SNB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R60m/T50SNB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.666375,33.4364017],[117.6444503,33.3648472],[117.5995079,33.2177733],[117.5546741,33.0707217],[117.5099751,32.9236622],[117.4653549,32.7765144],[117.4207487,32.6292944],[117.3764334,32.4819554],[117.3660533,32.4474308],[116.9997872,32.4491288],[116.9997848,33.4395751],[117.666375,33.4364017]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SNB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SNB_N05.11","eo:cloud_cover":39.729539,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.83291,"s2:mean_solar_zenith":18.9771520751009,"s2:mean_solar_azimuth":124.161536284537,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":32.208225,"s2:thin_cirrus_percentage":6.435398,"s2:cloud_shadow_percentage":1.07809,"s2:nodata_pixel_percentage":56.314051,"s2:unclassified_percentage":1.244856,"s2:not_vegetated_percentage":23.90082,"s2:degraded_msi_data_percentage":0.035,"s2:high_proba_clouds_percentage":18.052907,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.241231,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736","bbox":[116.999787,32.2482444,117.3925471,32.5373552],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R60m/T50SNA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R60m/T50SNA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.3925471,32.53553],[117.3764334,32.4819554],[117.332138,32.3346271],[117.3062352,32.2482444],[117.2528013,32.2622692],[117.0461187,32.3166646],[117.046091,32.3165716],[117.0459935,32.3165973],[117.0454263,32.3146922],[116.9997875,32.3257877],[116.999787,32.5373552],[117.3925471,32.53553]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SNA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SNA_N05.11","eo:cloud_cover":26.832655,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.541355,"s2:mean_solar_zenith":18.4456314194497,"s2:mean_solar_azimuth":122.033562227785,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":39.458776,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":92.377031,"s2:unclassified_percentage":0.998794,"s2:not_vegetated_percentage":32.1652,"s2:degraded_msi_data_percentage":0.0012,"s2:high_proba_clouds_percentage":14.997889,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.834764,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736","bbox":[115.9013317,38.7554279,117.1139256,39.750212],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R60m/T50SMJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R60m/T50SMJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.9013317,38.7554279],[115.9301224,38.8532881],[115.9736448,39.0005998],[116.0172137,39.1478543],[116.0608096,39.2950671],[116.1044794,39.4422733],[116.1483299,39.5894922],[116.1923701,39.736696],[116.195178,39.7460419],[117.1139256,39.750212],[117.1123356,38.7608105],[115.9013317,38.7554279]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMJ_N05.11","eo:cloud_cover":1.14024,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.138078,"s2:mean_solar_zenith":23.927685575955,"s2:mean_solar_azimuth":133.801367476993,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":65.048999,"s2:thin_cirrus_percentage":1.021053,"s2:cloud_shadow_percentage":0.014508,"s2:nodata_pixel_percentage":16.666119,"s2:unclassified_percentage":0.792223,"s2:not_vegetated_percentage":31.795236,"s2:degraded_msi_data_percentage":0.016,"s2:high_proba_clouds_percentage":0.009149,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.110037,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736","bbox":[115.8614709,36.9525649,117.111086,37.9475371],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R60m/T50SMG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R60m/T50SMG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.8614709,37.9420809],[117.111086,37.9475371],[117.1096319,36.9578305],[115.8763705,36.9525649],[115.8614709,37.9420809]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMG_N05.11","eo:cloud_cover":41.186291,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.053991,"s2:mean_solar_zenith":22.6340813175253,"s2:mean_solar_azimuth":130.954784605596,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.987856,"s2:thin_cirrus_percentage":9.839559,"s2:cloud_shadow_percentage":11.77372,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.437062,"s2:not_vegetated_percentage":9.555632,"s2:degraded_msi_data_percentage":0.0298,"s2:high_proba_clouds_percentage":16.522081,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.824648,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736","bbox":[115.8750647,36.0515787,117.1097593,37.0465323],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R60m/T50SMF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R60m/T50SMF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.8750647,37.0412498],[117.1097593,37.0465323],[117.1083685,36.056675],[115.8893163,36.0515787],[115.8750647,37.0412498]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMF_N05.11","eo:cloud_cover":46.413097,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.336628,"s2:mean_solar_zenith":22.0119019990082,"s2:mean_solar_azimuth":129.402097516376,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.597174,"s2:thin_cirrus_percentage":15.03856,"s2:cloud_shadow_percentage":4.154141,"s2:nodata_pixel_percentage":7e-6,"s2:unclassified_percentage":0.695393,"s2:not_vegetated_percentage":11.786846,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":13.983063,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":17.391473,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736","bbox":[115.8880749,35.1499121,117.1084896,36.1448493],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R60m/T50SME_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R60m/T50SME_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.8880749,36.1397366],[117.1084896,36.1448493],[117.1071592,35.1548426],[115.9017071,35.1499121],[115.8880749,36.1397366]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SME","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SME_N05.11","eo:cloud_cover":58.306003,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.369206,"s2:mean_solar_zenith":21.4074804479542,"s2:mean_solar_azimuth":127.754859134037,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":28.753677,"s2:thin_cirrus_percentage":21.736342,"s2:cloud_shadow_percentage":0.966457,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.66243,"s2:not_vegetated_percentage":10.925531,"s2:degraded_msi_data_percentage":0.0143,"s2:high_proba_clouds_percentage":14.595555,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.974111,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736","bbox":[115.9005196,34.2481073,117.1072751,35.2430302],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R60m/T50SMD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R60m/T50SMD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.9005196,35.2380835],[117.1072751,35.2430302],[117.1060025,34.2528758],[115.9135595,34.2481073],[115.9005196,35.2380835]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMD_N05.11","eo:cloud_cover":90.309763,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.518857,"s2:mean_solar_zenith":20.8227995236326,"s2:mean_solar_azimuth":126.009053551506,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":4.199996,"s2:thin_cirrus_percentage":14.53747,"s2:cloud_shadow_percentage":1.179472,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.02645,"s2:not_vegetated_percentage":3.765067,"s2:degraded_msi_data_percentage":0.0033,"s2:high_proba_clouds_percentage":37.807155,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":37.96514,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736","bbox":[116.1145798,32.3015168,117.1039399,32.5373123],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R60m/T50SMA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R60m/T50SMA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.1036749,32.3015168],[117.0461187,32.3166646],[117.046091,32.3165716],[117.0459935,32.3165973],[117.0454263,32.3146922],[116.7782206,32.3796543],[116.778231,32.3796895],[116.7781318,32.3797131],[116.7781616,32.3798144],[116.7781075,32.3798273],[116.7781694,32.3800382],[116.7781547,32.3800417],[116.7784096,32.3809087],[116.7781299,32.3809753],[116.778211,32.381251],[116.7781507,32.3812654],[116.7782918,32.3817456],[116.5535674,32.4356065],[116.5437143,32.437978],[116.5431121,32.4359135],[116.2813242,32.4947713],[116.2816815,32.496011],[116.2815423,32.4960413],[116.2818084,32.4969648],[116.2814579,32.4970413],[116.2814761,32.4971044],[116.1145798,32.5335306],[117.1039399,32.5373123],[117.1036749,32.3015168]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMA_N05.11","eo:cloud_cover":14.862227,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":3.917596,"s2:mean_solar_zenith":19.2058256898959,"s2:mean_solar_azimuth":120.135148203205,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":61.090124,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.531518,"s2:nodata_pixel_percentage":89.938831,"s2:unclassified_percentage":0.804895,"s2:not_vegetated_percentage":18.791266,"s2:degraded_msi_data_percentage":0.0359,"s2:high_proba_clouds_percentage":6.904262,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":7.957965,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736","bbox":[115.63759,37.8502561,115.9746634,38.8443739],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R60m/T50SLH_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R60m/T50SLH_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.63759,37.8502561],[115.671881,37.9689406],[115.7145596,38.1162715],[115.7574188,38.2636455],[115.8004173,38.411074],[115.8435289,38.5584864],[115.8867567,38.7058869],[115.9273598,38.8438979],[115.9606157,38.8443739],[115.9746634,37.8549777],[115.63759,37.8502561]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLH_N05.11","eo:cloud_cover":38.279384,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.115262,"s2:mean_solar_zenith":23.932092986659,"s2:mean_solar_azimuth":130.356473489181,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":35.349339,"s2:thin_cirrus_percentage":5.769221,"s2:cloud_shadow_percentage":8.881476,"s2:nodata_pixel_percentage":85.593003,"s2:unclassified_percentage":0.588054,"s2:not_vegetated_percentage":16.765666,"s2:degraded_msi_data_percentage":0.0303,"s2:high_proba_clouds_percentage":19.331181,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.178983,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736","bbox":[115.3785214,36.9452099,115.9868749,37.9431112],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R60m/T50SLG_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R60m/T50SLG_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.3785214,36.9452099],[115.4182056,37.0847685],[115.4602395,37.2322337],[115.5023433,37.3796156],[115.5445309,37.526943],[115.586851,37.6742695],[115.6293078,37.8215905],[115.66316,37.9387564],[115.9734399,37.9431112],[115.9868749,36.9535591],[115.3785214,36.9452099]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLG_N05.11","eo:cloud_cover":36.07443,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.366998,"s2:mean_solar_zenith":23.3079127743644,"s2:mean_solar_azimuth":128.912664618134,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":42.052454,"s2:thin_cirrus_percentage":9.59694,"s2:cloud_shadow_percentage":8.664303,"s2:nodata_pixel_percentage":63.342643,"s2:unclassified_percentage":0.446737,"s2:not_vegetated_percentage":12.388815,"s2:degraded_msi_data_percentage":0.0098,"s2:high_proba_clouds_percentage":13.623509,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":12.853979,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736","bbox":[115.1241092,36.0407906,115.998548,37.0422472],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R60m/T50SLF_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R60m/T50SLF_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.1241092,36.0407906],[115.1272005,36.0518786],[115.168395,36.1994042],[115.2097009,36.3469466],[115.2511476,36.4945241],[115.2927244,36.6421295],[115.3344184,36.7896865],[115.3762581,36.9372503],[115.4038391,37.0342453],[115.9856975,37.0422472],[115.998548,36.052541],[115.1241092,36.0407906]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLF_N05.11","eo:cloud_cover":54.964435,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.055954,"s2:mean_solar_zenith":22.7011208309229,"s2:mean_solar_azimuth":127.38554131012,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":23.944311,"s2:thin_cirrus_percentage":18.65389,"s2:cloud_shadow_percentage":4.03236,"s2:nodata_pixel_percentage":40.977442,"s2:unclassified_percentage":1.742189,"s2:not_vegetated_percentage":15.259357,"s2:degraded_msi_data_percentage":0.0036,"s2:high_proba_clouds_percentage":14.528267,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.782278,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736","bbox":[114.8735561,35.1359055,116.0097208,36.140702],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R60m/T50SLE_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R60m/T50SLE_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.8735561,35.1359055],[114.8819738,35.1665639],[114.9226016,35.3142249],[114.9632854,35.461833],[115.004088,35.6093671],[115.0450297,35.7568681],[115.0860717,35.9043527],[115.1272005,36.0518786],[115.1488123,36.1292747],[115.9974287,36.140702],[116.0097208,35.1508431],[114.8735561,35.1359055]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLE_N05.11","eo:cloud_cover":61.273545,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.115494,"s2:mean_solar_zenith":22.112424509398,"s2:mean_solar_azimuth":125.769073487741,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":21.663535,"s2:thin_cirrus_percentage":21.789815,"s2:cloud_shadow_percentage":2.258105,"s2:nodata_pixel_percentage":18.485914,"s2:unclassified_percentage":0.487194,"s2:not_vegetated_percentage":14.201862,"s2:degraded_msi_data_percentage":0.0151,"s2:high_proba_clouds_percentage":18.484378,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":20.999353,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736","bbox":[114.8107801,34.2336874,116.020408,35.2390176],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R60m/T50SLD_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R60m/T50SLD_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.8107801,34.9069749],[114.8414251,35.0188806],[114.8819738,35.1665639],[114.8978821,35.2243822],[116.00865,35.2390176],[116.020408,34.2490077],[114.8285025,34.2336874],[114.8107801,34.9069749]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLD_N05.11","eo:cloud_cover":78.448844,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.034417,"s2:mean_solar_zenith":21.5437499415022,"s2:mean_solar_azimuth":124.060060209001,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":16.212113,"s2:thin_cirrus_percentage":15.942572,"s2:cloud_shadow_percentage":0.25766,"s2:nodata_pixel_percentage":1.390798,"s2:unclassified_percentage":0.02907,"s2:not_vegetated_percentage":5.016909,"s2:degraded_msi_data_percentage":0.0217,"s2:high_proba_clouds_percentage":37.523243,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":24.983029,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736","bbox":[114.8489629,32.548068,116.0392875,33.4357788],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R60m/T50SLB_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R60m/T50SLB_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.0392875,32.548068],[115.7887615,32.599859],[115.7889327,32.6004646],[115.7889023,32.6004706],[115.7891664,32.6014053],[115.7889536,32.6014471],[115.7889979,32.6016034],[115.7889594,32.6016109],[115.7890053,32.6017728],[115.5566318,32.6474306],[115.5560434,32.6453339],[115.2930914,32.6951129],[115.2937843,32.697615],[115.0578661,32.7390137],[115.0578174,32.7388361],[115.0566854,32.739034],[115.0561579,32.7371155],[114.8646338,32.7699863],[114.8489629,33.4209188],[116.0296449,33.4357788],[116.0392875,32.548068]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLB_N05.11","eo:cloud_cover":22.575794,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.203345,"s2:mean_solar_zenith":20.4735728391914,"s2:mean_solar_azimuth":120.350540525566,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":47.479817,"s2:thin_cirrus_percentage":0.78185,"s2:cloud_shadow_percentage":6.80596,"s2:nodata_pixel_percentage":22.615021,"s2:unclassified_percentage":1.604452,"s2:not_vegetated_percentage":21.323994,"s2:degraded_msi_data_percentage":0.0201,"s2:high_proba_clouds_percentage":9.574964,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":12.21898,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736","bbox":[114.6260528,34.2288219,114.9346265,35.2250277],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R60m/T50SKD_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R60m/T50SKD_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.6260528,34.2288219],[114.6400448,34.28055],[114.6801328,34.4281839],[114.7203285,34.5758146],[114.7606131,34.7235075],[114.8009815,34.8711936],[114.8414251,35.0188806],[114.8819738,35.1665639],[114.897987,35.2247636],[114.9098528,35.2250277],[114.9346265,34.2355216],[114.6260528,34.2288219]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SKD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SKD_N05.11","eo:cloud_cover":43.614638,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":22.2761367578294,"s2:mean_solar_azimuth":122.199905893594,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":48.51774,"s2:thin_cirrus_percentage":19.065133,"s2:cloud_shadow_percentage":0.279661,"s2:nodata_pixel_percentage":86.968803,"s2:unclassified_percentage":0.038013,"s2:not_vegetated_percentage":7.548423,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":8.437844,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":16.11166,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736","bbox":[114.3823884,33.3223707,114.9561528,34.3242059],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R60m/T50SKC_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R60m/T50SKC_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.3823884,33.3223707],[114.4016363,33.394506],[114.4411648,33.5422871],[114.4807933,33.6900103],[114.5205076,33.8376791],[114.5602767,33.9852886],[114.6001102,34.1329128],[114.6400448,34.28055],[114.6502313,34.3180644],[114.9324553,34.3242059],[114.9561528,33.3345403],[114.3823884,33.3223707]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SKC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SKC_N05.11","eo:cloud_cover":11.416361,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.145795,"s2:mean_solar_zenith":21.7449250375714,"s2:mean_solar_azimuth":120.441765877917,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":61.459398,"s2:thin_cirrus_percentage":1.473696,"s2:cloud_shadow_percentage":3.381855,"s2:nodata_pixel_percentage":64.255857,"s2:unclassified_percentage":1.099615,"s2:not_vegetated_percentage":22.484984,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":3.599652,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.343013,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736","bbox":[114.2607634,32.7519975,114.9694467,33.4226979],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R60m/T50SKB_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R60m/T50SKB_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.9694467,32.7519975],[114.7866736,32.7833664],[114.7873809,32.7859752],[114.7868224,32.7860614],[114.7868867,32.7862979],[114.5420852,32.8238584],[114.5415941,32.8220329],[114.2607634,32.8652053],[114.2835294,32.9510485],[114.3228282,33.0988814],[114.362195,33.2466921],[114.4016363,33.394506],[114.4060608,33.4110471],[114.9540887,33.4226979],[114.9694467,32.7519975]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SKB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SKB_N05.11","eo:cloud_cover":22.665247,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.044582,"s2:mean_solar_zenith":21.2368714393912,"s2:mean_solar_azimuth":118.590050519461,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":43.758434,"s2:thin_cirrus_percentage":0.316356,"s2:cloud_shadow_percentage":6.892233,"s2:nodata_pixel_percentage":67.121089,"s2:unclassified_percentage":1.238217,"s2:not_vegetated_percentage":25.397611,"s2:degraded_msi_data_percentage":0.0001,"s2:high_proba_clouds_percentage":9.031008,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.317885,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317","bbox":[156.1138782,71.0946572,157.4042726,71.8926319],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R60m/T57WVV_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R60m/T57WVV_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.1138782,71.8926319],[156.1865749,71.8773005],[156.1873346,71.8776742],[156.1876319,71.8776116],[156.1876651,71.8776279],[156.188117,71.877533],[156.1900524,71.8784839],[156.8140604,71.7434156],[156.8138246,71.7433015],[156.8144989,71.7431445],[156.8104562,71.7411889],[157.1727301,71.6575571],[157.4042726,71.6037897],[157.1415077,71.4783743],[156.8815306,71.3524484],[156.6249589,71.2261815],[156.3719088,71.0996042],[156.3638923,71.0955339],[156.2327264,71.0946572],[156.1138782,71.8926319]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57WVV","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T57WVV_N05.11","eo:cloud_cover":0.808194,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":99.191809,"s2:mean_solar_zenith":50.6476398763521,"s2:mean_solar_azimuth":189.674210386958,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.807331,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":82.696778,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0252,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.000863,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317","bbox":[152.9994042,71.9896812,155.6536986,72.4824862],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R60m/T56XNF_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R60m/T56XNF_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[152.9994042,72.4824862],[153.2193985,72.4460466],[153.2161141,72.4442957],[153.2179226,72.4439833],[153.2172622,72.443631],[153.7972632,72.3435368],[153.8006367,72.3453062],[153.8006751,72.3452996],[153.8010871,72.3455156],[154.444778,72.2286253],[154.4440394,72.2282447],[154.4441165,72.22823],[154.4413735,72.2268181],[154.4427393,72.2265573],[154.4425015,72.2264349],[155.0043533,72.1190371],[155.0047979,72.1192626],[155.0048938,72.1192443],[155.0075676,72.1205995],[155.1169701,72.0988713],[155.6369063,71.9954883],[155.6368743,71.9954724],[155.6372575,71.9953915],[155.6342712,71.9939029],[155.6352357,71.9937003],[155.635059,71.9936122],[155.6536986,71.9896812],[152.9994198,72.0113634],[152.9994042,72.4824862]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNF","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56XNF_N05.11","eo:cloud_cover":96.588451,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":3.411547,"s2:mean_solar_zenith":51.4036388492559,"s2:mean_solar_azimuth":185.856579772221,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.549547,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":79.889983,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.006,"s2:high_proba_clouds_percentage":93.191421,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.847482,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317","bbox":[149.9444535,71.989773,153.2899112,72.9336541],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R60m/T56XMF_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R60m/T56XMF_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.9444535,72.9336541],[150.5960508,72.8460045],[150.5930046,72.8442415],[150.5960489,72.8438183],[150.5954453,72.8434687],[151.0566301,72.779791],[151.2382524,72.7545429],[151.2384947,72.7546802],[151.2395613,72.7545329],[151.2427866,72.7563617],[151.5095988,72.7163929],[151.9434834,72.6512482],[151.9408115,72.6497676],[151.9427225,72.6494703],[151.9424003,72.6492914],[151.9427767,72.649233],[151.942188,72.6489065],[152.5493995,72.5547733],[152.5525707,72.556499],[153.2193985,72.4460466],[153.2161141,72.4442957],[153.2179226,72.4439833],[153.2172622,72.443631],[153.2899112,72.4310936],[153.2831475,72.0111578],[150.1000757,71.989773],[149.9444535,72.9336541]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMF","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56XMF_N05.11","eo:cloud_cover":36.172736,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":63.827264,"s2:mean_solar_zenith":51.3424657006491,"s2:mean_solar_azimuth":182.33412651875,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":2.19706,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":30.161938,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0208,"s2:high_proba_clouds_percentage":27.641454,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":6.334222,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317","bbox":[155.7661688,71.0815674,157.4042726,71.9394383],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R60m/T56WPE_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R60m/T56WPE_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[155.8919355,71.9394383],[156.1865749,71.8773005],[156.1873346,71.8776742],[156.1876319,71.8776116],[156.1876651,71.8776279],[156.188117,71.877533],[156.1900524,71.8784839],[156.8140604,71.7434156],[156.8138246,71.7433015],[156.8144989,71.7431445],[156.8104562,71.7411889],[157.1727301,71.6575571],[157.4042726,71.6037897],[157.1415077,71.4783743],[156.8815306,71.3524484],[156.6249589,71.2261815],[156.3719088,71.0996042],[156.3363851,71.0815674],[155.7661688,71.0946736],[155.8919355,71.9394383]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WPE","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WPE_N05.11","eo:cloud_cover":6.615165,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":50.099075,"s2:mean_solar_zenith":50.5852245554377,"s2:mean_solar_azimuth":189.292703639737,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":43.285748,"s2:vegetation_percentage":0.000012,"s2:thin_cirrus_percentage":6.175373,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":73.227441,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0264,"s2:high_proba_clouds_percentage":0.000012,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.439779,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317","bbox":[155.7222819,70.7655909,156.503808,71.1822592],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R60m/T56WPD_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R60m/T56WPD_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.503808,71.1655811],[156.3719088,71.0996042],[156.1220054,70.9727179],[155.8751998,70.845503],[155.7222819,70.7655909],[155.7785751,71.1822592],[156.503808,71.1655811]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WPD","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WPD_N05.11","eo:cloud_cover":35.880098,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":32.543823,"s2:mean_solar_zenith":49.6953014001368,"s2:mean_solar_azimuth":189.242109828946,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000264,"s2:vegetation_percentage":19.556281,"s2:thin_cirrus_percentage":33.529049,"s2:cloud_shadow_percentage":0.14037,"s2:nodata_pixel_percentage":94.972533,"s2:unclassified_percentage":0.985492,"s2:not_vegetated_percentage":10.893675,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.128425,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.222621,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317","bbox":[152.9994439,70.2047216,156.049855,71.2028426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R60m/T56WND_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R60m/T56WND_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.0109186,70.9154587],[155.8751998,70.845503],[155.6311487,70.7179664],[155.3897268,70.5901472],[155.1510019,70.4620067],[154.9150514,70.3335674],[154.6821372,70.2048519],[154.6819046,70.2047216],[152.9994705,70.2183208],[152.9994439,71.2028426],[156.049855,71.1780394],[156.0109186,70.9154587]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WND","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WND_N05.11","eo:cloud_cover":56.856114,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":15.574054,"s2:mean_solar_zenith":49.6197441185099,"s2:mean_solar_azimuth":185.964816080689,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000039,"s2:vegetation_percentage":18.447578,"s2:thin_cirrus_percentage":41.570169,"s2:cloud_shadow_percentage":1.502586,"s2:nodata_pixel_percentage":15.417919,"s2:unclassified_percentage":0.599417,"s2:not_vegetated_percentage":7.02021,"s2:degraded_msi_data_percentage":0.0181,"s2:high_proba_clouds_percentage":2.51416,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":12.771785,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317","bbox":[152.9994682,69.3200417,154.8382891,70.3060175],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R60m/T56WNC_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R60m/T56WNC_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[154.8382891,70.2911462],[154.6821372,70.2048519],[154.4520274,70.0759117],[154.2522737,69.9620968],[154.2308369,69.9499096],[154.2270893,69.9477473],[154.2251344,69.9466335],[154.1821007,69.9217891],[154.0063688,69.8203926],[153.9848081,69.8077666],[153.7789296,69.6873514],[153.5598436,69.5573057],[153.3434392,69.4270398],[153.1680828,69.3200417],[152.9994925,69.3213967],[152.9994682,70.3060175],[154.8382891,70.2911462]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WNC","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WNC_N05.11","eo:cloud_cover":28.974444,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":6.244714,"s2:mean_solar_zenith":48.727798516941,"s2:mean_solar_azimuth":186.035519925034,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.007582,"s2:vegetation_percentage":61.014575,"s2:thin_cirrus_percentage":24.466808,"s2:cloud_shadow_percentage":0.602819,"s2:nodata_pixel_percentage":65.473133,"s2:unclassified_percentage":0.150109,"s2:not_vegetated_percentage":3.005756,"s2:degraded_msi_data_percentage":0.0246,"s2:high_proba_clouds_percentage":1.617663,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.889972,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317","bbox":[152.9994904,69.2161524,153.3108208,69.4096405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R60m/T56WNB_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R60m/T56WNB_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.3108208,69.4071369],[153.1295349,69.2965207],[152.9994948,69.2161524],[152.9994904,69.4096405],[153.3108208,69.4071369]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WNB","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WNB_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":16.187942,"s2:mean_solar_zenith":47.8365840469843,"s2:mean_solar_azimuth":186.116465845849,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":79.936624,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.936272,"s2:unclassified_percentage":0.015907,"s2:not_vegetated_percentage":3.85953,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317","bbox":[150.2203151,70.1988218,153.2713887,71.2026464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R60m/T56WMD_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R60m/T56WMD_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.2203151,71.1822428],[153.2713887,71.2026464],[153.258393,70.2181351],[150.3532315,70.1988218],[150.2203151,71.1822428]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WMD","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WMD_N05.11","eo:cloud_cover":30.180329,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":22.282319,"s2:mean_solar_zenith":49.5549166581445,"s2:mean_solar_azimuth":182.67867868366,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001221,"s2:vegetation_percentage":34.504521,"s2:thin_cirrus_percentage":23.401777,"s2:cloud_shadow_percentage":3.834599,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.141184,"s2:not_vegetated_percentage":9.055829,"s2:degraded_msi_data_percentage":0.0119,"s2:high_proba_clouds_percentage":2.924363,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":3.854188,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317","bbox":[150.5541183,67.6415161,151.8870665,68.5035751],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R60m/T56WMA_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R60m/T56WMA_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[151.8870665,68.5035751],[151.6963116,68.3760551],[151.501133,68.2436697],[151.3306669,68.1266474],[151.3128158,68.1144175],[151.3098001,68.1123227],[151.3080017,68.1110881],[151.11682,67.9783099],[150.9277644,67.8453157],[150.7405053,67.7122238],[150.6423828,67.6415161],[150.5541183,68.494811],[151.8870665,68.5035751]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WMA","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WMA_N05.11","eo:cloud_cover":0.260707,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":23.086421,"s2:mean_solar_zenith":46.8742524507715,"s2:mean_solar_azimuth":183.187959173324,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":75.189161,"s2:thin_cirrus_percentage":0.260707,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":78.507793,"s2:unclassified_percentage":0.000123,"s2:not_vegetated_percentage":1.463589,"s2:degraded_msi_data_percentage":0.0257,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317","bbox":[149.8987666,71.9166252,153.2446805,72.9191954],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R60m/T55XFA_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R60m/T55XFA_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.051941,72.9191954],[150.5960508,72.8460045],[150.5930046,72.8442415],[150.5960489,72.8438183],[150.5954453,72.8434687],[151.0566301,72.779791],[151.2382524,72.7545429],[151.2384947,72.7546802],[151.2395613,72.7545329],[151.2427866,72.7563617],[151.5095988,72.7163929],[151.9434834,72.6512482],[151.9408115,72.6497676],[151.9427225,72.6494703],[151.9424003,72.6492914],[151.9427767,72.649233],[151.942188,72.6489065],[152.5493995,72.5547733],[152.5525707,72.556499],[153.2193985,72.4460466],[153.2161141,72.4442957],[153.2179226,72.4439833],[153.2172622,72.443631],[153.2446805,72.4388993],[153.0648961,71.9166252],[149.8987666,71.9897902],[150.051941,72.9191954]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XFA","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55XFA_N05.11","eo:cloud_cover":32.868475,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":39.013121,"s2:mean_solar_zenith":51.2931417795957,"s2:mean_solar_azimuth":182.281583054438,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":28.06398,"s2:vegetation_percentage":0.014809,"s2:thin_cirrus_percentage":6.119839,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":25.548658,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.039622,"s2:degraded_msi_data_percentage":0.0206,"s2:high_proba_clouds_percentage":18.249761,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":8.498877,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317","bbox":[148.3295008,71.9853678,150.3435503,72.9465808],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R60m/T55XEA_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R60m/T55XEA_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.3295008,72.0004983],[148.3331336,72.0028979],[148.5412191,72.138423],[148.7520334,72.2737263],[148.9654906,72.408815],[149.1815603,72.5436977],[149.4007946,72.6783585],[149.6231885,72.812805],[149.8483552,72.9465808],[150.3435503,72.8799696],[150.181736,71.9853678],[148.3295008,72.0004983]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEA","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55XEA_N05.11","eo:cloud_cover":0.165311,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":78.549856,"s2:mean_solar_zenith":51.3316846054059,"s2:mean_solar_azimuth":178.758447433788,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":6.250601,"s2:vegetation_percentage":9.62053,"s2:thin_cirrus_percentage":0.079091,"s2:cloud_shadow_percentage":0.125453,"s2:nodata_pixel_percentage":65.46303,"s2:unclassified_percentage":0.00707,"s2:not_vegetated_percentage":5.281178,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.022864,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.063356,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317","bbox":[149.7661688,71.0251958,153.093564,72.0778947],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R60m/T55WFV_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R60m/T55WFV_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.9125486,72.0778947],[153.093564,72.0043476],[152.7889605,71.0251958],[149.7661688,71.0946736],[149.9125486,72.0778947]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFV","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFV_N05.11","eo:cloud_cover":14.408642,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":62.24485,"s2:mean_solar_zenith":50.3985404696825,"s2:mean_solar_azimuth":182.119104010669,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":5.137096,"s2:vegetation_percentage":8.447716,"s2:thin_cirrus_percentage":7.188072,"s2:cloud_shadow_percentage":0.3712,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.017366,"s2:not_vegetated_percentage":9.373128,"s2:degraded_msi_data_percentage":0.0177,"s2:high_proba_clouds_percentage":4.545556,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.675014,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317","bbox":[149.4354563,68.3567732,152.3308902,69.3909851],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R60m/T55WFS_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R60m/T55WFS_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[152.1824531,68.69759],[152.094174,68.6401589],[151.8940049,68.5082134],[151.6963116,68.3760551],[151.6678839,68.3567732],[149.4354563,68.4071896],[149.546266,69.3909851],[152.3308902,69.3276752],[152.1824531,68.69759]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFS","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFS_N05.11","eo:cloud_cover":0.789332,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":16.580273,"s2:mean_solar_zenith":47.7128243449971,"s2:mean_solar_azimuth":181.748147889462,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":77.942979,"s2:thin_cirrus_percentage":0.556001,"s2:cloud_shadow_percentage":0.55987,"s2:nodata_pixel_percentage":2.93372,"s2:unclassified_percentage":0.029898,"s2:not_vegetated_percentage":4.097645,"s2:degraded_msi_data_percentage":0.019,"s2:high_proba_clouds_percentage":0.077236,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.156095,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317","bbox":[149.3431637,67.4864868,151.7945524,68.4948252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R60m/T55WFR_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R60m/T55WFR_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[151.7945524,68.4417292],[151.6963116,68.3760551],[151.501133,68.2436697],[151.3306669,68.1266474],[151.3128158,68.1144175],[151.3098001,68.1123227],[151.3080017,68.1110881],[151.11682,67.9783099],[150.9277644,67.8453157],[150.7405053,67.7122238],[150.5554665,67.5788836],[150.4289849,67.4864868],[149.3431637,67.5108527],[149.4449048,68.4948252],[151.7945524,68.4417292]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFR","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFR_N05.11","eo:cloud_cover":4.023106,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":12.379175,"s2:mean_solar_zenith":46.8171259569399,"s2:mean_solar_azimuth":181.656167535865,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":75.724196,"s2:thin_cirrus_percentage":0.328595,"s2:cloud_shadow_percentage":3.949002,"s2:nodata_pixel_percentage":34.944767,"s2:unclassified_percentage":0.226697,"s2:not_vegetated_percentage":3.697826,"s2:degraded_msi_data_percentage":0.0183,"s2:high_proba_clouds_percentage":1.715708,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":1.978803,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317","bbox":[149.2581395,66.613896,150.5456307,67.5985039],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R60m/T55WFQ_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R60m/T55WFQ_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.5456307,67.5716984],[150.3725878,67.4452878],[150.1914159,67.3114862],[150.011373,67.1776197],[149.8336593,67.0434616],[149.6577203,66.9091737],[149.4838735,66.7747109],[149.3119871,66.6401049],[149.2789046,66.613896],[149.2581395,66.6143589],[149.3518535,67.5985039],[150.5456307,67.5716984]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFQ","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFQ_N05.11","eo:cloud_cover":18.311203,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":0.16762,"s2:mean_solar_zenith":45.9212867035903,"s2:mean_solar_azimuth":181.577292223729,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":70.429194,"s2:thin_cirrus_percentage":8.949737,"s2:cloud_shadow_percentage":8.770066,"s2:nodata_pixel_percentage":76.459223,"s2:unclassified_percentage":0.405287,"s2:not_vegetated_percentage":1.91663,"s2:degraded_msi_data_percentage":0.0258,"s2:high_proba_clouds_percentage":4.362518,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":4.998947,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317","bbox":[149.256871,66.5964405,149.3882669,66.7025631],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R60m/T55WFP_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R60m/T55WFP_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.3882669,66.6998404],[149.3119871,66.6401049],[149.256871,66.5964405],[149.2662054,66.7025631],[149.3882669,66.6998404]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFP","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFP_N05.11","eo:cloud_cover":14.128898,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":9.20466,"s2:mean_solar_zenith":45.0258444072951,"s2:mean_solar_azimuth":181.510355019838,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":72.944981,"s2:thin_cirrus_percentage":14.128898,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.753672,"s2:unclassified_percentage":0.006734,"s2:not_vegetated_percentage":3.714728,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317","bbox":[147.0447745,71.0904748,150.196858,72.0876178],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R60m/T55WEV_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R60m/T55WEV_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.0447745,71.1147861],[147.1430576,71.1858658],[147.3347997,71.3224894],[147.5290457,71.4589168],[147.7256634,71.5951974],[147.9251834,71.7312914],[148.1276863,71.8671899],[148.3331336,72.0028979],[148.4632127,72.0876178],[150.196858,72.073449],[150.0362417,71.0904748],[147.0447745,71.1147861]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WEV","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WEV_N05.11","eo:cloud_cover":4.320446,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":28.570759,"s2:mean_solar_zenith":50.436239013637,"s2:mean_solar_azimuth":178.719528383963,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.556214,"s2:vegetation_percentage":43.16763,"s2:thin_cirrus_percentage":0.006602,"s2:cloud_shadow_percentage":6.721912,"s2:nodata_pixel_percentage":24.21111,"s2:unclassified_percentage":0.254749,"s2:not_vegetated_percentage":16.408287,"s2:degraded_msi_data_percentage":0.0097,"s2:high_proba_clouds_percentage":2.393112,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":1.920732,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317","bbox":[146.9994471,70.1948429,150.049855,71.2014965],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R60m/T55WEU_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R60m/T55WEU_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.9994471,71.0820047],[147.1430576,71.1858658],[147.1649942,71.2014965],[150.049855,71.1780394],[149.9040632,70.1948429],[146.9994705,70.2183208],[146.9994471,71.0820047]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WEU","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WEU_N05.11","eo:cloud_cover":15.072462,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":13.500412,"s2:mean_solar_zenith":49.5401095399085,"s2:mean_solar_azimuth":178.688054056801,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001239,"s2:vegetation_percentage":47.441328,"s2:thin_cirrus_percentage":0.028125,"s2:cloud_shadow_percentage":13.83779,"s2:nodata_pixel_percentage":0.388642,"s2:unclassified_percentage":0.420075,"s2:not_vegetated_percentage":9.726688,"s2:degraded_msi_data_percentage":0.0204,"s2:high_proba_clouds_percentage":8.549342,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":6.494995,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"collections":["sentinel-2-l2a"],"token":"next:sentinel-2-l2a:S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '131723' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 13:05:21 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T130519Z-167d46d96d82lsqphC1DENh89s0000000s40000000001c03 status: code: 200 message: OK - request: body: '{"collections": ["sentinel-2-l2a"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '35' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716","bbox":[118.2169585,42.492896,118.5443546,43.3462],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_AOT_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R60m/T50TPN_20250717T031151_B01_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B02_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B03_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B04_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B05_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B06_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B07_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B08_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R60m/T50TPN_20250717T031151_B09_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B11_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B12_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B8A_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_SCL_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_WVP_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_TCI_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/DATASTRIP/DS_2APS_20250717T060716_S20250717T031154/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.5443546,43.3410102],[118.5336127,43.313588],[118.4767986,43.1679071],[118.4200672,43.0223138],[118.363583,42.8767423],[118.3076044,42.7309403],[118.2514322,42.5851422],[118.2169585,42.492896],[118.2338121,43.3462],[118.5443546,43.3410102]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:11:51.024000Z","platform":"Sentinel-2A","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TPN","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T060716_A052582_T50TPN_N05.11","eo:cloud_cover":37.504357,"s2:datatake_id":"GS2A_20250717T031151_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T060716_S20250717T031154_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T06:07:16.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.005036,"s2:mean_solar_zenith":24.4791112148997,"s2:mean_solar_azimuth":148.082651359385,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":42.258921,"s2:thin_cirrus_percentage":7.103997,"s2:cloud_shadow_percentage":11.257639,"s2:nodata_pixel_percentage":90.118074,"s2:unclassified_percentage":0.714036,"s2:not_vegetated_percentage":8.081225,"s2:degraded_msi_data_percentage":0.0041,"s2:high_proba_clouds_percentage":17.202029,"s2:reflectance_conversion_factor":0.96769091883615,"s2:medium_proba_clouds_percentage":13.198331,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716","bbox":[115.0575906,44.1468602,115.8719187,45.1480732],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_AOT_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R60m/T50TLQ_20250717T031151_B01_60m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B02_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B03_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B04_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B05_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B06_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B07_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B08_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R60m/T50TLQ_20250717T031151_B09_60m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B11_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B12_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B8A_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_SCL_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_WVP_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_TCI_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/DATASTRIP/DS_2APS_20250717T060716_S20250717T031154/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.0575906,44.1468602],[115.1011869,44.2782072],[115.1502472,44.4250039],[115.1989562,44.5720106],[115.2484172,44.7188577],[115.2981315,44.865624],[115.3479419,45.0123669],[115.3916184,45.1406223],[115.8525926,45.1480732],[115.8719187,44.1597966],[115.0575906,44.1468602]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:11:51.024000Z","platform":"Sentinel-2A","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TLQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T060716_A052582_T50TLQ_N05.11","eo:cloud_cover":72.285634,"s2:datatake_id":"GS2A_20250717T031151_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T060716_S20250717T031154_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T06:07:16.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.001972,"s2:mean_solar_zenith":27.5224023843446,"s2:mean_solar_azimuth":142.894627902949,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":5.61901,"s2:thin_cirrus_percentage":18.582772,"s2:cloud_shadow_percentage":1.436035,"s2:nodata_pixel_percentage":53.895164,"s2:unclassified_percentage":0.504762,"s2:not_vegetated_percentage":20.151974,"s2:degraded_msi_data_percentage":0.0243,"s2:high_proba_clouds_percentage":25.602505,"s2:reflectance_conversion_factor":0.96769091883615,"s2:medium_proba_clouds_percentage":28.100359,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716","bbox":[115.8880749,35.834919,115.9908287,36.1401671],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_AOT_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R60m/T50SME_20250717T031151_B01_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B02_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B03_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B04_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B05_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B06_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B07_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B08_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R60m/T50SME_20250717T031151_B09_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B11_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B12_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B8A_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_SCL_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_WVP_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_TCI_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/DATASTRIP/DS_2APS_20250717T060716_S20250717T031154/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.9908287,36.1401671],[115.9438729,35.9950224],[115.8965727,35.848305],[115.892273,35.834919],[115.8880749,36.1397366],[115.9908287,36.1401671]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:11:51.024000Z","platform":"Sentinel-2A","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SME","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T060716_A052582_T50SME_N05.11","eo:cloud_cover":47.183838,"s2:datatake_id":"GS2A_20250717T031151_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T060716_S20250717T031154_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T06:07:16.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.101275,"s2:mean_solar_zenith":19.8235202933671,"s2:mean_solar_azimuth":132.817782085647,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":43.840736,"s2:thin_cirrus_percentage":15.224913,"s2:cloud_shadow_percentage":0.102303,"s2:nodata_pixel_percentage":98.709226,"s2:unclassified_percentage":3.013829,"s2:not_vegetated_percentage":5.741826,"s2:degraded_msi_data_percentage":0.0021,"s2:high_proba_clouds_percentage":16.757917,"s2:reflectance_conversion_factor":0.96769091883615,"s2:medium_proba_clouds_percentage":15.201008,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712","bbox":[128.9996085,62.1408465,129.8006331,62.7419066],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R60m/T52VEQ_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R60m/T52VEQ_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9996085,62.7419066],[129.3348229,62.6719642],[129.3491627,62.6689494],[129.348033,62.6677051],[129.3528745,62.6666135],[129.352699,62.6664204],[129.4534519,62.6439367],[129.8006331,62.565659],[129.6739234,62.4289043],[129.5469863,62.2900438],[129.4212215,62.151078],[129.4120261,62.1408465],[128.9996163,62.1439815],[128.9996085,62.7419066]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VEQ_N05.11","eo:cloud_cover":0.000763,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.179538,"s2:mean_solar_zenith":41.555142486688,"s2:mean_solar_azimuth":174.585341968684,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.208325,"s2:thin_cirrus_percentage":0.000699,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":84.345657,"s2:unclassified_percentage":0.07844,"s2:not_vegetated_percentage":0.532063,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.000064,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712","bbox":[128.9996152,61.6772872,129.490866,62.2317701],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R60m/T52VEP_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R60m/T52VEP_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.490866,62.2280327],[129.4212215,62.151078],[129.2962974,62.0120782],[129.1720438,61.8729258],[129.0490893,61.7335802],[128.999622,61.6772872],[128.9996152,62.2317701],[129.490866,62.2280327]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEP","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VEP_N05.11","eo:cloud_cover":0.000152,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.205156,"s2:mean_solar_zenith":40.6603597363943,"s2:mean_solar_azimuth":174.526032947034,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":98.683,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":93.438905,"s2:unclassified_percentage":0.135321,"s2:not_vegetated_percentage":0.975464,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.000152,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712","bbox":[127.0165743,63.0279332,127.5170036,63.1171334],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R60m/T52VDR_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R60m/T52VDR_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0165743,63.1171334],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.5170036,63.0310476],[127.0228562,63.0279332],[127.0165743,63.1171334]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDR","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDR_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.089908,"s2:mean_solar_zenith":42.5550553789093,"s2:mean_solar_azimuth":171.901675873215,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.055481,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.977798,"s2:unclassified_percentage":0.072705,"s2:not_vegetated_percentage":0.779959,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712","bbox":[127.0168934,62.1306897,129.1908025,63.1157098],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R60m/T52VDQ_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R60m/T52VDQ_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0250686,63.1157098],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.5863074,63.0188193],[127.5853142,63.0176504],[127.5853219,63.017649],[127.5852843,63.0176048],[127.9988353,62.940722],[127.9988523,62.9407417],[127.998859,62.9407404],[127.9989099,62.9407993],[127.9990872,62.9407663],[127.9991731,62.940866],[128.0030855,62.9401388],[128.0032019,62.9402737],[128.0034798,62.9402222],[128.0040857,62.9409228],[128.4608686,62.8531384],[128.4657378,62.8521987],[128.4646482,62.8509597],[128.8780099,62.7661366],[128.8781506,62.766294],[128.8783839,62.7662462],[128.8784644,62.7663364],[128.8824752,62.765515],[128.8827621,62.7658365],[128.882924,62.7658034],[128.8829464,62.7658285],[128.8833939,62.7657373],[128.8837086,62.7660891],[129.1908025,62.702014],[129.1872239,62.143855],[127.0815883,62.1306897],[127.0168934,63.1156582],[127.0250686,63.1157098]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDQ_N05.11","eo:cloud_cover":5.201023,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.444513,"s2:mean_solar_zenith":41.660975876224,"s2:mean_solar_azimuth":171.880878712841,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":79.42512,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":6.495123,"s2:nodata_pixel_percentage":21.144556,"s2:unclassified_percentage":0.661313,"s2:not_vegetated_percentage":7.766136,"s2:degraded_msi_data_percentage":0.0187,"s2:high_proba_clouds_percentage":1.77157,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":3.429453,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712","bbox":[127.0760204,61.2345813,129.1877677,62.231643],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R60m/T52VDP_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R60m/T52VDP_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.3432582,61.2345813],[127.1337622,61.2777318],[127.0760204,62.2184291],[129.1877677,62.231643],[129.1857101,61.8882308],[129.1720438,61.8729258],[129.0490893,61.7335802],[128.9266298,61.5942232],[128.8056844,61.4546144],[128.6854216,61.3149099],[128.6232308,61.2425179],[127.3432582,61.2345813]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDP","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDP_N05.11","eo:cloud_cover":5.202496,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.858072,"s2:mean_solar_zenith":40.7667686010522,"s2:mean_solar_azimuth":171.854576639774,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":86.080956,"s2:thin_cirrus_percentage":0.000277,"s2:cloud_shadow_percentage":5.805069,"s2:nodata_pixel_percentage":9.062117,"s2:unclassified_percentage":0.581971,"s2:not_vegetated_percentage":1.446041,"s2:degraded_msi_data_percentage":0.0252,"s2:high_proba_clouds_percentage":1.739334,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":3.462885,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712","bbox":[127.1312482,61.0025097,128.6995513,61.3313238],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R60m/T52VDN_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R60m/T52VDN_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.4187135,61.0025097],[127.9690619,61.1041713],[127.9691274,61.1042502],[127.9686036,61.1043609],[127.9689712,61.1048051],[127.7134838,61.1582637],[127.5692104,61.1887463],[127.5690063,61.1884943],[127.5677994,61.1887468],[127.5676201,61.1885253],[127.5669824,61.1886589],[127.566871,61.1885231],[127.133769,61.2777304],[127.1312482,61.3215913],[128.6995513,61.3313238],[128.6854216,61.3149099],[128.5653652,61.1751607],[128.4464531,61.0352923],[128.4187135,61.0025097]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDN","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDN_N05.11","eo:cloud_cover":0.580258,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":12.036611,"s2:mean_solar_zenith":39.8729740524278,"s2:mean_solar_azimuth":171.822741890705,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.533697,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":1.129968,"s2:nodata_pixel_percentage":85.815692,"s2:unclassified_percentage":0.586644,"s2:not_vegetated_percentage":0.96022,"s2:degraded_msi_data_percentage":0.0198,"s2:high_proba_clouds_percentage":0.175081,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.405177,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712","bbox":[124.9899031,62.9866068,127.2172106,63.4248872],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R60m/T52VCR_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R60m/T52VCR_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.9899031,63.4248872],[125.2932314,63.3847438],[125.2932886,63.3848182],[125.2979312,63.3841971],[125.2981631,63.384498],[125.2989197,63.3843977],[125.2995225,63.3851818],[125.3895905,63.372172],[125.632161,63.3370397],[125.6340874,63.3367593],[125.7889128,63.314125],[125.7886802,63.3138295],[125.7887275,63.3138223],[125.7877109,63.3125302],[125.7877482,63.3125246],[125.7876699,63.3124252],[126.2195538,63.2478247],[126.2196728,63.2479728],[126.2197034,63.2479682],[126.2197423,63.2480168],[126.2246919,63.2472743],[126.2254384,63.2482054],[126.3050526,63.2354271],[126.3824637,63.2229757],[126.6983208,63.1720815],[126.6971974,63.1707085],[126.697223,63.1707043],[126.6971894,63.1706633],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.2137791,63.08455],[127.2172106,63.0305154],[125.0515033,62.9866068],[124.9899031,63.4248872]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCR","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCR_N05.11","eo:cloud_cover":8.21901,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.656129,"s2:mean_solar_zenith":42.6743589294175,"s2:mean_solar_azimuth":169.168645103758,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":82.176405,"s2:thin_cirrus_percentage":7.90844,"s2:cloud_shadow_percentage":0.498461,"s2:nodata_pixel_percentage":74.510235,"s2:unclassified_percentage":0.358015,"s2:not_vegetated_percentage":8.088169,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.049592,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.260978,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712","bbox":[125.0396236,62.0909077,127.2701768,63.1145955],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R60m/T52VCQ_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R60m/T52VCQ_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0317166,63.1145955],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.2138297,63.0845411],[127.2701768,62.1331753],[125.1685297,62.0909077],[125.0396236,63.0741757],[127.0317166,63.1145955]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCQ_N05.11","eo:cloud_cover":3.044319,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.262499,"s2:mean_solar_zenith":41.7812611954988,"s2:mean_solar_azimuth":169.186086335173,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":87.450129,"s2:thin_cirrus_percentage":0.000076,"s2:cloud_shadow_percentage":4.792491,"s2:nodata_pixel_percentage":0.1421,"s2:unclassified_percentage":0.395385,"s2:not_vegetated_percentage":4.05145,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.876345,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":2.167897,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712","bbox":[125.1574343,61.2394793,127.3194781,62.2209238],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R60m/T52VCP_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R60m/T52VCP_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.3194781,61.2394793],[127.1231788,61.2799116],[127.1232847,61.2800426],[127.1219084,61.2803084],[127.1220094,61.2804344],[127.1199989,61.2808238],[127.1202491,61.2811357],[126.7235626,61.3576592],[126.7234342,61.357496],[126.7230399,61.3575721],[126.7228081,61.3572812],[126.2803626,61.4399715],[126.2805356,61.4401926],[126.2800414,61.4402802],[126.28051,61.4408843],[125.8827905,61.5113669],[125.882757,61.511323],[125.8786748,61.5120461],[125.8781038,61.5113084],[125.6894189,61.5430415],[125.4306695,61.5865714],[125.4311657,61.5872339],[125.4264335,61.587998],[125.4268802,61.5885931],[125.2257255,61.6211511],[125.1574343,62.1785001],[127.2651556,62.2209238],[127.3194781,61.2394793]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCP","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCP_N05.11","eo:cloud_cover":0.378669,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.324839,"s2:mean_solar_zenith":40.8881029281013,"s2:mean_solar_azimuth":169.192930712771,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.305993,"s2:thin_cirrus_percentage":0.003307,"s2:cloud_shadow_percentage":0.609475,"s2:nodata_pixel_percentage":22.153567,"s2:unclassified_percentage":0.245625,"s2:not_vegetated_percentage":5.071058,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.08969,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.285671,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712","bbox":[126.9371671,61.2395079,127.3193394,61.3239944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R60m/T52VCN_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R60m/T52VCN_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.3193394,61.2395079],[127.1231788,61.2799116],[127.1232847,61.2800426],[127.1219084,61.2803084],[127.1220094,61.2804344],[127.1199989,61.2808238],[127.1202491,61.2811357],[126.9371671,61.3164534],[127.314961,61.3239944],[127.3193394,61.2395079]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCN","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCN_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.0,"s2:mean_solar_zenith":39.99542120153,"s2:mean_solar_azimuth":169.189539087694,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.996364,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.178582,"s2:unclassified_percentage":0.003635,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712","bbox":[124.9763539,62.9810794,127.1580834,63.4229999],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_AOT_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R60m/T51VXL_20250717T031031_B01_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B02_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B03_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B04_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B05_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B06_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B07_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B08_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R60m/T51VXL_20250717T031031_B09_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B11_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B12_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B8A_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_SCL_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_WVP_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_TCI_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.0041644,63.4229999],[125.2932314,63.3847438],[125.2932886,63.3848182],[125.2979312,63.3841971],[125.2981631,63.384498],[125.2989197,63.3843977],[125.2995225,63.3851818],[125.3895905,63.372172],[125.632161,63.3370397],[125.6340874,63.3367593],[125.7889128,63.314125],[125.7886802,63.3138295],[125.7887275,63.3138223],[125.7877109,63.3125302],[125.7877482,63.3125246],[125.7876699,63.3124252],[126.2195538,63.2478247],[126.2196728,63.2479728],[126.2197034,63.2479682],[126.2197423,63.2480168],[126.2246919,63.2472743],[126.2254384,63.2482054],[126.3050526,63.2354271],[126.3824637,63.2229757],[126.6983208,63.1720815],[126.6971974,63.1707085],[126.697223,63.1707043],[126.6971894,63.1706633],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.1580834,63.0943772],[127.141383,62.9810794],[124.9763539,63.0279443],[125.0041644,63.4229999]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXL","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VXL_N05.11","eo:cloud_cover":8.247952,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.686861,"s2:mean_solar_zenith":42.6678613842167,"s2:mean_solar_azimuth":169.206249487435,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":82.077497,"s2:thin_cirrus_percentage":7.931365,"s2:cloud_shadow_percentage":0.614416,"s2:nodata_pixel_percentage":73.752838,"s2:unclassified_percentage":0.342299,"s2:not_vegetated_percentage":8.025804,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.05055,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.266037,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712","bbox":[124.9176451,62.0855865,127.1538391,63.1156693],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_AOT_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R60m/T51VXK_20250717T031031_B01_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B02_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B03_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B04_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B05_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B06_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B07_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B08_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R60m/T51VXK_20250717T031031_B09_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B11_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B12_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B8A_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_SCL_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_WVP_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_TCI_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.9823142,63.1156693],[127.1538391,63.0686274],[127.0186771,62.0855865],[124.9176451,62.1307003],[124.9823142,63.1156693]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXK","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VXK_N05.11","eo:cloud_cover":2.430609,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.282683,"s2:mean_solar_zenith":41.7905952014376,"s2:mean_solar_azimuth":168.972251447119,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":88.523567,"s2:thin_cirrus_percentage":0.00207,"s2:cloud_shadow_percentage":3.906056,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.334412,"s2:not_vegetated_percentage":4.519023,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.6896,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":1.738939,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712","bbox":[124.8897369,61.3196438,127.0303111,62.2184397],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_AOT_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R60m/T51VXJ_20250717T031031_B01_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B02_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B03_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B04_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B05_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B06_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B07_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B08_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R60m/T51VXJ_20250717T031031_B09_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B11_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B12_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B8A_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_SCL_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_WVP_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_TCI_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.9206288,61.3196438],[126.7235626,61.3576592],[126.7234342,61.357496],[126.7230399,61.3575721],[126.7228081,61.3572812],[126.2803626,61.4399715],[126.2805356,61.4401926],[126.2800414,61.4402802],[126.28051,61.4408843],[125.8827905,61.5113669],[125.882757,61.511323],[125.8786748,61.5120461],[125.8781038,61.5113084],[125.6894189,61.5430415],[125.4306695,61.5865714],[125.4311657,61.5872339],[125.4264335,61.587998],[125.4268802,61.5885931],[125.0213233,61.6542347],[125.0206154,61.6532697],[125.0205831,61.6532264],[124.8897369,61.6728839],[124.9232108,62.2184397],[127.0303111,62.1731593],[126.9206288,61.3196438]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXJ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VXJ_N05.11","eo:cloud_cover":0.09484,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.390283,"s2:mean_solar_zenith":40.9134462760282,"s2:mean_solar_azimuth":168.736071092909,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.095291,"s2:thin_cirrus_percentage":0.002062,"s2:cloud_shadow_percentage":0.189878,"s2:nodata_pixel_percentage":29.218137,"s2:unclassified_percentage":0.256012,"s2:not_vegetated_percentage":5.894198,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.020653,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.072125,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712","bbox":[123.9805079,63.0251146,125.1982436,63.512869],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R60m/T51VWL_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R60m/T51VWL_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.9805079,63.0342255],[124.0175404,63.085966],[124.1204767,63.2286379],[124.224467,63.3711768],[124.32843,63.512869],[124.5210703,63.4881189],[124.6346038,63.4734666],[124.8427827,63.4461241],[124.8426612,63.4459627],[124.843131,63.4458996],[124.8420428,63.4444555],[125.1982436,63.3973148],[125.1694829,63.0251146],[123.9805079,63.0342255]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWL","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VWL_N05.11","eo:cloud_cover":1.018668,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":2.220357,"s2:mean_solar_zenith":42.8838893759669,"s2:mean_solar_azimuth":166.489936893053,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":72.827864,"s2:thin_cirrus_percentage":0.982256,"s2:cloud_shadow_percentage":0.032739,"s2:nodata_pixel_percentage":79.224998,"s2:unclassified_percentage":0.36414,"s2:not_vegetated_percentage":23.532301,"s2:degraded_msi_data_percentage":0.0254,"s2:high_proba_clouds_percentage":0.00452,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.031893,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712","bbox":[123.354832,62.1279766,125.1760247,63.1215163],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R60m/T51VWK_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R60m/T51VWK_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.354832,62.1412813],[123.4144574,62.228337],[123.5131015,62.3715201],[123.6127497,62.51456],[123.7130394,62.6574937],[123.8139747,62.8003313],[123.9153436,62.9431804],[124.0175404,63.085966],[124.0431896,63.1215163],[125.1760247,63.1128289],[125.1050472,62.1279766],[123.354832,62.1412813]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWK","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VWK_N05.11","eo:cloud_cover":7.135528,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.506344,"s2:mean_solar_zenith":42.0087072062846,"s2:mean_solar_azimuth":166.295937583059,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.679336,"s2:thin_cirrus_percentage":5.686684,"s2:cloud_shadow_percentage":2.243425,"s2:nodata_pixel_percentage":32.554737,"s2:unclassified_percentage":0.489599,"s2:not_vegetated_percentage":5.940771,"s2:degraded_msi_data_percentage":0.0169,"s2:high_proba_clouds_percentage":0.370124,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":1.07872,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712","bbox":[123.1985668,61.6459062,125.1111559,62.2286126],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R60m/T51VWJ_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R60m/T51VWJ_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.0727792,61.6459062],[125.0213233,61.6542347],[125.0206154,61.6532697],[125.0205831,61.6532264],[124.5618784,61.7221392],[124.5626009,61.7231425],[124.5564762,61.7240349],[124.5565079,61.7240783],[124.5563956,61.7240948],[124.5565044,61.7242461],[124.1371289,61.7858646],[124.1365717,61.7850755],[123.6592948,61.8481846],[123.660187,61.8494696],[123.3815512,61.8856612],[123.1985668,61.909715],[123.2200843,61.9419286],[123.3164139,62.0851892],[123.4144574,62.228337],[123.4146472,62.2286126],[125.1111559,62.2157059],[125.0727792,61.6459062]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWJ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VWJ_N05.11","eo:cloud_cover":17.276834,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.309421,"s2:mean_solar_zenith":41.1337724557747,"s2:mean_solar_azimuth":166.094856835182,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":78.719282,"s2:thin_cirrus_percentage":15.268284,"s2:cloud_shadow_percentage":1.109277,"s2:nodata_pixel_percentage":60.790163,"s2:unclassified_percentage":0.225751,"s2:not_vegetated_percentage":2.317589,"s2:degraded_msi_data_percentage":0.0102,"s2:high_proba_clouds_percentage":0.228628,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":1.779921,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500","bbox":[158.999207,76.4849983,160.3514349,76.9244244],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R60m/T57XWF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R60m/T57XWF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[158.999207,76.9244244],[159.0277214,76.9172337],[159.0284819,76.9173979],[159.0286906,76.9173453],[159.0290513,76.9174232],[159.0291725,76.9173927],[159.0304404,76.9176667],[159.0305714,76.9176338],[159.0316672,76.9178705],[159.0319787,76.9177922],[159.0327171,76.9179518],[159.032787,76.9179342],[159.0333799,76.9180625],[159.0336093,76.9180049],[159.034998,76.9183053],[159.0353471,76.9182178],[159.0360053,76.9183601],[159.036266,76.9182948],[159.0372549,76.9185087],[159.2809197,76.8551048],[159.7206787,76.7400003],[159.7134913,76.7384641],[160.3514349,76.5588516],[160.0037225,76.4849983],[158.9992329,76.493385],[158.999207,76.9244244]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XWF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XWF_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.998295,"s2:mean_solar_zenith":57.0125193903975,"s2:mean_solar_azimuth":206.318532794304,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001708,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":92.03369,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.019,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500","bbox":[158.999228,76.2654779,160.3514349,76.5810287],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R60m/T57XWE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R60m/T57XWE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[160.3115986,76.5700674],[160.3514349,76.5588516],[159.8829236,76.4593409],[159.4120142,76.3571229],[158.9992446,76.2654779],[158.999228,76.5810287],[160.3115986,76.5700674]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XWE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XWE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":100.0,"s2:mean_solar_zenith":56.2005204288736,"s2:mean_solar_azimuth":206.477256331399,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":94.691265,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500","bbox":[154.729453,77.3578558,157.1147583,77.8563411],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R60m/T57XVG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R60m/T57XVG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[154.729453,77.8563411],[154.8202751,77.8399709],[154.8207919,77.8400908],[154.8208739,77.8400761],[154.8230835,77.8405892],[154.8243286,77.8403644],[154.8293017,77.8415197],[155.2337823,77.7636555],[155.6282619,77.6875444],[155.6194528,77.6855303],[156.3071352,77.5465017],[156.3073866,77.5465585],[156.307522,77.5465311],[156.3087991,77.5468196],[156.309347,77.5467088],[156.3159533,77.5482018],[157.0648,77.3881022],[157.0565254,77.3862579],[157.1147583,77.3731023],[154.9021672,77.3578558],[154.729453,77.8563411]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVG_N05.11","eo:cloud_cover":0.341631,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.655706,"s2:mean_solar_zenith":57.4702757300568,"s2:mean_solar_azimuth":201.548329525018,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.00266,"s2:thin_cirrus_percentage":0.027108,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":87.528163,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0006,"s2:high_proba_clouds_percentage":0.005161,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.309362,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500","bbox":[154.8738859,76.4642293,159.3841769,77.4586326],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R60m/T57XVF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R60m/T57XVF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.7349029,77.4586326],[157.0648,77.3881022],[157.0565254,77.3862579],[157.7022397,77.2403818],[157.702601,77.2404615],[157.7027581,77.240426],[157.7047207,77.2408589],[157.7054919,77.2406847],[157.7066273,77.2409352],[157.7066411,77.2409321],[157.7066482,77.2409337],[157.7069247,77.2408713],[157.7113152,77.2418411],[157.751275,77.2323977],[158.3681624,77.0864368],[158.4215766,77.0737874],[158.4137157,77.0720741],[159.0277214,76.9172337],[159.0284819,76.9173979],[159.0286906,76.9173453],[159.0290513,76.9174232],[159.0291725,76.9173927],[159.0304404,76.9176667],[159.0305714,76.9176338],[159.0316672,76.9178705],[159.0319787,76.9177922],[159.0327171,76.9179518],[159.032787,76.9179342],[159.0333799,76.9180625],[159.0336093,76.9180049],[159.034998,76.9183053],[159.0353471,76.9182178],[159.0360053,76.9183601],[159.036266,76.9182948],[159.0372549,76.9185087],[159.2809197,76.8551048],[159.3841769,76.8280778],[159.3743463,76.4931072],[155.1684626,76.4642293],[154.8738859,77.4458044],[156.7349029,77.4586326]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVF_N05.11","eo:cloud_cover":0.183424,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.799508,"s2:mean_solar_zenith":56.6528706201607,"s2:mean_solar_azimuth":201.956721906669,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000284,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.012645,"s2:nodata_pixel_percentage":19.528614,"s2:unclassified_percentage":0.000025,"s2:not_vegetated_percentage":0.003999,"s2:degraded_msi_data_percentage":0.0129,"s2:high_proba_clouds_percentage":0.050012,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.133412,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500","bbox":[155.1439841,75.5697411,159.376745,76.580749],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R60m/T57XVE_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R60m/T57XVE_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[159.3707743,76.3479666],[158.9476216,76.2540163],[158.4897237,76.1501067],[158.0387006,76.0453667],[157.5940915,75.9398774],[157.1558349,75.8336193],[156.7242541,75.7265717],[156.2992958,75.618772],[156.1292961,75.5747183],[155.4016102,75.5697411],[155.1439841,76.5516761],[159.376745,76.580749],[159.3707743,76.3479666]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.999988,"s2:mean_solar_zenith":55.8369908790616,"s2:mean_solar_azimuth":202.358804292345,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":5e-6,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":31.199139,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":5e-6,"s2:degraded_msi_data_percentage":0.0254,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500","bbox":[155.3801086,75.3937971,156.4805352,75.6647472],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R60m/T57XVD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R60m/T57XVD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.4805352,75.6647472],[156.2992958,75.618772],[155.8804421,75.5102304],[155.4676367,75.400987],[155.4410269,75.3937971],[155.3801086,75.6572177],[156.4805352,75.6647472]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVD_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":100.0,"s2:mean_solar_zenith":55.0232203762536,"s2:mean_solar_azimuth":202.757833932918,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":96.295464,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500","bbox":[152.999126,77.3539538,157.1995181,78.1584369],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R60m/T56XNM_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R60m/T56XNM_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[152.999126,78.1584369],[153.2137934,78.1240967],[153.2164319,78.1247293],[153.2181228,78.1244585],[153.2226392,78.1255419],[153.6076847,78.0591084],[154.0880985,77.9760879],[154.0781257,77.9737392],[154.8202751,77.8399709],[154.8207919,77.8400908],[154.8208739,77.8400761],[154.8230835,77.8405892],[154.8243286,77.8403644],[154.8293017,77.8415197],[155.2337823,77.7636555],[155.6282619,77.6875444],[155.6194528,77.6855303],[156.3071352,77.5465017],[156.3073866,77.5465585],[156.307522,77.5465311],[156.3087991,77.5468196],[156.309347,77.5467088],[156.3159533,77.5482018],[157.0648,77.3881022],[157.0565254,77.3862579],[157.1995181,77.3539538],[152.9991794,77.3891507],[152.999126,78.1584369]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNM_N05.11","eo:cloud_cover":5.330747,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":94.668388,"s2:mean_solar_zenith":57.340280258578,"s2:mean_solar_azimuth":199.653776562899,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000865,"s2:thin_cirrus_percentage":2.421382,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":62.79549,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0251,"s2:high_proba_clouds_percentage":0.541456,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.36791,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500","bbox":[152.999228,75.571101,157.2301741,76.5810287],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R60m/T56XNK_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R60m/T56XNK_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[157.0152107,75.7987394],[156.7242541,75.7265717],[156.2992958,75.618772],[156.1153371,75.571101],[152.9992797,75.5970173],[152.999228,76.5810287],[157.2301741,76.5456907],[157.0152107,75.7987394]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNK_N05.11","eo:cloud_cover":33.50164,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":66.49825,"s2:mean_solar_zenith":55.6396491325,"s2:mean_solar_azimuth":199.832394104259,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000014,"s2:thin_cirrus_percentage":0.030269,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":2.534195,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000092,"s2:degraded_msi_data_percentage":0.0223,"s2:high_proba_clouds_percentage":24.216855,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.254517,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500","bbox":[152.9992754,74.7005381,156.4460123,75.6846675],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R60m/T56XNJ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R60m/T56XNJ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.4460123,75.6559898],[156.2992958,75.618772],[155.8804421,75.5102304],[155.4676367,75.400987],[155.0607457,75.2910453],[155.0597053,75.2907587],[155.0571479,75.2900682],[154.8086754,75.2215872],[154.6595007,75.180482],[154.6578474,75.1800178],[154.6559695,75.1795002],[154.637369,75.1742679],[154.2635992,75.0693229],[153.8728205,74.9574878],[153.4876079,74.8449646],[153.1077556,74.7318693],[153.0045456,74.7005381],[152.999321,74.7005814],[152.9992754,75.6846675],[156.4460123,75.6559898]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNJ_N05.11","eo:cloud_cover":70.339298,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":29.659665,"s2:mean_solar_zenith":54.7911516161212,"s2:mean_solar_azimuth":199.962093717898,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.127737,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":56.646645,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.001041,"s2:degraded_msi_data_percentage":0.0227,"s2:high_proba_clouds_percentage":60.172588,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.038975,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500","bbox":[152.9993171,74.698952,153.2907765,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R60m/T56XNH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R60m/T56XNH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.2907765,74.786361],[153.1077556,74.7318693],[152.9993208,74.698952],[152.9993171,74.7887762],[153.2907765,74.786361]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNH_N05.11","eo:cloud_cover":91.559899,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":8.429157,"s2:mean_solar_zenith":53.9446261366776,"s2:mean_solar_azimuth":200.114987193235,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.109418,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.666452,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.010942,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":68.745273,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":22.705208,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500","bbox":[150.9180636,78.2677006,152.2768507,78.4028043],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R60m/T56XMN_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R60m/T56XMN_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.9180636,78.2677006],[150.9973416,78.2879305],[151.4584651,78.4028043],[152.0501679,78.3119796],[152.2768507,78.2770951],[150.9180636,78.2677006]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMN_N05.11","eo:cloud_cover":98.9811,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.018898,"s2:mean_solar_zenith":57.9347833437519,"s2:mean_solar_azimuth":194.608044592398,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.390734,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":52.855265,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":46.125838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500","bbox":[148.785543,77.3578558,153.4242399,78.3609268],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R60m/T56XMM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R60m/T56XMM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.785543,77.694455],[148.7915312,77.6961872],[149.2156941,77.8158741],[149.6482867,77.9348992],[150.0892084,78.0532582],[150.5388616,78.1709369],[150.9973416,78.2879305],[151.2777707,78.3577902],[151.7312878,78.3609268],[152.0501679,78.3119796],[152.4104764,78.2565313],[152.4077242,78.2558588],[152.4080935,78.2557991],[152.4073844,78.2556261],[152.4076782,78.2555787],[152.4070375,78.2554222],[152.4070648,78.2554178],[152.4060861,78.2551787],[152.4060873,78.2551785],[152.4018478,78.2541446],[152.4019927,78.2541215],[152.4015927,78.2540239],[153.2137934,78.1240967],[153.2164319,78.1247293],[153.2181228,78.1244585],[153.2226392,78.1255419],[153.4242399,78.0907589],[153.4004489,77.3888525],[148.9021672,77.3578558],[148.785543,77.694455]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMM_N05.11","eo:cloud_cover":53.933001,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":46.066993,"s2:mean_solar_zenith":57.0791530126844,"s2:mean_solar_azimuth":194.974581699899,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":4e-6,"s2:thin_cirrus_percentage":0.964429,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":23.851644,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0112,"s2:high_proba_clouds_percentage":37.277386,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.691185,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500","bbox":[148.8738859,76.4642293,153.4032221,77.4770256],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R60m/T56XML_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R60m/T56XML_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.8738859,77.4458044],[153.4032221,77.4770256],[153.3743463,76.4931072],[149.1684626,76.4642293],[148.8738859,77.4458044]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XML","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XML_N05.11","eo:cloud_cover":53.365338,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":16.842276,"s2:mean_solar_zenith":56.2252079251133,"s2:mean_solar_azimuth":195.327958642391,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":29.711074,"s2:vegetation_percentage":0.00001,"s2:thin_cirrus_percentage":8.906405,"s2:cloud_shadow_percentage":0.073955,"s2:nodata_pixel_percentage":0.000017,"s2:unclassified_percentage":0.000524,"s2:not_vegetated_percentage":0.004741,"s2:degraded_msi_data_percentage":0.0244,"s2:high_proba_clouds_percentage":17.852481,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":26.606452,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500","bbox":[149.1439841,75.5697411,153.376745,76.580749],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R60m/T56XMK_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R60m/T56XMK_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.1439841,76.5516761],[153.376745,76.580749],[153.3515061,75.5967575],[149.4016102,75.5697411],[149.1439841,76.5516761]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMK_N05.11","eo:cloud_cover":45.38013,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":52.364403,"s2:mean_solar_zenith":55.3719755202348,"s2:mean_solar_azimuth":195.673002025668,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":1.971009,"s2:vegetation_percentage":0.000159,"s2:thin_cirrus_percentage":5.233015,"s2:cloud_shadow_percentage":0.283665,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.00003,"s2:not_vegetated_percentage":0.000601,"s2:degraded_msi_data_percentage":0.0026,"s2:high_proba_clouds_percentage":21.191287,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.95583,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500","bbox":[149.3801086,74.6749694,153.353612,75.684406],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R60m/T56XMJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R60m/T56XMJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.3336017,74.7991116],[153.1077556,74.7318693],[152.9963672,74.6980554],[149.6072622,74.6749694],[149.3801086,75.6572177],[153.353612,75.684406],[153.3336017,74.7991116]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMJ_N05.11","eo:cloud_cover":85.592216,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":13.543333,"s2:mean_solar_zenith":54.5200220153859,"s2:mean_solar_azimuth":196.01289650902,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.145424,"s2:vegetation_percentage":0.000017,"s2:thin_cirrus_percentage":1.460761,"s2:cloud_shadow_percentage":0.7084,"s2:nodata_pixel_percentage":0.474215,"s2:unclassified_percentage":0.005104,"s2:not_vegetated_percentage":0.005507,"s2:degraded_msi_data_percentage":0.0183,"s2:high_proba_clouds_percentage":67.295456,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":16.835994,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500","bbox":[149.5881136,73.7804829,153.2972396,74.7882853],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R60m/T56XMH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R60m/T56XMH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.2972396,74.7882853],[153.1077556,74.7318693],[152.733329,74.6182055],[152.364361,74.5038966],[152.0006473,74.3890213],[151.6423724,74.2735787],[151.2890793,74.1575707],[150.9406558,74.0410123],[150.5970299,73.923947],[150.2579129,73.8063941],[150.1921903,73.7832117],[149.7898569,73.7804829],[149.5881136,74.763009],[153.2972396,74.7882853]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMH_N05.11","eo:cloud_cover":99.362773,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.636787,"s2:mean_solar_zenith":53.6699179512728,"s2:mean_solar_azimuth":196.350226583669,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000036,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.212714,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":44.940388,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000404,"s2:degraded_msi_data_percentage":0.0241,"s2:high_proba_clouds_percentage":93.303627,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":5.846434,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500","bbox":[149.7728973,73.6488294,150.448892,73.8725959],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R60m/T56XMG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R60m/T56XMG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.448892,73.8725959],[150.2579129,73.8063941],[149.9231974,73.6883294],[149.81311,73.6488294],[149.7728973,73.8680091],[150.448892,73.8725959]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMG_N05.11","eo:cloud_cover":99.953437,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.046564,"s2:mean_solar_zenith":52.8207046054607,"s2:mean_solar_azimuth":196.687646798262,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":97.905159,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":98.446125,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.507312,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500","bbox":[150.8601802,78.2447576,151.8739788,78.4028043],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R60m/T55XEH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R60m/T55XEH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.8601802,78.2529301],[150.9973416,78.2879305],[151.4584651,78.4028043],[151.8739788,78.3390241],[151.8321726,78.2447576],[150.8601802,78.2529301]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEH_N05.11","eo:cloud_cover":98.501015,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.498985,"s2:mean_solar_zenith":57.8666844216934,"s2:mean_solar_azimuth":193.082431081795,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.070586,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":45.901051,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":52.599967,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500","bbox":[147.7295877,77.3514755,151.8679037,78.3377171],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R60m/T55XEG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R60m/T55XEG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.7295877,77.3830302],[147.9673017,77.455002],[148.3756143,77.5758752],[148.7915312,77.6961872],[149.2156941,77.8158741],[149.6482867,77.9348992],[150.0892084,78.0532582],[150.5388616,78.1709369],[150.9973416,78.2879305],[151.1971937,78.3377171],[151.8679037,78.332076],[151.4952763,77.3514755],[147.7295877,77.3830302]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEG_N05.11","eo:cloud_cover":77.95974,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":22.04026,"s2:mean_solar_zenith":56.9884929302579,"s2:mean_solar_azimuth":193.066565610651,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.72874,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":51.733977,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0006,"s2:high_proba_clouds_percentage":60.839087,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":16.391915,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500","bbox":[146.999193,76.458284,151.5262788,77.4688195],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R60m/T55XEF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R60m/T55XEF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.999193,77.1566382],[147.1725997,77.2116075],[147.5662727,77.333584],[147.9673017,77.455002],[148.0139776,77.4688195],[151.5262788,77.4393779],[151.2033368,76.458284],[146.9992329,76.493385],[146.999193,77.1566382]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEF_N05.11","eo:cloud_cover":82.031554,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":10.689694,"s2:mean_solar_zenith":56.1114584570531,"s2:mean_solar_azimuth":193.082010454725,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":7.173916,"s2:vegetation_percentage":0.000031,"s2:thin_cirrus_percentage":4.543883,"s2:cloud_shadow_percentage":0.097317,"s2:nodata_pixel_percentage":3.864735,"s2:unclassified_percentage":0.000538,"s2:not_vegetated_percentage":0.00556,"s2:degraded_msi_data_percentage":0.0197,"s2:high_proba_clouds_percentage":52.378035,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.109643,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500","bbox":[146.999228,75.5641782,151.2301741,76.5810287],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R60m/T55XEE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R60m/T55XEE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.999228,76.5810287],[151.2301741,76.5456907],[150.9477068,75.5641782],[146.9992797,75.5970173],[146.999228,76.5810287]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEE_N05.11","eo:cloud_cover":53.384507,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":46.615151,"s2:mean_solar_zenith":55.2345549596294,"s2:mean_solar_azimuth":193.124143423144,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000093,"s2:thin_cirrus_percentage":4.994157,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000249,"s2:degraded_msi_data_percentage":0.0196,"s2:high_proba_clouds_percentage":39.077944,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.312408,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500","bbox":[146.9992754,74.6697452,150.9712829,75.6846675],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R60m/T55XED_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R60m/T55XED_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.9992754,75.6846675],[150.9712829,75.6516194],[150.7222017,74.6697452],[146.999321,74.7005814],[146.9992754,75.6846675]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XED","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XED_N05.11","eo:cloud_cover":77.311695,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":12.304876,"s2:mean_solar_zenith":54.3583376728985,"s2:mean_solar_azimuth":193.18952409454,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":2.859898,"s2:vegetation_percentage":0.440835,"s2:thin_cirrus_percentage":2.720784,"s2:cloud_shadow_percentage":1.480692,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":3.236721,"s2:not_vegetated_percentage":2.365284,"s2:degraded_msi_data_percentage":0.0013,"s2:high_proba_clouds_percentage":59.503609,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.087296,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500","bbox":[146.9993171,73.7783931,150.7431996,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R60m/T55XEC_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R60m/T55XEC_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.55186,73.9082891],[150.2579129,73.8063941],[150.1785294,73.7783931],[146.9993576,73.8046111],[146.9993171,74.7887762],[150.7431996,74.7577532],[150.55186,73.9082891]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEC_N05.11","eo:cloud_cover":68.469048,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":7.635746,"s2:mean_solar_zenith":53.4833641272104,"s2:mean_solar_azimuth":193.275554588597,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":23.895152,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":1.61995,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.685422,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.00006,"s2:degraded_msi_data_percentage":0.0197,"s2:high_proba_clouds_percentage":52.331609,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.517485,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951","bbox":[146.9993572,72.901175,149.0036291,73.8089506],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R60m/T55XEB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R60m/T55XEB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.9993572,73.8089506],[147.1427832,73.7794979],[147.1388486,73.7779517],[147.7229513,73.6506409],[147.7233951,73.650813],[147.7235094,73.6507881],[147.7236932,73.6508593],[147.7240475,73.6507822],[147.7243296,73.6508916],[147.7243504,73.6508871],[147.7247691,73.6510496],[147.7248505,73.6510319],[147.7255062,73.6512862],[147.7257039,73.6512433],[147.7261293,73.6514081],[147.7263864,73.6513524],[147.7267364,73.6514879],[147.7270351,73.6514232],[147.727791,73.651716],[147.7280459,73.6516608],[147.7281685,73.6517083],[148.1005415,73.5684062],[148.3843142,73.504544],[148.3808209,73.5032084],[149.0036291,73.3532031],[148.6905197,73.2352856],[148.3769724,73.1148966],[148.0677956,72.9940723],[147.8341147,72.901175],[146.9993903,72.9080271],[146.9993572,73.8089506]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XEB_N05.11","eo:cloud_cover":2.939822,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":97.059447,"s2:mean_solar_zenith":52.6086159254848,"s2:mean_solar_azimuth":193.380384898633,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000733,"s2:thin_cirrus_percentage":2.770614,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":67.427117,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0269,"s2:high_proba_clouds_percentage":0.010828,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.15838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500","bbox":[146.9993542,73.2165381,150.4241503,73.8922753],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R60m/T55XEB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R60m/T55XEB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.9964017,73.3707326],[148.0002195,73.3721947],[147.7680023,73.4239233],[147.412226,73.503572],[147.4092088,73.5024014],[147.0642351,73.5769222],[146.9993652,73.5909837],[146.9993542,73.8922753],[150.4241503,73.8640193],[150.2579129,73.8063941],[149.9231974,73.6883294],[149.5927626,73.5697675],[149.2665598,73.4507085],[148.9449355,73.3311567],[148.6417125,73.2165381],[148.2633675,73.3068357],[147.9964017,73.3707326]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEB_N05.11","eo:cloud_cover":30.561236,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":69.43807,"s2:mean_solar_zenith":52.6086159254848,"s2:mean_solar_azimuth":193.380384898633,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":8.89519,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":59.988683,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000697,"s2:degraded_msi_data_percentage":0.0254,"s2:high_proba_clouds_percentage":16.320927,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":5.34512,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951","bbox":[146.9993873,72.5599198,148.0501794,72.9956989],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R60m/T55XEA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R60m/T55XEA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.0501794,72.9870692],[147.7628731,72.8728537],[147.4620504,72.751222],[147.1650834,72.6291719],[146.9994017,72.5599198],[146.9993873,72.9956989],[148.0501794,72.9870692]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XEA_N05.11","eo:cloud_cover":12.590303,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":74.539685,"s2:mean_solar_zenith":51.7346580706931,"s2:mean_solar_azimuth":193.502587708943,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":12.870012,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":11.001419,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":93.117845,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.228802,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.360082,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500","bbox":[144.9727037,76.4766174,147.3974775,77.2812842],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R60m/T55XDF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R60m/T55XDF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[144.9727037,76.4766174],[145.3052262,76.5938859],[145.6660787,76.7184031],[146.0332306,76.8424469],[146.4064577,76.966006],[146.7860659,77.0890777],[147.1725997,77.2116075],[147.3974775,77.2812842],[147.3743463,76.4931072],[144.9727037,76.4766174]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDF_N05.11","eo:cloud_cover":97.803628,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.196238,"s2:mean_solar_zenith":55.9469383487191,"s2:mean_solar_azimuth":188.652071215512,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.00006,"s2:thin_cirrus_percentage":0.096082,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":77.772284,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000075,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":91.611886,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.09566,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500","bbox":[143.3258015,75.5697411,147.376745,76.580749],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R60m/T55XDE_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R60m/T55XDE_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.3258015,75.8586838],[143.5955298,75.9644114],[143.9254381,76.0911774],[144.2610233,76.2175534],[144.6027971,76.3434738],[144.9508318,76.4689039],[145.2260891,76.5659771],[147.376745,76.580749],[147.3515061,75.5967575],[143.4016102,75.5697411],[143.3258015,75.8586838]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDE_N05.11","eo:cloud_cover":90.807956,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.909883,"s2:mean_solar_zenith":55.0674685642311,"s2:mean_solar_azimuth":188.93362573964,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.239319,"s2:vegetation_percentage":1.220182,"s2:thin_cirrus_percentage":0.605449,"s2:cloud_shadow_percentage":0.091088,"s2:nodata_pixel_percentage":17.870143,"s2:unclassified_percentage":0.886826,"s2:not_vegetated_percentage":3.844749,"s2:degraded_msi_data_percentage":0.0112,"s2:high_proba_clouds_percentage":81.95383,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.248676,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500","bbox":[143.3801086,74.6749694,147.353612,75.684406],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R60m/T55XDD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R60m/T55XDD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.3801086,75.6572177],[147.353612,75.684406],[147.3313691,74.7003374],[143.6072622,74.6749694],[143.3801086,75.6572177]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDD_N05.11","eo:cloud_cover":58.769011,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":6.432378,"s2:mean_solar_zenith":54.188595245275,"s2:mean_solar_azimuth":189.20742134287,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":18.296257,"s2:vegetation_percentage":4.808707,"s2:thin_cirrus_percentage":15.144363,"s2:cloud_shadow_percentage":0.7723,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.309027,"s2:not_vegetated_percentage":9.612324,"s2:degraded_msi_data_percentage":0.0249,"s2:high_proba_clouds_percentage":32.176167,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.448479,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951","bbox":[143.6576412,73.7804829,147.0309408,74.4243973],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R60m/T55XDC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R60m/T55XDC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.6576412,74.4243973],[143.8425029,74.3949498],[143.8427858,74.3950704],[143.8428508,74.3950601],[143.8432757,74.3952413],[143.8433346,74.3952319],[143.8442535,74.3956238],[143.8455124,74.3954229],[143.8477618,74.3963821],[143.8611116,74.3941139],[144.564333,74.2744318],[144.5600383,74.2726344],[145.1837304,74.1618627],[145.183849,74.1619116],[145.1839586,74.1618921],[145.1842111,74.1619961],[145.1843403,74.1619731],[145.1848576,74.1621862],[145.1854279,74.1620849],[145.18592,74.1622875],[145.1861034,74.1622549],[145.1886967,74.163322],[145.8756247,74.034811],[145.8715136,74.0331463],[146.4711492,73.9150241],[146.4713366,73.9150989],[146.4714534,73.9150759],[146.4717724,73.9152032],[146.4720054,73.9151573],[146.4729092,73.9155181],[146.4735859,73.9153848],[146.4740415,73.9155666],[146.4745134,73.9154737],[146.4762838,73.9161797],[146.7211208,73.8660542],[146.8460013,73.8404424],[147.0309408,73.8024649],[143.7898569,73.7804829],[143.6576412,74.4243973]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XDC_N05.11","eo:cloud_cover":8.149624,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":91.848963,"s2:mean_solar_zenith":53.3108710887811,"s2:mean_solar_azimuth":189.475936283652,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001413,"s2:thin_cirrus_percentage":8.13981,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":69.469947,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.002,"s2:high_proba_clouds_percentage":0.001554,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.008259,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500","bbox":[143.5881136,73.795527,147.3332438,74.7885307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R60m/T55XDC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R60m/T55XDC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.0080057,73.795527],[145.9698994,73.8030006],[145.4871549,73.8978162],[145.4905777,73.8992053],[145.4899398,73.8993243],[145.49035,73.8994909],[145.4900864,73.89954],[145.4905524,73.8997292],[144.8815565,74.0132759],[144.8811576,74.0131115],[144.880944,74.0131514],[144.8801573,74.012827],[144.8800192,74.0128527],[144.8767525,74.0115065],[144.1773071,74.1355529],[144.1811868,74.1371806],[144.1796693,74.1374379],[144.1809535,74.1379769],[143.6996537,74.2197888],[143.5881136,74.763009],[147.3332438,74.7885307],[147.313497,73.8043812],[146.0080057,73.795527]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDC_N05.11","eo:cloud_cover":28.899541,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":71.100444,"s2:mean_solar_zenith":53.3108710887811,"s2:mean_solar_azimuth":189.475936283652,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000015,"s2:thin_cirrus_percentage":13.928008,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":13.920067,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0067,"s2:high_proba_clouds_percentage":8.524251,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.447282,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951","bbox":[143.7728973,72.8852322,147.3124334,73.887309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R60m/T55XDB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R60m/T55XDB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.617302,73.887309],[146.7211208,73.8660542],[146.8460013,73.8404424],[147.1427832,73.7794979],[147.1388486,73.7779517],[147.3124334,73.7401172],[147.297514,72.90781],[143.9532063,72.8852322],[143.7728973,73.8680091],[146.617302,73.887309]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XDB_N05.11","eo:cloud_cover":1.884676,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":98.115051,"s2:mean_solar_zenith":52.4332724762266,"s2:mean_solar_azimuth":189.741694550662,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000273,"s2:thin_cirrus_percentage":1.371634,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":1.536909,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0111,"s2:high_proba_clouds_percentage":0.180282,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.332761,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500","bbox":[145.5766032,73.524143,147.3151567,73.8920442],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R60m/T55XDB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R60m/T55XDB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.308562,73.524143],[147.0642351,73.5769222],[146.7539348,73.6441841],[146.757624,73.6456368],[146.1872056,73.761992],[146.1629589,73.7669515],[146.1599113,73.7657346],[145.9698994,73.8030006],[145.5766032,73.8802477],[147.3151567,73.8920442],[147.308562,73.524143]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDB_N05.11","eo:cloud_cover":8.546601,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":91.453397,"s2:mean_solar_zenith":52.4332724762266,"s2:mean_solar_azimuth":189.741694550662,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":7.799733,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":90.71641,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.020871,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.725997,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951","bbox":[143.9380027,71.989773,147.2990014,72.9954806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R60m/T55XDA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R60m/T55XDA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.2939546,72.6821365],[147.1650834,72.6291719],[146.8721115,72.5067147],[146.5833251,72.3838049],[146.2981795,72.2604713],[146.0160354,72.1367849],[145.8225341,72.0506566],[145.7348784,72.0116786],[145.7103461,72.0005912],[144.1000757,71.989773],[143.9380027,72.9727797],[147.2990014,72.9954806],[147.2939546,72.6821365]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XDA_N05.11","eo:cloud_cover":4.178511,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":45.487988,"s2:mean_solar_zenith":51.5563580868775,"s2:mean_solar_azimuth":190.006349868291,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":19.9306,"s2:vegetation_percentage":18.95621,"s2:thin_cirrus_percentage":3.178966,"s2:cloud_shadow_percentage":0.016211,"s2:nodata_pixel_percentage":16.86351,"s2:unclassified_percentage":0.001732,"s2:not_vegetated_percentage":11.428755,"s2:degraded_msi_data_percentage":0.0268,"s2:high_proba_clouds_percentage":0.226987,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.772558,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951","bbox":[144.0862883,71.2917806,145.911249,72.090144],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R60m/T55WDV_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R60m/T55WDV_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[145.911249,72.090144],[145.8225341,72.0506566],[145.7348784,72.0116786],[145.6002591,71.9508375],[145.4618036,71.8883175],[145.1900375,71.7635196],[144.9218929,71.638388],[144.657853,71.5128494],[144.3973893,71.387001],[144.2033674,71.2917806],[144.0862883,72.0778773],[145.911249,72.090144]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WDV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55WDV_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":20.162447,"s2:mean_solar_zenith":50.6806861481694,"s2:mean_solar_azimuth":190.271271226905,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":61.317939,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":77.268368,"s2:unclassified_percentage":0.007108,"s2:not_vegetated_percentage":18.512507,"s2:degraded_msi_data_percentage":0.013,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951","bbox":[143.8987666,71.9504888,147.4017391,72.972798],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R60m/T54XXF_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R60m/T54XXF_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.334089,72.6986313],[147.1650834,72.6291719],[146.8721115,72.5067147],[146.5833251,72.3838049],[146.2981795,72.2604713],[146.0160354,72.1367849],[145.8225341,72.0506566],[145.7348784,72.0116786],[145.6002591,71.9508375],[145.5994869,71.9504888],[143.8987666,71.9897902],[144.0607752,72.972798],[147.4017391,72.8951551],[147.334089,72.6986313]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XXF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XXF_N05.11","eo:cloud_cover":3.613853,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":44.992217,"s2:mean_solar_zenith":51.5059130620187,"s2:mean_solar_azimuth":189.959083750985,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":16.5314,"s2:vegetation_percentage":22.158545,"s2:thin_cirrus_percentage":2.81934,"s2:cloud_shadow_percentage":0.016218,"s2:nodata_pixel_percentage":18.535386,"s2:unclassified_percentage":0.002317,"s2:not_vegetated_percentage":12.685449,"s2:degraded_msi_data_percentage":0.0267,"s2:high_proba_clouds_percentage":0.182719,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.611794,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500","bbox":[142.642721,75.5641782,145.2301741,76.5461933],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R60m/T54XWK_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R60m/T54XWK_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[142.642721,75.5833488],[142.9522892,75.7096954],[143.2711197,75.8372498],[143.5955298,75.9644114],[143.9254381,76.0911774],[144.2610233,76.2175534],[144.6027971,76.3434738],[144.9508318,76.4689039],[145.1699908,76.5461933],[145.2301741,76.5456907],[144.9477068,75.5641782],[142.642721,75.5833488]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XWK_N05.11","eo:cloud_cover":72.699803,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":5.865882,"s2:mean_solar_zenith":54.9924664658243,"s2:mean_solar_azimuth":186.368779040953,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":2.459931,"s2:vegetation_percentage":3.335379,"s2:thin_cirrus_percentage":4.421542,"s2:cloud_shadow_percentage":0.405315,"s2:nodata_pixel_percentage":70.761877,"s2:unclassified_percentage":2.99689,"s2:not_vegetated_percentage":12.236802,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":53.297496,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.980765,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951","bbox":[140.9993155,74.6932115,141.8890895,74.8190142],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R60m/T54XWJ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R60m/T54XWJ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993155,74.8190142],[141.2888983,74.7793529],[141.6421896,74.7308209],[141.7279364,74.7189072],[141.7270199,74.718493],[141.7271871,74.7184689],[141.7267913,74.7182899],[141.7267941,74.7182895],[141.7233817,74.7167444],[141.8890895,74.6932115],[140.999321,74.7005814],[140.9993155,74.8190142]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWJ_N05.11","eo:cloud_cover":44.347519,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":12.819929,"s2:mean_solar_zenith":54.100346650766,"s2:mean_solar_azimuth":186.364404467272,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":42.826158,"s2:vegetation_percentage":0.001421,"s2:thin_cirrus_percentage":0.680291,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.598808,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.004973,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":27.896923,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.770306,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500","bbox":[140.9993131,74.6697452,144.9712829,75.6692426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R60m/T54XWJ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R60m/T54XWJ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993131,74.8708045],[141.1431699,74.936469],[141.4329284,75.0661884],[141.7274136,75.1955858],[142.0264599,75.3246509],[142.3302554,75.4533604],[142.6387495,75.5817279],[142.8531737,75.6692426],[144.9712829,75.6516194],[144.7222017,74.6697452],[140.999321,74.7005814],[140.9993131,74.8708045]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XWJ_N05.11","eo:cloud_cover":36.025184,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":8.738525,"s2:mean_solar_zenith":54.100346650766,"s2:mean_solar_azimuth":186.364404467272,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":22.222336,"s2:vegetation_percentage":6.057433,"s2:thin_cirrus_percentage":17.357659,"s2:cloud_shadow_percentage":0.880937,"s2:nodata_pixel_percentage":19.857705,"s2:unclassified_percentage":3.742191,"s2:not_vegetated_percentage":22.333394,"s2:degraded_msi_data_percentage":0.0106,"s2:high_proba_clouds_percentage":4.333816,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.33371,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951","bbox":[140.9993171,73.7755608,144.6310856,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R60m/T54XWH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R60m/T54XWH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[141.2343127,74.7868289],[141.2888983,74.7793529],[141.6421896,74.7308209],[141.7279364,74.7189072],[141.7270199,74.718493],[141.7271871,74.7184689],[141.7267913,74.7182899],[141.7267941,74.7182895],[141.7233817,74.7167444],[142.4260678,74.6169529],[142.4274429,74.6175627],[142.4284679,74.6174161],[142.4286886,74.6175139],[142.4293456,74.6174205],[142.4313117,74.6182925],[142.5714281,74.5968342],[143.0565481,74.522405],[143.1901437,74.5018368],[143.1851411,74.4996642],[143.8425029,74.3949498],[143.8427858,74.3950704],[143.8428508,74.3950601],[143.8432757,74.3952413],[143.8433346,74.3952319],[143.8442535,74.3956238],[143.8455124,74.3954229],[143.8477618,74.3963821],[143.8611116,74.3941139],[144.564333,74.2744318],[144.5600383,74.2726344],[144.6310856,74.260016],[144.5219633,73.7755608],[140.9993576,73.8046111],[140.9993171,74.7887762],[141.2343127,74.7868289]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWH_N05.11","eo:cloud_cover":15.946352,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":20.537336,"s2:mean_solar_zenith":53.2089328359889,"s2:mean_solar_azimuth":186.37760112025,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":59.982371,"s2:vegetation_percentage":2.560437,"s2:thin_cirrus_percentage":9.459811,"s2:cloud_shadow_percentage":0.034289,"s2:nodata_pixel_percentage":23.364276,"s2:unclassified_percentage":0.002771,"s2:not_vegetated_percentage":0.936446,"s2:degraded_msi_data_percentage":0.0213,"s2:high_proba_clouds_percentage":2.69999,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.786552,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500","bbox":[140.9993171,74.0629478,144.7431996,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R60m/T54XWH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R60m/T54XWH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[144.5866965,74.0629478],[144.1773071,74.1355529],[144.1811868,74.1371806],[144.1796693,74.1374379],[144.1809535,74.1379769],[143.5452185,74.2460398],[143.540708,74.244115],[142.8065067,74.3613423],[142.809754,74.3627563],[142.8066019,74.3632394],[142.8066661,74.3632673],[142.80603,74.3633653],[142.8066123,74.3636189],[142.1339778,74.467267],[142.1294965,74.4652781],[141.6961413,74.5267268],[141.3473333,74.576475],[141.3517476,74.57848],[140.9993238,74.6268919],[140.9993171,74.7887762],[144.7431996,74.7577532],[144.5866965,74.0629478]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XWH_N05.11","eo:cloud_cover":51.360768,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":12.210329,"s2:mean_solar_zenith":53.208932835989,"s2:mean_solar_azimuth":186.37760112025,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":36.428866,"s2:vegetation_percentage":0.000038,"s2:thin_cirrus_percentage":47.277904,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":56.844443,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0262,"s2:high_proba_clouds_percentage":1.294806,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.788056,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951","bbox":[140.9993542,72.8805816,144.5405623,73.8922753],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R60m/T54XWG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R60m/T54XWG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993542,73.8922753],[144.5405623,73.8630589],[144.3428176,72.8805816],[140.9993903,72.9080271],[140.9993542,73.8922753]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWG_N05.11","eo:cloud_cover":2.097392,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":27.304021,"s2:mean_solar_zenith":52.3171650640296,"s2:mean_solar_azimuth":186.406378672536,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":33.061871,"s2:vegetation_percentage":31.237328,"s2:thin_cirrus_percentage":1.785213,"s2:cloud_shadow_percentage":0.151642,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.05427,"s2:not_vegetated_percentage":6.093477,"s2:degraded_msi_data_percentage":0.0137,"s2:high_proba_clouds_percentage":0.028587,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.283592,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951","bbox":[140.9993873,71.9853678,144.3594919,72.9956989],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R60m/T54XWF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R60m/T54XWF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993873,72.9956989],[144.3594919,72.9681038],[144.181736,71.9853678],[140.9994198,72.0113634],[140.9993873,72.9956989]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWF_N05.11","eo:cloud_cover":0.000063,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":19.687065,"s2:mean_solar_zenith":51.4255870137129,"s2:mean_solar_azimuth":186.449108624762,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":15.100153,"s2:vegetation_percentage":42.105362,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.002445,"s2:not_vegetated_percentage":23.104914,"s2:degraded_msi_data_percentage":0.0019,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000063,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951","bbox":[140.6201516,74.6954927,141.3330181,74.8309812],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R60m/T54XVJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R60m/T54XVJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.6201516,74.6954927],[140.6341605,74.7021176],[140.9119394,74.8309812],[141.2888983,74.7793529],[141.3330181,74.7732921],[141.3313691,74.7003374],[140.6201516,74.6954927]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVJ_N05.11","eo:cloud_cover":74.726093,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":7.062066,"s2:mean_solar_zenith":54.0353756222663,"s2:mean_solar_azimuth":182.361351685279,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":18.206279,"s2:vegetation_percentage":0.001442,"s2:thin_cirrus_percentage":0.115579,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.389578,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.00412,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":53.441209,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.169306,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500","bbox":[140.619971,74.6954915,141.3386848,75.0239973],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R60m/T54XVJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R60m/T54XVJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.619971,74.6954915],[140.8582521,74.8064162],[141.1431699,74.936469],[141.3386848,75.0239973],[141.3313691,74.7003374],[140.619971,74.6954915]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XVJ_N05.11","eo:cloud_cover":77.274442,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":20.548312,"s2:mean_solar_zenith":54.0353756222664,"s2:mean_solar_azimuth":182.361351685279,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.012121,"s2:vegetation_percentage":0.000112,"s2:thin_cirrus_percentage":0.441083,"s2:cloud_shadow_percentage":2.165012,"s2:nodata_pixel_percentage":97.043848,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":42.865559,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":33.967799,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951","bbox":[138.800028,73.7873342,141.3329382,74.7878078],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R60m/T54XVH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R60m/T54XVH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.800028,73.7873342],[139.0408218,73.9136998],[139.296295,74.0458292],[139.5555232,74.1776776],[139.8187172,74.3092406],[140.086072,74.4405095],[140.3578673,74.571457],[140.6341605,74.7021176],[140.8127876,74.784984],[141.2271654,74.7878078],[141.2888983,74.7793529],[141.3329382,74.7733031],[141.313497,73.8043812],[138.800028,73.7873342]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVH_N05.11","eo:cloud_cover":46.900082,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":19.634269,"s2:mean_solar_zenith":53.1422322075326,"s2:mean_solar_azimuth":182.555905771605,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":22.965646,"s2:vegetation_percentage":3.566145,"s2:thin_cirrus_percentage":8.210114,"s2:cloud_shadow_percentage":1.8615,"s2:nodata_pixel_percentage":58.156729,"s2:unclassified_percentage":0.490754,"s2:not_vegetated_percentage":4.581606,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":20.102456,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.58751,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500","bbox":[140.5930405,74.5815923,141.3332438,74.7885307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R60m/T54XVH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R60m/T54XVH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[141.3290916,74.5815923],[140.8795148,74.6433499],[140.5930405,74.6829548],[140.8122043,74.78498],[141.3332438,74.7885307],[141.3290916,74.5815923]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XVH_N05.11","eo:cloud_cover":73.722351,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":14.889362,"s2:mean_solar_zenith":53.1422322075327,"s2:mean_solar_azimuth":182.555905771605,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":11.388166,"s2:vegetation_percentage":0.000119,"s2:thin_cirrus_percentage":2.290314,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":97.210932,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":38.146052,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":33.285987,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951","bbox":[137.8799475,72.8852322,141.3151567,73.8920442],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R60m/T54XVG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R60m/T54XVG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.8799475,73.2845304],[138.0540315,73.382468],[138.2950343,73.5157073],[138.5398695,73.6486677],[138.7885911,73.7813322],[138.9692245,73.8761265],[141.3151567,73.8920442],[141.297514,72.90781],[137.9532063,72.8852322],[137.8799475,73.2845304]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVG_N05.11","eo:cloud_cover":8.419208,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":33.768678,"s2:mean_solar_zenith":52.2486793462447,"s2:mean_solar_azimuth":182.744340259198,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":49.342129,"s2:vegetation_percentage":5.999731,"s2:thin_cirrus_percentage":6.089519,"s2:cloud_shadow_percentage":0.459979,"s2:nodata_pixel_percentage":10.380324,"s2:unclassified_percentage":0.059182,"s2:not_vegetated_percentage":1.951094,"s2:degraded_msi_data_percentage":0.0157,"s2:high_proba_clouds_percentage":0.555568,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.774121,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951","bbox":[137.9380027,71.989773,141.2990014,72.9954806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R60m/T54XVF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R60m/T54XVF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.9380027,72.9727797],[141.2990014,72.9954806],[141.2831475,72.0111578],[138.1000757,71.989773],[137.9380027,72.9727797]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVF_N05.11","eo:cloud_cover":8.302079,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":25.15133,"s2:mean_solar_zenith":51.3552596440843,"s2:mean_solar_azimuth":182.928194484078,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":36.912629,"s2:vegetation_percentage":16.042349,"s2:thin_cirrus_percentage":6.249959,"s2:cloud_shadow_percentage":0.201569,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.006553,"s2:not_vegetated_percentage":13.383493,"s2:degraded_msi_data_percentage":0.0241,"s2:high_proba_clouds_percentage":0.650638,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.401482,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951","bbox":[143.7661688,71.093762,145.78636,72.0778947],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R60m/T54WXE_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R60m/T54WXE_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[145.78636,72.034571],[145.7348784,72.0116786],[145.6002591,71.9508375],[145.4618036,71.8883175],[145.1900375,71.7635196],[144.9218929,71.638388],[144.657853,71.5128494],[144.3973893,71.387001],[144.1403129,71.2608353],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.8058313,71.093762],[143.7661688,71.0946736],[143.9125486,72.0778947],[145.78636,72.034571]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WXE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WXE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":17.80114,"s2:mean_solar_zenith":50.6173097050979,"s2:mean_solar_azimuth":189.890433656743,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":64.843941,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":70.015293,"s2:unclassified_percentage":0.006584,"s2:not_vegetated_percentage":17.348334,"s2:degraded_msi_data_percentage":0.016,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951","bbox":[143.7637458,71.0724966,143.9735536,71.1822592],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R60m/T54WXD_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R60m/T54WXD_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.9735536,71.1777753],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.7637458,71.0724966],[143.7785751,71.1822592],[143.9735536,71.1777753]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WXD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WXD_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":37.691283,"s2:mean_solar_zenith":49.728460700465,"s2:mean_solar_azimuth":189.847226215649,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":52.84155,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.66892,"s2:unclassified_percentage":0.048102,"s2:not_vegetated_percentage":9.419063,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951","bbox":[140.999417,71.0923697,144.196858,72.0995811],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R60m/T54WWE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R60m/T54WWE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[144.0573242,71.2195],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.8030759,71.0923697],[140.9994464,71.1151545],[140.999417,72.0995811],[144.196858,72.073449],[144.0573242,71.2195]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WWE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WWE_N05.11","eo:cloud_cover":0.000043,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":11.577826,"s2:mean_solar_zenith":50.5347458337918,"s2:mean_solar_azimuth":186.504601337355,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00004,"s2:vegetation_percentage":76.62341,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.535061,"s2:unclassified_percentage":0.003769,"s2:not_vegetated_percentage":11.794909,"s2:degraded_msi_data_percentage":0.0199,"s2:high_proba_clouds_percentage":7e-6,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000037,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951","bbox":[140.9994439,70.2091535,143.975301,71.2028426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R60m/T54WWD_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R60m/T54WWD_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.975301,71.1786456],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.6330812,71.0064731],[143.5205388,70.9486732],[143.3873848,70.880465],[143.1424829,70.7530538],[142.9002939,70.6252531],[142.6604381,70.4972318],[142.4236022,70.3689064],[142.1895253,70.2403091],[142.1336098,70.2091535],[140.9994705,70.2183208],[140.9994439,71.2028426],[143.975301,71.1786456]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WWD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WWD_N05.11","eo:cloud_cover":0.000053,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":13.600075,"s2:mean_solar_zenith":49.6435833253783,"s2:mean_solar_azimuth":186.571966927614,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000058,"s2:vegetation_percentage":81.680822,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":31.762895,"s2:unclassified_percentage":0.002431,"s2:not_vegetated_percentage":4.716554,"s2:degraded_msi_data_percentage":0.0283,"s2:high_proba_clouds_percentage":0.00001,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000044,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951","bbox":[140.9994682,69.5568751,142.2901301,70.3060175],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R60m/T54WWC_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R60m/T54WWC_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[142.2901301,70.2955794],[142.1895253,70.2403091],[141.9582319,70.1114347],[141.7294833,69.9824322],[141.5033786,69.8532883],[141.2813115,69.7236358],[141.0612888,69.5938449],[140.9994867,69.5568751],[140.9994682,70.3060175],[142.2901301,70.2955794]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WWC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WWC_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.064775,"s2:mean_solar_zenith":48.7526479783835,"s2:mean_solar_azimuth":186.650496601281,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.002181,"s2:vegetation_percentage":78.974593,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":83.264059,"s2:unclassified_percentage":0.000119,"s2:not_vegetated_percentage":18.958335,"s2:degraded_msi_data_percentage":0.0073,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951","bbox":[138.0862883,71.0946572,141.284496,72.0993744],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R60m/T54WVE_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R60m/T54WVE_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.0862883,72.0778773],[141.284496,72.0993744],[141.2701751,71.1149593],[138.2327264,71.0946572],[138.0862883,72.0778773]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVE_N05.11","eo:cloud_cover":5.863766,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":28.236791,"s2:mean_solar_zenith":50.4625171471027,"s2:mean_solar_azimuth":183.108802615492,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":3.599776,"s2:vegetation_percentage":43.710288,"s2:thin_cirrus_percentage":5.068998,"s2:cloud_shadow_percentage":0.022166,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.020202,"s2:not_vegetated_percentage":18.547009,"s2:degraded_msi_data_percentage":0.0078,"s2:high_proba_clouds_percentage":0.318177,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.476591,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951","bbox":[138.2203151,70.1988218,141.2713887,71.2026464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R60m/T54WVD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R60m/T54WVD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.2203151,71.1822428],[141.2713887,71.2026464],[141.258393,70.2181351],[138.3532315,70.1988218],[138.2203151,71.1822428]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVD_N05.11","eo:cloud_cover":0.000017,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":11.096323,"s2:mean_solar_zenith":49.5693878530036,"s2:mean_solar_azimuth":183.287525469711,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00004,"s2:vegetation_percentage":80.303013,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.001261,"s2:not_vegetated_percentage":8.599345,"s2:degraded_msi_data_percentage":0.0062,"s2:high_proba_clouds_percentage":7e-6,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.00001,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951","bbox":[138.3419414,69.302813,141.2594967,70.3058309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R60m/T54WVC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R60m/T54WVC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[141.252288,69.7065149],[141.0612888,69.5938449],[140.8438762,69.4637893],[140.631353,69.3329125],[140.6054012,69.3169743],[138.4630916,69.302813],[138.3419414,70.2864248],[141.2594967,70.3058309],[141.252288,69.7065149]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVC_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.304452,"s2:mean_solar_zenith":48.6764182398639,"s2:mean_solar_azimuth":183.465358157545,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.070214,"s2:vegetation_percentage":75.791138,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":4.585987,"s2:unclassified_percentage":0.000042,"s2:not_vegetated_percentage":23.83392,"s2:degraded_msi_data_percentage":0.0233,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951","bbox":[138.4527167,68.4071754,140.7503058,69.4061665],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R60m/T54WVB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R60m/T54WVB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.7503058,69.4061665],[140.631353,69.3329125],[140.4187678,69.2023538],[140.2079766,69.0715492],[139.9991895,68.9404648],[139.7925405,68.8091917],[139.5884797,68.6776793],[139.38814,68.5455772],[139.1906958,68.413147],[139.1878784,68.4112778],[138.5635706,68.4071754],[138.4527167,69.3909702],[140.7503058,69.4061665]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVB_N05.11","eo:cloud_cover":3.335383,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.970102,"s2:mean_solar_zenith":47.784152898517,"s2:mean_solar_azimuth":183.643037696029,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.071176,"s2:vegetation_percentage":79.263401,"s2:thin_cirrus_percentage":3.248752,"s2:cloud_shadow_percentage":0.290992,"s2:nodata_pixel_percentage":47.297373,"s2:unclassified_percentage":0.009349,"s2:not_vegetated_percentage":15.899885,"s2:degraded_msi_data_percentage":0.0255,"s2:high_proba_clouds_percentage":0.001788,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.084843,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951","bbox":[138.5541183,68.0155973,139.3199586,68.4998464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R60m/T54WVA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R60m/T54WVA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[139.3199586,68.4998464],[139.1906958,68.413147],[139.0044204,68.2895577],[138.99053,68.2803526],[138.978028,68.271814],[138.7975345,68.1490727],[138.6050813,68.0165698],[138.603688,68.0155973],[138.5541183,68.494811],[139.3199586,68.4998464]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVA_N05.11","eo:cloud_cover":6.39925,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.708158,"s2:mean_solar_zenith":46.891533182743,"s2:mean_solar_azimuth":183.821664487087,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":1.753561,"s2:vegetation_percentage":34.304196,"s2:thin_cirrus_percentage":5.917664,"s2:cloud_shadow_percentage":0.006917,"s2:nodata_pixel_percentage":93.140912,"s2:unclassified_percentage":0.039955,"s2:not_vegetated_percentage":52.866346,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.017849,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.463737,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951","bbox":[137.8987666,71.9166252,141.4017391,72.972798],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R60m/T53XPA_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R60m/T53XPA_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.0607752,72.972798],[141.4017391,72.8951551],[141.0648961,71.9166252],[137.8987666,71.9897902],[138.0607752,72.972798]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53XPA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53XPA_N05.11","eo:cloud_cover":8.471534,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":25.152224,"s2:mean_solar_zenith":51.305817275075,"s2:mean_solar_azimuth":182.876057466885,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":35.284233,"s2:vegetation_percentage":16.72368,"s2:thin_cirrus_percentage":6.34322,"s2:cloud_shadow_percentage":0.240537,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.005819,"s2:not_vegetated_percentage":14.121971,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":0.718425,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.409889,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951","bbox":[137.1986657,72.8805816,138.4922012,73.6227809],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R60m/T53XNB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R60m/T53XNB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.1986657,72.8899737],[137.3529907,72.9812994],[137.5830159,73.1152239],[137.8167258,73.2489626],[138.0540315,73.382468],[138.2950343,73.5157073],[138.4922012,73.6227809],[138.3428176,72.8805816],[137.1986657,72.8899737]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53XNB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53XNB_N05.11","eo:cloud_cover":10.7994,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":22.729982,"s2:mean_solar_zenith":52.2312101532652,"s2:mean_solar_azimuth":179.393948289904,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":66.468495,"s2:vegetation_percentage":0.002124,"s2:thin_cirrus_percentage":9.430973,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":87.50307,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.240589,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.127837,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951","bbox":[135.7810207,71.9853678,138.3594919,72.9764372],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R60m/T53XNA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R60m/T53XNA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[135.7810207,72.0049787],[135.8306676,72.0376004],[136.0398937,72.1730333],[136.25145,72.3082848],[136.4654229,72.4433503],[136.6822884,72.5782131],[136.9025759,72.7128205],[137.1263184,72.8471604],[137.3447744,72.9764372],[138.3594919,72.9681038],[138.181736,71.9853678],[135.7810207,72.0049787]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53XNA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53XNA_N05.11","eo:cloud_cover":4.452536,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":95.541453,"s2:mean_solar_zenith":51.3351404866702,"s2:mean_solar_azimuth":179.353434492462,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.006011,"s2:thin_cirrus_percentage":3.826519,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":47.843993,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0008,"s2:high_proba_clouds_percentage":0.184047,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.441969,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951","bbox":[137.7661688,71.0251958,141.093564,72.0778947],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R60m/T53WPV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R60m/T53WPV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.9125486,72.0778947],[141.093564,72.0043476],[140.7889605,71.0251958],[137.7661688,71.0946736],[137.9125486,72.0778947]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPV_N05.11","eo:cloud_cover":5.74511,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":32.687479,"s2:mean_solar_zenith":50.4111090772672,"s2:mean_solar_azimuth":182.720923216345,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":4.85146,"s2:vegetation_percentage":37.601638,"s2:thin_cirrus_percentage":5.047541,"s2:cloud_shadow_percentage":0.023882,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.018172,"s2:not_vegetated_percentage":19.072258,"s2:degraded_msi_data_percentage":0.0117,"s2:high_proba_clouds_percentage":0.269389,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.42818,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951","bbox":[137.6457116,70.1327293,140.814787,71.1822592],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R60m/T53WPU_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R60m/T53WPU_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.7785751,71.1822592],[140.814787,71.1124355],[140.5381092,70.1327293],[137.6457116,70.1988374],[137.7785751,71.1822592]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPU_N05.11","eo:cloud_cover":3e-6,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":13.414465,"s2:mean_solar_zenith":49.5157431265834,"s2:mean_solar_azimuth":182.587133584315,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":77.782768,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.001921,"s2:not_vegetated_percentage":8.80084,"s2:degraded_msi_data_percentage":0.0012,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3e-6,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951","bbox":[137.5358953,69.2398107,140.5616186,70.2864405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R60m/T53WPT_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R60m/T53WPT_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.6569973,70.2864405],[140.5616186,70.2200158],[140.3092739,69.2398107],[137.5358953,69.3028279],[137.6569973,70.2864405]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPT_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.085959,"s2:mean_solar_zenith":48.6202573099626,"s2:mean_solar_azimuth":182.472257995074,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.097359,"s2:vegetation_percentage":76.235116,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":23.58157,"s2:degraded_msi_data_percentage":0.0173,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951","bbox":[137.4354563,68.3690508,140.3308902,69.3909851],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R60m/T53WPS_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R60m/T53WPS_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.2812653,69.1170279],[140.2079766,69.0715492],[139.9991895,68.9404648],[139.7925405,68.8091917],[139.5884797,68.6776793],[139.38814,68.5455772],[139.1906958,68.413147],[139.1242334,68.3690508],[137.4354563,68.4071896],[137.546266,69.3909851],[140.3308902,69.3276752],[140.2812653,69.1170279]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPS_N05.11","eo:cloud_cover":9.896792,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.361735,"s2:mean_solar_zenith":47.7251878306583,"s2:mean_solar_azimuth":182.374139174231,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.202622,"s2:vegetation_percentage":71.319681,"s2:thin_cirrus_percentage":6.357141,"s2:cloud_shadow_percentage":1.606275,"s2:nodata_pixel_percentage":14.510258,"s2:unclassified_percentage":0.019405,"s2:not_vegetated_percentage":15.364692,"s2:degraded_msi_data_percentage":0.0247,"s2:high_proba_clouds_percentage":1.873058,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.666593,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951","bbox":[137.3431637,67.4987463,139.2516026,68.4948252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R60m/T53WPR_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R60m/T53WPR_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[139.2516026,68.4539985],[139.1906958,68.413147],[139.0044204,68.2895577],[138.99053,68.2803526],[138.978028,68.271814],[138.7975345,68.1490727],[138.6050813,68.0165698],[138.414898,67.8838321],[138.2278795,67.7506648],[138.0449052,67.6167832],[137.8826614,67.4987463],[137.3431637,67.5108527],[137.4449048,68.4948252],[139.2516026,68.4539985]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPR_N05.11","eo:cloud_cover":50.947386,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.132876,"s2:mean_solar_zenith":46.829461693452,"s2:mean_solar_azimuth":182.29099033466,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.371113,"s2:vegetation_percentage":28.684637,"s2:thin_cirrus_percentage":14.934808,"s2:cloud_shadow_percentage":2.099002,"s2:nodata_pixel_percentage":55.891585,"s2:unclassified_percentage":0.706798,"s2:not_vegetated_percentage":16.609885,"s2:degraded_msi_data_percentage":0.0239,"s2:high_proba_clouds_percentage":21.74134,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.271238,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951","bbox":[137.3011384,67.0659149,137.9997823,67.5985039],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R60m/T53WPQ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R60m/T53WPQ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.9997823,67.583955],[137.8613163,67.4832171],[137.6800852,67.3492598],[137.5000028,67.2152473],[137.3213521,67.0811797],[137.3011384,67.0659149],[137.3518535,67.5985039],[137.9997823,67.583955]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPQ_N05.11","eo:cloud_cover":80.372506,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.581574,"s2:mean_solar_zenith":45.9336159916215,"s2:mean_solar_azimuth":182.221357511726,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.009367,"s2:vegetation_percentage":12.079749,"s2:thin_cirrus_percentage":13.551554,"s2:cloud_shadow_percentage":1.584354,"s2:nodata_pixel_percentage":93.269897,"s2:unclassified_percentage":1.45884,"s2:not_vegetated_percentage":3.908234,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":25.341576,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.479379,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951","bbox":[134.9994355,71.0904748,138.196858,72.0920994],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R60m/T53WNV_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R60m/T53WNV_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994355,71.4781682],[135.0219441,71.4939117],[135.2197311,71.6301191],[135.4205147,71.7661413],[135.6242101,71.9019427],[135.8306676,72.0376004],[135.9148614,72.0920994],[138.196858,72.073449],[138.0362417,71.0904748],[134.9994464,71.1151545],[134.9994355,71.4781682]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNV_N05.11","eo:cloud_cover":0.039394,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":36.798185,"s2:mean_solar_zenith":50.4394772497286,"s2:mean_solar_azimuth":179.321853230839,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":27.153489,"s2:vegetation_percentage":20.840448,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":9.368174,"s2:unclassified_percentage":0.006403,"s2:not_vegetated_percentage":15.162079,"s2:degraded_msi_data_percentage":0.0173,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.039394,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951","bbox":[134.9994439,70.1948429,138.049855,71.2028426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R60m/T53WNU_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R60m/T53WNU_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994439,71.2028426],[138.049855,71.1780394],[137.9040632,70.1948429],[134.9994705,70.2183208],[134.9994439,71.2028426]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNU_N05.11","eo:cloud_cover":0.488346,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":16.513933,"s2:mean_solar_zenith":49.543143601069,"s2:mean_solar_azimuth":179.298078790733,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001158,"s2:vegetation_percentage":77.088505,"s2:thin_cirrus_percentage":0.47116,"s2:cloud_shadow_percentage":0.000617,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.008119,"s2:not_vegetated_percentage":5.899327,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.017186,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951","bbox":[134.9994682,69.2990206,137.9164472,70.3060175],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R60m/T53WNT_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R60m/T53WNT_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994682,70.3060175],[137.9164472,70.2824267],[137.7835563,69.2990206],[134.9994925,69.3213967],[134.9994682,70.3060175]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNT_N05.11","eo:cloud_cover":4.688246,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.84148,"s2:mean_solar_zenith":48.6466760123962,"s2:mean_solar_azimuth":179.281215552931,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.02204,"s2:vegetation_percentage":77.097553,"s2:thin_cirrus_percentage":4.368287,"s2:cloud_shadow_percentage":0.050149,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.002482,"s2:not_vegetated_percentage":17.298049,"s2:degraded_msi_data_percentage":0.0154,"s2:high_proba_clouds_percentage":0.000292,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.319667,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951","bbox":[134.9994904,68.4035546,137.7949369,69.4096405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R60m/T53WNS_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R60m/T53WNS_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994904,69.4096405],[137.7949369,69.3871601],[137.6733361,68.4035546],[134.9995126,68.4249171],[134.9994904,69.4096405]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNS_N05.11","eo:cloud_cover":3.499497,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.498203,"s2:mean_solar_zenith":47.750610937167,"s2:mean_solar_azimuth":179.27051116146,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000332,"s2:vegetation_percentage":83.526266,"s2:thin_cirrus_percentage":2.582646,"s2:cloud_shadow_percentage":0.218712,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.010491,"s2:not_vegetated_percentage":12.246495,"s2:degraded_msi_data_percentage":0.0003,"s2:high_proba_clouds_percentage":0.441279,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.475572,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951","bbox":[134.9995107,67.5073771,137.6837049,68.5126321],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R60m/T53WNR_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R60m/T53WNR_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9995107,68.5126321],[137.6837049,68.491174],[137.5720525,67.5073771],[134.9995311,67.5278024],[134.9995107,68.5126321]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNR_N05.11","eo:cloud_cover":36.66355,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.499322,"s2:mean_solar_zenith":46.8538715277138,"s2:mean_solar_azimuth":179.265415984781,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.004509,"s2:vegetation_percentage":44.98021,"s2:thin_cirrus_percentage":10.196213,"s2:cloud_shadow_percentage":3.757443,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":2.886065,"s2:not_vegetated_percentage":11.208901,"s2:degraded_msi_data_percentage":0.0146,"s2:high_proba_clouds_percentage":17.368774,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.098563,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951","bbox":[134.9995294,66.6170156,137.581589,67.6155271],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R60m/T53WNQ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R60m/T53WNQ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.5454291,67.2490523],[137.5000028,67.2152473],[137.3213521,67.0811797],[137.1438475,66.9471341],[136.9697618,66.8125882],[136.7971426,66.6780005],[136.7200851,66.6170156],[134.9995482,66.6305875],[134.9995294,67.6155271],[137.581589,67.5950132],[137.5454291,67.2490523]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNQ_N05.11","eo:cloud_cover":71.882689,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.241975,"s2:mean_solar_zenith":45.956994707828,"s2:mean_solar_azimuth":179.265390275024,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000881,"s2:vegetation_percentage":11.376605,"s2:thin_cirrus_percentage":8.059323,"s2:cloud_shadow_percentage":3.133707,"s2:nodata_pixel_percentage":10.036112,"s2:unclassified_percentage":6.558467,"s2:not_vegetated_percentage":6.805665,"s2:degraded_msi_data_percentage":0.0236,"s2:high_proba_clouds_percentage":44.913453,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.909921,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951","bbox":[134.9995465,65.7288235,136.8310071,66.7188603],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R60m/T53WNP_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R60m/T53WNP_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[136.8310071,66.7044039],[136.7971426,66.6780005],[136.6268255,66.5432079],[136.4554565,66.4089337],[136.2905121,66.2734345],[136.124355,66.1384481],[135.9590236,66.0034615],[135.7973805,65.8677223],[135.6387393,65.7314011],[135.6357109,65.7288235],[134.9995639,65.7338076],[134.9995465,66.7188603],[136.8310071,66.7044039]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNP_N05.11","eo:cloud_cover":79.262155,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.064865,"s2:mean_solar_zenith":45.0605176677555,"s2:mean_solar_azimuth":179.27010740126,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001381,"s2:vegetation_percentage":11.749259,"s2:thin_cirrus_percentage":35.7537,"s2:cloud_shadow_percentage":1.796817,"s2:nodata_pixel_percentage":50.036603,"s2:unclassified_percentage":1.188451,"s2:not_vegetated_percentage":5.935958,"s2:degraded_msi_data_percentage":0.0263,"s2:high_proba_clouds_percentage":7.194892,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":36.313558,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951","bbox":[134.9995624,65.1784831,135.7369237,65.8215524],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R60m/T53WNN_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R60m/T53WNN_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[135.7369237,65.8157714],[135.6387393,65.7314011],[135.4790342,65.5954711],[135.3203988,65.4595167],[135.1640839,65.3232305],[135.009083,65.1869289],[134.9995729,65.1784831],[134.9995624,65.8215524],[135.7369237,65.8157714]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNN_N05.11","eo:cloud_cover":99.833322,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000033,"s2:mean_solar_zenith":44.163363602334,"s2:mean_solar_azimuth":179.279169599448,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.150944,"s2:thin_cirrus_percentage":28.099704,"s2:cloud_shadow_percentage":0.000668,"s2:nodata_pixel_percentage":90.066993,"s2:unclassified_percentage":0.001436,"s2:not_vegetated_percentage":0.013595,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":14.312494,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":57.421124,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951","bbox":[134.4811106,71.1096852,135.2782462,71.6697606],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R60m/T53WMV_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R60m/T53WMV_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.4811106,71.1096852],[134.6351874,71.2210221],[134.8269898,71.3575522],[135.0219441,71.4939117],[135.2197311,71.6301191],[135.2782462,71.6697606],[135.2701751,71.1149593],[134.4811106,71.1096852]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMV_N05.11","eo:cloud_cover":0.039226,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":24.383707,"s2:mean_solar_zenith":50.4784982490092,"s2:mean_solar_azimuth":175.916797651609,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.759301,"s2:vegetation_percentage":45.216641,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":92.96276,"s2:unclassified_percentage":0.023998,"s2:not_vegetated_percentage":29.577124,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.039226,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951","bbox":[133.2861284,70.2050237,135.2713887,71.2026464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R60m/T53WMU_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R60m/T53WMU_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.2861284,70.2050237],[133.3563274,70.2605362],[133.533248,70.3982007],[133.7113221,70.5358675],[133.8919369,70.6731953],[134.0746049,70.8103348],[134.2592913,70.9473583],[134.4459812,71.0843005],[134.6035773,71.1981805],[135.2713887,71.2026464],[135.258393,70.2181351],[133.2861284,70.2050237]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMU_N05.11","eo:cloud_cover":0.35225,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":3.292965,"s2:mean_solar_zenith":49.58155452922,"s2:mean_solar_azimuth":176.004006870427,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.002004,"s2:vegetation_percentage":90.762228,"s2:thin_cirrus_percentage":0.319707,"s2:cloud_shadow_percentage":0.003768,"s2:nodata_pixel_percentage":55.793881,"s2:unclassified_percentage":0.005914,"s2:not_vegetated_percentage":5.580869,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":8e-6,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.032536,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951","bbox":[132.4375113,69.302813,135.2594967,70.3058309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R60m/T53WMT_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R60m/T53WMT_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.4375113,69.510498],[132.5072291,69.5697717],[132.6725396,69.7081763],[132.8399998,69.846495],[133.010646,69.9845106],[133.1819808,70.122665],[133.3563274,70.2605362],[133.3986312,70.2934534],[135.2594967,70.3058309],[135.2476536,69.3212198],[132.4630916,69.302813],[132.4375113,69.510498]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMT_N05.11","eo:cloud_cover":0.83192,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.963727,"s2:mean_solar_zenith":48.684473752372,"s2:mean_solar_azimuth":176.085958812526,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.012127,"s2:vegetation_percentage":82.922882,"s2:thin_cirrus_percentage":0.805923,"s2:cloud_shadow_percentage":0.00147,"s2:nodata_pixel_percentage":14.697061,"s2:unclassified_percentage":0.003228,"s2:not_vegetated_percentage":15.264641,"s2:degraded_msi_data_percentage":0.014,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.025997,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951","bbox":[132.4527167,68.4071754,135.2486677,69.4094627],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R60m/T53WMS_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R60m/T53WMS_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.4527167,69.3909702],[135.2486677,69.4094627],[135.2378328,68.4247482],[132.5635706,68.4071754],[132.4527167,69.3909702]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMS_N05.11","eo:cloud_cover":1.381439,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.717108,"s2:mean_solar_zenith":47.7877908664443,"s2:mean_solar_azimuth":176.163362195745,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":80.133373,"s2:thin_cirrus_percentage":0.558542,"s2:cloud_shadow_percentage":0.66032,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.270719,"s2:not_vegetated_percentage":15.837045,"s2:degraded_msi_data_percentage":0.023,"s2:high_proba_clouds_percentage":0.428001,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.394896,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951","bbox":[132.5541183,67.5108391,135.2387566,68.5124624],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R60m/T53WMR_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R60m/T53WMR_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.5541183,68.494811],[135.2387566,68.5124624],[135.2288099,67.5276409],[132.6559,67.5108391],[132.5541183,68.494811]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMR_N05.11","eo:cloud_cover":1.407487,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.355294,"s2:mean_solar_zenith":46.8904280749316,"s2:mean_solar_azimuth":176.236873363626,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.387017,"s2:thin_cirrus_percentage":0.862691,"s2:cloud_shadow_percentage":0.62312,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.23916,"s2:not_vegetated_percentage":12.987924,"s2:degraded_msi_data_percentage":0.0178,"s2:high_proba_clouds_percentage":0.214253,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.330543,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951","bbox":[132.6472067,66.6143459,135.2296594,67.6153648],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R60m/T53WMQ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R60m/T53WMQ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.6472067,67.5984902],[135.2296594,67.6153648],[135.2204986,66.6304328],[132.7409581,66.6143459],[132.6472067,67.5984902]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMQ_N05.11","eo:cloud_cover":48.034894,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.562238,"s2:mean_solar_zenith":45.9929211883906,"s2:mean_solar_azimuth":176.306964756757,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":43.581593,"s2:thin_cirrus_percentage":24.397135,"s2:cloud_shadow_percentage":1.614102,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.005252,"s2:not_vegetated_percentage":5.20192,"s2:degraded_msi_data_percentage":0.0018,"s2:high_proba_clouds_percentage":9.764101,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.873656,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951","bbox":[132.732889,65.718237,135.221287,66.718705],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R60m/T53WMP_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R60m/T53WMP_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.732889,66.7025501],[135.221287,66.718705],[135.2128247,65.7336593],[132.8195021,65.718237],[132.732889,66.7025501]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMP_N05.11","eo:cloud_cover":96.877158,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":45.0958071044653,"s2:mean_solar_azimuth":176.374033706648,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":1.051838,"s2:thin_cirrus_percentage":17.849383,"s2:cloud_shadow_percentage":0.780558,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.527862,"s2:not_vegetated_percentage":0.762589,"s2:degraded_msi_data_percentage":0.012,"s2:high_proba_clouds_percentage":28.265235,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":50.762534,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951","bbox":[132.8120825,64.8214388,135.2135496,65.8214035],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R60m/T53WMN_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R60m/T53WMN_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[135.2099039,65.3631796],[135.1640839,65.3232305],[135.009083,65.1869289],[134.8555479,65.0505759],[134.7035955,64.9141124],[134.6140229,64.8324549],[132.8923143,64.8214388],[132.8120825,65.8059182],[135.2135496,65.8214035],[135.2099039,65.3631796]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMN_N05.11","eo:cloud_cover":98.44386,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.028701,"s2:mean_solar_zenith":44.1980073241091,"s2:mean_solar_azimuth":176.438516584663,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00057,"s2:vegetation_percentage":1.056921,"s2:thin_cirrus_percentage":20.16459,"s2:cloud_shadow_percentage":0.393805,"s2:nodata_pixel_percentage":6.942555,"s2:unclassified_percentage":0.029457,"s2:not_vegetated_percentage":0.044553,"s2:degraded_msi_data_percentage":0.0227,"s2:high_proba_clouds_percentage":46.016845,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":32.26243,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951","bbox":[132.8854324,63.9244911,134.7110691,64.9208241],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R60m/T53WMM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R60m/T53WMM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.7110691,64.9208241],[134.7035955,64.9141124],[134.5536454,64.7774128],[134.4045168,64.6408004],[134.2802415,64.524936],[134.2564905,64.5028569],[134.2103015,64.4586964],[134.1136279,64.3664568],[133.9697259,64.2290907],[133.8236568,64.0922739],[133.6820659,63.954531],[133.6563042,63.9289139],[132.9599395,63.9244911],[132.8854324,64.9091348],[134.7110691,64.9208241]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMM_N05.11","eo:cloud_cover":33.978871,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.19202,"s2:mean_solar_zenith":43.3000574461588,"s2:mean_solar_azimuth":176.500781592237,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.743309,"s2:vegetation_percentage":30.364639,"s2:thin_cirrus_percentage":15.058976,"s2:cloud_shadow_percentage":0.091821,"s2:nodata_pixel_percentage":45.192254,"s2:unclassified_percentage":0.995471,"s2:not_vegetated_percentage":21.746081,"s2:degraded_msi_data_percentage":0.0279,"s2:high_proba_clouds_percentage":7.460166,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.459728,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951","bbox":[132.9535015,63.2747981,133.7470856,64.0177837],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R60m/T53VML_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R60m/T53VML_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.7470856,64.0177837],[133.6820659,63.954531],[133.5430972,63.816342],[133.4042308,63.6782928],[133.2668301,63.5400978],[133.1303171,63.4019607],[133.0054708,63.2747981],[132.9535015,64.0127397],[133.7470856,64.0177837]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53VML","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53VML_N05.11","eo:cloud_cover":12.662388,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.697701,"s2:mean_solar_zenith":42.4024958912698,"s2:mean_solar_azimuth":176.56100877451,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.731281,"s2:vegetation_percentage":71.997678,"s2:thin_cirrus_percentage":12.659788,"s2:cloud_shadow_percentage":0.096674,"s2:nodata_pixel_percentage":86.858964,"s2:unclassified_percentage":0.285579,"s2:not_vegetated_percentage":9.435956,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.000328,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.002272,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951","bbox":[130.913343,62.9866068,133.1897998,64.015435],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R60m/T53VLL_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R60m/T53VLL_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.1897998,63.462151],[133.1303171,63.4019607],[132.994726,63.2638539],[132.8604581,63.1256284],[132.7601712,63.0212492],[131.0515033,62.9866068],[130.913343,63.9696051],[133.1546638,64.015435],[133.1897998,63.462151]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53VLL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53VLL_N05.11","eo:cloud_cover":9.69805,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.908008,"s2:mean_solar_zenith":42.4500229392061,"s2:mean_solar_azimuth":173.818382111021,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.030738,"s2:vegetation_percentage":84.882092,"s2:thin_cirrus_percentage":9.672086,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":4.712111,"s2:unclassified_percentage":0.32355,"s2:not_vegetated_percentage":1.908846,"s2:degraded_msi_data_percentage":0.0223,"s2:high_proba_clouds_percentage":0.000024,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.02594,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951","bbox":[131.1574343,61.3660298,131.9897108,62.195252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R60m/T53VLJ_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R60m/T53VLJ_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.9897108,62.195252],[131.9519214,62.1538178],[131.8263048,62.0146449],[131.7734854,61.9555542],[131.7025895,61.8764038],[131.5792047,61.7370479],[131.4572377,61.5976178],[131.3361918,61.4581338],[131.2569852,61.3660298],[131.1574343,62.1785001],[131.9897108,62.195252]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53VLJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53VLJ_N05.11","eo:cloud_cover":0.438324,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.222577,"s2:mean_solar_zenith":40.6529531920545,"s2:mean_solar_azimuth":174.0039605909,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":95.807463,"s2:thin_cirrus_percentage":0.000185,"s2:cloud_shadow_percentage":1.201613,"s2:nodata_pixel_percentage":83.840901,"s2:unclassified_percentage":0.557658,"s2:not_vegetated_percentage":0.61831,"s2:degraded_msi_data_percentage":0.004,"s2:high_proba_clouds_percentage":0.072151,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.365989,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951","bbox":[131.2581395,66.5592595,133.9254764,67.5985039],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R60m/T52WFV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R60m/T52WFV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.3518535,67.5985039],[133.9254764,67.5407149],[133.7299138,66.5592595],[131.2581395,66.6143589],[131.3518535,67.5985039]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFV_N05.11","eo:cloud_cover":69.579434,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.356283,"s2:mean_solar_zenith":45.999385627067,"s2:mean_solar_azimuth":174.519173584484,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":26.530567,"s2:thin_cirrus_percentage":45.736045,"s2:cloud_shadow_percentage":0.558913,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.08071,"s2:not_vegetated_percentage":2.894091,"s2:degraded_msi_data_percentage":0.0213,"s2:high_proba_clouds_percentage":3.3369,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":20.506491,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951","bbox":[131.1796268,65.66542,133.7467491,66.7025631],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R60m/T52WFU_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R60m/T52WFU_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.2662054,66.7025631],[133.7467491,66.6472313],[133.5660076,65.66542],[131.1796268,65.7182494],[131.2662054,66.7025631]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFU_N05.11","eo:cloud_cover":80.381471,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.040909,"s2:mean_solar_zenith":45.1111715791707,"s2:mean_solar_azimuth":174.346133667649,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":14.363141,"s2:thin_cirrus_percentage":37.047416,"s2:cloud_shadow_percentage":2.320102,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.216419,"s2:not_vegetated_percentage":1.677957,"s2:degraded_msi_data_percentage":0.0075,"s2:high_proba_clouds_percentage":15.949947,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":27.384108,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951","bbox":[131.1068437,64.7707414,133.5814932,65.8059307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R60m/T52WFT_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R60m/T52WFT_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.1870434,65.8059307],[133.5814932,65.7528862],[133.4140108,64.7707414],[131.1068437,64.8214508],[131.1870434,65.8059307]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFT_N05.11","eo:cloud_cover":57.527,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.089396,"s2:mean_solar_zenith":44.2222573271832,"s2:mean_solar_azimuth":174.178715827812,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.03204,"s2:vegetation_percentage":30.414471,"s2:thin_cirrus_percentage":18.254933,"s2:cloud_shadow_percentage":2.321787,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.492108,"s2:not_vegetated_percentage":7.543512,"s2:degraded_msi_data_percentage":0.0011,"s2:high_proba_clouds_percentage":20.062615,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":19.209455,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951","bbox":[131.0392454,63.8757772,133.4283789,64.9091468],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R60m/T52WFS_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R60m/T52WFS_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.1137228,64.9091468],[133.4283789,64.8582363],[133.2727989,63.8757772],[131.0392454,63.9245026],[131.1137228,64.9091468]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFS_N05.11","eo:cloud_cover":9.216897,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.248951,"s2:mean_solar_zenith":43.3331813369737,"s2:mean_solar_azimuth":174.015842397136,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.667234,"s2:vegetation_percentage":54.976976,"s2:thin_cirrus_percentage":7.174903,"s2:cloud_shadow_percentage":0.037306,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.938136,"s2:not_vegetated_percentage":21.746583,"s2:degraded_msi_data_percentage":0.0156,"s2:high_proba_clouds_percentage":0.313619,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.728375,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951","bbox":[134.3782739,71.0251958,134.9105306,71.4159842],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R60m/T52WFE_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R60m/T52WFE_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.3782739,71.0346353],[134.4459812,71.0843005],[134.6351874,71.2210221],[134.8269898,71.3575522],[134.9105306,71.4159842],[134.7889605,71.0251958],[134.3782739,71.0346353]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":14.570828,"s2:mean_solar_zenith":50.4399499537414,"s2:mean_solar_azimuth":175.523721823951,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":68.903619,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":97.471303,"s2:unclassified_percentage":0.027554,"s2:not_vegetated_percentage":16.497999,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951","bbox":[132.1782345,69.2398107,134.5616186,70.2479433],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R60m/T52WFC_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R60m/T52WFC_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.1782345,69.2882325],[132.1831794,69.2925464],[132.3442605,69.4312167],[132.5072291,69.5697717],[132.6725396,69.7081763],[132.8399998,69.846495],[133.010646,69.9845106],[133.1819808,70.122665],[133.340403,70.2479433],[134.5616186,70.2200158],[134.3092739,69.2398107],[132.1782345,69.2882325]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFC_N05.11","eo:cloud_cover":0.066171,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.05008,"s2:mean_solar_zenith":48.664054088493,"s2:mean_solar_azimuth":175.086798999784,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.013523,"s2:vegetation_percentage":85.094708,"s2:thin_cirrus_percentage":0.066171,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":41.09005,"s2:unclassified_percentage":0.000608,"s2:not_vegetated_percentage":14.774911,"s2:degraded_msi_data_percentage":0.0032,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951","bbox":[131.4354563,68.3470175,134.3308902,69.3743442],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R60m/T52WFB_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R60m/T52WFB_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.4627689,68.6496772],[131.5574948,68.7362757],[131.7116764,68.8755213],[131.8668155,69.0147346],[132.0240415,69.1537179],[132.1831794,69.2925464],[132.2781968,69.3743442],[134.3308902,69.3276752],[134.0998643,68.3470175],[131.4354563,68.4071896],[131.4627689,68.6496772]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFB_N05.11","eo:cloud_cover":1.499358,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.444134,"s2:mean_solar_zenith":47.7763639288029,"s2:mean_solar_azimuth":174.88800636576,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000163,"s2:vegetation_percentage":77.548021,"s2:thin_cirrus_percentage":0.589012,"s2:cloud_shadow_percentage":0.710457,"s2:nodata_pixel_percentage":10.278857,"s2:unclassified_percentage":0.299622,"s2:not_vegetated_percentage":19.498242,"s2:degraded_msi_data_percentage":0.0174,"s2:high_proba_clouds_percentage":0.476632,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.433714,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951","bbox":[129.4326646,66.6110311,131.581589,67.6046234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R60m/T52WEV_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R60m/T52WEV_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.4326646,66.627171],[129.4395568,66.6346719],[129.569974,66.7756814],[129.7029067,66.9163859],[129.8368444,67.0570373],[129.9718905,67.1976125],[130.1092595,67.3378121],[130.2467967,67.4780835],[130.3719703,67.6046234],[131.581589,67.5950132],[131.478743,66.6110311],[129.4326646,66.627171]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEV_N05.11","eo:cloud_cover":56.754273,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.137858,"s2:mean_solar_zenith":46.1415775723871,"s2:mean_solar_azimuth":171.570681979177,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.010488,"s2:vegetation_percentage":27.792656,"s2:thin_cirrus_percentage":26.870412,"s2:cloud_shadow_percentage":9.748025,"s2:nodata_pixel_percentage":35.875851,"s2:unclassified_percentage":2.108658,"s2:not_vegetated_percentage":3.448037,"s2:degraded_msi_data_percentage":0.0056,"s2:high_proba_clouds_percentage":15.36417,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.519691,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951","bbox":[128.9995566,65.715059,131.487595,66.7148022],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R60m/T52WEU_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R60m/T52WEU_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995566,66.1472915],[129.0568185,66.2112587],[129.1820685,66.3526398],[129.3100284,66.4937028],[129.4395568,66.6346719],[129.5136678,66.7148022],[131.487595,66.6992212],[131.3925776,65.715059],[128.9995639,65.7338076],[128.9995566,66.1472915]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEU_N05.11","eo:cloud_cover":58.694005,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.187807,"s2:mean_solar_zenith":45.2540563512696,"s2:mean_solar_azimuth":171.460375519743,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.020823,"s2:vegetation_percentage":19.575879,"s2:thin_cirrus_percentage":6.623583,"s2:cloud_shadow_percentage":7.282652,"s2:nodata_pixel_percentage":6.247365,"s2:unclassified_percentage":4.842953,"s2:not_vegetated_percentage":9.395286,"s2:degraded_msi_data_percentage":0.0214,"s2:high_proba_clouds_percentage":38.061482,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.008942,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951","bbox":[128.9995624,64.8183886,131.4007172,65.8215524],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R60m/T52WET_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R60m/T52WET_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995624,65.8215524],[131.4007172,65.8027272],[131.3126985,64.8183886],[128.9995785,64.8363831],[128.9995624,65.8215524]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WET","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WET_N05.11","eo:cloud_cover":41.352487,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.192166,"s2:mean_solar_zenith":44.3658966769181,"s2:mean_solar_azimuth":171.348870647938,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.034827,"s2:vegetation_percentage":27.956703,"s2:thin_cirrus_percentage":4.539822,"s2:cloud_shadow_percentage":6.532108,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":5.609962,"s2:not_vegetated_percentage":16.073813,"s2:degraded_msi_data_percentage":0.0221,"s2:high_proba_clouds_percentage":25.178194,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.634471,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951","bbox":[128.9995771,63.9215604,131.3202484,64.9241384],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R60m/T52WES_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R60m/T52WES_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995771,64.9241384],[131.3202484,64.9060724],[131.2385085,63.9215604],[128.999592,63.9388493],[128.9995771,64.9241384]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WES","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WES_N05.11","eo:cloud_cover":5.759115,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.227425,"s2:mean_solar_zenith":43.4776424575435,"s2:mean_solar_azimuth":171.235576308309,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.078951,"s2:vegetation_percentage":69.004923,"s2:thin_cirrus_percentage":4.732712,"s2:cloud_shadow_percentage":0.28985,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.741132,"s2:not_vegetated_percentage":19.847569,"s2:degraded_msi_data_percentage":0.0189,"s2:high_proba_clouds_percentage":0.423821,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.602583,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951","bbox":[131.2005488,68.4035546,131.7341807,68.8957154],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R60m/T52WEB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R60m/T52WEB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.2005488,68.407332],[131.253871,68.4573715],[131.4049718,68.5968391],[131.5574948,68.7362757],[131.7116764,68.8755213],[131.7341807,68.8957154],[131.6733361,68.4035546],[131.2005488,68.407332]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEB_N05.11","eo:cloud_cover":2.489419,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":47.9173483017124,"s2:mean_solar_azimuth":171.790393089591,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.960938,"s2:thin_cirrus_percentage":2.489419,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":95.824677,"s2:unclassified_percentage":0.003894,"s2:not_vegetated_percentage":37.49553,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951","bbox":[130.2858757,67.5073771,131.6837049,68.4942905],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R60m/T52WEA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R60m/T52WEA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[130.2858757,67.5175891],[130.3854935,67.6182942],[130.5247857,67.7586223],[130.6679007,67.8983912],[130.8118693,68.038218],[130.9577475,68.1779816],[131.1050539,68.317716],[131.253871,68.4573715],[131.2938695,68.4942905],[131.6837049,68.491174],[131.5720525,67.5073771],[130.2858757,67.5175891]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEA_N05.11","eo:cloud_cover":44.600189,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.317938,"s2:mean_solar_zenith":47.0295225315839,"s2:mean_solar_azimuth":171.680458025836,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":47.277573,"s2:thin_cirrus_percentage":40.49665,"s2:cloud_shadow_percentage":0.390534,"s2:nodata_pixel_percentage":68.255192,"s2:unclassified_percentage":0.01643,"s2:not_vegetated_percentage":7.39556,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.938311,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.165226,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951","bbox":[128.6313048,65.7299121,129.2184871,66.3927877],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R60m/T52WDU_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R60m/T52WDU_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.6313048,65.7299121],[128.6803133,65.7885544],[128.8051215,65.929389],[128.9306399,66.0703047],[129.0568185,66.2112587],[129.1820685,66.3526398],[129.2184871,66.3927877],[129.2128247,65.7336593],[128.6313048,65.7299121]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WDU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WDU_N05.11","eo:cloud_cover":87.409705,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.016386,"s2:mean_solar_zenith":45.4096751438101,"s2:mean_solar_azimuth":168.577958033717,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.006044,"s2:vegetation_percentage":0.90118,"s2:thin_cirrus_percentage":1.310954,"s2:cloud_shadow_percentage":6.273145,"s2:nodata_pixel_percentage":92.204446,"s2:unclassified_percentage":1.957238,"s2:not_vegetated_percentage":3.422431,"s2:degraded_msi_data_percentage":0.0014,"s2:high_proba_clouds_percentage":70.731151,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.367594,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951","bbox":[127.8753205,64.8277285,129.2135496,65.8214035],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R60m/T52WDT_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R60m/T52WDT_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.8753205,64.8277285],[127.9655371,64.9388521],[128.0824097,65.080645],[128.2006112,65.2223042],[128.3185328,65.3641777],[128.4419513,65.50498],[128.5616802,65.6466009],[128.6803133,65.7885544],[128.7065269,65.8181341],[129.2135496,65.8214035],[129.2057115,64.8362408],[127.8753205,64.8277285]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WDT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WDT_N05.11","eo:cloud_cover":92.608041,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003467,"s2:mean_solar_zenith":44.5226742738124,"s2:mean_solar_azimuth":168.523026107826,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.003244,"s2:vegetation_percentage":2.630634,"s2:thin_cirrus_percentage":1.981442,"s2:cloud_shadow_percentage":0.228093,"s2:nodata_pixel_percentage":61.34249,"s2:unclassified_percentage":2.109787,"s2:not_vegetated_percentage":1.963161,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":80.711335,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.915261,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951","bbox":[127.1646008,63.925791,129.2063838,64.9239955],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R60m/T52WDS_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R60m/T52WDS_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.1646008,63.925791],[127.1790362,63.9448436],[127.2877065,64.0870749],[127.3983676,64.2290554],[127.5091714,64.3712024],[127.6227764,64.5129161],[127.7367608,64.6547273],[127.8502661,64.7968679],[127.9469287,64.9159314],[129.2063838,64.9239955],[129.1991056,63.9387126],[127.1646008,63.925791]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WDS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WDS_N05.11","eo:cloud_cover":39.816773,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.976928,"s2:mean_solar_zenith":43.6356587032227,"s2:mean_solar_azimuth":168.459967188638,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.053122,"s2:vegetation_percentage":42.942822,"s2:thin_cirrus_percentage":5.197151,"s2:cloud_shadow_percentage":1.370669,"s2:nodata_pixel_percentage":27.974859,"s2:unclassified_percentage":2.059083,"s2:not_vegetated_percentage":11.335365,"s2:degraded_msi_data_percentage":0.0083,"s2:high_proba_clouds_percentage":26.782978,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":7.836644,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951","bbox":[130.9763539,62.9899815,133.2862441,64.0127512],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R60m/T52VFR_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R60m/T52VFR_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.2162377,63.4889035],[133.1303171,63.4019607],[132.994726,63.2638539],[132.8604581,63.1256284],[132.7301294,62.9899815],[130.9763539,63.0279443],[131.0456808,64.0127512],[133.2862441,63.9638363],[133.2162377,63.4889035]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFR_N05.11","eo:cloud_cover":10.351101,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.941527,"s2:mean_solar_zenith":42.4444820685437,"s2:mean_solar_azimuth":173.856552211937,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.02482,"s2:vegetation_percentage":84.155053,"s2:thin_cirrus_percentage":10.325257,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":4.998215,"s2:unclassified_percentage":0.317888,"s2:not_vegetated_percentage":2.000846,"s2:degraded_msi_data_percentage":0.0214,"s2:high_proba_clouds_percentage":0.000035,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.025809,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951","bbox":[130.9176451,62.1093539,132.8127904,63.1156693],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R60m/T52VFQ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R60m/T52VFQ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.8127904,63.0760156],[132.7275337,62.9872799],[132.5959738,62.8488806],[132.4656772,62.7103375],[132.3362041,62.5716607],[132.2074656,62.4328557],[132.0795897,62.2939248],[132.014806,62.2227676],[131.9519214,62.1538178],[131.9117885,62.1093539],[130.9176451,62.1307003],[130.9823142,63.1156693],[132.8127904,63.0760156]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFQ_N05.11","eo:cloud_cover":5.314786,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.061753,"s2:mean_solar_zenith":41.5550985030653,"s2:mean_solar_azimuth":173.69971435638,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":91.024876,"s2:thin_cirrus_percentage":5.117859,"s2:cloud_shadow_percentage":0.524357,"s2:nodata_pixel_percentage":34.316128,"s2:unclassified_percentage":0.436825,"s2:not_vegetated_percentage":0.565136,"s2:degraded_msi_data_percentage":0.0293,"s2:high_proba_clouds_percentage":0.036056,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.160871,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951","bbox":[130.8627658,61.2274397,131.9899516,62.2184397],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R60m/T52VFP_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R60m/T52VFP_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.9899516,62.1955161],[131.9519214,62.1538178],[131.8263048,62.0146449],[131.7734854,61.9555542],[131.7025895,61.8764038],[131.5792047,61.7370479],[131.4572377,61.5976178],[131.3361918,61.4581338],[131.2161762,61.3185757],[131.1384299,61.2274397],[130.8627658,61.2333094],[130.9232108,62.2184397],[131.9899516,62.1955161]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFP_N05.11","eo:cloud_cover":0.242587,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.536898,"s2:mean_solar_zenith":40.6655719220419,"s2:mean_solar_azimuth":173.54448998684,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":96.210164,"s2:thin_cirrus_percentage":0.000156,"s2:cloud_shadow_percentage":0.661625,"s2:nodata_pixel_percentage":68.093097,"s2:unclassified_percentage":0.582098,"s2:not_vegetated_percentage":0.597519,"s2:degraded_msi_data_percentage":0.0145,"s2:high_proba_clouds_percentage":0.039618,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.202812,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951","bbox":[130.8423379,60.8748244,131.2124947,61.3216015],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R60m/T52VFN_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R60m/T52VFN_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.2124947,61.3142602],[131.0970869,61.1789765],[130.9797062,61.0391954],[130.8627034,60.8993834],[130.8423379,60.8748244],[130.868005,61.3216015],[131.2124947,61.3142602]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFN_N05.11","eo:cloud_cover":0.009899,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.141616,"s2:mean_solar_zenith":39.7764401618711,"s2:mean_solar_azimuth":173.39022892516,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.690014,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.003032,"s2:nodata_pixel_percentage":96.279573,"s2:unclassified_percentage":0.075267,"s2:not_vegetated_percentage":0.072146,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.000357,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.009542,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951","bbox":[128.9995907,63.0251146,131.2455715,64.0271539],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R60m/T52VER_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R60m/T52VER_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995907,64.0271539],[131.2455715,64.0097976],[131.1694829,63.0251146],[128.9996046,63.041742],[128.9995907,64.0271539]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VER","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VER_N05.11","eo:cloud_cover":4.716614,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":7.009887,"s2:mean_solar_zenith":42.5898323635958,"s2:mean_solar_azimuth":171.120065448574,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000189,"s2:vegetation_percentage":86.070371,"s2:thin_cirrus_percentage":4.71378,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.491173,"s2:not_vegetated_percentage":1.652437,"s2:degraded_msi_data_percentage":0.0047,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.002833,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951","bbox":[128.9996034,62.1279766,131.1760247,63.1295192],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R60m/T52VEQ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R60m/T52VEQ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9996034,63.1295192],[131.1760247,63.1128289],[131.1050472,62.1279766],[128.9996163,62.1439815],[128.9996034,63.1295192]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEQ_N05.11","eo:cloud_cover":4.926161,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":6.093029,"s2:mean_solar_zenith":41.7014131027106,"s2:mean_solar_azimuth":171.001607845712,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.765083,"s2:thin_cirrus_percentage":4.925355,"s2:cloud_shadow_percentage":0.000561,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.629424,"s2:not_vegetated_percentage":3.559852,"s2:degraded_msi_data_percentage":0.0033,"s2:high_proba_clouds_percentage":0.000013,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000793,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951","bbox":[128.9996152,61.2306854,131.1111559,62.2317701],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R60m/T52VEP_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R60m/T52VEP_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9996152,62.2317701],[131.1111559,62.2157059],[131.0448136,61.2306854],[128.9996273,61.2461037],[128.9996152,62.2317701]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEP_N05.11","eo:cloud_cover":0.008547,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":4.470636,"s2:mean_solar_zenith":40.8129259048393,"s2:mean_solar_azimuth":170.87977634975,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":92.479879,"s2:thin_cirrus_percentage":0.000282,"s2:cloud_shadow_percentage":0.037405,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.522623,"s2:not_vegetated_percentage":2.433456,"s2:degraded_msi_data_percentage":0.0185,"s2:high_proba_clouds_percentage":0.000899,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.007366,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951","bbox":[128.9996263,60.3381652,131.050564,61.3344425],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R60m/T52VEN_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R60m/T52VEN_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.0372417,61.1077108],[130.9797062,61.0391954],[130.8627034,60.8993834],[130.7465924,60.7593638],[130.6309458,60.619276],[130.575031,60.5508652],[130.5154066,60.4780474],[130.4017775,60.3381652],[128.9996376,60.3486448],[128.9996263,61.3344425],[131.050564,61.318968],[131.0372417,61.1077108]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEN_N05.11","eo:cloud_cover":0.068222,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.089501,"s2:mean_solar_zenith":39.9249157120179,"s2:mean_solar_azimuth":170.754112760966,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.534261,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.162721,"s2:nodata_pixel_percentage":11.716418,"s2:unclassified_percentage":0.056872,"s2:not_vegetated_percentage":0.084025,"s2:degraded_msi_data_percentage":0.0231,"s2:high_proba_clouds_percentage":0.008475,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.059747,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951","bbox":[128.9996366,59.4453304,130.4726708,60.4364568],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R60m/T52VEM_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R60m/T52VEM_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[130.4726708,60.4254378],[130.4014547,60.3377678],[130.2889588,60.197265],[130.2189943,60.109708],[130.1775702,60.0578764],[130.176963,60.0571081],[130.1767648,60.05686],[130.1755344,60.0553004],[130.0665401,59.9173806],[129.9561049,59.7769528],[129.8471001,59.6363193],[129.7393285,59.4955713],[129.7009413,59.4453304],[128.9996473,59.4505251],[128.9996366,60.4364568],[130.4726708,60.4254378]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEM_N05.11","eo:cloud_cover":34.67139,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.262607,"s2:mean_solar_zenith":39.0363297021797,"s2:mean_solar_azimuth":170.623913261053,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":64.85399,"s2:thin_cirrus_percentage":22.233857,"s2:cloud_shadow_percentage":0.013978,"s2:nodata_pixel_percentage":45.096695,"s2:unclassified_percentage":0.034989,"s2:not_vegetated_percentage":0.151711,"s2:degraded_msi_data_percentage":0.0303,"s2:high_proba_clouds_percentage":1.785089,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.652445,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951","bbox":[128.9996463,58.5520155,129.7677234,59.5383491],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R60m/T52VEL_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R60m/T52VEL_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.7677234,59.5326546],[129.7393285,59.4955713],[129.6318376,59.3548878],[129.5256621,59.2140441],[129.4200495,59.0730297],[129.3148762,58.9319202],[129.2100621,58.7908103],[129.1061322,58.6495909],[129.0358358,58.5520155],[128.9996563,58.5522811],[128.9996463,59.5383491],[129.7677234,59.5326546]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEL_N05.11","eo:cloud_cover":91.924906,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":38.1477121807761,"s2:mean_solar_azimuth":170.48875262019,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":7.422899,"s2:thin_cirrus_percentage":11.432301,"s2:cloud_shadow_percentage":0.642389,"s2:nodata_pixel_percentage":79.423267,"s2:unclassified_percentage":0.001322,"s2:not_vegetated_percentage":0.008481,"s2:degraded_msi_data_percentage":0.006,"s2:high_proba_clouds_percentage":17.982896,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":62.509716,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951","bbox":[128.9996555,58.5018767,129.0991687,58.6406562],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R60m/T52VEK_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R60m/T52VEK_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.0991687,58.6399252],[129.0041457,58.5080279],[128.9996568,58.5018767],[128.9996555,58.6406562],[129.0991687,58.6399252]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEK_N05.11","eo:cloud_cover":100.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":37.2596152541718,"s2:mean_solar_azimuth":170.348076961828,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.012802,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.663079,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":59.963173,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":40.024027,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951","bbox":[126.977122,63.0279332,129.1997345,64.0270166],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R60m/T52VDR_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R60m/T52VDR_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.977122,63.6773387],[127.0712145,63.802535],[127.1790362,63.9448436],[127.2322652,64.0145115],[129.1997345,64.0270166],[129.1929602,63.0416105],[127.0228562,63.0279332],[126.977122,63.6773387]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDR_N05.11","eo:cloud_cover":0.046248,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":8.477577,"s2:mean_solar_zenith":42.7491680001305,"s2:mean_solar_azimuth":168.388860780674,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":88.414162,"s2:thin_cirrus_percentage":0.037266,"s2:cloud_shadow_percentage":0.033034,"s2:nodata_pixel_percentage":2.253692,"s2:unclassified_percentage":0.710184,"s2:not_vegetated_percentage":2.224082,"s2:degraded_msi_data_percentage":0.0206,"s2:high_proba_clouds_percentage":0.00058,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.008401,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951","bbox":[127.0168934,62.1306897,129.1935426,63.1293872],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R60m/T52VDQ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R60m/T52VDQ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0168934,63.1156582],[129.1935426,63.1293872],[129.1872239,62.143855],[127.0815883,62.1306897],[127.0168934,63.1156582]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDQ_N05.11","eo:cloud_cover":4.532895,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.381983,"s2:mean_solar_zenith":41.8621575784698,"s2:mean_solar_azimuth":168.309427119423,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.332455,"s2:thin_cirrus_percentage":0.932575,"s2:cloud_shadow_percentage":4.556654,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.507586,"s2:not_vegetated_percentage":6.684162,"s2:degraded_msi_data_percentage":0.0222,"s2:high_proba_clouds_percentage":1.081294,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.519026,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951","bbox":[127.0760204,61.2332992,129.1877677,62.231643],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R60m/T52VDP_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R60m/T52VDP_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0760204,62.2184291],[129.1877677,62.231643],[129.1818621,61.2459818],[127.1364896,61.2332992],[127.0760204,62.2184291]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDP_N05.11","eo:cloud_cover":5.962572,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.812217,"s2:mean_solar_zenith":40.975169144676,"s2:mean_solar_azimuth":168.221622562471,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.394979,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":5.817081,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.569607,"s2:not_vegetated_percentage":1.407165,"s2:degraded_msi_data_percentage":0.016,"s2:high_proba_clouds_percentage":2.054761,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.907811,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951","bbox":[127.1312482,60.3363003,129.1823739,61.3343201],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R60m/T52VDN_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R60m/T52VDN_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.1312482,61.3215913],[129.1823739,61.3343201],[129.1768439,60.3485273],[127.1878754,60.3363003],[127.1312482,61.3215913]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDN_N05.11","eo:cloud_cover":0.321011,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.933388,"s2:mean_solar_zenith":40.0887563936172,"s2:mean_solar_azimuth":168.125212521695,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":95.36674,"s2:thin_cirrus_percentage":0.000272,"s2:cloud_shadow_percentage":0.706696,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.184877,"s2:not_vegetated_percentage":0.423277,"s2:degraded_msi_data_percentage":0.0017,"s2:high_proba_clouds_percentage":0.067886,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.252853,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951","bbox":[127.1829927,59.4386163,129.1773207,60.4363388],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R60m/T52VDM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R60m/T52VDM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.1829927,60.4240684],[129.1773207,60.4363388],[129.1721336,59.4504118],[127.236112,59.4386163],[127.1829927,60.4240684]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDM_N05.11","eo:cloud_cover":47.327846,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.029535,"s2:mean_solar_zenith":39.2018693815406,"s2:mean_solar_azimuth":168.019860507826,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":51.659262,"s2:thin_cirrus_percentage":16.004343,"s2:cloud_shadow_percentage":0.865906,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.025936,"s2:not_vegetated_percentage":0.089638,"s2:degraded_msi_data_percentage":0.0084,"s2:high_proba_clouds_percentage":12.341492,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.982011,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951","bbox":[127.2315279,58.5407855,129.1725812,59.5382354],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R60m/T52VDL_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R60m/T52VDL_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.1686087,58.7344837],[129.1061322,58.6495909],[129.0353728,58.5513728],[127.2814375,58.5407855],[127.2315279,59.5263988],[129.1725812,59.5382354],[129.1686087,58.7344837]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDL_N05.11","eo:cloud_cover":93.35587,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.016872,"s2:mean_solar_zenith":38.3150631080366,"s2:mean_solar_azimuth":167.905246417085,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":5.907575,"s2:thin_cirrus_percentage":26.277691,"s2:cloud_shadow_percentage":0.566101,"s2:nodata_pixel_percentage":0.694115,"s2:unclassified_percentage":0.058368,"s2:not_vegetated_percentage":0.094859,"s2:degraded_msi_data_percentage":0.028,"s2:high_proba_clouds_percentage":24.890532,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":42.187646,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951","bbox":[127.2771006,57.6433463,129.0993167,58.6401306],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R60m/T52VDK_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R60m/T52VDK_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.0993167,58.6401306],[129.0041457,58.5080279],[128.9655697,58.4551675],[128.9003554,58.3658761],[128.7965655,58.2250694],[128.7334728,58.1337096],[128.6989907,58.0840318],[128.5969669,57.9430622],[128.497614,57.8016144],[128.4011714,57.6596215],[128.3943184,57.6497449],[127.3240672,57.6433463],[127.2771006,58.6291209],[129.0993167,58.6401306]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDK_N05.11","eo:cloud_cover":99.998522,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":37.4288897872923,"s2:mean_solar_azimuth":167.781074358126,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":9e-6,"s2:thin_cirrus_percentage":1.261552,"s2:cloud_shadow_percentage":0.001149,"s2:nodata_pixel_percentage":22.927535,"s2:unclassified_percentage":0.000142,"s2:not_vegetated_percentage":0.000181,"s2:degraded_msi_data_percentage":0.0265,"s2:high_proba_clouds_percentage":75.842607,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":22.894354,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951","bbox":[127.3200079,56.7452211,128.4543698,57.7379458],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R60m/T52VDJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R60m/T52VDJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.4543698,57.7379458],[128.4011714,57.6596215],[128.3029818,57.518109],[128.2067018,57.3761853],[128.1100626,57.2343255],[128.0110463,57.0930677],[127.9190438,56.950263],[127.8253816,56.8079231],[127.7851523,56.7477124],[127.3642661,56.7452211],[127.3200079,57.7311575],[128.4543698,57.7379458]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDJ_N05.11","eo:cloud_cover":88.149291,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.006661,"s2:mean_solar_zenith":36.5423098098697,"s2:mean_solar_azimuth":167.646738291023,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.010077,"s2:vegetation_percentage":6.651367,"s2:thin_cirrus_percentage":9.607031,"s2:cloud_shadow_percentage":2.944999,"s2:nodata_pixel_percentage":57.660306,"s2:unclassified_percentage":0.658542,"s2:not_vegetated_percentage":1.438749,"s2:degraded_msi_data_percentage":0.0314,"s2:high_proba_clouds_percentage":44.659731,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":33.882529,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951","bbox":[127.3604383,56.1382728,127.8437979,56.8359107],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R60m/T52VDH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R60m/T52VDH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.8437979,56.8359107],[127.8253816,56.8079231],[127.7844507,56.7466624],[127.7298105,56.6651172],[127.6636084,56.5627038],[127.6382617,56.5235954],[127.5710385,56.4205765],[127.5448612,56.3805035],[127.4530232,56.238231],[127.4230386,56.1907083],[127.3898619,56.1382728],[127.3604383,56.8330467],[127.8437979,56.8359107]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDH_N05.11","eo:cloud_cover":99.999857,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":35.6558828244402,"s2:mean_solar_azimuth":167.501766686448,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.686651,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":90.70968,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000143,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":80.570889,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.742315,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951","bbox":[126.4913407,63.0157988,127.2172106,63.9206225],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R60m/T52VCR_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R60m/T52VCR_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.4913407,63.0157988],[126.5442443,63.0895601],[126.5914974,63.1545953],[126.6477818,63.2318841],[126.7522213,63.3745676],[126.7741412,63.4043398],[126.8578044,63.5175778],[126.9641677,63.6601022],[127.0712145,63.802535],[127.1606848,63.9206225],[127.2172106,63.0305154],[126.4913407,63.0157988]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCR_N05.11","eo:cloud_cover":0.115362,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.82724,"s2:mean_solar_zenith":42.9221743799511,"s2:mean_solar_azimuth":165.669840361009,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":96.303809,"s2:thin_cirrus_percentage":0.00009,"s2:cloud_shadow_percentage":0.260315,"s2:nodata_pixel_percentage":85.300654,"s2:unclassified_percentage":0.439103,"s2:not_vegetated_percentage":1.004424,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.013791,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.101481,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951","bbox":[125.8574215,62.1047625,127.2701768,63.1182501],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R60m/T52VCQ_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R60m/T52VCQ_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.8574215,62.1047625],[125.9440647,62.232065],[126.041841,62.3750828],[126.1404532,62.5180708],[126.2399976,62.661007],[126.340658,62.8038308],[126.4418096,62.9467397],[126.5442443,63.0895601],[126.5554127,63.1049313],[127.2118332,63.1182501],[127.2701768,62.1331753],[125.8574215,62.1047625]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCQ_N05.11","eo:cloud_cover":5.341376,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.304834,"s2:mean_solar_zenith":42.0370052606386,"s2:mean_solar_azimuth":165.629689768671,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":82.501113,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":7.249346,"s2:nodata_pixel_percentage":51.830238,"s2:unclassified_percentage":0.722848,"s2:not_vegetated_percentage":3.875196,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.534252,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.807124,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951","bbox":[125.2743035,61.1949732,127.3196877,62.2209238],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R60m/T52VCP_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R60m/T52VCP_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.2743035,61.2246888],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3699042,61.3723446],[125.4636208,61.5157764],[125.5065532,61.5809699],[125.5583435,61.6594893],[125.654055,61.8027201],[125.749814,61.9460176],[125.8467433,62.0890734],[125.9180275,62.1938091],[127.2651556,62.2209238],[127.3196877,61.2356936],[125.2779445,61.1949732],[125.2743035,61.2246888]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCP_N05.11","eo:cloud_cover":0.771749,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.248412,"s2:mean_solar_zenith":41.1519640110838,"s2:mean_solar_azimuth":165.576204350518,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.241757,"s2:thin_cirrus_percentage":0.030352,"s2:cloud_shadow_percentage":0.985723,"s2:nodata_pixel_percentage":17.972867,"s2:unclassified_percentage":0.266751,"s2:not_vegetated_percentage":4.414283,"s2:degraded_msi_data_percentage":0.0132,"s2:high_proba_clouds_percentage":0.193152,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.548245,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951","bbox":[125.2742181,60.2993491,127.3660277,61.3239944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R60m/T52VCN_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R60m/T52VCN_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.2742181,61.2245552],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3127039,61.284028],[127.314961,61.3239944],[127.3660277,60.3386088],[125.3803718,60.2993491],[125.2742181,61.2245552]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCN_N05.11","eo:cloud_cover":5.284181,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.514631,"s2:mean_solar_zenith":40.2676107637875,"s2:mean_solar_azimuth":165.509433344206,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":88.531071,"s2:thin_cirrus_percentage":2.980587,"s2:cloud_shadow_percentage":2.747851,"s2:nodata_pixel_percentage":0.092269,"s2:unclassified_percentage":0.387848,"s2:not_vegetated_percentage":0.435736,"s2:degraded_msi_data_percentage":0.0223,"s2:high_proba_clouds_percentage":0.849839,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.453755,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951","bbox":[125.3706384,59.4029675,127.4095273,60.426385],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R60m/T52VCM_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R60m/T52VCM_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.3706384,60.386986],[127.3616245,60.426385],[127.4095273,59.4408433],[125.4765375,59.4029675],[125.3706384,60.386986]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCM_N05.11","eo:cloud_cover":54.562652,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000969,"s2:mean_solar_zenith":39.3829023138874,"s2:mean_solar_azimuth":165.429353133968,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":42.078218,"s2:thin_cirrus_percentage":17.758116,"s2:cloud_shadow_percentage":2.886878,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.211021,"s2:not_vegetated_percentage":0.2563,"s2:degraded_msi_data_percentage":0.0222,"s2:high_proba_clouds_percentage":15.312667,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.49187,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951","bbox":[125.467398,58.506372,127.4504014,59.5286335],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R60m/T52VCL_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R60m/T52VCL_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.467398,59.4906256],[127.4053934,59.5286335],[127.4504014,58.5429352],[125.5669133,58.506372],[125.467398,59.4906256]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCL_N05.11","eo:cloud_cover":76.46718,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.084867,"s2:mean_solar_zenith":38.4984031318894,"s2:mean_solar_azimuth":165.335805493598,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001311,"s2:vegetation_percentage":18.992594,"s2:thin_cirrus_percentage":18.077123,"s2:cloud_shadow_percentage":1.707032,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.10983,"s2:not_vegetated_percentage":1.617009,"s2:degraded_msi_data_percentage":0.1382,"s2:high_proba_clouds_percentage":21.402517,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":36.987537,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951","bbox":[125.5582651,57.6101061,127.488844,58.6312781],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R60m/T52VCK_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R60m/T52VCK_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.5582651,58.5945887],[127.4464903,58.6312781],[127.488844,57.6454227],[125.6519254,57.6101061],[125.5582651,58.5945887]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCK_N05.11","eo:cloud_cover":85.446417,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003105,"s2:mean_solar_zenith":37.6146677210644,"s2:mean_solar_azimuth":165.228708429987,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00145,"s2:vegetation_percentage":8.690373,"s2:thin_cirrus_percentage":9.627593,"s2:cloud_shadow_percentage":3.039114,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.310062,"s2:not_vegetated_percentage":1.484424,"s2:degraded_msi_data_percentage":0.0157,"s2:high_proba_clouds_percentage":40.221915,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":35.59691,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951","bbox":[125.6438299,56.7130985,127.5250943,57.7332409],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R60m/T52VCJ_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R60m/T52VCJ_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.6438299,57.6978051],[127.4851834,57.7332409],[127.5250943,56.7472276],[125.7321002,56.7130985],[125.6438299,57.6978051]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCJ_N05.11","eo:cloud_cover":97.759056,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.001977,"s2:mean_solar_zenith":36.7306734519704,"s2:mean_solar_azimuth":165.107555251711,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000153,"s2:vegetation_percentage":0.413011,"s2:thin_cirrus_percentage":4.231559,"s2:cloud_shadow_percentage":1.778043,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.022478,"s2:not_vegetated_percentage":0.022658,"s2:degraded_msi_data_percentage":0.0206,"s2:high_proba_clouds_percentage":46.142748,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":47.384754,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951","bbox":[125.7244654,55.8158913,127.5393279,56.8350599],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R60m/T52VCH_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R60m/T52VCH_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.5393279,56.3719315],[127.4530232,56.238231],[127.4230386,56.1907083],[127.3635027,56.0966123],[127.2728758,55.9543032],[127.2018322,55.8421537],[125.8077653,55.8158913],[125.7244654,56.8008172],[127.5216425,56.8350599],[127.5393279,56.3719315]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCH_N05.11","eo:cloud_cover":99.637979,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":35.8469826643837,"s2:mean_solar_azimuth":164.972040568133,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.049283,"s2:thin_cirrus_percentage":3.240846,"s2:cloud_shadow_percentage":0.29987,"s2:nodata_pixel_percentage":5.534351,"s2:unclassified_percentage":0.01263,"s2:not_vegetated_percentage":0.000239,"s2:degraded_msi_data_percentage":0.0267,"s2:high_proba_clouds_percentage":38.787299,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":57.609838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951","bbox":[125.8005114,54.9190265,127.258534,55.9316633],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R60m/T52UCG_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R60m/T52UCG_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.258534,55.9316633],[127.1827045,55.8119586],[127.0940249,55.6692617],[127.0057939,55.5265009],[126.917857,55.3837001],[126.8299533,55.2409646],[126.74296,55.0980927],[126.6564661,54.9552042],[126.6432996,54.9332676],[125.8792201,54.9190265],[125.8005114,55.9041676],[127.258534,55.9316633]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52UCG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52UCG_N05.11","eo:cloud_cover":98.357725,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":34.9641683856508,"s2:mean_solar_azimuth":164.821706661523,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.787698,"s2:thin_cirrus_percentage":5.856419,"s2:cloud_shadow_percentage":0.69695,"s2:nodata_pixel_percentage":36.292416,"s2:unclassified_percentage":0.155951,"s2:not_vegetated_percentage":0.001677,"s2:degraded_msi_data_percentage":0.0297,"s2:high_proba_clouds_percentage":51.1594,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.34191,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951","bbox":[125.872404,54.0214307,126.6970015,55.0221689],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R60m/T52UCF_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R60m/T52UCF_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.6970015,55.0221689],[126.6564661,54.9552042],[126.5706774,54.8122726],[126.4853614,54.6693457],[126.4006598,54.5263376],[126.3157278,54.3834622],[126.2320757,54.2404286],[126.1492445,54.0972465],[126.1076334,54.0243943],[125.9468576,54.0214307],[125.872404,55.0067836],[126.6970015,55.0221689]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52UCF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52UCF_N05.11","eo:cloud_cover":99.999827,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":34.0812138922962,"s2:mean_solar_azimuth":164.655760015323,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.312156,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":71.359682,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000174,"s2:degraded_msi_data_percentage":0.0129,"s2:high_proba_clouds_percentage":78.24527,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.442401,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951","bbox":[125.9404063,53.7745817,126.1584915,54.1132308],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R60m/T52UCE_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R60m/T52UCE_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.1584915,54.1132308],[126.1492445,54.0972465],[126.0673388,53.9538472],[125.9848749,53.8105611],[125.9643445,53.7745817],[125.9404063,54.1092064],[126.1584915,54.1132308]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52UCE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52UCE_N05.11","eo:cloud_cover":96.291208,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003274,"s2:mean_solar_zenith":33.1987005853998,"s2:mean_solar_azimuth":164.473521748612,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":3.364669,"s2:thin_cirrus_percentage":8.658732,"s2:cloud_shadow_percentage":0.058003,"s2:nodata_pixel_percentage":97.872138,"s2:unclassified_percentage":0.276452,"s2:not_vegetated_percentage":0.006393,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":61.876446,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.756034,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951","bbox":[125.8612845,62.0855865,127.1538391,63.0819513],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R60m/T51VXK_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R60m/T51VXK_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.8612845,62.1104383],[125.9440647,62.232065],[126.041841,62.3750828],[126.1404532,62.5180708],[126.2399976,62.661007],[126.340658,62.8038308],[126.4418096,62.9467397],[126.5387871,63.0819513],[127.1538391,63.0686274],[127.0186771,62.0855865],[125.8612845,62.1104383]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXK_N05.11","eo:cloud_cover":4.719193,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.263164,"s2:mean_solar_zenith":42.0506712037409,"s2:mean_solar_azimuth":165.417113163303,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.87838,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":6.934454,"s2:nodata_pixel_percentage":58.767182,"s2:unclassified_percentage":0.555618,"s2:not_vegetated_percentage":3.645528,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.320873,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.39832,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951","bbox":[125.2742138,61.1898465,127.0303111,62.1970148],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R60m/T51VXJ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R60m/T51VXJ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.2742138,61.2245484],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3699042,61.3723446],[125.4636208,61.5157764],[125.5065532,61.5809699],[125.5583435,61.6594893],[125.654055,61.8027201],[125.749814,61.9460176],[125.8467433,62.0890734],[125.9202093,62.1970148],[127.0303111,62.1731593],[126.903949,61.1898465],[125.2742138,61.2245484]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXJ_N05.11","eo:cloud_cover":0.22014,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.302835,"s2:mean_solar_zenith":41.1867835009883,"s2:mean_solar_azimuth":165.122628454948,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.371725,"s2:thin_cirrus_percentage":0.028434,"s2:cloud_shadow_percentage":0.398179,"s2:nodata_pixel_percentage":34.213015,"s2:unclassified_percentage":0.265908,"s2:not_vegetated_percentage":5.351976,"s2:degraded_msi_data_percentage":0.0064,"s2:high_proba_clouds_percentage":0.036045,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.155662,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951","bbox":[124.8114005,60.2944061,126.914903,61.3117421],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R60m/T51VXH_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R60m/T51VXH_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.8210903,60.5049769],[124.8249807,60.5113176],[124.9138654,60.6549626],[125.0032327,60.7986453],[125.0941823,60.9421125],[125.1853742,61.0856306],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3306535,61.3117421],[126.914903,61.2779804],[126.7965453,60.2944061],[124.8114005,60.3363102],[124.8210903,60.5049769]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXH_N05.11","eo:cloud_cover":7.542037,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.279637,"s2:mean_solar_zenith":40.3238955866215,"s2:mean_solar_azimuth":164.822379623298,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.434909,"s2:thin_cirrus_percentage":3.581131,"s2:cloud_shadow_percentage":4.534865,"s2:nodata_pixel_percentage":9.713614,"s2:unclassified_percentage":0.522446,"s2:not_vegetated_percentage":0.597518,"s2:degraded_msi_data_percentage":0.0176,"s2:high_proba_clouds_percentage":1.54485,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.416056,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951","bbox":[124.7631831,59.3981984,126.8067517,60.4240783],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R60m/T51VXG_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R60m/T51VXG_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.8162812,60.4240783],[126.8067517,60.3820254],[126.6957051,59.3981984],[124.7631831,59.4386259],[124.8162812,60.4240783]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXG_N05.11","eo:cloud_cover":57.89808,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000305,"s2:mean_solar_zenith":39.4610213628829,"s2:mean_solar_azimuth":164.514884494607,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.59192,"s2:thin_cirrus_percentage":17.715505,"s2:cloud_shadow_percentage":4.72235,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.428356,"s2:not_vegetated_percentage":0.355357,"s2:degraded_msi_data_percentage":0.0216,"s2:high_proba_clouds_percentage":14.115481,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":26.067099,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951","bbox":[124.7178757,58.5017681,126.705289,59.5264083],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R60m/T51VXF_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R60m/T51VXF_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.7677654,59.5264083],[126.705289,59.48584],[126.6009344,58.5017681],[124.7178757,58.5407947],[124.7677654,59.5264083]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXF_N05.11","eo:cloud_cover":84.907711,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.051762,"s2:mean_solar_zenith":38.5987462846354,"s2:mean_solar_azimuth":164.199051968167,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00133,"s2:vegetation_percentage":10.837167,"s2:thin_cirrus_percentage":10.934602,"s2:cloud_shadow_percentage":1.625469,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.823939,"s2:not_vegetated_percentage":1.739268,"s2:degraded_msi_data_percentage":0.1559,"s2:high_proba_clouds_percentage":30.019575,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":43.953529,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951","bbox":[124.675263,57.605659,126.6100032,58.6291301],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R60m/T51VXE_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R60m/T51VXE_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.7222109,58.6291301],[126.6100032,58.5899689],[126.5117866,57.605659],[124.675263,57.6433552],[124.7222109,58.6291301]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXE_N05.11","eo:cloud_cover":83.065593,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003457,"s2:mean_solar_zenith":37.737647148645,"s2:mean_solar_azimuth":163.873932455555,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001311,"s2:vegetation_percentage":9.472118,"s2:thin_cirrus_percentage":10.507391,"s2:cloud_shadow_percentage":3.265965,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.934967,"s2:not_vegetated_percentage":2.231472,"s2:degraded_msi_data_percentage":0.0231,"s2:high_proba_clouds_percentage":44.325012,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.233185,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951","bbox":[124.6350802,56.7088008,126.520276,57.7311664],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R60m/T51VXD_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R60m/T51VXD_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6793207,57.7311664],[126.520276,57.6933429],[126.4277099,56.7088008],[124.6350802,56.7452297],[124.6793207,57.7311664]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXD_N05.11","eo:cloud_cover":86.153275,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.045823,"s2:mean_solar_zenith":36.8767690687929,"s2:mean_solar_azimuth":163.537818213253,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000046,"s2:vegetation_percentage":8.697088,"s2:thin_cirrus_percentage":8.987717,"s2:cloud_shadow_percentage":2.873391,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.415002,"s2:not_vegetated_percentage":0.781066,"s2:degraded_msi_data_percentage":0.0258,"s2:high_proba_clouds_percentage":51.484102,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.681457,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951","bbox":[124.5971619,55.811736,126.4357163,56.8330553],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R60m/T51VXC_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R60m/T51VXC_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6389064,56.8330553],[126.4357163,56.7965052],[126.3483613,55.811736],[124.5971619,55.8469564],[124.6389064,56.8330553]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXC_N05.11","eo:cloud_cover":80.37315,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.040378,"s2:mean_solar_zenith":36.0167025115408,"s2:mean_solar_azimuth":163.189664865841,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001802,"s2:vegetation_percentage":13.058314,"s2:thin_cirrus_percentage":9.831335,"s2:cloud_shadow_percentage":5.830083,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.345865,"s2:not_vegetated_percentage":0.336887,"s2:degraded_msi_data_percentage":0.2077,"s2:high_proba_clouds_percentage":28.778237,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.763577,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951","bbox":[124.7173583,60.3337804,125.0193553,60.8240776],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R60m/T51VWH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R60m/T51VWH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.7173583,60.3358065],[124.7368049,60.3676069],[124.8249807,60.5113176],[124.9138654,60.6549626],[125.0032327,60.7986453],[125.0193553,60.8240776],[124.9884362,60.3337804],[124.7173583,60.3358065]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWH_N05.11","eo:cloud_cover":2.231455,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.123831,"s2:mean_solar_zenith":40.6013483995389,"s2:mean_solar_azimuth":162.238556121133,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":94.158405,"s2:thin_cirrus_percentage":1.469386,"s2:cloud_shadow_percentage":1.166013,"s2:nodata_pixel_percentage":96.806538,"s2:unclassified_percentage":0.425865,"s2:not_vegetated_percentage":0.821289,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.140466,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.621603,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951","bbox":[124.1812178,59.4361854,124.9937932,60.4232067],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R60m/T51VWG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R60m/T51VWG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.1812178,59.4417727],[124.2178591,59.5041056],[124.3024279,59.6482388],[124.3884266,59.7921383],[124.4747037,59.9360939],[124.5615303,60.0800233],[124.6489053,60.2238678],[124.7368049,60.3676069],[124.770919,60.4232067],[124.9937932,60.4215395],[124.9355133,59.4361854],[124.1812178,59.4417727]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWG_N05.11","eo:cloud_cover":55.649191,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":39.7418448623104,"s2:mean_solar_azimuth":161.959303472834,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.038169,"s2:thin_cirrus_percentage":22.523712,"s2:cloud_shadow_percentage":7.36936,"s2:nodata_pixel_percentage":75.410157,"s2:unclassified_percentage":0.573913,"s2:not_vegetated_percentage":0.368027,"s2:degraded_msi_data_percentage":0.0011,"s2:high_proba_clouds_percentage":10.974427,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":22.151056,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951","bbox":[123.6714801,58.5384388,124.9405427,59.5292081],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R60m/T51VWF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R60m/T51VWF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.6714801,58.5473506],[123.722775,58.639394],[123.8039467,58.7835312],[123.8853601,58.9276965],[123.9666585,59.0720401],[124.0498987,59.2160415],[124.1332296,59.3601371],[124.2178591,59.5041056],[124.2325877,59.5292081],[124.9405427,59.5239593],[124.8857837,58.5384388],[123.6714801,58.5473506]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWF_N05.11","eo:cloud_cover":81.033099,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.043118,"s2:mean_solar_zenith":38.8831309879419,"s2:mean_solar_azimuth":161.667799182135,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":10.345491,"s2:thin_cirrus_percentage":16.57799,"s2:cloud_shadow_percentage":4.357751,"s2:nodata_pixel_percentage":50.038314,"s2:unclassified_percentage":2.540173,"s2:not_vegetated_percentage":1.678819,"s2:degraded_msi_data_percentage":0.005,"s2:high_proba_clouds_percentage":37.707323,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":26.747787,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951","bbox":[123.1828317,57.6410797,124.8905421,58.6353608],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R60m/T51VWE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R60m/T51VWE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.1828317,57.6531181],[123.2468288,57.7728426],[123.3244985,57.9174652],[123.4033861,58.0619148],[123.481966,58.2065113],[123.5622705,58.3507675],[123.6423679,58.4951117],[123.7205273,58.6353608],[124.8905421,58.6267661],[124.8390116,57.6410797],[123.1828317,57.6531181]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWE_N05.11","eo:cloud_cover":99.754447,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":38.0257934249818,"s2:mean_solar_azimuth":161.363270080768,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":1.372901,"s2:cloud_shadow_percentage":0.24555,"s2:nodata_pixel_percentage":24.488933,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0105,"s2:high_proba_clouds_percentage":72.708732,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.672811,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951","bbox":[122.999668,56.7430308,124.8434653,57.7406252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R60m/T51VWD_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R60m/T51VWD_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.999668,57.3064169],[123.0167676,57.3389609],[123.0928648,57.4836288],[123.1695307,57.6282349],[123.2296074,57.7406252],[124.8434653,57.7288832],[124.794906,56.7430308],[122.9996729,56.7559505],[122.999668,57.3064169]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWD_N05.11","eo:cloud_cover":96.187341,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.002037,"s2:mean_solar_zenith":37.1688958453377,"s2:mean_solar_azimuth":161.04420339059,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":2.456396,"s2:thin_cirrus_percentage":3.343562,"s2:cloud_shadow_percentage":0.507342,"s2:nodata_pixel_percentage":2.935342,"s2:unclassified_percentage":0.74617,"s2:not_vegetated_percentage":0.086305,"s2:degraded_msi_data_percentage":0.0291,"s2:high_proba_clouds_percentage":51.66654,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.177237,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951","bbox":[122.9996721,55.8448305,124.7991059,56.8438118],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R60m/T51VWC_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R60m/T51VWC_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.9996721,56.8438118],[124.7991059,56.8308491],[124.7532859,55.8448305],[122.9996805,55.8573211],[122.9996721,56.8438118]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWC_N05.11","eo:cloud_cover":61.630154,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.030153,"s2:mean_solar_zenith":36.3130386398673,"s2:mean_solar_azimuth":160.709692363544,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.016443,"s2:vegetation_percentage":24.218497,"s2:thin_cirrus_percentage":7.01362,"s2:cloud_shadow_percentage":11.141433,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.582566,"s2:not_vegetated_percentage":2.323748,"s2:degraded_msi_data_percentage":0.1589,"s2:high_proba_clouds_percentage":29.178974,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.437561,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951","bbox":[122.7126308,56.7532025,123.1633916,57.6166554],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R60m/T51VVD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R60m/T51VVD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.7126308,56.7532025],[122.7162521,56.7604165],[122.790841,56.9050909],[122.8653564,57.0498061],[122.9408001,57.1943794],[123.0167676,57.3389609],[123.0928648,57.4836288],[123.1633916,57.6166554],[123.1596203,56.7558483],[122.7126308,56.7532025]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VVD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VVD_N05.11","eo:cloud_cover":92.885494,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.011394,"s2:mean_solar_zenith":37.4767638724535,"s2:mean_solar_azimuth":158.568712849072,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":3.241396,"s2:thin_cirrus_percentage":14.323263,"s2:cloud_shadow_percentage":0.650767,"s2:nodata_pixel_percentage":89.516771,"s2:unclassified_percentage":0.875791,"s2:not_vegetated_percentage":2.301516,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":49.858767,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.703463,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951","bbox":[122.2595518,55.851971,123.159994,56.8437093],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R60m/T51VVC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R60m/T51VVC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.2595518,55.851971],[122.2790468,55.8910374],[122.3491953,56.0363776],[122.4226852,56.1810109],[122.4957057,56.325857],[122.5695814,56.4705657],[122.6434336,56.6153529],[122.7162521,56.7604165],[122.7579667,56.8413273],[123.159994,56.8437093],[123.1559167,55.8572224],[122.2595518,55.851971]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VVC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VVC_N05.11","eo:cloud_cover":98.473299,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000751,"s2:mean_solar_zenith":36.6255546904771,"s2:mean_solar_azimuth":158.249173729644,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.333282,"s2:thin_cirrus_percentage":2.277825,"s2:cloud_shadow_percentage":1.097256,"s2:nodata_pixel_percentage":63.752663,"s2:unclassified_percentage":0.074426,"s2:not_vegetated_percentage":0.018966,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":21.215393,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":74.98008,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951","bbox":[126.045107,53.9152179,126.1543823,54.109222],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R60m/T51UYV_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R60m/T51UYV_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.1543823,54.1061278],[126.1492445,54.0972465],[126.0673388,53.9538472],[126.045107,53.9152179],[126.0589827,54.109222],[126.1543823,54.1061278]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UYV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UYV_N05.11","eo:cloud_cover":99.981284,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":33.1506421165131,"s2:mean_solar_azimuth":164.537132209352,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000645,"s2:thin_cirrus_percentage":0.393647,"s2:cloud_shadow_percentage":0.001291,"s2:nodata_pixel_percentage":99.485868,"s2:unclassified_percentage":0.008389,"s2:not_vegetated_percentage":0.008389,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":93.898463,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":5.689174,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736","bbox":[124.4953796,53.1302708,125.8664881,53.8933641],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R60m/T51UXV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R60m/T51UXV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.4884241,53.6901522],[125.4885654,53.6904054],[125.4891078,53.6902887],[125.4894449,53.6908929],[125.5039535,53.6874959],[125.503751,53.687133],[125.6506011,53.6531602],[125.8664881,53.6026128],[125.7859926,53.4606453],[125.7054103,53.3171489],[125.6253696,53.1736377],[125.6012551,53.1302708],[124.4953796,53.1517855],[124.5219295,53.8933641],[124.7816897,53.8417288],[124.7817719,53.8418812],[124.7821093,53.8418142],[124.7824295,53.8424074],[124.9417879,53.8085628],[125.1531166,53.7635297],[125.1531058,53.76351],[125.1535946,53.7634037],[125.1534731,53.7631817],[125.1537243,53.7631272],[125.1537101,53.7631014],[125.1540333,53.7630313],[125.1539083,53.762803],[125.1539368,53.7627968],[125.1536511,53.7622749],[125.4884241,53.6901522]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UXV_N05.11","eo:cloud_cover":57.297868,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.051528,"s2:mean_solar_zenith":33.4428233592958,"s2:mean_solar_azimuth":162.058972933642,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":38.879889,"s2:thin_cirrus_percentage":21.175461,"s2:cloud_shadow_percentage":1.375699,"s2:nodata_pixel_percentage":52.880234,"s2:unclassified_percentage":0.661029,"s2:not_vegetated_percentage":1.733291,"s2:degraded_msi_data_percentage":0.0264,"s2:high_proba_clouds_percentage":18.629491,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":17.492916,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951","bbox":[124.5154737,53.4389177,126.15453,54.1383733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R60m/T51UXV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R60m/T51UXV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.5141266,53.4995389],[125.4119279,53.5234491],[125.4118286,53.523271],[125.4117048,53.5233],[125.4115105,53.5229515],[125.3948381,53.5265454],[125.3950925,53.5270036],[125.0625067,53.5992397],[125.0624721,53.5991765],[125.0382765,53.6042932],[125.0382994,53.6043352],[125.038216,53.6043529],[125.0383493,53.6045975],[124.7113843,53.6741125],[124.7113072,53.6739695],[124.7101066,53.6742254],[124.710092,53.6741983],[124.7100034,53.6742172],[124.7097646,53.6737754],[124.7088823,53.6739509],[124.6918944,53.6775433],[124.6920168,53.6777704],[124.5154737,53.7130452],[124.5307013,54.1383733],[126.15453,54.106383],[126.1492445,54.0972465],[126.0673388,53.9538472],[125.9848749,53.8105611],[125.9030535,53.6671698],[125.8216955,53.5237566],[125.7738209,53.4389177],[125.5141266,53.4995389]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UXV_N05.11","eo:cloud_cover":75.041485,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.015173,"s2:mean_solar_zenith":33.4428233592958,"s2:mean_solar_azimuth":162.058972933642,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":20.049483,"s2:thin_cirrus_percentage":21.57958,"s2:cloud_shadow_percentage":2.185212,"s2:nodata_pixel_percentage":50.558668,"s2:unclassified_percentage":0.303577,"s2:not_vegetated_percentage":2.394095,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":25.175184,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.286716,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736","bbox":[124.4649804,52.2409272,125.649989,53.2402083],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R60m/T51UXU_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R60m/T51UXU_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.649989,53.2177799],[125.6253696,53.1736377],[125.5456072,53.0301951],[125.4665804,52.8866619],[125.3880901,52.7430708],[125.3099468,52.5994597],[125.2321784,52.4558624],[125.1550113,52.3121694],[125.1166706,52.2409272],[124.4649804,52.2534568],[124.4984604,53.2402083],[125.649989,53.2177799]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UXU_N05.11","eo:cloud_cover":78.283638,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.117534,"s2:mean_solar_zenith":32.5874882578317,"s2:mean_solar_azimuth":161.648350107667,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":16.530271,"s2:thin_cirrus_percentage":14.665918,"s2:cloud_shadow_percentage":0.601585,"s2:nodata_pixel_percentage":44.84674,"s2:unclassified_percentage":2.471653,"s2:not_vegetated_percentage":1.994159,"s2:degraded_msi_data_percentage":0.0306,"s2:high_proba_clouds_percentage":42.633015,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":20.984702,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736","bbox":[124.4361206,51.3503969,125.1634942,52.3413551],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R60m/T51UXT_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R60m/T51UXT_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.1634942,52.3279654],[125.1550113,52.3121694],[125.0776825,52.168482],[125.0011792,52.0245944],[124.9247977,51.8807541],[124.8488376,51.7368822],[124.7740366,51.5928144],[124.6995434,51.4487578],[124.6489659,51.3503969],[124.4361206,51.3544394],[124.4678842,52.3413551],[125.1634942,52.3279654]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UXT_N05.11","eo:cloud_cover":42.99162,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.008262,"s2:mean_solar_zenith":31.7329884341935,"s2:mean_solar_azimuth":161.21765425791,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":49.09727,"s2:thin_cirrus_percentage":7.465654,"s2:cloud_shadow_percentage":3.823742,"s2:nodata_pixel_percentage":71.850431,"s2:unclassified_percentage":3.486861,"s2:not_vegetated_percentage":0.590113,"s2:degraded_msi_data_percentage":0.0137,"s2:high_proba_clouds_percentage":20.667204,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.858763,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951","bbox":[124.5613574,54.9150072,126.3559683,55.9353354],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R60m/T51UXB_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R60m/T51UXB_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6007969,55.9353354],[126.3559683,55.8999986],[126.2734267,54.9150072],[124.5613574,54.949074],[124.6007969,55.9353354]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UXB_N05.11","eo:cloud_cover":88.807923,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.020468,"s2:mean_solar_zenith":35.1580547342679,"s2:mean_solar_azimuth":162.828282523976,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":9.042518,"s2:thin_cirrus_percentage":24.010889,"s2:cloud_shadow_percentage":1.367089,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.223838,"s2:not_vegetated_percentage":0.532002,"s2:degraded_msi_data_percentage":0.0269,"s2:high_proba_clouds_percentage":33.219445,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":31.57759,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951","bbox":[122.9996938,53.6836594,124.6803359,54.1481041],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R60m/T51UWV_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R60m/T51UWV_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6625437,53.6836594],[124.3645949,53.7431921],[124.3645896,53.7431821],[124.3424073,53.7474544],[124.3426493,53.7479108],[124.0176633,53.8106443],[124.017598,53.810519],[124.0164772,53.8107353],[124.0162841,53.8103658],[124.0059661,53.8122532],[123.9970036,53.8139794],[123.9973736,53.8146887],[123.6701786,53.874526],[123.669832,53.8738516],[123.6573272,53.8760265],[123.648813,53.8775839],[123.6489988,53.8779461],[123.6486847,53.8780006],[123.6487191,53.8780676],[123.64867,53.8780761],[123.6486992,53.8781329],[123.3008855,53.9384707],[123.2994055,53.9387182],[123.2994322,53.9387709],[123.2071657,53.954145],[122.9996949,53.9888438],[122.9996938,54.1481041],[124.6803359,54.1363774],[124.6625437,53.6836594]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UWV_N05.11","eo:cloud_cover":30.101115,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.016995,"s2:mean_solar_zenith":33.7533105076474,"s2:mean_solar_azimuth":159.600653364513,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.237719,"s2:thin_cirrus_percentage":12.295584,"s2:cloud_shadow_percentage":8.178432,"s2:nodata_pixel_percentage":69.2334,"s2:unclassified_percentage":1.578633,"s2:not_vegetated_percentage":0.859638,"s2:degraded_msi_data_percentage":0.0011,"s2:high_proba_clouds_percentage":8.614112,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.191418,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736","bbox":[122.9997279,47.930217,123.3765395,48.753013],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R60m/T51UWP_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R60m/T51UWP_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.3765395,48.7505719],[123.3585612,48.7119546],[123.3552534,48.7048697],[123.3513598,48.6965415],[123.2878676,48.5609815],[123.2215248,48.4159299],[123.1546532,48.2710565],[123.0884539,48.1260927],[123.0227773,47.9810966],[122.9997322,47.930217],[122.9997279,48.753013],[123.3765395,48.7505719]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UWP_N05.11","eo:cloud_cover":63.980716,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":28.6794760102683,"s2:mean_solar_azimuth":156.759918302674,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":34.175,"s2:thin_cirrus_percentage":30.567065,"s2:cloud_shadow_percentage":0.858481,"s2:nodata_pixel_percentage":89.681041,"s2:unclassified_percentage":0.258059,"s2:not_vegetated_percentage":0.727008,"s2:degraded_msi_data_percentage":0.0003,"s2:high_proba_clouds_percentage":11.811411,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.60224,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951","bbox":[122.9996798,54.9470178,124.7572757,55.9457344],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R60m/T51UWB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R60m/T51UWB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.9996798,55.9457344],[124.7572757,55.9332025],[124.7139855,54.9470178],[122.9996877,54.9590989],[122.9996798,55.9457344]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UWB_N05.11","eo:cloud_cover":49.787244,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.044164,"s2:mean_solar_zenith":35.4588406100177,"s2:mean_solar_azimuth":160.358673885298,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":37.789297,"s2:thin_cirrus_percentage":13.094236,"s2:cloud_shadow_percentage":10.389226,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.397232,"s2:not_vegetated_percentage":1.566494,"s2:degraded_msi_data_percentage":0.1166,"s2:high_proba_clouds_percentage":17.587948,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":19.105059,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736","bbox":[122.9996936,54.0555765,123.6635938,54.1679624],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R60m/T51UWA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R60m/T51UWA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.9996936,54.1679624],[123.0491081,54.1603337],[123.0489318,54.1599803],[123.049026,54.1599646],[123.0487058,54.1593229],[123.382052,54.1037045],[123.382073,54.1037458],[123.3821003,54.1037413],[123.3821741,54.1038871],[123.3823408,54.1038593],[123.3824132,54.1040024],[123.3824393,54.103998],[123.3824639,54.1040465],[123.3828133,54.1039882],[123.3829292,54.1042174],[123.6635938,54.0555765],[122.9996944,54.0602038],[122.9996936,54.1679624]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UWA_N05.11","eo:cloud_cover":8.451172,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.065912,"s2:mean_solar_zenith":34.6053844976197,"s2:mean_solar_azimuth":159.989421016063,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":87.770379,"s2:thin_cirrus_percentage":0.290421,"s2:cloud_shadow_percentage":1.6381,"s2:nodata_pixel_percentage":97.880805,"s2:unclassified_percentage":0.714232,"s2:not_vegetated_percentage":1.220707,"s2:degraded_msi_data_percentage":0.0028,"s2:high_proba_clouds_percentage":4.407667,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.753084,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951","bbox":[122.999687,54.0485147,124.7177342,55.046986],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R60m/T51UWA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R60m/T51UWA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.999687,55.046986],[124.7177342,55.0348657],[124.6767881,54.0485147],[122.9996944,54.0602038],[122.999687,55.046986]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UWA_N05.11","eo:cloud_cover":28.662688,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.010066,"s2:mean_solar_zenith":34.6053844976197,"s2:mean_solar_azimuth":159.989421016063,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.858567,"s2:thin_cirrus_percentage":11.501379,"s2:cloud_shadow_percentage":10.085355,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.358572,"s2:not_vegetated_percentage":0.998374,"s2:degraded_msi_data_percentage":0.0181,"s2:high_proba_clouds_percentage":8.541209,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.6201,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951","bbox":[121.9838497,53.9639095,123.1494256,54.1480114],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R60m/T51UVV_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R60m/T51UVV_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.1487821,53.9639095],[122.9479832,53.9974924],[122.9481262,53.9977808],[122.6132063,54.0496365],[122.6131096,54.049439],[122.5886183,54.0532539],[122.5886636,54.0533466],[122.2889777,54.0984146],[122.2284259,54.1076076],[122.2286166,54.1080021],[122.2278167,54.108111],[122.2278316,54.1081418],[122.1761686,54.1151418],[121.9838497,54.1413221],[123.1494256,54.1480114],[123.1487821,53.9639095]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UVV_N05.11","eo:cloud_cover":3.08952,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.017315,"s2:mean_solar_zenith":34.0813654983863,"s2:mean_solar_azimuth":157.166422690752,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":92.764705,"s2:thin_cirrus_percentage":0.131603,"s2:cloud_shadow_percentage":2.433042,"s2:nodata_pixel_percentage":93.5233,"s2:unclassified_percentage":0.330672,"s2:not_vegetated_percentage":1.343744,"s2:degraded_msi_data_percentage":0.0402,"s2:high_proba_clouds_percentage":0.973729,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.984188,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951","bbox":[121.8245577,54.9513065,123.1562717,55.9456353],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R60m/T51UVB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R60m/T51UVB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.8245577,54.9513065],[121.8573636,55.0210211],[121.9265895,55.1661143],[121.99571,55.3112522],[122.0657173,55.4562553],[122.1360145,55.6013198],[122.2068202,55.7463008],[122.2790468,55.8910374],[122.3029832,55.9406311],[123.1562717,55.9456353],[123.1524197,54.9590034],[121.8245577,54.9513065]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UVB_N05.11","eo:cloud_cover":87.740666,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.040295,"s2:mean_solar_zenith":35.7762565582716,"s2:mean_solar_azimuth":157.909946927641,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":8.209021,"s2:thin_cirrus_percentage":4.126655,"s2:cloud_shadow_percentage":3.075512,"s2:nodata_pixel_percentage":37.455398,"s2:unclassified_percentage":0.626232,"s2:not_vegetated_percentage":0.301926,"s2:degraded_msi_data_percentage":0.8614,"s2:high_proba_clouds_percentage":18.792695,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":64.821315,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736","bbox":[121.4668827,54.0504964,123.1494142,54.3749405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R60m/T51UVA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R60m/T51UVA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.4668827,54.1836475],[121.4887371,54.230434],[121.5558041,54.3749405],[121.9281611,54.3242906],[121.9282534,54.3244854],[121.928668,54.3244291],[121.9287311,54.3245624],[121.9290838,54.3245147],[121.9291289,54.32461],[121.9295965,54.3245468],[121.9297185,54.3248042],[121.9301434,54.324747],[121.9301624,54.3247872],[121.9305235,54.3247387],[121.9306037,54.3249078],[121.9308485,54.324875],[121.9308513,54.324881],[122.293863,54.2755855],[122.3246217,54.2713226],[122.3244758,54.2710202],[122.3247688,54.2709758],[122.3246482,54.2707258],[122.325808,54.2705502],[122.3257694,54.2704702],[122.3261054,54.2704194],[122.326099,54.2704061],[122.3264015,54.2703605],[122.3263961,54.2703493],[122.375888,54.2628902],[122.3867791,54.2612461],[122.6681326,54.2187082],[122.6681627,54.2187697],[122.6684173,54.2187312],[122.6684497,54.2187973],[122.6686699,54.2187641],[122.6687585,54.2189444],[122.668847,54.218931],[122.6688765,54.2189911],[122.6689649,54.2189778],[122.6689848,54.2190182],[123.0491081,54.1603337],[123.0489318,54.1599803],[123.049026,54.1599646],[123.0487058,54.1593229],[123.1494142,54.1425198],[123.14911,54.0601114],[121.4719201,54.0504964],[121.4668827,54.1836475]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UVA_N05.11","eo:cloud_cover":16.879188,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.006543,"s2:mean_solar_zenith":34.9279765778761,"s2:mean_solar_azimuth":157.549415349823,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":70.123202,"s2:thin_cirrus_percentage":0.069427,"s2:cloud_shadow_percentage":10.63133,"s2:nodata_pixel_percentage":79.059011,"s2:unclassified_percentage":0.881372,"s2:not_vegetated_percentage":1.458544,"s2:degraded_msi_data_percentage":0.0188,"s2:high_proba_clouds_percentage":8.416358,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.393401,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951","bbox":[121.4790494,54.056768,123.1527533,55.0468902],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R60m/T51UVA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R60m/T51UVA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.5659122,54.056768],[122.2889777,54.0984146],[122.2284259,54.1076076],[122.2286166,54.1080021],[122.2278167,54.108111],[122.2278316,54.1081418],[122.1761686,54.1151418],[121.8811708,54.1552997],[121.8810903,54.1551292],[121.8806732,54.1551863],[121.8806703,54.1551802],[121.8794626,54.1553438],[121.8793785,54.155165],[121.8535206,54.1587227],[121.8538059,54.1593139],[121.4790494,54.2095157],[121.5188676,54.2942384],[121.5851657,54.439808],[121.6527232,54.5851212],[121.7207465,54.7304114],[121.788983,54.8757081],[121.8573636,55.0210211],[121.8661441,55.0394246],[123.1527533,55.0468902],[123.14911,54.0601114],[122.5659122,54.056768]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UVA_N05.11","eo:cloud_cover":52.653968,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003285,"s2:mean_solar_zenith":34.9279765778761,"s2:mean_solar_azimuth":157.549415349823,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":37.74555,"s2:thin_cirrus_percentage":1.242309,"s2:cloud_shadow_percentage":7.265861,"s2:nodata_pixel_percentage":16.475068,"s2:unclassified_percentage":1.050488,"s2:not_vegetated_percentage":1.254543,"s2:degraded_msi_data_percentage":2.0749,"s2:high_proba_clouds_percentage":16.001086,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":35.410574,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736","bbox":[120.9984315,53.1416409,121.6511208,54.1401868],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R60m/T51UUV_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R60m/T51UUV_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.9984315,53.1416409],[121.0293857,53.2129719],[121.0939341,53.3584219],[121.1582032,53.5039295],[121.2234148,53.6493069],[121.2891205,53.7946536],[121.3556109,53.9398481],[121.4209831,54.0853839],[121.4450805,54.1369727],[121.6192567,54.1401868],[121.6511208,53.1535351],[120.9984315,53.1416409]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UUV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UUV_N05.11","eo:cloud_cover":4.091585,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.931335,"s2:mean_solar_zenith":34.4261817607303,"s2:mean_solar_azimuth":154.760325095232,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":91.110557,"s2:thin_cirrus_percentage":1.435339,"s2:cloud_shadow_percentage":3.054372,"s2:nodata_pixel_percentage":75.347459,"s2:unclassified_percentage":0.269249,"s2:not_vegetated_percentage":0.481111,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.107008,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.549238,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736","bbox":[120.6056024,52.2358279,121.6785441,53.2419635],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R60m/T51UUU_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R60m/T51UUU_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.6056024,52.2358279],[120.6495214,52.3393057],[120.7117381,52.4850079],[120.7745227,52.6306574],[120.8384771,52.7760809],[120.9017741,52.9217141],[120.9661176,53.0671769],[121.0293857,53.2129719],[121.0373045,53.2308157],[121.6483415,53.2419635],[121.6785441,52.2551507],[120.6056024,52.2358279]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UUU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UUU_N05.11","eo:cloud_cover":29.20112,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.027118,"s2:mean_solar_zenith":33.5881135017548,"s2:mean_solar_azimuth":154.358239976182,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":65.406787,"s2:thin_cirrus_percentage":14.649937,"s2:cloud_shadow_percentage":4.400674,"s2:nodata_pixel_percentage":48.51661,"s2:unclassified_percentage":0.382532,"s2:not_vegetated_percentage":0.568262,"s2:degraded_msi_data_percentage":0.1776,"s2:high_proba_clouds_percentage":5.582973,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.968209,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736","bbox":[121.4043239,54.0482962,121.6221725,54.3749405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R60m/T51UUA_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R60m/T51UUA_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.4043239,54.0482962],[121.4209831,54.0853839],[121.4887371,54.230434],[121.5558041,54.3749405],[121.6114247,54.3673747],[121.6221725,54.0523118],[121.4043239,54.0482962]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UUA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UUA_N05.11","eo:cloud_cover":25.536171,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":35.2668931326153,"s2:mean_solar_azimuth":155.135981523394,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":53.405219,"s2:thin_cirrus_percentage":0.00171,"s2:cloud_shadow_percentage":18.725342,"s2:nodata_pixel_percentage":97.477144,"s2:unclassified_percentage":0.516839,"s2:not_vegetated_percentage":1.798414,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":12.719624,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":12.814838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736","bbox":[121.7069511,45.0581917,122.1752693,46.0486504],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R60m/T51TVL_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R60m/T51TVL_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.1752693,46.0486504],[122.1329686,45.9488702],[122.0720409,45.8035458],[122.0110653,45.6582561],[121.9502934,45.5129648],[121.8899568,45.3675816],[121.8298896,45.2221331],[121.8252616,45.2109057],[121.7701436,45.0773904],[121.7623215,45.0583569],[121.7294164,45.0581917],[121.7069511,46.0462596],[122.1752693,46.0486504]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TVL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TVL_N05.11","eo:cloud_cover":98.190892,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000057,"s2:mean_solar_zenith":26.5701043469989,"s2:mean_solar_azimuth":152.40220453019,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.665535,"s2:thin_cirrus_percentage":3.684097,"s2:cloud_shadow_percentage":1.088557,"s2:nodata_pixel_percentage":82.523805,"s2:unclassified_percentage":0.051316,"s2:not_vegetated_percentage":0.00131,"s2:degraded_msi_data_percentage":0.0629,"s2:high_proba_clouds_percentage":58.089715,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":36.417076,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736","bbox":[121.7274503,44.9821886,121.7989239,45.1471066],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R60m/T51TVK_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R60m/T51TVK_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.7989239,45.1471066],[121.7701436,45.0773904],[121.7310193,44.9821886],[121.7274503,45.1467472],[121.7989239,45.1471066]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TVK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TVK_N05.11","eo:cloud_cover":100.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":25.7525590817109,"s2:mean_solar_azimuth":151.679725430971,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.615014,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":99.540663,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.459336,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736","bbox":[120.5688037,42.060235,120.7221903,42.429263],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R60m/T51TUG_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R60m/T51TUG_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.7221903,42.429263],[120.676057,42.3076801],[120.6206454,42.1618905],[120.5826297,42.060235],[120.5688037,42.4269017],[120.7221903,42.429263]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TUG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TUG_N05.11","eo:cloud_cover":99.987483,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":23.7890219812945,"s2:mean_solar_azimuth":146.652794097916,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.352288,"s2:cloud_shadow_percentage":0.00634,"s2:nodata_pixel_percentage":97.959131,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.006178,"s2:degraded_msi_data_percentage":0.0599,"s2:high_proba_clouds_percentage":66.681027,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":32.954165,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736","bbox":[119.4545363,39.6090131,120.0489377,40.6113254],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R60m/T51TTE_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R60m/T51TTE_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.0489377,40.6113254],[120.0282934,40.5542995],[119.9758153,40.4080915],[119.9230646,40.2620155],[119.8714404,40.1156798],[119.8513154,40.0589762],[119.819189,39.9686227],[119.7672769,39.8222937],[119.7387107,39.7415223],[119.7157065,39.6765674],[119.6935001,39.6136387],[119.5054874,39.6090131],[119.4545363,40.5964015],[120.0489377,40.6113254]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TTE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TTE_N05.11","eo:cloud_cover":80.006087,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":17.062339,"s2:mean_solar_zenith":22.7403756866213,"s2:mean_solar_azimuth":142.117565763747,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000243,"s2:vegetation_percentage":1.548352,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.00516,"s2:nodata_pixel_percentage":69.909889,"s2:unclassified_percentage":0.602656,"s2:not_vegetated_percentage":0.769749,"s2:degraded_msi_data_percentage":0.2965,"s2:high_proba_clouds_percentage":75.100821,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":4.905267,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736","bbox":[119.5010231,39.1430719,119.7250791,39.703032],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R60m/T51STD_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R60m/T51STD_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.7250791,39.703032],[119.7157065,39.6765674],[119.6640093,39.5300675],[119.6124705,39.3835187],[119.5611444,39.2369834],[119.528373,39.1430719],[119.5010231,39.6975095],[119.7250791,39.703032]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51STD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51STD_N05.11","eo:cloud_cover":2.799612,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":97.144371,"s2:mean_solar_zenith":21.9895965995577,"s2:mean_solar_azimuth":140.961465471589,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":95.220464,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.05602,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.027767,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.771845,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736","bbox":[120.5925969,52.1754847,121.634183,53.1792832],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R60m/T50UQD_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R60m/T50UQD_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.5925969,52.2051856],[120.6495214,52.3393057],[120.7117381,52.4850079],[120.7745227,52.6306574],[120.8384771,52.7760809],[120.9017741,52.9217141],[120.9661176,53.0671769],[121.0147664,53.1792832],[121.634183,53.159422],[121.5310322,52.1754847],[120.5925969,52.2051856]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UQD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UQD_N05.11","eo:cloud_cover":25.962237,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.047666,"s2:mean_solar_zenith":33.5713724823885,"s2:mean_solar_azimuth":154.209458513207,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":68.457073,"s2:thin_cirrus_percentage":14.526783,"s2:cloud_shadow_percentage":4.580833,"s2:nodata_pixel_percentage":52.271348,"s2:unclassified_percentage":0.378007,"s2:not_vegetated_percentage":0.564111,"s2:degraded_msi_data_percentage":0.0622,"s2:high_proba_clouds_percentage":4.97154,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.463914,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736","bbox":[120.2219412,51.2789252,121.5399797,52.2919894],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R60m/T50UQC_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R60m/T50UQC_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.2219412,51.3170712],[120.2227487,51.3190554],[120.2831008,51.4648783],[120.3435517,51.6106504],[120.4035932,51.7565431],[120.4652142,51.9021099],[120.5259895,52.0479574],[120.58769,52.1936244],[120.629439,52.2919894],[121.5399797,52.2631374],[121.4420952,51.2789252],[120.2219412,51.3170712]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UQC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UQC_N05.11","eo:cloud_cover":31.898367,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.214088,"s2:mean_solar_zenith":32.7693558338171,"s2:mean_solar_azimuth":153.582585084605,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":54.990929,"s2:thin_cirrus_percentage":5.04574,"s2:cloud_shadow_percentage":11.602494,"s2:nodata_pixel_percentage":33.275384,"s2:unclassified_percentage":0.805883,"s2:not_vegetated_percentage":0.448126,"s2:degraded_msi_data_percentage":0.1617,"s2:high_proba_clouds_percentage":14.983115,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.869514,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736","bbox":[119.169004,48.6298216,119.9045728,49.6229567],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R60m/T50UPV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R60m/T50UPV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.169004,48.6422133],[119.1869991,48.6899548],[119.2419162,48.8362346],[119.2974718,48.9824502],[119.3533039,49.128699],[119.4092168,49.2749858],[119.4656067,49.4212239],[119.5224453,49.5673876],[119.544024,49.6229567],[119.9045728,49.6162737],[119.8474785,48.6298216],[119.169004,48.6422133]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UPV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UPV_N05.11","eo:cloud_cover":28.28463,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.360298,"s2:mean_solar_zenith":30.8534709153541,"s2:mean_solar_azimuth":149.224726944608,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000436,"s2:vegetation_percentage":47.813132,"s2:thin_cirrus_percentage":0.020456,"s2:cloud_shadow_percentage":13.622352,"s2:nodata_pixel_percentage":65.792853,"s2:unclassified_percentage":0.628211,"s2:not_vegetated_percentage":9.29018,"s2:degraded_msi_data_percentage":0.0525,"s2:high_proba_clouds_percentage":17.138596,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.12558,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736","bbox":[119.5100935,49.5284183,119.9593861,50.5158587],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R60m/T50UPA_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R60m/T50UPA_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.5100935,49.5356243],[119.5224453,49.5673876],[119.5792112,49.7135705],[119.6363844,49.8596112],[119.6936125,50.0056639],[119.7510548,50.1516985],[119.8090594,50.2976236],[119.8668884,50.4436337],[119.8960822,50.5158587],[119.9593861,50.51467],[119.8993597,49.5284183],[119.5100935,49.5356243]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UPA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UPA_N05.11","eo:cloud_cover":22.555679,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.007636,"s2:mean_solar_zenith":31.6359537791406,"s2:mean_solar_azimuth":149.938004776559,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.772295,"s2:thin_cirrus_percentage":0.005205,"s2:cloud_shadow_percentage":14.883555,"s2:nodata_pixel_percentage":85.531396,"s2:unclassified_percentage":0.312989,"s2:not_vegetated_percentage":2.459519,"s2:degraded_msi_data_percentage":0.0117,"s2:high_proba_clouds_percentage":12.131319,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.419154,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736","bbox":[119.5794595,45.8957353,121.0656571,46.9235731],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R60m/T50TQS_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R60m/T50TQS_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.6264854,46.9235731],[121.0656571,46.8814597],[120.9930022,45.8957353],[119.5794595,45.9364309],[119.6264854,46.9235731]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQS_N05.11","eo:cloud_cover":27.660647,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000289,"s2:mean_solar_zenith":28.0407323538848,"s2:mean_solar_azimuth":149.157109553527,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":56.90102,"s2:thin_cirrus_percentage":0.050043,"s2:cloud_shadow_percentage":13.618906,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.215981,"s2:not_vegetated_percentage":1.600997,"s2:degraded_msi_data_percentage":0.0667,"s2:high_proba_clouds_percentage":16.988012,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.622592,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736","bbox":[119.4272955,42.3046906,120.8181237,43.326257],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R60m/T50TQN_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R60m/T50TQN_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.7739049,42.5651556],[120.7313982,42.4535302],[120.676057,42.3076801],[120.6749208,42.3046906],[119.4272955,42.3383721],[119.4662891,43.326257],[120.8181237,43.2890818],[120.7739049,42.5651556]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQN_N05.11","eo:cloud_cover":97.065979,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.004349,"s2:mean_solar_zenith":24.9974691461116,"s2:mean_solar_azimuth":145.343136428766,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":1.203796,"s2:thin_cirrus_percentage":0.286871,"s2:cloud_shadow_percentage":0.210673,"s2:nodata_pixel_percentage":0.893073,"s2:unclassified_percentage":0.388368,"s2:not_vegetated_percentage":1.126617,"s2:degraded_msi_data_percentage":0.0407,"s2:high_proba_clouds_percentage":79.418463,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":17.360643,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736","bbox":[119.361109,40.5215379,120.3744324,41.5268623],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R60m/T50TQL_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R60m/T50TQL_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.3744324,41.5008773],[120.3485427,41.4317422],[120.2947043,41.2854654],[120.240833,41.1392216],[120.187221,40.992973],[120.1342279,40.8466718],[120.0812006,40.7004455],[120.0282934,40.5542995],[120.0165344,40.5215379],[119.361109,40.5386175],[119.3967036,41.5268623],[120.3744324,41.5008773]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQL_N05.11","eo:cloud_cover":99.236029,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.015013,"s2:mean_solar_zenith":23.5228477672578,"s2:mean_solar_azimuth":143.079866845773,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.006039,"s2:thin_cirrus_percentage":5e-6,"s2:cloud_shadow_percentage":0.731515,"s2:nodata_pixel_percentage":37.700263,"s2:unclassified_percentage":0.004974,"s2:not_vegetated_percentage":0.006428,"s2:degraded_msi_data_percentage":0.1815,"s2:high_proba_clouds_percentage":96.402979,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.833042,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736","bbox":[119.3301855,39.6287972,120.0480229,40.6266494],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R60m/T50TQK_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R60m/T50TQK_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.0480229,40.6087983],[120.0282934,40.5542995],[119.9758153,40.4080915],[119.9230646,40.2620155],[119.8714404,40.1156798],[119.8513154,40.0589762],[119.819189,39.9686227],[119.7672769,39.8222937],[119.7387107,39.7415223],[119.7157065,39.6765674],[119.6988493,39.6287972],[119.3301855,39.6382276],[119.3642082,40.6266494],[120.0480229,40.6087983]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQK_N05.11","eo:cloud_cover":75.909507,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":16.082352,"s2:mean_solar_zenith":22.7998528423952,"s2:mean_solar_azimuth":141.840330969318,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000196,"s2:vegetation_percentage":4.620372,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.517618,"s2:nodata_pixel_percentage":59.397584,"s2:unclassified_percentage":1.103476,"s2:not_vegetated_percentage":1.764095,"s2:degraded_msi_data_percentage":0.2493,"s2:high_proba_clouds_percentage":69.136828,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.772681,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736","bbox":[118.2142871,42.3357822,119.5875362,43.3462],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R60m/T50TPN_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R60m/T50TPN_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.2338121,43.3462],[119.5875362,43.3235766],[119.5466306,42.3357822],[118.2142871,42.3576415],[118.2338121,43.3462]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TPN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TPN_N05.11","eo:cloud_cover":36.116058,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.106227,"s2:mean_solar_zenith":25.5386119791428,"s2:mean_solar_azimuth":143.028396117195,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000962,"s2:vegetation_percentage":37.823474,"s2:thin_cirrus_percentage":0.452646,"s2:cloud_shadow_percentage":6.894921,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.214482,"s2:not_vegetated_percentage":17.791484,"s2:degraded_msi_data_percentage":0.0557,"s2:high_proba_clouds_percentage":24.020392,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.64302,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736","bbox":[118.1987909,45.9567699,118.4342866,46.6304619],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R60m/T50TNS_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R60m/T50TNS_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.1987909,45.9581201],[118.2325341,46.0544868],[118.2834303,46.2012099],[118.3349002,46.347706],[118.3862382,46.4942726],[118.4342866,46.6304619],[118.4166561,45.9567699],[118.1987909,45.9581201]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TNS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TNS_N05.11","eo:cloud_cover":11.262465,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.830601,"s2:mean_solar_zenith":29.0507935392686,"s2:mean_solar_azimuth":144.596861136244,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":68.35593,"s2:thin_cirrus_percentage":5.509831,"s2:cloud_shadow_percentage":4.810938,"s2:nodata_pixel_percentage":95.042419,"s2:unclassified_percentage":0.336697,"s2:not_vegetated_percentage":14.377066,"s2:degraded_msi_data_percentage":0.0001,"s2:high_proba_clouds_percentage":2.567159,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.185475,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736","bbox":[117.8895777,45.0567486,118.4189041,46.0459415],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R60m/T50TNR_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R60m/T50TNR_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.8895777,45.0598289],[117.9284054,45.1743711],[117.9784136,45.3210777],[118.0286379,45.4678191],[118.0790918,45.6145875],[118.1299256,45.7612573],[118.1811913,45.9078576],[118.229542,46.0459415],[118.4189041,46.0447662],[118.3942539,45.0567486],[117.8895777,45.0598289]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TNR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TNR_N05.11","eo:cloud_cover":7.710127,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.227757,"s2:mean_solar_zenith":28.3008404942099,"s2:mean_solar_azimuth":143.720238992279,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.020385,"s2:vegetation_percentage":62.175059,"s2:thin_cirrus_percentage":0.104868,"s2:cloud_shadow_percentage":5.627007,"s2:nodata_pixel_percentage":75.651205,"s2:unclassified_percentage":0.755714,"s2:not_vegetated_percentage":22.477517,"s2:degraded_msi_data_percentage":0.001,"s2:high_proba_clouds_percentage":3.633779,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.971479,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736","bbox":[117.5889028,44.1571166,118.3964112,45.1482147],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R60m/T50TNQ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R60m/T50TNQ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.5889028,44.1618268],[117.6325885,44.2939196],[117.681421,44.4407804],[117.7306125,44.5875027],[117.7798669,44.7342142],[117.8291308,44.8809633],[117.8786777,45.0276736],[117.9195388,45.1482147],[118.3964112,45.1452997],[118.372894,44.1571166],[117.5889028,44.1618268]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TNQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TNQ_N05.11","eo:cloud_cover":23.080322,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0417,"s2:mean_solar_zenith":27.5586205163193,"s2:mean_solar_azimuth":142.794105299252,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.57253,"s2:thin_cirrus_percentage":2.204978,"s2:cloud_shadow_percentage":8.319222,"s2:nodata_pixel_percentage":54.831058,"s2:unclassified_percentage":0.561122,"s2:not_vegetated_percentage":8.392074,"s2:degraded_msi_data_percentage":0.0172,"s2:high_proba_clouds_percentage":12.556584,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.31876,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736","bbox":[116.7218325,41.4618364,117.1186942,42.4526297],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R60m/T50TMM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R60m/T50TMM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.7218325,41.4618364],[116.7342955,41.5018647],[116.7799969,41.6489077],[116.8264115,41.795836],[116.8730517,41.9427994],[116.9188569,42.0900523],[116.965478,42.2370827],[117.0122762,42.3841243],[117.0340859,42.4522246],[117.1186942,42.4526297],[117.1168731,41.4636925],[116.7218325,41.4618364]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TMM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TMM_N05.11","eo:cloud_cover":13.409732,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.037201,"s2:mean_solar_zenith":25.9700458856941,"s2:mean_solar_azimuth":137.491697498845,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":78.346264,"s2:thin_cirrus_percentage":0.000019,"s2:cloud_shadow_percentage":1.496124,"s2:nodata_pixel_percentage":82.224864,"s2:unclassified_percentage":0.696433,"s2:not_vegetated_percentage":5.929337,"s2:degraded_msi_data_percentage":0.0003,"s2:high_proba_clouds_percentage":6.646004,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.763709,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736","bbox":[116.4430791,40.55959,117.1170316,41.5517851],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R60m/T50TML_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R60m/T50TML_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.4430791,40.55959],[116.4611705,40.6197993],[116.5059286,40.7670862],[116.5513424,40.9141132],[116.5979323,41.0607592],[116.6417932,41.2082121],[116.6885271,41.354867],[116.7342955,41.5018647],[116.7492729,41.5500542],[117.1170316,41.5517851],[117.1152916,40.5626924],[116.4430791,40.55959]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TML","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TML_N05.11","eo:cloud_cover":1.470486,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.085095,"s2:mean_solar_zenith":25.2769763879235,"s2:mean_solar_azimuth":136.332294279426,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":95.43981,"s2:thin_cirrus_percentage":0.000202,"s2:cloud_shadow_percentage":0.891395,"s2:nodata_pixel_percentage":60.542274,"s2:unclassified_percentage":0.097371,"s2:not_vegetated_percentage":1.950037,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.67822,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.792064,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736","bbox":[119.3006375,38.7360413,119.7299013,39.7268153],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R60m/T50SQJ_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R60m/T50SQJ_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.7299013,39.7166481],[119.7157065,39.6765674],[119.6640093,39.5300675],[119.6124705,39.3835187],[119.5611444,39.2369834],[119.5100199,39.0904785],[119.4591559,38.9439878],[119.4085484,38.797521],[119.3874031,38.7360413],[119.3006375,38.7382186],[119.3331665,39.7268153],[119.7299013,39.7166481]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SQJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SQJ_N05.11","eo:cloud_cover":20.921469,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":78.946793,"s2:mean_solar_zenith":22.0883445369773,"s2:mean_solar_azimuth":140.521557816201,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.017688,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.01604,"s2:nodata_pixel_percentage":81.280202,"s2:unclassified_percentage":0.003864,"s2:not_vegetated_percentage":0.094148,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":11.769027,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.152442,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736","bbox":[119.2918736,38.4576552,119.4174953,38.8262817],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R60m/T50SQH_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R60m/T50SQH_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.4174953,38.8234148],[119.4085484,38.797521],[119.3581734,38.651056],[119.307937,38.5046006],[119.2918736,38.4576552],[119.3034704,38.8262817],[119.4174953,38.8234148]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SQH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SQH_N05.11","eo:cloud_cover":47.70222,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":52.205902,"s2:mean_solar_zenith":21.3885780137229,"s2:mean_solar_azimuth":139.115402045806,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.4038,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.091874,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":18.943036,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.759184,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736","bbox":[118.1508722,38.7363369,119.447885,39.7443999],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R60m/T50SPJ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R60m/T50SPJ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.4167008,38.8211153],[119.4085484,38.797521],[119.3875048,38.7363369],[118.1508722,38.7551983],[118.167158,39.7443999],[119.447885,39.7244518],[119.4167008,38.8211153]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SPJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SPJ_N05.11","eo:cloud_cover":20.222032,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":39.885443,"s2:mean_solar_zenith":22.6840681044289,"s2:mean_solar_azimuth":138.199942169003,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":22.857326,"s2:thin_cirrus_percentage":0.000242,"s2:cloud_shadow_percentage":1.767036,"s2:nodata_pixel_percentage":0.111814,"s2:unclassified_percentage":2.368912,"s2:not_vegetated_percentage":12.879643,"s2:degraded_msi_data_percentage":0.0202,"s2:high_proba_clouds_percentage":11.702741,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.519049,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736","bbox":[118.1102397,36.0461721,118.8109879,37.041254],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R60m/T50SPF_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R60m/T50SPF_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.8109879,37.0311754],[118.76475,36.8915401],[118.7163983,36.7449153],[118.6679767,36.5983507],[118.6198789,36.4517246],[118.5720684,36.3049556],[118.5236848,36.1582592],[118.4874197,36.0461721],[118.1102397,36.0515828],[118.1244855,37.041254],[118.8109879,37.0311754]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SPF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SPF_N05.11","eo:cloud_cover":36.983517,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.265535,"s2:mean_solar_zenith":20.6750215960592,"s2:mean_solar_azimuth":133.711979389783,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":34.599906,"s2:thin_cirrus_percentage":6.869698,"s2:cloud_shadow_percentage":12.036689,"s2:nodata_pixel_percentage":56.897491,"s2:unclassified_percentage":0.989636,"s2:not_vegetated_percentage":15.108298,"s2:degraded_msi_data_percentage":0.0491,"s2:high_proba_clouds_percentage":16.961607,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.15221,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736","bbox":[118.0934106,34.8104737,118.228127,35.2380875],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R60m/T50SPD_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R60m/T50SPD_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.228127,35.2362718],[118.1941734,35.1294626],[118.1475869,34.9825917],[118.1013403,34.8357003],[118.0934106,34.8104737],[118.0990408,35.2380875],[118.228127,35.2362718]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SPD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SPD_N05.11","eo:cloud_cover":26.308063,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.43517,"s2:mean_solar_zenith":19.4188388313226,"s2:mean_solar_azimuth":130.20887712026,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":46.315238,"s2:thin_cirrus_percentage":22.232413,"s2:cloud_shadow_percentage":0.66529,"s2:nodata_pixel_percentage":97.789735,"s2:unclassified_percentage":0.501519,"s2:not_vegetated_percentage":25.741094,"s2:degraded_msi_data_percentage":0.0255,"s2:high_proba_clouds_percentage":0.583179,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.49247,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736","bbox":[116.9997724,36.9514795,118.2493543,37.9475896],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R60m/T50SNG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R60m/T50SNG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.9997724,37.9475896],[118.2493543,37.9409562],[118.2330052,36.9514795],[116.9997753,36.9578811],[116.9997724,37.9475896]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SNG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SNG_N05.11","eo:cloud_cover":47.13845,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.602669,"s2:mean_solar_zenith":21.9739264966328,"s2:mean_solar_azimuth":133.083464061664,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":31.315121,"s2:thin_cirrus_percentage":16.231024,"s2:cloud_shadow_percentage":9.945966,"s2:nodata_pixel_percentage":3e-6,"s2:unclassified_percentage":0.741862,"s2:not_vegetated_percentage":10.248818,"s2:degraded_msi_data_percentage":0.0126,"s2:high_proba_clouds_percentage":16.119608,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.787817,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736","bbox":[116.9997848,32.4474308,117.666375,33.4395751],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R60m/T50SNB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R60m/T50SNB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.666375,33.4364017],[117.6444503,33.3648472],[117.5995079,33.2177733],[117.5546741,33.0707217],[117.5099751,32.9236622],[117.4653549,32.7765144],[117.4207487,32.6292944],[117.3764334,32.4819554],[117.3660533,32.4474308],[116.9997872,32.4491288],[116.9997848,33.4395751],[117.666375,33.4364017]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SNB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SNB_N05.11","eo:cloud_cover":39.729539,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.83291,"s2:mean_solar_zenith":18.9771520751009,"s2:mean_solar_azimuth":124.161536284537,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":32.208225,"s2:thin_cirrus_percentage":6.435398,"s2:cloud_shadow_percentage":1.07809,"s2:nodata_pixel_percentage":56.314051,"s2:unclassified_percentage":1.244856,"s2:not_vegetated_percentage":23.90082,"s2:degraded_msi_data_percentage":0.035,"s2:high_proba_clouds_percentage":18.052907,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.241231,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736","bbox":[116.999787,32.2482444,117.3925471,32.5373552],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R60m/T50SNA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R60m/T50SNA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.3925471,32.53553],[117.3764334,32.4819554],[117.332138,32.3346271],[117.3062352,32.2482444],[117.2528013,32.2622692],[117.0461187,32.3166646],[117.046091,32.3165716],[117.0459935,32.3165973],[117.0454263,32.3146922],[116.9997875,32.3257877],[116.999787,32.5373552],[117.3925471,32.53553]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SNA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SNA_N05.11","eo:cloud_cover":26.832655,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.541355,"s2:mean_solar_zenith":18.4456314194497,"s2:mean_solar_azimuth":122.033562227785,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":39.458776,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":92.377031,"s2:unclassified_percentage":0.998794,"s2:not_vegetated_percentage":32.1652,"s2:degraded_msi_data_percentage":0.0012,"s2:high_proba_clouds_percentage":14.997889,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.834764,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736","bbox":[115.9013317,38.7554279,117.1139256,39.750212],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R60m/T50SMJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R60m/T50SMJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.9013317,38.7554279],[115.9301224,38.8532881],[115.9736448,39.0005998],[116.0172137,39.1478543],[116.0608096,39.2950671],[116.1044794,39.4422733],[116.1483299,39.5894922],[116.1923701,39.736696],[116.195178,39.7460419],[117.1139256,39.750212],[117.1123356,38.7608105],[115.9013317,38.7554279]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMJ_N05.11","eo:cloud_cover":1.14024,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.138078,"s2:mean_solar_zenith":23.927685575955,"s2:mean_solar_azimuth":133.801367476993,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":65.048999,"s2:thin_cirrus_percentage":1.021053,"s2:cloud_shadow_percentage":0.014508,"s2:nodata_pixel_percentage":16.666119,"s2:unclassified_percentage":0.792223,"s2:not_vegetated_percentage":31.795236,"s2:degraded_msi_data_percentage":0.016,"s2:high_proba_clouds_percentage":0.009149,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.110037,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736","bbox":[115.8614709,36.9525649,117.111086,37.9475371],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R60m/T50SMG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R60m/T50SMG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.8614709,37.9420809],[117.111086,37.9475371],[117.1096319,36.9578305],[115.8763705,36.9525649],[115.8614709,37.9420809]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMG_N05.11","eo:cloud_cover":41.186291,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.053991,"s2:mean_solar_zenith":22.6340813175253,"s2:mean_solar_azimuth":130.954784605596,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.987856,"s2:thin_cirrus_percentage":9.839559,"s2:cloud_shadow_percentage":11.77372,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.437062,"s2:not_vegetated_percentage":9.555632,"s2:degraded_msi_data_percentage":0.0298,"s2:high_proba_clouds_percentage":16.522081,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.824648,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736","bbox":[115.8750647,36.0515787,117.1097593,37.0465323],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R60m/T50SMF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R60m/T50SMF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.8750647,37.0412498],[117.1097593,37.0465323],[117.1083685,36.056675],[115.8893163,36.0515787],[115.8750647,37.0412498]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMF_N05.11","eo:cloud_cover":46.413097,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.336628,"s2:mean_solar_zenith":22.0119019990082,"s2:mean_solar_azimuth":129.402097516376,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.597174,"s2:thin_cirrus_percentage":15.03856,"s2:cloud_shadow_percentage":4.154141,"s2:nodata_pixel_percentage":7e-6,"s2:unclassified_percentage":0.695393,"s2:not_vegetated_percentage":11.786846,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":13.983063,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":17.391473,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736","bbox":[115.8880749,35.1499121,117.1084896,36.1448493],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R60m/T50SME_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R60m/T50SME_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.8880749,36.1397366],[117.1084896,36.1448493],[117.1071592,35.1548426],[115.9017071,35.1499121],[115.8880749,36.1397366]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SME","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SME_N05.11","eo:cloud_cover":58.306003,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.369206,"s2:mean_solar_zenith":21.4074804479542,"s2:mean_solar_azimuth":127.754859134037,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":28.753677,"s2:thin_cirrus_percentage":21.736342,"s2:cloud_shadow_percentage":0.966457,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.66243,"s2:not_vegetated_percentage":10.925531,"s2:degraded_msi_data_percentage":0.0143,"s2:high_proba_clouds_percentage":14.595555,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.974111,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736","bbox":[115.9005196,34.2481073,117.1072751,35.2430302],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R60m/T50SMD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R60m/T50SMD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.9005196,35.2380835],[117.1072751,35.2430302],[117.1060025,34.2528758],[115.9135595,34.2481073],[115.9005196,35.2380835]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMD_N05.11","eo:cloud_cover":90.309763,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.518857,"s2:mean_solar_zenith":20.8227995236326,"s2:mean_solar_azimuth":126.009053551506,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":4.199996,"s2:thin_cirrus_percentage":14.53747,"s2:cloud_shadow_percentage":1.179472,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.02645,"s2:not_vegetated_percentage":3.765067,"s2:degraded_msi_data_percentage":0.0033,"s2:high_proba_clouds_percentage":37.807155,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":37.96514,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736","bbox":[116.1145798,32.3015168,117.1039399,32.5373123],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R60m/T50SMA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R60m/T50SMA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.1036749,32.3015168],[117.0461187,32.3166646],[117.046091,32.3165716],[117.0459935,32.3165973],[117.0454263,32.3146922],[116.7782206,32.3796543],[116.778231,32.3796895],[116.7781318,32.3797131],[116.7781616,32.3798144],[116.7781075,32.3798273],[116.7781694,32.3800382],[116.7781547,32.3800417],[116.7784096,32.3809087],[116.7781299,32.3809753],[116.778211,32.381251],[116.7781507,32.3812654],[116.7782918,32.3817456],[116.5535674,32.4356065],[116.5437143,32.437978],[116.5431121,32.4359135],[116.2813242,32.4947713],[116.2816815,32.496011],[116.2815423,32.4960413],[116.2818084,32.4969648],[116.2814579,32.4970413],[116.2814761,32.4971044],[116.1145798,32.5335306],[117.1039399,32.5373123],[117.1036749,32.3015168]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMA_N05.11","eo:cloud_cover":14.862227,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":3.917596,"s2:mean_solar_zenith":19.2058256898959,"s2:mean_solar_azimuth":120.135148203205,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":61.090124,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.531518,"s2:nodata_pixel_percentage":89.938831,"s2:unclassified_percentage":0.804895,"s2:not_vegetated_percentage":18.791266,"s2:degraded_msi_data_percentage":0.0359,"s2:high_proba_clouds_percentage":6.904262,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":7.957965,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736","bbox":[115.63759,37.8502561,115.9746634,38.8443739],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R60m/T50SLH_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R60m/T50SLH_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.63759,37.8502561],[115.671881,37.9689406],[115.7145596,38.1162715],[115.7574188,38.2636455],[115.8004173,38.411074],[115.8435289,38.5584864],[115.8867567,38.7058869],[115.9273598,38.8438979],[115.9606157,38.8443739],[115.9746634,37.8549777],[115.63759,37.8502561]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLH_N05.11","eo:cloud_cover":38.279384,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.115262,"s2:mean_solar_zenith":23.932092986659,"s2:mean_solar_azimuth":130.356473489181,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":35.349339,"s2:thin_cirrus_percentage":5.769221,"s2:cloud_shadow_percentage":8.881476,"s2:nodata_pixel_percentage":85.593003,"s2:unclassified_percentage":0.588054,"s2:not_vegetated_percentage":16.765666,"s2:degraded_msi_data_percentage":0.0303,"s2:high_proba_clouds_percentage":19.331181,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.178983,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736","bbox":[115.3785214,36.9452099,115.9868749,37.9431112],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R60m/T50SLG_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R60m/T50SLG_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.3785214,36.9452099],[115.4182056,37.0847685],[115.4602395,37.2322337],[115.5023433,37.3796156],[115.5445309,37.526943],[115.586851,37.6742695],[115.6293078,37.8215905],[115.66316,37.9387564],[115.9734399,37.9431112],[115.9868749,36.9535591],[115.3785214,36.9452099]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLG_N05.11","eo:cloud_cover":36.07443,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.366998,"s2:mean_solar_zenith":23.3079127743644,"s2:mean_solar_azimuth":128.912664618134,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":42.052454,"s2:thin_cirrus_percentage":9.59694,"s2:cloud_shadow_percentage":8.664303,"s2:nodata_pixel_percentage":63.342643,"s2:unclassified_percentage":0.446737,"s2:not_vegetated_percentage":12.388815,"s2:degraded_msi_data_percentage":0.0098,"s2:high_proba_clouds_percentage":13.623509,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":12.853979,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736","bbox":[115.1241092,36.0407906,115.998548,37.0422472],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R60m/T50SLF_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R60m/T50SLF_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.1241092,36.0407906],[115.1272005,36.0518786],[115.168395,36.1994042],[115.2097009,36.3469466],[115.2511476,36.4945241],[115.2927244,36.6421295],[115.3344184,36.7896865],[115.3762581,36.9372503],[115.4038391,37.0342453],[115.9856975,37.0422472],[115.998548,36.052541],[115.1241092,36.0407906]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLF_N05.11","eo:cloud_cover":54.964435,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.055954,"s2:mean_solar_zenith":22.7011208309229,"s2:mean_solar_azimuth":127.38554131012,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":23.944311,"s2:thin_cirrus_percentage":18.65389,"s2:cloud_shadow_percentage":4.03236,"s2:nodata_pixel_percentage":40.977442,"s2:unclassified_percentage":1.742189,"s2:not_vegetated_percentage":15.259357,"s2:degraded_msi_data_percentage":0.0036,"s2:high_proba_clouds_percentage":14.528267,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.782278,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736","bbox":[114.8735561,35.1359055,116.0097208,36.140702],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R60m/T50SLE_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R60m/T50SLE_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.8735561,35.1359055],[114.8819738,35.1665639],[114.9226016,35.3142249],[114.9632854,35.461833],[115.004088,35.6093671],[115.0450297,35.7568681],[115.0860717,35.9043527],[115.1272005,36.0518786],[115.1488123,36.1292747],[115.9974287,36.140702],[116.0097208,35.1508431],[114.8735561,35.1359055]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLE_N05.11","eo:cloud_cover":61.273545,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.115494,"s2:mean_solar_zenith":22.112424509398,"s2:mean_solar_azimuth":125.769073487741,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":21.663535,"s2:thin_cirrus_percentage":21.789815,"s2:cloud_shadow_percentage":2.258105,"s2:nodata_pixel_percentage":18.485914,"s2:unclassified_percentage":0.487194,"s2:not_vegetated_percentage":14.201862,"s2:degraded_msi_data_percentage":0.0151,"s2:high_proba_clouds_percentage":18.484378,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":20.999353,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736","bbox":[114.8107801,34.2336874,116.020408,35.2390176],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R60m/T50SLD_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R60m/T50SLD_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.8107801,34.9069749],[114.8414251,35.0188806],[114.8819738,35.1665639],[114.8978821,35.2243822],[116.00865,35.2390176],[116.020408,34.2490077],[114.8285025,34.2336874],[114.8107801,34.9069749]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLD_N05.11","eo:cloud_cover":78.448844,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.034417,"s2:mean_solar_zenith":21.5437499415022,"s2:mean_solar_azimuth":124.060060209001,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":16.212113,"s2:thin_cirrus_percentage":15.942572,"s2:cloud_shadow_percentage":0.25766,"s2:nodata_pixel_percentage":1.390798,"s2:unclassified_percentage":0.02907,"s2:not_vegetated_percentage":5.016909,"s2:degraded_msi_data_percentage":0.0217,"s2:high_proba_clouds_percentage":37.523243,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":24.983029,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736","bbox":[114.8489629,32.548068,116.0392875,33.4357788],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R60m/T50SLB_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R60m/T50SLB_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.0392875,32.548068],[115.7887615,32.599859],[115.7889327,32.6004646],[115.7889023,32.6004706],[115.7891664,32.6014053],[115.7889536,32.6014471],[115.7889979,32.6016034],[115.7889594,32.6016109],[115.7890053,32.6017728],[115.5566318,32.6474306],[115.5560434,32.6453339],[115.2930914,32.6951129],[115.2937843,32.697615],[115.0578661,32.7390137],[115.0578174,32.7388361],[115.0566854,32.739034],[115.0561579,32.7371155],[114.8646338,32.7699863],[114.8489629,33.4209188],[116.0296449,33.4357788],[116.0392875,32.548068]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLB_N05.11","eo:cloud_cover":22.575794,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.203345,"s2:mean_solar_zenith":20.4735728391914,"s2:mean_solar_azimuth":120.350540525566,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":47.479817,"s2:thin_cirrus_percentage":0.78185,"s2:cloud_shadow_percentage":6.80596,"s2:nodata_pixel_percentage":22.615021,"s2:unclassified_percentage":1.604452,"s2:not_vegetated_percentage":21.323994,"s2:degraded_msi_data_percentage":0.0201,"s2:high_proba_clouds_percentage":9.574964,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":12.21898,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736","bbox":[114.6260528,34.2288219,114.9346265,35.2250277],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R60m/T50SKD_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R60m/T50SKD_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.6260528,34.2288219],[114.6400448,34.28055],[114.6801328,34.4281839],[114.7203285,34.5758146],[114.7606131,34.7235075],[114.8009815,34.8711936],[114.8414251,35.0188806],[114.8819738,35.1665639],[114.897987,35.2247636],[114.9098528,35.2250277],[114.9346265,34.2355216],[114.6260528,34.2288219]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SKD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SKD_N05.11","eo:cloud_cover":43.614638,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":22.2761367578294,"s2:mean_solar_azimuth":122.199905893594,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":48.51774,"s2:thin_cirrus_percentage":19.065133,"s2:cloud_shadow_percentage":0.279661,"s2:nodata_pixel_percentage":86.968803,"s2:unclassified_percentage":0.038013,"s2:not_vegetated_percentage":7.548423,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":8.437844,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":16.11166,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736","bbox":[114.3823884,33.3223707,114.9561528,34.3242059],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R60m/T50SKC_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R60m/T50SKC_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.3823884,33.3223707],[114.4016363,33.394506],[114.4411648,33.5422871],[114.4807933,33.6900103],[114.5205076,33.8376791],[114.5602767,33.9852886],[114.6001102,34.1329128],[114.6400448,34.28055],[114.6502313,34.3180644],[114.9324553,34.3242059],[114.9561528,33.3345403],[114.3823884,33.3223707]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SKC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SKC_N05.11","eo:cloud_cover":11.416361,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.145795,"s2:mean_solar_zenith":21.7449250375714,"s2:mean_solar_azimuth":120.441765877917,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":61.459398,"s2:thin_cirrus_percentage":1.473696,"s2:cloud_shadow_percentage":3.381855,"s2:nodata_pixel_percentage":64.255857,"s2:unclassified_percentage":1.099615,"s2:not_vegetated_percentage":22.484984,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":3.599652,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.343013,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736","bbox":[114.2607634,32.7519975,114.9694467,33.4226979],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R60m/T50SKB_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R60m/T50SKB_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.9694467,32.7519975],[114.7866736,32.7833664],[114.7873809,32.7859752],[114.7868224,32.7860614],[114.7868867,32.7862979],[114.5420852,32.8238584],[114.5415941,32.8220329],[114.2607634,32.8652053],[114.2835294,32.9510485],[114.3228282,33.0988814],[114.362195,33.2466921],[114.4016363,33.394506],[114.4060608,33.4110471],[114.9540887,33.4226979],[114.9694467,32.7519975]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SKB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SKB_N05.11","eo:cloud_cover":22.665247,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.044582,"s2:mean_solar_zenith":21.2368714393912,"s2:mean_solar_azimuth":118.590050519461,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":43.758434,"s2:thin_cirrus_percentage":0.316356,"s2:cloud_shadow_percentage":6.892233,"s2:nodata_pixel_percentage":67.121089,"s2:unclassified_percentage":1.238217,"s2:not_vegetated_percentage":25.397611,"s2:degraded_msi_data_percentage":0.0001,"s2:high_proba_clouds_percentage":9.031008,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.317885,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317","bbox":[156.1138782,71.0946572,157.4042726,71.8926319],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R60m/T57WVV_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R60m/T57WVV_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.1138782,71.8926319],[156.1865749,71.8773005],[156.1873346,71.8776742],[156.1876319,71.8776116],[156.1876651,71.8776279],[156.188117,71.877533],[156.1900524,71.8784839],[156.8140604,71.7434156],[156.8138246,71.7433015],[156.8144989,71.7431445],[156.8104562,71.7411889],[157.1727301,71.6575571],[157.4042726,71.6037897],[157.1415077,71.4783743],[156.8815306,71.3524484],[156.6249589,71.2261815],[156.3719088,71.0996042],[156.3638923,71.0955339],[156.2327264,71.0946572],[156.1138782,71.8926319]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57WVV","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T57WVV_N05.11","eo:cloud_cover":0.808194,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":99.191809,"s2:mean_solar_zenith":50.6476398763521,"s2:mean_solar_azimuth":189.674210386958,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.807331,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":82.696778,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0252,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.000863,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317","bbox":[152.9994042,71.9896812,155.6536986,72.4824862],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R60m/T56XNF_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R60m/T56XNF_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[152.9994042,72.4824862],[153.2193985,72.4460466],[153.2161141,72.4442957],[153.2179226,72.4439833],[153.2172622,72.443631],[153.7972632,72.3435368],[153.8006367,72.3453062],[153.8006751,72.3452996],[153.8010871,72.3455156],[154.444778,72.2286253],[154.4440394,72.2282447],[154.4441165,72.22823],[154.4413735,72.2268181],[154.4427393,72.2265573],[154.4425015,72.2264349],[155.0043533,72.1190371],[155.0047979,72.1192626],[155.0048938,72.1192443],[155.0075676,72.1205995],[155.1169701,72.0988713],[155.6369063,71.9954883],[155.6368743,71.9954724],[155.6372575,71.9953915],[155.6342712,71.9939029],[155.6352357,71.9937003],[155.635059,71.9936122],[155.6536986,71.9896812],[152.9994198,72.0113634],[152.9994042,72.4824862]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNF","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56XNF_N05.11","eo:cloud_cover":96.588451,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":3.411547,"s2:mean_solar_zenith":51.4036388492559,"s2:mean_solar_azimuth":185.856579772221,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.549547,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":79.889983,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.006,"s2:high_proba_clouds_percentage":93.191421,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.847482,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317","bbox":[149.9444535,71.989773,153.2899112,72.9336541],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R60m/T56XMF_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R60m/T56XMF_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.9444535,72.9336541],[150.5960508,72.8460045],[150.5930046,72.8442415],[150.5960489,72.8438183],[150.5954453,72.8434687],[151.0566301,72.779791],[151.2382524,72.7545429],[151.2384947,72.7546802],[151.2395613,72.7545329],[151.2427866,72.7563617],[151.5095988,72.7163929],[151.9434834,72.6512482],[151.9408115,72.6497676],[151.9427225,72.6494703],[151.9424003,72.6492914],[151.9427767,72.649233],[151.942188,72.6489065],[152.5493995,72.5547733],[152.5525707,72.556499],[153.2193985,72.4460466],[153.2161141,72.4442957],[153.2179226,72.4439833],[153.2172622,72.443631],[153.2899112,72.4310936],[153.2831475,72.0111578],[150.1000757,71.989773],[149.9444535,72.9336541]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMF","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56XMF_N05.11","eo:cloud_cover":36.172736,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":63.827264,"s2:mean_solar_zenith":51.3424657006491,"s2:mean_solar_azimuth":182.33412651875,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":2.19706,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":30.161938,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0208,"s2:high_proba_clouds_percentage":27.641454,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":6.334222,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317","bbox":[155.7661688,71.0815674,157.4042726,71.9394383],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R60m/T56WPE_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R60m/T56WPE_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[155.8919355,71.9394383],[156.1865749,71.8773005],[156.1873346,71.8776742],[156.1876319,71.8776116],[156.1876651,71.8776279],[156.188117,71.877533],[156.1900524,71.8784839],[156.8140604,71.7434156],[156.8138246,71.7433015],[156.8144989,71.7431445],[156.8104562,71.7411889],[157.1727301,71.6575571],[157.4042726,71.6037897],[157.1415077,71.4783743],[156.8815306,71.3524484],[156.6249589,71.2261815],[156.3719088,71.0996042],[156.3363851,71.0815674],[155.7661688,71.0946736],[155.8919355,71.9394383]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WPE","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WPE_N05.11","eo:cloud_cover":6.615165,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":50.099075,"s2:mean_solar_zenith":50.5852245554377,"s2:mean_solar_azimuth":189.292703639737,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":43.285748,"s2:vegetation_percentage":0.000012,"s2:thin_cirrus_percentage":6.175373,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":73.227441,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0264,"s2:high_proba_clouds_percentage":0.000012,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.439779,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317","bbox":[155.7222819,70.7655909,156.503808,71.1822592],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R60m/T56WPD_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R60m/T56WPD_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.503808,71.1655811],[156.3719088,71.0996042],[156.1220054,70.9727179],[155.8751998,70.845503],[155.7222819,70.7655909],[155.7785751,71.1822592],[156.503808,71.1655811]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WPD","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WPD_N05.11","eo:cloud_cover":35.880098,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":32.543823,"s2:mean_solar_zenith":49.6953014001368,"s2:mean_solar_azimuth":189.242109828946,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000264,"s2:vegetation_percentage":19.556281,"s2:thin_cirrus_percentage":33.529049,"s2:cloud_shadow_percentage":0.14037,"s2:nodata_pixel_percentage":94.972533,"s2:unclassified_percentage":0.985492,"s2:not_vegetated_percentage":10.893675,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.128425,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.222621,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317","bbox":[152.9994439,70.2047216,156.049855,71.2028426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R60m/T56WND_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R60m/T56WND_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.0109186,70.9154587],[155.8751998,70.845503],[155.6311487,70.7179664],[155.3897268,70.5901472],[155.1510019,70.4620067],[154.9150514,70.3335674],[154.6821372,70.2048519],[154.6819046,70.2047216],[152.9994705,70.2183208],[152.9994439,71.2028426],[156.049855,71.1780394],[156.0109186,70.9154587]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WND","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WND_N05.11","eo:cloud_cover":56.856114,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":15.574054,"s2:mean_solar_zenith":49.6197441185099,"s2:mean_solar_azimuth":185.964816080689,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000039,"s2:vegetation_percentage":18.447578,"s2:thin_cirrus_percentage":41.570169,"s2:cloud_shadow_percentage":1.502586,"s2:nodata_pixel_percentage":15.417919,"s2:unclassified_percentage":0.599417,"s2:not_vegetated_percentage":7.02021,"s2:degraded_msi_data_percentage":0.0181,"s2:high_proba_clouds_percentage":2.51416,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":12.771785,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317","bbox":[152.9994682,69.3200417,154.8382891,70.3060175],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R60m/T56WNC_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R60m/T56WNC_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[154.8382891,70.2911462],[154.6821372,70.2048519],[154.4520274,70.0759117],[154.2522737,69.9620968],[154.2308369,69.9499096],[154.2270893,69.9477473],[154.2251344,69.9466335],[154.1821007,69.9217891],[154.0063688,69.8203926],[153.9848081,69.8077666],[153.7789296,69.6873514],[153.5598436,69.5573057],[153.3434392,69.4270398],[153.1680828,69.3200417],[152.9994925,69.3213967],[152.9994682,70.3060175],[154.8382891,70.2911462]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WNC","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WNC_N05.11","eo:cloud_cover":28.974444,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":6.244714,"s2:mean_solar_zenith":48.727798516941,"s2:mean_solar_azimuth":186.035519925034,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.007582,"s2:vegetation_percentage":61.014575,"s2:thin_cirrus_percentage":24.466808,"s2:cloud_shadow_percentage":0.602819,"s2:nodata_pixel_percentage":65.473133,"s2:unclassified_percentage":0.150109,"s2:not_vegetated_percentage":3.005756,"s2:degraded_msi_data_percentage":0.0246,"s2:high_proba_clouds_percentage":1.617663,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.889972,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317","bbox":[152.9994904,69.2161524,153.3108208,69.4096405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R60m/T56WNB_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R60m/T56WNB_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.3108208,69.4071369],[153.1295349,69.2965207],[152.9994948,69.2161524],[152.9994904,69.4096405],[153.3108208,69.4071369]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WNB","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WNB_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":16.187942,"s2:mean_solar_zenith":47.8365840469843,"s2:mean_solar_azimuth":186.116465845849,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":79.936624,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.936272,"s2:unclassified_percentage":0.015907,"s2:not_vegetated_percentage":3.85953,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317","bbox":[150.2203151,70.1988218,153.2713887,71.2026464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R60m/T56WMD_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R60m/T56WMD_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.2203151,71.1822428],[153.2713887,71.2026464],[153.258393,70.2181351],[150.3532315,70.1988218],[150.2203151,71.1822428]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WMD","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WMD_N05.11","eo:cloud_cover":30.180329,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":22.282319,"s2:mean_solar_zenith":49.5549166581445,"s2:mean_solar_azimuth":182.67867868366,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001221,"s2:vegetation_percentage":34.504521,"s2:thin_cirrus_percentage":23.401777,"s2:cloud_shadow_percentage":3.834599,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.141184,"s2:not_vegetated_percentage":9.055829,"s2:degraded_msi_data_percentage":0.0119,"s2:high_proba_clouds_percentage":2.924363,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":3.854188,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317","bbox":[150.5541183,67.6415161,151.8870665,68.5035751],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R60m/T56WMA_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R60m/T56WMA_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[151.8870665,68.5035751],[151.6963116,68.3760551],[151.501133,68.2436697],[151.3306669,68.1266474],[151.3128158,68.1144175],[151.3098001,68.1123227],[151.3080017,68.1110881],[151.11682,67.9783099],[150.9277644,67.8453157],[150.7405053,67.7122238],[150.6423828,67.6415161],[150.5541183,68.494811],[151.8870665,68.5035751]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WMA","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WMA_N05.11","eo:cloud_cover":0.260707,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":23.086421,"s2:mean_solar_zenith":46.8742524507715,"s2:mean_solar_azimuth":183.187959173324,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":75.189161,"s2:thin_cirrus_percentage":0.260707,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":78.507793,"s2:unclassified_percentage":0.000123,"s2:not_vegetated_percentage":1.463589,"s2:degraded_msi_data_percentage":0.0257,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317","bbox":[149.8987666,71.9166252,153.2446805,72.9191954],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R60m/T55XFA_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R60m/T55XFA_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.051941,72.9191954],[150.5960508,72.8460045],[150.5930046,72.8442415],[150.5960489,72.8438183],[150.5954453,72.8434687],[151.0566301,72.779791],[151.2382524,72.7545429],[151.2384947,72.7546802],[151.2395613,72.7545329],[151.2427866,72.7563617],[151.5095988,72.7163929],[151.9434834,72.6512482],[151.9408115,72.6497676],[151.9427225,72.6494703],[151.9424003,72.6492914],[151.9427767,72.649233],[151.942188,72.6489065],[152.5493995,72.5547733],[152.5525707,72.556499],[153.2193985,72.4460466],[153.2161141,72.4442957],[153.2179226,72.4439833],[153.2172622,72.443631],[153.2446805,72.4388993],[153.0648961,71.9166252],[149.8987666,71.9897902],[150.051941,72.9191954]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XFA","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55XFA_N05.11","eo:cloud_cover":32.868475,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":39.013121,"s2:mean_solar_zenith":51.2931417795957,"s2:mean_solar_azimuth":182.281583054438,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":28.06398,"s2:vegetation_percentage":0.014809,"s2:thin_cirrus_percentage":6.119839,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":25.548658,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.039622,"s2:degraded_msi_data_percentage":0.0206,"s2:high_proba_clouds_percentage":18.249761,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":8.498877,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317","bbox":[148.3295008,71.9853678,150.3435503,72.9465808],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R60m/T55XEA_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R60m/T55XEA_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.3295008,72.0004983],[148.3331336,72.0028979],[148.5412191,72.138423],[148.7520334,72.2737263],[148.9654906,72.408815],[149.1815603,72.5436977],[149.4007946,72.6783585],[149.6231885,72.812805],[149.8483552,72.9465808],[150.3435503,72.8799696],[150.181736,71.9853678],[148.3295008,72.0004983]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEA","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55XEA_N05.11","eo:cloud_cover":0.165311,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":78.549856,"s2:mean_solar_zenith":51.3316846054059,"s2:mean_solar_azimuth":178.758447433788,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":6.250601,"s2:vegetation_percentage":9.62053,"s2:thin_cirrus_percentage":0.079091,"s2:cloud_shadow_percentage":0.125453,"s2:nodata_pixel_percentage":65.46303,"s2:unclassified_percentage":0.00707,"s2:not_vegetated_percentage":5.281178,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.022864,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.063356,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317","bbox":[149.7661688,71.0251958,153.093564,72.0778947],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R60m/T55WFV_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R60m/T55WFV_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.9125486,72.0778947],[153.093564,72.0043476],[152.7889605,71.0251958],[149.7661688,71.0946736],[149.9125486,72.0778947]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFV","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFV_N05.11","eo:cloud_cover":14.408642,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":62.24485,"s2:mean_solar_zenith":50.3985404696825,"s2:mean_solar_azimuth":182.119104010669,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":5.137096,"s2:vegetation_percentage":8.447716,"s2:thin_cirrus_percentage":7.188072,"s2:cloud_shadow_percentage":0.3712,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.017366,"s2:not_vegetated_percentage":9.373128,"s2:degraded_msi_data_percentage":0.0177,"s2:high_proba_clouds_percentage":4.545556,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.675014,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317","bbox":[149.4354563,68.3567732,152.3308902,69.3909851],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R60m/T55WFS_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R60m/T55WFS_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[152.1824531,68.69759],[152.094174,68.6401589],[151.8940049,68.5082134],[151.6963116,68.3760551],[151.6678839,68.3567732],[149.4354563,68.4071896],[149.546266,69.3909851],[152.3308902,69.3276752],[152.1824531,68.69759]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFS","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFS_N05.11","eo:cloud_cover":0.789332,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":16.580273,"s2:mean_solar_zenith":47.7128243449971,"s2:mean_solar_azimuth":181.748147889462,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":77.942979,"s2:thin_cirrus_percentage":0.556001,"s2:cloud_shadow_percentage":0.55987,"s2:nodata_pixel_percentage":2.93372,"s2:unclassified_percentage":0.029898,"s2:not_vegetated_percentage":4.097645,"s2:degraded_msi_data_percentage":0.019,"s2:high_proba_clouds_percentage":0.077236,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.156095,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317","bbox":[149.3431637,67.4864868,151.7945524,68.4948252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R60m/T55WFR_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R60m/T55WFR_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[151.7945524,68.4417292],[151.6963116,68.3760551],[151.501133,68.2436697],[151.3306669,68.1266474],[151.3128158,68.1144175],[151.3098001,68.1123227],[151.3080017,68.1110881],[151.11682,67.9783099],[150.9277644,67.8453157],[150.7405053,67.7122238],[150.5554665,67.5788836],[150.4289849,67.4864868],[149.3431637,67.5108527],[149.4449048,68.4948252],[151.7945524,68.4417292]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFR","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFR_N05.11","eo:cloud_cover":4.023106,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":12.379175,"s2:mean_solar_zenith":46.8171259569399,"s2:mean_solar_azimuth":181.656167535865,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":75.724196,"s2:thin_cirrus_percentage":0.328595,"s2:cloud_shadow_percentage":3.949002,"s2:nodata_pixel_percentage":34.944767,"s2:unclassified_percentage":0.226697,"s2:not_vegetated_percentage":3.697826,"s2:degraded_msi_data_percentage":0.0183,"s2:high_proba_clouds_percentage":1.715708,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":1.978803,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317","bbox":[149.2581395,66.613896,150.5456307,67.5985039],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R60m/T55WFQ_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R60m/T55WFQ_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.5456307,67.5716984],[150.3725878,67.4452878],[150.1914159,67.3114862],[150.011373,67.1776197],[149.8336593,67.0434616],[149.6577203,66.9091737],[149.4838735,66.7747109],[149.3119871,66.6401049],[149.2789046,66.613896],[149.2581395,66.6143589],[149.3518535,67.5985039],[150.5456307,67.5716984]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFQ","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFQ_N05.11","eo:cloud_cover":18.311203,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":0.16762,"s2:mean_solar_zenith":45.9212867035903,"s2:mean_solar_azimuth":181.577292223729,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":70.429194,"s2:thin_cirrus_percentage":8.949737,"s2:cloud_shadow_percentage":8.770066,"s2:nodata_pixel_percentage":76.459223,"s2:unclassified_percentage":0.405287,"s2:not_vegetated_percentage":1.91663,"s2:degraded_msi_data_percentage":0.0258,"s2:high_proba_clouds_percentage":4.362518,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":4.998947,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317","bbox":[149.256871,66.5964405,149.3882669,66.7025631],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R60m/T55WFP_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R60m/T55WFP_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.3882669,66.6998404],[149.3119871,66.6401049],[149.256871,66.5964405],[149.2662054,66.7025631],[149.3882669,66.6998404]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFP","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFP_N05.11","eo:cloud_cover":14.128898,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":9.20466,"s2:mean_solar_zenith":45.0258444072951,"s2:mean_solar_azimuth":181.510355019838,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":72.944981,"s2:thin_cirrus_percentage":14.128898,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.753672,"s2:unclassified_percentage":0.006734,"s2:not_vegetated_percentage":3.714728,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317","bbox":[147.0447745,71.0904748,150.196858,72.0876178],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R60m/T55WEV_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R60m/T55WEV_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.0447745,71.1147861],[147.1430576,71.1858658],[147.3347997,71.3224894],[147.5290457,71.4589168],[147.7256634,71.5951974],[147.9251834,71.7312914],[148.1276863,71.8671899],[148.3331336,72.0028979],[148.4632127,72.0876178],[150.196858,72.073449],[150.0362417,71.0904748],[147.0447745,71.1147861]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WEV","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WEV_N05.11","eo:cloud_cover":4.320446,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":28.570759,"s2:mean_solar_zenith":50.436239013637,"s2:mean_solar_azimuth":178.719528383963,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.556214,"s2:vegetation_percentage":43.16763,"s2:thin_cirrus_percentage":0.006602,"s2:cloud_shadow_percentage":6.721912,"s2:nodata_pixel_percentage":24.21111,"s2:unclassified_percentage":0.254749,"s2:not_vegetated_percentage":16.408287,"s2:degraded_msi_data_percentage":0.0097,"s2:high_proba_clouds_percentage":2.393112,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":1.920732,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317","bbox":[146.9994471,70.1948429,150.049855,71.2014965],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R60m/T55WEU_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R60m/T55WEU_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.9994471,71.0820047],[147.1430576,71.1858658],[147.1649942,71.2014965],[150.049855,71.1780394],[149.9040632,70.1948429],[146.9994705,70.2183208],[146.9994471,71.0820047]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WEU","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WEU_N05.11","eo:cloud_cover":15.072462,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":13.500412,"s2:mean_solar_zenith":49.5401095399085,"s2:mean_solar_azimuth":178.688054056801,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001239,"s2:vegetation_percentage":47.441328,"s2:thin_cirrus_percentage":0.028125,"s2:cloud_shadow_percentage":13.83779,"s2:nodata_pixel_percentage":0.388642,"s2:unclassified_percentage":0.420075,"s2:not_vegetated_percentage":9.726688,"s2:degraded_msi_data_percentage":0.0204,"s2:high_proba_clouds_percentage":8.549342,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":6.494995,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"collections":["sentinel-2-l2a"],"token":"next:sentinel-2-l2a:S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '131723' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 13:05:23 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T130522Z-167d46d96d844wzkhC1DEN8g9s0000000s500000000038c1 status: code: 200 message: OK - request: body: '{"collections": ["sentinel-2-l2a"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '35' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716","bbox":[118.2169585,42.492896,118.5443546,43.3462],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_AOT_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R60m/T50TPN_20250717T031151_B01_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B02_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B03_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B04_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B05_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B06_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B07_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B08_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R60m/T50TPN_20250717T031151_B09_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B11_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B12_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B8A_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_SCL_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_WVP_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_TCI_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/DATASTRIP/DS_2APS_20250717T060716_S20250717T031154/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.5443546,43.3410102],[118.5336127,43.313588],[118.4767986,43.1679071],[118.4200672,43.0223138],[118.363583,42.8767423],[118.3076044,42.7309403],[118.2514322,42.5851422],[118.2169585,42.492896],[118.2338121,43.3462],[118.5443546,43.3410102]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:11:51.024000Z","platform":"Sentinel-2A","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TPN","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T060716_A052582_T50TPN_N05.11","eo:cloud_cover":37.504357,"s2:datatake_id":"GS2A_20250717T031151_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T060716_S20250717T031154_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T06:07:16.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.005036,"s2:mean_solar_zenith":24.4791112148997,"s2:mean_solar_azimuth":148.082651359385,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":42.258921,"s2:thin_cirrus_percentage":7.103997,"s2:cloud_shadow_percentage":11.257639,"s2:nodata_pixel_percentage":90.118074,"s2:unclassified_percentage":0.714036,"s2:not_vegetated_percentage":8.081225,"s2:degraded_msi_data_percentage":0.0041,"s2:high_proba_clouds_percentage":17.202029,"s2:reflectance_conversion_factor":0.96769091883615,"s2:medium_proba_clouds_percentage":13.198331,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716","bbox":[115.0575906,44.1468602,115.8719187,45.1480732],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_AOT_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R60m/T50TLQ_20250717T031151_B01_60m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B02_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B03_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B04_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B05_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B06_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B07_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B08_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R60m/T50TLQ_20250717T031151_B09_60m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B11_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B12_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B8A_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_SCL_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_WVP_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_TCI_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/DATASTRIP/DS_2APS_20250717T060716_S20250717T031154/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.0575906,44.1468602],[115.1011869,44.2782072],[115.1502472,44.4250039],[115.1989562,44.5720106],[115.2484172,44.7188577],[115.2981315,44.865624],[115.3479419,45.0123669],[115.3916184,45.1406223],[115.8525926,45.1480732],[115.8719187,44.1597966],[115.0575906,44.1468602]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:11:51.024000Z","platform":"Sentinel-2A","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TLQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T060716_A052582_T50TLQ_N05.11","eo:cloud_cover":72.285634,"s2:datatake_id":"GS2A_20250717T031151_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T060716_S20250717T031154_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T06:07:16.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.001972,"s2:mean_solar_zenith":27.5224023843446,"s2:mean_solar_azimuth":142.894627902949,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":5.61901,"s2:thin_cirrus_percentage":18.582772,"s2:cloud_shadow_percentage":1.436035,"s2:nodata_pixel_percentage":53.895164,"s2:unclassified_percentage":0.504762,"s2:not_vegetated_percentage":20.151974,"s2:degraded_msi_data_percentage":0.0243,"s2:high_proba_clouds_percentage":25.602505,"s2:reflectance_conversion_factor":0.96769091883615,"s2:medium_proba_clouds_percentage":28.100359,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716","bbox":[115.8880749,35.834919,115.9908287,36.1401671],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_AOT_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R60m/T50SME_20250717T031151_B01_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B02_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B03_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B04_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B05_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B06_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B07_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B08_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R60m/T50SME_20250717T031151_B09_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B11_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B12_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B8A_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_SCL_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_WVP_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_TCI_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/DATASTRIP/DS_2APS_20250717T060716_S20250717T031154/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.9908287,36.1401671],[115.9438729,35.9950224],[115.8965727,35.848305],[115.892273,35.834919],[115.8880749,36.1397366],[115.9908287,36.1401671]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:11:51.024000Z","platform":"Sentinel-2A","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SME","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T060716_A052582_T50SME_N05.11","eo:cloud_cover":47.183838,"s2:datatake_id":"GS2A_20250717T031151_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T060716_S20250717T031154_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T06:07:16.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.101275,"s2:mean_solar_zenith":19.8235202933671,"s2:mean_solar_azimuth":132.817782085647,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":43.840736,"s2:thin_cirrus_percentage":15.224913,"s2:cloud_shadow_percentage":0.102303,"s2:nodata_pixel_percentage":98.709226,"s2:unclassified_percentage":3.013829,"s2:not_vegetated_percentage":5.741826,"s2:degraded_msi_data_percentage":0.0021,"s2:high_proba_clouds_percentage":16.757917,"s2:reflectance_conversion_factor":0.96769091883615,"s2:medium_proba_clouds_percentage":15.201008,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712","bbox":[128.9996085,62.1408465,129.8006331,62.7419066],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R60m/T52VEQ_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R60m/T52VEQ_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9996085,62.7419066],[129.3348229,62.6719642],[129.3491627,62.6689494],[129.348033,62.6677051],[129.3528745,62.6666135],[129.352699,62.6664204],[129.4534519,62.6439367],[129.8006331,62.565659],[129.6739234,62.4289043],[129.5469863,62.2900438],[129.4212215,62.151078],[129.4120261,62.1408465],[128.9996163,62.1439815],[128.9996085,62.7419066]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VEQ_N05.11","eo:cloud_cover":0.000763,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.179538,"s2:mean_solar_zenith":41.555142486688,"s2:mean_solar_azimuth":174.585341968684,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.208325,"s2:thin_cirrus_percentage":0.000699,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":84.345657,"s2:unclassified_percentage":0.07844,"s2:not_vegetated_percentage":0.532063,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.000064,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712","bbox":[128.9996152,61.6772872,129.490866,62.2317701],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R60m/T52VEP_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R60m/T52VEP_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.490866,62.2280327],[129.4212215,62.151078],[129.2962974,62.0120782],[129.1720438,61.8729258],[129.0490893,61.7335802],[128.999622,61.6772872],[128.9996152,62.2317701],[129.490866,62.2280327]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEP","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VEP_N05.11","eo:cloud_cover":0.000152,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.205156,"s2:mean_solar_zenith":40.6603597363943,"s2:mean_solar_azimuth":174.526032947034,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":98.683,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":93.438905,"s2:unclassified_percentage":0.135321,"s2:not_vegetated_percentage":0.975464,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.000152,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712","bbox":[127.0165743,63.0279332,127.5170036,63.1171334],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R60m/T52VDR_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R60m/T52VDR_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0165743,63.1171334],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.5170036,63.0310476],[127.0228562,63.0279332],[127.0165743,63.1171334]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDR","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDR_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.089908,"s2:mean_solar_zenith":42.5550553789093,"s2:mean_solar_azimuth":171.901675873215,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.055481,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.977798,"s2:unclassified_percentage":0.072705,"s2:not_vegetated_percentage":0.779959,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712","bbox":[127.0168934,62.1306897,129.1908025,63.1157098],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R60m/T52VDQ_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R60m/T52VDQ_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0250686,63.1157098],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.5863074,63.0188193],[127.5853142,63.0176504],[127.5853219,63.017649],[127.5852843,63.0176048],[127.9988353,62.940722],[127.9988523,62.9407417],[127.998859,62.9407404],[127.9989099,62.9407993],[127.9990872,62.9407663],[127.9991731,62.940866],[128.0030855,62.9401388],[128.0032019,62.9402737],[128.0034798,62.9402222],[128.0040857,62.9409228],[128.4608686,62.8531384],[128.4657378,62.8521987],[128.4646482,62.8509597],[128.8780099,62.7661366],[128.8781506,62.766294],[128.8783839,62.7662462],[128.8784644,62.7663364],[128.8824752,62.765515],[128.8827621,62.7658365],[128.882924,62.7658034],[128.8829464,62.7658285],[128.8833939,62.7657373],[128.8837086,62.7660891],[129.1908025,62.702014],[129.1872239,62.143855],[127.0815883,62.1306897],[127.0168934,63.1156582],[127.0250686,63.1157098]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDQ_N05.11","eo:cloud_cover":5.201023,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.444513,"s2:mean_solar_zenith":41.660975876224,"s2:mean_solar_azimuth":171.880878712841,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":79.42512,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":6.495123,"s2:nodata_pixel_percentage":21.144556,"s2:unclassified_percentage":0.661313,"s2:not_vegetated_percentage":7.766136,"s2:degraded_msi_data_percentage":0.0187,"s2:high_proba_clouds_percentage":1.77157,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":3.429453,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712","bbox":[127.0760204,61.2345813,129.1877677,62.231643],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R60m/T52VDP_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R60m/T52VDP_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.3432582,61.2345813],[127.1337622,61.2777318],[127.0760204,62.2184291],[129.1877677,62.231643],[129.1857101,61.8882308],[129.1720438,61.8729258],[129.0490893,61.7335802],[128.9266298,61.5942232],[128.8056844,61.4546144],[128.6854216,61.3149099],[128.6232308,61.2425179],[127.3432582,61.2345813]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDP","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDP_N05.11","eo:cloud_cover":5.202496,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.858072,"s2:mean_solar_zenith":40.7667686010522,"s2:mean_solar_azimuth":171.854576639774,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":86.080956,"s2:thin_cirrus_percentage":0.000277,"s2:cloud_shadow_percentage":5.805069,"s2:nodata_pixel_percentage":9.062117,"s2:unclassified_percentage":0.581971,"s2:not_vegetated_percentage":1.446041,"s2:degraded_msi_data_percentage":0.0252,"s2:high_proba_clouds_percentage":1.739334,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":3.462885,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712","bbox":[127.1312482,61.0025097,128.6995513,61.3313238],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R60m/T52VDN_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R60m/T52VDN_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.4187135,61.0025097],[127.9690619,61.1041713],[127.9691274,61.1042502],[127.9686036,61.1043609],[127.9689712,61.1048051],[127.7134838,61.1582637],[127.5692104,61.1887463],[127.5690063,61.1884943],[127.5677994,61.1887468],[127.5676201,61.1885253],[127.5669824,61.1886589],[127.566871,61.1885231],[127.133769,61.2777304],[127.1312482,61.3215913],[128.6995513,61.3313238],[128.6854216,61.3149099],[128.5653652,61.1751607],[128.4464531,61.0352923],[128.4187135,61.0025097]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDN","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDN_N05.11","eo:cloud_cover":0.580258,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":12.036611,"s2:mean_solar_zenith":39.8729740524278,"s2:mean_solar_azimuth":171.822741890705,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.533697,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":1.129968,"s2:nodata_pixel_percentage":85.815692,"s2:unclassified_percentage":0.586644,"s2:not_vegetated_percentage":0.96022,"s2:degraded_msi_data_percentage":0.0198,"s2:high_proba_clouds_percentage":0.175081,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.405177,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712","bbox":[124.9899031,62.9866068,127.2172106,63.4248872],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R60m/T52VCR_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R60m/T52VCR_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.9899031,63.4248872],[125.2932314,63.3847438],[125.2932886,63.3848182],[125.2979312,63.3841971],[125.2981631,63.384498],[125.2989197,63.3843977],[125.2995225,63.3851818],[125.3895905,63.372172],[125.632161,63.3370397],[125.6340874,63.3367593],[125.7889128,63.314125],[125.7886802,63.3138295],[125.7887275,63.3138223],[125.7877109,63.3125302],[125.7877482,63.3125246],[125.7876699,63.3124252],[126.2195538,63.2478247],[126.2196728,63.2479728],[126.2197034,63.2479682],[126.2197423,63.2480168],[126.2246919,63.2472743],[126.2254384,63.2482054],[126.3050526,63.2354271],[126.3824637,63.2229757],[126.6983208,63.1720815],[126.6971974,63.1707085],[126.697223,63.1707043],[126.6971894,63.1706633],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.2137791,63.08455],[127.2172106,63.0305154],[125.0515033,62.9866068],[124.9899031,63.4248872]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCR","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCR_N05.11","eo:cloud_cover":8.21901,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.656129,"s2:mean_solar_zenith":42.6743589294175,"s2:mean_solar_azimuth":169.168645103758,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":82.176405,"s2:thin_cirrus_percentage":7.90844,"s2:cloud_shadow_percentage":0.498461,"s2:nodata_pixel_percentage":74.510235,"s2:unclassified_percentage":0.358015,"s2:not_vegetated_percentage":8.088169,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.049592,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.260978,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712","bbox":[125.0396236,62.0909077,127.2701768,63.1145955],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R60m/T52VCQ_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R60m/T52VCQ_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0317166,63.1145955],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.2138297,63.0845411],[127.2701768,62.1331753],[125.1685297,62.0909077],[125.0396236,63.0741757],[127.0317166,63.1145955]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCQ_N05.11","eo:cloud_cover":3.044319,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.262499,"s2:mean_solar_zenith":41.7812611954988,"s2:mean_solar_azimuth":169.186086335173,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":87.450129,"s2:thin_cirrus_percentage":0.000076,"s2:cloud_shadow_percentage":4.792491,"s2:nodata_pixel_percentage":0.1421,"s2:unclassified_percentage":0.395385,"s2:not_vegetated_percentage":4.05145,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.876345,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":2.167897,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712","bbox":[125.1574343,61.2394793,127.3194781,62.2209238],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R60m/T52VCP_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R60m/T52VCP_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.3194781,61.2394793],[127.1231788,61.2799116],[127.1232847,61.2800426],[127.1219084,61.2803084],[127.1220094,61.2804344],[127.1199989,61.2808238],[127.1202491,61.2811357],[126.7235626,61.3576592],[126.7234342,61.357496],[126.7230399,61.3575721],[126.7228081,61.3572812],[126.2803626,61.4399715],[126.2805356,61.4401926],[126.2800414,61.4402802],[126.28051,61.4408843],[125.8827905,61.5113669],[125.882757,61.511323],[125.8786748,61.5120461],[125.8781038,61.5113084],[125.6894189,61.5430415],[125.4306695,61.5865714],[125.4311657,61.5872339],[125.4264335,61.587998],[125.4268802,61.5885931],[125.2257255,61.6211511],[125.1574343,62.1785001],[127.2651556,62.2209238],[127.3194781,61.2394793]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCP","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCP_N05.11","eo:cloud_cover":0.378669,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.324839,"s2:mean_solar_zenith":40.8881029281013,"s2:mean_solar_azimuth":169.192930712771,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.305993,"s2:thin_cirrus_percentage":0.003307,"s2:cloud_shadow_percentage":0.609475,"s2:nodata_pixel_percentage":22.153567,"s2:unclassified_percentage":0.245625,"s2:not_vegetated_percentage":5.071058,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.08969,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.285671,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712","bbox":[126.9371671,61.2395079,127.3193394,61.3239944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R60m/T52VCN_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R60m/T52VCN_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.3193394,61.2395079],[127.1231788,61.2799116],[127.1232847,61.2800426],[127.1219084,61.2803084],[127.1220094,61.2804344],[127.1199989,61.2808238],[127.1202491,61.2811357],[126.9371671,61.3164534],[127.314961,61.3239944],[127.3193394,61.2395079]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCN","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCN_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.0,"s2:mean_solar_zenith":39.99542120153,"s2:mean_solar_azimuth":169.189539087694,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.996364,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.178582,"s2:unclassified_percentage":0.003635,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712","bbox":[124.9763539,62.9810794,127.1580834,63.4229999],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_AOT_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R60m/T51VXL_20250717T031031_B01_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B02_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B03_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B04_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B05_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B06_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B07_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B08_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R60m/T51VXL_20250717T031031_B09_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B11_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B12_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B8A_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_SCL_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_WVP_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_TCI_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.0041644,63.4229999],[125.2932314,63.3847438],[125.2932886,63.3848182],[125.2979312,63.3841971],[125.2981631,63.384498],[125.2989197,63.3843977],[125.2995225,63.3851818],[125.3895905,63.372172],[125.632161,63.3370397],[125.6340874,63.3367593],[125.7889128,63.314125],[125.7886802,63.3138295],[125.7887275,63.3138223],[125.7877109,63.3125302],[125.7877482,63.3125246],[125.7876699,63.3124252],[126.2195538,63.2478247],[126.2196728,63.2479728],[126.2197034,63.2479682],[126.2197423,63.2480168],[126.2246919,63.2472743],[126.2254384,63.2482054],[126.3050526,63.2354271],[126.3824637,63.2229757],[126.6983208,63.1720815],[126.6971974,63.1707085],[126.697223,63.1707043],[126.6971894,63.1706633],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.1580834,63.0943772],[127.141383,62.9810794],[124.9763539,63.0279443],[125.0041644,63.4229999]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXL","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VXL_N05.11","eo:cloud_cover":8.247952,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.686861,"s2:mean_solar_zenith":42.6678613842167,"s2:mean_solar_azimuth":169.206249487435,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":82.077497,"s2:thin_cirrus_percentage":7.931365,"s2:cloud_shadow_percentage":0.614416,"s2:nodata_pixel_percentage":73.752838,"s2:unclassified_percentage":0.342299,"s2:not_vegetated_percentage":8.025804,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.05055,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.266037,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712","bbox":[124.9176451,62.0855865,127.1538391,63.1156693],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_AOT_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R60m/T51VXK_20250717T031031_B01_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B02_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B03_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B04_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B05_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B06_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B07_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B08_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R60m/T51VXK_20250717T031031_B09_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B11_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B12_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B8A_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_SCL_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_WVP_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_TCI_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.9823142,63.1156693],[127.1538391,63.0686274],[127.0186771,62.0855865],[124.9176451,62.1307003],[124.9823142,63.1156693]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXK","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VXK_N05.11","eo:cloud_cover":2.430609,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.282683,"s2:mean_solar_zenith":41.7905952014376,"s2:mean_solar_azimuth":168.972251447119,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":88.523567,"s2:thin_cirrus_percentage":0.00207,"s2:cloud_shadow_percentage":3.906056,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.334412,"s2:not_vegetated_percentage":4.519023,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.6896,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":1.738939,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712","bbox":[124.8897369,61.3196438,127.0303111,62.2184397],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_AOT_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R60m/T51VXJ_20250717T031031_B01_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B02_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B03_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B04_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B05_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B06_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B07_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B08_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R60m/T51VXJ_20250717T031031_B09_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B11_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B12_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B8A_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_SCL_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_WVP_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_TCI_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.9206288,61.3196438],[126.7235626,61.3576592],[126.7234342,61.357496],[126.7230399,61.3575721],[126.7228081,61.3572812],[126.2803626,61.4399715],[126.2805356,61.4401926],[126.2800414,61.4402802],[126.28051,61.4408843],[125.8827905,61.5113669],[125.882757,61.511323],[125.8786748,61.5120461],[125.8781038,61.5113084],[125.6894189,61.5430415],[125.4306695,61.5865714],[125.4311657,61.5872339],[125.4264335,61.587998],[125.4268802,61.5885931],[125.0213233,61.6542347],[125.0206154,61.6532697],[125.0205831,61.6532264],[124.8897369,61.6728839],[124.9232108,62.2184397],[127.0303111,62.1731593],[126.9206288,61.3196438]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXJ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VXJ_N05.11","eo:cloud_cover":0.09484,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.390283,"s2:mean_solar_zenith":40.9134462760282,"s2:mean_solar_azimuth":168.736071092909,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.095291,"s2:thin_cirrus_percentage":0.002062,"s2:cloud_shadow_percentage":0.189878,"s2:nodata_pixel_percentage":29.218137,"s2:unclassified_percentage":0.256012,"s2:not_vegetated_percentage":5.894198,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.020653,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.072125,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712","bbox":[123.9805079,63.0251146,125.1982436,63.512869],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R60m/T51VWL_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R60m/T51VWL_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.9805079,63.0342255],[124.0175404,63.085966],[124.1204767,63.2286379],[124.224467,63.3711768],[124.32843,63.512869],[124.5210703,63.4881189],[124.6346038,63.4734666],[124.8427827,63.4461241],[124.8426612,63.4459627],[124.843131,63.4458996],[124.8420428,63.4444555],[125.1982436,63.3973148],[125.1694829,63.0251146],[123.9805079,63.0342255]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWL","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VWL_N05.11","eo:cloud_cover":1.018668,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":2.220357,"s2:mean_solar_zenith":42.8838893759669,"s2:mean_solar_azimuth":166.489936893053,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":72.827864,"s2:thin_cirrus_percentage":0.982256,"s2:cloud_shadow_percentage":0.032739,"s2:nodata_pixel_percentage":79.224998,"s2:unclassified_percentage":0.36414,"s2:not_vegetated_percentage":23.532301,"s2:degraded_msi_data_percentage":0.0254,"s2:high_proba_clouds_percentage":0.00452,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.031893,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712","bbox":[123.354832,62.1279766,125.1760247,63.1215163],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R60m/T51VWK_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R60m/T51VWK_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.354832,62.1412813],[123.4144574,62.228337],[123.5131015,62.3715201],[123.6127497,62.51456],[123.7130394,62.6574937],[123.8139747,62.8003313],[123.9153436,62.9431804],[124.0175404,63.085966],[124.0431896,63.1215163],[125.1760247,63.1128289],[125.1050472,62.1279766],[123.354832,62.1412813]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWK","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VWK_N05.11","eo:cloud_cover":7.135528,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.506344,"s2:mean_solar_zenith":42.0087072062846,"s2:mean_solar_azimuth":166.295937583059,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.679336,"s2:thin_cirrus_percentage":5.686684,"s2:cloud_shadow_percentage":2.243425,"s2:nodata_pixel_percentage":32.554737,"s2:unclassified_percentage":0.489599,"s2:not_vegetated_percentage":5.940771,"s2:degraded_msi_data_percentage":0.0169,"s2:high_proba_clouds_percentage":0.370124,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":1.07872,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712","bbox":[123.1985668,61.6459062,125.1111559,62.2286126],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R60m/T51VWJ_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R60m/T51VWJ_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.0727792,61.6459062],[125.0213233,61.6542347],[125.0206154,61.6532697],[125.0205831,61.6532264],[124.5618784,61.7221392],[124.5626009,61.7231425],[124.5564762,61.7240349],[124.5565079,61.7240783],[124.5563956,61.7240948],[124.5565044,61.7242461],[124.1371289,61.7858646],[124.1365717,61.7850755],[123.6592948,61.8481846],[123.660187,61.8494696],[123.3815512,61.8856612],[123.1985668,61.909715],[123.2200843,61.9419286],[123.3164139,62.0851892],[123.4144574,62.228337],[123.4146472,62.2286126],[125.1111559,62.2157059],[125.0727792,61.6459062]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWJ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VWJ_N05.11","eo:cloud_cover":17.276834,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.309421,"s2:mean_solar_zenith":41.1337724557747,"s2:mean_solar_azimuth":166.094856835182,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":78.719282,"s2:thin_cirrus_percentage":15.268284,"s2:cloud_shadow_percentage":1.109277,"s2:nodata_pixel_percentage":60.790163,"s2:unclassified_percentage":0.225751,"s2:not_vegetated_percentage":2.317589,"s2:degraded_msi_data_percentage":0.0102,"s2:high_proba_clouds_percentage":0.228628,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":1.779921,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500","bbox":[158.999207,76.4849983,160.3514349,76.9244244],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R60m/T57XWF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R60m/T57XWF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[158.999207,76.9244244],[159.0277214,76.9172337],[159.0284819,76.9173979],[159.0286906,76.9173453],[159.0290513,76.9174232],[159.0291725,76.9173927],[159.0304404,76.9176667],[159.0305714,76.9176338],[159.0316672,76.9178705],[159.0319787,76.9177922],[159.0327171,76.9179518],[159.032787,76.9179342],[159.0333799,76.9180625],[159.0336093,76.9180049],[159.034998,76.9183053],[159.0353471,76.9182178],[159.0360053,76.9183601],[159.036266,76.9182948],[159.0372549,76.9185087],[159.2809197,76.8551048],[159.7206787,76.7400003],[159.7134913,76.7384641],[160.3514349,76.5588516],[160.0037225,76.4849983],[158.9992329,76.493385],[158.999207,76.9244244]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XWF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XWF_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.998295,"s2:mean_solar_zenith":57.0125193903975,"s2:mean_solar_azimuth":206.318532794304,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001708,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":92.03369,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.019,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500","bbox":[158.999228,76.2654779,160.3514349,76.5810287],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R60m/T57XWE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R60m/T57XWE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[160.3115986,76.5700674],[160.3514349,76.5588516],[159.8829236,76.4593409],[159.4120142,76.3571229],[158.9992446,76.2654779],[158.999228,76.5810287],[160.3115986,76.5700674]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XWE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XWE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":100.0,"s2:mean_solar_zenith":56.2005204288736,"s2:mean_solar_azimuth":206.477256331399,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":94.691265,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500","bbox":[154.729453,77.3578558,157.1147583,77.8563411],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R60m/T57XVG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R60m/T57XVG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[154.729453,77.8563411],[154.8202751,77.8399709],[154.8207919,77.8400908],[154.8208739,77.8400761],[154.8230835,77.8405892],[154.8243286,77.8403644],[154.8293017,77.8415197],[155.2337823,77.7636555],[155.6282619,77.6875444],[155.6194528,77.6855303],[156.3071352,77.5465017],[156.3073866,77.5465585],[156.307522,77.5465311],[156.3087991,77.5468196],[156.309347,77.5467088],[156.3159533,77.5482018],[157.0648,77.3881022],[157.0565254,77.3862579],[157.1147583,77.3731023],[154.9021672,77.3578558],[154.729453,77.8563411]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVG_N05.11","eo:cloud_cover":0.341631,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.655706,"s2:mean_solar_zenith":57.4702757300568,"s2:mean_solar_azimuth":201.548329525018,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.00266,"s2:thin_cirrus_percentage":0.027108,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":87.528163,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0006,"s2:high_proba_clouds_percentage":0.005161,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.309362,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500","bbox":[154.8738859,76.4642293,159.3841769,77.4586326],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R60m/T57XVF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R60m/T57XVF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.7349029,77.4586326],[157.0648,77.3881022],[157.0565254,77.3862579],[157.7022397,77.2403818],[157.702601,77.2404615],[157.7027581,77.240426],[157.7047207,77.2408589],[157.7054919,77.2406847],[157.7066273,77.2409352],[157.7066411,77.2409321],[157.7066482,77.2409337],[157.7069247,77.2408713],[157.7113152,77.2418411],[157.751275,77.2323977],[158.3681624,77.0864368],[158.4215766,77.0737874],[158.4137157,77.0720741],[159.0277214,76.9172337],[159.0284819,76.9173979],[159.0286906,76.9173453],[159.0290513,76.9174232],[159.0291725,76.9173927],[159.0304404,76.9176667],[159.0305714,76.9176338],[159.0316672,76.9178705],[159.0319787,76.9177922],[159.0327171,76.9179518],[159.032787,76.9179342],[159.0333799,76.9180625],[159.0336093,76.9180049],[159.034998,76.9183053],[159.0353471,76.9182178],[159.0360053,76.9183601],[159.036266,76.9182948],[159.0372549,76.9185087],[159.2809197,76.8551048],[159.3841769,76.8280778],[159.3743463,76.4931072],[155.1684626,76.4642293],[154.8738859,77.4458044],[156.7349029,77.4586326]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVF_N05.11","eo:cloud_cover":0.183424,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.799508,"s2:mean_solar_zenith":56.6528706201607,"s2:mean_solar_azimuth":201.956721906669,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000284,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.012645,"s2:nodata_pixel_percentage":19.528614,"s2:unclassified_percentage":0.000025,"s2:not_vegetated_percentage":0.003999,"s2:degraded_msi_data_percentage":0.0129,"s2:high_proba_clouds_percentage":0.050012,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.133412,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500","bbox":[155.1439841,75.5697411,159.376745,76.580749],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R60m/T57XVE_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R60m/T57XVE_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[159.3707743,76.3479666],[158.9476216,76.2540163],[158.4897237,76.1501067],[158.0387006,76.0453667],[157.5940915,75.9398774],[157.1558349,75.8336193],[156.7242541,75.7265717],[156.2992958,75.618772],[156.1292961,75.5747183],[155.4016102,75.5697411],[155.1439841,76.5516761],[159.376745,76.580749],[159.3707743,76.3479666]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.999988,"s2:mean_solar_zenith":55.8369908790616,"s2:mean_solar_azimuth":202.358804292345,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":5e-6,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":31.199139,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":5e-6,"s2:degraded_msi_data_percentage":0.0254,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500","bbox":[155.3801086,75.3937971,156.4805352,75.6647472],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R60m/T57XVD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R60m/T57XVD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.4805352,75.6647472],[156.2992958,75.618772],[155.8804421,75.5102304],[155.4676367,75.400987],[155.4410269,75.3937971],[155.3801086,75.6572177],[156.4805352,75.6647472]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVD_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":100.0,"s2:mean_solar_zenith":55.0232203762536,"s2:mean_solar_azimuth":202.757833932918,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":96.295464,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500","bbox":[152.999126,77.3539538,157.1995181,78.1584369],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R60m/T56XNM_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R60m/T56XNM_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[152.999126,78.1584369],[153.2137934,78.1240967],[153.2164319,78.1247293],[153.2181228,78.1244585],[153.2226392,78.1255419],[153.6076847,78.0591084],[154.0880985,77.9760879],[154.0781257,77.9737392],[154.8202751,77.8399709],[154.8207919,77.8400908],[154.8208739,77.8400761],[154.8230835,77.8405892],[154.8243286,77.8403644],[154.8293017,77.8415197],[155.2337823,77.7636555],[155.6282619,77.6875444],[155.6194528,77.6855303],[156.3071352,77.5465017],[156.3073866,77.5465585],[156.307522,77.5465311],[156.3087991,77.5468196],[156.309347,77.5467088],[156.3159533,77.5482018],[157.0648,77.3881022],[157.0565254,77.3862579],[157.1995181,77.3539538],[152.9991794,77.3891507],[152.999126,78.1584369]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNM_N05.11","eo:cloud_cover":5.330747,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":94.668388,"s2:mean_solar_zenith":57.340280258578,"s2:mean_solar_azimuth":199.653776562899,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000865,"s2:thin_cirrus_percentage":2.421382,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":62.79549,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0251,"s2:high_proba_clouds_percentage":0.541456,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.36791,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500","bbox":[152.999228,75.571101,157.2301741,76.5810287],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R60m/T56XNK_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R60m/T56XNK_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[157.0152107,75.7987394],[156.7242541,75.7265717],[156.2992958,75.618772],[156.1153371,75.571101],[152.9992797,75.5970173],[152.999228,76.5810287],[157.2301741,76.5456907],[157.0152107,75.7987394]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNK_N05.11","eo:cloud_cover":33.50164,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":66.49825,"s2:mean_solar_zenith":55.6396491325,"s2:mean_solar_azimuth":199.832394104259,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000014,"s2:thin_cirrus_percentage":0.030269,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":2.534195,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000092,"s2:degraded_msi_data_percentage":0.0223,"s2:high_proba_clouds_percentage":24.216855,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.254517,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500","bbox":[152.9992754,74.7005381,156.4460123,75.6846675],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R60m/T56XNJ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R60m/T56XNJ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.4460123,75.6559898],[156.2992958,75.618772],[155.8804421,75.5102304],[155.4676367,75.400987],[155.0607457,75.2910453],[155.0597053,75.2907587],[155.0571479,75.2900682],[154.8086754,75.2215872],[154.6595007,75.180482],[154.6578474,75.1800178],[154.6559695,75.1795002],[154.637369,75.1742679],[154.2635992,75.0693229],[153.8728205,74.9574878],[153.4876079,74.8449646],[153.1077556,74.7318693],[153.0045456,74.7005381],[152.999321,74.7005814],[152.9992754,75.6846675],[156.4460123,75.6559898]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNJ_N05.11","eo:cloud_cover":70.339298,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":29.659665,"s2:mean_solar_zenith":54.7911516161212,"s2:mean_solar_azimuth":199.962093717898,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.127737,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":56.646645,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.001041,"s2:degraded_msi_data_percentage":0.0227,"s2:high_proba_clouds_percentage":60.172588,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.038975,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500","bbox":[152.9993171,74.698952,153.2907765,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R60m/T56XNH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R60m/T56XNH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.2907765,74.786361],[153.1077556,74.7318693],[152.9993208,74.698952],[152.9993171,74.7887762],[153.2907765,74.786361]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNH_N05.11","eo:cloud_cover":91.559899,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":8.429157,"s2:mean_solar_zenith":53.9446261366776,"s2:mean_solar_azimuth":200.114987193235,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.109418,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.666452,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.010942,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":68.745273,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":22.705208,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500","bbox":[150.9180636,78.2677006,152.2768507,78.4028043],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R60m/T56XMN_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R60m/T56XMN_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.9180636,78.2677006],[150.9973416,78.2879305],[151.4584651,78.4028043],[152.0501679,78.3119796],[152.2768507,78.2770951],[150.9180636,78.2677006]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMN_N05.11","eo:cloud_cover":98.9811,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.018898,"s2:mean_solar_zenith":57.9347833437519,"s2:mean_solar_azimuth":194.608044592398,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.390734,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":52.855265,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":46.125838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500","bbox":[148.785543,77.3578558,153.4242399,78.3609268],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R60m/T56XMM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R60m/T56XMM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.785543,77.694455],[148.7915312,77.6961872],[149.2156941,77.8158741],[149.6482867,77.9348992],[150.0892084,78.0532582],[150.5388616,78.1709369],[150.9973416,78.2879305],[151.2777707,78.3577902],[151.7312878,78.3609268],[152.0501679,78.3119796],[152.4104764,78.2565313],[152.4077242,78.2558588],[152.4080935,78.2557991],[152.4073844,78.2556261],[152.4076782,78.2555787],[152.4070375,78.2554222],[152.4070648,78.2554178],[152.4060861,78.2551787],[152.4060873,78.2551785],[152.4018478,78.2541446],[152.4019927,78.2541215],[152.4015927,78.2540239],[153.2137934,78.1240967],[153.2164319,78.1247293],[153.2181228,78.1244585],[153.2226392,78.1255419],[153.4242399,78.0907589],[153.4004489,77.3888525],[148.9021672,77.3578558],[148.785543,77.694455]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMM_N05.11","eo:cloud_cover":53.933001,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":46.066993,"s2:mean_solar_zenith":57.0791530126844,"s2:mean_solar_azimuth":194.974581699899,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":4e-6,"s2:thin_cirrus_percentage":0.964429,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":23.851644,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0112,"s2:high_proba_clouds_percentage":37.277386,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.691185,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500","bbox":[148.8738859,76.4642293,153.4032221,77.4770256],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R60m/T56XML_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R60m/T56XML_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.8738859,77.4458044],[153.4032221,77.4770256],[153.3743463,76.4931072],[149.1684626,76.4642293],[148.8738859,77.4458044]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XML","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XML_N05.11","eo:cloud_cover":53.365338,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":16.842276,"s2:mean_solar_zenith":56.2252079251133,"s2:mean_solar_azimuth":195.327958642391,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":29.711074,"s2:vegetation_percentage":0.00001,"s2:thin_cirrus_percentage":8.906405,"s2:cloud_shadow_percentage":0.073955,"s2:nodata_pixel_percentage":0.000017,"s2:unclassified_percentage":0.000524,"s2:not_vegetated_percentage":0.004741,"s2:degraded_msi_data_percentage":0.0244,"s2:high_proba_clouds_percentage":17.852481,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":26.606452,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500","bbox":[149.1439841,75.5697411,153.376745,76.580749],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R60m/T56XMK_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R60m/T56XMK_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.1439841,76.5516761],[153.376745,76.580749],[153.3515061,75.5967575],[149.4016102,75.5697411],[149.1439841,76.5516761]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMK_N05.11","eo:cloud_cover":45.38013,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":52.364403,"s2:mean_solar_zenith":55.3719755202348,"s2:mean_solar_azimuth":195.673002025668,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":1.971009,"s2:vegetation_percentage":0.000159,"s2:thin_cirrus_percentage":5.233015,"s2:cloud_shadow_percentage":0.283665,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.00003,"s2:not_vegetated_percentage":0.000601,"s2:degraded_msi_data_percentage":0.0026,"s2:high_proba_clouds_percentage":21.191287,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.95583,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500","bbox":[149.3801086,74.6749694,153.353612,75.684406],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R60m/T56XMJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R60m/T56XMJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.3336017,74.7991116],[153.1077556,74.7318693],[152.9963672,74.6980554],[149.6072622,74.6749694],[149.3801086,75.6572177],[153.353612,75.684406],[153.3336017,74.7991116]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMJ_N05.11","eo:cloud_cover":85.592216,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":13.543333,"s2:mean_solar_zenith":54.5200220153859,"s2:mean_solar_azimuth":196.01289650902,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.145424,"s2:vegetation_percentage":0.000017,"s2:thin_cirrus_percentage":1.460761,"s2:cloud_shadow_percentage":0.7084,"s2:nodata_pixel_percentage":0.474215,"s2:unclassified_percentage":0.005104,"s2:not_vegetated_percentage":0.005507,"s2:degraded_msi_data_percentage":0.0183,"s2:high_proba_clouds_percentage":67.295456,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":16.835994,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500","bbox":[149.5881136,73.7804829,153.2972396,74.7882853],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R60m/T56XMH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R60m/T56XMH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.2972396,74.7882853],[153.1077556,74.7318693],[152.733329,74.6182055],[152.364361,74.5038966],[152.0006473,74.3890213],[151.6423724,74.2735787],[151.2890793,74.1575707],[150.9406558,74.0410123],[150.5970299,73.923947],[150.2579129,73.8063941],[150.1921903,73.7832117],[149.7898569,73.7804829],[149.5881136,74.763009],[153.2972396,74.7882853]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMH_N05.11","eo:cloud_cover":99.362773,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.636787,"s2:mean_solar_zenith":53.6699179512728,"s2:mean_solar_azimuth":196.350226583669,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000036,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.212714,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":44.940388,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000404,"s2:degraded_msi_data_percentage":0.0241,"s2:high_proba_clouds_percentage":93.303627,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":5.846434,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500","bbox":[149.7728973,73.6488294,150.448892,73.8725959],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R60m/T56XMG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R60m/T56XMG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.448892,73.8725959],[150.2579129,73.8063941],[149.9231974,73.6883294],[149.81311,73.6488294],[149.7728973,73.8680091],[150.448892,73.8725959]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMG_N05.11","eo:cloud_cover":99.953437,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.046564,"s2:mean_solar_zenith":52.8207046054607,"s2:mean_solar_azimuth":196.687646798262,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":97.905159,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":98.446125,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.507312,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500","bbox":[150.8601802,78.2447576,151.8739788,78.4028043],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R60m/T55XEH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R60m/T55XEH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.8601802,78.2529301],[150.9973416,78.2879305],[151.4584651,78.4028043],[151.8739788,78.3390241],[151.8321726,78.2447576],[150.8601802,78.2529301]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEH_N05.11","eo:cloud_cover":98.501015,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.498985,"s2:mean_solar_zenith":57.8666844216934,"s2:mean_solar_azimuth":193.082431081795,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.070586,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":45.901051,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":52.599967,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500","bbox":[147.7295877,77.3514755,151.8679037,78.3377171],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R60m/T55XEG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R60m/T55XEG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.7295877,77.3830302],[147.9673017,77.455002],[148.3756143,77.5758752],[148.7915312,77.6961872],[149.2156941,77.8158741],[149.6482867,77.9348992],[150.0892084,78.0532582],[150.5388616,78.1709369],[150.9973416,78.2879305],[151.1971937,78.3377171],[151.8679037,78.332076],[151.4952763,77.3514755],[147.7295877,77.3830302]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEG_N05.11","eo:cloud_cover":77.95974,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":22.04026,"s2:mean_solar_zenith":56.9884929302579,"s2:mean_solar_azimuth":193.066565610651,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.72874,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":51.733977,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0006,"s2:high_proba_clouds_percentage":60.839087,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":16.391915,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500","bbox":[146.999193,76.458284,151.5262788,77.4688195],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R60m/T55XEF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R60m/T55XEF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.999193,77.1566382],[147.1725997,77.2116075],[147.5662727,77.333584],[147.9673017,77.455002],[148.0139776,77.4688195],[151.5262788,77.4393779],[151.2033368,76.458284],[146.9992329,76.493385],[146.999193,77.1566382]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEF_N05.11","eo:cloud_cover":82.031554,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":10.689694,"s2:mean_solar_zenith":56.1114584570531,"s2:mean_solar_azimuth":193.082010454725,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":7.173916,"s2:vegetation_percentage":0.000031,"s2:thin_cirrus_percentage":4.543883,"s2:cloud_shadow_percentage":0.097317,"s2:nodata_pixel_percentage":3.864735,"s2:unclassified_percentage":0.000538,"s2:not_vegetated_percentage":0.00556,"s2:degraded_msi_data_percentage":0.0197,"s2:high_proba_clouds_percentage":52.378035,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.109643,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500","bbox":[146.999228,75.5641782,151.2301741,76.5810287],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R60m/T55XEE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R60m/T55XEE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.999228,76.5810287],[151.2301741,76.5456907],[150.9477068,75.5641782],[146.9992797,75.5970173],[146.999228,76.5810287]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEE_N05.11","eo:cloud_cover":53.384507,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":46.615151,"s2:mean_solar_zenith":55.2345549596294,"s2:mean_solar_azimuth":193.124143423144,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000093,"s2:thin_cirrus_percentage":4.994157,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000249,"s2:degraded_msi_data_percentage":0.0196,"s2:high_proba_clouds_percentage":39.077944,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.312408,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500","bbox":[146.9992754,74.6697452,150.9712829,75.6846675],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R60m/T55XED_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R60m/T55XED_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.9992754,75.6846675],[150.9712829,75.6516194],[150.7222017,74.6697452],[146.999321,74.7005814],[146.9992754,75.6846675]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XED","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XED_N05.11","eo:cloud_cover":77.311695,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":12.304876,"s2:mean_solar_zenith":54.3583376728985,"s2:mean_solar_azimuth":193.18952409454,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":2.859898,"s2:vegetation_percentage":0.440835,"s2:thin_cirrus_percentage":2.720784,"s2:cloud_shadow_percentage":1.480692,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":3.236721,"s2:not_vegetated_percentage":2.365284,"s2:degraded_msi_data_percentage":0.0013,"s2:high_proba_clouds_percentage":59.503609,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.087296,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500","bbox":[146.9993171,73.7783931,150.7431996,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R60m/T55XEC_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R60m/T55XEC_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.55186,73.9082891],[150.2579129,73.8063941],[150.1785294,73.7783931],[146.9993576,73.8046111],[146.9993171,74.7887762],[150.7431996,74.7577532],[150.55186,73.9082891]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEC_N05.11","eo:cloud_cover":68.469048,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":7.635746,"s2:mean_solar_zenith":53.4833641272104,"s2:mean_solar_azimuth":193.275554588597,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":23.895152,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":1.61995,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.685422,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.00006,"s2:degraded_msi_data_percentage":0.0197,"s2:high_proba_clouds_percentage":52.331609,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.517485,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951","bbox":[146.9993572,72.901175,149.0036291,73.8089506],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R60m/T55XEB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R60m/T55XEB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.9993572,73.8089506],[147.1427832,73.7794979],[147.1388486,73.7779517],[147.7229513,73.6506409],[147.7233951,73.650813],[147.7235094,73.6507881],[147.7236932,73.6508593],[147.7240475,73.6507822],[147.7243296,73.6508916],[147.7243504,73.6508871],[147.7247691,73.6510496],[147.7248505,73.6510319],[147.7255062,73.6512862],[147.7257039,73.6512433],[147.7261293,73.6514081],[147.7263864,73.6513524],[147.7267364,73.6514879],[147.7270351,73.6514232],[147.727791,73.651716],[147.7280459,73.6516608],[147.7281685,73.6517083],[148.1005415,73.5684062],[148.3843142,73.504544],[148.3808209,73.5032084],[149.0036291,73.3532031],[148.6905197,73.2352856],[148.3769724,73.1148966],[148.0677956,72.9940723],[147.8341147,72.901175],[146.9993903,72.9080271],[146.9993572,73.8089506]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XEB_N05.11","eo:cloud_cover":2.939822,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":97.059447,"s2:mean_solar_zenith":52.6086159254848,"s2:mean_solar_azimuth":193.380384898633,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000733,"s2:thin_cirrus_percentage":2.770614,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":67.427117,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0269,"s2:high_proba_clouds_percentage":0.010828,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.15838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500","bbox":[146.9993542,73.2165381,150.4241503,73.8922753],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R60m/T55XEB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R60m/T55XEB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.9964017,73.3707326],[148.0002195,73.3721947],[147.7680023,73.4239233],[147.412226,73.503572],[147.4092088,73.5024014],[147.0642351,73.5769222],[146.9993652,73.5909837],[146.9993542,73.8922753],[150.4241503,73.8640193],[150.2579129,73.8063941],[149.9231974,73.6883294],[149.5927626,73.5697675],[149.2665598,73.4507085],[148.9449355,73.3311567],[148.6417125,73.2165381],[148.2633675,73.3068357],[147.9964017,73.3707326]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEB_N05.11","eo:cloud_cover":30.561236,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":69.43807,"s2:mean_solar_zenith":52.6086159254848,"s2:mean_solar_azimuth":193.380384898633,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":8.89519,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":59.988683,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000697,"s2:degraded_msi_data_percentage":0.0254,"s2:high_proba_clouds_percentage":16.320927,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":5.34512,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951","bbox":[146.9993873,72.5599198,148.0501794,72.9956989],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R60m/T55XEA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R60m/T55XEA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.0501794,72.9870692],[147.7628731,72.8728537],[147.4620504,72.751222],[147.1650834,72.6291719],[146.9994017,72.5599198],[146.9993873,72.9956989],[148.0501794,72.9870692]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XEA_N05.11","eo:cloud_cover":12.590303,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":74.539685,"s2:mean_solar_zenith":51.7346580706931,"s2:mean_solar_azimuth":193.502587708943,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":12.870012,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":11.001419,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":93.117845,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.228802,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.360082,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500","bbox":[144.9727037,76.4766174,147.3974775,77.2812842],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R60m/T55XDF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R60m/T55XDF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[144.9727037,76.4766174],[145.3052262,76.5938859],[145.6660787,76.7184031],[146.0332306,76.8424469],[146.4064577,76.966006],[146.7860659,77.0890777],[147.1725997,77.2116075],[147.3974775,77.2812842],[147.3743463,76.4931072],[144.9727037,76.4766174]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDF_N05.11","eo:cloud_cover":97.803628,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.196238,"s2:mean_solar_zenith":55.9469383487191,"s2:mean_solar_azimuth":188.652071215512,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.00006,"s2:thin_cirrus_percentage":0.096082,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":77.772284,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000075,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":91.611886,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.09566,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500","bbox":[143.3258015,75.5697411,147.376745,76.580749],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R60m/T55XDE_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R60m/T55XDE_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.3258015,75.8586838],[143.5955298,75.9644114],[143.9254381,76.0911774],[144.2610233,76.2175534],[144.6027971,76.3434738],[144.9508318,76.4689039],[145.2260891,76.5659771],[147.376745,76.580749],[147.3515061,75.5967575],[143.4016102,75.5697411],[143.3258015,75.8586838]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDE_N05.11","eo:cloud_cover":90.807956,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.909883,"s2:mean_solar_zenith":55.0674685642311,"s2:mean_solar_azimuth":188.93362573964,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.239319,"s2:vegetation_percentage":1.220182,"s2:thin_cirrus_percentage":0.605449,"s2:cloud_shadow_percentage":0.091088,"s2:nodata_pixel_percentage":17.870143,"s2:unclassified_percentage":0.886826,"s2:not_vegetated_percentage":3.844749,"s2:degraded_msi_data_percentage":0.0112,"s2:high_proba_clouds_percentage":81.95383,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.248676,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500","bbox":[143.3801086,74.6749694,147.353612,75.684406],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R60m/T55XDD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R60m/T55XDD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.3801086,75.6572177],[147.353612,75.684406],[147.3313691,74.7003374],[143.6072622,74.6749694],[143.3801086,75.6572177]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDD_N05.11","eo:cloud_cover":58.769011,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":6.432378,"s2:mean_solar_zenith":54.188595245275,"s2:mean_solar_azimuth":189.20742134287,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":18.296257,"s2:vegetation_percentage":4.808707,"s2:thin_cirrus_percentage":15.144363,"s2:cloud_shadow_percentage":0.7723,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.309027,"s2:not_vegetated_percentage":9.612324,"s2:degraded_msi_data_percentage":0.0249,"s2:high_proba_clouds_percentage":32.176167,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.448479,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951","bbox":[143.6576412,73.7804829,147.0309408,74.4243973],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R60m/T55XDC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R60m/T55XDC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.6576412,74.4243973],[143.8425029,74.3949498],[143.8427858,74.3950704],[143.8428508,74.3950601],[143.8432757,74.3952413],[143.8433346,74.3952319],[143.8442535,74.3956238],[143.8455124,74.3954229],[143.8477618,74.3963821],[143.8611116,74.3941139],[144.564333,74.2744318],[144.5600383,74.2726344],[145.1837304,74.1618627],[145.183849,74.1619116],[145.1839586,74.1618921],[145.1842111,74.1619961],[145.1843403,74.1619731],[145.1848576,74.1621862],[145.1854279,74.1620849],[145.18592,74.1622875],[145.1861034,74.1622549],[145.1886967,74.163322],[145.8756247,74.034811],[145.8715136,74.0331463],[146.4711492,73.9150241],[146.4713366,73.9150989],[146.4714534,73.9150759],[146.4717724,73.9152032],[146.4720054,73.9151573],[146.4729092,73.9155181],[146.4735859,73.9153848],[146.4740415,73.9155666],[146.4745134,73.9154737],[146.4762838,73.9161797],[146.7211208,73.8660542],[146.8460013,73.8404424],[147.0309408,73.8024649],[143.7898569,73.7804829],[143.6576412,74.4243973]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XDC_N05.11","eo:cloud_cover":8.149624,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":91.848963,"s2:mean_solar_zenith":53.3108710887811,"s2:mean_solar_azimuth":189.475936283652,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001413,"s2:thin_cirrus_percentage":8.13981,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":69.469947,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.002,"s2:high_proba_clouds_percentage":0.001554,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.008259,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500","bbox":[143.5881136,73.795527,147.3332438,74.7885307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R60m/T55XDC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R60m/T55XDC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.0080057,73.795527],[145.9698994,73.8030006],[145.4871549,73.8978162],[145.4905777,73.8992053],[145.4899398,73.8993243],[145.49035,73.8994909],[145.4900864,73.89954],[145.4905524,73.8997292],[144.8815565,74.0132759],[144.8811576,74.0131115],[144.880944,74.0131514],[144.8801573,74.012827],[144.8800192,74.0128527],[144.8767525,74.0115065],[144.1773071,74.1355529],[144.1811868,74.1371806],[144.1796693,74.1374379],[144.1809535,74.1379769],[143.6996537,74.2197888],[143.5881136,74.763009],[147.3332438,74.7885307],[147.313497,73.8043812],[146.0080057,73.795527]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDC_N05.11","eo:cloud_cover":28.899541,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":71.100444,"s2:mean_solar_zenith":53.3108710887811,"s2:mean_solar_azimuth":189.475936283652,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000015,"s2:thin_cirrus_percentage":13.928008,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":13.920067,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0067,"s2:high_proba_clouds_percentage":8.524251,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.447282,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951","bbox":[143.7728973,72.8852322,147.3124334,73.887309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R60m/T55XDB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R60m/T55XDB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.617302,73.887309],[146.7211208,73.8660542],[146.8460013,73.8404424],[147.1427832,73.7794979],[147.1388486,73.7779517],[147.3124334,73.7401172],[147.297514,72.90781],[143.9532063,72.8852322],[143.7728973,73.8680091],[146.617302,73.887309]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XDB_N05.11","eo:cloud_cover":1.884676,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":98.115051,"s2:mean_solar_zenith":52.4332724762266,"s2:mean_solar_azimuth":189.741694550662,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000273,"s2:thin_cirrus_percentage":1.371634,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":1.536909,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0111,"s2:high_proba_clouds_percentage":0.180282,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.332761,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500","bbox":[145.5766032,73.524143,147.3151567,73.8920442],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R60m/T55XDB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R60m/T55XDB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.308562,73.524143],[147.0642351,73.5769222],[146.7539348,73.6441841],[146.757624,73.6456368],[146.1872056,73.761992],[146.1629589,73.7669515],[146.1599113,73.7657346],[145.9698994,73.8030006],[145.5766032,73.8802477],[147.3151567,73.8920442],[147.308562,73.524143]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDB_N05.11","eo:cloud_cover":8.546601,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":91.453397,"s2:mean_solar_zenith":52.4332724762266,"s2:mean_solar_azimuth":189.741694550662,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":7.799733,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":90.71641,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.020871,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.725997,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951","bbox":[143.9380027,71.989773,147.2990014,72.9954806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R60m/T55XDA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R60m/T55XDA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.2939546,72.6821365],[147.1650834,72.6291719],[146.8721115,72.5067147],[146.5833251,72.3838049],[146.2981795,72.2604713],[146.0160354,72.1367849],[145.8225341,72.0506566],[145.7348784,72.0116786],[145.7103461,72.0005912],[144.1000757,71.989773],[143.9380027,72.9727797],[147.2990014,72.9954806],[147.2939546,72.6821365]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XDA_N05.11","eo:cloud_cover":4.178511,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":45.487988,"s2:mean_solar_zenith":51.5563580868775,"s2:mean_solar_azimuth":190.006349868291,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":19.9306,"s2:vegetation_percentage":18.95621,"s2:thin_cirrus_percentage":3.178966,"s2:cloud_shadow_percentage":0.016211,"s2:nodata_pixel_percentage":16.86351,"s2:unclassified_percentage":0.001732,"s2:not_vegetated_percentage":11.428755,"s2:degraded_msi_data_percentage":0.0268,"s2:high_proba_clouds_percentage":0.226987,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.772558,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951","bbox":[144.0862883,71.2917806,145.911249,72.090144],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R60m/T55WDV_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R60m/T55WDV_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[145.911249,72.090144],[145.8225341,72.0506566],[145.7348784,72.0116786],[145.6002591,71.9508375],[145.4618036,71.8883175],[145.1900375,71.7635196],[144.9218929,71.638388],[144.657853,71.5128494],[144.3973893,71.387001],[144.2033674,71.2917806],[144.0862883,72.0778773],[145.911249,72.090144]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WDV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55WDV_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":20.162447,"s2:mean_solar_zenith":50.6806861481694,"s2:mean_solar_azimuth":190.271271226905,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":61.317939,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":77.268368,"s2:unclassified_percentage":0.007108,"s2:not_vegetated_percentage":18.512507,"s2:degraded_msi_data_percentage":0.013,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951","bbox":[143.8987666,71.9504888,147.4017391,72.972798],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R60m/T54XXF_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R60m/T54XXF_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.334089,72.6986313],[147.1650834,72.6291719],[146.8721115,72.5067147],[146.5833251,72.3838049],[146.2981795,72.2604713],[146.0160354,72.1367849],[145.8225341,72.0506566],[145.7348784,72.0116786],[145.6002591,71.9508375],[145.5994869,71.9504888],[143.8987666,71.9897902],[144.0607752,72.972798],[147.4017391,72.8951551],[147.334089,72.6986313]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XXF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XXF_N05.11","eo:cloud_cover":3.613853,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":44.992217,"s2:mean_solar_zenith":51.5059130620187,"s2:mean_solar_azimuth":189.959083750985,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":16.5314,"s2:vegetation_percentage":22.158545,"s2:thin_cirrus_percentage":2.81934,"s2:cloud_shadow_percentage":0.016218,"s2:nodata_pixel_percentage":18.535386,"s2:unclassified_percentage":0.002317,"s2:not_vegetated_percentage":12.685449,"s2:degraded_msi_data_percentage":0.0267,"s2:high_proba_clouds_percentage":0.182719,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.611794,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500","bbox":[142.642721,75.5641782,145.2301741,76.5461933],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R60m/T54XWK_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R60m/T54XWK_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[142.642721,75.5833488],[142.9522892,75.7096954],[143.2711197,75.8372498],[143.5955298,75.9644114],[143.9254381,76.0911774],[144.2610233,76.2175534],[144.6027971,76.3434738],[144.9508318,76.4689039],[145.1699908,76.5461933],[145.2301741,76.5456907],[144.9477068,75.5641782],[142.642721,75.5833488]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XWK_N05.11","eo:cloud_cover":72.699803,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":5.865882,"s2:mean_solar_zenith":54.9924664658243,"s2:mean_solar_azimuth":186.368779040953,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":2.459931,"s2:vegetation_percentage":3.335379,"s2:thin_cirrus_percentage":4.421542,"s2:cloud_shadow_percentage":0.405315,"s2:nodata_pixel_percentage":70.761877,"s2:unclassified_percentage":2.99689,"s2:not_vegetated_percentage":12.236802,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":53.297496,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.980765,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951","bbox":[140.9993155,74.6932115,141.8890895,74.8190142],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R60m/T54XWJ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R60m/T54XWJ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993155,74.8190142],[141.2888983,74.7793529],[141.6421896,74.7308209],[141.7279364,74.7189072],[141.7270199,74.718493],[141.7271871,74.7184689],[141.7267913,74.7182899],[141.7267941,74.7182895],[141.7233817,74.7167444],[141.8890895,74.6932115],[140.999321,74.7005814],[140.9993155,74.8190142]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWJ_N05.11","eo:cloud_cover":44.347519,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":12.819929,"s2:mean_solar_zenith":54.100346650766,"s2:mean_solar_azimuth":186.364404467272,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":42.826158,"s2:vegetation_percentage":0.001421,"s2:thin_cirrus_percentage":0.680291,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.598808,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.004973,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":27.896923,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.770306,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500","bbox":[140.9993131,74.6697452,144.9712829,75.6692426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R60m/T54XWJ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R60m/T54XWJ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993131,74.8708045],[141.1431699,74.936469],[141.4329284,75.0661884],[141.7274136,75.1955858],[142.0264599,75.3246509],[142.3302554,75.4533604],[142.6387495,75.5817279],[142.8531737,75.6692426],[144.9712829,75.6516194],[144.7222017,74.6697452],[140.999321,74.7005814],[140.9993131,74.8708045]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XWJ_N05.11","eo:cloud_cover":36.025184,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":8.738525,"s2:mean_solar_zenith":54.100346650766,"s2:mean_solar_azimuth":186.364404467272,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":22.222336,"s2:vegetation_percentage":6.057433,"s2:thin_cirrus_percentage":17.357659,"s2:cloud_shadow_percentage":0.880937,"s2:nodata_pixel_percentage":19.857705,"s2:unclassified_percentage":3.742191,"s2:not_vegetated_percentage":22.333394,"s2:degraded_msi_data_percentage":0.0106,"s2:high_proba_clouds_percentage":4.333816,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.33371,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951","bbox":[140.9993171,73.7755608,144.6310856,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R60m/T54XWH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R60m/T54XWH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[141.2343127,74.7868289],[141.2888983,74.7793529],[141.6421896,74.7308209],[141.7279364,74.7189072],[141.7270199,74.718493],[141.7271871,74.7184689],[141.7267913,74.7182899],[141.7267941,74.7182895],[141.7233817,74.7167444],[142.4260678,74.6169529],[142.4274429,74.6175627],[142.4284679,74.6174161],[142.4286886,74.6175139],[142.4293456,74.6174205],[142.4313117,74.6182925],[142.5714281,74.5968342],[143.0565481,74.522405],[143.1901437,74.5018368],[143.1851411,74.4996642],[143.8425029,74.3949498],[143.8427858,74.3950704],[143.8428508,74.3950601],[143.8432757,74.3952413],[143.8433346,74.3952319],[143.8442535,74.3956238],[143.8455124,74.3954229],[143.8477618,74.3963821],[143.8611116,74.3941139],[144.564333,74.2744318],[144.5600383,74.2726344],[144.6310856,74.260016],[144.5219633,73.7755608],[140.9993576,73.8046111],[140.9993171,74.7887762],[141.2343127,74.7868289]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWH_N05.11","eo:cloud_cover":15.946352,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":20.537336,"s2:mean_solar_zenith":53.2089328359889,"s2:mean_solar_azimuth":186.37760112025,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":59.982371,"s2:vegetation_percentage":2.560437,"s2:thin_cirrus_percentage":9.459811,"s2:cloud_shadow_percentage":0.034289,"s2:nodata_pixel_percentage":23.364276,"s2:unclassified_percentage":0.002771,"s2:not_vegetated_percentage":0.936446,"s2:degraded_msi_data_percentage":0.0213,"s2:high_proba_clouds_percentage":2.69999,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.786552,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500","bbox":[140.9993171,74.0629478,144.7431996,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R60m/T54XWH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R60m/T54XWH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[144.5866965,74.0629478],[144.1773071,74.1355529],[144.1811868,74.1371806],[144.1796693,74.1374379],[144.1809535,74.1379769],[143.5452185,74.2460398],[143.540708,74.244115],[142.8065067,74.3613423],[142.809754,74.3627563],[142.8066019,74.3632394],[142.8066661,74.3632673],[142.80603,74.3633653],[142.8066123,74.3636189],[142.1339778,74.467267],[142.1294965,74.4652781],[141.6961413,74.5267268],[141.3473333,74.576475],[141.3517476,74.57848],[140.9993238,74.6268919],[140.9993171,74.7887762],[144.7431996,74.7577532],[144.5866965,74.0629478]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XWH_N05.11","eo:cloud_cover":51.360768,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":12.210329,"s2:mean_solar_zenith":53.208932835989,"s2:mean_solar_azimuth":186.37760112025,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":36.428866,"s2:vegetation_percentage":0.000038,"s2:thin_cirrus_percentage":47.277904,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":56.844443,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0262,"s2:high_proba_clouds_percentage":1.294806,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.788056,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951","bbox":[140.9993542,72.8805816,144.5405623,73.8922753],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R60m/T54XWG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R60m/T54XWG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993542,73.8922753],[144.5405623,73.8630589],[144.3428176,72.8805816],[140.9993903,72.9080271],[140.9993542,73.8922753]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWG_N05.11","eo:cloud_cover":2.097392,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":27.304021,"s2:mean_solar_zenith":52.3171650640296,"s2:mean_solar_azimuth":186.406378672536,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":33.061871,"s2:vegetation_percentage":31.237328,"s2:thin_cirrus_percentage":1.785213,"s2:cloud_shadow_percentage":0.151642,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.05427,"s2:not_vegetated_percentage":6.093477,"s2:degraded_msi_data_percentage":0.0137,"s2:high_proba_clouds_percentage":0.028587,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.283592,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951","bbox":[140.9993873,71.9853678,144.3594919,72.9956989],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R60m/T54XWF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R60m/T54XWF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993873,72.9956989],[144.3594919,72.9681038],[144.181736,71.9853678],[140.9994198,72.0113634],[140.9993873,72.9956989]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWF_N05.11","eo:cloud_cover":0.000063,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":19.687065,"s2:mean_solar_zenith":51.4255870137129,"s2:mean_solar_azimuth":186.449108624762,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":15.100153,"s2:vegetation_percentage":42.105362,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.002445,"s2:not_vegetated_percentage":23.104914,"s2:degraded_msi_data_percentage":0.0019,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000063,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951","bbox":[140.6201516,74.6954927,141.3330181,74.8309812],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R60m/T54XVJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R60m/T54XVJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.6201516,74.6954927],[140.6341605,74.7021176],[140.9119394,74.8309812],[141.2888983,74.7793529],[141.3330181,74.7732921],[141.3313691,74.7003374],[140.6201516,74.6954927]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVJ_N05.11","eo:cloud_cover":74.726093,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":7.062066,"s2:mean_solar_zenith":54.0353756222663,"s2:mean_solar_azimuth":182.361351685279,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":18.206279,"s2:vegetation_percentage":0.001442,"s2:thin_cirrus_percentage":0.115579,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.389578,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.00412,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":53.441209,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.169306,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500","bbox":[140.619971,74.6954915,141.3386848,75.0239973],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R60m/T54XVJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R60m/T54XVJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.619971,74.6954915],[140.8582521,74.8064162],[141.1431699,74.936469],[141.3386848,75.0239973],[141.3313691,74.7003374],[140.619971,74.6954915]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XVJ_N05.11","eo:cloud_cover":77.274442,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":20.548312,"s2:mean_solar_zenith":54.0353756222664,"s2:mean_solar_azimuth":182.361351685279,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.012121,"s2:vegetation_percentage":0.000112,"s2:thin_cirrus_percentage":0.441083,"s2:cloud_shadow_percentage":2.165012,"s2:nodata_pixel_percentage":97.043848,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":42.865559,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":33.967799,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951","bbox":[138.800028,73.7873342,141.3329382,74.7878078],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R60m/T54XVH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R60m/T54XVH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.800028,73.7873342],[139.0408218,73.9136998],[139.296295,74.0458292],[139.5555232,74.1776776],[139.8187172,74.3092406],[140.086072,74.4405095],[140.3578673,74.571457],[140.6341605,74.7021176],[140.8127876,74.784984],[141.2271654,74.7878078],[141.2888983,74.7793529],[141.3329382,74.7733031],[141.313497,73.8043812],[138.800028,73.7873342]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVH_N05.11","eo:cloud_cover":46.900082,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":19.634269,"s2:mean_solar_zenith":53.1422322075326,"s2:mean_solar_azimuth":182.555905771605,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":22.965646,"s2:vegetation_percentage":3.566145,"s2:thin_cirrus_percentage":8.210114,"s2:cloud_shadow_percentage":1.8615,"s2:nodata_pixel_percentage":58.156729,"s2:unclassified_percentage":0.490754,"s2:not_vegetated_percentage":4.581606,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":20.102456,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.58751,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500","bbox":[140.5930405,74.5815923,141.3332438,74.7885307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R60m/T54XVH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R60m/T54XVH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[141.3290916,74.5815923],[140.8795148,74.6433499],[140.5930405,74.6829548],[140.8122043,74.78498],[141.3332438,74.7885307],[141.3290916,74.5815923]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XVH_N05.11","eo:cloud_cover":73.722351,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":14.889362,"s2:mean_solar_zenith":53.1422322075327,"s2:mean_solar_azimuth":182.555905771605,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":11.388166,"s2:vegetation_percentage":0.000119,"s2:thin_cirrus_percentage":2.290314,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":97.210932,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":38.146052,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":33.285987,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951","bbox":[137.8799475,72.8852322,141.3151567,73.8920442],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R60m/T54XVG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R60m/T54XVG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.8799475,73.2845304],[138.0540315,73.382468],[138.2950343,73.5157073],[138.5398695,73.6486677],[138.7885911,73.7813322],[138.9692245,73.8761265],[141.3151567,73.8920442],[141.297514,72.90781],[137.9532063,72.8852322],[137.8799475,73.2845304]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVG_N05.11","eo:cloud_cover":8.419208,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":33.768678,"s2:mean_solar_zenith":52.2486793462447,"s2:mean_solar_azimuth":182.744340259198,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":49.342129,"s2:vegetation_percentage":5.999731,"s2:thin_cirrus_percentage":6.089519,"s2:cloud_shadow_percentage":0.459979,"s2:nodata_pixel_percentage":10.380324,"s2:unclassified_percentage":0.059182,"s2:not_vegetated_percentage":1.951094,"s2:degraded_msi_data_percentage":0.0157,"s2:high_proba_clouds_percentage":0.555568,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.774121,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951","bbox":[137.9380027,71.989773,141.2990014,72.9954806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R60m/T54XVF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R60m/T54XVF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.9380027,72.9727797],[141.2990014,72.9954806],[141.2831475,72.0111578],[138.1000757,71.989773],[137.9380027,72.9727797]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVF_N05.11","eo:cloud_cover":8.302079,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":25.15133,"s2:mean_solar_zenith":51.3552596440843,"s2:mean_solar_azimuth":182.928194484078,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":36.912629,"s2:vegetation_percentage":16.042349,"s2:thin_cirrus_percentage":6.249959,"s2:cloud_shadow_percentage":0.201569,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.006553,"s2:not_vegetated_percentage":13.383493,"s2:degraded_msi_data_percentage":0.0241,"s2:high_proba_clouds_percentage":0.650638,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.401482,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951","bbox":[143.7661688,71.093762,145.78636,72.0778947],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R60m/T54WXE_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R60m/T54WXE_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[145.78636,72.034571],[145.7348784,72.0116786],[145.6002591,71.9508375],[145.4618036,71.8883175],[145.1900375,71.7635196],[144.9218929,71.638388],[144.657853,71.5128494],[144.3973893,71.387001],[144.1403129,71.2608353],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.8058313,71.093762],[143.7661688,71.0946736],[143.9125486,72.0778947],[145.78636,72.034571]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WXE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WXE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":17.80114,"s2:mean_solar_zenith":50.6173097050979,"s2:mean_solar_azimuth":189.890433656743,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":64.843941,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":70.015293,"s2:unclassified_percentage":0.006584,"s2:not_vegetated_percentage":17.348334,"s2:degraded_msi_data_percentage":0.016,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951","bbox":[143.7637458,71.0724966,143.9735536,71.1822592],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R60m/T54WXD_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R60m/T54WXD_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.9735536,71.1777753],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.7637458,71.0724966],[143.7785751,71.1822592],[143.9735536,71.1777753]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WXD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WXD_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":37.691283,"s2:mean_solar_zenith":49.728460700465,"s2:mean_solar_azimuth":189.847226215649,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":52.84155,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.66892,"s2:unclassified_percentage":0.048102,"s2:not_vegetated_percentage":9.419063,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951","bbox":[140.999417,71.0923697,144.196858,72.0995811],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R60m/T54WWE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R60m/T54WWE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[144.0573242,71.2195],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.8030759,71.0923697],[140.9994464,71.1151545],[140.999417,72.0995811],[144.196858,72.073449],[144.0573242,71.2195]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WWE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WWE_N05.11","eo:cloud_cover":0.000043,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":11.577826,"s2:mean_solar_zenith":50.5347458337918,"s2:mean_solar_azimuth":186.504601337355,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00004,"s2:vegetation_percentage":76.62341,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.535061,"s2:unclassified_percentage":0.003769,"s2:not_vegetated_percentage":11.794909,"s2:degraded_msi_data_percentage":0.0199,"s2:high_proba_clouds_percentage":7e-6,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000037,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951","bbox":[140.9994439,70.2091535,143.975301,71.2028426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R60m/T54WWD_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R60m/T54WWD_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.975301,71.1786456],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.6330812,71.0064731],[143.5205388,70.9486732],[143.3873848,70.880465],[143.1424829,70.7530538],[142.9002939,70.6252531],[142.6604381,70.4972318],[142.4236022,70.3689064],[142.1895253,70.2403091],[142.1336098,70.2091535],[140.9994705,70.2183208],[140.9994439,71.2028426],[143.975301,71.1786456]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WWD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WWD_N05.11","eo:cloud_cover":0.000053,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":13.600075,"s2:mean_solar_zenith":49.6435833253783,"s2:mean_solar_azimuth":186.571966927614,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000058,"s2:vegetation_percentage":81.680822,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":31.762895,"s2:unclassified_percentage":0.002431,"s2:not_vegetated_percentage":4.716554,"s2:degraded_msi_data_percentage":0.0283,"s2:high_proba_clouds_percentage":0.00001,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000044,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951","bbox":[140.9994682,69.5568751,142.2901301,70.3060175],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R60m/T54WWC_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R60m/T54WWC_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[142.2901301,70.2955794],[142.1895253,70.2403091],[141.9582319,70.1114347],[141.7294833,69.9824322],[141.5033786,69.8532883],[141.2813115,69.7236358],[141.0612888,69.5938449],[140.9994867,69.5568751],[140.9994682,70.3060175],[142.2901301,70.2955794]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WWC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WWC_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.064775,"s2:mean_solar_zenith":48.7526479783835,"s2:mean_solar_azimuth":186.650496601281,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.002181,"s2:vegetation_percentage":78.974593,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":83.264059,"s2:unclassified_percentage":0.000119,"s2:not_vegetated_percentage":18.958335,"s2:degraded_msi_data_percentage":0.0073,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951","bbox":[138.0862883,71.0946572,141.284496,72.0993744],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R60m/T54WVE_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R60m/T54WVE_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.0862883,72.0778773],[141.284496,72.0993744],[141.2701751,71.1149593],[138.2327264,71.0946572],[138.0862883,72.0778773]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVE_N05.11","eo:cloud_cover":5.863766,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":28.236791,"s2:mean_solar_zenith":50.4625171471027,"s2:mean_solar_azimuth":183.108802615492,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":3.599776,"s2:vegetation_percentage":43.710288,"s2:thin_cirrus_percentage":5.068998,"s2:cloud_shadow_percentage":0.022166,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.020202,"s2:not_vegetated_percentage":18.547009,"s2:degraded_msi_data_percentage":0.0078,"s2:high_proba_clouds_percentage":0.318177,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.476591,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951","bbox":[138.2203151,70.1988218,141.2713887,71.2026464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R60m/T54WVD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R60m/T54WVD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.2203151,71.1822428],[141.2713887,71.2026464],[141.258393,70.2181351],[138.3532315,70.1988218],[138.2203151,71.1822428]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVD_N05.11","eo:cloud_cover":0.000017,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":11.096323,"s2:mean_solar_zenith":49.5693878530036,"s2:mean_solar_azimuth":183.287525469711,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00004,"s2:vegetation_percentage":80.303013,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.001261,"s2:not_vegetated_percentage":8.599345,"s2:degraded_msi_data_percentage":0.0062,"s2:high_proba_clouds_percentage":7e-6,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.00001,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951","bbox":[138.3419414,69.302813,141.2594967,70.3058309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R60m/T54WVC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R60m/T54WVC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[141.252288,69.7065149],[141.0612888,69.5938449],[140.8438762,69.4637893],[140.631353,69.3329125],[140.6054012,69.3169743],[138.4630916,69.302813],[138.3419414,70.2864248],[141.2594967,70.3058309],[141.252288,69.7065149]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVC_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.304452,"s2:mean_solar_zenith":48.6764182398639,"s2:mean_solar_azimuth":183.465358157545,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.070214,"s2:vegetation_percentage":75.791138,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":4.585987,"s2:unclassified_percentage":0.000042,"s2:not_vegetated_percentage":23.83392,"s2:degraded_msi_data_percentage":0.0233,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951","bbox":[138.4527167,68.4071754,140.7503058,69.4061665],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R60m/T54WVB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R60m/T54WVB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.7503058,69.4061665],[140.631353,69.3329125],[140.4187678,69.2023538],[140.2079766,69.0715492],[139.9991895,68.9404648],[139.7925405,68.8091917],[139.5884797,68.6776793],[139.38814,68.5455772],[139.1906958,68.413147],[139.1878784,68.4112778],[138.5635706,68.4071754],[138.4527167,69.3909702],[140.7503058,69.4061665]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVB_N05.11","eo:cloud_cover":3.335383,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.970102,"s2:mean_solar_zenith":47.784152898517,"s2:mean_solar_azimuth":183.643037696029,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.071176,"s2:vegetation_percentage":79.263401,"s2:thin_cirrus_percentage":3.248752,"s2:cloud_shadow_percentage":0.290992,"s2:nodata_pixel_percentage":47.297373,"s2:unclassified_percentage":0.009349,"s2:not_vegetated_percentage":15.899885,"s2:degraded_msi_data_percentage":0.0255,"s2:high_proba_clouds_percentage":0.001788,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.084843,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951","bbox":[138.5541183,68.0155973,139.3199586,68.4998464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R60m/T54WVA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R60m/T54WVA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[139.3199586,68.4998464],[139.1906958,68.413147],[139.0044204,68.2895577],[138.99053,68.2803526],[138.978028,68.271814],[138.7975345,68.1490727],[138.6050813,68.0165698],[138.603688,68.0155973],[138.5541183,68.494811],[139.3199586,68.4998464]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVA_N05.11","eo:cloud_cover":6.39925,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.708158,"s2:mean_solar_zenith":46.891533182743,"s2:mean_solar_azimuth":183.821664487087,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":1.753561,"s2:vegetation_percentage":34.304196,"s2:thin_cirrus_percentage":5.917664,"s2:cloud_shadow_percentage":0.006917,"s2:nodata_pixel_percentage":93.140912,"s2:unclassified_percentage":0.039955,"s2:not_vegetated_percentage":52.866346,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.017849,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.463737,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951","bbox":[137.8987666,71.9166252,141.4017391,72.972798],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R60m/T53XPA_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R60m/T53XPA_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.0607752,72.972798],[141.4017391,72.8951551],[141.0648961,71.9166252],[137.8987666,71.9897902],[138.0607752,72.972798]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53XPA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53XPA_N05.11","eo:cloud_cover":8.471534,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":25.152224,"s2:mean_solar_zenith":51.305817275075,"s2:mean_solar_azimuth":182.876057466885,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":35.284233,"s2:vegetation_percentage":16.72368,"s2:thin_cirrus_percentage":6.34322,"s2:cloud_shadow_percentage":0.240537,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.005819,"s2:not_vegetated_percentage":14.121971,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":0.718425,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.409889,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951","bbox":[137.1986657,72.8805816,138.4922012,73.6227809],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R60m/T53XNB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R60m/T53XNB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.1986657,72.8899737],[137.3529907,72.9812994],[137.5830159,73.1152239],[137.8167258,73.2489626],[138.0540315,73.382468],[138.2950343,73.5157073],[138.4922012,73.6227809],[138.3428176,72.8805816],[137.1986657,72.8899737]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53XNB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53XNB_N05.11","eo:cloud_cover":10.7994,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":22.729982,"s2:mean_solar_zenith":52.2312101532652,"s2:mean_solar_azimuth":179.393948289904,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":66.468495,"s2:vegetation_percentage":0.002124,"s2:thin_cirrus_percentage":9.430973,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":87.50307,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.240589,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.127837,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951","bbox":[135.7810207,71.9853678,138.3594919,72.9764372],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R60m/T53XNA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R60m/T53XNA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[135.7810207,72.0049787],[135.8306676,72.0376004],[136.0398937,72.1730333],[136.25145,72.3082848],[136.4654229,72.4433503],[136.6822884,72.5782131],[136.9025759,72.7128205],[137.1263184,72.8471604],[137.3447744,72.9764372],[138.3594919,72.9681038],[138.181736,71.9853678],[135.7810207,72.0049787]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53XNA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53XNA_N05.11","eo:cloud_cover":4.452536,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":95.541453,"s2:mean_solar_zenith":51.3351404866702,"s2:mean_solar_azimuth":179.353434492462,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.006011,"s2:thin_cirrus_percentage":3.826519,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":47.843993,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0008,"s2:high_proba_clouds_percentage":0.184047,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.441969,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951","bbox":[137.7661688,71.0251958,141.093564,72.0778947],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R60m/T53WPV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R60m/T53WPV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.9125486,72.0778947],[141.093564,72.0043476],[140.7889605,71.0251958],[137.7661688,71.0946736],[137.9125486,72.0778947]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPV_N05.11","eo:cloud_cover":5.74511,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":32.687479,"s2:mean_solar_zenith":50.4111090772672,"s2:mean_solar_azimuth":182.720923216345,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":4.85146,"s2:vegetation_percentage":37.601638,"s2:thin_cirrus_percentage":5.047541,"s2:cloud_shadow_percentage":0.023882,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.018172,"s2:not_vegetated_percentage":19.072258,"s2:degraded_msi_data_percentage":0.0117,"s2:high_proba_clouds_percentage":0.269389,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.42818,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951","bbox":[137.6457116,70.1327293,140.814787,71.1822592],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R60m/T53WPU_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R60m/T53WPU_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.7785751,71.1822592],[140.814787,71.1124355],[140.5381092,70.1327293],[137.6457116,70.1988374],[137.7785751,71.1822592]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPU_N05.11","eo:cloud_cover":3e-6,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":13.414465,"s2:mean_solar_zenith":49.5157431265834,"s2:mean_solar_azimuth":182.587133584315,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":77.782768,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.001921,"s2:not_vegetated_percentage":8.80084,"s2:degraded_msi_data_percentage":0.0012,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3e-6,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951","bbox":[137.5358953,69.2398107,140.5616186,70.2864405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R60m/T53WPT_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R60m/T53WPT_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.6569973,70.2864405],[140.5616186,70.2200158],[140.3092739,69.2398107],[137.5358953,69.3028279],[137.6569973,70.2864405]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPT_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.085959,"s2:mean_solar_zenith":48.6202573099626,"s2:mean_solar_azimuth":182.472257995074,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.097359,"s2:vegetation_percentage":76.235116,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":23.58157,"s2:degraded_msi_data_percentage":0.0173,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951","bbox":[137.4354563,68.3690508,140.3308902,69.3909851],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R60m/T53WPS_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R60m/T53WPS_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.2812653,69.1170279],[140.2079766,69.0715492],[139.9991895,68.9404648],[139.7925405,68.8091917],[139.5884797,68.6776793],[139.38814,68.5455772],[139.1906958,68.413147],[139.1242334,68.3690508],[137.4354563,68.4071896],[137.546266,69.3909851],[140.3308902,69.3276752],[140.2812653,69.1170279]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPS_N05.11","eo:cloud_cover":9.896792,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.361735,"s2:mean_solar_zenith":47.7251878306583,"s2:mean_solar_azimuth":182.374139174231,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.202622,"s2:vegetation_percentage":71.319681,"s2:thin_cirrus_percentage":6.357141,"s2:cloud_shadow_percentage":1.606275,"s2:nodata_pixel_percentage":14.510258,"s2:unclassified_percentage":0.019405,"s2:not_vegetated_percentage":15.364692,"s2:degraded_msi_data_percentage":0.0247,"s2:high_proba_clouds_percentage":1.873058,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.666593,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951","bbox":[137.3431637,67.4987463,139.2516026,68.4948252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R60m/T53WPR_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R60m/T53WPR_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[139.2516026,68.4539985],[139.1906958,68.413147],[139.0044204,68.2895577],[138.99053,68.2803526],[138.978028,68.271814],[138.7975345,68.1490727],[138.6050813,68.0165698],[138.414898,67.8838321],[138.2278795,67.7506648],[138.0449052,67.6167832],[137.8826614,67.4987463],[137.3431637,67.5108527],[137.4449048,68.4948252],[139.2516026,68.4539985]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPR_N05.11","eo:cloud_cover":50.947386,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.132876,"s2:mean_solar_zenith":46.829461693452,"s2:mean_solar_azimuth":182.29099033466,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.371113,"s2:vegetation_percentage":28.684637,"s2:thin_cirrus_percentage":14.934808,"s2:cloud_shadow_percentage":2.099002,"s2:nodata_pixel_percentage":55.891585,"s2:unclassified_percentage":0.706798,"s2:not_vegetated_percentage":16.609885,"s2:degraded_msi_data_percentage":0.0239,"s2:high_proba_clouds_percentage":21.74134,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.271238,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951","bbox":[137.3011384,67.0659149,137.9997823,67.5985039],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R60m/T53WPQ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R60m/T53WPQ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.9997823,67.583955],[137.8613163,67.4832171],[137.6800852,67.3492598],[137.5000028,67.2152473],[137.3213521,67.0811797],[137.3011384,67.0659149],[137.3518535,67.5985039],[137.9997823,67.583955]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPQ_N05.11","eo:cloud_cover":80.372506,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.581574,"s2:mean_solar_zenith":45.9336159916215,"s2:mean_solar_azimuth":182.221357511726,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.009367,"s2:vegetation_percentage":12.079749,"s2:thin_cirrus_percentage":13.551554,"s2:cloud_shadow_percentage":1.584354,"s2:nodata_pixel_percentage":93.269897,"s2:unclassified_percentage":1.45884,"s2:not_vegetated_percentage":3.908234,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":25.341576,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.479379,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951","bbox":[134.9994355,71.0904748,138.196858,72.0920994],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R60m/T53WNV_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R60m/T53WNV_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994355,71.4781682],[135.0219441,71.4939117],[135.2197311,71.6301191],[135.4205147,71.7661413],[135.6242101,71.9019427],[135.8306676,72.0376004],[135.9148614,72.0920994],[138.196858,72.073449],[138.0362417,71.0904748],[134.9994464,71.1151545],[134.9994355,71.4781682]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNV_N05.11","eo:cloud_cover":0.039394,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":36.798185,"s2:mean_solar_zenith":50.4394772497286,"s2:mean_solar_azimuth":179.321853230839,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":27.153489,"s2:vegetation_percentage":20.840448,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":9.368174,"s2:unclassified_percentage":0.006403,"s2:not_vegetated_percentage":15.162079,"s2:degraded_msi_data_percentage":0.0173,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.039394,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951","bbox":[134.9994439,70.1948429,138.049855,71.2028426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R60m/T53WNU_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R60m/T53WNU_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994439,71.2028426],[138.049855,71.1780394],[137.9040632,70.1948429],[134.9994705,70.2183208],[134.9994439,71.2028426]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNU_N05.11","eo:cloud_cover":0.488346,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":16.513933,"s2:mean_solar_zenith":49.543143601069,"s2:mean_solar_azimuth":179.298078790733,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001158,"s2:vegetation_percentage":77.088505,"s2:thin_cirrus_percentage":0.47116,"s2:cloud_shadow_percentage":0.000617,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.008119,"s2:not_vegetated_percentage":5.899327,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.017186,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951","bbox":[134.9994682,69.2990206,137.9164472,70.3060175],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R60m/T53WNT_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R60m/T53WNT_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994682,70.3060175],[137.9164472,70.2824267],[137.7835563,69.2990206],[134.9994925,69.3213967],[134.9994682,70.3060175]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNT_N05.11","eo:cloud_cover":4.688246,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.84148,"s2:mean_solar_zenith":48.6466760123962,"s2:mean_solar_azimuth":179.281215552931,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.02204,"s2:vegetation_percentage":77.097553,"s2:thin_cirrus_percentage":4.368287,"s2:cloud_shadow_percentage":0.050149,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.002482,"s2:not_vegetated_percentage":17.298049,"s2:degraded_msi_data_percentage":0.0154,"s2:high_proba_clouds_percentage":0.000292,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.319667,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951","bbox":[134.9994904,68.4035546,137.7949369,69.4096405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R60m/T53WNS_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R60m/T53WNS_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994904,69.4096405],[137.7949369,69.3871601],[137.6733361,68.4035546],[134.9995126,68.4249171],[134.9994904,69.4096405]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNS_N05.11","eo:cloud_cover":3.499497,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.498203,"s2:mean_solar_zenith":47.750610937167,"s2:mean_solar_azimuth":179.27051116146,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000332,"s2:vegetation_percentage":83.526266,"s2:thin_cirrus_percentage":2.582646,"s2:cloud_shadow_percentage":0.218712,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.010491,"s2:not_vegetated_percentage":12.246495,"s2:degraded_msi_data_percentage":0.0003,"s2:high_proba_clouds_percentage":0.441279,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.475572,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951","bbox":[134.9995107,67.5073771,137.6837049,68.5126321],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R60m/T53WNR_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R60m/T53WNR_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9995107,68.5126321],[137.6837049,68.491174],[137.5720525,67.5073771],[134.9995311,67.5278024],[134.9995107,68.5126321]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNR_N05.11","eo:cloud_cover":36.66355,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.499322,"s2:mean_solar_zenith":46.8538715277138,"s2:mean_solar_azimuth":179.265415984781,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.004509,"s2:vegetation_percentage":44.98021,"s2:thin_cirrus_percentage":10.196213,"s2:cloud_shadow_percentage":3.757443,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":2.886065,"s2:not_vegetated_percentage":11.208901,"s2:degraded_msi_data_percentage":0.0146,"s2:high_proba_clouds_percentage":17.368774,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.098563,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951","bbox":[134.9995294,66.6170156,137.581589,67.6155271],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R60m/T53WNQ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R60m/T53WNQ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.5454291,67.2490523],[137.5000028,67.2152473],[137.3213521,67.0811797],[137.1438475,66.9471341],[136.9697618,66.8125882],[136.7971426,66.6780005],[136.7200851,66.6170156],[134.9995482,66.6305875],[134.9995294,67.6155271],[137.581589,67.5950132],[137.5454291,67.2490523]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNQ_N05.11","eo:cloud_cover":71.882689,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.241975,"s2:mean_solar_zenith":45.956994707828,"s2:mean_solar_azimuth":179.265390275024,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000881,"s2:vegetation_percentage":11.376605,"s2:thin_cirrus_percentage":8.059323,"s2:cloud_shadow_percentage":3.133707,"s2:nodata_pixel_percentage":10.036112,"s2:unclassified_percentage":6.558467,"s2:not_vegetated_percentage":6.805665,"s2:degraded_msi_data_percentage":0.0236,"s2:high_proba_clouds_percentage":44.913453,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.909921,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951","bbox":[134.9995465,65.7288235,136.8310071,66.7188603],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R60m/T53WNP_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R60m/T53WNP_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[136.8310071,66.7044039],[136.7971426,66.6780005],[136.6268255,66.5432079],[136.4554565,66.4089337],[136.2905121,66.2734345],[136.124355,66.1384481],[135.9590236,66.0034615],[135.7973805,65.8677223],[135.6387393,65.7314011],[135.6357109,65.7288235],[134.9995639,65.7338076],[134.9995465,66.7188603],[136.8310071,66.7044039]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNP_N05.11","eo:cloud_cover":79.262155,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.064865,"s2:mean_solar_zenith":45.0605176677555,"s2:mean_solar_azimuth":179.27010740126,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001381,"s2:vegetation_percentage":11.749259,"s2:thin_cirrus_percentage":35.7537,"s2:cloud_shadow_percentage":1.796817,"s2:nodata_pixel_percentage":50.036603,"s2:unclassified_percentage":1.188451,"s2:not_vegetated_percentage":5.935958,"s2:degraded_msi_data_percentage":0.0263,"s2:high_proba_clouds_percentage":7.194892,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":36.313558,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951","bbox":[134.9995624,65.1784831,135.7369237,65.8215524],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R60m/T53WNN_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R60m/T53WNN_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[135.7369237,65.8157714],[135.6387393,65.7314011],[135.4790342,65.5954711],[135.3203988,65.4595167],[135.1640839,65.3232305],[135.009083,65.1869289],[134.9995729,65.1784831],[134.9995624,65.8215524],[135.7369237,65.8157714]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNN_N05.11","eo:cloud_cover":99.833322,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000033,"s2:mean_solar_zenith":44.163363602334,"s2:mean_solar_azimuth":179.279169599448,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.150944,"s2:thin_cirrus_percentage":28.099704,"s2:cloud_shadow_percentage":0.000668,"s2:nodata_pixel_percentage":90.066993,"s2:unclassified_percentage":0.001436,"s2:not_vegetated_percentage":0.013595,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":14.312494,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":57.421124,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951","bbox":[134.4811106,71.1096852,135.2782462,71.6697606],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R60m/T53WMV_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R60m/T53WMV_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.4811106,71.1096852],[134.6351874,71.2210221],[134.8269898,71.3575522],[135.0219441,71.4939117],[135.2197311,71.6301191],[135.2782462,71.6697606],[135.2701751,71.1149593],[134.4811106,71.1096852]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMV_N05.11","eo:cloud_cover":0.039226,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":24.383707,"s2:mean_solar_zenith":50.4784982490092,"s2:mean_solar_azimuth":175.916797651609,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.759301,"s2:vegetation_percentage":45.216641,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":92.96276,"s2:unclassified_percentage":0.023998,"s2:not_vegetated_percentage":29.577124,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.039226,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951","bbox":[133.2861284,70.2050237,135.2713887,71.2026464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R60m/T53WMU_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R60m/T53WMU_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.2861284,70.2050237],[133.3563274,70.2605362],[133.533248,70.3982007],[133.7113221,70.5358675],[133.8919369,70.6731953],[134.0746049,70.8103348],[134.2592913,70.9473583],[134.4459812,71.0843005],[134.6035773,71.1981805],[135.2713887,71.2026464],[135.258393,70.2181351],[133.2861284,70.2050237]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMU_N05.11","eo:cloud_cover":0.35225,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":3.292965,"s2:mean_solar_zenith":49.58155452922,"s2:mean_solar_azimuth":176.004006870427,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.002004,"s2:vegetation_percentage":90.762228,"s2:thin_cirrus_percentage":0.319707,"s2:cloud_shadow_percentage":0.003768,"s2:nodata_pixel_percentage":55.793881,"s2:unclassified_percentage":0.005914,"s2:not_vegetated_percentage":5.580869,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":8e-6,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.032536,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951","bbox":[132.4375113,69.302813,135.2594967,70.3058309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R60m/T53WMT_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R60m/T53WMT_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.4375113,69.510498],[132.5072291,69.5697717],[132.6725396,69.7081763],[132.8399998,69.846495],[133.010646,69.9845106],[133.1819808,70.122665],[133.3563274,70.2605362],[133.3986312,70.2934534],[135.2594967,70.3058309],[135.2476536,69.3212198],[132.4630916,69.302813],[132.4375113,69.510498]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMT_N05.11","eo:cloud_cover":0.83192,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.963727,"s2:mean_solar_zenith":48.684473752372,"s2:mean_solar_azimuth":176.085958812526,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.012127,"s2:vegetation_percentage":82.922882,"s2:thin_cirrus_percentage":0.805923,"s2:cloud_shadow_percentage":0.00147,"s2:nodata_pixel_percentage":14.697061,"s2:unclassified_percentage":0.003228,"s2:not_vegetated_percentage":15.264641,"s2:degraded_msi_data_percentage":0.014,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.025997,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951","bbox":[132.4527167,68.4071754,135.2486677,69.4094627],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R60m/T53WMS_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R60m/T53WMS_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.4527167,69.3909702],[135.2486677,69.4094627],[135.2378328,68.4247482],[132.5635706,68.4071754],[132.4527167,69.3909702]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMS_N05.11","eo:cloud_cover":1.381439,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.717108,"s2:mean_solar_zenith":47.7877908664443,"s2:mean_solar_azimuth":176.163362195745,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":80.133373,"s2:thin_cirrus_percentage":0.558542,"s2:cloud_shadow_percentage":0.66032,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.270719,"s2:not_vegetated_percentage":15.837045,"s2:degraded_msi_data_percentage":0.023,"s2:high_proba_clouds_percentage":0.428001,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.394896,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951","bbox":[132.5541183,67.5108391,135.2387566,68.5124624],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R60m/T53WMR_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R60m/T53WMR_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.5541183,68.494811],[135.2387566,68.5124624],[135.2288099,67.5276409],[132.6559,67.5108391],[132.5541183,68.494811]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMR_N05.11","eo:cloud_cover":1.407487,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.355294,"s2:mean_solar_zenith":46.8904280749316,"s2:mean_solar_azimuth":176.236873363626,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.387017,"s2:thin_cirrus_percentage":0.862691,"s2:cloud_shadow_percentage":0.62312,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.23916,"s2:not_vegetated_percentage":12.987924,"s2:degraded_msi_data_percentage":0.0178,"s2:high_proba_clouds_percentage":0.214253,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.330543,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951","bbox":[132.6472067,66.6143459,135.2296594,67.6153648],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R60m/T53WMQ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R60m/T53WMQ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.6472067,67.5984902],[135.2296594,67.6153648],[135.2204986,66.6304328],[132.7409581,66.6143459],[132.6472067,67.5984902]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMQ_N05.11","eo:cloud_cover":48.034894,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.562238,"s2:mean_solar_zenith":45.9929211883906,"s2:mean_solar_azimuth":176.306964756757,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":43.581593,"s2:thin_cirrus_percentage":24.397135,"s2:cloud_shadow_percentage":1.614102,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.005252,"s2:not_vegetated_percentage":5.20192,"s2:degraded_msi_data_percentage":0.0018,"s2:high_proba_clouds_percentage":9.764101,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.873656,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951","bbox":[132.732889,65.718237,135.221287,66.718705],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R60m/T53WMP_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R60m/T53WMP_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.732889,66.7025501],[135.221287,66.718705],[135.2128247,65.7336593],[132.8195021,65.718237],[132.732889,66.7025501]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMP_N05.11","eo:cloud_cover":96.877158,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":45.0958071044653,"s2:mean_solar_azimuth":176.374033706648,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":1.051838,"s2:thin_cirrus_percentage":17.849383,"s2:cloud_shadow_percentage":0.780558,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.527862,"s2:not_vegetated_percentage":0.762589,"s2:degraded_msi_data_percentage":0.012,"s2:high_proba_clouds_percentage":28.265235,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":50.762534,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951","bbox":[132.8120825,64.8214388,135.2135496,65.8214035],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R60m/T53WMN_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R60m/T53WMN_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[135.2099039,65.3631796],[135.1640839,65.3232305],[135.009083,65.1869289],[134.8555479,65.0505759],[134.7035955,64.9141124],[134.6140229,64.8324549],[132.8923143,64.8214388],[132.8120825,65.8059182],[135.2135496,65.8214035],[135.2099039,65.3631796]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMN_N05.11","eo:cloud_cover":98.44386,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.028701,"s2:mean_solar_zenith":44.1980073241091,"s2:mean_solar_azimuth":176.438516584663,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00057,"s2:vegetation_percentage":1.056921,"s2:thin_cirrus_percentage":20.16459,"s2:cloud_shadow_percentage":0.393805,"s2:nodata_pixel_percentage":6.942555,"s2:unclassified_percentage":0.029457,"s2:not_vegetated_percentage":0.044553,"s2:degraded_msi_data_percentage":0.0227,"s2:high_proba_clouds_percentage":46.016845,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":32.26243,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951","bbox":[132.8854324,63.9244911,134.7110691,64.9208241],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R60m/T53WMM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R60m/T53WMM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.7110691,64.9208241],[134.7035955,64.9141124],[134.5536454,64.7774128],[134.4045168,64.6408004],[134.2802415,64.524936],[134.2564905,64.5028569],[134.2103015,64.4586964],[134.1136279,64.3664568],[133.9697259,64.2290907],[133.8236568,64.0922739],[133.6820659,63.954531],[133.6563042,63.9289139],[132.9599395,63.9244911],[132.8854324,64.9091348],[134.7110691,64.9208241]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMM_N05.11","eo:cloud_cover":33.978871,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.19202,"s2:mean_solar_zenith":43.3000574461588,"s2:mean_solar_azimuth":176.500781592237,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.743309,"s2:vegetation_percentage":30.364639,"s2:thin_cirrus_percentage":15.058976,"s2:cloud_shadow_percentage":0.091821,"s2:nodata_pixel_percentage":45.192254,"s2:unclassified_percentage":0.995471,"s2:not_vegetated_percentage":21.746081,"s2:degraded_msi_data_percentage":0.0279,"s2:high_proba_clouds_percentage":7.460166,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.459728,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951","bbox":[132.9535015,63.2747981,133.7470856,64.0177837],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R60m/T53VML_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R60m/T53VML_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.7470856,64.0177837],[133.6820659,63.954531],[133.5430972,63.816342],[133.4042308,63.6782928],[133.2668301,63.5400978],[133.1303171,63.4019607],[133.0054708,63.2747981],[132.9535015,64.0127397],[133.7470856,64.0177837]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53VML","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53VML_N05.11","eo:cloud_cover":12.662388,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.697701,"s2:mean_solar_zenith":42.4024958912698,"s2:mean_solar_azimuth":176.56100877451,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.731281,"s2:vegetation_percentage":71.997678,"s2:thin_cirrus_percentage":12.659788,"s2:cloud_shadow_percentage":0.096674,"s2:nodata_pixel_percentage":86.858964,"s2:unclassified_percentage":0.285579,"s2:not_vegetated_percentage":9.435956,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.000328,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.002272,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951","bbox":[130.913343,62.9866068,133.1897998,64.015435],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R60m/T53VLL_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R60m/T53VLL_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.1897998,63.462151],[133.1303171,63.4019607],[132.994726,63.2638539],[132.8604581,63.1256284],[132.7601712,63.0212492],[131.0515033,62.9866068],[130.913343,63.9696051],[133.1546638,64.015435],[133.1897998,63.462151]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53VLL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53VLL_N05.11","eo:cloud_cover":9.69805,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.908008,"s2:mean_solar_zenith":42.4500229392061,"s2:mean_solar_azimuth":173.818382111021,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.030738,"s2:vegetation_percentage":84.882092,"s2:thin_cirrus_percentage":9.672086,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":4.712111,"s2:unclassified_percentage":0.32355,"s2:not_vegetated_percentage":1.908846,"s2:degraded_msi_data_percentage":0.0223,"s2:high_proba_clouds_percentage":0.000024,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.02594,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951","bbox":[131.1574343,61.3660298,131.9897108,62.195252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R60m/T53VLJ_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R60m/T53VLJ_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.9897108,62.195252],[131.9519214,62.1538178],[131.8263048,62.0146449],[131.7734854,61.9555542],[131.7025895,61.8764038],[131.5792047,61.7370479],[131.4572377,61.5976178],[131.3361918,61.4581338],[131.2569852,61.3660298],[131.1574343,62.1785001],[131.9897108,62.195252]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53VLJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53VLJ_N05.11","eo:cloud_cover":0.438324,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.222577,"s2:mean_solar_zenith":40.6529531920545,"s2:mean_solar_azimuth":174.0039605909,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":95.807463,"s2:thin_cirrus_percentage":0.000185,"s2:cloud_shadow_percentage":1.201613,"s2:nodata_pixel_percentage":83.840901,"s2:unclassified_percentage":0.557658,"s2:not_vegetated_percentage":0.61831,"s2:degraded_msi_data_percentage":0.004,"s2:high_proba_clouds_percentage":0.072151,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.365989,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951","bbox":[131.2581395,66.5592595,133.9254764,67.5985039],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R60m/T52WFV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R60m/T52WFV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.3518535,67.5985039],[133.9254764,67.5407149],[133.7299138,66.5592595],[131.2581395,66.6143589],[131.3518535,67.5985039]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFV_N05.11","eo:cloud_cover":69.579434,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.356283,"s2:mean_solar_zenith":45.999385627067,"s2:mean_solar_azimuth":174.519173584484,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":26.530567,"s2:thin_cirrus_percentage":45.736045,"s2:cloud_shadow_percentage":0.558913,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.08071,"s2:not_vegetated_percentage":2.894091,"s2:degraded_msi_data_percentage":0.0213,"s2:high_proba_clouds_percentage":3.3369,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":20.506491,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951","bbox":[131.1796268,65.66542,133.7467491,66.7025631],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R60m/T52WFU_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R60m/T52WFU_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.2662054,66.7025631],[133.7467491,66.6472313],[133.5660076,65.66542],[131.1796268,65.7182494],[131.2662054,66.7025631]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFU_N05.11","eo:cloud_cover":80.381471,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.040909,"s2:mean_solar_zenith":45.1111715791707,"s2:mean_solar_azimuth":174.346133667649,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":14.363141,"s2:thin_cirrus_percentage":37.047416,"s2:cloud_shadow_percentage":2.320102,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.216419,"s2:not_vegetated_percentage":1.677957,"s2:degraded_msi_data_percentage":0.0075,"s2:high_proba_clouds_percentage":15.949947,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":27.384108,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951","bbox":[131.1068437,64.7707414,133.5814932,65.8059307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R60m/T52WFT_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R60m/T52WFT_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.1870434,65.8059307],[133.5814932,65.7528862],[133.4140108,64.7707414],[131.1068437,64.8214508],[131.1870434,65.8059307]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFT_N05.11","eo:cloud_cover":57.527,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.089396,"s2:mean_solar_zenith":44.2222573271832,"s2:mean_solar_azimuth":174.178715827812,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.03204,"s2:vegetation_percentage":30.414471,"s2:thin_cirrus_percentage":18.254933,"s2:cloud_shadow_percentage":2.321787,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.492108,"s2:not_vegetated_percentage":7.543512,"s2:degraded_msi_data_percentage":0.0011,"s2:high_proba_clouds_percentage":20.062615,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":19.209455,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951","bbox":[131.0392454,63.8757772,133.4283789,64.9091468],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R60m/T52WFS_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R60m/T52WFS_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.1137228,64.9091468],[133.4283789,64.8582363],[133.2727989,63.8757772],[131.0392454,63.9245026],[131.1137228,64.9091468]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFS_N05.11","eo:cloud_cover":9.216897,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.248951,"s2:mean_solar_zenith":43.3331813369737,"s2:mean_solar_azimuth":174.015842397136,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.667234,"s2:vegetation_percentage":54.976976,"s2:thin_cirrus_percentage":7.174903,"s2:cloud_shadow_percentage":0.037306,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.938136,"s2:not_vegetated_percentage":21.746583,"s2:degraded_msi_data_percentage":0.0156,"s2:high_proba_clouds_percentage":0.313619,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.728375,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951","bbox":[134.3782739,71.0251958,134.9105306,71.4159842],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R60m/T52WFE_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R60m/T52WFE_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.3782739,71.0346353],[134.4459812,71.0843005],[134.6351874,71.2210221],[134.8269898,71.3575522],[134.9105306,71.4159842],[134.7889605,71.0251958],[134.3782739,71.0346353]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":14.570828,"s2:mean_solar_zenith":50.4399499537414,"s2:mean_solar_azimuth":175.523721823951,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":68.903619,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":97.471303,"s2:unclassified_percentage":0.027554,"s2:not_vegetated_percentage":16.497999,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951","bbox":[132.1782345,69.2398107,134.5616186,70.2479433],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R60m/T52WFC_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R60m/T52WFC_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.1782345,69.2882325],[132.1831794,69.2925464],[132.3442605,69.4312167],[132.5072291,69.5697717],[132.6725396,69.7081763],[132.8399998,69.846495],[133.010646,69.9845106],[133.1819808,70.122665],[133.340403,70.2479433],[134.5616186,70.2200158],[134.3092739,69.2398107],[132.1782345,69.2882325]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFC_N05.11","eo:cloud_cover":0.066171,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.05008,"s2:mean_solar_zenith":48.664054088493,"s2:mean_solar_azimuth":175.086798999784,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.013523,"s2:vegetation_percentage":85.094708,"s2:thin_cirrus_percentage":0.066171,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":41.09005,"s2:unclassified_percentage":0.000608,"s2:not_vegetated_percentage":14.774911,"s2:degraded_msi_data_percentage":0.0032,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951","bbox":[131.4354563,68.3470175,134.3308902,69.3743442],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R60m/T52WFB_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R60m/T52WFB_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.4627689,68.6496772],[131.5574948,68.7362757],[131.7116764,68.8755213],[131.8668155,69.0147346],[132.0240415,69.1537179],[132.1831794,69.2925464],[132.2781968,69.3743442],[134.3308902,69.3276752],[134.0998643,68.3470175],[131.4354563,68.4071896],[131.4627689,68.6496772]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFB_N05.11","eo:cloud_cover":1.499358,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.444134,"s2:mean_solar_zenith":47.7763639288029,"s2:mean_solar_azimuth":174.88800636576,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000163,"s2:vegetation_percentage":77.548021,"s2:thin_cirrus_percentage":0.589012,"s2:cloud_shadow_percentage":0.710457,"s2:nodata_pixel_percentage":10.278857,"s2:unclassified_percentage":0.299622,"s2:not_vegetated_percentage":19.498242,"s2:degraded_msi_data_percentage":0.0174,"s2:high_proba_clouds_percentage":0.476632,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.433714,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951","bbox":[129.4326646,66.6110311,131.581589,67.6046234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R60m/T52WEV_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R60m/T52WEV_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.4326646,66.627171],[129.4395568,66.6346719],[129.569974,66.7756814],[129.7029067,66.9163859],[129.8368444,67.0570373],[129.9718905,67.1976125],[130.1092595,67.3378121],[130.2467967,67.4780835],[130.3719703,67.6046234],[131.581589,67.5950132],[131.478743,66.6110311],[129.4326646,66.627171]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEV_N05.11","eo:cloud_cover":56.754273,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.137858,"s2:mean_solar_zenith":46.1415775723871,"s2:mean_solar_azimuth":171.570681979177,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.010488,"s2:vegetation_percentage":27.792656,"s2:thin_cirrus_percentage":26.870412,"s2:cloud_shadow_percentage":9.748025,"s2:nodata_pixel_percentage":35.875851,"s2:unclassified_percentage":2.108658,"s2:not_vegetated_percentage":3.448037,"s2:degraded_msi_data_percentage":0.0056,"s2:high_proba_clouds_percentage":15.36417,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.519691,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951","bbox":[128.9995566,65.715059,131.487595,66.7148022],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R60m/T52WEU_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R60m/T52WEU_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995566,66.1472915],[129.0568185,66.2112587],[129.1820685,66.3526398],[129.3100284,66.4937028],[129.4395568,66.6346719],[129.5136678,66.7148022],[131.487595,66.6992212],[131.3925776,65.715059],[128.9995639,65.7338076],[128.9995566,66.1472915]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEU_N05.11","eo:cloud_cover":58.694005,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.187807,"s2:mean_solar_zenith":45.2540563512696,"s2:mean_solar_azimuth":171.460375519743,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.020823,"s2:vegetation_percentage":19.575879,"s2:thin_cirrus_percentage":6.623583,"s2:cloud_shadow_percentage":7.282652,"s2:nodata_pixel_percentage":6.247365,"s2:unclassified_percentage":4.842953,"s2:not_vegetated_percentage":9.395286,"s2:degraded_msi_data_percentage":0.0214,"s2:high_proba_clouds_percentage":38.061482,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.008942,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951","bbox":[128.9995624,64.8183886,131.4007172,65.8215524],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R60m/T52WET_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R60m/T52WET_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995624,65.8215524],[131.4007172,65.8027272],[131.3126985,64.8183886],[128.9995785,64.8363831],[128.9995624,65.8215524]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WET","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WET_N05.11","eo:cloud_cover":41.352487,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.192166,"s2:mean_solar_zenith":44.3658966769181,"s2:mean_solar_azimuth":171.348870647938,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.034827,"s2:vegetation_percentage":27.956703,"s2:thin_cirrus_percentage":4.539822,"s2:cloud_shadow_percentage":6.532108,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":5.609962,"s2:not_vegetated_percentage":16.073813,"s2:degraded_msi_data_percentage":0.0221,"s2:high_proba_clouds_percentage":25.178194,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.634471,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951","bbox":[128.9995771,63.9215604,131.3202484,64.9241384],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R60m/T52WES_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R60m/T52WES_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995771,64.9241384],[131.3202484,64.9060724],[131.2385085,63.9215604],[128.999592,63.9388493],[128.9995771,64.9241384]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WES","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WES_N05.11","eo:cloud_cover":5.759115,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.227425,"s2:mean_solar_zenith":43.4776424575435,"s2:mean_solar_azimuth":171.235576308309,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.078951,"s2:vegetation_percentage":69.004923,"s2:thin_cirrus_percentage":4.732712,"s2:cloud_shadow_percentage":0.28985,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.741132,"s2:not_vegetated_percentage":19.847569,"s2:degraded_msi_data_percentage":0.0189,"s2:high_proba_clouds_percentage":0.423821,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.602583,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951","bbox":[131.2005488,68.4035546,131.7341807,68.8957154],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R60m/T52WEB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R60m/T52WEB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.2005488,68.407332],[131.253871,68.4573715],[131.4049718,68.5968391],[131.5574948,68.7362757],[131.7116764,68.8755213],[131.7341807,68.8957154],[131.6733361,68.4035546],[131.2005488,68.407332]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEB_N05.11","eo:cloud_cover":2.489419,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":47.9173483017124,"s2:mean_solar_azimuth":171.790393089591,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.960938,"s2:thin_cirrus_percentage":2.489419,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":95.824677,"s2:unclassified_percentage":0.003894,"s2:not_vegetated_percentage":37.49553,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951","bbox":[130.2858757,67.5073771,131.6837049,68.4942905],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R60m/T52WEA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R60m/T52WEA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[130.2858757,67.5175891],[130.3854935,67.6182942],[130.5247857,67.7586223],[130.6679007,67.8983912],[130.8118693,68.038218],[130.9577475,68.1779816],[131.1050539,68.317716],[131.253871,68.4573715],[131.2938695,68.4942905],[131.6837049,68.491174],[131.5720525,67.5073771],[130.2858757,67.5175891]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEA_N05.11","eo:cloud_cover":44.600189,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.317938,"s2:mean_solar_zenith":47.0295225315839,"s2:mean_solar_azimuth":171.680458025836,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":47.277573,"s2:thin_cirrus_percentage":40.49665,"s2:cloud_shadow_percentage":0.390534,"s2:nodata_pixel_percentage":68.255192,"s2:unclassified_percentage":0.01643,"s2:not_vegetated_percentage":7.39556,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.938311,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.165226,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951","bbox":[128.6313048,65.7299121,129.2184871,66.3927877],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R60m/T52WDU_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R60m/T52WDU_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.6313048,65.7299121],[128.6803133,65.7885544],[128.8051215,65.929389],[128.9306399,66.0703047],[129.0568185,66.2112587],[129.1820685,66.3526398],[129.2184871,66.3927877],[129.2128247,65.7336593],[128.6313048,65.7299121]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WDU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WDU_N05.11","eo:cloud_cover":87.409705,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.016386,"s2:mean_solar_zenith":45.4096751438101,"s2:mean_solar_azimuth":168.577958033717,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.006044,"s2:vegetation_percentage":0.90118,"s2:thin_cirrus_percentage":1.310954,"s2:cloud_shadow_percentage":6.273145,"s2:nodata_pixel_percentage":92.204446,"s2:unclassified_percentage":1.957238,"s2:not_vegetated_percentage":3.422431,"s2:degraded_msi_data_percentage":0.0014,"s2:high_proba_clouds_percentage":70.731151,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.367594,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951","bbox":[127.8753205,64.8277285,129.2135496,65.8214035],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R60m/T52WDT_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R60m/T52WDT_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.8753205,64.8277285],[127.9655371,64.9388521],[128.0824097,65.080645],[128.2006112,65.2223042],[128.3185328,65.3641777],[128.4419513,65.50498],[128.5616802,65.6466009],[128.6803133,65.7885544],[128.7065269,65.8181341],[129.2135496,65.8214035],[129.2057115,64.8362408],[127.8753205,64.8277285]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WDT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WDT_N05.11","eo:cloud_cover":92.608041,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003467,"s2:mean_solar_zenith":44.5226742738124,"s2:mean_solar_azimuth":168.523026107826,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.003244,"s2:vegetation_percentage":2.630634,"s2:thin_cirrus_percentage":1.981442,"s2:cloud_shadow_percentage":0.228093,"s2:nodata_pixel_percentage":61.34249,"s2:unclassified_percentage":2.109787,"s2:not_vegetated_percentage":1.963161,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":80.711335,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.915261,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951","bbox":[127.1646008,63.925791,129.2063838,64.9239955],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R60m/T52WDS_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R60m/T52WDS_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.1646008,63.925791],[127.1790362,63.9448436],[127.2877065,64.0870749],[127.3983676,64.2290554],[127.5091714,64.3712024],[127.6227764,64.5129161],[127.7367608,64.6547273],[127.8502661,64.7968679],[127.9469287,64.9159314],[129.2063838,64.9239955],[129.1991056,63.9387126],[127.1646008,63.925791]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WDS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WDS_N05.11","eo:cloud_cover":39.816773,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.976928,"s2:mean_solar_zenith":43.6356587032227,"s2:mean_solar_azimuth":168.459967188638,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.053122,"s2:vegetation_percentage":42.942822,"s2:thin_cirrus_percentage":5.197151,"s2:cloud_shadow_percentage":1.370669,"s2:nodata_pixel_percentage":27.974859,"s2:unclassified_percentage":2.059083,"s2:not_vegetated_percentage":11.335365,"s2:degraded_msi_data_percentage":0.0083,"s2:high_proba_clouds_percentage":26.782978,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":7.836644,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951","bbox":[130.9763539,62.9899815,133.2862441,64.0127512],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R60m/T52VFR_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R60m/T52VFR_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.2162377,63.4889035],[133.1303171,63.4019607],[132.994726,63.2638539],[132.8604581,63.1256284],[132.7301294,62.9899815],[130.9763539,63.0279443],[131.0456808,64.0127512],[133.2862441,63.9638363],[133.2162377,63.4889035]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFR_N05.11","eo:cloud_cover":10.351101,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.941527,"s2:mean_solar_zenith":42.4444820685437,"s2:mean_solar_azimuth":173.856552211937,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.02482,"s2:vegetation_percentage":84.155053,"s2:thin_cirrus_percentage":10.325257,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":4.998215,"s2:unclassified_percentage":0.317888,"s2:not_vegetated_percentage":2.000846,"s2:degraded_msi_data_percentage":0.0214,"s2:high_proba_clouds_percentage":0.000035,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.025809,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951","bbox":[130.9176451,62.1093539,132.8127904,63.1156693],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R60m/T52VFQ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R60m/T52VFQ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.8127904,63.0760156],[132.7275337,62.9872799],[132.5959738,62.8488806],[132.4656772,62.7103375],[132.3362041,62.5716607],[132.2074656,62.4328557],[132.0795897,62.2939248],[132.014806,62.2227676],[131.9519214,62.1538178],[131.9117885,62.1093539],[130.9176451,62.1307003],[130.9823142,63.1156693],[132.8127904,63.0760156]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFQ_N05.11","eo:cloud_cover":5.314786,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.061753,"s2:mean_solar_zenith":41.5550985030653,"s2:mean_solar_azimuth":173.69971435638,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":91.024876,"s2:thin_cirrus_percentage":5.117859,"s2:cloud_shadow_percentage":0.524357,"s2:nodata_pixel_percentage":34.316128,"s2:unclassified_percentage":0.436825,"s2:not_vegetated_percentage":0.565136,"s2:degraded_msi_data_percentage":0.0293,"s2:high_proba_clouds_percentage":0.036056,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.160871,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951","bbox":[130.8627658,61.2274397,131.9899516,62.2184397],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R60m/T52VFP_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R60m/T52VFP_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.9899516,62.1955161],[131.9519214,62.1538178],[131.8263048,62.0146449],[131.7734854,61.9555542],[131.7025895,61.8764038],[131.5792047,61.7370479],[131.4572377,61.5976178],[131.3361918,61.4581338],[131.2161762,61.3185757],[131.1384299,61.2274397],[130.8627658,61.2333094],[130.9232108,62.2184397],[131.9899516,62.1955161]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFP_N05.11","eo:cloud_cover":0.242587,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.536898,"s2:mean_solar_zenith":40.6655719220419,"s2:mean_solar_azimuth":173.54448998684,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":96.210164,"s2:thin_cirrus_percentage":0.000156,"s2:cloud_shadow_percentage":0.661625,"s2:nodata_pixel_percentage":68.093097,"s2:unclassified_percentage":0.582098,"s2:not_vegetated_percentage":0.597519,"s2:degraded_msi_data_percentage":0.0145,"s2:high_proba_clouds_percentage":0.039618,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.202812,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951","bbox":[130.8423379,60.8748244,131.2124947,61.3216015],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R60m/T52VFN_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R60m/T52VFN_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.2124947,61.3142602],[131.0970869,61.1789765],[130.9797062,61.0391954],[130.8627034,60.8993834],[130.8423379,60.8748244],[130.868005,61.3216015],[131.2124947,61.3142602]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFN_N05.11","eo:cloud_cover":0.009899,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.141616,"s2:mean_solar_zenith":39.7764401618711,"s2:mean_solar_azimuth":173.39022892516,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.690014,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.003032,"s2:nodata_pixel_percentage":96.279573,"s2:unclassified_percentage":0.075267,"s2:not_vegetated_percentage":0.072146,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.000357,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.009542,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951","bbox":[128.9995907,63.0251146,131.2455715,64.0271539],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R60m/T52VER_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R60m/T52VER_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995907,64.0271539],[131.2455715,64.0097976],[131.1694829,63.0251146],[128.9996046,63.041742],[128.9995907,64.0271539]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VER","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VER_N05.11","eo:cloud_cover":4.716614,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":7.009887,"s2:mean_solar_zenith":42.5898323635958,"s2:mean_solar_azimuth":171.120065448574,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000189,"s2:vegetation_percentage":86.070371,"s2:thin_cirrus_percentage":4.71378,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.491173,"s2:not_vegetated_percentage":1.652437,"s2:degraded_msi_data_percentage":0.0047,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.002833,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951","bbox":[128.9996034,62.1279766,131.1760247,63.1295192],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R60m/T52VEQ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R60m/T52VEQ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9996034,63.1295192],[131.1760247,63.1128289],[131.1050472,62.1279766],[128.9996163,62.1439815],[128.9996034,63.1295192]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEQ_N05.11","eo:cloud_cover":4.926161,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":6.093029,"s2:mean_solar_zenith":41.7014131027106,"s2:mean_solar_azimuth":171.001607845712,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.765083,"s2:thin_cirrus_percentage":4.925355,"s2:cloud_shadow_percentage":0.000561,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.629424,"s2:not_vegetated_percentage":3.559852,"s2:degraded_msi_data_percentage":0.0033,"s2:high_proba_clouds_percentage":0.000013,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000793,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951","bbox":[128.9996152,61.2306854,131.1111559,62.2317701],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R60m/T52VEP_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R60m/T52VEP_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9996152,62.2317701],[131.1111559,62.2157059],[131.0448136,61.2306854],[128.9996273,61.2461037],[128.9996152,62.2317701]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEP_N05.11","eo:cloud_cover":0.008547,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":4.470636,"s2:mean_solar_zenith":40.8129259048393,"s2:mean_solar_azimuth":170.87977634975,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":92.479879,"s2:thin_cirrus_percentage":0.000282,"s2:cloud_shadow_percentage":0.037405,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.522623,"s2:not_vegetated_percentage":2.433456,"s2:degraded_msi_data_percentage":0.0185,"s2:high_proba_clouds_percentage":0.000899,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.007366,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951","bbox":[128.9996263,60.3381652,131.050564,61.3344425],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R60m/T52VEN_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R60m/T52VEN_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.0372417,61.1077108],[130.9797062,61.0391954],[130.8627034,60.8993834],[130.7465924,60.7593638],[130.6309458,60.619276],[130.575031,60.5508652],[130.5154066,60.4780474],[130.4017775,60.3381652],[128.9996376,60.3486448],[128.9996263,61.3344425],[131.050564,61.318968],[131.0372417,61.1077108]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEN_N05.11","eo:cloud_cover":0.068222,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.089501,"s2:mean_solar_zenith":39.9249157120179,"s2:mean_solar_azimuth":170.754112760966,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.534261,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.162721,"s2:nodata_pixel_percentage":11.716418,"s2:unclassified_percentage":0.056872,"s2:not_vegetated_percentage":0.084025,"s2:degraded_msi_data_percentage":0.0231,"s2:high_proba_clouds_percentage":0.008475,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.059747,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951","bbox":[128.9996366,59.4453304,130.4726708,60.4364568],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R60m/T52VEM_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R60m/T52VEM_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[130.4726708,60.4254378],[130.4014547,60.3377678],[130.2889588,60.197265],[130.2189943,60.109708],[130.1775702,60.0578764],[130.176963,60.0571081],[130.1767648,60.05686],[130.1755344,60.0553004],[130.0665401,59.9173806],[129.9561049,59.7769528],[129.8471001,59.6363193],[129.7393285,59.4955713],[129.7009413,59.4453304],[128.9996473,59.4505251],[128.9996366,60.4364568],[130.4726708,60.4254378]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEM_N05.11","eo:cloud_cover":34.67139,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.262607,"s2:mean_solar_zenith":39.0363297021797,"s2:mean_solar_azimuth":170.623913261053,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":64.85399,"s2:thin_cirrus_percentage":22.233857,"s2:cloud_shadow_percentage":0.013978,"s2:nodata_pixel_percentage":45.096695,"s2:unclassified_percentage":0.034989,"s2:not_vegetated_percentage":0.151711,"s2:degraded_msi_data_percentage":0.0303,"s2:high_proba_clouds_percentage":1.785089,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.652445,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951","bbox":[128.9996463,58.5520155,129.7677234,59.5383491],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R60m/T52VEL_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R60m/T52VEL_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.7677234,59.5326546],[129.7393285,59.4955713],[129.6318376,59.3548878],[129.5256621,59.2140441],[129.4200495,59.0730297],[129.3148762,58.9319202],[129.2100621,58.7908103],[129.1061322,58.6495909],[129.0358358,58.5520155],[128.9996563,58.5522811],[128.9996463,59.5383491],[129.7677234,59.5326546]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEL_N05.11","eo:cloud_cover":91.924906,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":38.1477121807761,"s2:mean_solar_azimuth":170.48875262019,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":7.422899,"s2:thin_cirrus_percentage":11.432301,"s2:cloud_shadow_percentage":0.642389,"s2:nodata_pixel_percentage":79.423267,"s2:unclassified_percentage":0.001322,"s2:not_vegetated_percentage":0.008481,"s2:degraded_msi_data_percentage":0.006,"s2:high_proba_clouds_percentage":17.982896,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":62.509716,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951","bbox":[128.9996555,58.5018767,129.0991687,58.6406562],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R60m/T52VEK_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R60m/T52VEK_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.0991687,58.6399252],[129.0041457,58.5080279],[128.9996568,58.5018767],[128.9996555,58.6406562],[129.0991687,58.6399252]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEK_N05.11","eo:cloud_cover":100.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":37.2596152541718,"s2:mean_solar_azimuth":170.348076961828,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.012802,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.663079,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":59.963173,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":40.024027,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951","bbox":[126.977122,63.0279332,129.1997345,64.0270166],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R60m/T52VDR_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R60m/T52VDR_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.977122,63.6773387],[127.0712145,63.802535],[127.1790362,63.9448436],[127.2322652,64.0145115],[129.1997345,64.0270166],[129.1929602,63.0416105],[127.0228562,63.0279332],[126.977122,63.6773387]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDR_N05.11","eo:cloud_cover":0.046248,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":8.477577,"s2:mean_solar_zenith":42.7491680001305,"s2:mean_solar_azimuth":168.388860780674,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":88.414162,"s2:thin_cirrus_percentage":0.037266,"s2:cloud_shadow_percentage":0.033034,"s2:nodata_pixel_percentage":2.253692,"s2:unclassified_percentage":0.710184,"s2:not_vegetated_percentage":2.224082,"s2:degraded_msi_data_percentage":0.0206,"s2:high_proba_clouds_percentage":0.00058,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.008401,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951","bbox":[127.0168934,62.1306897,129.1935426,63.1293872],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R60m/T52VDQ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R60m/T52VDQ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0168934,63.1156582],[129.1935426,63.1293872],[129.1872239,62.143855],[127.0815883,62.1306897],[127.0168934,63.1156582]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDQ_N05.11","eo:cloud_cover":4.532895,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.381983,"s2:mean_solar_zenith":41.8621575784698,"s2:mean_solar_azimuth":168.309427119423,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.332455,"s2:thin_cirrus_percentage":0.932575,"s2:cloud_shadow_percentage":4.556654,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.507586,"s2:not_vegetated_percentage":6.684162,"s2:degraded_msi_data_percentage":0.0222,"s2:high_proba_clouds_percentage":1.081294,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.519026,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951","bbox":[127.0760204,61.2332992,129.1877677,62.231643],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R60m/T52VDP_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R60m/T52VDP_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0760204,62.2184291],[129.1877677,62.231643],[129.1818621,61.2459818],[127.1364896,61.2332992],[127.0760204,62.2184291]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDP_N05.11","eo:cloud_cover":5.962572,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.812217,"s2:mean_solar_zenith":40.975169144676,"s2:mean_solar_azimuth":168.221622562471,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.394979,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":5.817081,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.569607,"s2:not_vegetated_percentage":1.407165,"s2:degraded_msi_data_percentage":0.016,"s2:high_proba_clouds_percentage":2.054761,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.907811,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951","bbox":[127.1312482,60.3363003,129.1823739,61.3343201],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R60m/T52VDN_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R60m/T52VDN_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.1312482,61.3215913],[129.1823739,61.3343201],[129.1768439,60.3485273],[127.1878754,60.3363003],[127.1312482,61.3215913]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDN_N05.11","eo:cloud_cover":0.321011,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.933388,"s2:mean_solar_zenith":40.0887563936172,"s2:mean_solar_azimuth":168.125212521695,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":95.36674,"s2:thin_cirrus_percentage":0.000272,"s2:cloud_shadow_percentage":0.706696,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.184877,"s2:not_vegetated_percentage":0.423277,"s2:degraded_msi_data_percentage":0.0017,"s2:high_proba_clouds_percentage":0.067886,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.252853,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951","bbox":[127.1829927,59.4386163,129.1773207,60.4363388],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R60m/T52VDM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R60m/T52VDM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.1829927,60.4240684],[129.1773207,60.4363388],[129.1721336,59.4504118],[127.236112,59.4386163],[127.1829927,60.4240684]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDM_N05.11","eo:cloud_cover":47.327846,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.029535,"s2:mean_solar_zenith":39.2018693815406,"s2:mean_solar_azimuth":168.019860507826,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":51.659262,"s2:thin_cirrus_percentage":16.004343,"s2:cloud_shadow_percentage":0.865906,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.025936,"s2:not_vegetated_percentage":0.089638,"s2:degraded_msi_data_percentage":0.0084,"s2:high_proba_clouds_percentage":12.341492,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.982011,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951","bbox":[127.2315279,58.5407855,129.1725812,59.5382354],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R60m/T52VDL_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R60m/T52VDL_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.1686087,58.7344837],[129.1061322,58.6495909],[129.0353728,58.5513728],[127.2814375,58.5407855],[127.2315279,59.5263988],[129.1725812,59.5382354],[129.1686087,58.7344837]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDL_N05.11","eo:cloud_cover":93.35587,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.016872,"s2:mean_solar_zenith":38.3150631080366,"s2:mean_solar_azimuth":167.905246417085,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":5.907575,"s2:thin_cirrus_percentage":26.277691,"s2:cloud_shadow_percentage":0.566101,"s2:nodata_pixel_percentage":0.694115,"s2:unclassified_percentage":0.058368,"s2:not_vegetated_percentage":0.094859,"s2:degraded_msi_data_percentage":0.028,"s2:high_proba_clouds_percentage":24.890532,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":42.187646,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951","bbox":[127.2771006,57.6433463,129.0993167,58.6401306],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R60m/T52VDK_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R60m/T52VDK_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.0993167,58.6401306],[129.0041457,58.5080279],[128.9655697,58.4551675],[128.9003554,58.3658761],[128.7965655,58.2250694],[128.7334728,58.1337096],[128.6989907,58.0840318],[128.5969669,57.9430622],[128.497614,57.8016144],[128.4011714,57.6596215],[128.3943184,57.6497449],[127.3240672,57.6433463],[127.2771006,58.6291209],[129.0993167,58.6401306]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDK_N05.11","eo:cloud_cover":99.998522,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":37.4288897872923,"s2:mean_solar_azimuth":167.781074358126,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":9e-6,"s2:thin_cirrus_percentage":1.261552,"s2:cloud_shadow_percentage":0.001149,"s2:nodata_pixel_percentage":22.927535,"s2:unclassified_percentage":0.000142,"s2:not_vegetated_percentage":0.000181,"s2:degraded_msi_data_percentage":0.0265,"s2:high_proba_clouds_percentage":75.842607,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":22.894354,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951","bbox":[127.3200079,56.7452211,128.4543698,57.7379458],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R60m/T52VDJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R60m/T52VDJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.4543698,57.7379458],[128.4011714,57.6596215],[128.3029818,57.518109],[128.2067018,57.3761853],[128.1100626,57.2343255],[128.0110463,57.0930677],[127.9190438,56.950263],[127.8253816,56.8079231],[127.7851523,56.7477124],[127.3642661,56.7452211],[127.3200079,57.7311575],[128.4543698,57.7379458]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDJ_N05.11","eo:cloud_cover":88.149291,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.006661,"s2:mean_solar_zenith":36.5423098098697,"s2:mean_solar_azimuth":167.646738291023,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.010077,"s2:vegetation_percentage":6.651367,"s2:thin_cirrus_percentage":9.607031,"s2:cloud_shadow_percentage":2.944999,"s2:nodata_pixel_percentage":57.660306,"s2:unclassified_percentage":0.658542,"s2:not_vegetated_percentage":1.438749,"s2:degraded_msi_data_percentage":0.0314,"s2:high_proba_clouds_percentage":44.659731,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":33.882529,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951","bbox":[127.3604383,56.1382728,127.8437979,56.8359107],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R60m/T52VDH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R60m/T52VDH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.8437979,56.8359107],[127.8253816,56.8079231],[127.7844507,56.7466624],[127.7298105,56.6651172],[127.6636084,56.5627038],[127.6382617,56.5235954],[127.5710385,56.4205765],[127.5448612,56.3805035],[127.4530232,56.238231],[127.4230386,56.1907083],[127.3898619,56.1382728],[127.3604383,56.8330467],[127.8437979,56.8359107]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDH_N05.11","eo:cloud_cover":99.999857,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":35.6558828244402,"s2:mean_solar_azimuth":167.501766686448,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.686651,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":90.70968,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000143,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":80.570889,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.742315,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951","bbox":[126.4913407,63.0157988,127.2172106,63.9206225],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R60m/T52VCR_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R60m/T52VCR_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.4913407,63.0157988],[126.5442443,63.0895601],[126.5914974,63.1545953],[126.6477818,63.2318841],[126.7522213,63.3745676],[126.7741412,63.4043398],[126.8578044,63.5175778],[126.9641677,63.6601022],[127.0712145,63.802535],[127.1606848,63.9206225],[127.2172106,63.0305154],[126.4913407,63.0157988]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCR_N05.11","eo:cloud_cover":0.115362,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.82724,"s2:mean_solar_zenith":42.9221743799511,"s2:mean_solar_azimuth":165.669840361009,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":96.303809,"s2:thin_cirrus_percentage":0.00009,"s2:cloud_shadow_percentage":0.260315,"s2:nodata_pixel_percentage":85.300654,"s2:unclassified_percentage":0.439103,"s2:not_vegetated_percentage":1.004424,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.013791,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.101481,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951","bbox":[125.8574215,62.1047625,127.2701768,63.1182501],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R60m/T52VCQ_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R60m/T52VCQ_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.8574215,62.1047625],[125.9440647,62.232065],[126.041841,62.3750828],[126.1404532,62.5180708],[126.2399976,62.661007],[126.340658,62.8038308],[126.4418096,62.9467397],[126.5442443,63.0895601],[126.5554127,63.1049313],[127.2118332,63.1182501],[127.2701768,62.1331753],[125.8574215,62.1047625]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCQ_N05.11","eo:cloud_cover":5.341376,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.304834,"s2:mean_solar_zenith":42.0370052606386,"s2:mean_solar_azimuth":165.629689768671,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":82.501113,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":7.249346,"s2:nodata_pixel_percentage":51.830238,"s2:unclassified_percentage":0.722848,"s2:not_vegetated_percentage":3.875196,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.534252,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.807124,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951","bbox":[125.2743035,61.1949732,127.3196877,62.2209238],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R60m/T52VCP_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R60m/T52VCP_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.2743035,61.2246888],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3699042,61.3723446],[125.4636208,61.5157764],[125.5065532,61.5809699],[125.5583435,61.6594893],[125.654055,61.8027201],[125.749814,61.9460176],[125.8467433,62.0890734],[125.9180275,62.1938091],[127.2651556,62.2209238],[127.3196877,61.2356936],[125.2779445,61.1949732],[125.2743035,61.2246888]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCP_N05.11","eo:cloud_cover":0.771749,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.248412,"s2:mean_solar_zenith":41.1519640110838,"s2:mean_solar_azimuth":165.576204350518,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.241757,"s2:thin_cirrus_percentage":0.030352,"s2:cloud_shadow_percentage":0.985723,"s2:nodata_pixel_percentage":17.972867,"s2:unclassified_percentage":0.266751,"s2:not_vegetated_percentage":4.414283,"s2:degraded_msi_data_percentage":0.0132,"s2:high_proba_clouds_percentage":0.193152,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.548245,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951","bbox":[125.2742181,60.2993491,127.3660277,61.3239944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R60m/T52VCN_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R60m/T52VCN_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.2742181,61.2245552],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3127039,61.284028],[127.314961,61.3239944],[127.3660277,60.3386088],[125.3803718,60.2993491],[125.2742181,61.2245552]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCN_N05.11","eo:cloud_cover":5.284181,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.514631,"s2:mean_solar_zenith":40.2676107637875,"s2:mean_solar_azimuth":165.509433344206,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":88.531071,"s2:thin_cirrus_percentage":2.980587,"s2:cloud_shadow_percentage":2.747851,"s2:nodata_pixel_percentage":0.092269,"s2:unclassified_percentage":0.387848,"s2:not_vegetated_percentage":0.435736,"s2:degraded_msi_data_percentage":0.0223,"s2:high_proba_clouds_percentage":0.849839,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.453755,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951","bbox":[125.3706384,59.4029675,127.4095273,60.426385],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R60m/T52VCM_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R60m/T52VCM_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.3706384,60.386986],[127.3616245,60.426385],[127.4095273,59.4408433],[125.4765375,59.4029675],[125.3706384,60.386986]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCM_N05.11","eo:cloud_cover":54.562652,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000969,"s2:mean_solar_zenith":39.3829023138874,"s2:mean_solar_azimuth":165.429353133968,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":42.078218,"s2:thin_cirrus_percentage":17.758116,"s2:cloud_shadow_percentage":2.886878,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.211021,"s2:not_vegetated_percentage":0.2563,"s2:degraded_msi_data_percentage":0.0222,"s2:high_proba_clouds_percentage":15.312667,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.49187,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951","bbox":[125.467398,58.506372,127.4504014,59.5286335],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R60m/T52VCL_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R60m/T52VCL_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.467398,59.4906256],[127.4053934,59.5286335],[127.4504014,58.5429352],[125.5669133,58.506372],[125.467398,59.4906256]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCL_N05.11","eo:cloud_cover":76.46718,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.084867,"s2:mean_solar_zenith":38.4984031318894,"s2:mean_solar_azimuth":165.335805493598,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001311,"s2:vegetation_percentage":18.992594,"s2:thin_cirrus_percentage":18.077123,"s2:cloud_shadow_percentage":1.707032,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.10983,"s2:not_vegetated_percentage":1.617009,"s2:degraded_msi_data_percentage":0.1382,"s2:high_proba_clouds_percentage":21.402517,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":36.987537,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951","bbox":[125.5582651,57.6101061,127.488844,58.6312781],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R60m/T52VCK_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R60m/T52VCK_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.5582651,58.5945887],[127.4464903,58.6312781],[127.488844,57.6454227],[125.6519254,57.6101061],[125.5582651,58.5945887]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCK_N05.11","eo:cloud_cover":85.446417,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003105,"s2:mean_solar_zenith":37.6146677210644,"s2:mean_solar_azimuth":165.228708429987,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00145,"s2:vegetation_percentage":8.690373,"s2:thin_cirrus_percentage":9.627593,"s2:cloud_shadow_percentage":3.039114,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.310062,"s2:not_vegetated_percentage":1.484424,"s2:degraded_msi_data_percentage":0.0157,"s2:high_proba_clouds_percentage":40.221915,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":35.59691,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951","bbox":[125.6438299,56.7130985,127.5250943,57.7332409],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R60m/T52VCJ_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R60m/T52VCJ_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.6438299,57.6978051],[127.4851834,57.7332409],[127.5250943,56.7472276],[125.7321002,56.7130985],[125.6438299,57.6978051]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCJ_N05.11","eo:cloud_cover":97.759056,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.001977,"s2:mean_solar_zenith":36.7306734519704,"s2:mean_solar_azimuth":165.107555251711,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000153,"s2:vegetation_percentage":0.413011,"s2:thin_cirrus_percentage":4.231559,"s2:cloud_shadow_percentage":1.778043,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.022478,"s2:not_vegetated_percentage":0.022658,"s2:degraded_msi_data_percentage":0.0206,"s2:high_proba_clouds_percentage":46.142748,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":47.384754,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951","bbox":[125.7244654,55.8158913,127.5393279,56.8350599],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R60m/T52VCH_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R60m/T52VCH_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.5393279,56.3719315],[127.4530232,56.238231],[127.4230386,56.1907083],[127.3635027,56.0966123],[127.2728758,55.9543032],[127.2018322,55.8421537],[125.8077653,55.8158913],[125.7244654,56.8008172],[127.5216425,56.8350599],[127.5393279,56.3719315]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCH_N05.11","eo:cloud_cover":99.637979,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":35.8469826643837,"s2:mean_solar_azimuth":164.972040568133,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.049283,"s2:thin_cirrus_percentage":3.240846,"s2:cloud_shadow_percentage":0.29987,"s2:nodata_pixel_percentage":5.534351,"s2:unclassified_percentage":0.01263,"s2:not_vegetated_percentage":0.000239,"s2:degraded_msi_data_percentage":0.0267,"s2:high_proba_clouds_percentage":38.787299,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":57.609838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951","bbox":[125.8005114,54.9190265,127.258534,55.9316633],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R60m/T52UCG_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R60m/T52UCG_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.258534,55.9316633],[127.1827045,55.8119586],[127.0940249,55.6692617],[127.0057939,55.5265009],[126.917857,55.3837001],[126.8299533,55.2409646],[126.74296,55.0980927],[126.6564661,54.9552042],[126.6432996,54.9332676],[125.8792201,54.9190265],[125.8005114,55.9041676],[127.258534,55.9316633]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52UCG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52UCG_N05.11","eo:cloud_cover":98.357725,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":34.9641683856508,"s2:mean_solar_azimuth":164.821706661523,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.787698,"s2:thin_cirrus_percentage":5.856419,"s2:cloud_shadow_percentage":0.69695,"s2:nodata_pixel_percentage":36.292416,"s2:unclassified_percentage":0.155951,"s2:not_vegetated_percentage":0.001677,"s2:degraded_msi_data_percentage":0.0297,"s2:high_proba_clouds_percentage":51.1594,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.34191,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951","bbox":[125.872404,54.0214307,126.6970015,55.0221689],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R60m/T52UCF_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R60m/T52UCF_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.6970015,55.0221689],[126.6564661,54.9552042],[126.5706774,54.8122726],[126.4853614,54.6693457],[126.4006598,54.5263376],[126.3157278,54.3834622],[126.2320757,54.2404286],[126.1492445,54.0972465],[126.1076334,54.0243943],[125.9468576,54.0214307],[125.872404,55.0067836],[126.6970015,55.0221689]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52UCF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52UCF_N05.11","eo:cloud_cover":99.999827,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":34.0812138922962,"s2:mean_solar_azimuth":164.655760015323,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.312156,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":71.359682,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000174,"s2:degraded_msi_data_percentage":0.0129,"s2:high_proba_clouds_percentage":78.24527,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.442401,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951","bbox":[125.9404063,53.7745817,126.1584915,54.1132308],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R60m/T52UCE_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R60m/T52UCE_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.1584915,54.1132308],[126.1492445,54.0972465],[126.0673388,53.9538472],[125.9848749,53.8105611],[125.9643445,53.7745817],[125.9404063,54.1092064],[126.1584915,54.1132308]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52UCE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52UCE_N05.11","eo:cloud_cover":96.291208,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003274,"s2:mean_solar_zenith":33.1987005853998,"s2:mean_solar_azimuth":164.473521748612,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":3.364669,"s2:thin_cirrus_percentage":8.658732,"s2:cloud_shadow_percentage":0.058003,"s2:nodata_pixel_percentage":97.872138,"s2:unclassified_percentage":0.276452,"s2:not_vegetated_percentage":0.006393,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":61.876446,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.756034,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951","bbox":[125.8612845,62.0855865,127.1538391,63.0819513],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R60m/T51VXK_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R60m/T51VXK_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.8612845,62.1104383],[125.9440647,62.232065],[126.041841,62.3750828],[126.1404532,62.5180708],[126.2399976,62.661007],[126.340658,62.8038308],[126.4418096,62.9467397],[126.5387871,63.0819513],[127.1538391,63.0686274],[127.0186771,62.0855865],[125.8612845,62.1104383]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXK_N05.11","eo:cloud_cover":4.719193,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.263164,"s2:mean_solar_zenith":42.0506712037409,"s2:mean_solar_azimuth":165.417113163303,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.87838,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":6.934454,"s2:nodata_pixel_percentage":58.767182,"s2:unclassified_percentage":0.555618,"s2:not_vegetated_percentage":3.645528,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.320873,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.39832,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951","bbox":[125.2742138,61.1898465,127.0303111,62.1970148],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R60m/T51VXJ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R60m/T51VXJ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.2742138,61.2245484],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3699042,61.3723446],[125.4636208,61.5157764],[125.5065532,61.5809699],[125.5583435,61.6594893],[125.654055,61.8027201],[125.749814,61.9460176],[125.8467433,62.0890734],[125.9202093,62.1970148],[127.0303111,62.1731593],[126.903949,61.1898465],[125.2742138,61.2245484]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXJ_N05.11","eo:cloud_cover":0.22014,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.302835,"s2:mean_solar_zenith":41.1867835009883,"s2:mean_solar_azimuth":165.122628454948,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.371725,"s2:thin_cirrus_percentage":0.028434,"s2:cloud_shadow_percentage":0.398179,"s2:nodata_pixel_percentage":34.213015,"s2:unclassified_percentage":0.265908,"s2:not_vegetated_percentage":5.351976,"s2:degraded_msi_data_percentage":0.0064,"s2:high_proba_clouds_percentage":0.036045,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.155662,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951","bbox":[124.8114005,60.2944061,126.914903,61.3117421],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R60m/T51VXH_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R60m/T51VXH_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.8210903,60.5049769],[124.8249807,60.5113176],[124.9138654,60.6549626],[125.0032327,60.7986453],[125.0941823,60.9421125],[125.1853742,61.0856306],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3306535,61.3117421],[126.914903,61.2779804],[126.7965453,60.2944061],[124.8114005,60.3363102],[124.8210903,60.5049769]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXH_N05.11","eo:cloud_cover":7.542037,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.279637,"s2:mean_solar_zenith":40.3238955866215,"s2:mean_solar_azimuth":164.822379623298,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.434909,"s2:thin_cirrus_percentage":3.581131,"s2:cloud_shadow_percentage":4.534865,"s2:nodata_pixel_percentage":9.713614,"s2:unclassified_percentage":0.522446,"s2:not_vegetated_percentage":0.597518,"s2:degraded_msi_data_percentage":0.0176,"s2:high_proba_clouds_percentage":1.54485,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.416056,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951","bbox":[124.7631831,59.3981984,126.8067517,60.4240783],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R60m/T51VXG_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R60m/T51VXG_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.8162812,60.4240783],[126.8067517,60.3820254],[126.6957051,59.3981984],[124.7631831,59.4386259],[124.8162812,60.4240783]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXG_N05.11","eo:cloud_cover":57.89808,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000305,"s2:mean_solar_zenith":39.4610213628829,"s2:mean_solar_azimuth":164.514884494607,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.59192,"s2:thin_cirrus_percentage":17.715505,"s2:cloud_shadow_percentage":4.72235,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.428356,"s2:not_vegetated_percentage":0.355357,"s2:degraded_msi_data_percentage":0.0216,"s2:high_proba_clouds_percentage":14.115481,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":26.067099,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951","bbox":[124.7178757,58.5017681,126.705289,59.5264083],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R60m/T51VXF_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R60m/T51VXF_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.7677654,59.5264083],[126.705289,59.48584],[126.6009344,58.5017681],[124.7178757,58.5407947],[124.7677654,59.5264083]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXF_N05.11","eo:cloud_cover":84.907711,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.051762,"s2:mean_solar_zenith":38.5987462846354,"s2:mean_solar_azimuth":164.199051968167,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00133,"s2:vegetation_percentage":10.837167,"s2:thin_cirrus_percentage":10.934602,"s2:cloud_shadow_percentage":1.625469,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.823939,"s2:not_vegetated_percentage":1.739268,"s2:degraded_msi_data_percentage":0.1559,"s2:high_proba_clouds_percentage":30.019575,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":43.953529,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951","bbox":[124.675263,57.605659,126.6100032,58.6291301],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R60m/T51VXE_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R60m/T51VXE_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.7222109,58.6291301],[126.6100032,58.5899689],[126.5117866,57.605659],[124.675263,57.6433552],[124.7222109,58.6291301]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXE_N05.11","eo:cloud_cover":83.065593,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003457,"s2:mean_solar_zenith":37.737647148645,"s2:mean_solar_azimuth":163.873932455555,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001311,"s2:vegetation_percentage":9.472118,"s2:thin_cirrus_percentage":10.507391,"s2:cloud_shadow_percentage":3.265965,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.934967,"s2:not_vegetated_percentage":2.231472,"s2:degraded_msi_data_percentage":0.0231,"s2:high_proba_clouds_percentage":44.325012,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.233185,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951","bbox":[124.6350802,56.7088008,126.520276,57.7311664],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R60m/T51VXD_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R60m/T51VXD_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6793207,57.7311664],[126.520276,57.6933429],[126.4277099,56.7088008],[124.6350802,56.7452297],[124.6793207,57.7311664]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXD_N05.11","eo:cloud_cover":86.153275,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.045823,"s2:mean_solar_zenith":36.8767690687929,"s2:mean_solar_azimuth":163.537818213253,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000046,"s2:vegetation_percentage":8.697088,"s2:thin_cirrus_percentage":8.987717,"s2:cloud_shadow_percentage":2.873391,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.415002,"s2:not_vegetated_percentage":0.781066,"s2:degraded_msi_data_percentage":0.0258,"s2:high_proba_clouds_percentage":51.484102,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.681457,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951","bbox":[124.5971619,55.811736,126.4357163,56.8330553],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R60m/T51VXC_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R60m/T51VXC_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6389064,56.8330553],[126.4357163,56.7965052],[126.3483613,55.811736],[124.5971619,55.8469564],[124.6389064,56.8330553]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXC_N05.11","eo:cloud_cover":80.37315,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.040378,"s2:mean_solar_zenith":36.0167025115408,"s2:mean_solar_azimuth":163.189664865841,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001802,"s2:vegetation_percentage":13.058314,"s2:thin_cirrus_percentage":9.831335,"s2:cloud_shadow_percentage":5.830083,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.345865,"s2:not_vegetated_percentage":0.336887,"s2:degraded_msi_data_percentage":0.2077,"s2:high_proba_clouds_percentage":28.778237,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.763577,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951","bbox":[124.7173583,60.3337804,125.0193553,60.8240776],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R60m/T51VWH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R60m/T51VWH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.7173583,60.3358065],[124.7368049,60.3676069],[124.8249807,60.5113176],[124.9138654,60.6549626],[125.0032327,60.7986453],[125.0193553,60.8240776],[124.9884362,60.3337804],[124.7173583,60.3358065]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWH_N05.11","eo:cloud_cover":2.231455,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.123831,"s2:mean_solar_zenith":40.6013483995389,"s2:mean_solar_azimuth":162.238556121133,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":94.158405,"s2:thin_cirrus_percentage":1.469386,"s2:cloud_shadow_percentage":1.166013,"s2:nodata_pixel_percentage":96.806538,"s2:unclassified_percentage":0.425865,"s2:not_vegetated_percentage":0.821289,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.140466,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.621603,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951","bbox":[124.1812178,59.4361854,124.9937932,60.4232067],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R60m/T51VWG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R60m/T51VWG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.1812178,59.4417727],[124.2178591,59.5041056],[124.3024279,59.6482388],[124.3884266,59.7921383],[124.4747037,59.9360939],[124.5615303,60.0800233],[124.6489053,60.2238678],[124.7368049,60.3676069],[124.770919,60.4232067],[124.9937932,60.4215395],[124.9355133,59.4361854],[124.1812178,59.4417727]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWG_N05.11","eo:cloud_cover":55.649191,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":39.7418448623104,"s2:mean_solar_azimuth":161.959303472834,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.038169,"s2:thin_cirrus_percentage":22.523712,"s2:cloud_shadow_percentage":7.36936,"s2:nodata_pixel_percentage":75.410157,"s2:unclassified_percentage":0.573913,"s2:not_vegetated_percentage":0.368027,"s2:degraded_msi_data_percentage":0.0011,"s2:high_proba_clouds_percentage":10.974427,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":22.151056,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951","bbox":[123.6714801,58.5384388,124.9405427,59.5292081],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R60m/T51VWF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R60m/T51VWF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.6714801,58.5473506],[123.722775,58.639394],[123.8039467,58.7835312],[123.8853601,58.9276965],[123.9666585,59.0720401],[124.0498987,59.2160415],[124.1332296,59.3601371],[124.2178591,59.5041056],[124.2325877,59.5292081],[124.9405427,59.5239593],[124.8857837,58.5384388],[123.6714801,58.5473506]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWF_N05.11","eo:cloud_cover":81.033099,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.043118,"s2:mean_solar_zenith":38.8831309879419,"s2:mean_solar_azimuth":161.667799182135,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":10.345491,"s2:thin_cirrus_percentage":16.57799,"s2:cloud_shadow_percentage":4.357751,"s2:nodata_pixel_percentage":50.038314,"s2:unclassified_percentage":2.540173,"s2:not_vegetated_percentage":1.678819,"s2:degraded_msi_data_percentage":0.005,"s2:high_proba_clouds_percentage":37.707323,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":26.747787,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951","bbox":[123.1828317,57.6410797,124.8905421,58.6353608],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R60m/T51VWE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R60m/T51VWE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.1828317,57.6531181],[123.2468288,57.7728426],[123.3244985,57.9174652],[123.4033861,58.0619148],[123.481966,58.2065113],[123.5622705,58.3507675],[123.6423679,58.4951117],[123.7205273,58.6353608],[124.8905421,58.6267661],[124.8390116,57.6410797],[123.1828317,57.6531181]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWE_N05.11","eo:cloud_cover":99.754447,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":38.0257934249818,"s2:mean_solar_azimuth":161.363270080768,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":1.372901,"s2:cloud_shadow_percentage":0.24555,"s2:nodata_pixel_percentage":24.488933,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0105,"s2:high_proba_clouds_percentage":72.708732,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.672811,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951","bbox":[122.999668,56.7430308,124.8434653,57.7406252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R60m/T51VWD_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R60m/T51VWD_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.999668,57.3064169],[123.0167676,57.3389609],[123.0928648,57.4836288],[123.1695307,57.6282349],[123.2296074,57.7406252],[124.8434653,57.7288832],[124.794906,56.7430308],[122.9996729,56.7559505],[122.999668,57.3064169]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWD_N05.11","eo:cloud_cover":96.187341,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.002037,"s2:mean_solar_zenith":37.1688958453377,"s2:mean_solar_azimuth":161.04420339059,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":2.456396,"s2:thin_cirrus_percentage":3.343562,"s2:cloud_shadow_percentage":0.507342,"s2:nodata_pixel_percentage":2.935342,"s2:unclassified_percentage":0.74617,"s2:not_vegetated_percentage":0.086305,"s2:degraded_msi_data_percentage":0.0291,"s2:high_proba_clouds_percentage":51.66654,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.177237,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951","bbox":[122.9996721,55.8448305,124.7991059,56.8438118],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R60m/T51VWC_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R60m/T51VWC_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.9996721,56.8438118],[124.7991059,56.8308491],[124.7532859,55.8448305],[122.9996805,55.8573211],[122.9996721,56.8438118]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWC_N05.11","eo:cloud_cover":61.630154,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.030153,"s2:mean_solar_zenith":36.3130386398673,"s2:mean_solar_azimuth":160.709692363544,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.016443,"s2:vegetation_percentage":24.218497,"s2:thin_cirrus_percentage":7.01362,"s2:cloud_shadow_percentage":11.141433,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.582566,"s2:not_vegetated_percentage":2.323748,"s2:degraded_msi_data_percentage":0.1589,"s2:high_proba_clouds_percentage":29.178974,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.437561,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951","bbox":[122.7126308,56.7532025,123.1633916,57.6166554],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R60m/T51VVD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R60m/T51VVD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.7126308,56.7532025],[122.7162521,56.7604165],[122.790841,56.9050909],[122.8653564,57.0498061],[122.9408001,57.1943794],[123.0167676,57.3389609],[123.0928648,57.4836288],[123.1633916,57.6166554],[123.1596203,56.7558483],[122.7126308,56.7532025]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VVD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VVD_N05.11","eo:cloud_cover":92.885494,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.011394,"s2:mean_solar_zenith":37.4767638724535,"s2:mean_solar_azimuth":158.568712849072,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":3.241396,"s2:thin_cirrus_percentage":14.323263,"s2:cloud_shadow_percentage":0.650767,"s2:nodata_pixel_percentage":89.516771,"s2:unclassified_percentage":0.875791,"s2:not_vegetated_percentage":2.301516,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":49.858767,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.703463,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951","bbox":[122.2595518,55.851971,123.159994,56.8437093],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R60m/T51VVC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R60m/T51VVC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.2595518,55.851971],[122.2790468,55.8910374],[122.3491953,56.0363776],[122.4226852,56.1810109],[122.4957057,56.325857],[122.5695814,56.4705657],[122.6434336,56.6153529],[122.7162521,56.7604165],[122.7579667,56.8413273],[123.159994,56.8437093],[123.1559167,55.8572224],[122.2595518,55.851971]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VVC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VVC_N05.11","eo:cloud_cover":98.473299,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000751,"s2:mean_solar_zenith":36.6255546904771,"s2:mean_solar_azimuth":158.249173729644,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.333282,"s2:thin_cirrus_percentage":2.277825,"s2:cloud_shadow_percentage":1.097256,"s2:nodata_pixel_percentage":63.752663,"s2:unclassified_percentage":0.074426,"s2:not_vegetated_percentage":0.018966,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":21.215393,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":74.98008,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951","bbox":[126.045107,53.9152179,126.1543823,54.109222],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R60m/T51UYV_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R60m/T51UYV_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.1543823,54.1061278],[126.1492445,54.0972465],[126.0673388,53.9538472],[126.045107,53.9152179],[126.0589827,54.109222],[126.1543823,54.1061278]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UYV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UYV_N05.11","eo:cloud_cover":99.981284,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":33.1506421165131,"s2:mean_solar_azimuth":164.537132209352,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000645,"s2:thin_cirrus_percentage":0.393647,"s2:cloud_shadow_percentage":0.001291,"s2:nodata_pixel_percentage":99.485868,"s2:unclassified_percentage":0.008389,"s2:not_vegetated_percentage":0.008389,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":93.898463,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":5.689174,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736","bbox":[124.4953796,53.1302708,125.8664881,53.8933641],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R60m/T51UXV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R60m/T51UXV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.4884241,53.6901522],[125.4885654,53.6904054],[125.4891078,53.6902887],[125.4894449,53.6908929],[125.5039535,53.6874959],[125.503751,53.687133],[125.6506011,53.6531602],[125.8664881,53.6026128],[125.7859926,53.4606453],[125.7054103,53.3171489],[125.6253696,53.1736377],[125.6012551,53.1302708],[124.4953796,53.1517855],[124.5219295,53.8933641],[124.7816897,53.8417288],[124.7817719,53.8418812],[124.7821093,53.8418142],[124.7824295,53.8424074],[124.9417879,53.8085628],[125.1531166,53.7635297],[125.1531058,53.76351],[125.1535946,53.7634037],[125.1534731,53.7631817],[125.1537243,53.7631272],[125.1537101,53.7631014],[125.1540333,53.7630313],[125.1539083,53.762803],[125.1539368,53.7627968],[125.1536511,53.7622749],[125.4884241,53.6901522]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UXV_N05.11","eo:cloud_cover":57.297868,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.051528,"s2:mean_solar_zenith":33.4428233592958,"s2:mean_solar_azimuth":162.058972933642,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":38.879889,"s2:thin_cirrus_percentage":21.175461,"s2:cloud_shadow_percentage":1.375699,"s2:nodata_pixel_percentage":52.880234,"s2:unclassified_percentage":0.661029,"s2:not_vegetated_percentage":1.733291,"s2:degraded_msi_data_percentage":0.0264,"s2:high_proba_clouds_percentage":18.629491,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":17.492916,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951","bbox":[124.5154737,53.4389177,126.15453,54.1383733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R60m/T51UXV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R60m/T51UXV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.5141266,53.4995389],[125.4119279,53.5234491],[125.4118286,53.523271],[125.4117048,53.5233],[125.4115105,53.5229515],[125.3948381,53.5265454],[125.3950925,53.5270036],[125.0625067,53.5992397],[125.0624721,53.5991765],[125.0382765,53.6042932],[125.0382994,53.6043352],[125.038216,53.6043529],[125.0383493,53.6045975],[124.7113843,53.6741125],[124.7113072,53.6739695],[124.7101066,53.6742254],[124.710092,53.6741983],[124.7100034,53.6742172],[124.7097646,53.6737754],[124.7088823,53.6739509],[124.6918944,53.6775433],[124.6920168,53.6777704],[124.5154737,53.7130452],[124.5307013,54.1383733],[126.15453,54.106383],[126.1492445,54.0972465],[126.0673388,53.9538472],[125.9848749,53.8105611],[125.9030535,53.6671698],[125.8216955,53.5237566],[125.7738209,53.4389177],[125.5141266,53.4995389]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UXV_N05.11","eo:cloud_cover":75.041485,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.015173,"s2:mean_solar_zenith":33.4428233592958,"s2:mean_solar_azimuth":162.058972933642,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":20.049483,"s2:thin_cirrus_percentage":21.57958,"s2:cloud_shadow_percentage":2.185212,"s2:nodata_pixel_percentage":50.558668,"s2:unclassified_percentage":0.303577,"s2:not_vegetated_percentage":2.394095,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":25.175184,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.286716,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736","bbox":[124.4649804,52.2409272,125.649989,53.2402083],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R60m/T51UXU_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R60m/T51UXU_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.649989,53.2177799],[125.6253696,53.1736377],[125.5456072,53.0301951],[125.4665804,52.8866619],[125.3880901,52.7430708],[125.3099468,52.5994597],[125.2321784,52.4558624],[125.1550113,52.3121694],[125.1166706,52.2409272],[124.4649804,52.2534568],[124.4984604,53.2402083],[125.649989,53.2177799]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UXU_N05.11","eo:cloud_cover":78.283638,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.117534,"s2:mean_solar_zenith":32.5874882578317,"s2:mean_solar_azimuth":161.648350107667,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":16.530271,"s2:thin_cirrus_percentage":14.665918,"s2:cloud_shadow_percentage":0.601585,"s2:nodata_pixel_percentage":44.84674,"s2:unclassified_percentage":2.471653,"s2:not_vegetated_percentage":1.994159,"s2:degraded_msi_data_percentage":0.0306,"s2:high_proba_clouds_percentage":42.633015,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":20.984702,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736","bbox":[124.4361206,51.3503969,125.1634942,52.3413551],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R60m/T51UXT_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R60m/T51UXT_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.1634942,52.3279654],[125.1550113,52.3121694],[125.0776825,52.168482],[125.0011792,52.0245944],[124.9247977,51.8807541],[124.8488376,51.7368822],[124.7740366,51.5928144],[124.6995434,51.4487578],[124.6489659,51.3503969],[124.4361206,51.3544394],[124.4678842,52.3413551],[125.1634942,52.3279654]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UXT_N05.11","eo:cloud_cover":42.99162,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.008262,"s2:mean_solar_zenith":31.7329884341935,"s2:mean_solar_azimuth":161.21765425791,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":49.09727,"s2:thin_cirrus_percentage":7.465654,"s2:cloud_shadow_percentage":3.823742,"s2:nodata_pixel_percentage":71.850431,"s2:unclassified_percentage":3.486861,"s2:not_vegetated_percentage":0.590113,"s2:degraded_msi_data_percentage":0.0137,"s2:high_proba_clouds_percentage":20.667204,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.858763,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951","bbox":[124.5613574,54.9150072,126.3559683,55.9353354],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R60m/T51UXB_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R60m/T51UXB_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6007969,55.9353354],[126.3559683,55.8999986],[126.2734267,54.9150072],[124.5613574,54.949074],[124.6007969,55.9353354]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UXB_N05.11","eo:cloud_cover":88.807923,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.020468,"s2:mean_solar_zenith":35.1580547342679,"s2:mean_solar_azimuth":162.828282523976,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":9.042518,"s2:thin_cirrus_percentage":24.010889,"s2:cloud_shadow_percentage":1.367089,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.223838,"s2:not_vegetated_percentage":0.532002,"s2:degraded_msi_data_percentage":0.0269,"s2:high_proba_clouds_percentage":33.219445,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":31.57759,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951","bbox":[122.9996938,53.6836594,124.6803359,54.1481041],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R60m/T51UWV_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R60m/T51UWV_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6625437,53.6836594],[124.3645949,53.7431921],[124.3645896,53.7431821],[124.3424073,53.7474544],[124.3426493,53.7479108],[124.0176633,53.8106443],[124.017598,53.810519],[124.0164772,53.8107353],[124.0162841,53.8103658],[124.0059661,53.8122532],[123.9970036,53.8139794],[123.9973736,53.8146887],[123.6701786,53.874526],[123.669832,53.8738516],[123.6573272,53.8760265],[123.648813,53.8775839],[123.6489988,53.8779461],[123.6486847,53.8780006],[123.6487191,53.8780676],[123.64867,53.8780761],[123.6486992,53.8781329],[123.3008855,53.9384707],[123.2994055,53.9387182],[123.2994322,53.9387709],[123.2071657,53.954145],[122.9996949,53.9888438],[122.9996938,54.1481041],[124.6803359,54.1363774],[124.6625437,53.6836594]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UWV_N05.11","eo:cloud_cover":30.101115,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.016995,"s2:mean_solar_zenith":33.7533105076474,"s2:mean_solar_azimuth":159.600653364513,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.237719,"s2:thin_cirrus_percentage":12.295584,"s2:cloud_shadow_percentage":8.178432,"s2:nodata_pixel_percentage":69.2334,"s2:unclassified_percentage":1.578633,"s2:not_vegetated_percentage":0.859638,"s2:degraded_msi_data_percentage":0.0011,"s2:high_proba_clouds_percentage":8.614112,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.191418,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736","bbox":[122.9997279,47.930217,123.3765395,48.753013],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R60m/T51UWP_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R60m/T51UWP_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.3765395,48.7505719],[123.3585612,48.7119546],[123.3552534,48.7048697],[123.3513598,48.6965415],[123.2878676,48.5609815],[123.2215248,48.4159299],[123.1546532,48.2710565],[123.0884539,48.1260927],[123.0227773,47.9810966],[122.9997322,47.930217],[122.9997279,48.753013],[123.3765395,48.7505719]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UWP_N05.11","eo:cloud_cover":63.980716,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":28.6794760102683,"s2:mean_solar_azimuth":156.759918302674,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":34.175,"s2:thin_cirrus_percentage":30.567065,"s2:cloud_shadow_percentage":0.858481,"s2:nodata_pixel_percentage":89.681041,"s2:unclassified_percentage":0.258059,"s2:not_vegetated_percentage":0.727008,"s2:degraded_msi_data_percentage":0.0003,"s2:high_proba_clouds_percentage":11.811411,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.60224,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951","bbox":[122.9996798,54.9470178,124.7572757,55.9457344],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R60m/T51UWB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R60m/T51UWB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.9996798,55.9457344],[124.7572757,55.9332025],[124.7139855,54.9470178],[122.9996877,54.9590989],[122.9996798,55.9457344]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UWB_N05.11","eo:cloud_cover":49.787244,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.044164,"s2:mean_solar_zenith":35.4588406100177,"s2:mean_solar_azimuth":160.358673885298,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":37.789297,"s2:thin_cirrus_percentage":13.094236,"s2:cloud_shadow_percentage":10.389226,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.397232,"s2:not_vegetated_percentage":1.566494,"s2:degraded_msi_data_percentage":0.1166,"s2:high_proba_clouds_percentage":17.587948,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":19.105059,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736","bbox":[122.9996936,54.0555765,123.6635938,54.1679624],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R60m/T51UWA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R60m/T51UWA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.9996936,54.1679624],[123.0491081,54.1603337],[123.0489318,54.1599803],[123.049026,54.1599646],[123.0487058,54.1593229],[123.382052,54.1037045],[123.382073,54.1037458],[123.3821003,54.1037413],[123.3821741,54.1038871],[123.3823408,54.1038593],[123.3824132,54.1040024],[123.3824393,54.103998],[123.3824639,54.1040465],[123.3828133,54.1039882],[123.3829292,54.1042174],[123.6635938,54.0555765],[122.9996944,54.0602038],[122.9996936,54.1679624]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UWA_N05.11","eo:cloud_cover":8.451172,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.065912,"s2:mean_solar_zenith":34.6053844976197,"s2:mean_solar_azimuth":159.989421016063,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":87.770379,"s2:thin_cirrus_percentage":0.290421,"s2:cloud_shadow_percentage":1.6381,"s2:nodata_pixel_percentage":97.880805,"s2:unclassified_percentage":0.714232,"s2:not_vegetated_percentage":1.220707,"s2:degraded_msi_data_percentage":0.0028,"s2:high_proba_clouds_percentage":4.407667,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.753084,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951","bbox":[122.999687,54.0485147,124.7177342,55.046986],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R60m/T51UWA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R60m/T51UWA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.999687,55.046986],[124.7177342,55.0348657],[124.6767881,54.0485147],[122.9996944,54.0602038],[122.999687,55.046986]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UWA_N05.11","eo:cloud_cover":28.662688,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.010066,"s2:mean_solar_zenith":34.6053844976197,"s2:mean_solar_azimuth":159.989421016063,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.858567,"s2:thin_cirrus_percentage":11.501379,"s2:cloud_shadow_percentage":10.085355,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.358572,"s2:not_vegetated_percentage":0.998374,"s2:degraded_msi_data_percentage":0.0181,"s2:high_proba_clouds_percentage":8.541209,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.6201,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951","bbox":[121.9838497,53.9639095,123.1494256,54.1480114],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R60m/T51UVV_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R60m/T51UVV_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.1487821,53.9639095],[122.9479832,53.9974924],[122.9481262,53.9977808],[122.6132063,54.0496365],[122.6131096,54.049439],[122.5886183,54.0532539],[122.5886636,54.0533466],[122.2889777,54.0984146],[122.2284259,54.1076076],[122.2286166,54.1080021],[122.2278167,54.108111],[122.2278316,54.1081418],[122.1761686,54.1151418],[121.9838497,54.1413221],[123.1494256,54.1480114],[123.1487821,53.9639095]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UVV_N05.11","eo:cloud_cover":3.08952,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.017315,"s2:mean_solar_zenith":34.0813654983863,"s2:mean_solar_azimuth":157.166422690752,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":92.764705,"s2:thin_cirrus_percentage":0.131603,"s2:cloud_shadow_percentage":2.433042,"s2:nodata_pixel_percentage":93.5233,"s2:unclassified_percentage":0.330672,"s2:not_vegetated_percentage":1.343744,"s2:degraded_msi_data_percentage":0.0402,"s2:high_proba_clouds_percentage":0.973729,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.984188,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951","bbox":[121.8245577,54.9513065,123.1562717,55.9456353],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R60m/T51UVB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R60m/T51UVB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.8245577,54.9513065],[121.8573636,55.0210211],[121.9265895,55.1661143],[121.99571,55.3112522],[122.0657173,55.4562553],[122.1360145,55.6013198],[122.2068202,55.7463008],[122.2790468,55.8910374],[122.3029832,55.9406311],[123.1562717,55.9456353],[123.1524197,54.9590034],[121.8245577,54.9513065]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UVB_N05.11","eo:cloud_cover":87.740666,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.040295,"s2:mean_solar_zenith":35.7762565582716,"s2:mean_solar_azimuth":157.909946927641,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":8.209021,"s2:thin_cirrus_percentage":4.126655,"s2:cloud_shadow_percentage":3.075512,"s2:nodata_pixel_percentage":37.455398,"s2:unclassified_percentage":0.626232,"s2:not_vegetated_percentage":0.301926,"s2:degraded_msi_data_percentage":0.8614,"s2:high_proba_clouds_percentage":18.792695,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":64.821315,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736","bbox":[121.4668827,54.0504964,123.1494142,54.3749405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R60m/T51UVA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R60m/T51UVA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.4668827,54.1836475],[121.4887371,54.230434],[121.5558041,54.3749405],[121.9281611,54.3242906],[121.9282534,54.3244854],[121.928668,54.3244291],[121.9287311,54.3245624],[121.9290838,54.3245147],[121.9291289,54.32461],[121.9295965,54.3245468],[121.9297185,54.3248042],[121.9301434,54.324747],[121.9301624,54.3247872],[121.9305235,54.3247387],[121.9306037,54.3249078],[121.9308485,54.324875],[121.9308513,54.324881],[122.293863,54.2755855],[122.3246217,54.2713226],[122.3244758,54.2710202],[122.3247688,54.2709758],[122.3246482,54.2707258],[122.325808,54.2705502],[122.3257694,54.2704702],[122.3261054,54.2704194],[122.326099,54.2704061],[122.3264015,54.2703605],[122.3263961,54.2703493],[122.375888,54.2628902],[122.3867791,54.2612461],[122.6681326,54.2187082],[122.6681627,54.2187697],[122.6684173,54.2187312],[122.6684497,54.2187973],[122.6686699,54.2187641],[122.6687585,54.2189444],[122.668847,54.218931],[122.6688765,54.2189911],[122.6689649,54.2189778],[122.6689848,54.2190182],[123.0491081,54.1603337],[123.0489318,54.1599803],[123.049026,54.1599646],[123.0487058,54.1593229],[123.1494142,54.1425198],[123.14911,54.0601114],[121.4719201,54.0504964],[121.4668827,54.1836475]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UVA_N05.11","eo:cloud_cover":16.879188,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.006543,"s2:mean_solar_zenith":34.9279765778761,"s2:mean_solar_azimuth":157.549415349823,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":70.123202,"s2:thin_cirrus_percentage":0.069427,"s2:cloud_shadow_percentage":10.63133,"s2:nodata_pixel_percentage":79.059011,"s2:unclassified_percentage":0.881372,"s2:not_vegetated_percentage":1.458544,"s2:degraded_msi_data_percentage":0.0188,"s2:high_proba_clouds_percentage":8.416358,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.393401,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951","bbox":[121.4790494,54.056768,123.1527533,55.0468902],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R60m/T51UVA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R60m/T51UVA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.5659122,54.056768],[122.2889777,54.0984146],[122.2284259,54.1076076],[122.2286166,54.1080021],[122.2278167,54.108111],[122.2278316,54.1081418],[122.1761686,54.1151418],[121.8811708,54.1552997],[121.8810903,54.1551292],[121.8806732,54.1551863],[121.8806703,54.1551802],[121.8794626,54.1553438],[121.8793785,54.155165],[121.8535206,54.1587227],[121.8538059,54.1593139],[121.4790494,54.2095157],[121.5188676,54.2942384],[121.5851657,54.439808],[121.6527232,54.5851212],[121.7207465,54.7304114],[121.788983,54.8757081],[121.8573636,55.0210211],[121.8661441,55.0394246],[123.1527533,55.0468902],[123.14911,54.0601114],[122.5659122,54.056768]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UVA_N05.11","eo:cloud_cover":52.653968,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003285,"s2:mean_solar_zenith":34.9279765778761,"s2:mean_solar_azimuth":157.549415349823,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":37.74555,"s2:thin_cirrus_percentage":1.242309,"s2:cloud_shadow_percentage":7.265861,"s2:nodata_pixel_percentage":16.475068,"s2:unclassified_percentage":1.050488,"s2:not_vegetated_percentage":1.254543,"s2:degraded_msi_data_percentage":2.0749,"s2:high_proba_clouds_percentage":16.001086,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":35.410574,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736","bbox":[120.9984315,53.1416409,121.6511208,54.1401868],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R60m/T51UUV_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R60m/T51UUV_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.9984315,53.1416409],[121.0293857,53.2129719],[121.0939341,53.3584219],[121.1582032,53.5039295],[121.2234148,53.6493069],[121.2891205,53.7946536],[121.3556109,53.9398481],[121.4209831,54.0853839],[121.4450805,54.1369727],[121.6192567,54.1401868],[121.6511208,53.1535351],[120.9984315,53.1416409]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UUV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UUV_N05.11","eo:cloud_cover":4.091585,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.931335,"s2:mean_solar_zenith":34.4261817607303,"s2:mean_solar_azimuth":154.760325095232,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":91.110557,"s2:thin_cirrus_percentage":1.435339,"s2:cloud_shadow_percentage":3.054372,"s2:nodata_pixel_percentage":75.347459,"s2:unclassified_percentage":0.269249,"s2:not_vegetated_percentage":0.481111,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.107008,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.549238,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736","bbox":[120.6056024,52.2358279,121.6785441,53.2419635],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R60m/T51UUU_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R60m/T51UUU_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.6056024,52.2358279],[120.6495214,52.3393057],[120.7117381,52.4850079],[120.7745227,52.6306574],[120.8384771,52.7760809],[120.9017741,52.9217141],[120.9661176,53.0671769],[121.0293857,53.2129719],[121.0373045,53.2308157],[121.6483415,53.2419635],[121.6785441,52.2551507],[120.6056024,52.2358279]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UUU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UUU_N05.11","eo:cloud_cover":29.20112,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.027118,"s2:mean_solar_zenith":33.5881135017548,"s2:mean_solar_azimuth":154.358239976182,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":65.406787,"s2:thin_cirrus_percentage":14.649937,"s2:cloud_shadow_percentage":4.400674,"s2:nodata_pixel_percentage":48.51661,"s2:unclassified_percentage":0.382532,"s2:not_vegetated_percentage":0.568262,"s2:degraded_msi_data_percentage":0.1776,"s2:high_proba_clouds_percentage":5.582973,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.968209,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736","bbox":[121.4043239,54.0482962,121.6221725,54.3749405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R60m/T51UUA_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R60m/T51UUA_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.4043239,54.0482962],[121.4209831,54.0853839],[121.4887371,54.230434],[121.5558041,54.3749405],[121.6114247,54.3673747],[121.6221725,54.0523118],[121.4043239,54.0482962]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UUA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UUA_N05.11","eo:cloud_cover":25.536171,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":35.2668931326153,"s2:mean_solar_azimuth":155.135981523394,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":53.405219,"s2:thin_cirrus_percentage":0.00171,"s2:cloud_shadow_percentage":18.725342,"s2:nodata_pixel_percentage":97.477144,"s2:unclassified_percentage":0.516839,"s2:not_vegetated_percentage":1.798414,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":12.719624,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":12.814838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736","bbox":[121.7069511,45.0581917,122.1752693,46.0486504],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R60m/T51TVL_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R60m/T51TVL_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.1752693,46.0486504],[122.1329686,45.9488702],[122.0720409,45.8035458],[122.0110653,45.6582561],[121.9502934,45.5129648],[121.8899568,45.3675816],[121.8298896,45.2221331],[121.8252616,45.2109057],[121.7701436,45.0773904],[121.7623215,45.0583569],[121.7294164,45.0581917],[121.7069511,46.0462596],[122.1752693,46.0486504]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TVL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TVL_N05.11","eo:cloud_cover":98.190892,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000057,"s2:mean_solar_zenith":26.5701043469989,"s2:mean_solar_azimuth":152.40220453019,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.665535,"s2:thin_cirrus_percentage":3.684097,"s2:cloud_shadow_percentage":1.088557,"s2:nodata_pixel_percentage":82.523805,"s2:unclassified_percentage":0.051316,"s2:not_vegetated_percentage":0.00131,"s2:degraded_msi_data_percentage":0.0629,"s2:high_proba_clouds_percentage":58.089715,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":36.417076,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736","bbox":[121.7274503,44.9821886,121.7989239,45.1471066],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R60m/T51TVK_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R60m/T51TVK_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.7989239,45.1471066],[121.7701436,45.0773904],[121.7310193,44.9821886],[121.7274503,45.1467472],[121.7989239,45.1471066]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TVK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TVK_N05.11","eo:cloud_cover":100.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":25.7525590817109,"s2:mean_solar_azimuth":151.679725430971,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.615014,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":99.540663,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.459336,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736","bbox":[120.5688037,42.060235,120.7221903,42.429263],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R60m/T51TUG_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R60m/T51TUG_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.7221903,42.429263],[120.676057,42.3076801],[120.6206454,42.1618905],[120.5826297,42.060235],[120.5688037,42.4269017],[120.7221903,42.429263]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TUG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TUG_N05.11","eo:cloud_cover":99.987483,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":23.7890219812945,"s2:mean_solar_azimuth":146.652794097916,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.352288,"s2:cloud_shadow_percentage":0.00634,"s2:nodata_pixel_percentage":97.959131,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.006178,"s2:degraded_msi_data_percentage":0.0599,"s2:high_proba_clouds_percentage":66.681027,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":32.954165,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736","bbox":[119.4545363,39.6090131,120.0489377,40.6113254],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R60m/T51TTE_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R60m/T51TTE_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.0489377,40.6113254],[120.0282934,40.5542995],[119.9758153,40.4080915],[119.9230646,40.2620155],[119.8714404,40.1156798],[119.8513154,40.0589762],[119.819189,39.9686227],[119.7672769,39.8222937],[119.7387107,39.7415223],[119.7157065,39.6765674],[119.6935001,39.6136387],[119.5054874,39.6090131],[119.4545363,40.5964015],[120.0489377,40.6113254]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TTE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TTE_N05.11","eo:cloud_cover":80.006087,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":17.062339,"s2:mean_solar_zenith":22.7403756866213,"s2:mean_solar_azimuth":142.117565763747,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000243,"s2:vegetation_percentage":1.548352,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.00516,"s2:nodata_pixel_percentage":69.909889,"s2:unclassified_percentage":0.602656,"s2:not_vegetated_percentage":0.769749,"s2:degraded_msi_data_percentage":0.2965,"s2:high_proba_clouds_percentage":75.100821,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":4.905267,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736","bbox":[119.5010231,39.1430719,119.7250791,39.703032],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R60m/T51STD_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R60m/T51STD_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.7250791,39.703032],[119.7157065,39.6765674],[119.6640093,39.5300675],[119.6124705,39.3835187],[119.5611444,39.2369834],[119.528373,39.1430719],[119.5010231,39.6975095],[119.7250791,39.703032]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51STD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51STD_N05.11","eo:cloud_cover":2.799612,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":97.144371,"s2:mean_solar_zenith":21.9895965995577,"s2:mean_solar_azimuth":140.961465471589,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":95.220464,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.05602,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.027767,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.771845,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736","bbox":[120.5925969,52.1754847,121.634183,53.1792832],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R60m/T50UQD_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R60m/T50UQD_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.5925969,52.2051856],[120.6495214,52.3393057],[120.7117381,52.4850079],[120.7745227,52.6306574],[120.8384771,52.7760809],[120.9017741,52.9217141],[120.9661176,53.0671769],[121.0147664,53.1792832],[121.634183,53.159422],[121.5310322,52.1754847],[120.5925969,52.2051856]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UQD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UQD_N05.11","eo:cloud_cover":25.962237,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.047666,"s2:mean_solar_zenith":33.5713724823885,"s2:mean_solar_azimuth":154.209458513207,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":68.457073,"s2:thin_cirrus_percentage":14.526783,"s2:cloud_shadow_percentage":4.580833,"s2:nodata_pixel_percentage":52.271348,"s2:unclassified_percentage":0.378007,"s2:not_vegetated_percentage":0.564111,"s2:degraded_msi_data_percentage":0.0622,"s2:high_proba_clouds_percentage":4.97154,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.463914,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736","bbox":[120.2219412,51.2789252,121.5399797,52.2919894],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R60m/T50UQC_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R60m/T50UQC_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.2219412,51.3170712],[120.2227487,51.3190554],[120.2831008,51.4648783],[120.3435517,51.6106504],[120.4035932,51.7565431],[120.4652142,51.9021099],[120.5259895,52.0479574],[120.58769,52.1936244],[120.629439,52.2919894],[121.5399797,52.2631374],[121.4420952,51.2789252],[120.2219412,51.3170712]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UQC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UQC_N05.11","eo:cloud_cover":31.898367,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.214088,"s2:mean_solar_zenith":32.7693558338171,"s2:mean_solar_azimuth":153.582585084605,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":54.990929,"s2:thin_cirrus_percentage":5.04574,"s2:cloud_shadow_percentage":11.602494,"s2:nodata_pixel_percentage":33.275384,"s2:unclassified_percentage":0.805883,"s2:not_vegetated_percentage":0.448126,"s2:degraded_msi_data_percentage":0.1617,"s2:high_proba_clouds_percentage":14.983115,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.869514,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736","bbox":[119.169004,48.6298216,119.9045728,49.6229567],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R60m/T50UPV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R60m/T50UPV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.169004,48.6422133],[119.1869991,48.6899548],[119.2419162,48.8362346],[119.2974718,48.9824502],[119.3533039,49.128699],[119.4092168,49.2749858],[119.4656067,49.4212239],[119.5224453,49.5673876],[119.544024,49.6229567],[119.9045728,49.6162737],[119.8474785,48.6298216],[119.169004,48.6422133]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UPV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UPV_N05.11","eo:cloud_cover":28.28463,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.360298,"s2:mean_solar_zenith":30.8534709153541,"s2:mean_solar_azimuth":149.224726944608,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000436,"s2:vegetation_percentage":47.813132,"s2:thin_cirrus_percentage":0.020456,"s2:cloud_shadow_percentage":13.622352,"s2:nodata_pixel_percentage":65.792853,"s2:unclassified_percentage":0.628211,"s2:not_vegetated_percentage":9.29018,"s2:degraded_msi_data_percentage":0.0525,"s2:high_proba_clouds_percentage":17.138596,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.12558,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736","bbox":[119.5100935,49.5284183,119.9593861,50.5158587],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R60m/T50UPA_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R60m/T50UPA_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.5100935,49.5356243],[119.5224453,49.5673876],[119.5792112,49.7135705],[119.6363844,49.8596112],[119.6936125,50.0056639],[119.7510548,50.1516985],[119.8090594,50.2976236],[119.8668884,50.4436337],[119.8960822,50.5158587],[119.9593861,50.51467],[119.8993597,49.5284183],[119.5100935,49.5356243]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UPA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UPA_N05.11","eo:cloud_cover":22.555679,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.007636,"s2:mean_solar_zenith":31.6359537791406,"s2:mean_solar_azimuth":149.938004776559,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.772295,"s2:thin_cirrus_percentage":0.005205,"s2:cloud_shadow_percentage":14.883555,"s2:nodata_pixel_percentage":85.531396,"s2:unclassified_percentage":0.312989,"s2:not_vegetated_percentage":2.459519,"s2:degraded_msi_data_percentage":0.0117,"s2:high_proba_clouds_percentage":12.131319,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.419154,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736","bbox":[119.5794595,45.8957353,121.0656571,46.9235731],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R60m/T50TQS_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R60m/T50TQS_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.6264854,46.9235731],[121.0656571,46.8814597],[120.9930022,45.8957353],[119.5794595,45.9364309],[119.6264854,46.9235731]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQS_N05.11","eo:cloud_cover":27.660647,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000289,"s2:mean_solar_zenith":28.0407323538848,"s2:mean_solar_azimuth":149.157109553527,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":56.90102,"s2:thin_cirrus_percentage":0.050043,"s2:cloud_shadow_percentage":13.618906,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.215981,"s2:not_vegetated_percentage":1.600997,"s2:degraded_msi_data_percentage":0.0667,"s2:high_proba_clouds_percentage":16.988012,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.622592,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736","bbox":[119.4272955,42.3046906,120.8181237,43.326257],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R60m/T50TQN_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R60m/T50TQN_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.7739049,42.5651556],[120.7313982,42.4535302],[120.676057,42.3076801],[120.6749208,42.3046906],[119.4272955,42.3383721],[119.4662891,43.326257],[120.8181237,43.2890818],[120.7739049,42.5651556]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQN_N05.11","eo:cloud_cover":97.065979,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.004349,"s2:mean_solar_zenith":24.9974691461116,"s2:mean_solar_azimuth":145.343136428766,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":1.203796,"s2:thin_cirrus_percentage":0.286871,"s2:cloud_shadow_percentage":0.210673,"s2:nodata_pixel_percentage":0.893073,"s2:unclassified_percentage":0.388368,"s2:not_vegetated_percentage":1.126617,"s2:degraded_msi_data_percentage":0.0407,"s2:high_proba_clouds_percentage":79.418463,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":17.360643,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736","bbox":[119.361109,40.5215379,120.3744324,41.5268623],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R60m/T50TQL_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R60m/T50TQL_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.3744324,41.5008773],[120.3485427,41.4317422],[120.2947043,41.2854654],[120.240833,41.1392216],[120.187221,40.992973],[120.1342279,40.8466718],[120.0812006,40.7004455],[120.0282934,40.5542995],[120.0165344,40.5215379],[119.361109,40.5386175],[119.3967036,41.5268623],[120.3744324,41.5008773]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQL_N05.11","eo:cloud_cover":99.236029,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.015013,"s2:mean_solar_zenith":23.5228477672578,"s2:mean_solar_azimuth":143.079866845773,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.006039,"s2:thin_cirrus_percentage":5e-6,"s2:cloud_shadow_percentage":0.731515,"s2:nodata_pixel_percentage":37.700263,"s2:unclassified_percentage":0.004974,"s2:not_vegetated_percentage":0.006428,"s2:degraded_msi_data_percentage":0.1815,"s2:high_proba_clouds_percentage":96.402979,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.833042,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736","bbox":[119.3301855,39.6287972,120.0480229,40.6266494],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R60m/T50TQK_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R60m/T50TQK_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.0480229,40.6087983],[120.0282934,40.5542995],[119.9758153,40.4080915],[119.9230646,40.2620155],[119.8714404,40.1156798],[119.8513154,40.0589762],[119.819189,39.9686227],[119.7672769,39.8222937],[119.7387107,39.7415223],[119.7157065,39.6765674],[119.6988493,39.6287972],[119.3301855,39.6382276],[119.3642082,40.6266494],[120.0480229,40.6087983]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQK_N05.11","eo:cloud_cover":75.909507,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":16.082352,"s2:mean_solar_zenith":22.7998528423952,"s2:mean_solar_azimuth":141.840330969318,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000196,"s2:vegetation_percentage":4.620372,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.517618,"s2:nodata_pixel_percentage":59.397584,"s2:unclassified_percentage":1.103476,"s2:not_vegetated_percentage":1.764095,"s2:degraded_msi_data_percentage":0.2493,"s2:high_proba_clouds_percentage":69.136828,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.772681,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736","bbox":[118.2142871,42.3357822,119.5875362,43.3462],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R60m/T50TPN_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R60m/T50TPN_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.2338121,43.3462],[119.5875362,43.3235766],[119.5466306,42.3357822],[118.2142871,42.3576415],[118.2338121,43.3462]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TPN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TPN_N05.11","eo:cloud_cover":36.116058,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.106227,"s2:mean_solar_zenith":25.5386119791428,"s2:mean_solar_azimuth":143.028396117195,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000962,"s2:vegetation_percentage":37.823474,"s2:thin_cirrus_percentage":0.452646,"s2:cloud_shadow_percentage":6.894921,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.214482,"s2:not_vegetated_percentage":17.791484,"s2:degraded_msi_data_percentage":0.0557,"s2:high_proba_clouds_percentage":24.020392,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.64302,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736","bbox":[118.1987909,45.9567699,118.4342866,46.6304619],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R60m/T50TNS_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R60m/T50TNS_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.1987909,45.9581201],[118.2325341,46.0544868],[118.2834303,46.2012099],[118.3349002,46.347706],[118.3862382,46.4942726],[118.4342866,46.6304619],[118.4166561,45.9567699],[118.1987909,45.9581201]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TNS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TNS_N05.11","eo:cloud_cover":11.262465,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.830601,"s2:mean_solar_zenith":29.0507935392686,"s2:mean_solar_azimuth":144.596861136244,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":68.35593,"s2:thin_cirrus_percentage":5.509831,"s2:cloud_shadow_percentage":4.810938,"s2:nodata_pixel_percentage":95.042419,"s2:unclassified_percentage":0.336697,"s2:not_vegetated_percentage":14.377066,"s2:degraded_msi_data_percentage":0.0001,"s2:high_proba_clouds_percentage":2.567159,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.185475,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736","bbox":[117.8895777,45.0567486,118.4189041,46.0459415],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R60m/T50TNR_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R60m/T50TNR_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.8895777,45.0598289],[117.9284054,45.1743711],[117.9784136,45.3210777],[118.0286379,45.4678191],[118.0790918,45.6145875],[118.1299256,45.7612573],[118.1811913,45.9078576],[118.229542,46.0459415],[118.4189041,46.0447662],[118.3942539,45.0567486],[117.8895777,45.0598289]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TNR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TNR_N05.11","eo:cloud_cover":7.710127,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.227757,"s2:mean_solar_zenith":28.3008404942099,"s2:mean_solar_azimuth":143.720238992279,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.020385,"s2:vegetation_percentage":62.175059,"s2:thin_cirrus_percentage":0.104868,"s2:cloud_shadow_percentage":5.627007,"s2:nodata_pixel_percentage":75.651205,"s2:unclassified_percentage":0.755714,"s2:not_vegetated_percentage":22.477517,"s2:degraded_msi_data_percentage":0.001,"s2:high_proba_clouds_percentage":3.633779,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.971479,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736","bbox":[117.5889028,44.1571166,118.3964112,45.1482147],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R60m/T50TNQ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R60m/T50TNQ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.5889028,44.1618268],[117.6325885,44.2939196],[117.681421,44.4407804],[117.7306125,44.5875027],[117.7798669,44.7342142],[117.8291308,44.8809633],[117.8786777,45.0276736],[117.9195388,45.1482147],[118.3964112,45.1452997],[118.372894,44.1571166],[117.5889028,44.1618268]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TNQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TNQ_N05.11","eo:cloud_cover":23.080322,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0417,"s2:mean_solar_zenith":27.5586205163193,"s2:mean_solar_azimuth":142.794105299252,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.57253,"s2:thin_cirrus_percentage":2.204978,"s2:cloud_shadow_percentage":8.319222,"s2:nodata_pixel_percentage":54.831058,"s2:unclassified_percentage":0.561122,"s2:not_vegetated_percentage":8.392074,"s2:degraded_msi_data_percentage":0.0172,"s2:high_proba_clouds_percentage":12.556584,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.31876,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736","bbox":[116.7218325,41.4618364,117.1186942,42.4526297],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R60m/T50TMM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R60m/T50TMM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.7218325,41.4618364],[116.7342955,41.5018647],[116.7799969,41.6489077],[116.8264115,41.795836],[116.8730517,41.9427994],[116.9188569,42.0900523],[116.965478,42.2370827],[117.0122762,42.3841243],[117.0340859,42.4522246],[117.1186942,42.4526297],[117.1168731,41.4636925],[116.7218325,41.4618364]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TMM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TMM_N05.11","eo:cloud_cover":13.409732,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.037201,"s2:mean_solar_zenith":25.9700458856941,"s2:mean_solar_azimuth":137.491697498845,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":78.346264,"s2:thin_cirrus_percentage":0.000019,"s2:cloud_shadow_percentage":1.496124,"s2:nodata_pixel_percentage":82.224864,"s2:unclassified_percentage":0.696433,"s2:not_vegetated_percentage":5.929337,"s2:degraded_msi_data_percentage":0.0003,"s2:high_proba_clouds_percentage":6.646004,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.763709,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736","bbox":[116.4430791,40.55959,117.1170316,41.5517851],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R60m/T50TML_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R60m/T50TML_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.4430791,40.55959],[116.4611705,40.6197993],[116.5059286,40.7670862],[116.5513424,40.9141132],[116.5979323,41.0607592],[116.6417932,41.2082121],[116.6885271,41.354867],[116.7342955,41.5018647],[116.7492729,41.5500542],[117.1170316,41.5517851],[117.1152916,40.5626924],[116.4430791,40.55959]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TML","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TML_N05.11","eo:cloud_cover":1.470486,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.085095,"s2:mean_solar_zenith":25.2769763879235,"s2:mean_solar_azimuth":136.332294279426,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":95.43981,"s2:thin_cirrus_percentage":0.000202,"s2:cloud_shadow_percentage":0.891395,"s2:nodata_pixel_percentage":60.542274,"s2:unclassified_percentage":0.097371,"s2:not_vegetated_percentage":1.950037,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.67822,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.792064,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736","bbox":[119.3006375,38.7360413,119.7299013,39.7268153],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R60m/T50SQJ_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R60m/T50SQJ_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.7299013,39.7166481],[119.7157065,39.6765674],[119.6640093,39.5300675],[119.6124705,39.3835187],[119.5611444,39.2369834],[119.5100199,39.0904785],[119.4591559,38.9439878],[119.4085484,38.797521],[119.3874031,38.7360413],[119.3006375,38.7382186],[119.3331665,39.7268153],[119.7299013,39.7166481]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SQJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SQJ_N05.11","eo:cloud_cover":20.921469,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":78.946793,"s2:mean_solar_zenith":22.0883445369773,"s2:mean_solar_azimuth":140.521557816201,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.017688,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.01604,"s2:nodata_pixel_percentage":81.280202,"s2:unclassified_percentage":0.003864,"s2:not_vegetated_percentage":0.094148,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":11.769027,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.152442,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736","bbox":[119.2918736,38.4576552,119.4174953,38.8262817],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R60m/T50SQH_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R60m/T50SQH_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.4174953,38.8234148],[119.4085484,38.797521],[119.3581734,38.651056],[119.307937,38.5046006],[119.2918736,38.4576552],[119.3034704,38.8262817],[119.4174953,38.8234148]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SQH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SQH_N05.11","eo:cloud_cover":47.70222,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":52.205902,"s2:mean_solar_zenith":21.3885780137229,"s2:mean_solar_azimuth":139.115402045806,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.4038,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.091874,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":18.943036,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.759184,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736","bbox":[118.1508722,38.7363369,119.447885,39.7443999],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R60m/T50SPJ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R60m/T50SPJ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.4167008,38.8211153],[119.4085484,38.797521],[119.3875048,38.7363369],[118.1508722,38.7551983],[118.167158,39.7443999],[119.447885,39.7244518],[119.4167008,38.8211153]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SPJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SPJ_N05.11","eo:cloud_cover":20.222032,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":39.885443,"s2:mean_solar_zenith":22.6840681044289,"s2:mean_solar_azimuth":138.199942169003,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":22.857326,"s2:thin_cirrus_percentage":0.000242,"s2:cloud_shadow_percentage":1.767036,"s2:nodata_pixel_percentage":0.111814,"s2:unclassified_percentage":2.368912,"s2:not_vegetated_percentage":12.879643,"s2:degraded_msi_data_percentage":0.0202,"s2:high_proba_clouds_percentage":11.702741,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.519049,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736","bbox":[118.1102397,36.0461721,118.8109879,37.041254],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R60m/T50SPF_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R60m/T50SPF_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.8109879,37.0311754],[118.76475,36.8915401],[118.7163983,36.7449153],[118.6679767,36.5983507],[118.6198789,36.4517246],[118.5720684,36.3049556],[118.5236848,36.1582592],[118.4874197,36.0461721],[118.1102397,36.0515828],[118.1244855,37.041254],[118.8109879,37.0311754]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SPF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SPF_N05.11","eo:cloud_cover":36.983517,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.265535,"s2:mean_solar_zenith":20.6750215960592,"s2:mean_solar_azimuth":133.711979389783,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":34.599906,"s2:thin_cirrus_percentage":6.869698,"s2:cloud_shadow_percentage":12.036689,"s2:nodata_pixel_percentage":56.897491,"s2:unclassified_percentage":0.989636,"s2:not_vegetated_percentage":15.108298,"s2:degraded_msi_data_percentage":0.0491,"s2:high_proba_clouds_percentage":16.961607,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.15221,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736","bbox":[118.0934106,34.8104737,118.228127,35.2380875],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R60m/T50SPD_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R60m/T50SPD_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.228127,35.2362718],[118.1941734,35.1294626],[118.1475869,34.9825917],[118.1013403,34.8357003],[118.0934106,34.8104737],[118.0990408,35.2380875],[118.228127,35.2362718]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SPD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SPD_N05.11","eo:cloud_cover":26.308063,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.43517,"s2:mean_solar_zenith":19.4188388313226,"s2:mean_solar_azimuth":130.20887712026,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":46.315238,"s2:thin_cirrus_percentage":22.232413,"s2:cloud_shadow_percentage":0.66529,"s2:nodata_pixel_percentage":97.789735,"s2:unclassified_percentage":0.501519,"s2:not_vegetated_percentage":25.741094,"s2:degraded_msi_data_percentage":0.0255,"s2:high_proba_clouds_percentage":0.583179,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.49247,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736","bbox":[116.9997724,36.9514795,118.2493543,37.9475896],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R60m/T50SNG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R60m/T50SNG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.9997724,37.9475896],[118.2493543,37.9409562],[118.2330052,36.9514795],[116.9997753,36.9578811],[116.9997724,37.9475896]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SNG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SNG_N05.11","eo:cloud_cover":47.13845,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.602669,"s2:mean_solar_zenith":21.9739264966328,"s2:mean_solar_azimuth":133.083464061664,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":31.315121,"s2:thin_cirrus_percentage":16.231024,"s2:cloud_shadow_percentage":9.945966,"s2:nodata_pixel_percentage":3e-6,"s2:unclassified_percentage":0.741862,"s2:not_vegetated_percentage":10.248818,"s2:degraded_msi_data_percentage":0.0126,"s2:high_proba_clouds_percentage":16.119608,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.787817,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736","bbox":[116.9997848,32.4474308,117.666375,33.4395751],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R60m/T50SNB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R60m/T50SNB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.666375,33.4364017],[117.6444503,33.3648472],[117.5995079,33.2177733],[117.5546741,33.0707217],[117.5099751,32.9236622],[117.4653549,32.7765144],[117.4207487,32.6292944],[117.3764334,32.4819554],[117.3660533,32.4474308],[116.9997872,32.4491288],[116.9997848,33.4395751],[117.666375,33.4364017]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SNB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SNB_N05.11","eo:cloud_cover":39.729539,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.83291,"s2:mean_solar_zenith":18.9771520751009,"s2:mean_solar_azimuth":124.161536284537,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":32.208225,"s2:thin_cirrus_percentage":6.435398,"s2:cloud_shadow_percentage":1.07809,"s2:nodata_pixel_percentage":56.314051,"s2:unclassified_percentage":1.244856,"s2:not_vegetated_percentage":23.90082,"s2:degraded_msi_data_percentage":0.035,"s2:high_proba_clouds_percentage":18.052907,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.241231,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736","bbox":[116.999787,32.2482444,117.3925471,32.5373552],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R60m/T50SNA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R60m/T50SNA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.3925471,32.53553],[117.3764334,32.4819554],[117.332138,32.3346271],[117.3062352,32.2482444],[117.2528013,32.2622692],[117.0461187,32.3166646],[117.046091,32.3165716],[117.0459935,32.3165973],[117.0454263,32.3146922],[116.9997875,32.3257877],[116.999787,32.5373552],[117.3925471,32.53553]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SNA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SNA_N05.11","eo:cloud_cover":26.832655,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.541355,"s2:mean_solar_zenith":18.4456314194497,"s2:mean_solar_azimuth":122.033562227785,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":39.458776,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":92.377031,"s2:unclassified_percentage":0.998794,"s2:not_vegetated_percentage":32.1652,"s2:degraded_msi_data_percentage":0.0012,"s2:high_proba_clouds_percentage":14.997889,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.834764,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736","bbox":[115.9013317,38.7554279,117.1139256,39.750212],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R60m/T50SMJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R60m/T50SMJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.9013317,38.7554279],[115.9301224,38.8532881],[115.9736448,39.0005998],[116.0172137,39.1478543],[116.0608096,39.2950671],[116.1044794,39.4422733],[116.1483299,39.5894922],[116.1923701,39.736696],[116.195178,39.7460419],[117.1139256,39.750212],[117.1123356,38.7608105],[115.9013317,38.7554279]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMJ_N05.11","eo:cloud_cover":1.14024,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.138078,"s2:mean_solar_zenith":23.927685575955,"s2:mean_solar_azimuth":133.801367476993,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":65.048999,"s2:thin_cirrus_percentage":1.021053,"s2:cloud_shadow_percentage":0.014508,"s2:nodata_pixel_percentage":16.666119,"s2:unclassified_percentage":0.792223,"s2:not_vegetated_percentage":31.795236,"s2:degraded_msi_data_percentage":0.016,"s2:high_proba_clouds_percentage":0.009149,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.110037,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736","bbox":[115.8614709,36.9525649,117.111086,37.9475371],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R60m/T50SMG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R60m/T50SMG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.8614709,37.9420809],[117.111086,37.9475371],[117.1096319,36.9578305],[115.8763705,36.9525649],[115.8614709,37.9420809]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMG_N05.11","eo:cloud_cover":41.186291,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.053991,"s2:mean_solar_zenith":22.6340813175253,"s2:mean_solar_azimuth":130.954784605596,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.987856,"s2:thin_cirrus_percentage":9.839559,"s2:cloud_shadow_percentage":11.77372,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.437062,"s2:not_vegetated_percentage":9.555632,"s2:degraded_msi_data_percentage":0.0298,"s2:high_proba_clouds_percentage":16.522081,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.824648,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736","bbox":[115.8750647,36.0515787,117.1097593,37.0465323],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R60m/T50SMF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R60m/T50SMF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.8750647,37.0412498],[117.1097593,37.0465323],[117.1083685,36.056675],[115.8893163,36.0515787],[115.8750647,37.0412498]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMF_N05.11","eo:cloud_cover":46.413097,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.336628,"s2:mean_solar_zenith":22.0119019990082,"s2:mean_solar_azimuth":129.402097516376,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.597174,"s2:thin_cirrus_percentage":15.03856,"s2:cloud_shadow_percentage":4.154141,"s2:nodata_pixel_percentage":7e-6,"s2:unclassified_percentage":0.695393,"s2:not_vegetated_percentage":11.786846,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":13.983063,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":17.391473,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736","bbox":[115.8880749,35.1499121,117.1084896,36.1448493],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R60m/T50SME_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R60m/T50SME_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.8880749,36.1397366],[117.1084896,36.1448493],[117.1071592,35.1548426],[115.9017071,35.1499121],[115.8880749,36.1397366]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SME","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SME_N05.11","eo:cloud_cover":58.306003,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.369206,"s2:mean_solar_zenith":21.4074804479542,"s2:mean_solar_azimuth":127.754859134037,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":28.753677,"s2:thin_cirrus_percentage":21.736342,"s2:cloud_shadow_percentage":0.966457,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.66243,"s2:not_vegetated_percentage":10.925531,"s2:degraded_msi_data_percentage":0.0143,"s2:high_proba_clouds_percentage":14.595555,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.974111,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736","bbox":[115.9005196,34.2481073,117.1072751,35.2430302],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R60m/T50SMD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R60m/T50SMD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.9005196,35.2380835],[117.1072751,35.2430302],[117.1060025,34.2528758],[115.9135595,34.2481073],[115.9005196,35.2380835]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMD_N05.11","eo:cloud_cover":90.309763,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.518857,"s2:mean_solar_zenith":20.8227995236326,"s2:mean_solar_azimuth":126.009053551506,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":4.199996,"s2:thin_cirrus_percentage":14.53747,"s2:cloud_shadow_percentage":1.179472,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.02645,"s2:not_vegetated_percentage":3.765067,"s2:degraded_msi_data_percentage":0.0033,"s2:high_proba_clouds_percentage":37.807155,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":37.96514,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736","bbox":[116.1145798,32.3015168,117.1039399,32.5373123],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R60m/T50SMA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R60m/T50SMA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.1036749,32.3015168],[117.0461187,32.3166646],[117.046091,32.3165716],[117.0459935,32.3165973],[117.0454263,32.3146922],[116.7782206,32.3796543],[116.778231,32.3796895],[116.7781318,32.3797131],[116.7781616,32.3798144],[116.7781075,32.3798273],[116.7781694,32.3800382],[116.7781547,32.3800417],[116.7784096,32.3809087],[116.7781299,32.3809753],[116.778211,32.381251],[116.7781507,32.3812654],[116.7782918,32.3817456],[116.5535674,32.4356065],[116.5437143,32.437978],[116.5431121,32.4359135],[116.2813242,32.4947713],[116.2816815,32.496011],[116.2815423,32.4960413],[116.2818084,32.4969648],[116.2814579,32.4970413],[116.2814761,32.4971044],[116.1145798,32.5335306],[117.1039399,32.5373123],[117.1036749,32.3015168]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMA_N05.11","eo:cloud_cover":14.862227,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":3.917596,"s2:mean_solar_zenith":19.2058256898959,"s2:mean_solar_azimuth":120.135148203205,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":61.090124,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.531518,"s2:nodata_pixel_percentage":89.938831,"s2:unclassified_percentage":0.804895,"s2:not_vegetated_percentage":18.791266,"s2:degraded_msi_data_percentage":0.0359,"s2:high_proba_clouds_percentage":6.904262,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":7.957965,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736","bbox":[115.63759,37.8502561,115.9746634,38.8443739],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R60m/T50SLH_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R60m/T50SLH_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.63759,37.8502561],[115.671881,37.9689406],[115.7145596,38.1162715],[115.7574188,38.2636455],[115.8004173,38.411074],[115.8435289,38.5584864],[115.8867567,38.7058869],[115.9273598,38.8438979],[115.9606157,38.8443739],[115.9746634,37.8549777],[115.63759,37.8502561]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLH_N05.11","eo:cloud_cover":38.279384,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.115262,"s2:mean_solar_zenith":23.932092986659,"s2:mean_solar_azimuth":130.356473489181,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":35.349339,"s2:thin_cirrus_percentage":5.769221,"s2:cloud_shadow_percentage":8.881476,"s2:nodata_pixel_percentage":85.593003,"s2:unclassified_percentage":0.588054,"s2:not_vegetated_percentage":16.765666,"s2:degraded_msi_data_percentage":0.0303,"s2:high_proba_clouds_percentage":19.331181,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.178983,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736","bbox":[115.3785214,36.9452099,115.9868749,37.9431112],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R60m/T50SLG_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R60m/T50SLG_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.3785214,36.9452099],[115.4182056,37.0847685],[115.4602395,37.2322337],[115.5023433,37.3796156],[115.5445309,37.526943],[115.586851,37.6742695],[115.6293078,37.8215905],[115.66316,37.9387564],[115.9734399,37.9431112],[115.9868749,36.9535591],[115.3785214,36.9452099]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLG_N05.11","eo:cloud_cover":36.07443,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.366998,"s2:mean_solar_zenith":23.3079127743644,"s2:mean_solar_azimuth":128.912664618134,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":42.052454,"s2:thin_cirrus_percentage":9.59694,"s2:cloud_shadow_percentage":8.664303,"s2:nodata_pixel_percentage":63.342643,"s2:unclassified_percentage":0.446737,"s2:not_vegetated_percentage":12.388815,"s2:degraded_msi_data_percentage":0.0098,"s2:high_proba_clouds_percentage":13.623509,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":12.853979,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736","bbox":[115.1241092,36.0407906,115.998548,37.0422472],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R60m/T50SLF_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R60m/T50SLF_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.1241092,36.0407906],[115.1272005,36.0518786],[115.168395,36.1994042],[115.2097009,36.3469466],[115.2511476,36.4945241],[115.2927244,36.6421295],[115.3344184,36.7896865],[115.3762581,36.9372503],[115.4038391,37.0342453],[115.9856975,37.0422472],[115.998548,36.052541],[115.1241092,36.0407906]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLF_N05.11","eo:cloud_cover":54.964435,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.055954,"s2:mean_solar_zenith":22.7011208309229,"s2:mean_solar_azimuth":127.38554131012,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":23.944311,"s2:thin_cirrus_percentage":18.65389,"s2:cloud_shadow_percentage":4.03236,"s2:nodata_pixel_percentage":40.977442,"s2:unclassified_percentage":1.742189,"s2:not_vegetated_percentage":15.259357,"s2:degraded_msi_data_percentage":0.0036,"s2:high_proba_clouds_percentage":14.528267,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.782278,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736","bbox":[114.8735561,35.1359055,116.0097208,36.140702],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R60m/T50SLE_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R60m/T50SLE_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.8735561,35.1359055],[114.8819738,35.1665639],[114.9226016,35.3142249],[114.9632854,35.461833],[115.004088,35.6093671],[115.0450297,35.7568681],[115.0860717,35.9043527],[115.1272005,36.0518786],[115.1488123,36.1292747],[115.9974287,36.140702],[116.0097208,35.1508431],[114.8735561,35.1359055]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLE_N05.11","eo:cloud_cover":61.273545,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.115494,"s2:mean_solar_zenith":22.112424509398,"s2:mean_solar_azimuth":125.769073487741,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":21.663535,"s2:thin_cirrus_percentage":21.789815,"s2:cloud_shadow_percentage":2.258105,"s2:nodata_pixel_percentage":18.485914,"s2:unclassified_percentage":0.487194,"s2:not_vegetated_percentage":14.201862,"s2:degraded_msi_data_percentage":0.0151,"s2:high_proba_clouds_percentage":18.484378,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":20.999353,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736","bbox":[114.8107801,34.2336874,116.020408,35.2390176],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R60m/T50SLD_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R60m/T50SLD_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.8107801,34.9069749],[114.8414251,35.0188806],[114.8819738,35.1665639],[114.8978821,35.2243822],[116.00865,35.2390176],[116.020408,34.2490077],[114.8285025,34.2336874],[114.8107801,34.9069749]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLD_N05.11","eo:cloud_cover":78.448844,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.034417,"s2:mean_solar_zenith":21.5437499415022,"s2:mean_solar_azimuth":124.060060209001,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":16.212113,"s2:thin_cirrus_percentage":15.942572,"s2:cloud_shadow_percentage":0.25766,"s2:nodata_pixel_percentage":1.390798,"s2:unclassified_percentage":0.02907,"s2:not_vegetated_percentage":5.016909,"s2:degraded_msi_data_percentage":0.0217,"s2:high_proba_clouds_percentage":37.523243,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":24.983029,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736","bbox":[114.8489629,32.548068,116.0392875,33.4357788],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R60m/T50SLB_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R60m/T50SLB_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.0392875,32.548068],[115.7887615,32.599859],[115.7889327,32.6004646],[115.7889023,32.6004706],[115.7891664,32.6014053],[115.7889536,32.6014471],[115.7889979,32.6016034],[115.7889594,32.6016109],[115.7890053,32.6017728],[115.5566318,32.6474306],[115.5560434,32.6453339],[115.2930914,32.6951129],[115.2937843,32.697615],[115.0578661,32.7390137],[115.0578174,32.7388361],[115.0566854,32.739034],[115.0561579,32.7371155],[114.8646338,32.7699863],[114.8489629,33.4209188],[116.0296449,33.4357788],[116.0392875,32.548068]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLB_N05.11","eo:cloud_cover":22.575794,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.203345,"s2:mean_solar_zenith":20.4735728391914,"s2:mean_solar_azimuth":120.350540525566,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":47.479817,"s2:thin_cirrus_percentage":0.78185,"s2:cloud_shadow_percentage":6.80596,"s2:nodata_pixel_percentage":22.615021,"s2:unclassified_percentage":1.604452,"s2:not_vegetated_percentage":21.323994,"s2:degraded_msi_data_percentage":0.0201,"s2:high_proba_clouds_percentage":9.574964,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":12.21898,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736","bbox":[114.6260528,34.2288219,114.9346265,35.2250277],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R60m/T50SKD_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R60m/T50SKD_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.6260528,34.2288219],[114.6400448,34.28055],[114.6801328,34.4281839],[114.7203285,34.5758146],[114.7606131,34.7235075],[114.8009815,34.8711936],[114.8414251,35.0188806],[114.8819738,35.1665639],[114.897987,35.2247636],[114.9098528,35.2250277],[114.9346265,34.2355216],[114.6260528,34.2288219]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SKD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SKD_N05.11","eo:cloud_cover":43.614638,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":22.2761367578294,"s2:mean_solar_azimuth":122.199905893594,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":48.51774,"s2:thin_cirrus_percentage":19.065133,"s2:cloud_shadow_percentage":0.279661,"s2:nodata_pixel_percentage":86.968803,"s2:unclassified_percentage":0.038013,"s2:not_vegetated_percentage":7.548423,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":8.437844,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":16.11166,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736","bbox":[114.3823884,33.3223707,114.9561528,34.3242059],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R60m/T50SKC_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R60m/T50SKC_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.3823884,33.3223707],[114.4016363,33.394506],[114.4411648,33.5422871],[114.4807933,33.6900103],[114.5205076,33.8376791],[114.5602767,33.9852886],[114.6001102,34.1329128],[114.6400448,34.28055],[114.6502313,34.3180644],[114.9324553,34.3242059],[114.9561528,33.3345403],[114.3823884,33.3223707]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SKC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SKC_N05.11","eo:cloud_cover":11.416361,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.145795,"s2:mean_solar_zenith":21.7449250375714,"s2:mean_solar_azimuth":120.441765877917,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":61.459398,"s2:thin_cirrus_percentage":1.473696,"s2:cloud_shadow_percentage":3.381855,"s2:nodata_pixel_percentage":64.255857,"s2:unclassified_percentage":1.099615,"s2:not_vegetated_percentage":22.484984,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":3.599652,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.343013,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736","bbox":[114.2607634,32.7519975,114.9694467,33.4226979],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R60m/T50SKB_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R60m/T50SKB_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.9694467,32.7519975],[114.7866736,32.7833664],[114.7873809,32.7859752],[114.7868224,32.7860614],[114.7868867,32.7862979],[114.5420852,32.8238584],[114.5415941,32.8220329],[114.2607634,32.8652053],[114.2835294,32.9510485],[114.3228282,33.0988814],[114.362195,33.2466921],[114.4016363,33.394506],[114.4060608,33.4110471],[114.9540887,33.4226979],[114.9694467,32.7519975]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SKB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SKB_N05.11","eo:cloud_cover":22.665247,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.044582,"s2:mean_solar_zenith":21.2368714393912,"s2:mean_solar_azimuth":118.590050519461,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":43.758434,"s2:thin_cirrus_percentage":0.316356,"s2:cloud_shadow_percentage":6.892233,"s2:nodata_pixel_percentage":67.121089,"s2:unclassified_percentage":1.238217,"s2:not_vegetated_percentage":25.397611,"s2:degraded_msi_data_percentage":0.0001,"s2:high_proba_clouds_percentage":9.031008,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.317885,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317","bbox":[156.1138782,71.0946572,157.4042726,71.8926319],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R60m/T57WVV_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R60m/T57WVV_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.1138782,71.8926319],[156.1865749,71.8773005],[156.1873346,71.8776742],[156.1876319,71.8776116],[156.1876651,71.8776279],[156.188117,71.877533],[156.1900524,71.8784839],[156.8140604,71.7434156],[156.8138246,71.7433015],[156.8144989,71.7431445],[156.8104562,71.7411889],[157.1727301,71.6575571],[157.4042726,71.6037897],[157.1415077,71.4783743],[156.8815306,71.3524484],[156.6249589,71.2261815],[156.3719088,71.0996042],[156.3638923,71.0955339],[156.2327264,71.0946572],[156.1138782,71.8926319]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57WVV","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T57WVV_N05.11","eo:cloud_cover":0.808194,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":99.191809,"s2:mean_solar_zenith":50.6476398763521,"s2:mean_solar_azimuth":189.674210386958,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.807331,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":82.696778,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0252,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.000863,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317","bbox":[152.9994042,71.9896812,155.6536986,72.4824862],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R60m/T56XNF_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R60m/T56XNF_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[152.9994042,72.4824862],[153.2193985,72.4460466],[153.2161141,72.4442957],[153.2179226,72.4439833],[153.2172622,72.443631],[153.7972632,72.3435368],[153.8006367,72.3453062],[153.8006751,72.3452996],[153.8010871,72.3455156],[154.444778,72.2286253],[154.4440394,72.2282447],[154.4441165,72.22823],[154.4413735,72.2268181],[154.4427393,72.2265573],[154.4425015,72.2264349],[155.0043533,72.1190371],[155.0047979,72.1192626],[155.0048938,72.1192443],[155.0075676,72.1205995],[155.1169701,72.0988713],[155.6369063,71.9954883],[155.6368743,71.9954724],[155.6372575,71.9953915],[155.6342712,71.9939029],[155.6352357,71.9937003],[155.635059,71.9936122],[155.6536986,71.9896812],[152.9994198,72.0113634],[152.9994042,72.4824862]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNF","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56XNF_N05.11","eo:cloud_cover":96.588451,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":3.411547,"s2:mean_solar_zenith":51.4036388492559,"s2:mean_solar_azimuth":185.856579772221,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.549547,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":79.889983,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.006,"s2:high_proba_clouds_percentage":93.191421,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.847482,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317","bbox":[149.9444535,71.989773,153.2899112,72.9336541],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R60m/T56XMF_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R60m/T56XMF_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.9444535,72.9336541],[150.5960508,72.8460045],[150.5930046,72.8442415],[150.5960489,72.8438183],[150.5954453,72.8434687],[151.0566301,72.779791],[151.2382524,72.7545429],[151.2384947,72.7546802],[151.2395613,72.7545329],[151.2427866,72.7563617],[151.5095988,72.7163929],[151.9434834,72.6512482],[151.9408115,72.6497676],[151.9427225,72.6494703],[151.9424003,72.6492914],[151.9427767,72.649233],[151.942188,72.6489065],[152.5493995,72.5547733],[152.5525707,72.556499],[153.2193985,72.4460466],[153.2161141,72.4442957],[153.2179226,72.4439833],[153.2172622,72.443631],[153.2899112,72.4310936],[153.2831475,72.0111578],[150.1000757,71.989773],[149.9444535,72.9336541]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMF","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56XMF_N05.11","eo:cloud_cover":36.172736,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":63.827264,"s2:mean_solar_zenith":51.3424657006491,"s2:mean_solar_azimuth":182.33412651875,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":2.19706,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":30.161938,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0208,"s2:high_proba_clouds_percentage":27.641454,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":6.334222,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317","bbox":[155.7661688,71.0815674,157.4042726,71.9394383],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R60m/T56WPE_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R60m/T56WPE_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[155.8919355,71.9394383],[156.1865749,71.8773005],[156.1873346,71.8776742],[156.1876319,71.8776116],[156.1876651,71.8776279],[156.188117,71.877533],[156.1900524,71.8784839],[156.8140604,71.7434156],[156.8138246,71.7433015],[156.8144989,71.7431445],[156.8104562,71.7411889],[157.1727301,71.6575571],[157.4042726,71.6037897],[157.1415077,71.4783743],[156.8815306,71.3524484],[156.6249589,71.2261815],[156.3719088,71.0996042],[156.3363851,71.0815674],[155.7661688,71.0946736],[155.8919355,71.9394383]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WPE","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WPE_N05.11","eo:cloud_cover":6.615165,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":50.099075,"s2:mean_solar_zenith":50.5852245554377,"s2:mean_solar_azimuth":189.292703639737,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":43.285748,"s2:vegetation_percentage":0.000012,"s2:thin_cirrus_percentage":6.175373,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":73.227441,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0264,"s2:high_proba_clouds_percentage":0.000012,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.439779,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317","bbox":[155.7222819,70.7655909,156.503808,71.1822592],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R60m/T56WPD_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R60m/T56WPD_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.503808,71.1655811],[156.3719088,71.0996042],[156.1220054,70.9727179],[155.8751998,70.845503],[155.7222819,70.7655909],[155.7785751,71.1822592],[156.503808,71.1655811]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WPD","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WPD_N05.11","eo:cloud_cover":35.880098,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":32.543823,"s2:mean_solar_zenith":49.6953014001368,"s2:mean_solar_azimuth":189.242109828946,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000264,"s2:vegetation_percentage":19.556281,"s2:thin_cirrus_percentage":33.529049,"s2:cloud_shadow_percentage":0.14037,"s2:nodata_pixel_percentage":94.972533,"s2:unclassified_percentage":0.985492,"s2:not_vegetated_percentage":10.893675,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.128425,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.222621,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317","bbox":[152.9994439,70.2047216,156.049855,71.2028426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R60m/T56WND_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R60m/T56WND_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.0109186,70.9154587],[155.8751998,70.845503],[155.6311487,70.7179664],[155.3897268,70.5901472],[155.1510019,70.4620067],[154.9150514,70.3335674],[154.6821372,70.2048519],[154.6819046,70.2047216],[152.9994705,70.2183208],[152.9994439,71.2028426],[156.049855,71.1780394],[156.0109186,70.9154587]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WND","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WND_N05.11","eo:cloud_cover":56.856114,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":15.574054,"s2:mean_solar_zenith":49.6197441185099,"s2:mean_solar_azimuth":185.964816080689,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000039,"s2:vegetation_percentage":18.447578,"s2:thin_cirrus_percentage":41.570169,"s2:cloud_shadow_percentage":1.502586,"s2:nodata_pixel_percentage":15.417919,"s2:unclassified_percentage":0.599417,"s2:not_vegetated_percentage":7.02021,"s2:degraded_msi_data_percentage":0.0181,"s2:high_proba_clouds_percentage":2.51416,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":12.771785,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317","bbox":[152.9994682,69.3200417,154.8382891,70.3060175],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R60m/T56WNC_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R60m/T56WNC_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[154.8382891,70.2911462],[154.6821372,70.2048519],[154.4520274,70.0759117],[154.2522737,69.9620968],[154.2308369,69.9499096],[154.2270893,69.9477473],[154.2251344,69.9466335],[154.1821007,69.9217891],[154.0063688,69.8203926],[153.9848081,69.8077666],[153.7789296,69.6873514],[153.5598436,69.5573057],[153.3434392,69.4270398],[153.1680828,69.3200417],[152.9994925,69.3213967],[152.9994682,70.3060175],[154.8382891,70.2911462]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WNC","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WNC_N05.11","eo:cloud_cover":28.974444,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":6.244714,"s2:mean_solar_zenith":48.727798516941,"s2:mean_solar_azimuth":186.035519925034,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.007582,"s2:vegetation_percentage":61.014575,"s2:thin_cirrus_percentage":24.466808,"s2:cloud_shadow_percentage":0.602819,"s2:nodata_pixel_percentage":65.473133,"s2:unclassified_percentage":0.150109,"s2:not_vegetated_percentage":3.005756,"s2:degraded_msi_data_percentage":0.0246,"s2:high_proba_clouds_percentage":1.617663,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.889972,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317","bbox":[152.9994904,69.2161524,153.3108208,69.4096405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R60m/T56WNB_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R60m/T56WNB_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.3108208,69.4071369],[153.1295349,69.2965207],[152.9994948,69.2161524],[152.9994904,69.4096405],[153.3108208,69.4071369]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WNB","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WNB_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":16.187942,"s2:mean_solar_zenith":47.8365840469843,"s2:mean_solar_azimuth":186.116465845849,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":79.936624,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.936272,"s2:unclassified_percentage":0.015907,"s2:not_vegetated_percentage":3.85953,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317","bbox":[150.2203151,70.1988218,153.2713887,71.2026464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R60m/T56WMD_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R60m/T56WMD_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.2203151,71.1822428],[153.2713887,71.2026464],[153.258393,70.2181351],[150.3532315,70.1988218],[150.2203151,71.1822428]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WMD","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WMD_N05.11","eo:cloud_cover":30.180329,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":22.282319,"s2:mean_solar_zenith":49.5549166581445,"s2:mean_solar_azimuth":182.67867868366,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001221,"s2:vegetation_percentage":34.504521,"s2:thin_cirrus_percentage":23.401777,"s2:cloud_shadow_percentage":3.834599,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.141184,"s2:not_vegetated_percentage":9.055829,"s2:degraded_msi_data_percentage":0.0119,"s2:high_proba_clouds_percentage":2.924363,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":3.854188,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317","bbox":[150.5541183,67.6415161,151.8870665,68.5035751],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R60m/T56WMA_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R60m/T56WMA_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[151.8870665,68.5035751],[151.6963116,68.3760551],[151.501133,68.2436697],[151.3306669,68.1266474],[151.3128158,68.1144175],[151.3098001,68.1123227],[151.3080017,68.1110881],[151.11682,67.9783099],[150.9277644,67.8453157],[150.7405053,67.7122238],[150.6423828,67.6415161],[150.5541183,68.494811],[151.8870665,68.5035751]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WMA","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WMA_N05.11","eo:cloud_cover":0.260707,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":23.086421,"s2:mean_solar_zenith":46.8742524507715,"s2:mean_solar_azimuth":183.187959173324,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":75.189161,"s2:thin_cirrus_percentage":0.260707,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":78.507793,"s2:unclassified_percentage":0.000123,"s2:not_vegetated_percentage":1.463589,"s2:degraded_msi_data_percentage":0.0257,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317","bbox":[149.8987666,71.9166252,153.2446805,72.9191954],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R60m/T55XFA_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R60m/T55XFA_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.051941,72.9191954],[150.5960508,72.8460045],[150.5930046,72.8442415],[150.5960489,72.8438183],[150.5954453,72.8434687],[151.0566301,72.779791],[151.2382524,72.7545429],[151.2384947,72.7546802],[151.2395613,72.7545329],[151.2427866,72.7563617],[151.5095988,72.7163929],[151.9434834,72.6512482],[151.9408115,72.6497676],[151.9427225,72.6494703],[151.9424003,72.6492914],[151.9427767,72.649233],[151.942188,72.6489065],[152.5493995,72.5547733],[152.5525707,72.556499],[153.2193985,72.4460466],[153.2161141,72.4442957],[153.2179226,72.4439833],[153.2172622,72.443631],[153.2446805,72.4388993],[153.0648961,71.9166252],[149.8987666,71.9897902],[150.051941,72.9191954]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XFA","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55XFA_N05.11","eo:cloud_cover":32.868475,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":39.013121,"s2:mean_solar_zenith":51.2931417795957,"s2:mean_solar_azimuth":182.281583054438,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":28.06398,"s2:vegetation_percentage":0.014809,"s2:thin_cirrus_percentage":6.119839,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":25.548658,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.039622,"s2:degraded_msi_data_percentage":0.0206,"s2:high_proba_clouds_percentage":18.249761,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":8.498877,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317","bbox":[148.3295008,71.9853678,150.3435503,72.9465808],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R60m/T55XEA_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R60m/T55XEA_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.3295008,72.0004983],[148.3331336,72.0028979],[148.5412191,72.138423],[148.7520334,72.2737263],[148.9654906,72.408815],[149.1815603,72.5436977],[149.4007946,72.6783585],[149.6231885,72.812805],[149.8483552,72.9465808],[150.3435503,72.8799696],[150.181736,71.9853678],[148.3295008,72.0004983]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEA","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55XEA_N05.11","eo:cloud_cover":0.165311,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":78.549856,"s2:mean_solar_zenith":51.3316846054059,"s2:mean_solar_azimuth":178.758447433788,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":6.250601,"s2:vegetation_percentage":9.62053,"s2:thin_cirrus_percentage":0.079091,"s2:cloud_shadow_percentage":0.125453,"s2:nodata_pixel_percentage":65.46303,"s2:unclassified_percentage":0.00707,"s2:not_vegetated_percentage":5.281178,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.022864,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.063356,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317","bbox":[149.7661688,71.0251958,153.093564,72.0778947],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R60m/T55WFV_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R60m/T55WFV_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.9125486,72.0778947],[153.093564,72.0043476],[152.7889605,71.0251958],[149.7661688,71.0946736],[149.9125486,72.0778947]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFV","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFV_N05.11","eo:cloud_cover":14.408642,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":62.24485,"s2:mean_solar_zenith":50.3985404696825,"s2:mean_solar_azimuth":182.119104010669,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":5.137096,"s2:vegetation_percentage":8.447716,"s2:thin_cirrus_percentage":7.188072,"s2:cloud_shadow_percentage":0.3712,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.017366,"s2:not_vegetated_percentage":9.373128,"s2:degraded_msi_data_percentage":0.0177,"s2:high_proba_clouds_percentage":4.545556,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.675014,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317","bbox":[149.4354563,68.3567732,152.3308902,69.3909851],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R60m/T55WFS_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R60m/T55WFS_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[152.1824531,68.69759],[152.094174,68.6401589],[151.8940049,68.5082134],[151.6963116,68.3760551],[151.6678839,68.3567732],[149.4354563,68.4071896],[149.546266,69.3909851],[152.3308902,69.3276752],[152.1824531,68.69759]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFS","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFS_N05.11","eo:cloud_cover":0.789332,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":16.580273,"s2:mean_solar_zenith":47.7128243449971,"s2:mean_solar_azimuth":181.748147889462,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":77.942979,"s2:thin_cirrus_percentage":0.556001,"s2:cloud_shadow_percentage":0.55987,"s2:nodata_pixel_percentage":2.93372,"s2:unclassified_percentage":0.029898,"s2:not_vegetated_percentage":4.097645,"s2:degraded_msi_data_percentage":0.019,"s2:high_proba_clouds_percentage":0.077236,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.156095,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317","bbox":[149.3431637,67.4864868,151.7945524,68.4948252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R60m/T55WFR_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R60m/T55WFR_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[151.7945524,68.4417292],[151.6963116,68.3760551],[151.501133,68.2436697],[151.3306669,68.1266474],[151.3128158,68.1144175],[151.3098001,68.1123227],[151.3080017,68.1110881],[151.11682,67.9783099],[150.9277644,67.8453157],[150.7405053,67.7122238],[150.5554665,67.5788836],[150.4289849,67.4864868],[149.3431637,67.5108527],[149.4449048,68.4948252],[151.7945524,68.4417292]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFR","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFR_N05.11","eo:cloud_cover":4.023106,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":12.379175,"s2:mean_solar_zenith":46.8171259569399,"s2:mean_solar_azimuth":181.656167535865,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":75.724196,"s2:thin_cirrus_percentage":0.328595,"s2:cloud_shadow_percentage":3.949002,"s2:nodata_pixel_percentage":34.944767,"s2:unclassified_percentage":0.226697,"s2:not_vegetated_percentage":3.697826,"s2:degraded_msi_data_percentage":0.0183,"s2:high_proba_clouds_percentage":1.715708,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":1.978803,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317","bbox":[149.2581395,66.613896,150.5456307,67.5985039],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R60m/T55WFQ_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R60m/T55WFQ_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.5456307,67.5716984],[150.3725878,67.4452878],[150.1914159,67.3114862],[150.011373,67.1776197],[149.8336593,67.0434616],[149.6577203,66.9091737],[149.4838735,66.7747109],[149.3119871,66.6401049],[149.2789046,66.613896],[149.2581395,66.6143589],[149.3518535,67.5985039],[150.5456307,67.5716984]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFQ","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFQ_N05.11","eo:cloud_cover":18.311203,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":0.16762,"s2:mean_solar_zenith":45.9212867035903,"s2:mean_solar_azimuth":181.577292223729,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":70.429194,"s2:thin_cirrus_percentage":8.949737,"s2:cloud_shadow_percentage":8.770066,"s2:nodata_pixel_percentage":76.459223,"s2:unclassified_percentage":0.405287,"s2:not_vegetated_percentage":1.91663,"s2:degraded_msi_data_percentage":0.0258,"s2:high_proba_clouds_percentage":4.362518,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":4.998947,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317","bbox":[149.256871,66.5964405,149.3882669,66.7025631],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R60m/T55WFP_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R60m/T55WFP_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.3882669,66.6998404],[149.3119871,66.6401049],[149.256871,66.5964405],[149.2662054,66.7025631],[149.3882669,66.6998404]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFP","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFP_N05.11","eo:cloud_cover":14.128898,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":9.20466,"s2:mean_solar_zenith":45.0258444072951,"s2:mean_solar_azimuth":181.510355019838,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":72.944981,"s2:thin_cirrus_percentage":14.128898,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.753672,"s2:unclassified_percentage":0.006734,"s2:not_vegetated_percentage":3.714728,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317","bbox":[147.0447745,71.0904748,150.196858,72.0876178],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R60m/T55WEV_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R60m/T55WEV_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.0447745,71.1147861],[147.1430576,71.1858658],[147.3347997,71.3224894],[147.5290457,71.4589168],[147.7256634,71.5951974],[147.9251834,71.7312914],[148.1276863,71.8671899],[148.3331336,72.0028979],[148.4632127,72.0876178],[150.196858,72.073449],[150.0362417,71.0904748],[147.0447745,71.1147861]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WEV","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WEV_N05.11","eo:cloud_cover":4.320446,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":28.570759,"s2:mean_solar_zenith":50.436239013637,"s2:mean_solar_azimuth":178.719528383963,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.556214,"s2:vegetation_percentage":43.16763,"s2:thin_cirrus_percentage":0.006602,"s2:cloud_shadow_percentage":6.721912,"s2:nodata_pixel_percentage":24.21111,"s2:unclassified_percentage":0.254749,"s2:not_vegetated_percentage":16.408287,"s2:degraded_msi_data_percentage":0.0097,"s2:high_proba_clouds_percentage":2.393112,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":1.920732,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317","bbox":[146.9994471,70.1948429,150.049855,71.2014965],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R60m/T55WEU_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R60m/T55WEU_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.9994471,71.0820047],[147.1430576,71.1858658],[147.1649942,71.2014965],[150.049855,71.1780394],[149.9040632,70.1948429],[146.9994705,70.2183208],[146.9994471,71.0820047]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WEU","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WEU_N05.11","eo:cloud_cover":15.072462,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":13.500412,"s2:mean_solar_zenith":49.5401095399085,"s2:mean_solar_azimuth":178.688054056801,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001239,"s2:vegetation_percentage":47.441328,"s2:thin_cirrus_percentage":0.028125,"s2:cloud_shadow_percentage":13.83779,"s2:nodata_pixel_percentage":0.388642,"s2:unclassified_percentage":0.420075,"s2:not_vegetated_percentage":9.726688,"s2:degraded_msi_data_percentage":0.0204,"s2:high_proba_clouds_percentage":8.549342,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":6.494995,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"collections":["sentinel-2-l2a"],"token":"next:sentinel-2-l2a:S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '131723' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 13:05:25 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T130524Z-167d46d96d82lsqphC1DENh89s0000000ry0000000006reg status: code: 200 message: OK - request: body: '{"collections": ["sentinel-2-l2a"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '35' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716","bbox":[118.2169585,42.492896,118.5443546,43.3462],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_AOT_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R60m/T50TPN_20250717T031151_B01_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B02_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B03_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B04_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B05_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B06_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B07_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B08_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R60m/T50TPN_20250717T031151_B09_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B11_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B12_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B8A_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_SCL_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_WVP_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_TCI_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/DATASTRIP/DS_2APS_20250717T060716_S20250717T031154/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.5443546,43.3410102],[118.5336127,43.313588],[118.4767986,43.1679071],[118.4200672,43.0223138],[118.363583,42.8767423],[118.3076044,42.7309403],[118.2514322,42.5851422],[118.2169585,42.492896],[118.2338121,43.3462],[118.5443546,43.3410102]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:11:51.024000Z","platform":"Sentinel-2A","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TPN","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T060716_A052582_T50TPN_N05.11","eo:cloud_cover":37.504357,"s2:datatake_id":"GS2A_20250717T031151_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T060716_S20250717T031154_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T06:07:16.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.005036,"s2:mean_solar_zenith":24.4791112148997,"s2:mean_solar_azimuth":148.082651359385,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":42.258921,"s2:thin_cirrus_percentage":7.103997,"s2:cloud_shadow_percentage":11.257639,"s2:nodata_pixel_percentage":90.118074,"s2:unclassified_percentage":0.714036,"s2:not_vegetated_percentage":8.081225,"s2:degraded_msi_data_percentage":0.0041,"s2:high_proba_clouds_percentage":17.202029,"s2:reflectance_conversion_factor":0.96769091883615,"s2:medium_proba_clouds_percentage":13.198331,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716","bbox":[115.0575906,44.1468602,115.8719187,45.1480732],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_AOT_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R60m/T50TLQ_20250717T031151_B01_60m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B02_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B03_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B04_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B05_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B06_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B07_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B08_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R60m/T50TLQ_20250717T031151_B09_60m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B11_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B12_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B8A_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_SCL_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_WVP_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_TCI_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/DATASTRIP/DS_2APS_20250717T060716_S20250717T031154/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.0575906,44.1468602],[115.1011869,44.2782072],[115.1502472,44.4250039],[115.1989562,44.5720106],[115.2484172,44.7188577],[115.2981315,44.865624],[115.3479419,45.0123669],[115.3916184,45.1406223],[115.8525926,45.1480732],[115.8719187,44.1597966],[115.0575906,44.1468602]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:11:51.024000Z","platform":"Sentinel-2A","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TLQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T060716_A052582_T50TLQ_N05.11","eo:cloud_cover":72.285634,"s2:datatake_id":"GS2A_20250717T031151_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T060716_S20250717T031154_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T06:07:16.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.001972,"s2:mean_solar_zenith":27.5224023843446,"s2:mean_solar_azimuth":142.894627902949,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":5.61901,"s2:thin_cirrus_percentage":18.582772,"s2:cloud_shadow_percentage":1.436035,"s2:nodata_pixel_percentage":53.895164,"s2:unclassified_percentage":0.504762,"s2:not_vegetated_percentage":20.151974,"s2:degraded_msi_data_percentage":0.0243,"s2:high_proba_clouds_percentage":25.602505,"s2:reflectance_conversion_factor":0.96769091883615,"s2:medium_proba_clouds_percentage":28.100359,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716","bbox":[115.8880749,35.834919,115.9908287,36.1401671],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_AOT_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R60m/T50SME_20250717T031151_B01_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B02_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B03_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B04_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B05_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B06_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B07_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B08_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R60m/T50SME_20250717T031151_B09_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B11_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B12_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B8A_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_SCL_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_WVP_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_TCI_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/DATASTRIP/DS_2APS_20250717T060716_S20250717T031154/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.9908287,36.1401671],[115.9438729,35.9950224],[115.8965727,35.848305],[115.892273,35.834919],[115.8880749,36.1397366],[115.9908287,36.1401671]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:11:51.024000Z","platform":"Sentinel-2A","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SME","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T060716_A052582_T50SME_N05.11","eo:cloud_cover":47.183838,"s2:datatake_id":"GS2A_20250717T031151_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T060716_S20250717T031154_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T06:07:16.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.101275,"s2:mean_solar_zenith":19.8235202933671,"s2:mean_solar_azimuth":132.817782085647,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":43.840736,"s2:thin_cirrus_percentage":15.224913,"s2:cloud_shadow_percentage":0.102303,"s2:nodata_pixel_percentage":98.709226,"s2:unclassified_percentage":3.013829,"s2:not_vegetated_percentage":5.741826,"s2:degraded_msi_data_percentage":0.0021,"s2:high_proba_clouds_percentage":16.757917,"s2:reflectance_conversion_factor":0.96769091883615,"s2:medium_proba_clouds_percentage":15.201008,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712","bbox":[128.9996085,62.1408465,129.8006331,62.7419066],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R60m/T52VEQ_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R60m/T52VEQ_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9996085,62.7419066],[129.3348229,62.6719642],[129.3491627,62.6689494],[129.348033,62.6677051],[129.3528745,62.6666135],[129.352699,62.6664204],[129.4534519,62.6439367],[129.8006331,62.565659],[129.6739234,62.4289043],[129.5469863,62.2900438],[129.4212215,62.151078],[129.4120261,62.1408465],[128.9996163,62.1439815],[128.9996085,62.7419066]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VEQ_N05.11","eo:cloud_cover":0.000763,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.179538,"s2:mean_solar_zenith":41.555142486688,"s2:mean_solar_azimuth":174.585341968684,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.208325,"s2:thin_cirrus_percentage":0.000699,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":84.345657,"s2:unclassified_percentage":0.07844,"s2:not_vegetated_percentage":0.532063,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.000064,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712","bbox":[128.9996152,61.6772872,129.490866,62.2317701],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R60m/T52VEP_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R60m/T52VEP_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.490866,62.2280327],[129.4212215,62.151078],[129.2962974,62.0120782],[129.1720438,61.8729258],[129.0490893,61.7335802],[128.999622,61.6772872],[128.9996152,62.2317701],[129.490866,62.2280327]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEP","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VEP_N05.11","eo:cloud_cover":0.000152,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.205156,"s2:mean_solar_zenith":40.6603597363943,"s2:mean_solar_azimuth":174.526032947034,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":98.683,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":93.438905,"s2:unclassified_percentage":0.135321,"s2:not_vegetated_percentage":0.975464,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.000152,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712","bbox":[127.0165743,63.0279332,127.5170036,63.1171334],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R60m/T52VDR_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R60m/T52VDR_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0165743,63.1171334],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.5170036,63.0310476],[127.0228562,63.0279332],[127.0165743,63.1171334]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDR","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDR_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.089908,"s2:mean_solar_zenith":42.5550553789093,"s2:mean_solar_azimuth":171.901675873215,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.055481,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.977798,"s2:unclassified_percentage":0.072705,"s2:not_vegetated_percentage":0.779959,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712","bbox":[127.0168934,62.1306897,129.1908025,63.1157098],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R60m/T52VDQ_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R60m/T52VDQ_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0250686,63.1157098],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.5863074,63.0188193],[127.5853142,63.0176504],[127.5853219,63.017649],[127.5852843,63.0176048],[127.9988353,62.940722],[127.9988523,62.9407417],[127.998859,62.9407404],[127.9989099,62.9407993],[127.9990872,62.9407663],[127.9991731,62.940866],[128.0030855,62.9401388],[128.0032019,62.9402737],[128.0034798,62.9402222],[128.0040857,62.9409228],[128.4608686,62.8531384],[128.4657378,62.8521987],[128.4646482,62.8509597],[128.8780099,62.7661366],[128.8781506,62.766294],[128.8783839,62.7662462],[128.8784644,62.7663364],[128.8824752,62.765515],[128.8827621,62.7658365],[128.882924,62.7658034],[128.8829464,62.7658285],[128.8833939,62.7657373],[128.8837086,62.7660891],[129.1908025,62.702014],[129.1872239,62.143855],[127.0815883,62.1306897],[127.0168934,63.1156582],[127.0250686,63.1157098]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDQ_N05.11","eo:cloud_cover":5.201023,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.444513,"s2:mean_solar_zenith":41.660975876224,"s2:mean_solar_azimuth":171.880878712841,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":79.42512,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":6.495123,"s2:nodata_pixel_percentage":21.144556,"s2:unclassified_percentage":0.661313,"s2:not_vegetated_percentage":7.766136,"s2:degraded_msi_data_percentage":0.0187,"s2:high_proba_clouds_percentage":1.77157,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":3.429453,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712","bbox":[127.0760204,61.2345813,129.1877677,62.231643],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R60m/T52VDP_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R60m/T52VDP_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.3432582,61.2345813],[127.1337622,61.2777318],[127.0760204,62.2184291],[129.1877677,62.231643],[129.1857101,61.8882308],[129.1720438,61.8729258],[129.0490893,61.7335802],[128.9266298,61.5942232],[128.8056844,61.4546144],[128.6854216,61.3149099],[128.6232308,61.2425179],[127.3432582,61.2345813]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDP","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDP_N05.11","eo:cloud_cover":5.202496,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.858072,"s2:mean_solar_zenith":40.7667686010522,"s2:mean_solar_azimuth":171.854576639774,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":86.080956,"s2:thin_cirrus_percentage":0.000277,"s2:cloud_shadow_percentage":5.805069,"s2:nodata_pixel_percentage":9.062117,"s2:unclassified_percentage":0.581971,"s2:not_vegetated_percentage":1.446041,"s2:degraded_msi_data_percentage":0.0252,"s2:high_proba_clouds_percentage":1.739334,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":3.462885,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712","bbox":[127.1312482,61.0025097,128.6995513,61.3313238],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R60m/T52VDN_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R60m/T52VDN_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.4187135,61.0025097],[127.9690619,61.1041713],[127.9691274,61.1042502],[127.9686036,61.1043609],[127.9689712,61.1048051],[127.7134838,61.1582637],[127.5692104,61.1887463],[127.5690063,61.1884943],[127.5677994,61.1887468],[127.5676201,61.1885253],[127.5669824,61.1886589],[127.566871,61.1885231],[127.133769,61.2777304],[127.1312482,61.3215913],[128.6995513,61.3313238],[128.6854216,61.3149099],[128.5653652,61.1751607],[128.4464531,61.0352923],[128.4187135,61.0025097]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDN","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDN_N05.11","eo:cloud_cover":0.580258,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":12.036611,"s2:mean_solar_zenith":39.8729740524278,"s2:mean_solar_azimuth":171.822741890705,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.533697,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":1.129968,"s2:nodata_pixel_percentage":85.815692,"s2:unclassified_percentage":0.586644,"s2:not_vegetated_percentage":0.96022,"s2:degraded_msi_data_percentage":0.0198,"s2:high_proba_clouds_percentage":0.175081,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.405177,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712","bbox":[124.9899031,62.9866068,127.2172106,63.4248872],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R60m/T52VCR_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R60m/T52VCR_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.9899031,63.4248872],[125.2932314,63.3847438],[125.2932886,63.3848182],[125.2979312,63.3841971],[125.2981631,63.384498],[125.2989197,63.3843977],[125.2995225,63.3851818],[125.3895905,63.372172],[125.632161,63.3370397],[125.6340874,63.3367593],[125.7889128,63.314125],[125.7886802,63.3138295],[125.7887275,63.3138223],[125.7877109,63.3125302],[125.7877482,63.3125246],[125.7876699,63.3124252],[126.2195538,63.2478247],[126.2196728,63.2479728],[126.2197034,63.2479682],[126.2197423,63.2480168],[126.2246919,63.2472743],[126.2254384,63.2482054],[126.3050526,63.2354271],[126.3824637,63.2229757],[126.6983208,63.1720815],[126.6971974,63.1707085],[126.697223,63.1707043],[126.6971894,63.1706633],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.2137791,63.08455],[127.2172106,63.0305154],[125.0515033,62.9866068],[124.9899031,63.4248872]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCR","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCR_N05.11","eo:cloud_cover":8.21901,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.656129,"s2:mean_solar_zenith":42.6743589294175,"s2:mean_solar_azimuth":169.168645103758,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":82.176405,"s2:thin_cirrus_percentage":7.90844,"s2:cloud_shadow_percentage":0.498461,"s2:nodata_pixel_percentage":74.510235,"s2:unclassified_percentage":0.358015,"s2:not_vegetated_percentage":8.088169,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.049592,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.260978,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712","bbox":[125.0396236,62.0909077,127.2701768,63.1145955],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R60m/T52VCQ_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R60m/T52VCQ_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0317166,63.1145955],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.2138297,63.0845411],[127.2701768,62.1331753],[125.1685297,62.0909077],[125.0396236,63.0741757],[127.0317166,63.1145955]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCQ_N05.11","eo:cloud_cover":3.044319,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.262499,"s2:mean_solar_zenith":41.7812611954988,"s2:mean_solar_azimuth":169.186086335173,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":87.450129,"s2:thin_cirrus_percentage":0.000076,"s2:cloud_shadow_percentage":4.792491,"s2:nodata_pixel_percentage":0.1421,"s2:unclassified_percentage":0.395385,"s2:not_vegetated_percentage":4.05145,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.876345,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":2.167897,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712","bbox":[125.1574343,61.2394793,127.3194781,62.2209238],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R60m/T52VCP_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R60m/T52VCP_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.3194781,61.2394793],[127.1231788,61.2799116],[127.1232847,61.2800426],[127.1219084,61.2803084],[127.1220094,61.2804344],[127.1199989,61.2808238],[127.1202491,61.2811357],[126.7235626,61.3576592],[126.7234342,61.357496],[126.7230399,61.3575721],[126.7228081,61.3572812],[126.2803626,61.4399715],[126.2805356,61.4401926],[126.2800414,61.4402802],[126.28051,61.4408843],[125.8827905,61.5113669],[125.882757,61.511323],[125.8786748,61.5120461],[125.8781038,61.5113084],[125.6894189,61.5430415],[125.4306695,61.5865714],[125.4311657,61.5872339],[125.4264335,61.587998],[125.4268802,61.5885931],[125.2257255,61.6211511],[125.1574343,62.1785001],[127.2651556,62.2209238],[127.3194781,61.2394793]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCP","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCP_N05.11","eo:cloud_cover":0.378669,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.324839,"s2:mean_solar_zenith":40.8881029281013,"s2:mean_solar_azimuth":169.192930712771,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.305993,"s2:thin_cirrus_percentage":0.003307,"s2:cloud_shadow_percentage":0.609475,"s2:nodata_pixel_percentage":22.153567,"s2:unclassified_percentage":0.245625,"s2:not_vegetated_percentage":5.071058,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.08969,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.285671,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712","bbox":[126.9371671,61.2395079,127.3193394,61.3239944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R60m/T52VCN_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R60m/T52VCN_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.3193394,61.2395079],[127.1231788,61.2799116],[127.1232847,61.2800426],[127.1219084,61.2803084],[127.1220094,61.2804344],[127.1199989,61.2808238],[127.1202491,61.2811357],[126.9371671,61.3164534],[127.314961,61.3239944],[127.3193394,61.2395079]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCN","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCN_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.0,"s2:mean_solar_zenith":39.99542120153,"s2:mean_solar_azimuth":169.189539087694,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.996364,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.178582,"s2:unclassified_percentage":0.003635,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712","bbox":[124.9763539,62.9810794,127.1580834,63.4229999],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_AOT_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R60m/T51VXL_20250717T031031_B01_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B02_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B03_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B04_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B05_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B06_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B07_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B08_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R60m/T51VXL_20250717T031031_B09_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B11_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B12_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B8A_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_SCL_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_WVP_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_TCI_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.0041644,63.4229999],[125.2932314,63.3847438],[125.2932886,63.3848182],[125.2979312,63.3841971],[125.2981631,63.384498],[125.2989197,63.3843977],[125.2995225,63.3851818],[125.3895905,63.372172],[125.632161,63.3370397],[125.6340874,63.3367593],[125.7889128,63.314125],[125.7886802,63.3138295],[125.7887275,63.3138223],[125.7877109,63.3125302],[125.7877482,63.3125246],[125.7876699,63.3124252],[126.2195538,63.2478247],[126.2196728,63.2479728],[126.2197034,63.2479682],[126.2197423,63.2480168],[126.2246919,63.2472743],[126.2254384,63.2482054],[126.3050526,63.2354271],[126.3824637,63.2229757],[126.6983208,63.1720815],[126.6971974,63.1707085],[126.697223,63.1707043],[126.6971894,63.1706633],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.1580834,63.0943772],[127.141383,62.9810794],[124.9763539,63.0279443],[125.0041644,63.4229999]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXL","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VXL_N05.11","eo:cloud_cover":8.247952,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.686861,"s2:mean_solar_zenith":42.6678613842167,"s2:mean_solar_azimuth":169.206249487435,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":82.077497,"s2:thin_cirrus_percentage":7.931365,"s2:cloud_shadow_percentage":0.614416,"s2:nodata_pixel_percentage":73.752838,"s2:unclassified_percentage":0.342299,"s2:not_vegetated_percentage":8.025804,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.05055,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.266037,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712","bbox":[124.9176451,62.0855865,127.1538391,63.1156693],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_AOT_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R60m/T51VXK_20250717T031031_B01_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B02_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B03_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B04_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B05_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B06_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B07_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B08_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R60m/T51VXK_20250717T031031_B09_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B11_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B12_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B8A_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_SCL_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_WVP_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_TCI_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.9823142,63.1156693],[127.1538391,63.0686274],[127.0186771,62.0855865],[124.9176451,62.1307003],[124.9823142,63.1156693]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXK","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VXK_N05.11","eo:cloud_cover":2.430609,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.282683,"s2:mean_solar_zenith":41.7905952014376,"s2:mean_solar_azimuth":168.972251447119,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":88.523567,"s2:thin_cirrus_percentage":0.00207,"s2:cloud_shadow_percentage":3.906056,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.334412,"s2:not_vegetated_percentage":4.519023,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.6896,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":1.738939,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712","bbox":[124.8897369,61.3196438,127.0303111,62.2184397],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_AOT_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R60m/T51VXJ_20250717T031031_B01_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B02_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B03_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B04_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B05_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B06_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B07_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B08_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R60m/T51VXJ_20250717T031031_B09_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B11_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B12_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B8A_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_SCL_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_WVP_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_TCI_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.9206288,61.3196438],[126.7235626,61.3576592],[126.7234342,61.357496],[126.7230399,61.3575721],[126.7228081,61.3572812],[126.2803626,61.4399715],[126.2805356,61.4401926],[126.2800414,61.4402802],[126.28051,61.4408843],[125.8827905,61.5113669],[125.882757,61.511323],[125.8786748,61.5120461],[125.8781038,61.5113084],[125.6894189,61.5430415],[125.4306695,61.5865714],[125.4311657,61.5872339],[125.4264335,61.587998],[125.4268802,61.5885931],[125.0213233,61.6542347],[125.0206154,61.6532697],[125.0205831,61.6532264],[124.8897369,61.6728839],[124.9232108,62.2184397],[127.0303111,62.1731593],[126.9206288,61.3196438]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXJ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VXJ_N05.11","eo:cloud_cover":0.09484,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.390283,"s2:mean_solar_zenith":40.9134462760282,"s2:mean_solar_azimuth":168.736071092909,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.095291,"s2:thin_cirrus_percentage":0.002062,"s2:cloud_shadow_percentage":0.189878,"s2:nodata_pixel_percentage":29.218137,"s2:unclassified_percentage":0.256012,"s2:not_vegetated_percentage":5.894198,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.020653,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.072125,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712","bbox":[123.9805079,63.0251146,125.1982436,63.512869],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R60m/T51VWL_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R60m/T51VWL_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.9805079,63.0342255],[124.0175404,63.085966],[124.1204767,63.2286379],[124.224467,63.3711768],[124.32843,63.512869],[124.5210703,63.4881189],[124.6346038,63.4734666],[124.8427827,63.4461241],[124.8426612,63.4459627],[124.843131,63.4458996],[124.8420428,63.4444555],[125.1982436,63.3973148],[125.1694829,63.0251146],[123.9805079,63.0342255]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWL","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VWL_N05.11","eo:cloud_cover":1.018668,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":2.220357,"s2:mean_solar_zenith":42.8838893759669,"s2:mean_solar_azimuth":166.489936893053,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":72.827864,"s2:thin_cirrus_percentage":0.982256,"s2:cloud_shadow_percentage":0.032739,"s2:nodata_pixel_percentage":79.224998,"s2:unclassified_percentage":0.36414,"s2:not_vegetated_percentage":23.532301,"s2:degraded_msi_data_percentage":0.0254,"s2:high_proba_clouds_percentage":0.00452,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.031893,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712","bbox":[123.354832,62.1279766,125.1760247,63.1215163],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R60m/T51VWK_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R60m/T51VWK_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.354832,62.1412813],[123.4144574,62.228337],[123.5131015,62.3715201],[123.6127497,62.51456],[123.7130394,62.6574937],[123.8139747,62.8003313],[123.9153436,62.9431804],[124.0175404,63.085966],[124.0431896,63.1215163],[125.1760247,63.1128289],[125.1050472,62.1279766],[123.354832,62.1412813]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWK","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VWK_N05.11","eo:cloud_cover":7.135528,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.506344,"s2:mean_solar_zenith":42.0087072062846,"s2:mean_solar_azimuth":166.295937583059,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.679336,"s2:thin_cirrus_percentage":5.686684,"s2:cloud_shadow_percentage":2.243425,"s2:nodata_pixel_percentage":32.554737,"s2:unclassified_percentage":0.489599,"s2:not_vegetated_percentage":5.940771,"s2:degraded_msi_data_percentage":0.0169,"s2:high_proba_clouds_percentage":0.370124,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":1.07872,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712","bbox":[123.1985668,61.6459062,125.1111559,62.2286126],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R60m/T51VWJ_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R60m/T51VWJ_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.0727792,61.6459062],[125.0213233,61.6542347],[125.0206154,61.6532697],[125.0205831,61.6532264],[124.5618784,61.7221392],[124.5626009,61.7231425],[124.5564762,61.7240349],[124.5565079,61.7240783],[124.5563956,61.7240948],[124.5565044,61.7242461],[124.1371289,61.7858646],[124.1365717,61.7850755],[123.6592948,61.8481846],[123.660187,61.8494696],[123.3815512,61.8856612],[123.1985668,61.909715],[123.2200843,61.9419286],[123.3164139,62.0851892],[123.4144574,62.228337],[123.4146472,62.2286126],[125.1111559,62.2157059],[125.0727792,61.6459062]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWJ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VWJ_N05.11","eo:cloud_cover":17.276834,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.309421,"s2:mean_solar_zenith":41.1337724557747,"s2:mean_solar_azimuth":166.094856835182,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":78.719282,"s2:thin_cirrus_percentage":15.268284,"s2:cloud_shadow_percentage":1.109277,"s2:nodata_pixel_percentage":60.790163,"s2:unclassified_percentage":0.225751,"s2:not_vegetated_percentage":2.317589,"s2:degraded_msi_data_percentage":0.0102,"s2:high_proba_clouds_percentage":0.228628,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":1.779921,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500","bbox":[158.999207,76.4849983,160.3514349,76.9244244],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R60m/T57XWF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R60m/T57XWF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[158.999207,76.9244244],[159.0277214,76.9172337],[159.0284819,76.9173979],[159.0286906,76.9173453],[159.0290513,76.9174232],[159.0291725,76.9173927],[159.0304404,76.9176667],[159.0305714,76.9176338],[159.0316672,76.9178705],[159.0319787,76.9177922],[159.0327171,76.9179518],[159.032787,76.9179342],[159.0333799,76.9180625],[159.0336093,76.9180049],[159.034998,76.9183053],[159.0353471,76.9182178],[159.0360053,76.9183601],[159.036266,76.9182948],[159.0372549,76.9185087],[159.2809197,76.8551048],[159.7206787,76.7400003],[159.7134913,76.7384641],[160.3514349,76.5588516],[160.0037225,76.4849983],[158.9992329,76.493385],[158.999207,76.9244244]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XWF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XWF_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.998295,"s2:mean_solar_zenith":57.0125193903975,"s2:mean_solar_azimuth":206.318532794304,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001708,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":92.03369,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.019,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500","bbox":[158.999228,76.2654779,160.3514349,76.5810287],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R60m/T57XWE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R60m/T57XWE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[160.3115986,76.5700674],[160.3514349,76.5588516],[159.8829236,76.4593409],[159.4120142,76.3571229],[158.9992446,76.2654779],[158.999228,76.5810287],[160.3115986,76.5700674]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XWE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XWE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":100.0,"s2:mean_solar_zenith":56.2005204288736,"s2:mean_solar_azimuth":206.477256331399,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":94.691265,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500","bbox":[154.729453,77.3578558,157.1147583,77.8563411],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R60m/T57XVG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R60m/T57XVG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[154.729453,77.8563411],[154.8202751,77.8399709],[154.8207919,77.8400908],[154.8208739,77.8400761],[154.8230835,77.8405892],[154.8243286,77.8403644],[154.8293017,77.8415197],[155.2337823,77.7636555],[155.6282619,77.6875444],[155.6194528,77.6855303],[156.3071352,77.5465017],[156.3073866,77.5465585],[156.307522,77.5465311],[156.3087991,77.5468196],[156.309347,77.5467088],[156.3159533,77.5482018],[157.0648,77.3881022],[157.0565254,77.3862579],[157.1147583,77.3731023],[154.9021672,77.3578558],[154.729453,77.8563411]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVG_N05.11","eo:cloud_cover":0.341631,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.655706,"s2:mean_solar_zenith":57.4702757300568,"s2:mean_solar_azimuth":201.548329525018,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.00266,"s2:thin_cirrus_percentage":0.027108,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":87.528163,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0006,"s2:high_proba_clouds_percentage":0.005161,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.309362,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500","bbox":[154.8738859,76.4642293,159.3841769,77.4586326],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R60m/T57XVF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R60m/T57XVF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.7349029,77.4586326],[157.0648,77.3881022],[157.0565254,77.3862579],[157.7022397,77.2403818],[157.702601,77.2404615],[157.7027581,77.240426],[157.7047207,77.2408589],[157.7054919,77.2406847],[157.7066273,77.2409352],[157.7066411,77.2409321],[157.7066482,77.2409337],[157.7069247,77.2408713],[157.7113152,77.2418411],[157.751275,77.2323977],[158.3681624,77.0864368],[158.4215766,77.0737874],[158.4137157,77.0720741],[159.0277214,76.9172337],[159.0284819,76.9173979],[159.0286906,76.9173453],[159.0290513,76.9174232],[159.0291725,76.9173927],[159.0304404,76.9176667],[159.0305714,76.9176338],[159.0316672,76.9178705],[159.0319787,76.9177922],[159.0327171,76.9179518],[159.032787,76.9179342],[159.0333799,76.9180625],[159.0336093,76.9180049],[159.034998,76.9183053],[159.0353471,76.9182178],[159.0360053,76.9183601],[159.036266,76.9182948],[159.0372549,76.9185087],[159.2809197,76.8551048],[159.3841769,76.8280778],[159.3743463,76.4931072],[155.1684626,76.4642293],[154.8738859,77.4458044],[156.7349029,77.4586326]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVF_N05.11","eo:cloud_cover":0.183424,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.799508,"s2:mean_solar_zenith":56.6528706201607,"s2:mean_solar_azimuth":201.956721906669,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000284,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.012645,"s2:nodata_pixel_percentage":19.528614,"s2:unclassified_percentage":0.000025,"s2:not_vegetated_percentage":0.003999,"s2:degraded_msi_data_percentage":0.0129,"s2:high_proba_clouds_percentage":0.050012,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.133412,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500","bbox":[155.1439841,75.5697411,159.376745,76.580749],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R60m/T57XVE_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R60m/T57XVE_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[159.3707743,76.3479666],[158.9476216,76.2540163],[158.4897237,76.1501067],[158.0387006,76.0453667],[157.5940915,75.9398774],[157.1558349,75.8336193],[156.7242541,75.7265717],[156.2992958,75.618772],[156.1292961,75.5747183],[155.4016102,75.5697411],[155.1439841,76.5516761],[159.376745,76.580749],[159.3707743,76.3479666]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.999988,"s2:mean_solar_zenith":55.8369908790616,"s2:mean_solar_azimuth":202.358804292345,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":5e-6,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":31.199139,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":5e-6,"s2:degraded_msi_data_percentage":0.0254,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500","bbox":[155.3801086,75.3937971,156.4805352,75.6647472],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R60m/T57XVD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R60m/T57XVD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.4805352,75.6647472],[156.2992958,75.618772],[155.8804421,75.5102304],[155.4676367,75.400987],[155.4410269,75.3937971],[155.3801086,75.6572177],[156.4805352,75.6647472]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVD_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":100.0,"s2:mean_solar_zenith":55.0232203762536,"s2:mean_solar_azimuth":202.757833932918,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":96.295464,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500","bbox":[152.999126,77.3539538,157.1995181,78.1584369],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R60m/T56XNM_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R60m/T56XNM_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[152.999126,78.1584369],[153.2137934,78.1240967],[153.2164319,78.1247293],[153.2181228,78.1244585],[153.2226392,78.1255419],[153.6076847,78.0591084],[154.0880985,77.9760879],[154.0781257,77.9737392],[154.8202751,77.8399709],[154.8207919,77.8400908],[154.8208739,77.8400761],[154.8230835,77.8405892],[154.8243286,77.8403644],[154.8293017,77.8415197],[155.2337823,77.7636555],[155.6282619,77.6875444],[155.6194528,77.6855303],[156.3071352,77.5465017],[156.3073866,77.5465585],[156.307522,77.5465311],[156.3087991,77.5468196],[156.309347,77.5467088],[156.3159533,77.5482018],[157.0648,77.3881022],[157.0565254,77.3862579],[157.1995181,77.3539538],[152.9991794,77.3891507],[152.999126,78.1584369]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNM_N05.11","eo:cloud_cover":5.330747,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":94.668388,"s2:mean_solar_zenith":57.340280258578,"s2:mean_solar_azimuth":199.653776562899,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000865,"s2:thin_cirrus_percentage":2.421382,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":62.79549,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0251,"s2:high_proba_clouds_percentage":0.541456,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.36791,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500","bbox":[152.999228,75.571101,157.2301741,76.5810287],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R60m/T56XNK_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R60m/T56XNK_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[157.0152107,75.7987394],[156.7242541,75.7265717],[156.2992958,75.618772],[156.1153371,75.571101],[152.9992797,75.5970173],[152.999228,76.5810287],[157.2301741,76.5456907],[157.0152107,75.7987394]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNK_N05.11","eo:cloud_cover":33.50164,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":66.49825,"s2:mean_solar_zenith":55.6396491325,"s2:mean_solar_azimuth":199.832394104259,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000014,"s2:thin_cirrus_percentage":0.030269,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":2.534195,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000092,"s2:degraded_msi_data_percentage":0.0223,"s2:high_proba_clouds_percentage":24.216855,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.254517,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500","bbox":[152.9992754,74.7005381,156.4460123,75.6846675],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R60m/T56XNJ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R60m/T56XNJ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.4460123,75.6559898],[156.2992958,75.618772],[155.8804421,75.5102304],[155.4676367,75.400987],[155.0607457,75.2910453],[155.0597053,75.2907587],[155.0571479,75.2900682],[154.8086754,75.2215872],[154.6595007,75.180482],[154.6578474,75.1800178],[154.6559695,75.1795002],[154.637369,75.1742679],[154.2635992,75.0693229],[153.8728205,74.9574878],[153.4876079,74.8449646],[153.1077556,74.7318693],[153.0045456,74.7005381],[152.999321,74.7005814],[152.9992754,75.6846675],[156.4460123,75.6559898]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNJ_N05.11","eo:cloud_cover":70.339298,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":29.659665,"s2:mean_solar_zenith":54.7911516161212,"s2:mean_solar_azimuth":199.962093717898,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.127737,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":56.646645,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.001041,"s2:degraded_msi_data_percentage":0.0227,"s2:high_proba_clouds_percentage":60.172588,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.038975,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500","bbox":[152.9993171,74.698952,153.2907765,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R60m/T56XNH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R60m/T56XNH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.2907765,74.786361],[153.1077556,74.7318693],[152.9993208,74.698952],[152.9993171,74.7887762],[153.2907765,74.786361]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNH_N05.11","eo:cloud_cover":91.559899,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":8.429157,"s2:mean_solar_zenith":53.9446261366776,"s2:mean_solar_azimuth":200.114987193235,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.109418,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.666452,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.010942,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":68.745273,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":22.705208,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500","bbox":[150.9180636,78.2677006,152.2768507,78.4028043],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R60m/T56XMN_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R60m/T56XMN_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.9180636,78.2677006],[150.9973416,78.2879305],[151.4584651,78.4028043],[152.0501679,78.3119796],[152.2768507,78.2770951],[150.9180636,78.2677006]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMN_N05.11","eo:cloud_cover":98.9811,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.018898,"s2:mean_solar_zenith":57.9347833437519,"s2:mean_solar_azimuth":194.608044592398,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.390734,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":52.855265,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":46.125838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500","bbox":[148.785543,77.3578558,153.4242399,78.3609268],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R60m/T56XMM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R60m/T56XMM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.785543,77.694455],[148.7915312,77.6961872],[149.2156941,77.8158741],[149.6482867,77.9348992],[150.0892084,78.0532582],[150.5388616,78.1709369],[150.9973416,78.2879305],[151.2777707,78.3577902],[151.7312878,78.3609268],[152.0501679,78.3119796],[152.4104764,78.2565313],[152.4077242,78.2558588],[152.4080935,78.2557991],[152.4073844,78.2556261],[152.4076782,78.2555787],[152.4070375,78.2554222],[152.4070648,78.2554178],[152.4060861,78.2551787],[152.4060873,78.2551785],[152.4018478,78.2541446],[152.4019927,78.2541215],[152.4015927,78.2540239],[153.2137934,78.1240967],[153.2164319,78.1247293],[153.2181228,78.1244585],[153.2226392,78.1255419],[153.4242399,78.0907589],[153.4004489,77.3888525],[148.9021672,77.3578558],[148.785543,77.694455]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMM_N05.11","eo:cloud_cover":53.933001,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":46.066993,"s2:mean_solar_zenith":57.0791530126844,"s2:mean_solar_azimuth":194.974581699899,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":4e-6,"s2:thin_cirrus_percentage":0.964429,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":23.851644,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0112,"s2:high_proba_clouds_percentage":37.277386,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.691185,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500","bbox":[148.8738859,76.4642293,153.4032221,77.4770256],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R60m/T56XML_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R60m/T56XML_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.8738859,77.4458044],[153.4032221,77.4770256],[153.3743463,76.4931072],[149.1684626,76.4642293],[148.8738859,77.4458044]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XML","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XML_N05.11","eo:cloud_cover":53.365338,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":16.842276,"s2:mean_solar_zenith":56.2252079251133,"s2:mean_solar_azimuth":195.327958642391,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":29.711074,"s2:vegetation_percentage":0.00001,"s2:thin_cirrus_percentage":8.906405,"s2:cloud_shadow_percentage":0.073955,"s2:nodata_pixel_percentage":0.000017,"s2:unclassified_percentage":0.000524,"s2:not_vegetated_percentage":0.004741,"s2:degraded_msi_data_percentage":0.0244,"s2:high_proba_clouds_percentage":17.852481,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":26.606452,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500","bbox":[149.1439841,75.5697411,153.376745,76.580749],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R60m/T56XMK_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R60m/T56XMK_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.1439841,76.5516761],[153.376745,76.580749],[153.3515061,75.5967575],[149.4016102,75.5697411],[149.1439841,76.5516761]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMK_N05.11","eo:cloud_cover":45.38013,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":52.364403,"s2:mean_solar_zenith":55.3719755202348,"s2:mean_solar_azimuth":195.673002025668,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":1.971009,"s2:vegetation_percentage":0.000159,"s2:thin_cirrus_percentage":5.233015,"s2:cloud_shadow_percentage":0.283665,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.00003,"s2:not_vegetated_percentage":0.000601,"s2:degraded_msi_data_percentage":0.0026,"s2:high_proba_clouds_percentage":21.191287,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.95583,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500","bbox":[149.3801086,74.6749694,153.353612,75.684406],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R60m/T56XMJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R60m/T56XMJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.3336017,74.7991116],[153.1077556,74.7318693],[152.9963672,74.6980554],[149.6072622,74.6749694],[149.3801086,75.6572177],[153.353612,75.684406],[153.3336017,74.7991116]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMJ_N05.11","eo:cloud_cover":85.592216,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":13.543333,"s2:mean_solar_zenith":54.5200220153859,"s2:mean_solar_azimuth":196.01289650902,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.145424,"s2:vegetation_percentage":0.000017,"s2:thin_cirrus_percentage":1.460761,"s2:cloud_shadow_percentage":0.7084,"s2:nodata_pixel_percentage":0.474215,"s2:unclassified_percentage":0.005104,"s2:not_vegetated_percentage":0.005507,"s2:degraded_msi_data_percentage":0.0183,"s2:high_proba_clouds_percentage":67.295456,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":16.835994,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500","bbox":[149.5881136,73.7804829,153.2972396,74.7882853],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R60m/T56XMH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R60m/T56XMH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.2972396,74.7882853],[153.1077556,74.7318693],[152.733329,74.6182055],[152.364361,74.5038966],[152.0006473,74.3890213],[151.6423724,74.2735787],[151.2890793,74.1575707],[150.9406558,74.0410123],[150.5970299,73.923947],[150.2579129,73.8063941],[150.1921903,73.7832117],[149.7898569,73.7804829],[149.5881136,74.763009],[153.2972396,74.7882853]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMH_N05.11","eo:cloud_cover":99.362773,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.636787,"s2:mean_solar_zenith":53.6699179512728,"s2:mean_solar_azimuth":196.350226583669,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000036,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.212714,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":44.940388,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000404,"s2:degraded_msi_data_percentage":0.0241,"s2:high_proba_clouds_percentage":93.303627,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":5.846434,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500","bbox":[149.7728973,73.6488294,150.448892,73.8725959],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R60m/T56XMG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R60m/T56XMG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.448892,73.8725959],[150.2579129,73.8063941],[149.9231974,73.6883294],[149.81311,73.6488294],[149.7728973,73.8680091],[150.448892,73.8725959]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMG_N05.11","eo:cloud_cover":99.953437,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.046564,"s2:mean_solar_zenith":52.8207046054607,"s2:mean_solar_azimuth":196.687646798262,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":97.905159,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":98.446125,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.507312,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500","bbox":[150.8601802,78.2447576,151.8739788,78.4028043],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R60m/T55XEH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R60m/T55XEH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.8601802,78.2529301],[150.9973416,78.2879305],[151.4584651,78.4028043],[151.8739788,78.3390241],[151.8321726,78.2447576],[150.8601802,78.2529301]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEH_N05.11","eo:cloud_cover":98.501015,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.498985,"s2:mean_solar_zenith":57.8666844216934,"s2:mean_solar_azimuth":193.082431081795,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.070586,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":45.901051,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":52.599967,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500","bbox":[147.7295877,77.3514755,151.8679037,78.3377171],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R60m/T55XEG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R60m/T55XEG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.7295877,77.3830302],[147.9673017,77.455002],[148.3756143,77.5758752],[148.7915312,77.6961872],[149.2156941,77.8158741],[149.6482867,77.9348992],[150.0892084,78.0532582],[150.5388616,78.1709369],[150.9973416,78.2879305],[151.1971937,78.3377171],[151.8679037,78.332076],[151.4952763,77.3514755],[147.7295877,77.3830302]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEG_N05.11","eo:cloud_cover":77.95974,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":22.04026,"s2:mean_solar_zenith":56.9884929302579,"s2:mean_solar_azimuth":193.066565610651,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.72874,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":51.733977,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0006,"s2:high_proba_clouds_percentage":60.839087,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":16.391915,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500","bbox":[146.999193,76.458284,151.5262788,77.4688195],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R60m/T55XEF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R60m/T55XEF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.999193,77.1566382],[147.1725997,77.2116075],[147.5662727,77.333584],[147.9673017,77.455002],[148.0139776,77.4688195],[151.5262788,77.4393779],[151.2033368,76.458284],[146.9992329,76.493385],[146.999193,77.1566382]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEF_N05.11","eo:cloud_cover":82.031554,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":10.689694,"s2:mean_solar_zenith":56.1114584570531,"s2:mean_solar_azimuth":193.082010454725,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":7.173916,"s2:vegetation_percentage":0.000031,"s2:thin_cirrus_percentage":4.543883,"s2:cloud_shadow_percentage":0.097317,"s2:nodata_pixel_percentage":3.864735,"s2:unclassified_percentage":0.000538,"s2:not_vegetated_percentage":0.00556,"s2:degraded_msi_data_percentage":0.0197,"s2:high_proba_clouds_percentage":52.378035,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.109643,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500","bbox":[146.999228,75.5641782,151.2301741,76.5810287],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R60m/T55XEE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R60m/T55XEE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.999228,76.5810287],[151.2301741,76.5456907],[150.9477068,75.5641782],[146.9992797,75.5970173],[146.999228,76.5810287]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEE_N05.11","eo:cloud_cover":53.384507,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":46.615151,"s2:mean_solar_zenith":55.2345549596294,"s2:mean_solar_azimuth":193.124143423144,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000093,"s2:thin_cirrus_percentage":4.994157,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000249,"s2:degraded_msi_data_percentage":0.0196,"s2:high_proba_clouds_percentage":39.077944,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.312408,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500","bbox":[146.9992754,74.6697452,150.9712829,75.6846675],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R60m/T55XED_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R60m/T55XED_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.9992754,75.6846675],[150.9712829,75.6516194],[150.7222017,74.6697452],[146.999321,74.7005814],[146.9992754,75.6846675]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XED","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XED_N05.11","eo:cloud_cover":77.311695,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":12.304876,"s2:mean_solar_zenith":54.3583376728985,"s2:mean_solar_azimuth":193.18952409454,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":2.859898,"s2:vegetation_percentage":0.440835,"s2:thin_cirrus_percentage":2.720784,"s2:cloud_shadow_percentage":1.480692,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":3.236721,"s2:not_vegetated_percentage":2.365284,"s2:degraded_msi_data_percentage":0.0013,"s2:high_proba_clouds_percentage":59.503609,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.087296,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500","bbox":[146.9993171,73.7783931,150.7431996,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R60m/T55XEC_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R60m/T55XEC_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.55186,73.9082891],[150.2579129,73.8063941],[150.1785294,73.7783931],[146.9993576,73.8046111],[146.9993171,74.7887762],[150.7431996,74.7577532],[150.55186,73.9082891]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEC_N05.11","eo:cloud_cover":68.469048,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":7.635746,"s2:mean_solar_zenith":53.4833641272104,"s2:mean_solar_azimuth":193.275554588597,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":23.895152,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":1.61995,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.685422,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.00006,"s2:degraded_msi_data_percentage":0.0197,"s2:high_proba_clouds_percentage":52.331609,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.517485,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951","bbox":[146.9993572,72.901175,149.0036291,73.8089506],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R60m/T55XEB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R60m/T55XEB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.9993572,73.8089506],[147.1427832,73.7794979],[147.1388486,73.7779517],[147.7229513,73.6506409],[147.7233951,73.650813],[147.7235094,73.6507881],[147.7236932,73.6508593],[147.7240475,73.6507822],[147.7243296,73.6508916],[147.7243504,73.6508871],[147.7247691,73.6510496],[147.7248505,73.6510319],[147.7255062,73.6512862],[147.7257039,73.6512433],[147.7261293,73.6514081],[147.7263864,73.6513524],[147.7267364,73.6514879],[147.7270351,73.6514232],[147.727791,73.651716],[147.7280459,73.6516608],[147.7281685,73.6517083],[148.1005415,73.5684062],[148.3843142,73.504544],[148.3808209,73.5032084],[149.0036291,73.3532031],[148.6905197,73.2352856],[148.3769724,73.1148966],[148.0677956,72.9940723],[147.8341147,72.901175],[146.9993903,72.9080271],[146.9993572,73.8089506]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XEB_N05.11","eo:cloud_cover":2.939822,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":97.059447,"s2:mean_solar_zenith":52.6086159254848,"s2:mean_solar_azimuth":193.380384898633,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000733,"s2:thin_cirrus_percentage":2.770614,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":67.427117,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0269,"s2:high_proba_clouds_percentage":0.010828,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.15838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500","bbox":[146.9993542,73.2165381,150.4241503,73.8922753],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R60m/T55XEB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R60m/T55XEB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.9964017,73.3707326],[148.0002195,73.3721947],[147.7680023,73.4239233],[147.412226,73.503572],[147.4092088,73.5024014],[147.0642351,73.5769222],[146.9993652,73.5909837],[146.9993542,73.8922753],[150.4241503,73.8640193],[150.2579129,73.8063941],[149.9231974,73.6883294],[149.5927626,73.5697675],[149.2665598,73.4507085],[148.9449355,73.3311567],[148.6417125,73.2165381],[148.2633675,73.3068357],[147.9964017,73.3707326]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEB_N05.11","eo:cloud_cover":30.561236,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":69.43807,"s2:mean_solar_zenith":52.6086159254848,"s2:mean_solar_azimuth":193.380384898633,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":8.89519,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":59.988683,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000697,"s2:degraded_msi_data_percentage":0.0254,"s2:high_proba_clouds_percentage":16.320927,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":5.34512,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951","bbox":[146.9993873,72.5599198,148.0501794,72.9956989],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R60m/T55XEA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R60m/T55XEA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.0501794,72.9870692],[147.7628731,72.8728537],[147.4620504,72.751222],[147.1650834,72.6291719],[146.9994017,72.5599198],[146.9993873,72.9956989],[148.0501794,72.9870692]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XEA_N05.11","eo:cloud_cover":12.590303,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":74.539685,"s2:mean_solar_zenith":51.7346580706931,"s2:mean_solar_azimuth":193.502587708943,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":12.870012,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":11.001419,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":93.117845,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.228802,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.360082,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500","bbox":[144.9727037,76.4766174,147.3974775,77.2812842],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R60m/T55XDF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R60m/T55XDF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[144.9727037,76.4766174],[145.3052262,76.5938859],[145.6660787,76.7184031],[146.0332306,76.8424469],[146.4064577,76.966006],[146.7860659,77.0890777],[147.1725997,77.2116075],[147.3974775,77.2812842],[147.3743463,76.4931072],[144.9727037,76.4766174]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDF_N05.11","eo:cloud_cover":97.803628,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.196238,"s2:mean_solar_zenith":55.9469383487191,"s2:mean_solar_azimuth":188.652071215512,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.00006,"s2:thin_cirrus_percentage":0.096082,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":77.772284,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000075,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":91.611886,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.09566,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500","bbox":[143.3258015,75.5697411,147.376745,76.580749],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R60m/T55XDE_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R60m/T55XDE_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.3258015,75.8586838],[143.5955298,75.9644114],[143.9254381,76.0911774],[144.2610233,76.2175534],[144.6027971,76.3434738],[144.9508318,76.4689039],[145.2260891,76.5659771],[147.376745,76.580749],[147.3515061,75.5967575],[143.4016102,75.5697411],[143.3258015,75.8586838]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDE_N05.11","eo:cloud_cover":90.807956,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.909883,"s2:mean_solar_zenith":55.0674685642311,"s2:mean_solar_azimuth":188.93362573964,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.239319,"s2:vegetation_percentage":1.220182,"s2:thin_cirrus_percentage":0.605449,"s2:cloud_shadow_percentage":0.091088,"s2:nodata_pixel_percentage":17.870143,"s2:unclassified_percentage":0.886826,"s2:not_vegetated_percentage":3.844749,"s2:degraded_msi_data_percentage":0.0112,"s2:high_proba_clouds_percentage":81.95383,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.248676,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500","bbox":[143.3801086,74.6749694,147.353612,75.684406],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R60m/T55XDD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R60m/T55XDD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.3801086,75.6572177],[147.353612,75.684406],[147.3313691,74.7003374],[143.6072622,74.6749694],[143.3801086,75.6572177]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDD_N05.11","eo:cloud_cover":58.769011,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":6.432378,"s2:mean_solar_zenith":54.188595245275,"s2:mean_solar_azimuth":189.20742134287,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":18.296257,"s2:vegetation_percentage":4.808707,"s2:thin_cirrus_percentage":15.144363,"s2:cloud_shadow_percentage":0.7723,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.309027,"s2:not_vegetated_percentage":9.612324,"s2:degraded_msi_data_percentage":0.0249,"s2:high_proba_clouds_percentage":32.176167,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.448479,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951","bbox":[143.6576412,73.7804829,147.0309408,74.4243973],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R60m/T55XDC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R60m/T55XDC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.6576412,74.4243973],[143.8425029,74.3949498],[143.8427858,74.3950704],[143.8428508,74.3950601],[143.8432757,74.3952413],[143.8433346,74.3952319],[143.8442535,74.3956238],[143.8455124,74.3954229],[143.8477618,74.3963821],[143.8611116,74.3941139],[144.564333,74.2744318],[144.5600383,74.2726344],[145.1837304,74.1618627],[145.183849,74.1619116],[145.1839586,74.1618921],[145.1842111,74.1619961],[145.1843403,74.1619731],[145.1848576,74.1621862],[145.1854279,74.1620849],[145.18592,74.1622875],[145.1861034,74.1622549],[145.1886967,74.163322],[145.8756247,74.034811],[145.8715136,74.0331463],[146.4711492,73.9150241],[146.4713366,73.9150989],[146.4714534,73.9150759],[146.4717724,73.9152032],[146.4720054,73.9151573],[146.4729092,73.9155181],[146.4735859,73.9153848],[146.4740415,73.9155666],[146.4745134,73.9154737],[146.4762838,73.9161797],[146.7211208,73.8660542],[146.8460013,73.8404424],[147.0309408,73.8024649],[143.7898569,73.7804829],[143.6576412,74.4243973]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XDC_N05.11","eo:cloud_cover":8.149624,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":91.848963,"s2:mean_solar_zenith":53.3108710887811,"s2:mean_solar_azimuth":189.475936283652,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001413,"s2:thin_cirrus_percentage":8.13981,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":69.469947,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.002,"s2:high_proba_clouds_percentage":0.001554,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.008259,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500","bbox":[143.5881136,73.795527,147.3332438,74.7885307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R60m/T55XDC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R60m/T55XDC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.0080057,73.795527],[145.9698994,73.8030006],[145.4871549,73.8978162],[145.4905777,73.8992053],[145.4899398,73.8993243],[145.49035,73.8994909],[145.4900864,73.89954],[145.4905524,73.8997292],[144.8815565,74.0132759],[144.8811576,74.0131115],[144.880944,74.0131514],[144.8801573,74.012827],[144.8800192,74.0128527],[144.8767525,74.0115065],[144.1773071,74.1355529],[144.1811868,74.1371806],[144.1796693,74.1374379],[144.1809535,74.1379769],[143.6996537,74.2197888],[143.5881136,74.763009],[147.3332438,74.7885307],[147.313497,73.8043812],[146.0080057,73.795527]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDC_N05.11","eo:cloud_cover":28.899541,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":71.100444,"s2:mean_solar_zenith":53.3108710887811,"s2:mean_solar_azimuth":189.475936283652,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000015,"s2:thin_cirrus_percentage":13.928008,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":13.920067,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0067,"s2:high_proba_clouds_percentage":8.524251,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.447282,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951","bbox":[143.7728973,72.8852322,147.3124334,73.887309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R60m/T55XDB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R60m/T55XDB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.617302,73.887309],[146.7211208,73.8660542],[146.8460013,73.8404424],[147.1427832,73.7794979],[147.1388486,73.7779517],[147.3124334,73.7401172],[147.297514,72.90781],[143.9532063,72.8852322],[143.7728973,73.8680091],[146.617302,73.887309]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XDB_N05.11","eo:cloud_cover":1.884676,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":98.115051,"s2:mean_solar_zenith":52.4332724762266,"s2:mean_solar_azimuth":189.741694550662,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000273,"s2:thin_cirrus_percentage":1.371634,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":1.536909,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0111,"s2:high_proba_clouds_percentage":0.180282,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.332761,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500","bbox":[145.5766032,73.524143,147.3151567,73.8920442],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R60m/T55XDB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R60m/T55XDB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.308562,73.524143],[147.0642351,73.5769222],[146.7539348,73.6441841],[146.757624,73.6456368],[146.1872056,73.761992],[146.1629589,73.7669515],[146.1599113,73.7657346],[145.9698994,73.8030006],[145.5766032,73.8802477],[147.3151567,73.8920442],[147.308562,73.524143]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDB_N05.11","eo:cloud_cover":8.546601,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":91.453397,"s2:mean_solar_zenith":52.4332724762266,"s2:mean_solar_azimuth":189.741694550662,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":7.799733,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":90.71641,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.020871,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.725997,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951","bbox":[143.9380027,71.989773,147.2990014,72.9954806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R60m/T55XDA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R60m/T55XDA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.2939546,72.6821365],[147.1650834,72.6291719],[146.8721115,72.5067147],[146.5833251,72.3838049],[146.2981795,72.2604713],[146.0160354,72.1367849],[145.8225341,72.0506566],[145.7348784,72.0116786],[145.7103461,72.0005912],[144.1000757,71.989773],[143.9380027,72.9727797],[147.2990014,72.9954806],[147.2939546,72.6821365]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XDA_N05.11","eo:cloud_cover":4.178511,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":45.487988,"s2:mean_solar_zenith":51.5563580868775,"s2:mean_solar_azimuth":190.006349868291,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":19.9306,"s2:vegetation_percentage":18.95621,"s2:thin_cirrus_percentage":3.178966,"s2:cloud_shadow_percentage":0.016211,"s2:nodata_pixel_percentage":16.86351,"s2:unclassified_percentage":0.001732,"s2:not_vegetated_percentage":11.428755,"s2:degraded_msi_data_percentage":0.0268,"s2:high_proba_clouds_percentage":0.226987,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.772558,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951","bbox":[144.0862883,71.2917806,145.911249,72.090144],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R60m/T55WDV_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R60m/T55WDV_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[145.911249,72.090144],[145.8225341,72.0506566],[145.7348784,72.0116786],[145.6002591,71.9508375],[145.4618036,71.8883175],[145.1900375,71.7635196],[144.9218929,71.638388],[144.657853,71.5128494],[144.3973893,71.387001],[144.2033674,71.2917806],[144.0862883,72.0778773],[145.911249,72.090144]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WDV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55WDV_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":20.162447,"s2:mean_solar_zenith":50.6806861481694,"s2:mean_solar_azimuth":190.271271226905,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":61.317939,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":77.268368,"s2:unclassified_percentage":0.007108,"s2:not_vegetated_percentage":18.512507,"s2:degraded_msi_data_percentage":0.013,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951","bbox":[143.8987666,71.9504888,147.4017391,72.972798],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R60m/T54XXF_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R60m/T54XXF_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.334089,72.6986313],[147.1650834,72.6291719],[146.8721115,72.5067147],[146.5833251,72.3838049],[146.2981795,72.2604713],[146.0160354,72.1367849],[145.8225341,72.0506566],[145.7348784,72.0116786],[145.6002591,71.9508375],[145.5994869,71.9504888],[143.8987666,71.9897902],[144.0607752,72.972798],[147.4017391,72.8951551],[147.334089,72.6986313]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XXF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XXF_N05.11","eo:cloud_cover":3.613853,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":44.992217,"s2:mean_solar_zenith":51.5059130620187,"s2:mean_solar_azimuth":189.959083750985,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":16.5314,"s2:vegetation_percentage":22.158545,"s2:thin_cirrus_percentage":2.81934,"s2:cloud_shadow_percentage":0.016218,"s2:nodata_pixel_percentage":18.535386,"s2:unclassified_percentage":0.002317,"s2:not_vegetated_percentage":12.685449,"s2:degraded_msi_data_percentage":0.0267,"s2:high_proba_clouds_percentage":0.182719,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.611794,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500","bbox":[142.642721,75.5641782,145.2301741,76.5461933],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R60m/T54XWK_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R60m/T54XWK_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[142.642721,75.5833488],[142.9522892,75.7096954],[143.2711197,75.8372498],[143.5955298,75.9644114],[143.9254381,76.0911774],[144.2610233,76.2175534],[144.6027971,76.3434738],[144.9508318,76.4689039],[145.1699908,76.5461933],[145.2301741,76.5456907],[144.9477068,75.5641782],[142.642721,75.5833488]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XWK_N05.11","eo:cloud_cover":72.699803,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":5.865882,"s2:mean_solar_zenith":54.9924664658243,"s2:mean_solar_azimuth":186.368779040953,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":2.459931,"s2:vegetation_percentage":3.335379,"s2:thin_cirrus_percentage":4.421542,"s2:cloud_shadow_percentage":0.405315,"s2:nodata_pixel_percentage":70.761877,"s2:unclassified_percentage":2.99689,"s2:not_vegetated_percentage":12.236802,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":53.297496,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.980765,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951","bbox":[140.9993155,74.6932115,141.8890895,74.8190142],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R60m/T54XWJ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R60m/T54XWJ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993155,74.8190142],[141.2888983,74.7793529],[141.6421896,74.7308209],[141.7279364,74.7189072],[141.7270199,74.718493],[141.7271871,74.7184689],[141.7267913,74.7182899],[141.7267941,74.7182895],[141.7233817,74.7167444],[141.8890895,74.6932115],[140.999321,74.7005814],[140.9993155,74.8190142]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWJ_N05.11","eo:cloud_cover":44.347519,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":12.819929,"s2:mean_solar_zenith":54.100346650766,"s2:mean_solar_azimuth":186.364404467272,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":42.826158,"s2:vegetation_percentage":0.001421,"s2:thin_cirrus_percentage":0.680291,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.598808,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.004973,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":27.896923,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.770306,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500","bbox":[140.9993131,74.6697452,144.9712829,75.6692426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R60m/T54XWJ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R60m/T54XWJ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993131,74.8708045],[141.1431699,74.936469],[141.4329284,75.0661884],[141.7274136,75.1955858],[142.0264599,75.3246509],[142.3302554,75.4533604],[142.6387495,75.5817279],[142.8531737,75.6692426],[144.9712829,75.6516194],[144.7222017,74.6697452],[140.999321,74.7005814],[140.9993131,74.8708045]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XWJ_N05.11","eo:cloud_cover":36.025184,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":8.738525,"s2:mean_solar_zenith":54.100346650766,"s2:mean_solar_azimuth":186.364404467272,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":22.222336,"s2:vegetation_percentage":6.057433,"s2:thin_cirrus_percentage":17.357659,"s2:cloud_shadow_percentage":0.880937,"s2:nodata_pixel_percentage":19.857705,"s2:unclassified_percentage":3.742191,"s2:not_vegetated_percentage":22.333394,"s2:degraded_msi_data_percentage":0.0106,"s2:high_proba_clouds_percentage":4.333816,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.33371,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951","bbox":[140.9993171,73.7755608,144.6310856,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R60m/T54XWH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R60m/T54XWH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[141.2343127,74.7868289],[141.2888983,74.7793529],[141.6421896,74.7308209],[141.7279364,74.7189072],[141.7270199,74.718493],[141.7271871,74.7184689],[141.7267913,74.7182899],[141.7267941,74.7182895],[141.7233817,74.7167444],[142.4260678,74.6169529],[142.4274429,74.6175627],[142.4284679,74.6174161],[142.4286886,74.6175139],[142.4293456,74.6174205],[142.4313117,74.6182925],[142.5714281,74.5968342],[143.0565481,74.522405],[143.1901437,74.5018368],[143.1851411,74.4996642],[143.8425029,74.3949498],[143.8427858,74.3950704],[143.8428508,74.3950601],[143.8432757,74.3952413],[143.8433346,74.3952319],[143.8442535,74.3956238],[143.8455124,74.3954229],[143.8477618,74.3963821],[143.8611116,74.3941139],[144.564333,74.2744318],[144.5600383,74.2726344],[144.6310856,74.260016],[144.5219633,73.7755608],[140.9993576,73.8046111],[140.9993171,74.7887762],[141.2343127,74.7868289]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWH_N05.11","eo:cloud_cover":15.946352,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":20.537336,"s2:mean_solar_zenith":53.2089328359889,"s2:mean_solar_azimuth":186.37760112025,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":59.982371,"s2:vegetation_percentage":2.560437,"s2:thin_cirrus_percentage":9.459811,"s2:cloud_shadow_percentage":0.034289,"s2:nodata_pixel_percentage":23.364276,"s2:unclassified_percentage":0.002771,"s2:not_vegetated_percentage":0.936446,"s2:degraded_msi_data_percentage":0.0213,"s2:high_proba_clouds_percentage":2.69999,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.786552,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500","bbox":[140.9993171,74.0629478,144.7431996,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R60m/T54XWH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R60m/T54XWH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[144.5866965,74.0629478],[144.1773071,74.1355529],[144.1811868,74.1371806],[144.1796693,74.1374379],[144.1809535,74.1379769],[143.5452185,74.2460398],[143.540708,74.244115],[142.8065067,74.3613423],[142.809754,74.3627563],[142.8066019,74.3632394],[142.8066661,74.3632673],[142.80603,74.3633653],[142.8066123,74.3636189],[142.1339778,74.467267],[142.1294965,74.4652781],[141.6961413,74.5267268],[141.3473333,74.576475],[141.3517476,74.57848],[140.9993238,74.6268919],[140.9993171,74.7887762],[144.7431996,74.7577532],[144.5866965,74.0629478]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XWH_N05.11","eo:cloud_cover":51.360768,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":12.210329,"s2:mean_solar_zenith":53.208932835989,"s2:mean_solar_azimuth":186.37760112025,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":36.428866,"s2:vegetation_percentage":0.000038,"s2:thin_cirrus_percentage":47.277904,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":56.844443,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0262,"s2:high_proba_clouds_percentage":1.294806,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.788056,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951","bbox":[140.9993542,72.8805816,144.5405623,73.8922753],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R60m/T54XWG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R60m/T54XWG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993542,73.8922753],[144.5405623,73.8630589],[144.3428176,72.8805816],[140.9993903,72.9080271],[140.9993542,73.8922753]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWG_N05.11","eo:cloud_cover":2.097392,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":27.304021,"s2:mean_solar_zenith":52.3171650640296,"s2:mean_solar_azimuth":186.406378672536,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":33.061871,"s2:vegetation_percentage":31.237328,"s2:thin_cirrus_percentage":1.785213,"s2:cloud_shadow_percentage":0.151642,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.05427,"s2:not_vegetated_percentage":6.093477,"s2:degraded_msi_data_percentage":0.0137,"s2:high_proba_clouds_percentage":0.028587,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.283592,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951","bbox":[140.9993873,71.9853678,144.3594919,72.9956989],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R60m/T54XWF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R60m/T54XWF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993873,72.9956989],[144.3594919,72.9681038],[144.181736,71.9853678],[140.9994198,72.0113634],[140.9993873,72.9956989]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWF_N05.11","eo:cloud_cover":0.000063,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":19.687065,"s2:mean_solar_zenith":51.4255870137129,"s2:mean_solar_azimuth":186.449108624762,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":15.100153,"s2:vegetation_percentage":42.105362,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.002445,"s2:not_vegetated_percentage":23.104914,"s2:degraded_msi_data_percentage":0.0019,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000063,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951","bbox":[140.6201516,74.6954927,141.3330181,74.8309812],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R60m/T54XVJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R60m/T54XVJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.6201516,74.6954927],[140.6341605,74.7021176],[140.9119394,74.8309812],[141.2888983,74.7793529],[141.3330181,74.7732921],[141.3313691,74.7003374],[140.6201516,74.6954927]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVJ_N05.11","eo:cloud_cover":74.726093,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":7.062066,"s2:mean_solar_zenith":54.0353756222663,"s2:mean_solar_azimuth":182.361351685279,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":18.206279,"s2:vegetation_percentage":0.001442,"s2:thin_cirrus_percentage":0.115579,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.389578,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.00412,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":53.441209,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.169306,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500","bbox":[140.619971,74.6954915,141.3386848,75.0239973],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R60m/T54XVJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R60m/T54XVJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.619971,74.6954915],[140.8582521,74.8064162],[141.1431699,74.936469],[141.3386848,75.0239973],[141.3313691,74.7003374],[140.619971,74.6954915]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XVJ_N05.11","eo:cloud_cover":77.274442,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":20.548312,"s2:mean_solar_zenith":54.0353756222664,"s2:mean_solar_azimuth":182.361351685279,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.012121,"s2:vegetation_percentage":0.000112,"s2:thin_cirrus_percentage":0.441083,"s2:cloud_shadow_percentage":2.165012,"s2:nodata_pixel_percentage":97.043848,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":42.865559,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":33.967799,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951","bbox":[138.800028,73.7873342,141.3329382,74.7878078],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R60m/T54XVH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R60m/T54XVH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.800028,73.7873342],[139.0408218,73.9136998],[139.296295,74.0458292],[139.5555232,74.1776776],[139.8187172,74.3092406],[140.086072,74.4405095],[140.3578673,74.571457],[140.6341605,74.7021176],[140.8127876,74.784984],[141.2271654,74.7878078],[141.2888983,74.7793529],[141.3329382,74.7733031],[141.313497,73.8043812],[138.800028,73.7873342]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVH_N05.11","eo:cloud_cover":46.900082,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":19.634269,"s2:mean_solar_zenith":53.1422322075326,"s2:mean_solar_azimuth":182.555905771605,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":22.965646,"s2:vegetation_percentage":3.566145,"s2:thin_cirrus_percentage":8.210114,"s2:cloud_shadow_percentage":1.8615,"s2:nodata_pixel_percentage":58.156729,"s2:unclassified_percentage":0.490754,"s2:not_vegetated_percentage":4.581606,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":20.102456,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.58751,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500","bbox":[140.5930405,74.5815923,141.3332438,74.7885307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R60m/T54XVH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R60m/T54XVH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[141.3290916,74.5815923],[140.8795148,74.6433499],[140.5930405,74.6829548],[140.8122043,74.78498],[141.3332438,74.7885307],[141.3290916,74.5815923]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XVH_N05.11","eo:cloud_cover":73.722351,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":14.889362,"s2:mean_solar_zenith":53.1422322075327,"s2:mean_solar_azimuth":182.555905771605,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":11.388166,"s2:vegetation_percentage":0.000119,"s2:thin_cirrus_percentage":2.290314,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":97.210932,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":38.146052,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":33.285987,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951","bbox":[137.8799475,72.8852322,141.3151567,73.8920442],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R60m/T54XVG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R60m/T54XVG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.8799475,73.2845304],[138.0540315,73.382468],[138.2950343,73.5157073],[138.5398695,73.6486677],[138.7885911,73.7813322],[138.9692245,73.8761265],[141.3151567,73.8920442],[141.297514,72.90781],[137.9532063,72.8852322],[137.8799475,73.2845304]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVG_N05.11","eo:cloud_cover":8.419208,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":33.768678,"s2:mean_solar_zenith":52.2486793462447,"s2:mean_solar_azimuth":182.744340259198,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":49.342129,"s2:vegetation_percentage":5.999731,"s2:thin_cirrus_percentage":6.089519,"s2:cloud_shadow_percentage":0.459979,"s2:nodata_pixel_percentage":10.380324,"s2:unclassified_percentage":0.059182,"s2:not_vegetated_percentage":1.951094,"s2:degraded_msi_data_percentage":0.0157,"s2:high_proba_clouds_percentage":0.555568,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.774121,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951","bbox":[137.9380027,71.989773,141.2990014,72.9954806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R60m/T54XVF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R60m/T54XVF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.9380027,72.9727797],[141.2990014,72.9954806],[141.2831475,72.0111578],[138.1000757,71.989773],[137.9380027,72.9727797]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVF_N05.11","eo:cloud_cover":8.302079,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":25.15133,"s2:mean_solar_zenith":51.3552596440843,"s2:mean_solar_azimuth":182.928194484078,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":36.912629,"s2:vegetation_percentage":16.042349,"s2:thin_cirrus_percentage":6.249959,"s2:cloud_shadow_percentage":0.201569,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.006553,"s2:not_vegetated_percentage":13.383493,"s2:degraded_msi_data_percentage":0.0241,"s2:high_proba_clouds_percentage":0.650638,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.401482,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951","bbox":[143.7661688,71.093762,145.78636,72.0778947],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R60m/T54WXE_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R60m/T54WXE_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[145.78636,72.034571],[145.7348784,72.0116786],[145.6002591,71.9508375],[145.4618036,71.8883175],[145.1900375,71.7635196],[144.9218929,71.638388],[144.657853,71.5128494],[144.3973893,71.387001],[144.1403129,71.2608353],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.8058313,71.093762],[143.7661688,71.0946736],[143.9125486,72.0778947],[145.78636,72.034571]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WXE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WXE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":17.80114,"s2:mean_solar_zenith":50.6173097050979,"s2:mean_solar_azimuth":189.890433656743,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":64.843941,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":70.015293,"s2:unclassified_percentage":0.006584,"s2:not_vegetated_percentage":17.348334,"s2:degraded_msi_data_percentage":0.016,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951","bbox":[143.7637458,71.0724966,143.9735536,71.1822592],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R60m/T54WXD_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R60m/T54WXD_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.9735536,71.1777753],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.7637458,71.0724966],[143.7785751,71.1822592],[143.9735536,71.1777753]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WXD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WXD_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":37.691283,"s2:mean_solar_zenith":49.728460700465,"s2:mean_solar_azimuth":189.847226215649,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":52.84155,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.66892,"s2:unclassified_percentage":0.048102,"s2:not_vegetated_percentage":9.419063,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951","bbox":[140.999417,71.0923697,144.196858,72.0995811],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R60m/T54WWE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R60m/T54WWE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[144.0573242,71.2195],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.8030759,71.0923697],[140.9994464,71.1151545],[140.999417,72.0995811],[144.196858,72.073449],[144.0573242,71.2195]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WWE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WWE_N05.11","eo:cloud_cover":0.000043,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":11.577826,"s2:mean_solar_zenith":50.5347458337918,"s2:mean_solar_azimuth":186.504601337355,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00004,"s2:vegetation_percentage":76.62341,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.535061,"s2:unclassified_percentage":0.003769,"s2:not_vegetated_percentage":11.794909,"s2:degraded_msi_data_percentage":0.0199,"s2:high_proba_clouds_percentage":7e-6,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000037,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951","bbox":[140.9994439,70.2091535,143.975301,71.2028426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R60m/T54WWD_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R60m/T54WWD_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.975301,71.1786456],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.6330812,71.0064731],[143.5205388,70.9486732],[143.3873848,70.880465],[143.1424829,70.7530538],[142.9002939,70.6252531],[142.6604381,70.4972318],[142.4236022,70.3689064],[142.1895253,70.2403091],[142.1336098,70.2091535],[140.9994705,70.2183208],[140.9994439,71.2028426],[143.975301,71.1786456]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WWD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WWD_N05.11","eo:cloud_cover":0.000053,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":13.600075,"s2:mean_solar_zenith":49.6435833253783,"s2:mean_solar_azimuth":186.571966927614,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000058,"s2:vegetation_percentage":81.680822,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":31.762895,"s2:unclassified_percentage":0.002431,"s2:not_vegetated_percentage":4.716554,"s2:degraded_msi_data_percentage":0.0283,"s2:high_proba_clouds_percentage":0.00001,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000044,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951","bbox":[140.9994682,69.5568751,142.2901301,70.3060175],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R60m/T54WWC_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R60m/T54WWC_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[142.2901301,70.2955794],[142.1895253,70.2403091],[141.9582319,70.1114347],[141.7294833,69.9824322],[141.5033786,69.8532883],[141.2813115,69.7236358],[141.0612888,69.5938449],[140.9994867,69.5568751],[140.9994682,70.3060175],[142.2901301,70.2955794]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WWC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WWC_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.064775,"s2:mean_solar_zenith":48.7526479783835,"s2:mean_solar_azimuth":186.650496601281,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.002181,"s2:vegetation_percentage":78.974593,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":83.264059,"s2:unclassified_percentage":0.000119,"s2:not_vegetated_percentage":18.958335,"s2:degraded_msi_data_percentage":0.0073,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951","bbox":[138.0862883,71.0946572,141.284496,72.0993744],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R60m/T54WVE_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R60m/T54WVE_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.0862883,72.0778773],[141.284496,72.0993744],[141.2701751,71.1149593],[138.2327264,71.0946572],[138.0862883,72.0778773]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVE_N05.11","eo:cloud_cover":5.863766,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":28.236791,"s2:mean_solar_zenith":50.4625171471027,"s2:mean_solar_azimuth":183.108802615492,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":3.599776,"s2:vegetation_percentage":43.710288,"s2:thin_cirrus_percentage":5.068998,"s2:cloud_shadow_percentage":0.022166,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.020202,"s2:not_vegetated_percentage":18.547009,"s2:degraded_msi_data_percentage":0.0078,"s2:high_proba_clouds_percentage":0.318177,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.476591,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951","bbox":[138.2203151,70.1988218,141.2713887,71.2026464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R60m/T54WVD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R60m/T54WVD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.2203151,71.1822428],[141.2713887,71.2026464],[141.258393,70.2181351],[138.3532315,70.1988218],[138.2203151,71.1822428]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVD_N05.11","eo:cloud_cover":0.000017,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":11.096323,"s2:mean_solar_zenith":49.5693878530036,"s2:mean_solar_azimuth":183.287525469711,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00004,"s2:vegetation_percentage":80.303013,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.001261,"s2:not_vegetated_percentage":8.599345,"s2:degraded_msi_data_percentage":0.0062,"s2:high_proba_clouds_percentage":7e-6,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.00001,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951","bbox":[138.3419414,69.302813,141.2594967,70.3058309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R60m/T54WVC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R60m/T54WVC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[141.252288,69.7065149],[141.0612888,69.5938449],[140.8438762,69.4637893],[140.631353,69.3329125],[140.6054012,69.3169743],[138.4630916,69.302813],[138.3419414,70.2864248],[141.2594967,70.3058309],[141.252288,69.7065149]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVC_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.304452,"s2:mean_solar_zenith":48.6764182398639,"s2:mean_solar_azimuth":183.465358157545,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.070214,"s2:vegetation_percentage":75.791138,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":4.585987,"s2:unclassified_percentage":0.000042,"s2:not_vegetated_percentage":23.83392,"s2:degraded_msi_data_percentage":0.0233,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951","bbox":[138.4527167,68.4071754,140.7503058,69.4061665],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R60m/T54WVB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R60m/T54WVB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.7503058,69.4061665],[140.631353,69.3329125],[140.4187678,69.2023538],[140.2079766,69.0715492],[139.9991895,68.9404648],[139.7925405,68.8091917],[139.5884797,68.6776793],[139.38814,68.5455772],[139.1906958,68.413147],[139.1878784,68.4112778],[138.5635706,68.4071754],[138.4527167,69.3909702],[140.7503058,69.4061665]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVB_N05.11","eo:cloud_cover":3.335383,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.970102,"s2:mean_solar_zenith":47.784152898517,"s2:mean_solar_azimuth":183.643037696029,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.071176,"s2:vegetation_percentage":79.263401,"s2:thin_cirrus_percentage":3.248752,"s2:cloud_shadow_percentage":0.290992,"s2:nodata_pixel_percentage":47.297373,"s2:unclassified_percentage":0.009349,"s2:not_vegetated_percentage":15.899885,"s2:degraded_msi_data_percentage":0.0255,"s2:high_proba_clouds_percentage":0.001788,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.084843,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951","bbox":[138.5541183,68.0155973,139.3199586,68.4998464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R60m/T54WVA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R60m/T54WVA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[139.3199586,68.4998464],[139.1906958,68.413147],[139.0044204,68.2895577],[138.99053,68.2803526],[138.978028,68.271814],[138.7975345,68.1490727],[138.6050813,68.0165698],[138.603688,68.0155973],[138.5541183,68.494811],[139.3199586,68.4998464]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVA_N05.11","eo:cloud_cover":6.39925,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.708158,"s2:mean_solar_zenith":46.891533182743,"s2:mean_solar_azimuth":183.821664487087,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":1.753561,"s2:vegetation_percentage":34.304196,"s2:thin_cirrus_percentage":5.917664,"s2:cloud_shadow_percentage":0.006917,"s2:nodata_pixel_percentage":93.140912,"s2:unclassified_percentage":0.039955,"s2:not_vegetated_percentage":52.866346,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.017849,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.463737,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951","bbox":[137.8987666,71.9166252,141.4017391,72.972798],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R60m/T53XPA_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R60m/T53XPA_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.0607752,72.972798],[141.4017391,72.8951551],[141.0648961,71.9166252],[137.8987666,71.9897902],[138.0607752,72.972798]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53XPA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53XPA_N05.11","eo:cloud_cover":8.471534,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":25.152224,"s2:mean_solar_zenith":51.305817275075,"s2:mean_solar_azimuth":182.876057466885,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":35.284233,"s2:vegetation_percentage":16.72368,"s2:thin_cirrus_percentage":6.34322,"s2:cloud_shadow_percentage":0.240537,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.005819,"s2:not_vegetated_percentage":14.121971,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":0.718425,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.409889,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951","bbox":[137.1986657,72.8805816,138.4922012,73.6227809],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R60m/T53XNB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R60m/T53XNB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.1986657,72.8899737],[137.3529907,72.9812994],[137.5830159,73.1152239],[137.8167258,73.2489626],[138.0540315,73.382468],[138.2950343,73.5157073],[138.4922012,73.6227809],[138.3428176,72.8805816],[137.1986657,72.8899737]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53XNB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53XNB_N05.11","eo:cloud_cover":10.7994,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":22.729982,"s2:mean_solar_zenith":52.2312101532652,"s2:mean_solar_azimuth":179.393948289904,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":66.468495,"s2:vegetation_percentage":0.002124,"s2:thin_cirrus_percentage":9.430973,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":87.50307,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.240589,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.127837,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951","bbox":[135.7810207,71.9853678,138.3594919,72.9764372],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R60m/T53XNA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R60m/T53XNA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[135.7810207,72.0049787],[135.8306676,72.0376004],[136.0398937,72.1730333],[136.25145,72.3082848],[136.4654229,72.4433503],[136.6822884,72.5782131],[136.9025759,72.7128205],[137.1263184,72.8471604],[137.3447744,72.9764372],[138.3594919,72.9681038],[138.181736,71.9853678],[135.7810207,72.0049787]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53XNA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53XNA_N05.11","eo:cloud_cover":4.452536,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":95.541453,"s2:mean_solar_zenith":51.3351404866702,"s2:mean_solar_azimuth":179.353434492462,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.006011,"s2:thin_cirrus_percentage":3.826519,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":47.843993,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0008,"s2:high_proba_clouds_percentage":0.184047,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.441969,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951","bbox":[137.7661688,71.0251958,141.093564,72.0778947],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R60m/T53WPV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R60m/T53WPV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.9125486,72.0778947],[141.093564,72.0043476],[140.7889605,71.0251958],[137.7661688,71.0946736],[137.9125486,72.0778947]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPV_N05.11","eo:cloud_cover":5.74511,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":32.687479,"s2:mean_solar_zenith":50.4111090772672,"s2:mean_solar_azimuth":182.720923216345,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":4.85146,"s2:vegetation_percentage":37.601638,"s2:thin_cirrus_percentage":5.047541,"s2:cloud_shadow_percentage":0.023882,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.018172,"s2:not_vegetated_percentage":19.072258,"s2:degraded_msi_data_percentage":0.0117,"s2:high_proba_clouds_percentage":0.269389,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.42818,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951","bbox":[137.6457116,70.1327293,140.814787,71.1822592],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R60m/T53WPU_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R60m/T53WPU_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.7785751,71.1822592],[140.814787,71.1124355],[140.5381092,70.1327293],[137.6457116,70.1988374],[137.7785751,71.1822592]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPU_N05.11","eo:cloud_cover":3e-6,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":13.414465,"s2:mean_solar_zenith":49.5157431265834,"s2:mean_solar_azimuth":182.587133584315,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":77.782768,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.001921,"s2:not_vegetated_percentage":8.80084,"s2:degraded_msi_data_percentage":0.0012,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3e-6,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951","bbox":[137.5358953,69.2398107,140.5616186,70.2864405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R60m/T53WPT_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R60m/T53WPT_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.6569973,70.2864405],[140.5616186,70.2200158],[140.3092739,69.2398107],[137.5358953,69.3028279],[137.6569973,70.2864405]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPT_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.085959,"s2:mean_solar_zenith":48.6202573099626,"s2:mean_solar_azimuth":182.472257995074,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.097359,"s2:vegetation_percentage":76.235116,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":23.58157,"s2:degraded_msi_data_percentage":0.0173,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951","bbox":[137.4354563,68.3690508,140.3308902,69.3909851],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R60m/T53WPS_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R60m/T53WPS_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.2812653,69.1170279],[140.2079766,69.0715492],[139.9991895,68.9404648],[139.7925405,68.8091917],[139.5884797,68.6776793],[139.38814,68.5455772],[139.1906958,68.413147],[139.1242334,68.3690508],[137.4354563,68.4071896],[137.546266,69.3909851],[140.3308902,69.3276752],[140.2812653,69.1170279]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPS_N05.11","eo:cloud_cover":9.896792,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.361735,"s2:mean_solar_zenith":47.7251878306583,"s2:mean_solar_azimuth":182.374139174231,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.202622,"s2:vegetation_percentage":71.319681,"s2:thin_cirrus_percentage":6.357141,"s2:cloud_shadow_percentage":1.606275,"s2:nodata_pixel_percentage":14.510258,"s2:unclassified_percentage":0.019405,"s2:not_vegetated_percentage":15.364692,"s2:degraded_msi_data_percentage":0.0247,"s2:high_proba_clouds_percentage":1.873058,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.666593,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951","bbox":[137.3431637,67.4987463,139.2516026,68.4948252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R60m/T53WPR_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R60m/T53WPR_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[139.2516026,68.4539985],[139.1906958,68.413147],[139.0044204,68.2895577],[138.99053,68.2803526],[138.978028,68.271814],[138.7975345,68.1490727],[138.6050813,68.0165698],[138.414898,67.8838321],[138.2278795,67.7506648],[138.0449052,67.6167832],[137.8826614,67.4987463],[137.3431637,67.5108527],[137.4449048,68.4948252],[139.2516026,68.4539985]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPR_N05.11","eo:cloud_cover":50.947386,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.132876,"s2:mean_solar_zenith":46.829461693452,"s2:mean_solar_azimuth":182.29099033466,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.371113,"s2:vegetation_percentage":28.684637,"s2:thin_cirrus_percentage":14.934808,"s2:cloud_shadow_percentage":2.099002,"s2:nodata_pixel_percentage":55.891585,"s2:unclassified_percentage":0.706798,"s2:not_vegetated_percentage":16.609885,"s2:degraded_msi_data_percentage":0.0239,"s2:high_proba_clouds_percentage":21.74134,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.271238,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951","bbox":[137.3011384,67.0659149,137.9997823,67.5985039],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R60m/T53WPQ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R60m/T53WPQ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.9997823,67.583955],[137.8613163,67.4832171],[137.6800852,67.3492598],[137.5000028,67.2152473],[137.3213521,67.0811797],[137.3011384,67.0659149],[137.3518535,67.5985039],[137.9997823,67.583955]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPQ_N05.11","eo:cloud_cover":80.372506,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.581574,"s2:mean_solar_zenith":45.9336159916215,"s2:mean_solar_azimuth":182.221357511726,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.009367,"s2:vegetation_percentage":12.079749,"s2:thin_cirrus_percentage":13.551554,"s2:cloud_shadow_percentage":1.584354,"s2:nodata_pixel_percentage":93.269897,"s2:unclassified_percentage":1.45884,"s2:not_vegetated_percentage":3.908234,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":25.341576,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.479379,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951","bbox":[134.9994355,71.0904748,138.196858,72.0920994],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R60m/T53WNV_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R60m/T53WNV_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994355,71.4781682],[135.0219441,71.4939117],[135.2197311,71.6301191],[135.4205147,71.7661413],[135.6242101,71.9019427],[135.8306676,72.0376004],[135.9148614,72.0920994],[138.196858,72.073449],[138.0362417,71.0904748],[134.9994464,71.1151545],[134.9994355,71.4781682]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNV_N05.11","eo:cloud_cover":0.039394,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":36.798185,"s2:mean_solar_zenith":50.4394772497286,"s2:mean_solar_azimuth":179.321853230839,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":27.153489,"s2:vegetation_percentage":20.840448,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":9.368174,"s2:unclassified_percentage":0.006403,"s2:not_vegetated_percentage":15.162079,"s2:degraded_msi_data_percentage":0.0173,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.039394,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951","bbox":[134.9994439,70.1948429,138.049855,71.2028426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R60m/T53WNU_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R60m/T53WNU_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994439,71.2028426],[138.049855,71.1780394],[137.9040632,70.1948429],[134.9994705,70.2183208],[134.9994439,71.2028426]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNU_N05.11","eo:cloud_cover":0.488346,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":16.513933,"s2:mean_solar_zenith":49.543143601069,"s2:mean_solar_azimuth":179.298078790733,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001158,"s2:vegetation_percentage":77.088505,"s2:thin_cirrus_percentage":0.47116,"s2:cloud_shadow_percentage":0.000617,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.008119,"s2:not_vegetated_percentage":5.899327,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.017186,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951","bbox":[134.9994682,69.2990206,137.9164472,70.3060175],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R60m/T53WNT_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R60m/T53WNT_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994682,70.3060175],[137.9164472,70.2824267],[137.7835563,69.2990206],[134.9994925,69.3213967],[134.9994682,70.3060175]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNT_N05.11","eo:cloud_cover":4.688246,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.84148,"s2:mean_solar_zenith":48.6466760123962,"s2:mean_solar_azimuth":179.281215552931,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.02204,"s2:vegetation_percentage":77.097553,"s2:thin_cirrus_percentage":4.368287,"s2:cloud_shadow_percentage":0.050149,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.002482,"s2:not_vegetated_percentage":17.298049,"s2:degraded_msi_data_percentage":0.0154,"s2:high_proba_clouds_percentage":0.000292,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.319667,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951","bbox":[134.9994904,68.4035546,137.7949369,69.4096405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R60m/T53WNS_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R60m/T53WNS_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994904,69.4096405],[137.7949369,69.3871601],[137.6733361,68.4035546],[134.9995126,68.4249171],[134.9994904,69.4096405]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNS_N05.11","eo:cloud_cover":3.499497,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.498203,"s2:mean_solar_zenith":47.750610937167,"s2:mean_solar_azimuth":179.27051116146,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000332,"s2:vegetation_percentage":83.526266,"s2:thin_cirrus_percentage":2.582646,"s2:cloud_shadow_percentage":0.218712,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.010491,"s2:not_vegetated_percentage":12.246495,"s2:degraded_msi_data_percentage":0.0003,"s2:high_proba_clouds_percentage":0.441279,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.475572,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951","bbox":[134.9995107,67.5073771,137.6837049,68.5126321],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R60m/T53WNR_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R60m/T53WNR_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9995107,68.5126321],[137.6837049,68.491174],[137.5720525,67.5073771],[134.9995311,67.5278024],[134.9995107,68.5126321]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNR_N05.11","eo:cloud_cover":36.66355,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.499322,"s2:mean_solar_zenith":46.8538715277138,"s2:mean_solar_azimuth":179.265415984781,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.004509,"s2:vegetation_percentage":44.98021,"s2:thin_cirrus_percentage":10.196213,"s2:cloud_shadow_percentage":3.757443,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":2.886065,"s2:not_vegetated_percentage":11.208901,"s2:degraded_msi_data_percentage":0.0146,"s2:high_proba_clouds_percentage":17.368774,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.098563,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951","bbox":[134.9995294,66.6170156,137.581589,67.6155271],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R60m/T53WNQ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R60m/T53WNQ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.5454291,67.2490523],[137.5000028,67.2152473],[137.3213521,67.0811797],[137.1438475,66.9471341],[136.9697618,66.8125882],[136.7971426,66.6780005],[136.7200851,66.6170156],[134.9995482,66.6305875],[134.9995294,67.6155271],[137.581589,67.5950132],[137.5454291,67.2490523]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNQ_N05.11","eo:cloud_cover":71.882689,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.241975,"s2:mean_solar_zenith":45.956994707828,"s2:mean_solar_azimuth":179.265390275024,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000881,"s2:vegetation_percentage":11.376605,"s2:thin_cirrus_percentage":8.059323,"s2:cloud_shadow_percentage":3.133707,"s2:nodata_pixel_percentage":10.036112,"s2:unclassified_percentage":6.558467,"s2:not_vegetated_percentage":6.805665,"s2:degraded_msi_data_percentage":0.0236,"s2:high_proba_clouds_percentage":44.913453,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.909921,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951","bbox":[134.9995465,65.7288235,136.8310071,66.7188603],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R60m/T53WNP_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R60m/T53WNP_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[136.8310071,66.7044039],[136.7971426,66.6780005],[136.6268255,66.5432079],[136.4554565,66.4089337],[136.2905121,66.2734345],[136.124355,66.1384481],[135.9590236,66.0034615],[135.7973805,65.8677223],[135.6387393,65.7314011],[135.6357109,65.7288235],[134.9995639,65.7338076],[134.9995465,66.7188603],[136.8310071,66.7044039]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNP_N05.11","eo:cloud_cover":79.262155,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.064865,"s2:mean_solar_zenith":45.0605176677555,"s2:mean_solar_azimuth":179.27010740126,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001381,"s2:vegetation_percentage":11.749259,"s2:thin_cirrus_percentage":35.7537,"s2:cloud_shadow_percentage":1.796817,"s2:nodata_pixel_percentage":50.036603,"s2:unclassified_percentage":1.188451,"s2:not_vegetated_percentage":5.935958,"s2:degraded_msi_data_percentage":0.0263,"s2:high_proba_clouds_percentage":7.194892,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":36.313558,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951","bbox":[134.9995624,65.1784831,135.7369237,65.8215524],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R60m/T53WNN_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R60m/T53WNN_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[135.7369237,65.8157714],[135.6387393,65.7314011],[135.4790342,65.5954711],[135.3203988,65.4595167],[135.1640839,65.3232305],[135.009083,65.1869289],[134.9995729,65.1784831],[134.9995624,65.8215524],[135.7369237,65.8157714]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNN_N05.11","eo:cloud_cover":99.833322,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000033,"s2:mean_solar_zenith":44.163363602334,"s2:mean_solar_azimuth":179.279169599448,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.150944,"s2:thin_cirrus_percentage":28.099704,"s2:cloud_shadow_percentage":0.000668,"s2:nodata_pixel_percentage":90.066993,"s2:unclassified_percentage":0.001436,"s2:not_vegetated_percentage":0.013595,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":14.312494,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":57.421124,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951","bbox":[134.4811106,71.1096852,135.2782462,71.6697606],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R60m/T53WMV_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R60m/T53WMV_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.4811106,71.1096852],[134.6351874,71.2210221],[134.8269898,71.3575522],[135.0219441,71.4939117],[135.2197311,71.6301191],[135.2782462,71.6697606],[135.2701751,71.1149593],[134.4811106,71.1096852]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMV_N05.11","eo:cloud_cover":0.039226,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":24.383707,"s2:mean_solar_zenith":50.4784982490092,"s2:mean_solar_azimuth":175.916797651609,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.759301,"s2:vegetation_percentage":45.216641,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":92.96276,"s2:unclassified_percentage":0.023998,"s2:not_vegetated_percentage":29.577124,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.039226,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951","bbox":[133.2861284,70.2050237,135.2713887,71.2026464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R60m/T53WMU_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R60m/T53WMU_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.2861284,70.2050237],[133.3563274,70.2605362],[133.533248,70.3982007],[133.7113221,70.5358675],[133.8919369,70.6731953],[134.0746049,70.8103348],[134.2592913,70.9473583],[134.4459812,71.0843005],[134.6035773,71.1981805],[135.2713887,71.2026464],[135.258393,70.2181351],[133.2861284,70.2050237]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMU_N05.11","eo:cloud_cover":0.35225,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":3.292965,"s2:mean_solar_zenith":49.58155452922,"s2:mean_solar_azimuth":176.004006870427,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.002004,"s2:vegetation_percentage":90.762228,"s2:thin_cirrus_percentage":0.319707,"s2:cloud_shadow_percentage":0.003768,"s2:nodata_pixel_percentage":55.793881,"s2:unclassified_percentage":0.005914,"s2:not_vegetated_percentage":5.580869,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":8e-6,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.032536,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951","bbox":[132.4375113,69.302813,135.2594967,70.3058309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R60m/T53WMT_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R60m/T53WMT_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.4375113,69.510498],[132.5072291,69.5697717],[132.6725396,69.7081763],[132.8399998,69.846495],[133.010646,69.9845106],[133.1819808,70.122665],[133.3563274,70.2605362],[133.3986312,70.2934534],[135.2594967,70.3058309],[135.2476536,69.3212198],[132.4630916,69.302813],[132.4375113,69.510498]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMT_N05.11","eo:cloud_cover":0.83192,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.963727,"s2:mean_solar_zenith":48.684473752372,"s2:mean_solar_azimuth":176.085958812526,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.012127,"s2:vegetation_percentage":82.922882,"s2:thin_cirrus_percentage":0.805923,"s2:cloud_shadow_percentage":0.00147,"s2:nodata_pixel_percentage":14.697061,"s2:unclassified_percentage":0.003228,"s2:not_vegetated_percentage":15.264641,"s2:degraded_msi_data_percentage":0.014,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.025997,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951","bbox":[132.4527167,68.4071754,135.2486677,69.4094627],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R60m/T53WMS_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R60m/T53WMS_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.4527167,69.3909702],[135.2486677,69.4094627],[135.2378328,68.4247482],[132.5635706,68.4071754],[132.4527167,69.3909702]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMS_N05.11","eo:cloud_cover":1.381439,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.717108,"s2:mean_solar_zenith":47.7877908664443,"s2:mean_solar_azimuth":176.163362195745,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":80.133373,"s2:thin_cirrus_percentage":0.558542,"s2:cloud_shadow_percentage":0.66032,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.270719,"s2:not_vegetated_percentage":15.837045,"s2:degraded_msi_data_percentage":0.023,"s2:high_proba_clouds_percentage":0.428001,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.394896,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951","bbox":[132.5541183,67.5108391,135.2387566,68.5124624],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R60m/T53WMR_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R60m/T53WMR_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.5541183,68.494811],[135.2387566,68.5124624],[135.2288099,67.5276409],[132.6559,67.5108391],[132.5541183,68.494811]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMR_N05.11","eo:cloud_cover":1.407487,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.355294,"s2:mean_solar_zenith":46.8904280749316,"s2:mean_solar_azimuth":176.236873363626,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.387017,"s2:thin_cirrus_percentage":0.862691,"s2:cloud_shadow_percentage":0.62312,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.23916,"s2:not_vegetated_percentage":12.987924,"s2:degraded_msi_data_percentage":0.0178,"s2:high_proba_clouds_percentage":0.214253,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.330543,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951","bbox":[132.6472067,66.6143459,135.2296594,67.6153648],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R60m/T53WMQ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R60m/T53WMQ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.6472067,67.5984902],[135.2296594,67.6153648],[135.2204986,66.6304328],[132.7409581,66.6143459],[132.6472067,67.5984902]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMQ_N05.11","eo:cloud_cover":48.034894,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.562238,"s2:mean_solar_zenith":45.9929211883906,"s2:mean_solar_azimuth":176.306964756757,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":43.581593,"s2:thin_cirrus_percentage":24.397135,"s2:cloud_shadow_percentage":1.614102,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.005252,"s2:not_vegetated_percentage":5.20192,"s2:degraded_msi_data_percentage":0.0018,"s2:high_proba_clouds_percentage":9.764101,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.873656,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951","bbox":[132.732889,65.718237,135.221287,66.718705],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R60m/T53WMP_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R60m/T53WMP_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.732889,66.7025501],[135.221287,66.718705],[135.2128247,65.7336593],[132.8195021,65.718237],[132.732889,66.7025501]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMP_N05.11","eo:cloud_cover":96.877158,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":45.0958071044653,"s2:mean_solar_azimuth":176.374033706648,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":1.051838,"s2:thin_cirrus_percentage":17.849383,"s2:cloud_shadow_percentage":0.780558,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.527862,"s2:not_vegetated_percentage":0.762589,"s2:degraded_msi_data_percentage":0.012,"s2:high_proba_clouds_percentage":28.265235,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":50.762534,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951","bbox":[132.8120825,64.8214388,135.2135496,65.8214035],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R60m/T53WMN_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R60m/T53WMN_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[135.2099039,65.3631796],[135.1640839,65.3232305],[135.009083,65.1869289],[134.8555479,65.0505759],[134.7035955,64.9141124],[134.6140229,64.8324549],[132.8923143,64.8214388],[132.8120825,65.8059182],[135.2135496,65.8214035],[135.2099039,65.3631796]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMN_N05.11","eo:cloud_cover":98.44386,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.028701,"s2:mean_solar_zenith":44.1980073241091,"s2:mean_solar_azimuth":176.438516584663,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00057,"s2:vegetation_percentage":1.056921,"s2:thin_cirrus_percentage":20.16459,"s2:cloud_shadow_percentage":0.393805,"s2:nodata_pixel_percentage":6.942555,"s2:unclassified_percentage":0.029457,"s2:not_vegetated_percentage":0.044553,"s2:degraded_msi_data_percentage":0.0227,"s2:high_proba_clouds_percentage":46.016845,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":32.26243,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951","bbox":[132.8854324,63.9244911,134.7110691,64.9208241],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R60m/T53WMM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R60m/T53WMM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.7110691,64.9208241],[134.7035955,64.9141124],[134.5536454,64.7774128],[134.4045168,64.6408004],[134.2802415,64.524936],[134.2564905,64.5028569],[134.2103015,64.4586964],[134.1136279,64.3664568],[133.9697259,64.2290907],[133.8236568,64.0922739],[133.6820659,63.954531],[133.6563042,63.9289139],[132.9599395,63.9244911],[132.8854324,64.9091348],[134.7110691,64.9208241]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMM_N05.11","eo:cloud_cover":33.978871,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.19202,"s2:mean_solar_zenith":43.3000574461588,"s2:mean_solar_azimuth":176.500781592237,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.743309,"s2:vegetation_percentage":30.364639,"s2:thin_cirrus_percentage":15.058976,"s2:cloud_shadow_percentage":0.091821,"s2:nodata_pixel_percentage":45.192254,"s2:unclassified_percentage":0.995471,"s2:not_vegetated_percentage":21.746081,"s2:degraded_msi_data_percentage":0.0279,"s2:high_proba_clouds_percentage":7.460166,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.459728,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951","bbox":[132.9535015,63.2747981,133.7470856,64.0177837],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R60m/T53VML_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R60m/T53VML_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.7470856,64.0177837],[133.6820659,63.954531],[133.5430972,63.816342],[133.4042308,63.6782928],[133.2668301,63.5400978],[133.1303171,63.4019607],[133.0054708,63.2747981],[132.9535015,64.0127397],[133.7470856,64.0177837]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53VML","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53VML_N05.11","eo:cloud_cover":12.662388,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.697701,"s2:mean_solar_zenith":42.4024958912698,"s2:mean_solar_azimuth":176.56100877451,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.731281,"s2:vegetation_percentage":71.997678,"s2:thin_cirrus_percentage":12.659788,"s2:cloud_shadow_percentage":0.096674,"s2:nodata_pixel_percentage":86.858964,"s2:unclassified_percentage":0.285579,"s2:not_vegetated_percentage":9.435956,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.000328,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.002272,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951","bbox":[130.913343,62.9866068,133.1897998,64.015435],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R60m/T53VLL_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R60m/T53VLL_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.1897998,63.462151],[133.1303171,63.4019607],[132.994726,63.2638539],[132.8604581,63.1256284],[132.7601712,63.0212492],[131.0515033,62.9866068],[130.913343,63.9696051],[133.1546638,64.015435],[133.1897998,63.462151]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53VLL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53VLL_N05.11","eo:cloud_cover":9.69805,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.908008,"s2:mean_solar_zenith":42.4500229392061,"s2:mean_solar_azimuth":173.818382111021,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.030738,"s2:vegetation_percentage":84.882092,"s2:thin_cirrus_percentage":9.672086,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":4.712111,"s2:unclassified_percentage":0.32355,"s2:not_vegetated_percentage":1.908846,"s2:degraded_msi_data_percentage":0.0223,"s2:high_proba_clouds_percentage":0.000024,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.02594,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951","bbox":[131.1574343,61.3660298,131.9897108,62.195252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R60m/T53VLJ_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R60m/T53VLJ_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.9897108,62.195252],[131.9519214,62.1538178],[131.8263048,62.0146449],[131.7734854,61.9555542],[131.7025895,61.8764038],[131.5792047,61.7370479],[131.4572377,61.5976178],[131.3361918,61.4581338],[131.2569852,61.3660298],[131.1574343,62.1785001],[131.9897108,62.195252]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53VLJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53VLJ_N05.11","eo:cloud_cover":0.438324,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.222577,"s2:mean_solar_zenith":40.6529531920545,"s2:mean_solar_azimuth":174.0039605909,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":95.807463,"s2:thin_cirrus_percentage":0.000185,"s2:cloud_shadow_percentage":1.201613,"s2:nodata_pixel_percentage":83.840901,"s2:unclassified_percentage":0.557658,"s2:not_vegetated_percentage":0.61831,"s2:degraded_msi_data_percentage":0.004,"s2:high_proba_clouds_percentage":0.072151,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.365989,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951","bbox":[131.2581395,66.5592595,133.9254764,67.5985039],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R60m/T52WFV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R60m/T52WFV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.3518535,67.5985039],[133.9254764,67.5407149],[133.7299138,66.5592595],[131.2581395,66.6143589],[131.3518535,67.5985039]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFV_N05.11","eo:cloud_cover":69.579434,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.356283,"s2:mean_solar_zenith":45.999385627067,"s2:mean_solar_azimuth":174.519173584484,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":26.530567,"s2:thin_cirrus_percentage":45.736045,"s2:cloud_shadow_percentage":0.558913,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.08071,"s2:not_vegetated_percentage":2.894091,"s2:degraded_msi_data_percentage":0.0213,"s2:high_proba_clouds_percentage":3.3369,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":20.506491,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951","bbox":[131.1796268,65.66542,133.7467491,66.7025631],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R60m/T52WFU_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R60m/T52WFU_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.2662054,66.7025631],[133.7467491,66.6472313],[133.5660076,65.66542],[131.1796268,65.7182494],[131.2662054,66.7025631]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFU_N05.11","eo:cloud_cover":80.381471,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.040909,"s2:mean_solar_zenith":45.1111715791707,"s2:mean_solar_azimuth":174.346133667649,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":14.363141,"s2:thin_cirrus_percentage":37.047416,"s2:cloud_shadow_percentage":2.320102,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.216419,"s2:not_vegetated_percentage":1.677957,"s2:degraded_msi_data_percentage":0.0075,"s2:high_proba_clouds_percentage":15.949947,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":27.384108,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951","bbox":[131.1068437,64.7707414,133.5814932,65.8059307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R60m/T52WFT_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R60m/T52WFT_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.1870434,65.8059307],[133.5814932,65.7528862],[133.4140108,64.7707414],[131.1068437,64.8214508],[131.1870434,65.8059307]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFT_N05.11","eo:cloud_cover":57.527,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.089396,"s2:mean_solar_zenith":44.2222573271832,"s2:mean_solar_azimuth":174.178715827812,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.03204,"s2:vegetation_percentage":30.414471,"s2:thin_cirrus_percentage":18.254933,"s2:cloud_shadow_percentage":2.321787,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.492108,"s2:not_vegetated_percentage":7.543512,"s2:degraded_msi_data_percentage":0.0011,"s2:high_proba_clouds_percentage":20.062615,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":19.209455,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951","bbox":[131.0392454,63.8757772,133.4283789,64.9091468],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R60m/T52WFS_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R60m/T52WFS_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.1137228,64.9091468],[133.4283789,64.8582363],[133.2727989,63.8757772],[131.0392454,63.9245026],[131.1137228,64.9091468]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFS_N05.11","eo:cloud_cover":9.216897,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.248951,"s2:mean_solar_zenith":43.3331813369737,"s2:mean_solar_azimuth":174.015842397136,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.667234,"s2:vegetation_percentage":54.976976,"s2:thin_cirrus_percentage":7.174903,"s2:cloud_shadow_percentage":0.037306,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.938136,"s2:not_vegetated_percentage":21.746583,"s2:degraded_msi_data_percentage":0.0156,"s2:high_proba_clouds_percentage":0.313619,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.728375,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951","bbox":[134.3782739,71.0251958,134.9105306,71.4159842],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R60m/T52WFE_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R60m/T52WFE_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.3782739,71.0346353],[134.4459812,71.0843005],[134.6351874,71.2210221],[134.8269898,71.3575522],[134.9105306,71.4159842],[134.7889605,71.0251958],[134.3782739,71.0346353]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":14.570828,"s2:mean_solar_zenith":50.4399499537414,"s2:mean_solar_azimuth":175.523721823951,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":68.903619,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":97.471303,"s2:unclassified_percentage":0.027554,"s2:not_vegetated_percentage":16.497999,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951","bbox":[132.1782345,69.2398107,134.5616186,70.2479433],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R60m/T52WFC_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R60m/T52WFC_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.1782345,69.2882325],[132.1831794,69.2925464],[132.3442605,69.4312167],[132.5072291,69.5697717],[132.6725396,69.7081763],[132.8399998,69.846495],[133.010646,69.9845106],[133.1819808,70.122665],[133.340403,70.2479433],[134.5616186,70.2200158],[134.3092739,69.2398107],[132.1782345,69.2882325]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFC_N05.11","eo:cloud_cover":0.066171,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.05008,"s2:mean_solar_zenith":48.664054088493,"s2:mean_solar_azimuth":175.086798999784,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.013523,"s2:vegetation_percentage":85.094708,"s2:thin_cirrus_percentage":0.066171,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":41.09005,"s2:unclassified_percentage":0.000608,"s2:not_vegetated_percentage":14.774911,"s2:degraded_msi_data_percentage":0.0032,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951","bbox":[131.4354563,68.3470175,134.3308902,69.3743442],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R60m/T52WFB_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R60m/T52WFB_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.4627689,68.6496772],[131.5574948,68.7362757],[131.7116764,68.8755213],[131.8668155,69.0147346],[132.0240415,69.1537179],[132.1831794,69.2925464],[132.2781968,69.3743442],[134.3308902,69.3276752],[134.0998643,68.3470175],[131.4354563,68.4071896],[131.4627689,68.6496772]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFB_N05.11","eo:cloud_cover":1.499358,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.444134,"s2:mean_solar_zenith":47.7763639288029,"s2:mean_solar_azimuth":174.88800636576,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000163,"s2:vegetation_percentage":77.548021,"s2:thin_cirrus_percentage":0.589012,"s2:cloud_shadow_percentage":0.710457,"s2:nodata_pixel_percentage":10.278857,"s2:unclassified_percentage":0.299622,"s2:not_vegetated_percentage":19.498242,"s2:degraded_msi_data_percentage":0.0174,"s2:high_proba_clouds_percentage":0.476632,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.433714,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951","bbox":[129.4326646,66.6110311,131.581589,67.6046234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R60m/T52WEV_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R60m/T52WEV_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.4326646,66.627171],[129.4395568,66.6346719],[129.569974,66.7756814],[129.7029067,66.9163859],[129.8368444,67.0570373],[129.9718905,67.1976125],[130.1092595,67.3378121],[130.2467967,67.4780835],[130.3719703,67.6046234],[131.581589,67.5950132],[131.478743,66.6110311],[129.4326646,66.627171]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEV_N05.11","eo:cloud_cover":56.754273,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.137858,"s2:mean_solar_zenith":46.1415775723871,"s2:mean_solar_azimuth":171.570681979177,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.010488,"s2:vegetation_percentage":27.792656,"s2:thin_cirrus_percentage":26.870412,"s2:cloud_shadow_percentage":9.748025,"s2:nodata_pixel_percentage":35.875851,"s2:unclassified_percentage":2.108658,"s2:not_vegetated_percentage":3.448037,"s2:degraded_msi_data_percentage":0.0056,"s2:high_proba_clouds_percentage":15.36417,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.519691,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951","bbox":[128.9995566,65.715059,131.487595,66.7148022],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R60m/T52WEU_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R60m/T52WEU_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995566,66.1472915],[129.0568185,66.2112587],[129.1820685,66.3526398],[129.3100284,66.4937028],[129.4395568,66.6346719],[129.5136678,66.7148022],[131.487595,66.6992212],[131.3925776,65.715059],[128.9995639,65.7338076],[128.9995566,66.1472915]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEU_N05.11","eo:cloud_cover":58.694005,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.187807,"s2:mean_solar_zenith":45.2540563512696,"s2:mean_solar_azimuth":171.460375519743,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.020823,"s2:vegetation_percentage":19.575879,"s2:thin_cirrus_percentage":6.623583,"s2:cloud_shadow_percentage":7.282652,"s2:nodata_pixel_percentage":6.247365,"s2:unclassified_percentage":4.842953,"s2:not_vegetated_percentage":9.395286,"s2:degraded_msi_data_percentage":0.0214,"s2:high_proba_clouds_percentage":38.061482,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.008942,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951","bbox":[128.9995624,64.8183886,131.4007172,65.8215524],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R60m/T52WET_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R60m/T52WET_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995624,65.8215524],[131.4007172,65.8027272],[131.3126985,64.8183886],[128.9995785,64.8363831],[128.9995624,65.8215524]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WET","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WET_N05.11","eo:cloud_cover":41.352487,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.192166,"s2:mean_solar_zenith":44.3658966769181,"s2:mean_solar_azimuth":171.348870647938,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.034827,"s2:vegetation_percentage":27.956703,"s2:thin_cirrus_percentage":4.539822,"s2:cloud_shadow_percentage":6.532108,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":5.609962,"s2:not_vegetated_percentage":16.073813,"s2:degraded_msi_data_percentage":0.0221,"s2:high_proba_clouds_percentage":25.178194,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.634471,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951","bbox":[128.9995771,63.9215604,131.3202484,64.9241384],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R60m/T52WES_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R60m/T52WES_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995771,64.9241384],[131.3202484,64.9060724],[131.2385085,63.9215604],[128.999592,63.9388493],[128.9995771,64.9241384]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WES","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WES_N05.11","eo:cloud_cover":5.759115,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.227425,"s2:mean_solar_zenith":43.4776424575435,"s2:mean_solar_azimuth":171.235576308309,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.078951,"s2:vegetation_percentage":69.004923,"s2:thin_cirrus_percentage":4.732712,"s2:cloud_shadow_percentage":0.28985,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.741132,"s2:not_vegetated_percentage":19.847569,"s2:degraded_msi_data_percentage":0.0189,"s2:high_proba_clouds_percentage":0.423821,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.602583,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951","bbox":[131.2005488,68.4035546,131.7341807,68.8957154],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R60m/T52WEB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R60m/T52WEB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.2005488,68.407332],[131.253871,68.4573715],[131.4049718,68.5968391],[131.5574948,68.7362757],[131.7116764,68.8755213],[131.7341807,68.8957154],[131.6733361,68.4035546],[131.2005488,68.407332]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEB_N05.11","eo:cloud_cover":2.489419,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":47.9173483017124,"s2:mean_solar_azimuth":171.790393089591,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.960938,"s2:thin_cirrus_percentage":2.489419,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":95.824677,"s2:unclassified_percentage":0.003894,"s2:not_vegetated_percentage":37.49553,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951","bbox":[130.2858757,67.5073771,131.6837049,68.4942905],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R60m/T52WEA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R60m/T52WEA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[130.2858757,67.5175891],[130.3854935,67.6182942],[130.5247857,67.7586223],[130.6679007,67.8983912],[130.8118693,68.038218],[130.9577475,68.1779816],[131.1050539,68.317716],[131.253871,68.4573715],[131.2938695,68.4942905],[131.6837049,68.491174],[131.5720525,67.5073771],[130.2858757,67.5175891]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEA_N05.11","eo:cloud_cover":44.600189,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.317938,"s2:mean_solar_zenith":47.0295225315839,"s2:mean_solar_azimuth":171.680458025836,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":47.277573,"s2:thin_cirrus_percentage":40.49665,"s2:cloud_shadow_percentage":0.390534,"s2:nodata_pixel_percentage":68.255192,"s2:unclassified_percentage":0.01643,"s2:not_vegetated_percentage":7.39556,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.938311,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.165226,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951","bbox":[128.6313048,65.7299121,129.2184871,66.3927877],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R60m/T52WDU_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R60m/T52WDU_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.6313048,65.7299121],[128.6803133,65.7885544],[128.8051215,65.929389],[128.9306399,66.0703047],[129.0568185,66.2112587],[129.1820685,66.3526398],[129.2184871,66.3927877],[129.2128247,65.7336593],[128.6313048,65.7299121]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WDU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WDU_N05.11","eo:cloud_cover":87.409705,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.016386,"s2:mean_solar_zenith":45.4096751438101,"s2:mean_solar_azimuth":168.577958033717,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.006044,"s2:vegetation_percentage":0.90118,"s2:thin_cirrus_percentage":1.310954,"s2:cloud_shadow_percentage":6.273145,"s2:nodata_pixel_percentage":92.204446,"s2:unclassified_percentage":1.957238,"s2:not_vegetated_percentage":3.422431,"s2:degraded_msi_data_percentage":0.0014,"s2:high_proba_clouds_percentage":70.731151,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.367594,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951","bbox":[127.8753205,64.8277285,129.2135496,65.8214035],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R60m/T52WDT_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R60m/T52WDT_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.8753205,64.8277285],[127.9655371,64.9388521],[128.0824097,65.080645],[128.2006112,65.2223042],[128.3185328,65.3641777],[128.4419513,65.50498],[128.5616802,65.6466009],[128.6803133,65.7885544],[128.7065269,65.8181341],[129.2135496,65.8214035],[129.2057115,64.8362408],[127.8753205,64.8277285]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WDT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WDT_N05.11","eo:cloud_cover":92.608041,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003467,"s2:mean_solar_zenith":44.5226742738124,"s2:mean_solar_azimuth":168.523026107826,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.003244,"s2:vegetation_percentage":2.630634,"s2:thin_cirrus_percentage":1.981442,"s2:cloud_shadow_percentage":0.228093,"s2:nodata_pixel_percentage":61.34249,"s2:unclassified_percentage":2.109787,"s2:not_vegetated_percentage":1.963161,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":80.711335,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.915261,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951","bbox":[127.1646008,63.925791,129.2063838,64.9239955],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R60m/T52WDS_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R60m/T52WDS_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.1646008,63.925791],[127.1790362,63.9448436],[127.2877065,64.0870749],[127.3983676,64.2290554],[127.5091714,64.3712024],[127.6227764,64.5129161],[127.7367608,64.6547273],[127.8502661,64.7968679],[127.9469287,64.9159314],[129.2063838,64.9239955],[129.1991056,63.9387126],[127.1646008,63.925791]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WDS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WDS_N05.11","eo:cloud_cover":39.816773,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.976928,"s2:mean_solar_zenith":43.6356587032227,"s2:mean_solar_azimuth":168.459967188638,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.053122,"s2:vegetation_percentage":42.942822,"s2:thin_cirrus_percentage":5.197151,"s2:cloud_shadow_percentage":1.370669,"s2:nodata_pixel_percentage":27.974859,"s2:unclassified_percentage":2.059083,"s2:not_vegetated_percentage":11.335365,"s2:degraded_msi_data_percentage":0.0083,"s2:high_proba_clouds_percentage":26.782978,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":7.836644,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951","bbox":[130.9763539,62.9899815,133.2862441,64.0127512],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R60m/T52VFR_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R60m/T52VFR_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.2162377,63.4889035],[133.1303171,63.4019607],[132.994726,63.2638539],[132.8604581,63.1256284],[132.7301294,62.9899815],[130.9763539,63.0279443],[131.0456808,64.0127512],[133.2862441,63.9638363],[133.2162377,63.4889035]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFR_N05.11","eo:cloud_cover":10.351101,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.941527,"s2:mean_solar_zenith":42.4444820685437,"s2:mean_solar_azimuth":173.856552211937,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.02482,"s2:vegetation_percentage":84.155053,"s2:thin_cirrus_percentage":10.325257,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":4.998215,"s2:unclassified_percentage":0.317888,"s2:not_vegetated_percentage":2.000846,"s2:degraded_msi_data_percentage":0.0214,"s2:high_proba_clouds_percentage":0.000035,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.025809,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951","bbox":[130.9176451,62.1093539,132.8127904,63.1156693],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R60m/T52VFQ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R60m/T52VFQ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.8127904,63.0760156],[132.7275337,62.9872799],[132.5959738,62.8488806],[132.4656772,62.7103375],[132.3362041,62.5716607],[132.2074656,62.4328557],[132.0795897,62.2939248],[132.014806,62.2227676],[131.9519214,62.1538178],[131.9117885,62.1093539],[130.9176451,62.1307003],[130.9823142,63.1156693],[132.8127904,63.0760156]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFQ_N05.11","eo:cloud_cover":5.314786,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.061753,"s2:mean_solar_zenith":41.5550985030653,"s2:mean_solar_azimuth":173.69971435638,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":91.024876,"s2:thin_cirrus_percentage":5.117859,"s2:cloud_shadow_percentage":0.524357,"s2:nodata_pixel_percentage":34.316128,"s2:unclassified_percentage":0.436825,"s2:not_vegetated_percentage":0.565136,"s2:degraded_msi_data_percentage":0.0293,"s2:high_proba_clouds_percentage":0.036056,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.160871,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951","bbox":[130.8627658,61.2274397,131.9899516,62.2184397],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R60m/T52VFP_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R60m/T52VFP_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.9899516,62.1955161],[131.9519214,62.1538178],[131.8263048,62.0146449],[131.7734854,61.9555542],[131.7025895,61.8764038],[131.5792047,61.7370479],[131.4572377,61.5976178],[131.3361918,61.4581338],[131.2161762,61.3185757],[131.1384299,61.2274397],[130.8627658,61.2333094],[130.9232108,62.2184397],[131.9899516,62.1955161]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFP_N05.11","eo:cloud_cover":0.242587,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.536898,"s2:mean_solar_zenith":40.6655719220419,"s2:mean_solar_azimuth":173.54448998684,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":96.210164,"s2:thin_cirrus_percentage":0.000156,"s2:cloud_shadow_percentage":0.661625,"s2:nodata_pixel_percentage":68.093097,"s2:unclassified_percentage":0.582098,"s2:not_vegetated_percentage":0.597519,"s2:degraded_msi_data_percentage":0.0145,"s2:high_proba_clouds_percentage":0.039618,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.202812,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951","bbox":[130.8423379,60.8748244,131.2124947,61.3216015],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R60m/T52VFN_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R60m/T52VFN_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.2124947,61.3142602],[131.0970869,61.1789765],[130.9797062,61.0391954],[130.8627034,60.8993834],[130.8423379,60.8748244],[130.868005,61.3216015],[131.2124947,61.3142602]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFN_N05.11","eo:cloud_cover":0.009899,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.141616,"s2:mean_solar_zenith":39.7764401618711,"s2:mean_solar_azimuth":173.39022892516,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.690014,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.003032,"s2:nodata_pixel_percentage":96.279573,"s2:unclassified_percentage":0.075267,"s2:not_vegetated_percentage":0.072146,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.000357,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.009542,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951","bbox":[128.9995907,63.0251146,131.2455715,64.0271539],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R60m/T52VER_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R60m/T52VER_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995907,64.0271539],[131.2455715,64.0097976],[131.1694829,63.0251146],[128.9996046,63.041742],[128.9995907,64.0271539]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VER","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VER_N05.11","eo:cloud_cover":4.716614,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":7.009887,"s2:mean_solar_zenith":42.5898323635958,"s2:mean_solar_azimuth":171.120065448574,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000189,"s2:vegetation_percentage":86.070371,"s2:thin_cirrus_percentage":4.71378,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.491173,"s2:not_vegetated_percentage":1.652437,"s2:degraded_msi_data_percentage":0.0047,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.002833,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951","bbox":[128.9996034,62.1279766,131.1760247,63.1295192],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R60m/T52VEQ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R60m/T52VEQ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9996034,63.1295192],[131.1760247,63.1128289],[131.1050472,62.1279766],[128.9996163,62.1439815],[128.9996034,63.1295192]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEQ_N05.11","eo:cloud_cover":4.926161,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":6.093029,"s2:mean_solar_zenith":41.7014131027106,"s2:mean_solar_azimuth":171.001607845712,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.765083,"s2:thin_cirrus_percentage":4.925355,"s2:cloud_shadow_percentage":0.000561,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.629424,"s2:not_vegetated_percentage":3.559852,"s2:degraded_msi_data_percentage":0.0033,"s2:high_proba_clouds_percentage":0.000013,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000793,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951","bbox":[128.9996152,61.2306854,131.1111559,62.2317701],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R60m/T52VEP_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R60m/T52VEP_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9996152,62.2317701],[131.1111559,62.2157059],[131.0448136,61.2306854],[128.9996273,61.2461037],[128.9996152,62.2317701]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEP_N05.11","eo:cloud_cover":0.008547,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":4.470636,"s2:mean_solar_zenith":40.8129259048393,"s2:mean_solar_azimuth":170.87977634975,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":92.479879,"s2:thin_cirrus_percentage":0.000282,"s2:cloud_shadow_percentage":0.037405,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.522623,"s2:not_vegetated_percentage":2.433456,"s2:degraded_msi_data_percentage":0.0185,"s2:high_proba_clouds_percentage":0.000899,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.007366,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951","bbox":[128.9996263,60.3381652,131.050564,61.3344425],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R60m/T52VEN_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R60m/T52VEN_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.0372417,61.1077108],[130.9797062,61.0391954],[130.8627034,60.8993834],[130.7465924,60.7593638],[130.6309458,60.619276],[130.575031,60.5508652],[130.5154066,60.4780474],[130.4017775,60.3381652],[128.9996376,60.3486448],[128.9996263,61.3344425],[131.050564,61.318968],[131.0372417,61.1077108]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEN_N05.11","eo:cloud_cover":0.068222,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.089501,"s2:mean_solar_zenith":39.9249157120179,"s2:mean_solar_azimuth":170.754112760966,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.534261,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.162721,"s2:nodata_pixel_percentage":11.716418,"s2:unclassified_percentage":0.056872,"s2:not_vegetated_percentage":0.084025,"s2:degraded_msi_data_percentage":0.0231,"s2:high_proba_clouds_percentage":0.008475,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.059747,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951","bbox":[128.9996366,59.4453304,130.4726708,60.4364568],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R60m/T52VEM_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R60m/T52VEM_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[130.4726708,60.4254378],[130.4014547,60.3377678],[130.2889588,60.197265],[130.2189943,60.109708],[130.1775702,60.0578764],[130.176963,60.0571081],[130.1767648,60.05686],[130.1755344,60.0553004],[130.0665401,59.9173806],[129.9561049,59.7769528],[129.8471001,59.6363193],[129.7393285,59.4955713],[129.7009413,59.4453304],[128.9996473,59.4505251],[128.9996366,60.4364568],[130.4726708,60.4254378]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEM_N05.11","eo:cloud_cover":34.67139,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.262607,"s2:mean_solar_zenith":39.0363297021797,"s2:mean_solar_azimuth":170.623913261053,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":64.85399,"s2:thin_cirrus_percentage":22.233857,"s2:cloud_shadow_percentage":0.013978,"s2:nodata_pixel_percentage":45.096695,"s2:unclassified_percentage":0.034989,"s2:not_vegetated_percentage":0.151711,"s2:degraded_msi_data_percentage":0.0303,"s2:high_proba_clouds_percentage":1.785089,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.652445,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951","bbox":[128.9996463,58.5520155,129.7677234,59.5383491],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R60m/T52VEL_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R60m/T52VEL_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.7677234,59.5326546],[129.7393285,59.4955713],[129.6318376,59.3548878],[129.5256621,59.2140441],[129.4200495,59.0730297],[129.3148762,58.9319202],[129.2100621,58.7908103],[129.1061322,58.6495909],[129.0358358,58.5520155],[128.9996563,58.5522811],[128.9996463,59.5383491],[129.7677234,59.5326546]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEL_N05.11","eo:cloud_cover":91.924906,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":38.1477121807761,"s2:mean_solar_azimuth":170.48875262019,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":7.422899,"s2:thin_cirrus_percentage":11.432301,"s2:cloud_shadow_percentage":0.642389,"s2:nodata_pixel_percentage":79.423267,"s2:unclassified_percentage":0.001322,"s2:not_vegetated_percentage":0.008481,"s2:degraded_msi_data_percentage":0.006,"s2:high_proba_clouds_percentage":17.982896,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":62.509716,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951","bbox":[128.9996555,58.5018767,129.0991687,58.6406562],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R60m/T52VEK_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R60m/T52VEK_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.0991687,58.6399252],[129.0041457,58.5080279],[128.9996568,58.5018767],[128.9996555,58.6406562],[129.0991687,58.6399252]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEK_N05.11","eo:cloud_cover":100.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":37.2596152541718,"s2:mean_solar_azimuth":170.348076961828,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.012802,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.663079,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":59.963173,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":40.024027,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951","bbox":[126.977122,63.0279332,129.1997345,64.0270166],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R60m/T52VDR_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R60m/T52VDR_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.977122,63.6773387],[127.0712145,63.802535],[127.1790362,63.9448436],[127.2322652,64.0145115],[129.1997345,64.0270166],[129.1929602,63.0416105],[127.0228562,63.0279332],[126.977122,63.6773387]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDR_N05.11","eo:cloud_cover":0.046248,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":8.477577,"s2:mean_solar_zenith":42.7491680001305,"s2:mean_solar_azimuth":168.388860780674,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":88.414162,"s2:thin_cirrus_percentage":0.037266,"s2:cloud_shadow_percentage":0.033034,"s2:nodata_pixel_percentage":2.253692,"s2:unclassified_percentage":0.710184,"s2:not_vegetated_percentage":2.224082,"s2:degraded_msi_data_percentage":0.0206,"s2:high_proba_clouds_percentage":0.00058,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.008401,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951","bbox":[127.0168934,62.1306897,129.1935426,63.1293872],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R60m/T52VDQ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R60m/T52VDQ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0168934,63.1156582],[129.1935426,63.1293872],[129.1872239,62.143855],[127.0815883,62.1306897],[127.0168934,63.1156582]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDQ_N05.11","eo:cloud_cover":4.532895,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.381983,"s2:mean_solar_zenith":41.8621575784698,"s2:mean_solar_azimuth":168.309427119423,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.332455,"s2:thin_cirrus_percentage":0.932575,"s2:cloud_shadow_percentage":4.556654,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.507586,"s2:not_vegetated_percentage":6.684162,"s2:degraded_msi_data_percentage":0.0222,"s2:high_proba_clouds_percentage":1.081294,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.519026,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951","bbox":[127.0760204,61.2332992,129.1877677,62.231643],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R60m/T52VDP_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R60m/T52VDP_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0760204,62.2184291],[129.1877677,62.231643],[129.1818621,61.2459818],[127.1364896,61.2332992],[127.0760204,62.2184291]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDP_N05.11","eo:cloud_cover":5.962572,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.812217,"s2:mean_solar_zenith":40.975169144676,"s2:mean_solar_azimuth":168.221622562471,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.394979,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":5.817081,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.569607,"s2:not_vegetated_percentage":1.407165,"s2:degraded_msi_data_percentage":0.016,"s2:high_proba_clouds_percentage":2.054761,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.907811,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951","bbox":[127.1312482,60.3363003,129.1823739,61.3343201],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R60m/T52VDN_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R60m/T52VDN_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.1312482,61.3215913],[129.1823739,61.3343201],[129.1768439,60.3485273],[127.1878754,60.3363003],[127.1312482,61.3215913]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDN_N05.11","eo:cloud_cover":0.321011,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.933388,"s2:mean_solar_zenith":40.0887563936172,"s2:mean_solar_azimuth":168.125212521695,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":95.36674,"s2:thin_cirrus_percentage":0.000272,"s2:cloud_shadow_percentage":0.706696,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.184877,"s2:not_vegetated_percentage":0.423277,"s2:degraded_msi_data_percentage":0.0017,"s2:high_proba_clouds_percentage":0.067886,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.252853,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951","bbox":[127.1829927,59.4386163,129.1773207,60.4363388],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R60m/T52VDM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R60m/T52VDM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.1829927,60.4240684],[129.1773207,60.4363388],[129.1721336,59.4504118],[127.236112,59.4386163],[127.1829927,60.4240684]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDM_N05.11","eo:cloud_cover":47.327846,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.029535,"s2:mean_solar_zenith":39.2018693815406,"s2:mean_solar_azimuth":168.019860507826,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":51.659262,"s2:thin_cirrus_percentage":16.004343,"s2:cloud_shadow_percentage":0.865906,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.025936,"s2:not_vegetated_percentage":0.089638,"s2:degraded_msi_data_percentage":0.0084,"s2:high_proba_clouds_percentage":12.341492,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.982011,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951","bbox":[127.2315279,58.5407855,129.1725812,59.5382354],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R60m/T52VDL_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R60m/T52VDL_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.1686087,58.7344837],[129.1061322,58.6495909],[129.0353728,58.5513728],[127.2814375,58.5407855],[127.2315279,59.5263988],[129.1725812,59.5382354],[129.1686087,58.7344837]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDL_N05.11","eo:cloud_cover":93.35587,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.016872,"s2:mean_solar_zenith":38.3150631080366,"s2:mean_solar_azimuth":167.905246417085,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":5.907575,"s2:thin_cirrus_percentage":26.277691,"s2:cloud_shadow_percentage":0.566101,"s2:nodata_pixel_percentage":0.694115,"s2:unclassified_percentage":0.058368,"s2:not_vegetated_percentage":0.094859,"s2:degraded_msi_data_percentage":0.028,"s2:high_proba_clouds_percentage":24.890532,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":42.187646,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951","bbox":[127.2771006,57.6433463,129.0993167,58.6401306],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R60m/T52VDK_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R60m/T52VDK_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.0993167,58.6401306],[129.0041457,58.5080279],[128.9655697,58.4551675],[128.9003554,58.3658761],[128.7965655,58.2250694],[128.7334728,58.1337096],[128.6989907,58.0840318],[128.5969669,57.9430622],[128.497614,57.8016144],[128.4011714,57.6596215],[128.3943184,57.6497449],[127.3240672,57.6433463],[127.2771006,58.6291209],[129.0993167,58.6401306]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDK_N05.11","eo:cloud_cover":99.998522,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":37.4288897872923,"s2:mean_solar_azimuth":167.781074358126,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":9e-6,"s2:thin_cirrus_percentage":1.261552,"s2:cloud_shadow_percentage":0.001149,"s2:nodata_pixel_percentage":22.927535,"s2:unclassified_percentage":0.000142,"s2:not_vegetated_percentage":0.000181,"s2:degraded_msi_data_percentage":0.0265,"s2:high_proba_clouds_percentage":75.842607,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":22.894354,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951","bbox":[127.3200079,56.7452211,128.4543698,57.7379458],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R60m/T52VDJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R60m/T52VDJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.4543698,57.7379458],[128.4011714,57.6596215],[128.3029818,57.518109],[128.2067018,57.3761853],[128.1100626,57.2343255],[128.0110463,57.0930677],[127.9190438,56.950263],[127.8253816,56.8079231],[127.7851523,56.7477124],[127.3642661,56.7452211],[127.3200079,57.7311575],[128.4543698,57.7379458]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDJ_N05.11","eo:cloud_cover":88.149291,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.006661,"s2:mean_solar_zenith":36.5423098098697,"s2:mean_solar_azimuth":167.646738291023,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.010077,"s2:vegetation_percentage":6.651367,"s2:thin_cirrus_percentage":9.607031,"s2:cloud_shadow_percentage":2.944999,"s2:nodata_pixel_percentage":57.660306,"s2:unclassified_percentage":0.658542,"s2:not_vegetated_percentage":1.438749,"s2:degraded_msi_data_percentage":0.0314,"s2:high_proba_clouds_percentage":44.659731,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":33.882529,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951","bbox":[127.3604383,56.1382728,127.8437979,56.8359107],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R60m/T52VDH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R60m/T52VDH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.8437979,56.8359107],[127.8253816,56.8079231],[127.7844507,56.7466624],[127.7298105,56.6651172],[127.6636084,56.5627038],[127.6382617,56.5235954],[127.5710385,56.4205765],[127.5448612,56.3805035],[127.4530232,56.238231],[127.4230386,56.1907083],[127.3898619,56.1382728],[127.3604383,56.8330467],[127.8437979,56.8359107]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDH_N05.11","eo:cloud_cover":99.999857,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":35.6558828244402,"s2:mean_solar_azimuth":167.501766686448,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.686651,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":90.70968,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000143,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":80.570889,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.742315,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951","bbox":[126.4913407,63.0157988,127.2172106,63.9206225],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R60m/T52VCR_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R60m/T52VCR_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.4913407,63.0157988],[126.5442443,63.0895601],[126.5914974,63.1545953],[126.6477818,63.2318841],[126.7522213,63.3745676],[126.7741412,63.4043398],[126.8578044,63.5175778],[126.9641677,63.6601022],[127.0712145,63.802535],[127.1606848,63.9206225],[127.2172106,63.0305154],[126.4913407,63.0157988]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCR_N05.11","eo:cloud_cover":0.115362,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.82724,"s2:mean_solar_zenith":42.9221743799511,"s2:mean_solar_azimuth":165.669840361009,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":96.303809,"s2:thin_cirrus_percentage":0.00009,"s2:cloud_shadow_percentage":0.260315,"s2:nodata_pixel_percentage":85.300654,"s2:unclassified_percentage":0.439103,"s2:not_vegetated_percentage":1.004424,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.013791,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.101481,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951","bbox":[125.8574215,62.1047625,127.2701768,63.1182501],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R60m/T52VCQ_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R60m/T52VCQ_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.8574215,62.1047625],[125.9440647,62.232065],[126.041841,62.3750828],[126.1404532,62.5180708],[126.2399976,62.661007],[126.340658,62.8038308],[126.4418096,62.9467397],[126.5442443,63.0895601],[126.5554127,63.1049313],[127.2118332,63.1182501],[127.2701768,62.1331753],[125.8574215,62.1047625]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCQ_N05.11","eo:cloud_cover":5.341376,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.304834,"s2:mean_solar_zenith":42.0370052606386,"s2:mean_solar_azimuth":165.629689768671,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":82.501113,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":7.249346,"s2:nodata_pixel_percentage":51.830238,"s2:unclassified_percentage":0.722848,"s2:not_vegetated_percentage":3.875196,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.534252,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.807124,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951","bbox":[125.2743035,61.1949732,127.3196877,62.2209238],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R60m/T52VCP_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R60m/T52VCP_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.2743035,61.2246888],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3699042,61.3723446],[125.4636208,61.5157764],[125.5065532,61.5809699],[125.5583435,61.6594893],[125.654055,61.8027201],[125.749814,61.9460176],[125.8467433,62.0890734],[125.9180275,62.1938091],[127.2651556,62.2209238],[127.3196877,61.2356936],[125.2779445,61.1949732],[125.2743035,61.2246888]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCP_N05.11","eo:cloud_cover":0.771749,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.248412,"s2:mean_solar_zenith":41.1519640110838,"s2:mean_solar_azimuth":165.576204350518,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.241757,"s2:thin_cirrus_percentage":0.030352,"s2:cloud_shadow_percentage":0.985723,"s2:nodata_pixel_percentage":17.972867,"s2:unclassified_percentage":0.266751,"s2:not_vegetated_percentage":4.414283,"s2:degraded_msi_data_percentage":0.0132,"s2:high_proba_clouds_percentage":0.193152,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.548245,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951","bbox":[125.2742181,60.2993491,127.3660277,61.3239944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R60m/T52VCN_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R60m/T52VCN_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.2742181,61.2245552],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3127039,61.284028],[127.314961,61.3239944],[127.3660277,60.3386088],[125.3803718,60.2993491],[125.2742181,61.2245552]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCN_N05.11","eo:cloud_cover":5.284181,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.514631,"s2:mean_solar_zenith":40.2676107637875,"s2:mean_solar_azimuth":165.509433344206,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":88.531071,"s2:thin_cirrus_percentage":2.980587,"s2:cloud_shadow_percentage":2.747851,"s2:nodata_pixel_percentage":0.092269,"s2:unclassified_percentage":0.387848,"s2:not_vegetated_percentage":0.435736,"s2:degraded_msi_data_percentage":0.0223,"s2:high_proba_clouds_percentage":0.849839,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.453755,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951","bbox":[125.3706384,59.4029675,127.4095273,60.426385],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R60m/T52VCM_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R60m/T52VCM_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.3706384,60.386986],[127.3616245,60.426385],[127.4095273,59.4408433],[125.4765375,59.4029675],[125.3706384,60.386986]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCM_N05.11","eo:cloud_cover":54.562652,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000969,"s2:mean_solar_zenith":39.3829023138874,"s2:mean_solar_azimuth":165.429353133968,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":42.078218,"s2:thin_cirrus_percentage":17.758116,"s2:cloud_shadow_percentage":2.886878,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.211021,"s2:not_vegetated_percentage":0.2563,"s2:degraded_msi_data_percentage":0.0222,"s2:high_proba_clouds_percentage":15.312667,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.49187,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951","bbox":[125.467398,58.506372,127.4504014,59.5286335],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R60m/T52VCL_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R60m/T52VCL_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.467398,59.4906256],[127.4053934,59.5286335],[127.4504014,58.5429352],[125.5669133,58.506372],[125.467398,59.4906256]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCL_N05.11","eo:cloud_cover":76.46718,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.084867,"s2:mean_solar_zenith":38.4984031318894,"s2:mean_solar_azimuth":165.335805493598,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001311,"s2:vegetation_percentage":18.992594,"s2:thin_cirrus_percentage":18.077123,"s2:cloud_shadow_percentage":1.707032,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.10983,"s2:not_vegetated_percentage":1.617009,"s2:degraded_msi_data_percentage":0.1382,"s2:high_proba_clouds_percentage":21.402517,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":36.987537,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951","bbox":[125.5582651,57.6101061,127.488844,58.6312781],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R60m/T52VCK_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R60m/T52VCK_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.5582651,58.5945887],[127.4464903,58.6312781],[127.488844,57.6454227],[125.6519254,57.6101061],[125.5582651,58.5945887]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCK_N05.11","eo:cloud_cover":85.446417,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003105,"s2:mean_solar_zenith":37.6146677210644,"s2:mean_solar_azimuth":165.228708429987,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00145,"s2:vegetation_percentage":8.690373,"s2:thin_cirrus_percentage":9.627593,"s2:cloud_shadow_percentage":3.039114,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.310062,"s2:not_vegetated_percentage":1.484424,"s2:degraded_msi_data_percentage":0.0157,"s2:high_proba_clouds_percentage":40.221915,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":35.59691,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951","bbox":[125.6438299,56.7130985,127.5250943,57.7332409],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R60m/T52VCJ_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R60m/T52VCJ_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.6438299,57.6978051],[127.4851834,57.7332409],[127.5250943,56.7472276],[125.7321002,56.7130985],[125.6438299,57.6978051]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCJ_N05.11","eo:cloud_cover":97.759056,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.001977,"s2:mean_solar_zenith":36.7306734519704,"s2:mean_solar_azimuth":165.107555251711,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000153,"s2:vegetation_percentage":0.413011,"s2:thin_cirrus_percentage":4.231559,"s2:cloud_shadow_percentage":1.778043,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.022478,"s2:not_vegetated_percentage":0.022658,"s2:degraded_msi_data_percentage":0.0206,"s2:high_proba_clouds_percentage":46.142748,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":47.384754,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951","bbox":[125.7244654,55.8158913,127.5393279,56.8350599],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R60m/T52VCH_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R60m/T52VCH_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.5393279,56.3719315],[127.4530232,56.238231],[127.4230386,56.1907083],[127.3635027,56.0966123],[127.2728758,55.9543032],[127.2018322,55.8421537],[125.8077653,55.8158913],[125.7244654,56.8008172],[127.5216425,56.8350599],[127.5393279,56.3719315]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCH_N05.11","eo:cloud_cover":99.637979,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":35.8469826643837,"s2:mean_solar_azimuth":164.972040568133,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.049283,"s2:thin_cirrus_percentage":3.240846,"s2:cloud_shadow_percentage":0.29987,"s2:nodata_pixel_percentage":5.534351,"s2:unclassified_percentage":0.01263,"s2:not_vegetated_percentage":0.000239,"s2:degraded_msi_data_percentage":0.0267,"s2:high_proba_clouds_percentage":38.787299,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":57.609838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951","bbox":[125.8005114,54.9190265,127.258534,55.9316633],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R60m/T52UCG_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R60m/T52UCG_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.258534,55.9316633],[127.1827045,55.8119586],[127.0940249,55.6692617],[127.0057939,55.5265009],[126.917857,55.3837001],[126.8299533,55.2409646],[126.74296,55.0980927],[126.6564661,54.9552042],[126.6432996,54.9332676],[125.8792201,54.9190265],[125.8005114,55.9041676],[127.258534,55.9316633]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52UCG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52UCG_N05.11","eo:cloud_cover":98.357725,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":34.9641683856508,"s2:mean_solar_azimuth":164.821706661523,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.787698,"s2:thin_cirrus_percentage":5.856419,"s2:cloud_shadow_percentage":0.69695,"s2:nodata_pixel_percentage":36.292416,"s2:unclassified_percentage":0.155951,"s2:not_vegetated_percentage":0.001677,"s2:degraded_msi_data_percentage":0.0297,"s2:high_proba_clouds_percentage":51.1594,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.34191,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951","bbox":[125.872404,54.0214307,126.6970015,55.0221689],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R60m/T52UCF_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R60m/T52UCF_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.6970015,55.0221689],[126.6564661,54.9552042],[126.5706774,54.8122726],[126.4853614,54.6693457],[126.4006598,54.5263376],[126.3157278,54.3834622],[126.2320757,54.2404286],[126.1492445,54.0972465],[126.1076334,54.0243943],[125.9468576,54.0214307],[125.872404,55.0067836],[126.6970015,55.0221689]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52UCF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52UCF_N05.11","eo:cloud_cover":99.999827,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":34.0812138922962,"s2:mean_solar_azimuth":164.655760015323,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.312156,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":71.359682,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000174,"s2:degraded_msi_data_percentage":0.0129,"s2:high_proba_clouds_percentage":78.24527,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.442401,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951","bbox":[125.9404063,53.7745817,126.1584915,54.1132308],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R60m/T52UCE_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R60m/T52UCE_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.1584915,54.1132308],[126.1492445,54.0972465],[126.0673388,53.9538472],[125.9848749,53.8105611],[125.9643445,53.7745817],[125.9404063,54.1092064],[126.1584915,54.1132308]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52UCE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52UCE_N05.11","eo:cloud_cover":96.291208,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003274,"s2:mean_solar_zenith":33.1987005853998,"s2:mean_solar_azimuth":164.473521748612,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":3.364669,"s2:thin_cirrus_percentage":8.658732,"s2:cloud_shadow_percentage":0.058003,"s2:nodata_pixel_percentage":97.872138,"s2:unclassified_percentage":0.276452,"s2:not_vegetated_percentage":0.006393,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":61.876446,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.756034,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951","bbox":[125.8612845,62.0855865,127.1538391,63.0819513],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R60m/T51VXK_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R60m/T51VXK_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.8612845,62.1104383],[125.9440647,62.232065],[126.041841,62.3750828],[126.1404532,62.5180708],[126.2399976,62.661007],[126.340658,62.8038308],[126.4418096,62.9467397],[126.5387871,63.0819513],[127.1538391,63.0686274],[127.0186771,62.0855865],[125.8612845,62.1104383]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXK_N05.11","eo:cloud_cover":4.719193,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.263164,"s2:mean_solar_zenith":42.0506712037409,"s2:mean_solar_azimuth":165.417113163303,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.87838,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":6.934454,"s2:nodata_pixel_percentage":58.767182,"s2:unclassified_percentage":0.555618,"s2:not_vegetated_percentage":3.645528,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.320873,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.39832,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951","bbox":[125.2742138,61.1898465,127.0303111,62.1970148],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R60m/T51VXJ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R60m/T51VXJ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.2742138,61.2245484],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3699042,61.3723446],[125.4636208,61.5157764],[125.5065532,61.5809699],[125.5583435,61.6594893],[125.654055,61.8027201],[125.749814,61.9460176],[125.8467433,62.0890734],[125.9202093,62.1970148],[127.0303111,62.1731593],[126.903949,61.1898465],[125.2742138,61.2245484]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXJ_N05.11","eo:cloud_cover":0.22014,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.302835,"s2:mean_solar_zenith":41.1867835009883,"s2:mean_solar_azimuth":165.122628454948,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.371725,"s2:thin_cirrus_percentage":0.028434,"s2:cloud_shadow_percentage":0.398179,"s2:nodata_pixel_percentage":34.213015,"s2:unclassified_percentage":0.265908,"s2:not_vegetated_percentage":5.351976,"s2:degraded_msi_data_percentage":0.0064,"s2:high_proba_clouds_percentage":0.036045,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.155662,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951","bbox":[124.8114005,60.2944061,126.914903,61.3117421],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R60m/T51VXH_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R60m/T51VXH_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.8210903,60.5049769],[124.8249807,60.5113176],[124.9138654,60.6549626],[125.0032327,60.7986453],[125.0941823,60.9421125],[125.1853742,61.0856306],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3306535,61.3117421],[126.914903,61.2779804],[126.7965453,60.2944061],[124.8114005,60.3363102],[124.8210903,60.5049769]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXH_N05.11","eo:cloud_cover":7.542037,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.279637,"s2:mean_solar_zenith":40.3238955866215,"s2:mean_solar_azimuth":164.822379623298,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.434909,"s2:thin_cirrus_percentage":3.581131,"s2:cloud_shadow_percentage":4.534865,"s2:nodata_pixel_percentage":9.713614,"s2:unclassified_percentage":0.522446,"s2:not_vegetated_percentage":0.597518,"s2:degraded_msi_data_percentage":0.0176,"s2:high_proba_clouds_percentage":1.54485,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.416056,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951","bbox":[124.7631831,59.3981984,126.8067517,60.4240783],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R60m/T51VXG_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R60m/T51VXG_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.8162812,60.4240783],[126.8067517,60.3820254],[126.6957051,59.3981984],[124.7631831,59.4386259],[124.8162812,60.4240783]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXG_N05.11","eo:cloud_cover":57.89808,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000305,"s2:mean_solar_zenith":39.4610213628829,"s2:mean_solar_azimuth":164.514884494607,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.59192,"s2:thin_cirrus_percentage":17.715505,"s2:cloud_shadow_percentage":4.72235,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.428356,"s2:not_vegetated_percentage":0.355357,"s2:degraded_msi_data_percentage":0.0216,"s2:high_proba_clouds_percentage":14.115481,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":26.067099,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951","bbox":[124.7178757,58.5017681,126.705289,59.5264083],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R60m/T51VXF_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R60m/T51VXF_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.7677654,59.5264083],[126.705289,59.48584],[126.6009344,58.5017681],[124.7178757,58.5407947],[124.7677654,59.5264083]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXF_N05.11","eo:cloud_cover":84.907711,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.051762,"s2:mean_solar_zenith":38.5987462846354,"s2:mean_solar_azimuth":164.199051968167,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00133,"s2:vegetation_percentage":10.837167,"s2:thin_cirrus_percentage":10.934602,"s2:cloud_shadow_percentage":1.625469,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.823939,"s2:not_vegetated_percentage":1.739268,"s2:degraded_msi_data_percentage":0.1559,"s2:high_proba_clouds_percentage":30.019575,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":43.953529,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951","bbox":[124.675263,57.605659,126.6100032,58.6291301],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R60m/T51VXE_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R60m/T51VXE_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.7222109,58.6291301],[126.6100032,58.5899689],[126.5117866,57.605659],[124.675263,57.6433552],[124.7222109,58.6291301]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXE_N05.11","eo:cloud_cover":83.065593,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003457,"s2:mean_solar_zenith":37.737647148645,"s2:mean_solar_azimuth":163.873932455555,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001311,"s2:vegetation_percentage":9.472118,"s2:thin_cirrus_percentage":10.507391,"s2:cloud_shadow_percentage":3.265965,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.934967,"s2:not_vegetated_percentage":2.231472,"s2:degraded_msi_data_percentage":0.0231,"s2:high_proba_clouds_percentage":44.325012,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.233185,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951","bbox":[124.6350802,56.7088008,126.520276,57.7311664],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R60m/T51VXD_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R60m/T51VXD_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6793207,57.7311664],[126.520276,57.6933429],[126.4277099,56.7088008],[124.6350802,56.7452297],[124.6793207,57.7311664]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXD_N05.11","eo:cloud_cover":86.153275,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.045823,"s2:mean_solar_zenith":36.8767690687929,"s2:mean_solar_azimuth":163.537818213253,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000046,"s2:vegetation_percentage":8.697088,"s2:thin_cirrus_percentage":8.987717,"s2:cloud_shadow_percentage":2.873391,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.415002,"s2:not_vegetated_percentage":0.781066,"s2:degraded_msi_data_percentage":0.0258,"s2:high_proba_clouds_percentage":51.484102,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.681457,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951","bbox":[124.5971619,55.811736,126.4357163,56.8330553],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R60m/T51VXC_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R60m/T51VXC_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6389064,56.8330553],[126.4357163,56.7965052],[126.3483613,55.811736],[124.5971619,55.8469564],[124.6389064,56.8330553]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXC_N05.11","eo:cloud_cover":80.37315,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.040378,"s2:mean_solar_zenith":36.0167025115408,"s2:mean_solar_azimuth":163.189664865841,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001802,"s2:vegetation_percentage":13.058314,"s2:thin_cirrus_percentage":9.831335,"s2:cloud_shadow_percentage":5.830083,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.345865,"s2:not_vegetated_percentage":0.336887,"s2:degraded_msi_data_percentage":0.2077,"s2:high_proba_clouds_percentage":28.778237,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.763577,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951","bbox":[124.7173583,60.3337804,125.0193553,60.8240776],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R60m/T51VWH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R60m/T51VWH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.7173583,60.3358065],[124.7368049,60.3676069],[124.8249807,60.5113176],[124.9138654,60.6549626],[125.0032327,60.7986453],[125.0193553,60.8240776],[124.9884362,60.3337804],[124.7173583,60.3358065]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWH_N05.11","eo:cloud_cover":2.231455,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.123831,"s2:mean_solar_zenith":40.6013483995389,"s2:mean_solar_azimuth":162.238556121133,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":94.158405,"s2:thin_cirrus_percentage":1.469386,"s2:cloud_shadow_percentage":1.166013,"s2:nodata_pixel_percentage":96.806538,"s2:unclassified_percentage":0.425865,"s2:not_vegetated_percentage":0.821289,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.140466,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.621603,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951","bbox":[124.1812178,59.4361854,124.9937932,60.4232067],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R60m/T51VWG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R60m/T51VWG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.1812178,59.4417727],[124.2178591,59.5041056],[124.3024279,59.6482388],[124.3884266,59.7921383],[124.4747037,59.9360939],[124.5615303,60.0800233],[124.6489053,60.2238678],[124.7368049,60.3676069],[124.770919,60.4232067],[124.9937932,60.4215395],[124.9355133,59.4361854],[124.1812178,59.4417727]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWG_N05.11","eo:cloud_cover":55.649191,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":39.7418448623104,"s2:mean_solar_azimuth":161.959303472834,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.038169,"s2:thin_cirrus_percentage":22.523712,"s2:cloud_shadow_percentage":7.36936,"s2:nodata_pixel_percentage":75.410157,"s2:unclassified_percentage":0.573913,"s2:not_vegetated_percentage":0.368027,"s2:degraded_msi_data_percentage":0.0011,"s2:high_proba_clouds_percentage":10.974427,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":22.151056,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951","bbox":[123.6714801,58.5384388,124.9405427,59.5292081],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R60m/T51VWF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R60m/T51VWF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.6714801,58.5473506],[123.722775,58.639394],[123.8039467,58.7835312],[123.8853601,58.9276965],[123.9666585,59.0720401],[124.0498987,59.2160415],[124.1332296,59.3601371],[124.2178591,59.5041056],[124.2325877,59.5292081],[124.9405427,59.5239593],[124.8857837,58.5384388],[123.6714801,58.5473506]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWF_N05.11","eo:cloud_cover":81.033099,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.043118,"s2:mean_solar_zenith":38.8831309879419,"s2:mean_solar_azimuth":161.667799182135,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":10.345491,"s2:thin_cirrus_percentage":16.57799,"s2:cloud_shadow_percentage":4.357751,"s2:nodata_pixel_percentage":50.038314,"s2:unclassified_percentage":2.540173,"s2:not_vegetated_percentage":1.678819,"s2:degraded_msi_data_percentage":0.005,"s2:high_proba_clouds_percentage":37.707323,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":26.747787,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951","bbox":[123.1828317,57.6410797,124.8905421,58.6353608],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R60m/T51VWE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R60m/T51VWE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.1828317,57.6531181],[123.2468288,57.7728426],[123.3244985,57.9174652],[123.4033861,58.0619148],[123.481966,58.2065113],[123.5622705,58.3507675],[123.6423679,58.4951117],[123.7205273,58.6353608],[124.8905421,58.6267661],[124.8390116,57.6410797],[123.1828317,57.6531181]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWE_N05.11","eo:cloud_cover":99.754447,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":38.0257934249818,"s2:mean_solar_azimuth":161.363270080768,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":1.372901,"s2:cloud_shadow_percentage":0.24555,"s2:nodata_pixel_percentage":24.488933,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0105,"s2:high_proba_clouds_percentage":72.708732,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.672811,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951","bbox":[122.999668,56.7430308,124.8434653,57.7406252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R60m/T51VWD_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R60m/T51VWD_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.999668,57.3064169],[123.0167676,57.3389609],[123.0928648,57.4836288],[123.1695307,57.6282349],[123.2296074,57.7406252],[124.8434653,57.7288832],[124.794906,56.7430308],[122.9996729,56.7559505],[122.999668,57.3064169]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWD_N05.11","eo:cloud_cover":96.187341,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.002037,"s2:mean_solar_zenith":37.1688958453377,"s2:mean_solar_azimuth":161.04420339059,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":2.456396,"s2:thin_cirrus_percentage":3.343562,"s2:cloud_shadow_percentage":0.507342,"s2:nodata_pixel_percentage":2.935342,"s2:unclassified_percentage":0.74617,"s2:not_vegetated_percentage":0.086305,"s2:degraded_msi_data_percentage":0.0291,"s2:high_proba_clouds_percentage":51.66654,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.177237,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951","bbox":[122.9996721,55.8448305,124.7991059,56.8438118],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R60m/T51VWC_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R60m/T51VWC_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.9996721,56.8438118],[124.7991059,56.8308491],[124.7532859,55.8448305],[122.9996805,55.8573211],[122.9996721,56.8438118]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWC_N05.11","eo:cloud_cover":61.630154,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.030153,"s2:mean_solar_zenith":36.3130386398673,"s2:mean_solar_azimuth":160.709692363544,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.016443,"s2:vegetation_percentage":24.218497,"s2:thin_cirrus_percentage":7.01362,"s2:cloud_shadow_percentage":11.141433,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.582566,"s2:not_vegetated_percentage":2.323748,"s2:degraded_msi_data_percentage":0.1589,"s2:high_proba_clouds_percentage":29.178974,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.437561,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951","bbox":[122.7126308,56.7532025,123.1633916,57.6166554],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R60m/T51VVD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R60m/T51VVD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.7126308,56.7532025],[122.7162521,56.7604165],[122.790841,56.9050909],[122.8653564,57.0498061],[122.9408001,57.1943794],[123.0167676,57.3389609],[123.0928648,57.4836288],[123.1633916,57.6166554],[123.1596203,56.7558483],[122.7126308,56.7532025]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VVD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VVD_N05.11","eo:cloud_cover":92.885494,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.011394,"s2:mean_solar_zenith":37.4767638724535,"s2:mean_solar_azimuth":158.568712849072,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":3.241396,"s2:thin_cirrus_percentage":14.323263,"s2:cloud_shadow_percentage":0.650767,"s2:nodata_pixel_percentage":89.516771,"s2:unclassified_percentage":0.875791,"s2:not_vegetated_percentage":2.301516,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":49.858767,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.703463,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951","bbox":[122.2595518,55.851971,123.159994,56.8437093],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R60m/T51VVC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R60m/T51VVC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.2595518,55.851971],[122.2790468,55.8910374],[122.3491953,56.0363776],[122.4226852,56.1810109],[122.4957057,56.325857],[122.5695814,56.4705657],[122.6434336,56.6153529],[122.7162521,56.7604165],[122.7579667,56.8413273],[123.159994,56.8437093],[123.1559167,55.8572224],[122.2595518,55.851971]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VVC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VVC_N05.11","eo:cloud_cover":98.473299,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000751,"s2:mean_solar_zenith":36.6255546904771,"s2:mean_solar_azimuth":158.249173729644,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.333282,"s2:thin_cirrus_percentage":2.277825,"s2:cloud_shadow_percentage":1.097256,"s2:nodata_pixel_percentage":63.752663,"s2:unclassified_percentage":0.074426,"s2:not_vegetated_percentage":0.018966,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":21.215393,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":74.98008,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951","bbox":[126.045107,53.9152179,126.1543823,54.109222],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R60m/T51UYV_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R60m/T51UYV_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.1543823,54.1061278],[126.1492445,54.0972465],[126.0673388,53.9538472],[126.045107,53.9152179],[126.0589827,54.109222],[126.1543823,54.1061278]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UYV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UYV_N05.11","eo:cloud_cover":99.981284,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":33.1506421165131,"s2:mean_solar_azimuth":164.537132209352,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000645,"s2:thin_cirrus_percentage":0.393647,"s2:cloud_shadow_percentage":0.001291,"s2:nodata_pixel_percentage":99.485868,"s2:unclassified_percentage":0.008389,"s2:not_vegetated_percentage":0.008389,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":93.898463,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":5.689174,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736","bbox":[124.4953796,53.1302708,125.8664881,53.8933641],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R60m/T51UXV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R60m/T51UXV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.4884241,53.6901522],[125.4885654,53.6904054],[125.4891078,53.6902887],[125.4894449,53.6908929],[125.5039535,53.6874959],[125.503751,53.687133],[125.6506011,53.6531602],[125.8664881,53.6026128],[125.7859926,53.4606453],[125.7054103,53.3171489],[125.6253696,53.1736377],[125.6012551,53.1302708],[124.4953796,53.1517855],[124.5219295,53.8933641],[124.7816897,53.8417288],[124.7817719,53.8418812],[124.7821093,53.8418142],[124.7824295,53.8424074],[124.9417879,53.8085628],[125.1531166,53.7635297],[125.1531058,53.76351],[125.1535946,53.7634037],[125.1534731,53.7631817],[125.1537243,53.7631272],[125.1537101,53.7631014],[125.1540333,53.7630313],[125.1539083,53.762803],[125.1539368,53.7627968],[125.1536511,53.7622749],[125.4884241,53.6901522]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UXV_N05.11","eo:cloud_cover":57.297868,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.051528,"s2:mean_solar_zenith":33.4428233592958,"s2:mean_solar_azimuth":162.058972933642,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":38.879889,"s2:thin_cirrus_percentage":21.175461,"s2:cloud_shadow_percentage":1.375699,"s2:nodata_pixel_percentage":52.880234,"s2:unclassified_percentage":0.661029,"s2:not_vegetated_percentage":1.733291,"s2:degraded_msi_data_percentage":0.0264,"s2:high_proba_clouds_percentage":18.629491,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":17.492916,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951","bbox":[124.5154737,53.4389177,126.15453,54.1383733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R60m/T51UXV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R60m/T51UXV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.5141266,53.4995389],[125.4119279,53.5234491],[125.4118286,53.523271],[125.4117048,53.5233],[125.4115105,53.5229515],[125.3948381,53.5265454],[125.3950925,53.5270036],[125.0625067,53.5992397],[125.0624721,53.5991765],[125.0382765,53.6042932],[125.0382994,53.6043352],[125.038216,53.6043529],[125.0383493,53.6045975],[124.7113843,53.6741125],[124.7113072,53.6739695],[124.7101066,53.6742254],[124.710092,53.6741983],[124.7100034,53.6742172],[124.7097646,53.6737754],[124.7088823,53.6739509],[124.6918944,53.6775433],[124.6920168,53.6777704],[124.5154737,53.7130452],[124.5307013,54.1383733],[126.15453,54.106383],[126.1492445,54.0972465],[126.0673388,53.9538472],[125.9848749,53.8105611],[125.9030535,53.6671698],[125.8216955,53.5237566],[125.7738209,53.4389177],[125.5141266,53.4995389]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UXV_N05.11","eo:cloud_cover":75.041485,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.015173,"s2:mean_solar_zenith":33.4428233592958,"s2:mean_solar_azimuth":162.058972933642,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":20.049483,"s2:thin_cirrus_percentage":21.57958,"s2:cloud_shadow_percentage":2.185212,"s2:nodata_pixel_percentage":50.558668,"s2:unclassified_percentage":0.303577,"s2:not_vegetated_percentage":2.394095,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":25.175184,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.286716,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736","bbox":[124.4649804,52.2409272,125.649989,53.2402083],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R60m/T51UXU_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R60m/T51UXU_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.649989,53.2177799],[125.6253696,53.1736377],[125.5456072,53.0301951],[125.4665804,52.8866619],[125.3880901,52.7430708],[125.3099468,52.5994597],[125.2321784,52.4558624],[125.1550113,52.3121694],[125.1166706,52.2409272],[124.4649804,52.2534568],[124.4984604,53.2402083],[125.649989,53.2177799]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UXU_N05.11","eo:cloud_cover":78.283638,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.117534,"s2:mean_solar_zenith":32.5874882578317,"s2:mean_solar_azimuth":161.648350107667,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":16.530271,"s2:thin_cirrus_percentage":14.665918,"s2:cloud_shadow_percentage":0.601585,"s2:nodata_pixel_percentage":44.84674,"s2:unclassified_percentage":2.471653,"s2:not_vegetated_percentage":1.994159,"s2:degraded_msi_data_percentage":0.0306,"s2:high_proba_clouds_percentage":42.633015,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":20.984702,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736","bbox":[124.4361206,51.3503969,125.1634942,52.3413551],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R60m/T51UXT_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R60m/T51UXT_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.1634942,52.3279654],[125.1550113,52.3121694],[125.0776825,52.168482],[125.0011792,52.0245944],[124.9247977,51.8807541],[124.8488376,51.7368822],[124.7740366,51.5928144],[124.6995434,51.4487578],[124.6489659,51.3503969],[124.4361206,51.3544394],[124.4678842,52.3413551],[125.1634942,52.3279654]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UXT_N05.11","eo:cloud_cover":42.99162,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.008262,"s2:mean_solar_zenith":31.7329884341935,"s2:mean_solar_azimuth":161.21765425791,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":49.09727,"s2:thin_cirrus_percentage":7.465654,"s2:cloud_shadow_percentage":3.823742,"s2:nodata_pixel_percentage":71.850431,"s2:unclassified_percentage":3.486861,"s2:not_vegetated_percentage":0.590113,"s2:degraded_msi_data_percentage":0.0137,"s2:high_proba_clouds_percentage":20.667204,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.858763,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951","bbox":[124.5613574,54.9150072,126.3559683,55.9353354],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R60m/T51UXB_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R60m/T51UXB_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6007969,55.9353354],[126.3559683,55.8999986],[126.2734267,54.9150072],[124.5613574,54.949074],[124.6007969,55.9353354]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UXB_N05.11","eo:cloud_cover":88.807923,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.020468,"s2:mean_solar_zenith":35.1580547342679,"s2:mean_solar_azimuth":162.828282523976,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":9.042518,"s2:thin_cirrus_percentage":24.010889,"s2:cloud_shadow_percentage":1.367089,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.223838,"s2:not_vegetated_percentage":0.532002,"s2:degraded_msi_data_percentage":0.0269,"s2:high_proba_clouds_percentage":33.219445,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":31.57759,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951","bbox":[122.9996938,53.6836594,124.6803359,54.1481041],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R60m/T51UWV_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R60m/T51UWV_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6625437,53.6836594],[124.3645949,53.7431921],[124.3645896,53.7431821],[124.3424073,53.7474544],[124.3426493,53.7479108],[124.0176633,53.8106443],[124.017598,53.810519],[124.0164772,53.8107353],[124.0162841,53.8103658],[124.0059661,53.8122532],[123.9970036,53.8139794],[123.9973736,53.8146887],[123.6701786,53.874526],[123.669832,53.8738516],[123.6573272,53.8760265],[123.648813,53.8775839],[123.6489988,53.8779461],[123.6486847,53.8780006],[123.6487191,53.8780676],[123.64867,53.8780761],[123.6486992,53.8781329],[123.3008855,53.9384707],[123.2994055,53.9387182],[123.2994322,53.9387709],[123.2071657,53.954145],[122.9996949,53.9888438],[122.9996938,54.1481041],[124.6803359,54.1363774],[124.6625437,53.6836594]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UWV_N05.11","eo:cloud_cover":30.101115,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.016995,"s2:mean_solar_zenith":33.7533105076474,"s2:mean_solar_azimuth":159.600653364513,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.237719,"s2:thin_cirrus_percentage":12.295584,"s2:cloud_shadow_percentage":8.178432,"s2:nodata_pixel_percentage":69.2334,"s2:unclassified_percentage":1.578633,"s2:not_vegetated_percentage":0.859638,"s2:degraded_msi_data_percentage":0.0011,"s2:high_proba_clouds_percentage":8.614112,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.191418,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736","bbox":[122.9997279,47.930217,123.3765395,48.753013],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R60m/T51UWP_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R60m/T51UWP_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.3765395,48.7505719],[123.3585612,48.7119546],[123.3552534,48.7048697],[123.3513598,48.6965415],[123.2878676,48.5609815],[123.2215248,48.4159299],[123.1546532,48.2710565],[123.0884539,48.1260927],[123.0227773,47.9810966],[122.9997322,47.930217],[122.9997279,48.753013],[123.3765395,48.7505719]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UWP_N05.11","eo:cloud_cover":63.980716,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":28.6794760102683,"s2:mean_solar_azimuth":156.759918302674,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":34.175,"s2:thin_cirrus_percentage":30.567065,"s2:cloud_shadow_percentage":0.858481,"s2:nodata_pixel_percentage":89.681041,"s2:unclassified_percentage":0.258059,"s2:not_vegetated_percentage":0.727008,"s2:degraded_msi_data_percentage":0.0003,"s2:high_proba_clouds_percentage":11.811411,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.60224,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951","bbox":[122.9996798,54.9470178,124.7572757,55.9457344],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R60m/T51UWB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R60m/T51UWB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.9996798,55.9457344],[124.7572757,55.9332025],[124.7139855,54.9470178],[122.9996877,54.9590989],[122.9996798,55.9457344]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UWB_N05.11","eo:cloud_cover":49.787244,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.044164,"s2:mean_solar_zenith":35.4588406100177,"s2:mean_solar_azimuth":160.358673885298,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":37.789297,"s2:thin_cirrus_percentage":13.094236,"s2:cloud_shadow_percentage":10.389226,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.397232,"s2:not_vegetated_percentage":1.566494,"s2:degraded_msi_data_percentage":0.1166,"s2:high_proba_clouds_percentage":17.587948,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":19.105059,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736","bbox":[122.9996936,54.0555765,123.6635938,54.1679624],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R60m/T51UWA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R60m/T51UWA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.9996936,54.1679624],[123.0491081,54.1603337],[123.0489318,54.1599803],[123.049026,54.1599646],[123.0487058,54.1593229],[123.382052,54.1037045],[123.382073,54.1037458],[123.3821003,54.1037413],[123.3821741,54.1038871],[123.3823408,54.1038593],[123.3824132,54.1040024],[123.3824393,54.103998],[123.3824639,54.1040465],[123.3828133,54.1039882],[123.3829292,54.1042174],[123.6635938,54.0555765],[122.9996944,54.0602038],[122.9996936,54.1679624]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UWA_N05.11","eo:cloud_cover":8.451172,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.065912,"s2:mean_solar_zenith":34.6053844976197,"s2:mean_solar_azimuth":159.989421016063,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":87.770379,"s2:thin_cirrus_percentage":0.290421,"s2:cloud_shadow_percentage":1.6381,"s2:nodata_pixel_percentage":97.880805,"s2:unclassified_percentage":0.714232,"s2:not_vegetated_percentage":1.220707,"s2:degraded_msi_data_percentage":0.0028,"s2:high_proba_clouds_percentage":4.407667,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.753084,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951","bbox":[122.999687,54.0485147,124.7177342,55.046986],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R60m/T51UWA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R60m/T51UWA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.999687,55.046986],[124.7177342,55.0348657],[124.6767881,54.0485147],[122.9996944,54.0602038],[122.999687,55.046986]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UWA_N05.11","eo:cloud_cover":28.662688,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.010066,"s2:mean_solar_zenith":34.6053844976197,"s2:mean_solar_azimuth":159.989421016063,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.858567,"s2:thin_cirrus_percentage":11.501379,"s2:cloud_shadow_percentage":10.085355,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.358572,"s2:not_vegetated_percentage":0.998374,"s2:degraded_msi_data_percentage":0.0181,"s2:high_proba_clouds_percentage":8.541209,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.6201,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951","bbox":[121.9838497,53.9639095,123.1494256,54.1480114],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R60m/T51UVV_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R60m/T51UVV_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.1487821,53.9639095],[122.9479832,53.9974924],[122.9481262,53.9977808],[122.6132063,54.0496365],[122.6131096,54.049439],[122.5886183,54.0532539],[122.5886636,54.0533466],[122.2889777,54.0984146],[122.2284259,54.1076076],[122.2286166,54.1080021],[122.2278167,54.108111],[122.2278316,54.1081418],[122.1761686,54.1151418],[121.9838497,54.1413221],[123.1494256,54.1480114],[123.1487821,53.9639095]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UVV_N05.11","eo:cloud_cover":3.08952,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.017315,"s2:mean_solar_zenith":34.0813654983863,"s2:mean_solar_azimuth":157.166422690752,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":92.764705,"s2:thin_cirrus_percentage":0.131603,"s2:cloud_shadow_percentage":2.433042,"s2:nodata_pixel_percentage":93.5233,"s2:unclassified_percentage":0.330672,"s2:not_vegetated_percentage":1.343744,"s2:degraded_msi_data_percentage":0.0402,"s2:high_proba_clouds_percentage":0.973729,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.984188,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951","bbox":[121.8245577,54.9513065,123.1562717,55.9456353],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R60m/T51UVB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R60m/T51UVB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.8245577,54.9513065],[121.8573636,55.0210211],[121.9265895,55.1661143],[121.99571,55.3112522],[122.0657173,55.4562553],[122.1360145,55.6013198],[122.2068202,55.7463008],[122.2790468,55.8910374],[122.3029832,55.9406311],[123.1562717,55.9456353],[123.1524197,54.9590034],[121.8245577,54.9513065]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UVB_N05.11","eo:cloud_cover":87.740666,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.040295,"s2:mean_solar_zenith":35.7762565582716,"s2:mean_solar_azimuth":157.909946927641,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":8.209021,"s2:thin_cirrus_percentage":4.126655,"s2:cloud_shadow_percentage":3.075512,"s2:nodata_pixel_percentage":37.455398,"s2:unclassified_percentage":0.626232,"s2:not_vegetated_percentage":0.301926,"s2:degraded_msi_data_percentage":0.8614,"s2:high_proba_clouds_percentage":18.792695,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":64.821315,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736","bbox":[121.4668827,54.0504964,123.1494142,54.3749405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R60m/T51UVA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R60m/T51UVA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.4668827,54.1836475],[121.4887371,54.230434],[121.5558041,54.3749405],[121.9281611,54.3242906],[121.9282534,54.3244854],[121.928668,54.3244291],[121.9287311,54.3245624],[121.9290838,54.3245147],[121.9291289,54.32461],[121.9295965,54.3245468],[121.9297185,54.3248042],[121.9301434,54.324747],[121.9301624,54.3247872],[121.9305235,54.3247387],[121.9306037,54.3249078],[121.9308485,54.324875],[121.9308513,54.324881],[122.293863,54.2755855],[122.3246217,54.2713226],[122.3244758,54.2710202],[122.3247688,54.2709758],[122.3246482,54.2707258],[122.325808,54.2705502],[122.3257694,54.2704702],[122.3261054,54.2704194],[122.326099,54.2704061],[122.3264015,54.2703605],[122.3263961,54.2703493],[122.375888,54.2628902],[122.3867791,54.2612461],[122.6681326,54.2187082],[122.6681627,54.2187697],[122.6684173,54.2187312],[122.6684497,54.2187973],[122.6686699,54.2187641],[122.6687585,54.2189444],[122.668847,54.218931],[122.6688765,54.2189911],[122.6689649,54.2189778],[122.6689848,54.2190182],[123.0491081,54.1603337],[123.0489318,54.1599803],[123.049026,54.1599646],[123.0487058,54.1593229],[123.1494142,54.1425198],[123.14911,54.0601114],[121.4719201,54.0504964],[121.4668827,54.1836475]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UVA_N05.11","eo:cloud_cover":16.879188,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.006543,"s2:mean_solar_zenith":34.9279765778761,"s2:mean_solar_azimuth":157.549415349823,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":70.123202,"s2:thin_cirrus_percentage":0.069427,"s2:cloud_shadow_percentage":10.63133,"s2:nodata_pixel_percentage":79.059011,"s2:unclassified_percentage":0.881372,"s2:not_vegetated_percentage":1.458544,"s2:degraded_msi_data_percentage":0.0188,"s2:high_proba_clouds_percentage":8.416358,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.393401,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951","bbox":[121.4790494,54.056768,123.1527533,55.0468902],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R60m/T51UVA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R60m/T51UVA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.5659122,54.056768],[122.2889777,54.0984146],[122.2284259,54.1076076],[122.2286166,54.1080021],[122.2278167,54.108111],[122.2278316,54.1081418],[122.1761686,54.1151418],[121.8811708,54.1552997],[121.8810903,54.1551292],[121.8806732,54.1551863],[121.8806703,54.1551802],[121.8794626,54.1553438],[121.8793785,54.155165],[121.8535206,54.1587227],[121.8538059,54.1593139],[121.4790494,54.2095157],[121.5188676,54.2942384],[121.5851657,54.439808],[121.6527232,54.5851212],[121.7207465,54.7304114],[121.788983,54.8757081],[121.8573636,55.0210211],[121.8661441,55.0394246],[123.1527533,55.0468902],[123.14911,54.0601114],[122.5659122,54.056768]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UVA_N05.11","eo:cloud_cover":52.653968,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003285,"s2:mean_solar_zenith":34.9279765778761,"s2:mean_solar_azimuth":157.549415349823,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":37.74555,"s2:thin_cirrus_percentage":1.242309,"s2:cloud_shadow_percentage":7.265861,"s2:nodata_pixel_percentage":16.475068,"s2:unclassified_percentage":1.050488,"s2:not_vegetated_percentage":1.254543,"s2:degraded_msi_data_percentage":2.0749,"s2:high_proba_clouds_percentage":16.001086,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":35.410574,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736","bbox":[120.9984315,53.1416409,121.6511208,54.1401868],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R60m/T51UUV_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R60m/T51UUV_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.9984315,53.1416409],[121.0293857,53.2129719],[121.0939341,53.3584219],[121.1582032,53.5039295],[121.2234148,53.6493069],[121.2891205,53.7946536],[121.3556109,53.9398481],[121.4209831,54.0853839],[121.4450805,54.1369727],[121.6192567,54.1401868],[121.6511208,53.1535351],[120.9984315,53.1416409]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UUV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UUV_N05.11","eo:cloud_cover":4.091585,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.931335,"s2:mean_solar_zenith":34.4261817607303,"s2:mean_solar_azimuth":154.760325095232,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":91.110557,"s2:thin_cirrus_percentage":1.435339,"s2:cloud_shadow_percentage":3.054372,"s2:nodata_pixel_percentage":75.347459,"s2:unclassified_percentage":0.269249,"s2:not_vegetated_percentage":0.481111,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.107008,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.549238,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736","bbox":[120.6056024,52.2358279,121.6785441,53.2419635],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R60m/T51UUU_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R60m/T51UUU_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.6056024,52.2358279],[120.6495214,52.3393057],[120.7117381,52.4850079],[120.7745227,52.6306574],[120.8384771,52.7760809],[120.9017741,52.9217141],[120.9661176,53.0671769],[121.0293857,53.2129719],[121.0373045,53.2308157],[121.6483415,53.2419635],[121.6785441,52.2551507],[120.6056024,52.2358279]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UUU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UUU_N05.11","eo:cloud_cover":29.20112,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.027118,"s2:mean_solar_zenith":33.5881135017548,"s2:mean_solar_azimuth":154.358239976182,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":65.406787,"s2:thin_cirrus_percentage":14.649937,"s2:cloud_shadow_percentage":4.400674,"s2:nodata_pixel_percentage":48.51661,"s2:unclassified_percentage":0.382532,"s2:not_vegetated_percentage":0.568262,"s2:degraded_msi_data_percentage":0.1776,"s2:high_proba_clouds_percentage":5.582973,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.968209,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736","bbox":[121.4043239,54.0482962,121.6221725,54.3749405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R60m/T51UUA_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R60m/T51UUA_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.4043239,54.0482962],[121.4209831,54.0853839],[121.4887371,54.230434],[121.5558041,54.3749405],[121.6114247,54.3673747],[121.6221725,54.0523118],[121.4043239,54.0482962]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UUA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UUA_N05.11","eo:cloud_cover":25.536171,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":35.2668931326153,"s2:mean_solar_azimuth":155.135981523394,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":53.405219,"s2:thin_cirrus_percentage":0.00171,"s2:cloud_shadow_percentage":18.725342,"s2:nodata_pixel_percentage":97.477144,"s2:unclassified_percentage":0.516839,"s2:not_vegetated_percentage":1.798414,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":12.719624,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":12.814838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736","bbox":[121.7069511,45.0581917,122.1752693,46.0486504],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R60m/T51TVL_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R60m/T51TVL_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.1752693,46.0486504],[122.1329686,45.9488702],[122.0720409,45.8035458],[122.0110653,45.6582561],[121.9502934,45.5129648],[121.8899568,45.3675816],[121.8298896,45.2221331],[121.8252616,45.2109057],[121.7701436,45.0773904],[121.7623215,45.0583569],[121.7294164,45.0581917],[121.7069511,46.0462596],[122.1752693,46.0486504]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TVL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TVL_N05.11","eo:cloud_cover":98.190892,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000057,"s2:mean_solar_zenith":26.5701043469989,"s2:mean_solar_azimuth":152.40220453019,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.665535,"s2:thin_cirrus_percentage":3.684097,"s2:cloud_shadow_percentage":1.088557,"s2:nodata_pixel_percentage":82.523805,"s2:unclassified_percentage":0.051316,"s2:not_vegetated_percentage":0.00131,"s2:degraded_msi_data_percentage":0.0629,"s2:high_proba_clouds_percentage":58.089715,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":36.417076,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736","bbox":[121.7274503,44.9821886,121.7989239,45.1471066],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R60m/T51TVK_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R60m/T51TVK_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.7989239,45.1471066],[121.7701436,45.0773904],[121.7310193,44.9821886],[121.7274503,45.1467472],[121.7989239,45.1471066]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TVK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TVK_N05.11","eo:cloud_cover":100.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":25.7525590817109,"s2:mean_solar_azimuth":151.679725430971,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.615014,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":99.540663,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.459336,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736","bbox":[120.5688037,42.060235,120.7221903,42.429263],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R60m/T51TUG_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R60m/T51TUG_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.7221903,42.429263],[120.676057,42.3076801],[120.6206454,42.1618905],[120.5826297,42.060235],[120.5688037,42.4269017],[120.7221903,42.429263]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TUG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TUG_N05.11","eo:cloud_cover":99.987483,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":23.7890219812945,"s2:mean_solar_azimuth":146.652794097916,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.352288,"s2:cloud_shadow_percentage":0.00634,"s2:nodata_pixel_percentage":97.959131,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.006178,"s2:degraded_msi_data_percentage":0.0599,"s2:high_proba_clouds_percentage":66.681027,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":32.954165,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736","bbox":[119.4545363,39.6090131,120.0489377,40.6113254],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R60m/T51TTE_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R60m/T51TTE_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.0489377,40.6113254],[120.0282934,40.5542995],[119.9758153,40.4080915],[119.9230646,40.2620155],[119.8714404,40.1156798],[119.8513154,40.0589762],[119.819189,39.9686227],[119.7672769,39.8222937],[119.7387107,39.7415223],[119.7157065,39.6765674],[119.6935001,39.6136387],[119.5054874,39.6090131],[119.4545363,40.5964015],[120.0489377,40.6113254]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TTE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TTE_N05.11","eo:cloud_cover":80.006087,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":17.062339,"s2:mean_solar_zenith":22.7403756866213,"s2:mean_solar_azimuth":142.117565763747,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000243,"s2:vegetation_percentage":1.548352,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.00516,"s2:nodata_pixel_percentage":69.909889,"s2:unclassified_percentage":0.602656,"s2:not_vegetated_percentage":0.769749,"s2:degraded_msi_data_percentage":0.2965,"s2:high_proba_clouds_percentage":75.100821,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":4.905267,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736","bbox":[119.5010231,39.1430719,119.7250791,39.703032],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R60m/T51STD_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R60m/T51STD_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.7250791,39.703032],[119.7157065,39.6765674],[119.6640093,39.5300675],[119.6124705,39.3835187],[119.5611444,39.2369834],[119.528373,39.1430719],[119.5010231,39.6975095],[119.7250791,39.703032]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51STD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51STD_N05.11","eo:cloud_cover":2.799612,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":97.144371,"s2:mean_solar_zenith":21.9895965995577,"s2:mean_solar_azimuth":140.961465471589,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":95.220464,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.05602,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.027767,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.771845,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736","bbox":[120.5925969,52.1754847,121.634183,53.1792832],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R60m/T50UQD_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R60m/T50UQD_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.5925969,52.2051856],[120.6495214,52.3393057],[120.7117381,52.4850079],[120.7745227,52.6306574],[120.8384771,52.7760809],[120.9017741,52.9217141],[120.9661176,53.0671769],[121.0147664,53.1792832],[121.634183,53.159422],[121.5310322,52.1754847],[120.5925969,52.2051856]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UQD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UQD_N05.11","eo:cloud_cover":25.962237,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.047666,"s2:mean_solar_zenith":33.5713724823885,"s2:mean_solar_azimuth":154.209458513207,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":68.457073,"s2:thin_cirrus_percentage":14.526783,"s2:cloud_shadow_percentage":4.580833,"s2:nodata_pixel_percentage":52.271348,"s2:unclassified_percentage":0.378007,"s2:not_vegetated_percentage":0.564111,"s2:degraded_msi_data_percentage":0.0622,"s2:high_proba_clouds_percentage":4.97154,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.463914,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736","bbox":[120.2219412,51.2789252,121.5399797,52.2919894],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R60m/T50UQC_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R60m/T50UQC_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.2219412,51.3170712],[120.2227487,51.3190554],[120.2831008,51.4648783],[120.3435517,51.6106504],[120.4035932,51.7565431],[120.4652142,51.9021099],[120.5259895,52.0479574],[120.58769,52.1936244],[120.629439,52.2919894],[121.5399797,52.2631374],[121.4420952,51.2789252],[120.2219412,51.3170712]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UQC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UQC_N05.11","eo:cloud_cover":31.898367,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.214088,"s2:mean_solar_zenith":32.7693558338171,"s2:mean_solar_azimuth":153.582585084605,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":54.990929,"s2:thin_cirrus_percentage":5.04574,"s2:cloud_shadow_percentage":11.602494,"s2:nodata_pixel_percentage":33.275384,"s2:unclassified_percentage":0.805883,"s2:not_vegetated_percentage":0.448126,"s2:degraded_msi_data_percentage":0.1617,"s2:high_proba_clouds_percentage":14.983115,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.869514,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736","bbox":[119.169004,48.6298216,119.9045728,49.6229567],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R60m/T50UPV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R60m/T50UPV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.169004,48.6422133],[119.1869991,48.6899548],[119.2419162,48.8362346],[119.2974718,48.9824502],[119.3533039,49.128699],[119.4092168,49.2749858],[119.4656067,49.4212239],[119.5224453,49.5673876],[119.544024,49.6229567],[119.9045728,49.6162737],[119.8474785,48.6298216],[119.169004,48.6422133]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UPV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UPV_N05.11","eo:cloud_cover":28.28463,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.360298,"s2:mean_solar_zenith":30.8534709153541,"s2:mean_solar_azimuth":149.224726944608,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000436,"s2:vegetation_percentage":47.813132,"s2:thin_cirrus_percentage":0.020456,"s2:cloud_shadow_percentage":13.622352,"s2:nodata_pixel_percentage":65.792853,"s2:unclassified_percentage":0.628211,"s2:not_vegetated_percentage":9.29018,"s2:degraded_msi_data_percentage":0.0525,"s2:high_proba_clouds_percentage":17.138596,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.12558,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736","bbox":[119.5100935,49.5284183,119.9593861,50.5158587],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R60m/T50UPA_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R60m/T50UPA_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.5100935,49.5356243],[119.5224453,49.5673876],[119.5792112,49.7135705],[119.6363844,49.8596112],[119.6936125,50.0056639],[119.7510548,50.1516985],[119.8090594,50.2976236],[119.8668884,50.4436337],[119.8960822,50.5158587],[119.9593861,50.51467],[119.8993597,49.5284183],[119.5100935,49.5356243]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UPA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UPA_N05.11","eo:cloud_cover":22.555679,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.007636,"s2:mean_solar_zenith":31.6359537791406,"s2:mean_solar_azimuth":149.938004776559,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.772295,"s2:thin_cirrus_percentage":0.005205,"s2:cloud_shadow_percentage":14.883555,"s2:nodata_pixel_percentage":85.531396,"s2:unclassified_percentage":0.312989,"s2:not_vegetated_percentage":2.459519,"s2:degraded_msi_data_percentage":0.0117,"s2:high_proba_clouds_percentage":12.131319,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.419154,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736","bbox":[119.5794595,45.8957353,121.0656571,46.9235731],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R60m/T50TQS_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R60m/T50TQS_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.6264854,46.9235731],[121.0656571,46.8814597],[120.9930022,45.8957353],[119.5794595,45.9364309],[119.6264854,46.9235731]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQS_N05.11","eo:cloud_cover":27.660647,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000289,"s2:mean_solar_zenith":28.0407323538848,"s2:mean_solar_azimuth":149.157109553527,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":56.90102,"s2:thin_cirrus_percentage":0.050043,"s2:cloud_shadow_percentage":13.618906,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.215981,"s2:not_vegetated_percentage":1.600997,"s2:degraded_msi_data_percentage":0.0667,"s2:high_proba_clouds_percentage":16.988012,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.622592,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736","bbox":[119.4272955,42.3046906,120.8181237,43.326257],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R60m/T50TQN_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R60m/T50TQN_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.7739049,42.5651556],[120.7313982,42.4535302],[120.676057,42.3076801],[120.6749208,42.3046906],[119.4272955,42.3383721],[119.4662891,43.326257],[120.8181237,43.2890818],[120.7739049,42.5651556]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQN_N05.11","eo:cloud_cover":97.065979,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.004349,"s2:mean_solar_zenith":24.9974691461116,"s2:mean_solar_azimuth":145.343136428766,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":1.203796,"s2:thin_cirrus_percentage":0.286871,"s2:cloud_shadow_percentage":0.210673,"s2:nodata_pixel_percentage":0.893073,"s2:unclassified_percentage":0.388368,"s2:not_vegetated_percentage":1.126617,"s2:degraded_msi_data_percentage":0.0407,"s2:high_proba_clouds_percentage":79.418463,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":17.360643,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736","bbox":[119.361109,40.5215379,120.3744324,41.5268623],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R60m/T50TQL_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R60m/T50TQL_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.3744324,41.5008773],[120.3485427,41.4317422],[120.2947043,41.2854654],[120.240833,41.1392216],[120.187221,40.992973],[120.1342279,40.8466718],[120.0812006,40.7004455],[120.0282934,40.5542995],[120.0165344,40.5215379],[119.361109,40.5386175],[119.3967036,41.5268623],[120.3744324,41.5008773]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQL_N05.11","eo:cloud_cover":99.236029,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.015013,"s2:mean_solar_zenith":23.5228477672578,"s2:mean_solar_azimuth":143.079866845773,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.006039,"s2:thin_cirrus_percentage":5e-6,"s2:cloud_shadow_percentage":0.731515,"s2:nodata_pixel_percentage":37.700263,"s2:unclassified_percentage":0.004974,"s2:not_vegetated_percentage":0.006428,"s2:degraded_msi_data_percentage":0.1815,"s2:high_proba_clouds_percentage":96.402979,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.833042,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736","bbox":[119.3301855,39.6287972,120.0480229,40.6266494],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R60m/T50TQK_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R60m/T50TQK_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.0480229,40.6087983],[120.0282934,40.5542995],[119.9758153,40.4080915],[119.9230646,40.2620155],[119.8714404,40.1156798],[119.8513154,40.0589762],[119.819189,39.9686227],[119.7672769,39.8222937],[119.7387107,39.7415223],[119.7157065,39.6765674],[119.6988493,39.6287972],[119.3301855,39.6382276],[119.3642082,40.6266494],[120.0480229,40.6087983]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQK_N05.11","eo:cloud_cover":75.909507,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":16.082352,"s2:mean_solar_zenith":22.7998528423952,"s2:mean_solar_azimuth":141.840330969318,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000196,"s2:vegetation_percentage":4.620372,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.517618,"s2:nodata_pixel_percentage":59.397584,"s2:unclassified_percentage":1.103476,"s2:not_vegetated_percentage":1.764095,"s2:degraded_msi_data_percentage":0.2493,"s2:high_proba_clouds_percentage":69.136828,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.772681,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736","bbox":[118.2142871,42.3357822,119.5875362,43.3462],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R60m/T50TPN_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R60m/T50TPN_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.2338121,43.3462],[119.5875362,43.3235766],[119.5466306,42.3357822],[118.2142871,42.3576415],[118.2338121,43.3462]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TPN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TPN_N05.11","eo:cloud_cover":36.116058,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.106227,"s2:mean_solar_zenith":25.5386119791428,"s2:mean_solar_azimuth":143.028396117195,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000962,"s2:vegetation_percentage":37.823474,"s2:thin_cirrus_percentage":0.452646,"s2:cloud_shadow_percentage":6.894921,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.214482,"s2:not_vegetated_percentage":17.791484,"s2:degraded_msi_data_percentage":0.0557,"s2:high_proba_clouds_percentage":24.020392,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.64302,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736","bbox":[118.1987909,45.9567699,118.4342866,46.6304619],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R60m/T50TNS_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R60m/T50TNS_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.1987909,45.9581201],[118.2325341,46.0544868],[118.2834303,46.2012099],[118.3349002,46.347706],[118.3862382,46.4942726],[118.4342866,46.6304619],[118.4166561,45.9567699],[118.1987909,45.9581201]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TNS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TNS_N05.11","eo:cloud_cover":11.262465,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.830601,"s2:mean_solar_zenith":29.0507935392686,"s2:mean_solar_azimuth":144.596861136244,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":68.35593,"s2:thin_cirrus_percentage":5.509831,"s2:cloud_shadow_percentage":4.810938,"s2:nodata_pixel_percentage":95.042419,"s2:unclassified_percentage":0.336697,"s2:not_vegetated_percentage":14.377066,"s2:degraded_msi_data_percentage":0.0001,"s2:high_proba_clouds_percentage":2.567159,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.185475,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736","bbox":[117.8895777,45.0567486,118.4189041,46.0459415],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R60m/T50TNR_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R60m/T50TNR_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.8895777,45.0598289],[117.9284054,45.1743711],[117.9784136,45.3210777],[118.0286379,45.4678191],[118.0790918,45.6145875],[118.1299256,45.7612573],[118.1811913,45.9078576],[118.229542,46.0459415],[118.4189041,46.0447662],[118.3942539,45.0567486],[117.8895777,45.0598289]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TNR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TNR_N05.11","eo:cloud_cover":7.710127,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.227757,"s2:mean_solar_zenith":28.3008404942099,"s2:mean_solar_azimuth":143.720238992279,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.020385,"s2:vegetation_percentage":62.175059,"s2:thin_cirrus_percentage":0.104868,"s2:cloud_shadow_percentage":5.627007,"s2:nodata_pixel_percentage":75.651205,"s2:unclassified_percentage":0.755714,"s2:not_vegetated_percentage":22.477517,"s2:degraded_msi_data_percentage":0.001,"s2:high_proba_clouds_percentage":3.633779,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.971479,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736","bbox":[117.5889028,44.1571166,118.3964112,45.1482147],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R60m/T50TNQ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R60m/T50TNQ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.5889028,44.1618268],[117.6325885,44.2939196],[117.681421,44.4407804],[117.7306125,44.5875027],[117.7798669,44.7342142],[117.8291308,44.8809633],[117.8786777,45.0276736],[117.9195388,45.1482147],[118.3964112,45.1452997],[118.372894,44.1571166],[117.5889028,44.1618268]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TNQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TNQ_N05.11","eo:cloud_cover":23.080322,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0417,"s2:mean_solar_zenith":27.5586205163193,"s2:mean_solar_azimuth":142.794105299252,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.57253,"s2:thin_cirrus_percentage":2.204978,"s2:cloud_shadow_percentage":8.319222,"s2:nodata_pixel_percentage":54.831058,"s2:unclassified_percentage":0.561122,"s2:not_vegetated_percentage":8.392074,"s2:degraded_msi_data_percentage":0.0172,"s2:high_proba_clouds_percentage":12.556584,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.31876,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736","bbox":[116.7218325,41.4618364,117.1186942,42.4526297],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R60m/T50TMM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R60m/T50TMM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.7218325,41.4618364],[116.7342955,41.5018647],[116.7799969,41.6489077],[116.8264115,41.795836],[116.8730517,41.9427994],[116.9188569,42.0900523],[116.965478,42.2370827],[117.0122762,42.3841243],[117.0340859,42.4522246],[117.1186942,42.4526297],[117.1168731,41.4636925],[116.7218325,41.4618364]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TMM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TMM_N05.11","eo:cloud_cover":13.409732,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.037201,"s2:mean_solar_zenith":25.9700458856941,"s2:mean_solar_azimuth":137.491697498845,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":78.346264,"s2:thin_cirrus_percentage":0.000019,"s2:cloud_shadow_percentage":1.496124,"s2:nodata_pixel_percentage":82.224864,"s2:unclassified_percentage":0.696433,"s2:not_vegetated_percentage":5.929337,"s2:degraded_msi_data_percentage":0.0003,"s2:high_proba_clouds_percentage":6.646004,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.763709,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736","bbox":[116.4430791,40.55959,117.1170316,41.5517851],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R60m/T50TML_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R60m/T50TML_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.4430791,40.55959],[116.4611705,40.6197993],[116.5059286,40.7670862],[116.5513424,40.9141132],[116.5979323,41.0607592],[116.6417932,41.2082121],[116.6885271,41.354867],[116.7342955,41.5018647],[116.7492729,41.5500542],[117.1170316,41.5517851],[117.1152916,40.5626924],[116.4430791,40.55959]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TML","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TML_N05.11","eo:cloud_cover":1.470486,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.085095,"s2:mean_solar_zenith":25.2769763879235,"s2:mean_solar_azimuth":136.332294279426,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":95.43981,"s2:thin_cirrus_percentage":0.000202,"s2:cloud_shadow_percentage":0.891395,"s2:nodata_pixel_percentage":60.542274,"s2:unclassified_percentage":0.097371,"s2:not_vegetated_percentage":1.950037,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.67822,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.792064,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736","bbox":[119.3006375,38.7360413,119.7299013,39.7268153],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R60m/T50SQJ_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R60m/T50SQJ_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.7299013,39.7166481],[119.7157065,39.6765674],[119.6640093,39.5300675],[119.6124705,39.3835187],[119.5611444,39.2369834],[119.5100199,39.0904785],[119.4591559,38.9439878],[119.4085484,38.797521],[119.3874031,38.7360413],[119.3006375,38.7382186],[119.3331665,39.7268153],[119.7299013,39.7166481]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SQJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SQJ_N05.11","eo:cloud_cover":20.921469,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":78.946793,"s2:mean_solar_zenith":22.0883445369773,"s2:mean_solar_azimuth":140.521557816201,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.017688,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.01604,"s2:nodata_pixel_percentage":81.280202,"s2:unclassified_percentage":0.003864,"s2:not_vegetated_percentage":0.094148,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":11.769027,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.152442,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736","bbox":[119.2918736,38.4576552,119.4174953,38.8262817],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R60m/T50SQH_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R60m/T50SQH_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.4174953,38.8234148],[119.4085484,38.797521],[119.3581734,38.651056],[119.307937,38.5046006],[119.2918736,38.4576552],[119.3034704,38.8262817],[119.4174953,38.8234148]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SQH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SQH_N05.11","eo:cloud_cover":47.70222,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":52.205902,"s2:mean_solar_zenith":21.3885780137229,"s2:mean_solar_azimuth":139.115402045806,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.4038,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.091874,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":18.943036,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.759184,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736","bbox":[118.1508722,38.7363369,119.447885,39.7443999],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R60m/T50SPJ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R60m/T50SPJ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.4167008,38.8211153],[119.4085484,38.797521],[119.3875048,38.7363369],[118.1508722,38.7551983],[118.167158,39.7443999],[119.447885,39.7244518],[119.4167008,38.8211153]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SPJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SPJ_N05.11","eo:cloud_cover":20.222032,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":39.885443,"s2:mean_solar_zenith":22.6840681044289,"s2:mean_solar_azimuth":138.199942169003,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":22.857326,"s2:thin_cirrus_percentage":0.000242,"s2:cloud_shadow_percentage":1.767036,"s2:nodata_pixel_percentage":0.111814,"s2:unclassified_percentage":2.368912,"s2:not_vegetated_percentage":12.879643,"s2:degraded_msi_data_percentage":0.0202,"s2:high_proba_clouds_percentage":11.702741,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.519049,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736","bbox":[118.1102397,36.0461721,118.8109879,37.041254],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R60m/T50SPF_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R60m/T50SPF_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.8109879,37.0311754],[118.76475,36.8915401],[118.7163983,36.7449153],[118.6679767,36.5983507],[118.6198789,36.4517246],[118.5720684,36.3049556],[118.5236848,36.1582592],[118.4874197,36.0461721],[118.1102397,36.0515828],[118.1244855,37.041254],[118.8109879,37.0311754]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SPF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SPF_N05.11","eo:cloud_cover":36.983517,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.265535,"s2:mean_solar_zenith":20.6750215960592,"s2:mean_solar_azimuth":133.711979389783,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":34.599906,"s2:thin_cirrus_percentage":6.869698,"s2:cloud_shadow_percentage":12.036689,"s2:nodata_pixel_percentage":56.897491,"s2:unclassified_percentage":0.989636,"s2:not_vegetated_percentage":15.108298,"s2:degraded_msi_data_percentage":0.0491,"s2:high_proba_clouds_percentage":16.961607,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.15221,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736","bbox":[118.0934106,34.8104737,118.228127,35.2380875],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R60m/T50SPD_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R60m/T50SPD_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.228127,35.2362718],[118.1941734,35.1294626],[118.1475869,34.9825917],[118.1013403,34.8357003],[118.0934106,34.8104737],[118.0990408,35.2380875],[118.228127,35.2362718]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SPD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SPD_N05.11","eo:cloud_cover":26.308063,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.43517,"s2:mean_solar_zenith":19.4188388313226,"s2:mean_solar_azimuth":130.20887712026,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":46.315238,"s2:thin_cirrus_percentage":22.232413,"s2:cloud_shadow_percentage":0.66529,"s2:nodata_pixel_percentage":97.789735,"s2:unclassified_percentage":0.501519,"s2:not_vegetated_percentage":25.741094,"s2:degraded_msi_data_percentage":0.0255,"s2:high_proba_clouds_percentage":0.583179,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.49247,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736","bbox":[116.9997724,36.9514795,118.2493543,37.9475896],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R60m/T50SNG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R60m/T50SNG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.9997724,37.9475896],[118.2493543,37.9409562],[118.2330052,36.9514795],[116.9997753,36.9578811],[116.9997724,37.9475896]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SNG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SNG_N05.11","eo:cloud_cover":47.13845,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.602669,"s2:mean_solar_zenith":21.9739264966328,"s2:mean_solar_azimuth":133.083464061664,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":31.315121,"s2:thin_cirrus_percentage":16.231024,"s2:cloud_shadow_percentage":9.945966,"s2:nodata_pixel_percentage":3e-6,"s2:unclassified_percentage":0.741862,"s2:not_vegetated_percentage":10.248818,"s2:degraded_msi_data_percentage":0.0126,"s2:high_proba_clouds_percentage":16.119608,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.787817,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736","bbox":[116.9997848,32.4474308,117.666375,33.4395751],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R60m/T50SNB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R60m/T50SNB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.666375,33.4364017],[117.6444503,33.3648472],[117.5995079,33.2177733],[117.5546741,33.0707217],[117.5099751,32.9236622],[117.4653549,32.7765144],[117.4207487,32.6292944],[117.3764334,32.4819554],[117.3660533,32.4474308],[116.9997872,32.4491288],[116.9997848,33.4395751],[117.666375,33.4364017]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SNB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SNB_N05.11","eo:cloud_cover":39.729539,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.83291,"s2:mean_solar_zenith":18.9771520751009,"s2:mean_solar_azimuth":124.161536284537,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":32.208225,"s2:thin_cirrus_percentage":6.435398,"s2:cloud_shadow_percentage":1.07809,"s2:nodata_pixel_percentage":56.314051,"s2:unclassified_percentage":1.244856,"s2:not_vegetated_percentage":23.90082,"s2:degraded_msi_data_percentage":0.035,"s2:high_proba_clouds_percentage":18.052907,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.241231,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736","bbox":[116.999787,32.2482444,117.3925471,32.5373552],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R60m/T50SNA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R60m/T50SNA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.3925471,32.53553],[117.3764334,32.4819554],[117.332138,32.3346271],[117.3062352,32.2482444],[117.2528013,32.2622692],[117.0461187,32.3166646],[117.046091,32.3165716],[117.0459935,32.3165973],[117.0454263,32.3146922],[116.9997875,32.3257877],[116.999787,32.5373552],[117.3925471,32.53553]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SNA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SNA_N05.11","eo:cloud_cover":26.832655,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.541355,"s2:mean_solar_zenith":18.4456314194497,"s2:mean_solar_azimuth":122.033562227785,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":39.458776,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":92.377031,"s2:unclassified_percentage":0.998794,"s2:not_vegetated_percentage":32.1652,"s2:degraded_msi_data_percentage":0.0012,"s2:high_proba_clouds_percentage":14.997889,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.834764,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736","bbox":[115.9013317,38.7554279,117.1139256,39.750212],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R60m/T50SMJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R60m/T50SMJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.9013317,38.7554279],[115.9301224,38.8532881],[115.9736448,39.0005998],[116.0172137,39.1478543],[116.0608096,39.2950671],[116.1044794,39.4422733],[116.1483299,39.5894922],[116.1923701,39.736696],[116.195178,39.7460419],[117.1139256,39.750212],[117.1123356,38.7608105],[115.9013317,38.7554279]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMJ_N05.11","eo:cloud_cover":1.14024,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.138078,"s2:mean_solar_zenith":23.927685575955,"s2:mean_solar_azimuth":133.801367476993,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":65.048999,"s2:thin_cirrus_percentage":1.021053,"s2:cloud_shadow_percentage":0.014508,"s2:nodata_pixel_percentage":16.666119,"s2:unclassified_percentage":0.792223,"s2:not_vegetated_percentage":31.795236,"s2:degraded_msi_data_percentage":0.016,"s2:high_proba_clouds_percentage":0.009149,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.110037,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736","bbox":[115.8614709,36.9525649,117.111086,37.9475371],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R60m/T50SMG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R60m/T50SMG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.8614709,37.9420809],[117.111086,37.9475371],[117.1096319,36.9578305],[115.8763705,36.9525649],[115.8614709,37.9420809]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMG_N05.11","eo:cloud_cover":41.186291,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.053991,"s2:mean_solar_zenith":22.6340813175253,"s2:mean_solar_azimuth":130.954784605596,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.987856,"s2:thin_cirrus_percentage":9.839559,"s2:cloud_shadow_percentage":11.77372,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.437062,"s2:not_vegetated_percentage":9.555632,"s2:degraded_msi_data_percentage":0.0298,"s2:high_proba_clouds_percentage":16.522081,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.824648,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736","bbox":[115.8750647,36.0515787,117.1097593,37.0465323],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R60m/T50SMF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R60m/T50SMF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.8750647,37.0412498],[117.1097593,37.0465323],[117.1083685,36.056675],[115.8893163,36.0515787],[115.8750647,37.0412498]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMF_N05.11","eo:cloud_cover":46.413097,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.336628,"s2:mean_solar_zenith":22.0119019990082,"s2:mean_solar_azimuth":129.402097516376,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.597174,"s2:thin_cirrus_percentage":15.03856,"s2:cloud_shadow_percentage":4.154141,"s2:nodata_pixel_percentage":7e-6,"s2:unclassified_percentage":0.695393,"s2:not_vegetated_percentage":11.786846,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":13.983063,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":17.391473,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736","bbox":[115.8880749,35.1499121,117.1084896,36.1448493],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R60m/T50SME_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R60m/T50SME_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.8880749,36.1397366],[117.1084896,36.1448493],[117.1071592,35.1548426],[115.9017071,35.1499121],[115.8880749,36.1397366]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SME","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SME_N05.11","eo:cloud_cover":58.306003,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.369206,"s2:mean_solar_zenith":21.4074804479542,"s2:mean_solar_azimuth":127.754859134037,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":28.753677,"s2:thin_cirrus_percentage":21.736342,"s2:cloud_shadow_percentage":0.966457,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.66243,"s2:not_vegetated_percentage":10.925531,"s2:degraded_msi_data_percentage":0.0143,"s2:high_proba_clouds_percentage":14.595555,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.974111,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736","bbox":[115.9005196,34.2481073,117.1072751,35.2430302],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R60m/T50SMD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R60m/T50SMD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.9005196,35.2380835],[117.1072751,35.2430302],[117.1060025,34.2528758],[115.9135595,34.2481073],[115.9005196,35.2380835]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMD_N05.11","eo:cloud_cover":90.309763,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.518857,"s2:mean_solar_zenith":20.8227995236326,"s2:mean_solar_azimuth":126.009053551506,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":4.199996,"s2:thin_cirrus_percentage":14.53747,"s2:cloud_shadow_percentage":1.179472,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.02645,"s2:not_vegetated_percentage":3.765067,"s2:degraded_msi_data_percentage":0.0033,"s2:high_proba_clouds_percentage":37.807155,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":37.96514,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736","bbox":[116.1145798,32.3015168,117.1039399,32.5373123],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R60m/T50SMA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R60m/T50SMA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.1036749,32.3015168],[117.0461187,32.3166646],[117.046091,32.3165716],[117.0459935,32.3165973],[117.0454263,32.3146922],[116.7782206,32.3796543],[116.778231,32.3796895],[116.7781318,32.3797131],[116.7781616,32.3798144],[116.7781075,32.3798273],[116.7781694,32.3800382],[116.7781547,32.3800417],[116.7784096,32.3809087],[116.7781299,32.3809753],[116.778211,32.381251],[116.7781507,32.3812654],[116.7782918,32.3817456],[116.5535674,32.4356065],[116.5437143,32.437978],[116.5431121,32.4359135],[116.2813242,32.4947713],[116.2816815,32.496011],[116.2815423,32.4960413],[116.2818084,32.4969648],[116.2814579,32.4970413],[116.2814761,32.4971044],[116.1145798,32.5335306],[117.1039399,32.5373123],[117.1036749,32.3015168]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMA_N05.11","eo:cloud_cover":14.862227,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":3.917596,"s2:mean_solar_zenith":19.2058256898959,"s2:mean_solar_azimuth":120.135148203205,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":61.090124,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.531518,"s2:nodata_pixel_percentage":89.938831,"s2:unclassified_percentage":0.804895,"s2:not_vegetated_percentage":18.791266,"s2:degraded_msi_data_percentage":0.0359,"s2:high_proba_clouds_percentage":6.904262,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":7.957965,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736","bbox":[115.63759,37.8502561,115.9746634,38.8443739],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R60m/T50SLH_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R60m/T50SLH_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.63759,37.8502561],[115.671881,37.9689406],[115.7145596,38.1162715],[115.7574188,38.2636455],[115.8004173,38.411074],[115.8435289,38.5584864],[115.8867567,38.7058869],[115.9273598,38.8438979],[115.9606157,38.8443739],[115.9746634,37.8549777],[115.63759,37.8502561]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLH_N05.11","eo:cloud_cover":38.279384,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.115262,"s2:mean_solar_zenith":23.932092986659,"s2:mean_solar_azimuth":130.356473489181,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":35.349339,"s2:thin_cirrus_percentage":5.769221,"s2:cloud_shadow_percentage":8.881476,"s2:nodata_pixel_percentage":85.593003,"s2:unclassified_percentage":0.588054,"s2:not_vegetated_percentage":16.765666,"s2:degraded_msi_data_percentage":0.0303,"s2:high_proba_clouds_percentage":19.331181,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.178983,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736","bbox":[115.3785214,36.9452099,115.9868749,37.9431112],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R60m/T50SLG_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R60m/T50SLG_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.3785214,36.9452099],[115.4182056,37.0847685],[115.4602395,37.2322337],[115.5023433,37.3796156],[115.5445309,37.526943],[115.586851,37.6742695],[115.6293078,37.8215905],[115.66316,37.9387564],[115.9734399,37.9431112],[115.9868749,36.9535591],[115.3785214,36.9452099]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLG_N05.11","eo:cloud_cover":36.07443,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.366998,"s2:mean_solar_zenith":23.3079127743644,"s2:mean_solar_azimuth":128.912664618134,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":42.052454,"s2:thin_cirrus_percentage":9.59694,"s2:cloud_shadow_percentage":8.664303,"s2:nodata_pixel_percentage":63.342643,"s2:unclassified_percentage":0.446737,"s2:not_vegetated_percentage":12.388815,"s2:degraded_msi_data_percentage":0.0098,"s2:high_proba_clouds_percentage":13.623509,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":12.853979,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736","bbox":[115.1241092,36.0407906,115.998548,37.0422472],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R60m/T50SLF_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R60m/T50SLF_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.1241092,36.0407906],[115.1272005,36.0518786],[115.168395,36.1994042],[115.2097009,36.3469466],[115.2511476,36.4945241],[115.2927244,36.6421295],[115.3344184,36.7896865],[115.3762581,36.9372503],[115.4038391,37.0342453],[115.9856975,37.0422472],[115.998548,36.052541],[115.1241092,36.0407906]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLF_N05.11","eo:cloud_cover":54.964435,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.055954,"s2:mean_solar_zenith":22.7011208309229,"s2:mean_solar_azimuth":127.38554131012,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":23.944311,"s2:thin_cirrus_percentage":18.65389,"s2:cloud_shadow_percentage":4.03236,"s2:nodata_pixel_percentage":40.977442,"s2:unclassified_percentage":1.742189,"s2:not_vegetated_percentage":15.259357,"s2:degraded_msi_data_percentage":0.0036,"s2:high_proba_clouds_percentage":14.528267,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.782278,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736","bbox":[114.8735561,35.1359055,116.0097208,36.140702],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R60m/T50SLE_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R60m/T50SLE_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.8735561,35.1359055],[114.8819738,35.1665639],[114.9226016,35.3142249],[114.9632854,35.461833],[115.004088,35.6093671],[115.0450297,35.7568681],[115.0860717,35.9043527],[115.1272005,36.0518786],[115.1488123,36.1292747],[115.9974287,36.140702],[116.0097208,35.1508431],[114.8735561,35.1359055]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLE_N05.11","eo:cloud_cover":61.273545,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.115494,"s2:mean_solar_zenith":22.112424509398,"s2:mean_solar_azimuth":125.769073487741,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":21.663535,"s2:thin_cirrus_percentage":21.789815,"s2:cloud_shadow_percentage":2.258105,"s2:nodata_pixel_percentage":18.485914,"s2:unclassified_percentage":0.487194,"s2:not_vegetated_percentage":14.201862,"s2:degraded_msi_data_percentage":0.0151,"s2:high_proba_clouds_percentage":18.484378,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":20.999353,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736","bbox":[114.8107801,34.2336874,116.020408,35.2390176],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R60m/T50SLD_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R60m/T50SLD_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.8107801,34.9069749],[114.8414251,35.0188806],[114.8819738,35.1665639],[114.8978821,35.2243822],[116.00865,35.2390176],[116.020408,34.2490077],[114.8285025,34.2336874],[114.8107801,34.9069749]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLD_N05.11","eo:cloud_cover":78.448844,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.034417,"s2:mean_solar_zenith":21.5437499415022,"s2:mean_solar_azimuth":124.060060209001,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":16.212113,"s2:thin_cirrus_percentage":15.942572,"s2:cloud_shadow_percentage":0.25766,"s2:nodata_pixel_percentage":1.390798,"s2:unclassified_percentage":0.02907,"s2:not_vegetated_percentage":5.016909,"s2:degraded_msi_data_percentage":0.0217,"s2:high_proba_clouds_percentage":37.523243,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":24.983029,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736","bbox":[114.8489629,32.548068,116.0392875,33.4357788],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R60m/T50SLB_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R60m/T50SLB_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.0392875,32.548068],[115.7887615,32.599859],[115.7889327,32.6004646],[115.7889023,32.6004706],[115.7891664,32.6014053],[115.7889536,32.6014471],[115.7889979,32.6016034],[115.7889594,32.6016109],[115.7890053,32.6017728],[115.5566318,32.6474306],[115.5560434,32.6453339],[115.2930914,32.6951129],[115.2937843,32.697615],[115.0578661,32.7390137],[115.0578174,32.7388361],[115.0566854,32.739034],[115.0561579,32.7371155],[114.8646338,32.7699863],[114.8489629,33.4209188],[116.0296449,33.4357788],[116.0392875,32.548068]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLB_N05.11","eo:cloud_cover":22.575794,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.203345,"s2:mean_solar_zenith":20.4735728391914,"s2:mean_solar_azimuth":120.350540525566,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":47.479817,"s2:thin_cirrus_percentage":0.78185,"s2:cloud_shadow_percentage":6.80596,"s2:nodata_pixel_percentage":22.615021,"s2:unclassified_percentage":1.604452,"s2:not_vegetated_percentage":21.323994,"s2:degraded_msi_data_percentage":0.0201,"s2:high_proba_clouds_percentage":9.574964,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":12.21898,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736","bbox":[114.6260528,34.2288219,114.9346265,35.2250277],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R60m/T50SKD_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R60m/T50SKD_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.6260528,34.2288219],[114.6400448,34.28055],[114.6801328,34.4281839],[114.7203285,34.5758146],[114.7606131,34.7235075],[114.8009815,34.8711936],[114.8414251,35.0188806],[114.8819738,35.1665639],[114.897987,35.2247636],[114.9098528,35.2250277],[114.9346265,34.2355216],[114.6260528,34.2288219]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SKD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SKD_N05.11","eo:cloud_cover":43.614638,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":22.2761367578294,"s2:mean_solar_azimuth":122.199905893594,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":48.51774,"s2:thin_cirrus_percentage":19.065133,"s2:cloud_shadow_percentage":0.279661,"s2:nodata_pixel_percentage":86.968803,"s2:unclassified_percentage":0.038013,"s2:not_vegetated_percentage":7.548423,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":8.437844,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":16.11166,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736","bbox":[114.3823884,33.3223707,114.9561528,34.3242059],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R60m/T50SKC_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R60m/T50SKC_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.3823884,33.3223707],[114.4016363,33.394506],[114.4411648,33.5422871],[114.4807933,33.6900103],[114.5205076,33.8376791],[114.5602767,33.9852886],[114.6001102,34.1329128],[114.6400448,34.28055],[114.6502313,34.3180644],[114.9324553,34.3242059],[114.9561528,33.3345403],[114.3823884,33.3223707]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SKC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SKC_N05.11","eo:cloud_cover":11.416361,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.145795,"s2:mean_solar_zenith":21.7449250375714,"s2:mean_solar_azimuth":120.441765877917,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":61.459398,"s2:thin_cirrus_percentage":1.473696,"s2:cloud_shadow_percentage":3.381855,"s2:nodata_pixel_percentage":64.255857,"s2:unclassified_percentage":1.099615,"s2:not_vegetated_percentage":22.484984,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":3.599652,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.343013,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736","bbox":[114.2607634,32.7519975,114.9694467,33.4226979],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R60m/T50SKB_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R60m/T50SKB_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.9694467,32.7519975],[114.7866736,32.7833664],[114.7873809,32.7859752],[114.7868224,32.7860614],[114.7868867,32.7862979],[114.5420852,32.8238584],[114.5415941,32.8220329],[114.2607634,32.8652053],[114.2835294,32.9510485],[114.3228282,33.0988814],[114.362195,33.2466921],[114.4016363,33.394506],[114.4060608,33.4110471],[114.9540887,33.4226979],[114.9694467,32.7519975]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SKB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SKB_N05.11","eo:cloud_cover":22.665247,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.044582,"s2:mean_solar_zenith":21.2368714393912,"s2:mean_solar_azimuth":118.590050519461,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":43.758434,"s2:thin_cirrus_percentage":0.316356,"s2:cloud_shadow_percentage":6.892233,"s2:nodata_pixel_percentage":67.121089,"s2:unclassified_percentage":1.238217,"s2:not_vegetated_percentage":25.397611,"s2:degraded_msi_data_percentage":0.0001,"s2:high_proba_clouds_percentage":9.031008,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.317885,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317","bbox":[156.1138782,71.0946572,157.4042726,71.8926319],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R60m/T57WVV_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R60m/T57WVV_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.1138782,71.8926319],[156.1865749,71.8773005],[156.1873346,71.8776742],[156.1876319,71.8776116],[156.1876651,71.8776279],[156.188117,71.877533],[156.1900524,71.8784839],[156.8140604,71.7434156],[156.8138246,71.7433015],[156.8144989,71.7431445],[156.8104562,71.7411889],[157.1727301,71.6575571],[157.4042726,71.6037897],[157.1415077,71.4783743],[156.8815306,71.3524484],[156.6249589,71.2261815],[156.3719088,71.0996042],[156.3638923,71.0955339],[156.2327264,71.0946572],[156.1138782,71.8926319]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57WVV","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T57WVV_N05.11","eo:cloud_cover":0.808194,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":99.191809,"s2:mean_solar_zenith":50.6476398763521,"s2:mean_solar_azimuth":189.674210386958,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.807331,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":82.696778,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0252,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.000863,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317","bbox":[152.9994042,71.9896812,155.6536986,72.4824862],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R60m/T56XNF_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R60m/T56XNF_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[152.9994042,72.4824862],[153.2193985,72.4460466],[153.2161141,72.4442957],[153.2179226,72.4439833],[153.2172622,72.443631],[153.7972632,72.3435368],[153.8006367,72.3453062],[153.8006751,72.3452996],[153.8010871,72.3455156],[154.444778,72.2286253],[154.4440394,72.2282447],[154.4441165,72.22823],[154.4413735,72.2268181],[154.4427393,72.2265573],[154.4425015,72.2264349],[155.0043533,72.1190371],[155.0047979,72.1192626],[155.0048938,72.1192443],[155.0075676,72.1205995],[155.1169701,72.0988713],[155.6369063,71.9954883],[155.6368743,71.9954724],[155.6372575,71.9953915],[155.6342712,71.9939029],[155.6352357,71.9937003],[155.635059,71.9936122],[155.6536986,71.9896812],[152.9994198,72.0113634],[152.9994042,72.4824862]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNF","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56XNF_N05.11","eo:cloud_cover":96.588451,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":3.411547,"s2:mean_solar_zenith":51.4036388492559,"s2:mean_solar_azimuth":185.856579772221,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.549547,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":79.889983,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.006,"s2:high_proba_clouds_percentage":93.191421,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.847482,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317","bbox":[149.9444535,71.989773,153.2899112,72.9336541],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R60m/T56XMF_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R60m/T56XMF_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.9444535,72.9336541],[150.5960508,72.8460045],[150.5930046,72.8442415],[150.5960489,72.8438183],[150.5954453,72.8434687],[151.0566301,72.779791],[151.2382524,72.7545429],[151.2384947,72.7546802],[151.2395613,72.7545329],[151.2427866,72.7563617],[151.5095988,72.7163929],[151.9434834,72.6512482],[151.9408115,72.6497676],[151.9427225,72.6494703],[151.9424003,72.6492914],[151.9427767,72.649233],[151.942188,72.6489065],[152.5493995,72.5547733],[152.5525707,72.556499],[153.2193985,72.4460466],[153.2161141,72.4442957],[153.2179226,72.4439833],[153.2172622,72.443631],[153.2899112,72.4310936],[153.2831475,72.0111578],[150.1000757,71.989773],[149.9444535,72.9336541]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMF","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56XMF_N05.11","eo:cloud_cover":36.172736,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":63.827264,"s2:mean_solar_zenith":51.3424657006491,"s2:mean_solar_azimuth":182.33412651875,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":2.19706,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":30.161938,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0208,"s2:high_proba_clouds_percentage":27.641454,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":6.334222,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317","bbox":[155.7661688,71.0815674,157.4042726,71.9394383],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R60m/T56WPE_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R60m/T56WPE_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[155.8919355,71.9394383],[156.1865749,71.8773005],[156.1873346,71.8776742],[156.1876319,71.8776116],[156.1876651,71.8776279],[156.188117,71.877533],[156.1900524,71.8784839],[156.8140604,71.7434156],[156.8138246,71.7433015],[156.8144989,71.7431445],[156.8104562,71.7411889],[157.1727301,71.6575571],[157.4042726,71.6037897],[157.1415077,71.4783743],[156.8815306,71.3524484],[156.6249589,71.2261815],[156.3719088,71.0996042],[156.3363851,71.0815674],[155.7661688,71.0946736],[155.8919355,71.9394383]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WPE","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WPE_N05.11","eo:cloud_cover":6.615165,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":50.099075,"s2:mean_solar_zenith":50.5852245554377,"s2:mean_solar_azimuth":189.292703639737,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":43.285748,"s2:vegetation_percentage":0.000012,"s2:thin_cirrus_percentage":6.175373,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":73.227441,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0264,"s2:high_proba_clouds_percentage":0.000012,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.439779,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317","bbox":[155.7222819,70.7655909,156.503808,71.1822592],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R60m/T56WPD_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R60m/T56WPD_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.503808,71.1655811],[156.3719088,71.0996042],[156.1220054,70.9727179],[155.8751998,70.845503],[155.7222819,70.7655909],[155.7785751,71.1822592],[156.503808,71.1655811]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WPD","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WPD_N05.11","eo:cloud_cover":35.880098,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":32.543823,"s2:mean_solar_zenith":49.6953014001368,"s2:mean_solar_azimuth":189.242109828946,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000264,"s2:vegetation_percentage":19.556281,"s2:thin_cirrus_percentage":33.529049,"s2:cloud_shadow_percentage":0.14037,"s2:nodata_pixel_percentage":94.972533,"s2:unclassified_percentage":0.985492,"s2:not_vegetated_percentage":10.893675,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.128425,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.222621,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317","bbox":[152.9994439,70.2047216,156.049855,71.2028426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R60m/T56WND_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R60m/T56WND_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.0109186,70.9154587],[155.8751998,70.845503],[155.6311487,70.7179664],[155.3897268,70.5901472],[155.1510019,70.4620067],[154.9150514,70.3335674],[154.6821372,70.2048519],[154.6819046,70.2047216],[152.9994705,70.2183208],[152.9994439,71.2028426],[156.049855,71.1780394],[156.0109186,70.9154587]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WND","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WND_N05.11","eo:cloud_cover":56.856114,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":15.574054,"s2:mean_solar_zenith":49.6197441185099,"s2:mean_solar_azimuth":185.964816080689,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000039,"s2:vegetation_percentage":18.447578,"s2:thin_cirrus_percentage":41.570169,"s2:cloud_shadow_percentage":1.502586,"s2:nodata_pixel_percentage":15.417919,"s2:unclassified_percentage":0.599417,"s2:not_vegetated_percentage":7.02021,"s2:degraded_msi_data_percentage":0.0181,"s2:high_proba_clouds_percentage":2.51416,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":12.771785,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317","bbox":[152.9994682,69.3200417,154.8382891,70.3060175],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R60m/T56WNC_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R60m/T56WNC_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[154.8382891,70.2911462],[154.6821372,70.2048519],[154.4520274,70.0759117],[154.2522737,69.9620968],[154.2308369,69.9499096],[154.2270893,69.9477473],[154.2251344,69.9466335],[154.1821007,69.9217891],[154.0063688,69.8203926],[153.9848081,69.8077666],[153.7789296,69.6873514],[153.5598436,69.5573057],[153.3434392,69.4270398],[153.1680828,69.3200417],[152.9994925,69.3213967],[152.9994682,70.3060175],[154.8382891,70.2911462]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WNC","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WNC_N05.11","eo:cloud_cover":28.974444,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":6.244714,"s2:mean_solar_zenith":48.727798516941,"s2:mean_solar_azimuth":186.035519925034,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.007582,"s2:vegetation_percentage":61.014575,"s2:thin_cirrus_percentage":24.466808,"s2:cloud_shadow_percentage":0.602819,"s2:nodata_pixel_percentage":65.473133,"s2:unclassified_percentage":0.150109,"s2:not_vegetated_percentage":3.005756,"s2:degraded_msi_data_percentage":0.0246,"s2:high_proba_clouds_percentage":1.617663,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.889972,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317","bbox":[152.9994904,69.2161524,153.3108208,69.4096405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R60m/T56WNB_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R60m/T56WNB_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.3108208,69.4071369],[153.1295349,69.2965207],[152.9994948,69.2161524],[152.9994904,69.4096405],[153.3108208,69.4071369]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WNB","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WNB_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":16.187942,"s2:mean_solar_zenith":47.8365840469843,"s2:mean_solar_azimuth":186.116465845849,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":79.936624,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.936272,"s2:unclassified_percentage":0.015907,"s2:not_vegetated_percentage":3.85953,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317","bbox":[150.2203151,70.1988218,153.2713887,71.2026464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R60m/T56WMD_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R60m/T56WMD_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.2203151,71.1822428],[153.2713887,71.2026464],[153.258393,70.2181351],[150.3532315,70.1988218],[150.2203151,71.1822428]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WMD","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WMD_N05.11","eo:cloud_cover":30.180329,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":22.282319,"s2:mean_solar_zenith":49.5549166581445,"s2:mean_solar_azimuth":182.67867868366,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001221,"s2:vegetation_percentage":34.504521,"s2:thin_cirrus_percentage":23.401777,"s2:cloud_shadow_percentage":3.834599,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.141184,"s2:not_vegetated_percentage":9.055829,"s2:degraded_msi_data_percentage":0.0119,"s2:high_proba_clouds_percentage":2.924363,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":3.854188,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317","bbox":[150.5541183,67.6415161,151.8870665,68.5035751],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R60m/T56WMA_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R60m/T56WMA_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[151.8870665,68.5035751],[151.6963116,68.3760551],[151.501133,68.2436697],[151.3306669,68.1266474],[151.3128158,68.1144175],[151.3098001,68.1123227],[151.3080017,68.1110881],[151.11682,67.9783099],[150.9277644,67.8453157],[150.7405053,67.7122238],[150.6423828,67.6415161],[150.5541183,68.494811],[151.8870665,68.5035751]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WMA","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WMA_N05.11","eo:cloud_cover":0.260707,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":23.086421,"s2:mean_solar_zenith":46.8742524507715,"s2:mean_solar_azimuth":183.187959173324,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":75.189161,"s2:thin_cirrus_percentage":0.260707,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":78.507793,"s2:unclassified_percentage":0.000123,"s2:not_vegetated_percentage":1.463589,"s2:degraded_msi_data_percentage":0.0257,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317","bbox":[149.8987666,71.9166252,153.2446805,72.9191954],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R60m/T55XFA_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R60m/T55XFA_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.051941,72.9191954],[150.5960508,72.8460045],[150.5930046,72.8442415],[150.5960489,72.8438183],[150.5954453,72.8434687],[151.0566301,72.779791],[151.2382524,72.7545429],[151.2384947,72.7546802],[151.2395613,72.7545329],[151.2427866,72.7563617],[151.5095988,72.7163929],[151.9434834,72.6512482],[151.9408115,72.6497676],[151.9427225,72.6494703],[151.9424003,72.6492914],[151.9427767,72.649233],[151.942188,72.6489065],[152.5493995,72.5547733],[152.5525707,72.556499],[153.2193985,72.4460466],[153.2161141,72.4442957],[153.2179226,72.4439833],[153.2172622,72.443631],[153.2446805,72.4388993],[153.0648961,71.9166252],[149.8987666,71.9897902],[150.051941,72.9191954]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XFA","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55XFA_N05.11","eo:cloud_cover":32.868475,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":39.013121,"s2:mean_solar_zenith":51.2931417795957,"s2:mean_solar_azimuth":182.281583054438,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":28.06398,"s2:vegetation_percentage":0.014809,"s2:thin_cirrus_percentage":6.119839,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":25.548658,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.039622,"s2:degraded_msi_data_percentage":0.0206,"s2:high_proba_clouds_percentage":18.249761,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":8.498877,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317","bbox":[148.3295008,71.9853678,150.3435503,72.9465808],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R60m/T55XEA_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R60m/T55XEA_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.3295008,72.0004983],[148.3331336,72.0028979],[148.5412191,72.138423],[148.7520334,72.2737263],[148.9654906,72.408815],[149.1815603,72.5436977],[149.4007946,72.6783585],[149.6231885,72.812805],[149.8483552,72.9465808],[150.3435503,72.8799696],[150.181736,71.9853678],[148.3295008,72.0004983]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEA","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55XEA_N05.11","eo:cloud_cover":0.165311,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":78.549856,"s2:mean_solar_zenith":51.3316846054059,"s2:mean_solar_azimuth":178.758447433788,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":6.250601,"s2:vegetation_percentage":9.62053,"s2:thin_cirrus_percentage":0.079091,"s2:cloud_shadow_percentage":0.125453,"s2:nodata_pixel_percentage":65.46303,"s2:unclassified_percentage":0.00707,"s2:not_vegetated_percentage":5.281178,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.022864,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.063356,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317","bbox":[149.7661688,71.0251958,153.093564,72.0778947],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R60m/T55WFV_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R60m/T55WFV_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.9125486,72.0778947],[153.093564,72.0043476],[152.7889605,71.0251958],[149.7661688,71.0946736],[149.9125486,72.0778947]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFV","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFV_N05.11","eo:cloud_cover":14.408642,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":62.24485,"s2:mean_solar_zenith":50.3985404696825,"s2:mean_solar_azimuth":182.119104010669,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":5.137096,"s2:vegetation_percentage":8.447716,"s2:thin_cirrus_percentage":7.188072,"s2:cloud_shadow_percentage":0.3712,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.017366,"s2:not_vegetated_percentage":9.373128,"s2:degraded_msi_data_percentage":0.0177,"s2:high_proba_clouds_percentage":4.545556,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.675014,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317","bbox":[149.4354563,68.3567732,152.3308902,69.3909851],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R60m/T55WFS_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R60m/T55WFS_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[152.1824531,68.69759],[152.094174,68.6401589],[151.8940049,68.5082134],[151.6963116,68.3760551],[151.6678839,68.3567732],[149.4354563,68.4071896],[149.546266,69.3909851],[152.3308902,69.3276752],[152.1824531,68.69759]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFS","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFS_N05.11","eo:cloud_cover":0.789332,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":16.580273,"s2:mean_solar_zenith":47.7128243449971,"s2:mean_solar_azimuth":181.748147889462,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":77.942979,"s2:thin_cirrus_percentage":0.556001,"s2:cloud_shadow_percentage":0.55987,"s2:nodata_pixel_percentage":2.93372,"s2:unclassified_percentage":0.029898,"s2:not_vegetated_percentage":4.097645,"s2:degraded_msi_data_percentage":0.019,"s2:high_proba_clouds_percentage":0.077236,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.156095,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317","bbox":[149.3431637,67.4864868,151.7945524,68.4948252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R60m/T55WFR_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R60m/T55WFR_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[151.7945524,68.4417292],[151.6963116,68.3760551],[151.501133,68.2436697],[151.3306669,68.1266474],[151.3128158,68.1144175],[151.3098001,68.1123227],[151.3080017,68.1110881],[151.11682,67.9783099],[150.9277644,67.8453157],[150.7405053,67.7122238],[150.5554665,67.5788836],[150.4289849,67.4864868],[149.3431637,67.5108527],[149.4449048,68.4948252],[151.7945524,68.4417292]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFR","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFR_N05.11","eo:cloud_cover":4.023106,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":12.379175,"s2:mean_solar_zenith":46.8171259569399,"s2:mean_solar_azimuth":181.656167535865,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":75.724196,"s2:thin_cirrus_percentage":0.328595,"s2:cloud_shadow_percentage":3.949002,"s2:nodata_pixel_percentage":34.944767,"s2:unclassified_percentage":0.226697,"s2:not_vegetated_percentage":3.697826,"s2:degraded_msi_data_percentage":0.0183,"s2:high_proba_clouds_percentage":1.715708,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":1.978803,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317","bbox":[149.2581395,66.613896,150.5456307,67.5985039],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R60m/T55WFQ_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R60m/T55WFQ_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.5456307,67.5716984],[150.3725878,67.4452878],[150.1914159,67.3114862],[150.011373,67.1776197],[149.8336593,67.0434616],[149.6577203,66.9091737],[149.4838735,66.7747109],[149.3119871,66.6401049],[149.2789046,66.613896],[149.2581395,66.6143589],[149.3518535,67.5985039],[150.5456307,67.5716984]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFQ","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFQ_N05.11","eo:cloud_cover":18.311203,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":0.16762,"s2:mean_solar_zenith":45.9212867035903,"s2:mean_solar_azimuth":181.577292223729,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":70.429194,"s2:thin_cirrus_percentage":8.949737,"s2:cloud_shadow_percentage":8.770066,"s2:nodata_pixel_percentage":76.459223,"s2:unclassified_percentage":0.405287,"s2:not_vegetated_percentage":1.91663,"s2:degraded_msi_data_percentage":0.0258,"s2:high_proba_clouds_percentage":4.362518,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":4.998947,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317","bbox":[149.256871,66.5964405,149.3882669,66.7025631],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R60m/T55WFP_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R60m/T55WFP_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.3882669,66.6998404],[149.3119871,66.6401049],[149.256871,66.5964405],[149.2662054,66.7025631],[149.3882669,66.6998404]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFP","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFP_N05.11","eo:cloud_cover":14.128898,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":9.20466,"s2:mean_solar_zenith":45.0258444072951,"s2:mean_solar_azimuth":181.510355019838,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":72.944981,"s2:thin_cirrus_percentage":14.128898,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.753672,"s2:unclassified_percentage":0.006734,"s2:not_vegetated_percentage":3.714728,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317","bbox":[147.0447745,71.0904748,150.196858,72.0876178],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R60m/T55WEV_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R60m/T55WEV_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.0447745,71.1147861],[147.1430576,71.1858658],[147.3347997,71.3224894],[147.5290457,71.4589168],[147.7256634,71.5951974],[147.9251834,71.7312914],[148.1276863,71.8671899],[148.3331336,72.0028979],[148.4632127,72.0876178],[150.196858,72.073449],[150.0362417,71.0904748],[147.0447745,71.1147861]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WEV","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WEV_N05.11","eo:cloud_cover":4.320446,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":28.570759,"s2:mean_solar_zenith":50.436239013637,"s2:mean_solar_azimuth":178.719528383963,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.556214,"s2:vegetation_percentage":43.16763,"s2:thin_cirrus_percentage":0.006602,"s2:cloud_shadow_percentage":6.721912,"s2:nodata_pixel_percentage":24.21111,"s2:unclassified_percentage":0.254749,"s2:not_vegetated_percentage":16.408287,"s2:degraded_msi_data_percentage":0.0097,"s2:high_proba_clouds_percentage":2.393112,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":1.920732,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317","bbox":[146.9994471,70.1948429,150.049855,71.2014965],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R60m/T55WEU_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R60m/T55WEU_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.9994471,71.0820047],[147.1430576,71.1858658],[147.1649942,71.2014965],[150.049855,71.1780394],[149.9040632,70.1948429],[146.9994705,70.2183208],[146.9994471,71.0820047]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WEU","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WEU_N05.11","eo:cloud_cover":15.072462,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":13.500412,"s2:mean_solar_zenith":49.5401095399085,"s2:mean_solar_azimuth":178.688054056801,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001239,"s2:vegetation_percentage":47.441328,"s2:thin_cirrus_percentage":0.028125,"s2:cloud_shadow_percentage":13.83779,"s2:nodata_pixel_percentage":0.388642,"s2:unclassified_percentage":0.420075,"s2:not_vegetated_percentage":9.726688,"s2:degraded_msi_data_percentage":0.0204,"s2:high_proba_clouds_percentage":8.549342,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":6.494995,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"collections":["sentinel-2-l2a"],"token":"next:sentinel-2-l2a:S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '131723' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 13:05:27 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T130525Z-167d46d96d88hw2shC1DENzkdg0000000m00000000005fp3 status: code: 200 message: OK - request: body: '{"collections": ["sentinel-2-l2a"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '35' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716","bbox":[118.2169585,42.492896,118.5443546,43.3462],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_AOT_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R60m/T50TPN_20250717T031151_B01_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B02_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B03_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B04_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B05_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B06_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B07_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B08_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R60m/T50TPN_20250717T031151_B09_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B11_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B12_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B8A_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_SCL_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_WVP_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_TCI_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/DATASTRIP/DS_2APS_20250717T060716_S20250717T031154/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.5443546,43.3410102],[118.5336127,43.313588],[118.4767986,43.1679071],[118.4200672,43.0223138],[118.363583,42.8767423],[118.3076044,42.7309403],[118.2514322,42.5851422],[118.2169585,42.492896],[118.2338121,43.3462],[118.5443546,43.3410102]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:11:51.024000Z","platform":"Sentinel-2A","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TPN","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T060716_A052582_T50TPN_N05.11","eo:cloud_cover":37.504357,"s2:datatake_id":"GS2A_20250717T031151_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T060716_S20250717T031154_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T06:07:16.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.005036,"s2:mean_solar_zenith":24.4791112148997,"s2:mean_solar_azimuth":148.082651359385,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":42.258921,"s2:thin_cirrus_percentage":7.103997,"s2:cloud_shadow_percentage":11.257639,"s2:nodata_pixel_percentage":90.118074,"s2:unclassified_percentage":0.714036,"s2:not_vegetated_percentage":8.081225,"s2:degraded_msi_data_percentage":0.0041,"s2:high_proba_clouds_percentage":17.202029,"s2:reflectance_conversion_factor":0.96769091883615,"s2:medium_proba_clouds_percentage":13.198331,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716","bbox":[115.0575906,44.1468602,115.8719187,45.1480732],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_AOT_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R60m/T50TLQ_20250717T031151_B01_60m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B02_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B03_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B04_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B05_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B06_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B07_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B08_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R60m/T50TLQ_20250717T031151_B09_60m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B11_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B12_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B8A_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_SCL_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_WVP_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_TCI_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/DATASTRIP/DS_2APS_20250717T060716_S20250717T031154/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.0575906,44.1468602],[115.1011869,44.2782072],[115.1502472,44.4250039],[115.1989562,44.5720106],[115.2484172,44.7188577],[115.2981315,44.865624],[115.3479419,45.0123669],[115.3916184,45.1406223],[115.8525926,45.1480732],[115.8719187,44.1597966],[115.0575906,44.1468602]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:11:51.024000Z","platform":"Sentinel-2A","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TLQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T060716_A052582_T50TLQ_N05.11","eo:cloud_cover":72.285634,"s2:datatake_id":"GS2A_20250717T031151_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T060716_S20250717T031154_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T06:07:16.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.001972,"s2:mean_solar_zenith":27.5224023843446,"s2:mean_solar_azimuth":142.894627902949,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":5.61901,"s2:thin_cirrus_percentage":18.582772,"s2:cloud_shadow_percentage":1.436035,"s2:nodata_pixel_percentage":53.895164,"s2:unclassified_percentage":0.504762,"s2:not_vegetated_percentage":20.151974,"s2:degraded_msi_data_percentage":0.0243,"s2:high_proba_clouds_percentage":25.602505,"s2:reflectance_conversion_factor":0.96769091883615,"s2:medium_proba_clouds_percentage":28.100359,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716","bbox":[115.8880749,35.834919,115.9908287,36.1401671],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_AOT_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R60m/T50SME_20250717T031151_B01_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B02_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B03_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B04_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B05_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B06_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B07_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B08_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R60m/T50SME_20250717T031151_B09_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B11_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B12_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B8A_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_SCL_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_WVP_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_TCI_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/DATASTRIP/DS_2APS_20250717T060716_S20250717T031154/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.9908287,36.1401671],[115.9438729,35.9950224],[115.8965727,35.848305],[115.892273,35.834919],[115.8880749,36.1397366],[115.9908287,36.1401671]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:11:51.024000Z","platform":"Sentinel-2A","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SME","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T060716_A052582_T50SME_N05.11","eo:cloud_cover":47.183838,"s2:datatake_id":"GS2A_20250717T031151_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T060716_S20250717T031154_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T06:07:16.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.101275,"s2:mean_solar_zenith":19.8235202933671,"s2:mean_solar_azimuth":132.817782085647,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":43.840736,"s2:thin_cirrus_percentage":15.224913,"s2:cloud_shadow_percentage":0.102303,"s2:nodata_pixel_percentage":98.709226,"s2:unclassified_percentage":3.013829,"s2:not_vegetated_percentage":5.741826,"s2:degraded_msi_data_percentage":0.0021,"s2:high_proba_clouds_percentage":16.757917,"s2:reflectance_conversion_factor":0.96769091883615,"s2:medium_proba_clouds_percentage":15.201008,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712","bbox":[128.9996085,62.1408465,129.8006331,62.7419066],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R60m/T52VEQ_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R60m/T52VEQ_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9996085,62.7419066],[129.3348229,62.6719642],[129.3491627,62.6689494],[129.348033,62.6677051],[129.3528745,62.6666135],[129.352699,62.6664204],[129.4534519,62.6439367],[129.8006331,62.565659],[129.6739234,62.4289043],[129.5469863,62.2900438],[129.4212215,62.151078],[129.4120261,62.1408465],[128.9996163,62.1439815],[128.9996085,62.7419066]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VEQ_N05.11","eo:cloud_cover":0.000763,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.179538,"s2:mean_solar_zenith":41.555142486688,"s2:mean_solar_azimuth":174.585341968684,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.208325,"s2:thin_cirrus_percentage":0.000699,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":84.345657,"s2:unclassified_percentage":0.07844,"s2:not_vegetated_percentage":0.532063,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.000064,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712","bbox":[128.9996152,61.6772872,129.490866,62.2317701],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R60m/T52VEP_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R60m/T52VEP_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.490866,62.2280327],[129.4212215,62.151078],[129.2962974,62.0120782],[129.1720438,61.8729258],[129.0490893,61.7335802],[128.999622,61.6772872],[128.9996152,62.2317701],[129.490866,62.2280327]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEP","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VEP_N05.11","eo:cloud_cover":0.000152,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.205156,"s2:mean_solar_zenith":40.6603597363943,"s2:mean_solar_azimuth":174.526032947034,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":98.683,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":93.438905,"s2:unclassified_percentage":0.135321,"s2:not_vegetated_percentage":0.975464,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.000152,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712","bbox":[127.0165743,63.0279332,127.5170036,63.1171334],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R60m/T52VDR_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R60m/T52VDR_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0165743,63.1171334],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.5170036,63.0310476],[127.0228562,63.0279332],[127.0165743,63.1171334]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDR","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDR_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.089908,"s2:mean_solar_zenith":42.5550553789093,"s2:mean_solar_azimuth":171.901675873215,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.055481,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.977798,"s2:unclassified_percentage":0.072705,"s2:not_vegetated_percentage":0.779959,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712","bbox":[127.0168934,62.1306897,129.1908025,63.1157098],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R60m/T52VDQ_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R60m/T52VDQ_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0250686,63.1157098],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.5863074,63.0188193],[127.5853142,63.0176504],[127.5853219,63.017649],[127.5852843,63.0176048],[127.9988353,62.940722],[127.9988523,62.9407417],[127.998859,62.9407404],[127.9989099,62.9407993],[127.9990872,62.9407663],[127.9991731,62.940866],[128.0030855,62.9401388],[128.0032019,62.9402737],[128.0034798,62.9402222],[128.0040857,62.9409228],[128.4608686,62.8531384],[128.4657378,62.8521987],[128.4646482,62.8509597],[128.8780099,62.7661366],[128.8781506,62.766294],[128.8783839,62.7662462],[128.8784644,62.7663364],[128.8824752,62.765515],[128.8827621,62.7658365],[128.882924,62.7658034],[128.8829464,62.7658285],[128.8833939,62.7657373],[128.8837086,62.7660891],[129.1908025,62.702014],[129.1872239,62.143855],[127.0815883,62.1306897],[127.0168934,63.1156582],[127.0250686,63.1157098]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDQ_N05.11","eo:cloud_cover":5.201023,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.444513,"s2:mean_solar_zenith":41.660975876224,"s2:mean_solar_azimuth":171.880878712841,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":79.42512,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":6.495123,"s2:nodata_pixel_percentage":21.144556,"s2:unclassified_percentage":0.661313,"s2:not_vegetated_percentage":7.766136,"s2:degraded_msi_data_percentage":0.0187,"s2:high_proba_clouds_percentage":1.77157,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":3.429453,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712","bbox":[127.0760204,61.2345813,129.1877677,62.231643],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R60m/T52VDP_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R60m/T52VDP_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.3432582,61.2345813],[127.1337622,61.2777318],[127.0760204,62.2184291],[129.1877677,62.231643],[129.1857101,61.8882308],[129.1720438,61.8729258],[129.0490893,61.7335802],[128.9266298,61.5942232],[128.8056844,61.4546144],[128.6854216,61.3149099],[128.6232308,61.2425179],[127.3432582,61.2345813]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDP","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDP_N05.11","eo:cloud_cover":5.202496,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.858072,"s2:mean_solar_zenith":40.7667686010522,"s2:mean_solar_azimuth":171.854576639774,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":86.080956,"s2:thin_cirrus_percentage":0.000277,"s2:cloud_shadow_percentage":5.805069,"s2:nodata_pixel_percentage":9.062117,"s2:unclassified_percentage":0.581971,"s2:not_vegetated_percentage":1.446041,"s2:degraded_msi_data_percentage":0.0252,"s2:high_proba_clouds_percentage":1.739334,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":3.462885,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712","bbox":[127.1312482,61.0025097,128.6995513,61.3313238],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R60m/T52VDN_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R60m/T52VDN_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.4187135,61.0025097],[127.9690619,61.1041713],[127.9691274,61.1042502],[127.9686036,61.1043609],[127.9689712,61.1048051],[127.7134838,61.1582637],[127.5692104,61.1887463],[127.5690063,61.1884943],[127.5677994,61.1887468],[127.5676201,61.1885253],[127.5669824,61.1886589],[127.566871,61.1885231],[127.133769,61.2777304],[127.1312482,61.3215913],[128.6995513,61.3313238],[128.6854216,61.3149099],[128.5653652,61.1751607],[128.4464531,61.0352923],[128.4187135,61.0025097]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDN","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDN_N05.11","eo:cloud_cover":0.580258,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":12.036611,"s2:mean_solar_zenith":39.8729740524278,"s2:mean_solar_azimuth":171.822741890705,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.533697,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":1.129968,"s2:nodata_pixel_percentage":85.815692,"s2:unclassified_percentage":0.586644,"s2:not_vegetated_percentage":0.96022,"s2:degraded_msi_data_percentage":0.0198,"s2:high_proba_clouds_percentage":0.175081,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.405177,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712","bbox":[124.9899031,62.9866068,127.2172106,63.4248872],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R60m/T52VCR_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R60m/T52VCR_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.9899031,63.4248872],[125.2932314,63.3847438],[125.2932886,63.3848182],[125.2979312,63.3841971],[125.2981631,63.384498],[125.2989197,63.3843977],[125.2995225,63.3851818],[125.3895905,63.372172],[125.632161,63.3370397],[125.6340874,63.3367593],[125.7889128,63.314125],[125.7886802,63.3138295],[125.7887275,63.3138223],[125.7877109,63.3125302],[125.7877482,63.3125246],[125.7876699,63.3124252],[126.2195538,63.2478247],[126.2196728,63.2479728],[126.2197034,63.2479682],[126.2197423,63.2480168],[126.2246919,63.2472743],[126.2254384,63.2482054],[126.3050526,63.2354271],[126.3824637,63.2229757],[126.6983208,63.1720815],[126.6971974,63.1707085],[126.697223,63.1707043],[126.6971894,63.1706633],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.2137791,63.08455],[127.2172106,63.0305154],[125.0515033,62.9866068],[124.9899031,63.4248872]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCR","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCR_N05.11","eo:cloud_cover":8.21901,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.656129,"s2:mean_solar_zenith":42.6743589294175,"s2:mean_solar_azimuth":169.168645103758,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":82.176405,"s2:thin_cirrus_percentage":7.90844,"s2:cloud_shadow_percentage":0.498461,"s2:nodata_pixel_percentage":74.510235,"s2:unclassified_percentage":0.358015,"s2:not_vegetated_percentage":8.088169,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.049592,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.260978,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712","bbox":[125.0396236,62.0909077,127.2701768,63.1145955],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R60m/T52VCQ_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R60m/T52VCQ_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0317166,63.1145955],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.2138297,63.0845411],[127.2701768,62.1331753],[125.1685297,62.0909077],[125.0396236,63.0741757],[127.0317166,63.1145955]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCQ_N05.11","eo:cloud_cover":3.044319,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.262499,"s2:mean_solar_zenith":41.7812611954988,"s2:mean_solar_azimuth":169.186086335173,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":87.450129,"s2:thin_cirrus_percentage":0.000076,"s2:cloud_shadow_percentage":4.792491,"s2:nodata_pixel_percentage":0.1421,"s2:unclassified_percentage":0.395385,"s2:not_vegetated_percentage":4.05145,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.876345,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":2.167897,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712","bbox":[125.1574343,61.2394793,127.3194781,62.2209238],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R60m/T52VCP_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R60m/T52VCP_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.3194781,61.2394793],[127.1231788,61.2799116],[127.1232847,61.2800426],[127.1219084,61.2803084],[127.1220094,61.2804344],[127.1199989,61.2808238],[127.1202491,61.2811357],[126.7235626,61.3576592],[126.7234342,61.357496],[126.7230399,61.3575721],[126.7228081,61.3572812],[126.2803626,61.4399715],[126.2805356,61.4401926],[126.2800414,61.4402802],[126.28051,61.4408843],[125.8827905,61.5113669],[125.882757,61.511323],[125.8786748,61.5120461],[125.8781038,61.5113084],[125.6894189,61.5430415],[125.4306695,61.5865714],[125.4311657,61.5872339],[125.4264335,61.587998],[125.4268802,61.5885931],[125.2257255,61.6211511],[125.1574343,62.1785001],[127.2651556,62.2209238],[127.3194781,61.2394793]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCP","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCP_N05.11","eo:cloud_cover":0.378669,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.324839,"s2:mean_solar_zenith":40.8881029281013,"s2:mean_solar_azimuth":169.192930712771,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.305993,"s2:thin_cirrus_percentage":0.003307,"s2:cloud_shadow_percentage":0.609475,"s2:nodata_pixel_percentage":22.153567,"s2:unclassified_percentage":0.245625,"s2:not_vegetated_percentage":5.071058,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.08969,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.285671,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712","bbox":[126.9371671,61.2395079,127.3193394,61.3239944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R60m/T52VCN_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R60m/T52VCN_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.3193394,61.2395079],[127.1231788,61.2799116],[127.1232847,61.2800426],[127.1219084,61.2803084],[127.1220094,61.2804344],[127.1199989,61.2808238],[127.1202491,61.2811357],[126.9371671,61.3164534],[127.314961,61.3239944],[127.3193394,61.2395079]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCN","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCN_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.0,"s2:mean_solar_zenith":39.99542120153,"s2:mean_solar_azimuth":169.189539087694,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.996364,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.178582,"s2:unclassified_percentage":0.003635,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712","bbox":[124.9763539,62.9810794,127.1580834,63.4229999],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_AOT_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R60m/T51VXL_20250717T031031_B01_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B02_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B03_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B04_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B05_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B06_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B07_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B08_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R60m/T51VXL_20250717T031031_B09_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B11_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B12_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B8A_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_SCL_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_WVP_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_TCI_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.0041644,63.4229999],[125.2932314,63.3847438],[125.2932886,63.3848182],[125.2979312,63.3841971],[125.2981631,63.384498],[125.2989197,63.3843977],[125.2995225,63.3851818],[125.3895905,63.372172],[125.632161,63.3370397],[125.6340874,63.3367593],[125.7889128,63.314125],[125.7886802,63.3138295],[125.7887275,63.3138223],[125.7877109,63.3125302],[125.7877482,63.3125246],[125.7876699,63.3124252],[126.2195538,63.2478247],[126.2196728,63.2479728],[126.2197034,63.2479682],[126.2197423,63.2480168],[126.2246919,63.2472743],[126.2254384,63.2482054],[126.3050526,63.2354271],[126.3824637,63.2229757],[126.6983208,63.1720815],[126.6971974,63.1707085],[126.697223,63.1707043],[126.6971894,63.1706633],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.1580834,63.0943772],[127.141383,62.9810794],[124.9763539,63.0279443],[125.0041644,63.4229999]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXL","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VXL_N05.11","eo:cloud_cover":8.247952,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.686861,"s2:mean_solar_zenith":42.6678613842167,"s2:mean_solar_azimuth":169.206249487435,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":82.077497,"s2:thin_cirrus_percentage":7.931365,"s2:cloud_shadow_percentage":0.614416,"s2:nodata_pixel_percentage":73.752838,"s2:unclassified_percentage":0.342299,"s2:not_vegetated_percentage":8.025804,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.05055,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.266037,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712","bbox":[124.9176451,62.0855865,127.1538391,63.1156693],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_AOT_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R60m/T51VXK_20250717T031031_B01_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B02_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B03_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B04_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B05_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B06_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B07_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B08_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R60m/T51VXK_20250717T031031_B09_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B11_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B12_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B8A_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_SCL_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_WVP_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_TCI_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.9823142,63.1156693],[127.1538391,63.0686274],[127.0186771,62.0855865],[124.9176451,62.1307003],[124.9823142,63.1156693]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXK","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VXK_N05.11","eo:cloud_cover":2.430609,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.282683,"s2:mean_solar_zenith":41.7905952014376,"s2:mean_solar_azimuth":168.972251447119,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":88.523567,"s2:thin_cirrus_percentage":0.00207,"s2:cloud_shadow_percentage":3.906056,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.334412,"s2:not_vegetated_percentage":4.519023,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.6896,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":1.738939,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712","bbox":[124.8897369,61.3196438,127.0303111,62.2184397],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_AOT_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R60m/T51VXJ_20250717T031031_B01_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B02_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B03_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B04_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B05_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B06_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B07_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B08_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R60m/T51VXJ_20250717T031031_B09_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B11_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B12_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B8A_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_SCL_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_WVP_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_TCI_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.9206288,61.3196438],[126.7235626,61.3576592],[126.7234342,61.357496],[126.7230399,61.3575721],[126.7228081,61.3572812],[126.2803626,61.4399715],[126.2805356,61.4401926],[126.2800414,61.4402802],[126.28051,61.4408843],[125.8827905,61.5113669],[125.882757,61.511323],[125.8786748,61.5120461],[125.8781038,61.5113084],[125.6894189,61.5430415],[125.4306695,61.5865714],[125.4311657,61.5872339],[125.4264335,61.587998],[125.4268802,61.5885931],[125.0213233,61.6542347],[125.0206154,61.6532697],[125.0205831,61.6532264],[124.8897369,61.6728839],[124.9232108,62.2184397],[127.0303111,62.1731593],[126.9206288,61.3196438]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXJ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VXJ_N05.11","eo:cloud_cover":0.09484,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.390283,"s2:mean_solar_zenith":40.9134462760282,"s2:mean_solar_azimuth":168.736071092909,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.095291,"s2:thin_cirrus_percentage":0.002062,"s2:cloud_shadow_percentage":0.189878,"s2:nodata_pixel_percentage":29.218137,"s2:unclassified_percentage":0.256012,"s2:not_vegetated_percentage":5.894198,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.020653,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.072125,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712","bbox":[123.9805079,63.0251146,125.1982436,63.512869],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R60m/T51VWL_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R60m/T51VWL_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.9805079,63.0342255],[124.0175404,63.085966],[124.1204767,63.2286379],[124.224467,63.3711768],[124.32843,63.512869],[124.5210703,63.4881189],[124.6346038,63.4734666],[124.8427827,63.4461241],[124.8426612,63.4459627],[124.843131,63.4458996],[124.8420428,63.4444555],[125.1982436,63.3973148],[125.1694829,63.0251146],[123.9805079,63.0342255]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWL","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VWL_N05.11","eo:cloud_cover":1.018668,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":2.220357,"s2:mean_solar_zenith":42.8838893759669,"s2:mean_solar_azimuth":166.489936893053,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":72.827864,"s2:thin_cirrus_percentage":0.982256,"s2:cloud_shadow_percentage":0.032739,"s2:nodata_pixel_percentage":79.224998,"s2:unclassified_percentage":0.36414,"s2:not_vegetated_percentage":23.532301,"s2:degraded_msi_data_percentage":0.0254,"s2:high_proba_clouds_percentage":0.00452,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.031893,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712","bbox":[123.354832,62.1279766,125.1760247,63.1215163],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R60m/T51VWK_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R60m/T51VWK_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.354832,62.1412813],[123.4144574,62.228337],[123.5131015,62.3715201],[123.6127497,62.51456],[123.7130394,62.6574937],[123.8139747,62.8003313],[123.9153436,62.9431804],[124.0175404,63.085966],[124.0431896,63.1215163],[125.1760247,63.1128289],[125.1050472,62.1279766],[123.354832,62.1412813]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWK","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VWK_N05.11","eo:cloud_cover":7.135528,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.506344,"s2:mean_solar_zenith":42.0087072062846,"s2:mean_solar_azimuth":166.295937583059,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.679336,"s2:thin_cirrus_percentage":5.686684,"s2:cloud_shadow_percentage":2.243425,"s2:nodata_pixel_percentage":32.554737,"s2:unclassified_percentage":0.489599,"s2:not_vegetated_percentage":5.940771,"s2:degraded_msi_data_percentage":0.0169,"s2:high_proba_clouds_percentage":0.370124,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":1.07872,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712","bbox":[123.1985668,61.6459062,125.1111559,62.2286126],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R60m/T51VWJ_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R60m/T51VWJ_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.0727792,61.6459062],[125.0213233,61.6542347],[125.0206154,61.6532697],[125.0205831,61.6532264],[124.5618784,61.7221392],[124.5626009,61.7231425],[124.5564762,61.7240349],[124.5565079,61.7240783],[124.5563956,61.7240948],[124.5565044,61.7242461],[124.1371289,61.7858646],[124.1365717,61.7850755],[123.6592948,61.8481846],[123.660187,61.8494696],[123.3815512,61.8856612],[123.1985668,61.909715],[123.2200843,61.9419286],[123.3164139,62.0851892],[123.4144574,62.228337],[123.4146472,62.2286126],[125.1111559,62.2157059],[125.0727792,61.6459062]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWJ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VWJ_N05.11","eo:cloud_cover":17.276834,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.309421,"s2:mean_solar_zenith":41.1337724557747,"s2:mean_solar_azimuth":166.094856835182,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":78.719282,"s2:thin_cirrus_percentage":15.268284,"s2:cloud_shadow_percentage":1.109277,"s2:nodata_pixel_percentage":60.790163,"s2:unclassified_percentage":0.225751,"s2:not_vegetated_percentage":2.317589,"s2:degraded_msi_data_percentage":0.0102,"s2:high_proba_clouds_percentage":0.228628,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":1.779921,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500","bbox":[158.999207,76.4849983,160.3514349,76.9244244],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R60m/T57XWF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R60m/T57XWF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[158.999207,76.9244244],[159.0277214,76.9172337],[159.0284819,76.9173979],[159.0286906,76.9173453],[159.0290513,76.9174232],[159.0291725,76.9173927],[159.0304404,76.9176667],[159.0305714,76.9176338],[159.0316672,76.9178705],[159.0319787,76.9177922],[159.0327171,76.9179518],[159.032787,76.9179342],[159.0333799,76.9180625],[159.0336093,76.9180049],[159.034998,76.9183053],[159.0353471,76.9182178],[159.0360053,76.9183601],[159.036266,76.9182948],[159.0372549,76.9185087],[159.2809197,76.8551048],[159.7206787,76.7400003],[159.7134913,76.7384641],[160.3514349,76.5588516],[160.0037225,76.4849983],[158.9992329,76.493385],[158.999207,76.9244244]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XWF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XWF_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.998295,"s2:mean_solar_zenith":57.0125193903975,"s2:mean_solar_azimuth":206.318532794304,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001708,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":92.03369,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.019,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500","bbox":[158.999228,76.2654779,160.3514349,76.5810287],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R60m/T57XWE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R60m/T57XWE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[160.3115986,76.5700674],[160.3514349,76.5588516],[159.8829236,76.4593409],[159.4120142,76.3571229],[158.9992446,76.2654779],[158.999228,76.5810287],[160.3115986,76.5700674]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XWE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XWE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":100.0,"s2:mean_solar_zenith":56.2005204288736,"s2:mean_solar_azimuth":206.477256331399,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":94.691265,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500","bbox":[154.729453,77.3578558,157.1147583,77.8563411],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R60m/T57XVG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R60m/T57XVG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[154.729453,77.8563411],[154.8202751,77.8399709],[154.8207919,77.8400908],[154.8208739,77.8400761],[154.8230835,77.8405892],[154.8243286,77.8403644],[154.8293017,77.8415197],[155.2337823,77.7636555],[155.6282619,77.6875444],[155.6194528,77.6855303],[156.3071352,77.5465017],[156.3073866,77.5465585],[156.307522,77.5465311],[156.3087991,77.5468196],[156.309347,77.5467088],[156.3159533,77.5482018],[157.0648,77.3881022],[157.0565254,77.3862579],[157.1147583,77.3731023],[154.9021672,77.3578558],[154.729453,77.8563411]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVG_N05.11","eo:cloud_cover":0.341631,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.655706,"s2:mean_solar_zenith":57.4702757300568,"s2:mean_solar_azimuth":201.548329525018,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.00266,"s2:thin_cirrus_percentage":0.027108,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":87.528163,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0006,"s2:high_proba_clouds_percentage":0.005161,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.309362,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500","bbox":[154.8738859,76.4642293,159.3841769,77.4586326],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R60m/T57XVF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R60m/T57XVF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.7349029,77.4586326],[157.0648,77.3881022],[157.0565254,77.3862579],[157.7022397,77.2403818],[157.702601,77.2404615],[157.7027581,77.240426],[157.7047207,77.2408589],[157.7054919,77.2406847],[157.7066273,77.2409352],[157.7066411,77.2409321],[157.7066482,77.2409337],[157.7069247,77.2408713],[157.7113152,77.2418411],[157.751275,77.2323977],[158.3681624,77.0864368],[158.4215766,77.0737874],[158.4137157,77.0720741],[159.0277214,76.9172337],[159.0284819,76.9173979],[159.0286906,76.9173453],[159.0290513,76.9174232],[159.0291725,76.9173927],[159.0304404,76.9176667],[159.0305714,76.9176338],[159.0316672,76.9178705],[159.0319787,76.9177922],[159.0327171,76.9179518],[159.032787,76.9179342],[159.0333799,76.9180625],[159.0336093,76.9180049],[159.034998,76.9183053],[159.0353471,76.9182178],[159.0360053,76.9183601],[159.036266,76.9182948],[159.0372549,76.9185087],[159.2809197,76.8551048],[159.3841769,76.8280778],[159.3743463,76.4931072],[155.1684626,76.4642293],[154.8738859,77.4458044],[156.7349029,77.4586326]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVF_N05.11","eo:cloud_cover":0.183424,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.799508,"s2:mean_solar_zenith":56.6528706201607,"s2:mean_solar_azimuth":201.956721906669,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000284,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.012645,"s2:nodata_pixel_percentage":19.528614,"s2:unclassified_percentage":0.000025,"s2:not_vegetated_percentage":0.003999,"s2:degraded_msi_data_percentage":0.0129,"s2:high_proba_clouds_percentage":0.050012,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.133412,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500","bbox":[155.1439841,75.5697411,159.376745,76.580749],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R60m/T57XVE_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R60m/T57XVE_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[159.3707743,76.3479666],[158.9476216,76.2540163],[158.4897237,76.1501067],[158.0387006,76.0453667],[157.5940915,75.9398774],[157.1558349,75.8336193],[156.7242541,75.7265717],[156.2992958,75.618772],[156.1292961,75.5747183],[155.4016102,75.5697411],[155.1439841,76.5516761],[159.376745,76.580749],[159.3707743,76.3479666]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.999988,"s2:mean_solar_zenith":55.8369908790616,"s2:mean_solar_azimuth":202.358804292345,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":5e-6,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":31.199139,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":5e-6,"s2:degraded_msi_data_percentage":0.0254,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500","bbox":[155.3801086,75.3937971,156.4805352,75.6647472],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R60m/T57XVD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R60m/T57XVD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.4805352,75.6647472],[156.2992958,75.618772],[155.8804421,75.5102304],[155.4676367,75.400987],[155.4410269,75.3937971],[155.3801086,75.6572177],[156.4805352,75.6647472]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVD_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":100.0,"s2:mean_solar_zenith":55.0232203762536,"s2:mean_solar_azimuth":202.757833932918,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":96.295464,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500","bbox":[152.999126,77.3539538,157.1995181,78.1584369],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R60m/T56XNM_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R60m/T56XNM_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[152.999126,78.1584369],[153.2137934,78.1240967],[153.2164319,78.1247293],[153.2181228,78.1244585],[153.2226392,78.1255419],[153.6076847,78.0591084],[154.0880985,77.9760879],[154.0781257,77.9737392],[154.8202751,77.8399709],[154.8207919,77.8400908],[154.8208739,77.8400761],[154.8230835,77.8405892],[154.8243286,77.8403644],[154.8293017,77.8415197],[155.2337823,77.7636555],[155.6282619,77.6875444],[155.6194528,77.6855303],[156.3071352,77.5465017],[156.3073866,77.5465585],[156.307522,77.5465311],[156.3087991,77.5468196],[156.309347,77.5467088],[156.3159533,77.5482018],[157.0648,77.3881022],[157.0565254,77.3862579],[157.1995181,77.3539538],[152.9991794,77.3891507],[152.999126,78.1584369]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNM_N05.11","eo:cloud_cover":5.330747,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":94.668388,"s2:mean_solar_zenith":57.340280258578,"s2:mean_solar_azimuth":199.653776562899,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000865,"s2:thin_cirrus_percentage":2.421382,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":62.79549,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0251,"s2:high_proba_clouds_percentage":0.541456,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.36791,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500","bbox":[152.999228,75.571101,157.2301741,76.5810287],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R60m/T56XNK_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R60m/T56XNK_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[157.0152107,75.7987394],[156.7242541,75.7265717],[156.2992958,75.618772],[156.1153371,75.571101],[152.9992797,75.5970173],[152.999228,76.5810287],[157.2301741,76.5456907],[157.0152107,75.7987394]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNK_N05.11","eo:cloud_cover":33.50164,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":66.49825,"s2:mean_solar_zenith":55.6396491325,"s2:mean_solar_azimuth":199.832394104259,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000014,"s2:thin_cirrus_percentage":0.030269,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":2.534195,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000092,"s2:degraded_msi_data_percentage":0.0223,"s2:high_proba_clouds_percentage":24.216855,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.254517,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500","bbox":[152.9992754,74.7005381,156.4460123,75.6846675],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R60m/T56XNJ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R60m/T56XNJ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.4460123,75.6559898],[156.2992958,75.618772],[155.8804421,75.5102304],[155.4676367,75.400987],[155.0607457,75.2910453],[155.0597053,75.2907587],[155.0571479,75.2900682],[154.8086754,75.2215872],[154.6595007,75.180482],[154.6578474,75.1800178],[154.6559695,75.1795002],[154.637369,75.1742679],[154.2635992,75.0693229],[153.8728205,74.9574878],[153.4876079,74.8449646],[153.1077556,74.7318693],[153.0045456,74.7005381],[152.999321,74.7005814],[152.9992754,75.6846675],[156.4460123,75.6559898]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNJ_N05.11","eo:cloud_cover":70.339298,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":29.659665,"s2:mean_solar_zenith":54.7911516161212,"s2:mean_solar_azimuth":199.962093717898,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.127737,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":56.646645,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.001041,"s2:degraded_msi_data_percentage":0.0227,"s2:high_proba_clouds_percentage":60.172588,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.038975,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500","bbox":[152.9993171,74.698952,153.2907765,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R60m/T56XNH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R60m/T56XNH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.2907765,74.786361],[153.1077556,74.7318693],[152.9993208,74.698952],[152.9993171,74.7887762],[153.2907765,74.786361]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNH_N05.11","eo:cloud_cover":91.559899,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":8.429157,"s2:mean_solar_zenith":53.9446261366776,"s2:mean_solar_azimuth":200.114987193235,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.109418,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.666452,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.010942,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":68.745273,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":22.705208,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500","bbox":[150.9180636,78.2677006,152.2768507,78.4028043],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R60m/T56XMN_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R60m/T56XMN_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.9180636,78.2677006],[150.9973416,78.2879305],[151.4584651,78.4028043],[152.0501679,78.3119796],[152.2768507,78.2770951],[150.9180636,78.2677006]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMN_N05.11","eo:cloud_cover":98.9811,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.018898,"s2:mean_solar_zenith":57.9347833437519,"s2:mean_solar_azimuth":194.608044592398,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.390734,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":52.855265,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":46.125838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500","bbox":[148.785543,77.3578558,153.4242399,78.3609268],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R60m/T56XMM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R60m/T56XMM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.785543,77.694455],[148.7915312,77.6961872],[149.2156941,77.8158741],[149.6482867,77.9348992],[150.0892084,78.0532582],[150.5388616,78.1709369],[150.9973416,78.2879305],[151.2777707,78.3577902],[151.7312878,78.3609268],[152.0501679,78.3119796],[152.4104764,78.2565313],[152.4077242,78.2558588],[152.4080935,78.2557991],[152.4073844,78.2556261],[152.4076782,78.2555787],[152.4070375,78.2554222],[152.4070648,78.2554178],[152.4060861,78.2551787],[152.4060873,78.2551785],[152.4018478,78.2541446],[152.4019927,78.2541215],[152.4015927,78.2540239],[153.2137934,78.1240967],[153.2164319,78.1247293],[153.2181228,78.1244585],[153.2226392,78.1255419],[153.4242399,78.0907589],[153.4004489,77.3888525],[148.9021672,77.3578558],[148.785543,77.694455]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMM_N05.11","eo:cloud_cover":53.933001,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":46.066993,"s2:mean_solar_zenith":57.0791530126844,"s2:mean_solar_azimuth":194.974581699899,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":4e-6,"s2:thin_cirrus_percentage":0.964429,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":23.851644,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0112,"s2:high_proba_clouds_percentage":37.277386,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.691185,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500","bbox":[148.8738859,76.4642293,153.4032221,77.4770256],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R60m/T56XML_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R60m/T56XML_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.8738859,77.4458044],[153.4032221,77.4770256],[153.3743463,76.4931072],[149.1684626,76.4642293],[148.8738859,77.4458044]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XML","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XML_N05.11","eo:cloud_cover":53.365338,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":16.842276,"s2:mean_solar_zenith":56.2252079251133,"s2:mean_solar_azimuth":195.327958642391,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":29.711074,"s2:vegetation_percentage":0.00001,"s2:thin_cirrus_percentage":8.906405,"s2:cloud_shadow_percentage":0.073955,"s2:nodata_pixel_percentage":0.000017,"s2:unclassified_percentage":0.000524,"s2:not_vegetated_percentage":0.004741,"s2:degraded_msi_data_percentage":0.0244,"s2:high_proba_clouds_percentage":17.852481,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":26.606452,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500","bbox":[149.1439841,75.5697411,153.376745,76.580749],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R60m/T56XMK_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R60m/T56XMK_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.1439841,76.5516761],[153.376745,76.580749],[153.3515061,75.5967575],[149.4016102,75.5697411],[149.1439841,76.5516761]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMK_N05.11","eo:cloud_cover":45.38013,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":52.364403,"s2:mean_solar_zenith":55.3719755202348,"s2:mean_solar_azimuth":195.673002025668,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":1.971009,"s2:vegetation_percentage":0.000159,"s2:thin_cirrus_percentage":5.233015,"s2:cloud_shadow_percentage":0.283665,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.00003,"s2:not_vegetated_percentage":0.000601,"s2:degraded_msi_data_percentage":0.0026,"s2:high_proba_clouds_percentage":21.191287,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.95583,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500","bbox":[149.3801086,74.6749694,153.353612,75.684406],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R60m/T56XMJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R60m/T56XMJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.3336017,74.7991116],[153.1077556,74.7318693],[152.9963672,74.6980554],[149.6072622,74.6749694],[149.3801086,75.6572177],[153.353612,75.684406],[153.3336017,74.7991116]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMJ_N05.11","eo:cloud_cover":85.592216,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":13.543333,"s2:mean_solar_zenith":54.5200220153859,"s2:mean_solar_azimuth":196.01289650902,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.145424,"s2:vegetation_percentage":0.000017,"s2:thin_cirrus_percentage":1.460761,"s2:cloud_shadow_percentage":0.7084,"s2:nodata_pixel_percentage":0.474215,"s2:unclassified_percentage":0.005104,"s2:not_vegetated_percentage":0.005507,"s2:degraded_msi_data_percentage":0.0183,"s2:high_proba_clouds_percentage":67.295456,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":16.835994,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500","bbox":[149.5881136,73.7804829,153.2972396,74.7882853],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R60m/T56XMH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R60m/T56XMH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.2972396,74.7882853],[153.1077556,74.7318693],[152.733329,74.6182055],[152.364361,74.5038966],[152.0006473,74.3890213],[151.6423724,74.2735787],[151.2890793,74.1575707],[150.9406558,74.0410123],[150.5970299,73.923947],[150.2579129,73.8063941],[150.1921903,73.7832117],[149.7898569,73.7804829],[149.5881136,74.763009],[153.2972396,74.7882853]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMH_N05.11","eo:cloud_cover":99.362773,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.636787,"s2:mean_solar_zenith":53.6699179512728,"s2:mean_solar_azimuth":196.350226583669,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000036,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.212714,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":44.940388,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000404,"s2:degraded_msi_data_percentage":0.0241,"s2:high_proba_clouds_percentage":93.303627,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":5.846434,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500","bbox":[149.7728973,73.6488294,150.448892,73.8725959],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R60m/T56XMG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R60m/T56XMG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.448892,73.8725959],[150.2579129,73.8063941],[149.9231974,73.6883294],[149.81311,73.6488294],[149.7728973,73.8680091],[150.448892,73.8725959]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMG_N05.11","eo:cloud_cover":99.953437,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.046564,"s2:mean_solar_zenith":52.8207046054607,"s2:mean_solar_azimuth":196.687646798262,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":97.905159,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":98.446125,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.507312,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500","bbox":[150.8601802,78.2447576,151.8739788,78.4028043],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R60m/T55XEH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R60m/T55XEH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.8601802,78.2529301],[150.9973416,78.2879305],[151.4584651,78.4028043],[151.8739788,78.3390241],[151.8321726,78.2447576],[150.8601802,78.2529301]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEH_N05.11","eo:cloud_cover":98.501015,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.498985,"s2:mean_solar_zenith":57.8666844216934,"s2:mean_solar_azimuth":193.082431081795,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.070586,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":45.901051,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":52.599967,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500","bbox":[147.7295877,77.3514755,151.8679037,78.3377171],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R60m/T55XEG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R60m/T55XEG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.7295877,77.3830302],[147.9673017,77.455002],[148.3756143,77.5758752],[148.7915312,77.6961872],[149.2156941,77.8158741],[149.6482867,77.9348992],[150.0892084,78.0532582],[150.5388616,78.1709369],[150.9973416,78.2879305],[151.1971937,78.3377171],[151.8679037,78.332076],[151.4952763,77.3514755],[147.7295877,77.3830302]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEG_N05.11","eo:cloud_cover":77.95974,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":22.04026,"s2:mean_solar_zenith":56.9884929302579,"s2:mean_solar_azimuth":193.066565610651,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.72874,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":51.733977,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0006,"s2:high_proba_clouds_percentage":60.839087,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":16.391915,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500","bbox":[146.999193,76.458284,151.5262788,77.4688195],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R60m/T55XEF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R60m/T55XEF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.999193,77.1566382],[147.1725997,77.2116075],[147.5662727,77.333584],[147.9673017,77.455002],[148.0139776,77.4688195],[151.5262788,77.4393779],[151.2033368,76.458284],[146.9992329,76.493385],[146.999193,77.1566382]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEF_N05.11","eo:cloud_cover":82.031554,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":10.689694,"s2:mean_solar_zenith":56.1114584570531,"s2:mean_solar_azimuth":193.082010454725,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":7.173916,"s2:vegetation_percentage":0.000031,"s2:thin_cirrus_percentage":4.543883,"s2:cloud_shadow_percentage":0.097317,"s2:nodata_pixel_percentage":3.864735,"s2:unclassified_percentage":0.000538,"s2:not_vegetated_percentage":0.00556,"s2:degraded_msi_data_percentage":0.0197,"s2:high_proba_clouds_percentage":52.378035,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.109643,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500","bbox":[146.999228,75.5641782,151.2301741,76.5810287],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R60m/T55XEE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R60m/T55XEE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.999228,76.5810287],[151.2301741,76.5456907],[150.9477068,75.5641782],[146.9992797,75.5970173],[146.999228,76.5810287]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEE_N05.11","eo:cloud_cover":53.384507,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":46.615151,"s2:mean_solar_zenith":55.2345549596294,"s2:mean_solar_azimuth":193.124143423144,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000093,"s2:thin_cirrus_percentage":4.994157,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000249,"s2:degraded_msi_data_percentage":0.0196,"s2:high_proba_clouds_percentage":39.077944,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.312408,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500","bbox":[146.9992754,74.6697452,150.9712829,75.6846675],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R60m/T55XED_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R60m/T55XED_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.9992754,75.6846675],[150.9712829,75.6516194],[150.7222017,74.6697452],[146.999321,74.7005814],[146.9992754,75.6846675]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XED","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XED_N05.11","eo:cloud_cover":77.311695,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":12.304876,"s2:mean_solar_zenith":54.3583376728985,"s2:mean_solar_azimuth":193.18952409454,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":2.859898,"s2:vegetation_percentage":0.440835,"s2:thin_cirrus_percentage":2.720784,"s2:cloud_shadow_percentage":1.480692,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":3.236721,"s2:not_vegetated_percentage":2.365284,"s2:degraded_msi_data_percentage":0.0013,"s2:high_proba_clouds_percentage":59.503609,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.087296,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500","bbox":[146.9993171,73.7783931,150.7431996,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R60m/T55XEC_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R60m/T55XEC_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.55186,73.9082891],[150.2579129,73.8063941],[150.1785294,73.7783931],[146.9993576,73.8046111],[146.9993171,74.7887762],[150.7431996,74.7577532],[150.55186,73.9082891]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEC_N05.11","eo:cloud_cover":68.469048,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":7.635746,"s2:mean_solar_zenith":53.4833641272104,"s2:mean_solar_azimuth":193.275554588597,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":23.895152,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":1.61995,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.685422,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.00006,"s2:degraded_msi_data_percentage":0.0197,"s2:high_proba_clouds_percentage":52.331609,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.517485,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951","bbox":[146.9993572,72.901175,149.0036291,73.8089506],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R60m/T55XEB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R60m/T55XEB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.9993572,73.8089506],[147.1427832,73.7794979],[147.1388486,73.7779517],[147.7229513,73.6506409],[147.7233951,73.650813],[147.7235094,73.6507881],[147.7236932,73.6508593],[147.7240475,73.6507822],[147.7243296,73.6508916],[147.7243504,73.6508871],[147.7247691,73.6510496],[147.7248505,73.6510319],[147.7255062,73.6512862],[147.7257039,73.6512433],[147.7261293,73.6514081],[147.7263864,73.6513524],[147.7267364,73.6514879],[147.7270351,73.6514232],[147.727791,73.651716],[147.7280459,73.6516608],[147.7281685,73.6517083],[148.1005415,73.5684062],[148.3843142,73.504544],[148.3808209,73.5032084],[149.0036291,73.3532031],[148.6905197,73.2352856],[148.3769724,73.1148966],[148.0677956,72.9940723],[147.8341147,72.901175],[146.9993903,72.9080271],[146.9993572,73.8089506]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XEB_N05.11","eo:cloud_cover":2.939822,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":97.059447,"s2:mean_solar_zenith":52.6086159254848,"s2:mean_solar_azimuth":193.380384898633,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000733,"s2:thin_cirrus_percentage":2.770614,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":67.427117,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0269,"s2:high_proba_clouds_percentage":0.010828,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.15838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500","bbox":[146.9993542,73.2165381,150.4241503,73.8922753],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R60m/T55XEB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R60m/T55XEB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.9964017,73.3707326],[148.0002195,73.3721947],[147.7680023,73.4239233],[147.412226,73.503572],[147.4092088,73.5024014],[147.0642351,73.5769222],[146.9993652,73.5909837],[146.9993542,73.8922753],[150.4241503,73.8640193],[150.2579129,73.8063941],[149.9231974,73.6883294],[149.5927626,73.5697675],[149.2665598,73.4507085],[148.9449355,73.3311567],[148.6417125,73.2165381],[148.2633675,73.3068357],[147.9964017,73.3707326]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEB_N05.11","eo:cloud_cover":30.561236,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":69.43807,"s2:mean_solar_zenith":52.6086159254848,"s2:mean_solar_azimuth":193.380384898633,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":8.89519,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":59.988683,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000697,"s2:degraded_msi_data_percentage":0.0254,"s2:high_proba_clouds_percentage":16.320927,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":5.34512,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951","bbox":[146.9993873,72.5599198,148.0501794,72.9956989],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R60m/T55XEA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R60m/T55XEA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.0501794,72.9870692],[147.7628731,72.8728537],[147.4620504,72.751222],[147.1650834,72.6291719],[146.9994017,72.5599198],[146.9993873,72.9956989],[148.0501794,72.9870692]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XEA_N05.11","eo:cloud_cover":12.590303,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":74.539685,"s2:mean_solar_zenith":51.7346580706931,"s2:mean_solar_azimuth":193.502587708943,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":12.870012,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":11.001419,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":93.117845,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.228802,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.360082,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500","bbox":[144.9727037,76.4766174,147.3974775,77.2812842],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R60m/T55XDF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R60m/T55XDF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[144.9727037,76.4766174],[145.3052262,76.5938859],[145.6660787,76.7184031],[146.0332306,76.8424469],[146.4064577,76.966006],[146.7860659,77.0890777],[147.1725997,77.2116075],[147.3974775,77.2812842],[147.3743463,76.4931072],[144.9727037,76.4766174]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDF_N05.11","eo:cloud_cover":97.803628,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.196238,"s2:mean_solar_zenith":55.9469383487191,"s2:mean_solar_azimuth":188.652071215512,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.00006,"s2:thin_cirrus_percentage":0.096082,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":77.772284,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000075,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":91.611886,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.09566,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500","bbox":[143.3258015,75.5697411,147.376745,76.580749],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R60m/T55XDE_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R60m/T55XDE_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.3258015,75.8586838],[143.5955298,75.9644114],[143.9254381,76.0911774],[144.2610233,76.2175534],[144.6027971,76.3434738],[144.9508318,76.4689039],[145.2260891,76.5659771],[147.376745,76.580749],[147.3515061,75.5967575],[143.4016102,75.5697411],[143.3258015,75.8586838]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDE_N05.11","eo:cloud_cover":90.807956,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.909883,"s2:mean_solar_zenith":55.0674685642311,"s2:mean_solar_azimuth":188.93362573964,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.239319,"s2:vegetation_percentage":1.220182,"s2:thin_cirrus_percentage":0.605449,"s2:cloud_shadow_percentage":0.091088,"s2:nodata_pixel_percentage":17.870143,"s2:unclassified_percentage":0.886826,"s2:not_vegetated_percentage":3.844749,"s2:degraded_msi_data_percentage":0.0112,"s2:high_proba_clouds_percentage":81.95383,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.248676,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500","bbox":[143.3801086,74.6749694,147.353612,75.684406],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R60m/T55XDD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R60m/T55XDD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.3801086,75.6572177],[147.353612,75.684406],[147.3313691,74.7003374],[143.6072622,74.6749694],[143.3801086,75.6572177]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDD_N05.11","eo:cloud_cover":58.769011,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":6.432378,"s2:mean_solar_zenith":54.188595245275,"s2:mean_solar_azimuth":189.20742134287,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":18.296257,"s2:vegetation_percentage":4.808707,"s2:thin_cirrus_percentage":15.144363,"s2:cloud_shadow_percentage":0.7723,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.309027,"s2:not_vegetated_percentage":9.612324,"s2:degraded_msi_data_percentage":0.0249,"s2:high_proba_clouds_percentage":32.176167,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.448479,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951","bbox":[143.6576412,73.7804829,147.0309408,74.4243973],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R60m/T55XDC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R60m/T55XDC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.6576412,74.4243973],[143.8425029,74.3949498],[143.8427858,74.3950704],[143.8428508,74.3950601],[143.8432757,74.3952413],[143.8433346,74.3952319],[143.8442535,74.3956238],[143.8455124,74.3954229],[143.8477618,74.3963821],[143.8611116,74.3941139],[144.564333,74.2744318],[144.5600383,74.2726344],[145.1837304,74.1618627],[145.183849,74.1619116],[145.1839586,74.1618921],[145.1842111,74.1619961],[145.1843403,74.1619731],[145.1848576,74.1621862],[145.1854279,74.1620849],[145.18592,74.1622875],[145.1861034,74.1622549],[145.1886967,74.163322],[145.8756247,74.034811],[145.8715136,74.0331463],[146.4711492,73.9150241],[146.4713366,73.9150989],[146.4714534,73.9150759],[146.4717724,73.9152032],[146.4720054,73.9151573],[146.4729092,73.9155181],[146.4735859,73.9153848],[146.4740415,73.9155666],[146.4745134,73.9154737],[146.4762838,73.9161797],[146.7211208,73.8660542],[146.8460013,73.8404424],[147.0309408,73.8024649],[143.7898569,73.7804829],[143.6576412,74.4243973]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XDC_N05.11","eo:cloud_cover":8.149624,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":91.848963,"s2:mean_solar_zenith":53.3108710887811,"s2:mean_solar_azimuth":189.475936283652,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001413,"s2:thin_cirrus_percentage":8.13981,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":69.469947,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.002,"s2:high_proba_clouds_percentage":0.001554,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.008259,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500","bbox":[143.5881136,73.795527,147.3332438,74.7885307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R60m/T55XDC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R60m/T55XDC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.0080057,73.795527],[145.9698994,73.8030006],[145.4871549,73.8978162],[145.4905777,73.8992053],[145.4899398,73.8993243],[145.49035,73.8994909],[145.4900864,73.89954],[145.4905524,73.8997292],[144.8815565,74.0132759],[144.8811576,74.0131115],[144.880944,74.0131514],[144.8801573,74.012827],[144.8800192,74.0128527],[144.8767525,74.0115065],[144.1773071,74.1355529],[144.1811868,74.1371806],[144.1796693,74.1374379],[144.1809535,74.1379769],[143.6996537,74.2197888],[143.5881136,74.763009],[147.3332438,74.7885307],[147.313497,73.8043812],[146.0080057,73.795527]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDC_N05.11","eo:cloud_cover":28.899541,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":71.100444,"s2:mean_solar_zenith":53.3108710887811,"s2:mean_solar_azimuth":189.475936283652,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000015,"s2:thin_cirrus_percentage":13.928008,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":13.920067,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0067,"s2:high_proba_clouds_percentage":8.524251,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.447282,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951","bbox":[143.7728973,72.8852322,147.3124334,73.887309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R60m/T55XDB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R60m/T55XDB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.617302,73.887309],[146.7211208,73.8660542],[146.8460013,73.8404424],[147.1427832,73.7794979],[147.1388486,73.7779517],[147.3124334,73.7401172],[147.297514,72.90781],[143.9532063,72.8852322],[143.7728973,73.8680091],[146.617302,73.887309]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XDB_N05.11","eo:cloud_cover":1.884676,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":98.115051,"s2:mean_solar_zenith":52.4332724762266,"s2:mean_solar_azimuth":189.741694550662,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000273,"s2:thin_cirrus_percentage":1.371634,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":1.536909,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0111,"s2:high_proba_clouds_percentage":0.180282,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.332761,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500","bbox":[145.5766032,73.524143,147.3151567,73.8920442],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R60m/T55XDB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R60m/T55XDB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.308562,73.524143],[147.0642351,73.5769222],[146.7539348,73.6441841],[146.757624,73.6456368],[146.1872056,73.761992],[146.1629589,73.7669515],[146.1599113,73.7657346],[145.9698994,73.8030006],[145.5766032,73.8802477],[147.3151567,73.8920442],[147.308562,73.524143]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDB_N05.11","eo:cloud_cover":8.546601,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":91.453397,"s2:mean_solar_zenith":52.4332724762266,"s2:mean_solar_azimuth":189.741694550662,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":7.799733,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":90.71641,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.020871,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.725997,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951","bbox":[143.9380027,71.989773,147.2990014,72.9954806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R60m/T55XDA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R60m/T55XDA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.2939546,72.6821365],[147.1650834,72.6291719],[146.8721115,72.5067147],[146.5833251,72.3838049],[146.2981795,72.2604713],[146.0160354,72.1367849],[145.8225341,72.0506566],[145.7348784,72.0116786],[145.7103461,72.0005912],[144.1000757,71.989773],[143.9380027,72.9727797],[147.2990014,72.9954806],[147.2939546,72.6821365]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XDA_N05.11","eo:cloud_cover":4.178511,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":45.487988,"s2:mean_solar_zenith":51.5563580868775,"s2:mean_solar_azimuth":190.006349868291,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":19.9306,"s2:vegetation_percentage":18.95621,"s2:thin_cirrus_percentage":3.178966,"s2:cloud_shadow_percentage":0.016211,"s2:nodata_pixel_percentage":16.86351,"s2:unclassified_percentage":0.001732,"s2:not_vegetated_percentage":11.428755,"s2:degraded_msi_data_percentage":0.0268,"s2:high_proba_clouds_percentage":0.226987,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.772558,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951","bbox":[144.0862883,71.2917806,145.911249,72.090144],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R60m/T55WDV_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R60m/T55WDV_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[145.911249,72.090144],[145.8225341,72.0506566],[145.7348784,72.0116786],[145.6002591,71.9508375],[145.4618036,71.8883175],[145.1900375,71.7635196],[144.9218929,71.638388],[144.657853,71.5128494],[144.3973893,71.387001],[144.2033674,71.2917806],[144.0862883,72.0778773],[145.911249,72.090144]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WDV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55WDV_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":20.162447,"s2:mean_solar_zenith":50.6806861481694,"s2:mean_solar_azimuth":190.271271226905,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":61.317939,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":77.268368,"s2:unclassified_percentage":0.007108,"s2:not_vegetated_percentage":18.512507,"s2:degraded_msi_data_percentage":0.013,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951","bbox":[143.8987666,71.9504888,147.4017391,72.972798],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R60m/T54XXF_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R60m/T54XXF_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.334089,72.6986313],[147.1650834,72.6291719],[146.8721115,72.5067147],[146.5833251,72.3838049],[146.2981795,72.2604713],[146.0160354,72.1367849],[145.8225341,72.0506566],[145.7348784,72.0116786],[145.6002591,71.9508375],[145.5994869,71.9504888],[143.8987666,71.9897902],[144.0607752,72.972798],[147.4017391,72.8951551],[147.334089,72.6986313]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XXF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XXF_N05.11","eo:cloud_cover":3.613853,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":44.992217,"s2:mean_solar_zenith":51.5059130620187,"s2:mean_solar_azimuth":189.959083750985,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":16.5314,"s2:vegetation_percentage":22.158545,"s2:thin_cirrus_percentage":2.81934,"s2:cloud_shadow_percentage":0.016218,"s2:nodata_pixel_percentage":18.535386,"s2:unclassified_percentage":0.002317,"s2:not_vegetated_percentage":12.685449,"s2:degraded_msi_data_percentage":0.0267,"s2:high_proba_clouds_percentage":0.182719,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.611794,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500","bbox":[142.642721,75.5641782,145.2301741,76.5461933],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R60m/T54XWK_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R60m/T54XWK_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[142.642721,75.5833488],[142.9522892,75.7096954],[143.2711197,75.8372498],[143.5955298,75.9644114],[143.9254381,76.0911774],[144.2610233,76.2175534],[144.6027971,76.3434738],[144.9508318,76.4689039],[145.1699908,76.5461933],[145.2301741,76.5456907],[144.9477068,75.5641782],[142.642721,75.5833488]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XWK_N05.11","eo:cloud_cover":72.699803,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":5.865882,"s2:mean_solar_zenith":54.9924664658243,"s2:mean_solar_azimuth":186.368779040953,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":2.459931,"s2:vegetation_percentage":3.335379,"s2:thin_cirrus_percentage":4.421542,"s2:cloud_shadow_percentage":0.405315,"s2:nodata_pixel_percentage":70.761877,"s2:unclassified_percentage":2.99689,"s2:not_vegetated_percentage":12.236802,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":53.297496,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.980765,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951","bbox":[140.9993155,74.6932115,141.8890895,74.8190142],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R60m/T54XWJ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R60m/T54XWJ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993155,74.8190142],[141.2888983,74.7793529],[141.6421896,74.7308209],[141.7279364,74.7189072],[141.7270199,74.718493],[141.7271871,74.7184689],[141.7267913,74.7182899],[141.7267941,74.7182895],[141.7233817,74.7167444],[141.8890895,74.6932115],[140.999321,74.7005814],[140.9993155,74.8190142]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWJ_N05.11","eo:cloud_cover":44.347519,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":12.819929,"s2:mean_solar_zenith":54.100346650766,"s2:mean_solar_azimuth":186.364404467272,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":42.826158,"s2:vegetation_percentage":0.001421,"s2:thin_cirrus_percentage":0.680291,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.598808,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.004973,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":27.896923,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.770306,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500","bbox":[140.9993131,74.6697452,144.9712829,75.6692426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R60m/T54XWJ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R60m/T54XWJ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993131,74.8708045],[141.1431699,74.936469],[141.4329284,75.0661884],[141.7274136,75.1955858],[142.0264599,75.3246509],[142.3302554,75.4533604],[142.6387495,75.5817279],[142.8531737,75.6692426],[144.9712829,75.6516194],[144.7222017,74.6697452],[140.999321,74.7005814],[140.9993131,74.8708045]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XWJ_N05.11","eo:cloud_cover":36.025184,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":8.738525,"s2:mean_solar_zenith":54.100346650766,"s2:mean_solar_azimuth":186.364404467272,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":22.222336,"s2:vegetation_percentage":6.057433,"s2:thin_cirrus_percentage":17.357659,"s2:cloud_shadow_percentage":0.880937,"s2:nodata_pixel_percentage":19.857705,"s2:unclassified_percentage":3.742191,"s2:not_vegetated_percentage":22.333394,"s2:degraded_msi_data_percentage":0.0106,"s2:high_proba_clouds_percentage":4.333816,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.33371,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951","bbox":[140.9993171,73.7755608,144.6310856,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R60m/T54XWH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R60m/T54XWH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[141.2343127,74.7868289],[141.2888983,74.7793529],[141.6421896,74.7308209],[141.7279364,74.7189072],[141.7270199,74.718493],[141.7271871,74.7184689],[141.7267913,74.7182899],[141.7267941,74.7182895],[141.7233817,74.7167444],[142.4260678,74.6169529],[142.4274429,74.6175627],[142.4284679,74.6174161],[142.4286886,74.6175139],[142.4293456,74.6174205],[142.4313117,74.6182925],[142.5714281,74.5968342],[143.0565481,74.522405],[143.1901437,74.5018368],[143.1851411,74.4996642],[143.8425029,74.3949498],[143.8427858,74.3950704],[143.8428508,74.3950601],[143.8432757,74.3952413],[143.8433346,74.3952319],[143.8442535,74.3956238],[143.8455124,74.3954229],[143.8477618,74.3963821],[143.8611116,74.3941139],[144.564333,74.2744318],[144.5600383,74.2726344],[144.6310856,74.260016],[144.5219633,73.7755608],[140.9993576,73.8046111],[140.9993171,74.7887762],[141.2343127,74.7868289]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWH_N05.11","eo:cloud_cover":15.946352,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":20.537336,"s2:mean_solar_zenith":53.2089328359889,"s2:mean_solar_azimuth":186.37760112025,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":59.982371,"s2:vegetation_percentage":2.560437,"s2:thin_cirrus_percentage":9.459811,"s2:cloud_shadow_percentage":0.034289,"s2:nodata_pixel_percentage":23.364276,"s2:unclassified_percentage":0.002771,"s2:not_vegetated_percentage":0.936446,"s2:degraded_msi_data_percentage":0.0213,"s2:high_proba_clouds_percentage":2.69999,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.786552,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500","bbox":[140.9993171,74.0629478,144.7431996,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R60m/T54XWH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R60m/T54XWH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[144.5866965,74.0629478],[144.1773071,74.1355529],[144.1811868,74.1371806],[144.1796693,74.1374379],[144.1809535,74.1379769],[143.5452185,74.2460398],[143.540708,74.244115],[142.8065067,74.3613423],[142.809754,74.3627563],[142.8066019,74.3632394],[142.8066661,74.3632673],[142.80603,74.3633653],[142.8066123,74.3636189],[142.1339778,74.467267],[142.1294965,74.4652781],[141.6961413,74.5267268],[141.3473333,74.576475],[141.3517476,74.57848],[140.9993238,74.6268919],[140.9993171,74.7887762],[144.7431996,74.7577532],[144.5866965,74.0629478]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XWH_N05.11","eo:cloud_cover":51.360768,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":12.210329,"s2:mean_solar_zenith":53.208932835989,"s2:mean_solar_azimuth":186.37760112025,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":36.428866,"s2:vegetation_percentage":0.000038,"s2:thin_cirrus_percentage":47.277904,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":56.844443,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0262,"s2:high_proba_clouds_percentage":1.294806,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.788056,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951","bbox":[140.9993542,72.8805816,144.5405623,73.8922753],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R60m/T54XWG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R60m/T54XWG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993542,73.8922753],[144.5405623,73.8630589],[144.3428176,72.8805816],[140.9993903,72.9080271],[140.9993542,73.8922753]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWG_N05.11","eo:cloud_cover":2.097392,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":27.304021,"s2:mean_solar_zenith":52.3171650640296,"s2:mean_solar_azimuth":186.406378672536,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":33.061871,"s2:vegetation_percentage":31.237328,"s2:thin_cirrus_percentage":1.785213,"s2:cloud_shadow_percentage":0.151642,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.05427,"s2:not_vegetated_percentage":6.093477,"s2:degraded_msi_data_percentage":0.0137,"s2:high_proba_clouds_percentage":0.028587,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.283592,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951","bbox":[140.9993873,71.9853678,144.3594919,72.9956989],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R60m/T54XWF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R60m/T54XWF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993873,72.9956989],[144.3594919,72.9681038],[144.181736,71.9853678],[140.9994198,72.0113634],[140.9993873,72.9956989]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWF_N05.11","eo:cloud_cover":0.000063,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":19.687065,"s2:mean_solar_zenith":51.4255870137129,"s2:mean_solar_azimuth":186.449108624762,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":15.100153,"s2:vegetation_percentage":42.105362,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.002445,"s2:not_vegetated_percentage":23.104914,"s2:degraded_msi_data_percentage":0.0019,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000063,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951","bbox":[140.6201516,74.6954927,141.3330181,74.8309812],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R60m/T54XVJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R60m/T54XVJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.6201516,74.6954927],[140.6341605,74.7021176],[140.9119394,74.8309812],[141.2888983,74.7793529],[141.3330181,74.7732921],[141.3313691,74.7003374],[140.6201516,74.6954927]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVJ_N05.11","eo:cloud_cover":74.726093,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":7.062066,"s2:mean_solar_zenith":54.0353756222663,"s2:mean_solar_azimuth":182.361351685279,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":18.206279,"s2:vegetation_percentage":0.001442,"s2:thin_cirrus_percentage":0.115579,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.389578,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.00412,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":53.441209,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.169306,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500","bbox":[140.619971,74.6954915,141.3386848,75.0239973],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R60m/T54XVJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R60m/T54XVJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.619971,74.6954915],[140.8582521,74.8064162],[141.1431699,74.936469],[141.3386848,75.0239973],[141.3313691,74.7003374],[140.619971,74.6954915]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XVJ_N05.11","eo:cloud_cover":77.274442,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":20.548312,"s2:mean_solar_zenith":54.0353756222664,"s2:mean_solar_azimuth":182.361351685279,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.012121,"s2:vegetation_percentage":0.000112,"s2:thin_cirrus_percentage":0.441083,"s2:cloud_shadow_percentage":2.165012,"s2:nodata_pixel_percentage":97.043848,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":42.865559,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":33.967799,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951","bbox":[138.800028,73.7873342,141.3329382,74.7878078],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R60m/T54XVH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R60m/T54XVH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.800028,73.7873342],[139.0408218,73.9136998],[139.296295,74.0458292],[139.5555232,74.1776776],[139.8187172,74.3092406],[140.086072,74.4405095],[140.3578673,74.571457],[140.6341605,74.7021176],[140.8127876,74.784984],[141.2271654,74.7878078],[141.2888983,74.7793529],[141.3329382,74.7733031],[141.313497,73.8043812],[138.800028,73.7873342]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVH_N05.11","eo:cloud_cover":46.900082,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":19.634269,"s2:mean_solar_zenith":53.1422322075326,"s2:mean_solar_azimuth":182.555905771605,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":22.965646,"s2:vegetation_percentage":3.566145,"s2:thin_cirrus_percentage":8.210114,"s2:cloud_shadow_percentage":1.8615,"s2:nodata_pixel_percentage":58.156729,"s2:unclassified_percentage":0.490754,"s2:not_vegetated_percentage":4.581606,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":20.102456,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.58751,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500","bbox":[140.5930405,74.5815923,141.3332438,74.7885307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R60m/T54XVH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R60m/T54XVH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[141.3290916,74.5815923],[140.8795148,74.6433499],[140.5930405,74.6829548],[140.8122043,74.78498],[141.3332438,74.7885307],[141.3290916,74.5815923]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XVH_N05.11","eo:cloud_cover":73.722351,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":14.889362,"s2:mean_solar_zenith":53.1422322075327,"s2:mean_solar_azimuth":182.555905771605,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":11.388166,"s2:vegetation_percentage":0.000119,"s2:thin_cirrus_percentage":2.290314,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":97.210932,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":38.146052,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":33.285987,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951","bbox":[137.8799475,72.8852322,141.3151567,73.8920442],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R60m/T54XVG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R60m/T54XVG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.8799475,73.2845304],[138.0540315,73.382468],[138.2950343,73.5157073],[138.5398695,73.6486677],[138.7885911,73.7813322],[138.9692245,73.8761265],[141.3151567,73.8920442],[141.297514,72.90781],[137.9532063,72.8852322],[137.8799475,73.2845304]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVG_N05.11","eo:cloud_cover":8.419208,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":33.768678,"s2:mean_solar_zenith":52.2486793462447,"s2:mean_solar_azimuth":182.744340259198,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":49.342129,"s2:vegetation_percentage":5.999731,"s2:thin_cirrus_percentage":6.089519,"s2:cloud_shadow_percentage":0.459979,"s2:nodata_pixel_percentage":10.380324,"s2:unclassified_percentage":0.059182,"s2:not_vegetated_percentage":1.951094,"s2:degraded_msi_data_percentage":0.0157,"s2:high_proba_clouds_percentage":0.555568,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.774121,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951","bbox":[137.9380027,71.989773,141.2990014,72.9954806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R60m/T54XVF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R60m/T54XVF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.9380027,72.9727797],[141.2990014,72.9954806],[141.2831475,72.0111578],[138.1000757,71.989773],[137.9380027,72.9727797]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVF_N05.11","eo:cloud_cover":8.302079,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":25.15133,"s2:mean_solar_zenith":51.3552596440843,"s2:mean_solar_azimuth":182.928194484078,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":36.912629,"s2:vegetation_percentage":16.042349,"s2:thin_cirrus_percentage":6.249959,"s2:cloud_shadow_percentage":0.201569,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.006553,"s2:not_vegetated_percentage":13.383493,"s2:degraded_msi_data_percentage":0.0241,"s2:high_proba_clouds_percentage":0.650638,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.401482,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951","bbox":[143.7661688,71.093762,145.78636,72.0778947],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R60m/T54WXE_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R60m/T54WXE_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[145.78636,72.034571],[145.7348784,72.0116786],[145.6002591,71.9508375],[145.4618036,71.8883175],[145.1900375,71.7635196],[144.9218929,71.638388],[144.657853,71.5128494],[144.3973893,71.387001],[144.1403129,71.2608353],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.8058313,71.093762],[143.7661688,71.0946736],[143.9125486,72.0778947],[145.78636,72.034571]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WXE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WXE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":17.80114,"s2:mean_solar_zenith":50.6173097050979,"s2:mean_solar_azimuth":189.890433656743,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":64.843941,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":70.015293,"s2:unclassified_percentage":0.006584,"s2:not_vegetated_percentage":17.348334,"s2:degraded_msi_data_percentage":0.016,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951","bbox":[143.7637458,71.0724966,143.9735536,71.1822592],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R60m/T54WXD_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R60m/T54WXD_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.9735536,71.1777753],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.7637458,71.0724966],[143.7785751,71.1822592],[143.9735536,71.1777753]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WXD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WXD_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":37.691283,"s2:mean_solar_zenith":49.728460700465,"s2:mean_solar_azimuth":189.847226215649,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":52.84155,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.66892,"s2:unclassified_percentage":0.048102,"s2:not_vegetated_percentage":9.419063,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951","bbox":[140.999417,71.0923697,144.196858,72.0995811],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R60m/T54WWE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R60m/T54WWE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[144.0573242,71.2195],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.8030759,71.0923697],[140.9994464,71.1151545],[140.999417,72.0995811],[144.196858,72.073449],[144.0573242,71.2195]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WWE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WWE_N05.11","eo:cloud_cover":0.000043,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":11.577826,"s2:mean_solar_zenith":50.5347458337918,"s2:mean_solar_azimuth":186.504601337355,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00004,"s2:vegetation_percentage":76.62341,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.535061,"s2:unclassified_percentage":0.003769,"s2:not_vegetated_percentage":11.794909,"s2:degraded_msi_data_percentage":0.0199,"s2:high_proba_clouds_percentage":7e-6,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000037,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951","bbox":[140.9994439,70.2091535,143.975301,71.2028426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R60m/T54WWD_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R60m/T54WWD_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.975301,71.1786456],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.6330812,71.0064731],[143.5205388,70.9486732],[143.3873848,70.880465],[143.1424829,70.7530538],[142.9002939,70.6252531],[142.6604381,70.4972318],[142.4236022,70.3689064],[142.1895253,70.2403091],[142.1336098,70.2091535],[140.9994705,70.2183208],[140.9994439,71.2028426],[143.975301,71.1786456]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WWD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WWD_N05.11","eo:cloud_cover":0.000053,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":13.600075,"s2:mean_solar_zenith":49.6435833253783,"s2:mean_solar_azimuth":186.571966927614,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000058,"s2:vegetation_percentage":81.680822,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":31.762895,"s2:unclassified_percentage":0.002431,"s2:not_vegetated_percentage":4.716554,"s2:degraded_msi_data_percentage":0.0283,"s2:high_proba_clouds_percentage":0.00001,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000044,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951","bbox":[140.9994682,69.5568751,142.2901301,70.3060175],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R60m/T54WWC_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R60m/T54WWC_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[142.2901301,70.2955794],[142.1895253,70.2403091],[141.9582319,70.1114347],[141.7294833,69.9824322],[141.5033786,69.8532883],[141.2813115,69.7236358],[141.0612888,69.5938449],[140.9994867,69.5568751],[140.9994682,70.3060175],[142.2901301,70.2955794]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WWC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WWC_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.064775,"s2:mean_solar_zenith":48.7526479783835,"s2:mean_solar_azimuth":186.650496601281,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.002181,"s2:vegetation_percentage":78.974593,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":83.264059,"s2:unclassified_percentage":0.000119,"s2:not_vegetated_percentage":18.958335,"s2:degraded_msi_data_percentage":0.0073,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951","bbox":[138.0862883,71.0946572,141.284496,72.0993744],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R60m/T54WVE_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R60m/T54WVE_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.0862883,72.0778773],[141.284496,72.0993744],[141.2701751,71.1149593],[138.2327264,71.0946572],[138.0862883,72.0778773]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVE_N05.11","eo:cloud_cover":5.863766,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":28.236791,"s2:mean_solar_zenith":50.4625171471027,"s2:mean_solar_azimuth":183.108802615492,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":3.599776,"s2:vegetation_percentage":43.710288,"s2:thin_cirrus_percentage":5.068998,"s2:cloud_shadow_percentage":0.022166,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.020202,"s2:not_vegetated_percentage":18.547009,"s2:degraded_msi_data_percentage":0.0078,"s2:high_proba_clouds_percentage":0.318177,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.476591,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951","bbox":[138.2203151,70.1988218,141.2713887,71.2026464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R60m/T54WVD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R60m/T54WVD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.2203151,71.1822428],[141.2713887,71.2026464],[141.258393,70.2181351],[138.3532315,70.1988218],[138.2203151,71.1822428]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVD_N05.11","eo:cloud_cover":0.000017,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":11.096323,"s2:mean_solar_zenith":49.5693878530036,"s2:mean_solar_azimuth":183.287525469711,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00004,"s2:vegetation_percentage":80.303013,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.001261,"s2:not_vegetated_percentage":8.599345,"s2:degraded_msi_data_percentage":0.0062,"s2:high_proba_clouds_percentage":7e-6,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.00001,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951","bbox":[138.3419414,69.302813,141.2594967,70.3058309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R60m/T54WVC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R60m/T54WVC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[141.252288,69.7065149],[141.0612888,69.5938449],[140.8438762,69.4637893],[140.631353,69.3329125],[140.6054012,69.3169743],[138.4630916,69.302813],[138.3419414,70.2864248],[141.2594967,70.3058309],[141.252288,69.7065149]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVC_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.304452,"s2:mean_solar_zenith":48.6764182398639,"s2:mean_solar_azimuth":183.465358157545,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.070214,"s2:vegetation_percentage":75.791138,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":4.585987,"s2:unclassified_percentage":0.000042,"s2:not_vegetated_percentage":23.83392,"s2:degraded_msi_data_percentage":0.0233,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951","bbox":[138.4527167,68.4071754,140.7503058,69.4061665],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R60m/T54WVB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R60m/T54WVB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.7503058,69.4061665],[140.631353,69.3329125],[140.4187678,69.2023538],[140.2079766,69.0715492],[139.9991895,68.9404648],[139.7925405,68.8091917],[139.5884797,68.6776793],[139.38814,68.5455772],[139.1906958,68.413147],[139.1878784,68.4112778],[138.5635706,68.4071754],[138.4527167,69.3909702],[140.7503058,69.4061665]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVB_N05.11","eo:cloud_cover":3.335383,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.970102,"s2:mean_solar_zenith":47.784152898517,"s2:mean_solar_azimuth":183.643037696029,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.071176,"s2:vegetation_percentage":79.263401,"s2:thin_cirrus_percentage":3.248752,"s2:cloud_shadow_percentage":0.290992,"s2:nodata_pixel_percentage":47.297373,"s2:unclassified_percentage":0.009349,"s2:not_vegetated_percentage":15.899885,"s2:degraded_msi_data_percentage":0.0255,"s2:high_proba_clouds_percentage":0.001788,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.084843,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951","bbox":[138.5541183,68.0155973,139.3199586,68.4998464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R60m/T54WVA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R60m/T54WVA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[139.3199586,68.4998464],[139.1906958,68.413147],[139.0044204,68.2895577],[138.99053,68.2803526],[138.978028,68.271814],[138.7975345,68.1490727],[138.6050813,68.0165698],[138.603688,68.0155973],[138.5541183,68.494811],[139.3199586,68.4998464]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVA_N05.11","eo:cloud_cover":6.39925,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.708158,"s2:mean_solar_zenith":46.891533182743,"s2:mean_solar_azimuth":183.821664487087,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":1.753561,"s2:vegetation_percentage":34.304196,"s2:thin_cirrus_percentage":5.917664,"s2:cloud_shadow_percentage":0.006917,"s2:nodata_pixel_percentage":93.140912,"s2:unclassified_percentage":0.039955,"s2:not_vegetated_percentage":52.866346,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.017849,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.463737,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951","bbox":[137.8987666,71.9166252,141.4017391,72.972798],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R60m/T53XPA_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R60m/T53XPA_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.0607752,72.972798],[141.4017391,72.8951551],[141.0648961,71.9166252],[137.8987666,71.9897902],[138.0607752,72.972798]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53XPA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53XPA_N05.11","eo:cloud_cover":8.471534,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":25.152224,"s2:mean_solar_zenith":51.305817275075,"s2:mean_solar_azimuth":182.876057466885,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":35.284233,"s2:vegetation_percentage":16.72368,"s2:thin_cirrus_percentage":6.34322,"s2:cloud_shadow_percentage":0.240537,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.005819,"s2:not_vegetated_percentage":14.121971,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":0.718425,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.409889,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951","bbox":[137.1986657,72.8805816,138.4922012,73.6227809],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R60m/T53XNB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R60m/T53XNB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.1986657,72.8899737],[137.3529907,72.9812994],[137.5830159,73.1152239],[137.8167258,73.2489626],[138.0540315,73.382468],[138.2950343,73.5157073],[138.4922012,73.6227809],[138.3428176,72.8805816],[137.1986657,72.8899737]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53XNB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53XNB_N05.11","eo:cloud_cover":10.7994,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":22.729982,"s2:mean_solar_zenith":52.2312101532652,"s2:mean_solar_azimuth":179.393948289904,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":66.468495,"s2:vegetation_percentage":0.002124,"s2:thin_cirrus_percentage":9.430973,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":87.50307,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.240589,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.127837,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951","bbox":[135.7810207,71.9853678,138.3594919,72.9764372],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R60m/T53XNA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R60m/T53XNA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[135.7810207,72.0049787],[135.8306676,72.0376004],[136.0398937,72.1730333],[136.25145,72.3082848],[136.4654229,72.4433503],[136.6822884,72.5782131],[136.9025759,72.7128205],[137.1263184,72.8471604],[137.3447744,72.9764372],[138.3594919,72.9681038],[138.181736,71.9853678],[135.7810207,72.0049787]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53XNA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53XNA_N05.11","eo:cloud_cover":4.452536,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":95.541453,"s2:mean_solar_zenith":51.3351404866702,"s2:mean_solar_azimuth":179.353434492462,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.006011,"s2:thin_cirrus_percentage":3.826519,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":47.843993,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0008,"s2:high_proba_clouds_percentage":0.184047,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.441969,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951","bbox":[137.7661688,71.0251958,141.093564,72.0778947],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R60m/T53WPV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R60m/T53WPV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.9125486,72.0778947],[141.093564,72.0043476],[140.7889605,71.0251958],[137.7661688,71.0946736],[137.9125486,72.0778947]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPV_N05.11","eo:cloud_cover":5.74511,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":32.687479,"s2:mean_solar_zenith":50.4111090772672,"s2:mean_solar_azimuth":182.720923216345,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":4.85146,"s2:vegetation_percentage":37.601638,"s2:thin_cirrus_percentage":5.047541,"s2:cloud_shadow_percentage":0.023882,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.018172,"s2:not_vegetated_percentage":19.072258,"s2:degraded_msi_data_percentage":0.0117,"s2:high_proba_clouds_percentage":0.269389,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.42818,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951","bbox":[137.6457116,70.1327293,140.814787,71.1822592],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R60m/T53WPU_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R60m/T53WPU_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.7785751,71.1822592],[140.814787,71.1124355],[140.5381092,70.1327293],[137.6457116,70.1988374],[137.7785751,71.1822592]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPU_N05.11","eo:cloud_cover":3e-6,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":13.414465,"s2:mean_solar_zenith":49.5157431265834,"s2:mean_solar_azimuth":182.587133584315,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":77.782768,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.001921,"s2:not_vegetated_percentage":8.80084,"s2:degraded_msi_data_percentage":0.0012,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3e-6,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951","bbox":[137.5358953,69.2398107,140.5616186,70.2864405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R60m/T53WPT_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R60m/T53WPT_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.6569973,70.2864405],[140.5616186,70.2200158],[140.3092739,69.2398107],[137.5358953,69.3028279],[137.6569973,70.2864405]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPT_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.085959,"s2:mean_solar_zenith":48.6202573099626,"s2:mean_solar_azimuth":182.472257995074,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.097359,"s2:vegetation_percentage":76.235116,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":23.58157,"s2:degraded_msi_data_percentage":0.0173,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951","bbox":[137.4354563,68.3690508,140.3308902,69.3909851],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R60m/T53WPS_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R60m/T53WPS_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.2812653,69.1170279],[140.2079766,69.0715492],[139.9991895,68.9404648],[139.7925405,68.8091917],[139.5884797,68.6776793],[139.38814,68.5455772],[139.1906958,68.413147],[139.1242334,68.3690508],[137.4354563,68.4071896],[137.546266,69.3909851],[140.3308902,69.3276752],[140.2812653,69.1170279]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPS_N05.11","eo:cloud_cover":9.896792,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.361735,"s2:mean_solar_zenith":47.7251878306583,"s2:mean_solar_azimuth":182.374139174231,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.202622,"s2:vegetation_percentage":71.319681,"s2:thin_cirrus_percentage":6.357141,"s2:cloud_shadow_percentage":1.606275,"s2:nodata_pixel_percentage":14.510258,"s2:unclassified_percentage":0.019405,"s2:not_vegetated_percentage":15.364692,"s2:degraded_msi_data_percentage":0.0247,"s2:high_proba_clouds_percentage":1.873058,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.666593,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951","bbox":[137.3431637,67.4987463,139.2516026,68.4948252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R60m/T53WPR_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R60m/T53WPR_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[139.2516026,68.4539985],[139.1906958,68.413147],[139.0044204,68.2895577],[138.99053,68.2803526],[138.978028,68.271814],[138.7975345,68.1490727],[138.6050813,68.0165698],[138.414898,67.8838321],[138.2278795,67.7506648],[138.0449052,67.6167832],[137.8826614,67.4987463],[137.3431637,67.5108527],[137.4449048,68.4948252],[139.2516026,68.4539985]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPR_N05.11","eo:cloud_cover":50.947386,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.132876,"s2:mean_solar_zenith":46.829461693452,"s2:mean_solar_azimuth":182.29099033466,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.371113,"s2:vegetation_percentage":28.684637,"s2:thin_cirrus_percentage":14.934808,"s2:cloud_shadow_percentage":2.099002,"s2:nodata_pixel_percentage":55.891585,"s2:unclassified_percentage":0.706798,"s2:not_vegetated_percentage":16.609885,"s2:degraded_msi_data_percentage":0.0239,"s2:high_proba_clouds_percentage":21.74134,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.271238,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951","bbox":[137.3011384,67.0659149,137.9997823,67.5985039],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R60m/T53WPQ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R60m/T53WPQ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.9997823,67.583955],[137.8613163,67.4832171],[137.6800852,67.3492598],[137.5000028,67.2152473],[137.3213521,67.0811797],[137.3011384,67.0659149],[137.3518535,67.5985039],[137.9997823,67.583955]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPQ_N05.11","eo:cloud_cover":80.372506,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.581574,"s2:mean_solar_zenith":45.9336159916215,"s2:mean_solar_azimuth":182.221357511726,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.009367,"s2:vegetation_percentage":12.079749,"s2:thin_cirrus_percentage":13.551554,"s2:cloud_shadow_percentage":1.584354,"s2:nodata_pixel_percentage":93.269897,"s2:unclassified_percentage":1.45884,"s2:not_vegetated_percentage":3.908234,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":25.341576,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.479379,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951","bbox":[134.9994355,71.0904748,138.196858,72.0920994],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R60m/T53WNV_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R60m/T53WNV_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994355,71.4781682],[135.0219441,71.4939117],[135.2197311,71.6301191],[135.4205147,71.7661413],[135.6242101,71.9019427],[135.8306676,72.0376004],[135.9148614,72.0920994],[138.196858,72.073449],[138.0362417,71.0904748],[134.9994464,71.1151545],[134.9994355,71.4781682]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNV_N05.11","eo:cloud_cover":0.039394,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":36.798185,"s2:mean_solar_zenith":50.4394772497286,"s2:mean_solar_azimuth":179.321853230839,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":27.153489,"s2:vegetation_percentage":20.840448,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":9.368174,"s2:unclassified_percentage":0.006403,"s2:not_vegetated_percentage":15.162079,"s2:degraded_msi_data_percentage":0.0173,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.039394,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951","bbox":[134.9994439,70.1948429,138.049855,71.2028426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R60m/T53WNU_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R60m/T53WNU_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994439,71.2028426],[138.049855,71.1780394],[137.9040632,70.1948429],[134.9994705,70.2183208],[134.9994439,71.2028426]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNU_N05.11","eo:cloud_cover":0.488346,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":16.513933,"s2:mean_solar_zenith":49.543143601069,"s2:mean_solar_azimuth":179.298078790733,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001158,"s2:vegetation_percentage":77.088505,"s2:thin_cirrus_percentage":0.47116,"s2:cloud_shadow_percentage":0.000617,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.008119,"s2:not_vegetated_percentage":5.899327,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.017186,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951","bbox":[134.9994682,69.2990206,137.9164472,70.3060175],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R60m/T53WNT_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R60m/T53WNT_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994682,70.3060175],[137.9164472,70.2824267],[137.7835563,69.2990206],[134.9994925,69.3213967],[134.9994682,70.3060175]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNT_N05.11","eo:cloud_cover":4.688246,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.84148,"s2:mean_solar_zenith":48.6466760123962,"s2:mean_solar_azimuth":179.281215552931,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.02204,"s2:vegetation_percentage":77.097553,"s2:thin_cirrus_percentage":4.368287,"s2:cloud_shadow_percentage":0.050149,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.002482,"s2:not_vegetated_percentage":17.298049,"s2:degraded_msi_data_percentage":0.0154,"s2:high_proba_clouds_percentage":0.000292,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.319667,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951","bbox":[134.9994904,68.4035546,137.7949369,69.4096405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R60m/T53WNS_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R60m/T53WNS_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994904,69.4096405],[137.7949369,69.3871601],[137.6733361,68.4035546],[134.9995126,68.4249171],[134.9994904,69.4096405]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNS_N05.11","eo:cloud_cover":3.499497,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.498203,"s2:mean_solar_zenith":47.750610937167,"s2:mean_solar_azimuth":179.27051116146,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000332,"s2:vegetation_percentage":83.526266,"s2:thin_cirrus_percentage":2.582646,"s2:cloud_shadow_percentage":0.218712,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.010491,"s2:not_vegetated_percentage":12.246495,"s2:degraded_msi_data_percentage":0.0003,"s2:high_proba_clouds_percentage":0.441279,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.475572,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951","bbox":[134.9995107,67.5073771,137.6837049,68.5126321],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R60m/T53WNR_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R60m/T53WNR_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9995107,68.5126321],[137.6837049,68.491174],[137.5720525,67.5073771],[134.9995311,67.5278024],[134.9995107,68.5126321]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNR_N05.11","eo:cloud_cover":36.66355,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.499322,"s2:mean_solar_zenith":46.8538715277138,"s2:mean_solar_azimuth":179.265415984781,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.004509,"s2:vegetation_percentage":44.98021,"s2:thin_cirrus_percentage":10.196213,"s2:cloud_shadow_percentage":3.757443,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":2.886065,"s2:not_vegetated_percentage":11.208901,"s2:degraded_msi_data_percentage":0.0146,"s2:high_proba_clouds_percentage":17.368774,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.098563,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951","bbox":[134.9995294,66.6170156,137.581589,67.6155271],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R60m/T53WNQ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R60m/T53WNQ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.5454291,67.2490523],[137.5000028,67.2152473],[137.3213521,67.0811797],[137.1438475,66.9471341],[136.9697618,66.8125882],[136.7971426,66.6780005],[136.7200851,66.6170156],[134.9995482,66.6305875],[134.9995294,67.6155271],[137.581589,67.5950132],[137.5454291,67.2490523]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNQ_N05.11","eo:cloud_cover":71.882689,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.241975,"s2:mean_solar_zenith":45.956994707828,"s2:mean_solar_azimuth":179.265390275024,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000881,"s2:vegetation_percentage":11.376605,"s2:thin_cirrus_percentage":8.059323,"s2:cloud_shadow_percentage":3.133707,"s2:nodata_pixel_percentage":10.036112,"s2:unclassified_percentage":6.558467,"s2:not_vegetated_percentage":6.805665,"s2:degraded_msi_data_percentage":0.0236,"s2:high_proba_clouds_percentage":44.913453,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.909921,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951","bbox":[134.9995465,65.7288235,136.8310071,66.7188603],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R60m/T53WNP_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R60m/T53WNP_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[136.8310071,66.7044039],[136.7971426,66.6780005],[136.6268255,66.5432079],[136.4554565,66.4089337],[136.2905121,66.2734345],[136.124355,66.1384481],[135.9590236,66.0034615],[135.7973805,65.8677223],[135.6387393,65.7314011],[135.6357109,65.7288235],[134.9995639,65.7338076],[134.9995465,66.7188603],[136.8310071,66.7044039]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNP_N05.11","eo:cloud_cover":79.262155,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.064865,"s2:mean_solar_zenith":45.0605176677555,"s2:mean_solar_azimuth":179.27010740126,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001381,"s2:vegetation_percentage":11.749259,"s2:thin_cirrus_percentage":35.7537,"s2:cloud_shadow_percentage":1.796817,"s2:nodata_pixel_percentage":50.036603,"s2:unclassified_percentage":1.188451,"s2:not_vegetated_percentage":5.935958,"s2:degraded_msi_data_percentage":0.0263,"s2:high_proba_clouds_percentage":7.194892,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":36.313558,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951","bbox":[134.9995624,65.1784831,135.7369237,65.8215524],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R60m/T53WNN_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R60m/T53WNN_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[135.7369237,65.8157714],[135.6387393,65.7314011],[135.4790342,65.5954711],[135.3203988,65.4595167],[135.1640839,65.3232305],[135.009083,65.1869289],[134.9995729,65.1784831],[134.9995624,65.8215524],[135.7369237,65.8157714]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNN_N05.11","eo:cloud_cover":99.833322,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000033,"s2:mean_solar_zenith":44.163363602334,"s2:mean_solar_azimuth":179.279169599448,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.150944,"s2:thin_cirrus_percentage":28.099704,"s2:cloud_shadow_percentage":0.000668,"s2:nodata_pixel_percentage":90.066993,"s2:unclassified_percentage":0.001436,"s2:not_vegetated_percentage":0.013595,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":14.312494,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":57.421124,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951","bbox":[134.4811106,71.1096852,135.2782462,71.6697606],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R60m/T53WMV_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R60m/T53WMV_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.4811106,71.1096852],[134.6351874,71.2210221],[134.8269898,71.3575522],[135.0219441,71.4939117],[135.2197311,71.6301191],[135.2782462,71.6697606],[135.2701751,71.1149593],[134.4811106,71.1096852]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMV_N05.11","eo:cloud_cover":0.039226,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":24.383707,"s2:mean_solar_zenith":50.4784982490092,"s2:mean_solar_azimuth":175.916797651609,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.759301,"s2:vegetation_percentage":45.216641,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":92.96276,"s2:unclassified_percentage":0.023998,"s2:not_vegetated_percentage":29.577124,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.039226,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951","bbox":[133.2861284,70.2050237,135.2713887,71.2026464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R60m/T53WMU_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R60m/T53WMU_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.2861284,70.2050237],[133.3563274,70.2605362],[133.533248,70.3982007],[133.7113221,70.5358675],[133.8919369,70.6731953],[134.0746049,70.8103348],[134.2592913,70.9473583],[134.4459812,71.0843005],[134.6035773,71.1981805],[135.2713887,71.2026464],[135.258393,70.2181351],[133.2861284,70.2050237]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMU_N05.11","eo:cloud_cover":0.35225,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":3.292965,"s2:mean_solar_zenith":49.58155452922,"s2:mean_solar_azimuth":176.004006870427,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.002004,"s2:vegetation_percentage":90.762228,"s2:thin_cirrus_percentage":0.319707,"s2:cloud_shadow_percentage":0.003768,"s2:nodata_pixel_percentage":55.793881,"s2:unclassified_percentage":0.005914,"s2:not_vegetated_percentage":5.580869,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":8e-6,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.032536,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951","bbox":[132.4375113,69.302813,135.2594967,70.3058309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R60m/T53WMT_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R60m/T53WMT_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.4375113,69.510498],[132.5072291,69.5697717],[132.6725396,69.7081763],[132.8399998,69.846495],[133.010646,69.9845106],[133.1819808,70.122665],[133.3563274,70.2605362],[133.3986312,70.2934534],[135.2594967,70.3058309],[135.2476536,69.3212198],[132.4630916,69.302813],[132.4375113,69.510498]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMT_N05.11","eo:cloud_cover":0.83192,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.963727,"s2:mean_solar_zenith":48.684473752372,"s2:mean_solar_azimuth":176.085958812526,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.012127,"s2:vegetation_percentage":82.922882,"s2:thin_cirrus_percentage":0.805923,"s2:cloud_shadow_percentage":0.00147,"s2:nodata_pixel_percentage":14.697061,"s2:unclassified_percentage":0.003228,"s2:not_vegetated_percentage":15.264641,"s2:degraded_msi_data_percentage":0.014,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.025997,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951","bbox":[132.4527167,68.4071754,135.2486677,69.4094627],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R60m/T53WMS_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R60m/T53WMS_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.4527167,69.3909702],[135.2486677,69.4094627],[135.2378328,68.4247482],[132.5635706,68.4071754],[132.4527167,69.3909702]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMS_N05.11","eo:cloud_cover":1.381439,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.717108,"s2:mean_solar_zenith":47.7877908664443,"s2:mean_solar_azimuth":176.163362195745,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":80.133373,"s2:thin_cirrus_percentage":0.558542,"s2:cloud_shadow_percentage":0.66032,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.270719,"s2:not_vegetated_percentage":15.837045,"s2:degraded_msi_data_percentage":0.023,"s2:high_proba_clouds_percentage":0.428001,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.394896,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951","bbox":[132.5541183,67.5108391,135.2387566,68.5124624],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R60m/T53WMR_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R60m/T53WMR_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.5541183,68.494811],[135.2387566,68.5124624],[135.2288099,67.5276409],[132.6559,67.5108391],[132.5541183,68.494811]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMR_N05.11","eo:cloud_cover":1.407487,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.355294,"s2:mean_solar_zenith":46.8904280749316,"s2:mean_solar_azimuth":176.236873363626,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.387017,"s2:thin_cirrus_percentage":0.862691,"s2:cloud_shadow_percentage":0.62312,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.23916,"s2:not_vegetated_percentage":12.987924,"s2:degraded_msi_data_percentage":0.0178,"s2:high_proba_clouds_percentage":0.214253,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.330543,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951","bbox":[132.6472067,66.6143459,135.2296594,67.6153648],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R60m/T53WMQ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R60m/T53WMQ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.6472067,67.5984902],[135.2296594,67.6153648],[135.2204986,66.6304328],[132.7409581,66.6143459],[132.6472067,67.5984902]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMQ_N05.11","eo:cloud_cover":48.034894,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.562238,"s2:mean_solar_zenith":45.9929211883906,"s2:mean_solar_azimuth":176.306964756757,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":43.581593,"s2:thin_cirrus_percentage":24.397135,"s2:cloud_shadow_percentage":1.614102,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.005252,"s2:not_vegetated_percentage":5.20192,"s2:degraded_msi_data_percentage":0.0018,"s2:high_proba_clouds_percentage":9.764101,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.873656,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951","bbox":[132.732889,65.718237,135.221287,66.718705],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R60m/T53WMP_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R60m/T53WMP_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.732889,66.7025501],[135.221287,66.718705],[135.2128247,65.7336593],[132.8195021,65.718237],[132.732889,66.7025501]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMP_N05.11","eo:cloud_cover":96.877158,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":45.0958071044653,"s2:mean_solar_azimuth":176.374033706648,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":1.051838,"s2:thin_cirrus_percentage":17.849383,"s2:cloud_shadow_percentage":0.780558,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.527862,"s2:not_vegetated_percentage":0.762589,"s2:degraded_msi_data_percentage":0.012,"s2:high_proba_clouds_percentage":28.265235,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":50.762534,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951","bbox":[132.8120825,64.8214388,135.2135496,65.8214035],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R60m/T53WMN_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R60m/T53WMN_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[135.2099039,65.3631796],[135.1640839,65.3232305],[135.009083,65.1869289],[134.8555479,65.0505759],[134.7035955,64.9141124],[134.6140229,64.8324549],[132.8923143,64.8214388],[132.8120825,65.8059182],[135.2135496,65.8214035],[135.2099039,65.3631796]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMN_N05.11","eo:cloud_cover":98.44386,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.028701,"s2:mean_solar_zenith":44.1980073241091,"s2:mean_solar_azimuth":176.438516584663,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00057,"s2:vegetation_percentage":1.056921,"s2:thin_cirrus_percentage":20.16459,"s2:cloud_shadow_percentage":0.393805,"s2:nodata_pixel_percentage":6.942555,"s2:unclassified_percentage":0.029457,"s2:not_vegetated_percentage":0.044553,"s2:degraded_msi_data_percentage":0.0227,"s2:high_proba_clouds_percentage":46.016845,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":32.26243,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951","bbox":[132.8854324,63.9244911,134.7110691,64.9208241],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R60m/T53WMM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R60m/T53WMM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.7110691,64.9208241],[134.7035955,64.9141124],[134.5536454,64.7774128],[134.4045168,64.6408004],[134.2802415,64.524936],[134.2564905,64.5028569],[134.2103015,64.4586964],[134.1136279,64.3664568],[133.9697259,64.2290907],[133.8236568,64.0922739],[133.6820659,63.954531],[133.6563042,63.9289139],[132.9599395,63.9244911],[132.8854324,64.9091348],[134.7110691,64.9208241]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMM_N05.11","eo:cloud_cover":33.978871,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.19202,"s2:mean_solar_zenith":43.3000574461588,"s2:mean_solar_azimuth":176.500781592237,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.743309,"s2:vegetation_percentage":30.364639,"s2:thin_cirrus_percentage":15.058976,"s2:cloud_shadow_percentage":0.091821,"s2:nodata_pixel_percentage":45.192254,"s2:unclassified_percentage":0.995471,"s2:not_vegetated_percentage":21.746081,"s2:degraded_msi_data_percentage":0.0279,"s2:high_proba_clouds_percentage":7.460166,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.459728,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951","bbox":[132.9535015,63.2747981,133.7470856,64.0177837],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R60m/T53VML_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R60m/T53VML_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.7470856,64.0177837],[133.6820659,63.954531],[133.5430972,63.816342],[133.4042308,63.6782928],[133.2668301,63.5400978],[133.1303171,63.4019607],[133.0054708,63.2747981],[132.9535015,64.0127397],[133.7470856,64.0177837]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53VML","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53VML_N05.11","eo:cloud_cover":12.662388,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.697701,"s2:mean_solar_zenith":42.4024958912698,"s2:mean_solar_azimuth":176.56100877451,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.731281,"s2:vegetation_percentage":71.997678,"s2:thin_cirrus_percentage":12.659788,"s2:cloud_shadow_percentage":0.096674,"s2:nodata_pixel_percentage":86.858964,"s2:unclassified_percentage":0.285579,"s2:not_vegetated_percentage":9.435956,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.000328,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.002272,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951","bbox":[130.913343,62.9866068,133.1897998,64.015435],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R60m/T53VLL_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R60m/T53VLL_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.1897998,63.462151],[133.1303171,63.4019607],[132.994726,63.2638539],[132.8604581,63.1256284],[132.7601712,63.0212492],[131.0515033,62.9866068],[130.913343,63.9696051],[133.1546638,64.015435],[133.1897998,63.462151]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53VLL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53VLL_N05.11","eo:cloud_cover":9.69805,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.908008,"s2:mean_solar_zenith":42.4500229392061,"s2:mean_solar_azimuth":173.818382111021,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.030738,"s2:vegetation_percentage":84.882092,"s2:thin_cirrus_percentage":9.672086,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":4.712111,"s2:unclassified_percentage":0.32355,"s2:not_vegetated_percentage":1.908846,"s2:degraded_msi_data_percentage":0.0223,"s2:high_proba_clouds_percentage":0.000024,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.02594,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951","bbox":[131.1574343,61.3660298,131.9897108,62.195252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R60m/T53VLJ_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R60m/T53VLJ_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.9897108,62.195252],[131.9519214,62.1538178],[131.8263048,62.0146449],[131.7734854,61.9555542],[131.7025895,61.8764038],[131.5792047,61.7370479],[131.4572377,61.5976178],[131.3361918,61.4581338],[131.2569852,61.3660298],[131.1574343,62.1785001],[131.9897108,62.195252]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53VLJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53VLJ_N05.11","eo:cloud_cover":0.438324,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.222577,"s2:mean_solar_zenith":40.6529531920545,"s2:mean_solar_azimuth":174.0039605909,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":95.807463,"s2:thin_cirrus_percentage":0.000185,"s2:cloud_shadow_percentage":1.201613,"s2:nodata_pixel_percentage":83.840901,"s2:unclassified_percentage":0.557658,"s2:not_vegetated_percentage":0.61831,"s2:degraded_msi_data_percentage":0.004,"s2:high_proba_clouds_percentage":0.072151,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.365989,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951","bbox":[131.2581395,66.5592595,133.9254764,67.5985039],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R60m/T52WFV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R60m/T52WFV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.3518535,67.5985039],[133.9254764,67.5407149],[133.7299138,66.5592595],[131.2581395,66.6143589],[131.3518535,67.5985039]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFV_N05.11","eo:cloud_cover":69.579434,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.356283,"s2:mean_solar_zenith":45.999385627067,"s2:mean_solar_azimuth":174.519173584484,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":26.530567,"s2:thin_cirrus_percentage":45.736045,"s2:cloud_shadow_percentage":0.558913,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.08071,"s2:not_vegetated_percentage":2.894091,"s2:degraded_msi_data_percentage":0.0213,"s2:high_proba_clouds_percentage":3.3369,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":20.506491,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951","bbox":[131.1796268,65.66542,133.7467491,66.7025631],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R60m/T52WFU_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R60m/T52WFU_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.2662054,66.7025631],[133.7467491,66.6472313],[133.5660076,65.66542],[131.1796268,65.7182494],[131.2662054,66.7025631]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFU_N05.11","eo:cloud_cover":80.381471,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.040909,"s2:mean_solar_zenith":45.1111715791707,"s2:mean_solar_azimuth":174.346133667649,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":14.363141,"s2:thin_cirrus_percentage":37.047416,"s2:cloud_shadow_percentage":2.320102,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.216419,"s2:not_vegetated_percentage":1.677957,"s2:degraded_msi_data_percentage":0.0075,"s2:high_proba_clouds_percentage":15.949947,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":27.384108,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951","bbox":[131.1068437,64.7707414,133.5814932,65.8059307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R60m/T52WFT_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R60m/T52WFT_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.1870434,65.8059307],[133.5814932,65.7528862],[133.4140108,64.7707414],[131.1068437,64.8214508],[131.1870434,65.8059307]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFT_N05.11","eo:cloud_cover":57.527,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.089396,"s2:mean_solar_zenith":44.2222573271832,"s2:mean_solar_azimuth":174.178715827812,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.03204,"s2:vegetation_percentage":30.414471,"s2:thin_cirrus_percentage":18.254933,"s2:cloud_shadow_percentage":2.321787,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.492108,"s2:not_vegetated_percentage":7.543512,"s2:degraded_msi_data_percentage":0.0011,"s2:high_proba_clouds_percentage":20.062615,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":19.209455,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951","bbox":[131.0392454,63.8757772,133.4283789,64.9091468],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R60m/T52WFS_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R60m/T52WFS_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.1137228,64.9091468],[133.4283789,64.8582363],[133.2727989,63.8757772],[131.0392454,63.9245026],[131.1137228,64.9091468]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFS_N05.11","eo:cloud_cover":9.216897,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.248951,"s2:mean_solar_zenith":43.3331813369737,"s2:mean_solar_azimuth":174.015842397136,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.667234,"s2:vegetation_percentage":54.976976,"s2:thin_cirrus_percentage":7.174903,"s2:cloud_shadow_percentage":0.037306,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.938136,"s2:not_vegetated_percentage":21.746583,"s2:degraded_msi_data_percentage":0.0156,"s2:high_proba_clouds_percentage":0.313619,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.728375,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951","bbox":[134.3782739,71.0251958,134.9105306,71.4159842],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R60m/T52WFE_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R60m/T52WFE_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.3782739,71.0346353],[134.4459812,71.0843005],[134.6351874,71.2210221],[134.8269898,71.3575522],[134.9105306,71.4159842],[134.7889605,71.0251958],[134.3782739,71.0346353]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":14.570828,"s2:mean_solar_zenith":50.4399499537414,"s2:mean_solar_azimuth":175.523721823951,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":68.903619,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":97.471303,"s2:unclassified_percentage":0.027554,"s2:not_vegetated_percentage":16.497999,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951","bbox":[132.1782345,69.2398107,134.5616186,70.2479433],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R60m/T52WFC_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R60m/T52WFC_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.1782345,69.2882325],[132.1831794,69.2925464],[132.3442605,69.4312167],[132.5072291,69.5697717],[132.6725396,69.7081763],[132.8399998,69.846495],[133.010646,69.9845106],[133.1819808,70.122665],[133.340403,70.2479433],[134.5616186,70.2200158],[134.3092739,69.2398107],[132.1782345,69.2882325]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFC_N05.11","eo:cloud_cover":0.066171,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.05008,"s2:mean_solar_zenith":48.664054088493,"s2:mean_solar_azimuth":175.086798999784,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.013523,"s2:vegetation_percentage":85.094708,"s2:thin_cirrus_percentage":0.066171,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":41.09005,"s2:unclassified_percentage":0.000608,"s2:not_vegetated_percentage":14.774911,"s2:degraded_msi_data_percentage":0.0032,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951","bbox":[131.4354563,68.3470175,134.3308902,69.3743442],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R60m/T52WFB_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R60m/T52WFB_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.4627689,68.6496772],[131.5574948,68.7362757],[131.7116764,68.8755213],[131.8668155,69.0147346],[132.0240415,69.1537179],[132.1831794,69.2925464],[132.2781968,69.3743442],[134.3308902,69.3276752],[134.0998643,68.3470175],[131.4354563,68.4071896],[131.4627689,68.6496772]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFB_N05.11","eo:cloud_cover":1.499358,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.444134,"s2:mean_solar_zenith":47.7763639288029,"s2:mean_solar_azimuth":174.88800636576,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000163,"s2:vegetation_percentage":77.548021,"s2:thin_cirrus_percentage":0.589012,"s2:cloud_shadow_percentage":0.710457,"s2:nodata_pixel_percentage":10.278857,"s2:unclassified_percentage":0.299622,"s2:not_vegetated_percentage":19.498242,"s2:degraded_msi_data_percentage":0.0174,"s2:high_proba_clouds_percentage":0.476632,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.433714,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951","bbox":[129.4326646,66.6110311,131.581589,67.6046234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R60m/T52WEV_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R60m/T52WEV_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.4326646,66.627171],[129.4395568,66.6346719],[129.569974,66.7756814],[129.7029067,66.9163859],[129.8368444,67.0570373],[129.9718905,67.1976125],[130.1092595,67.3378121],[130.2467967,67.4780835],[130.3719703,67.6046234],[131.581589,67.5950132],[131.478743,66.6110311],[129.4326646,66.627171]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEV_N05.11","eo:cloud_cover":56.754273,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.137858,"s2:mean_solar_zenith":46.1415775723871,"s2:mean_solar_azimuth":171.570681979177,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.010488,"s2:vegetation_percentage":27.792656,"s2:thin_cirrus_percentage":26.870412,"s2:cloud_shadow_percentage":9.748025,"s2:nodata_pixel_percentage":35.875851,"s2:unclassified_percentage":2.108658,"s2:not_vegetated_percentage":3.448037,"s2:degraded_msi_data_percentage":0.0056,"s2:high_proba_clouds_percentage":15.36417,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.519691,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951","bbox":[128.9995566,65.715059,131.487595,66.7148022],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R60m/T52WEU_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R60m/T52WEU_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995566,66.1472915],[129.0568185,66.2112587],[129.1820685,66.3526398],[129.3100284,66.4937028],[129.4395568,66.6346719],[129.5136678,66.7148022],[131.487595,66.6992212],[131.3925776,65.715059],[128.9995639,65.7338076],[128.9995566,66.1472915]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEU_N05.11","eo:cloud_cover":58.694005,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.187807,"s2:mean_solar_zenith":45.2540563512696,"s2:mean_solar_azimuth":171.460375519743,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.020823,"s2:vegetation_percentage":19.575879,"s2:thin_cirrus_percentage":6.623583,"s2:cloud_shadow_percentage":7.282652,"s2:nodata_pixel_percentage":6.247365,"s2:unclassified_percentage":4.842953,"s2:not_vegetated_percentage":9.395286,"s2:degraded_msi_data_percentage":0.0214,"s2:high_proba_clouds_percentage":38.061482,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.008942,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951","bbox":[128.9995624,64.8183886,131.4007172,65.8215524],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R60m/T52WET_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R60m/T52WET_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995624,65.8215524],[131.4007172,65.8027272],[131.3126985,64.8183886],[128.9995785,64.8363831],[128.9995624,65.8215524]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WET","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WET_N05.11","eo:cloud_cover":41.352487,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.192166,"s2:mean_solar_zenith":44.3658966769181,"s2:mean_solar_azimuth":171.348870647938,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.034827,"s2:vegetation_percentage":27.956703,"s2:thin_cirrus_percentage":4.539822,"s2:cloud_shadow_percentage":6.532108,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":5.609962,"s2:not_vegetated_percentage":16.073813,"s2:degraded_msi_data_percentage":0.0221,"s2:high_proba_clouds_percentage":25.178194,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.634471,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951","bbox":[128.9995771,63.9215604,131.3202484,64.9241384],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R60m/T52WES_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R60m/T52WES_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995771,64.9241384],[131.3202484,64.9060724],[131.2385085,63.9215604],[128.999592,63.9388493],[128.9995771,64.9241384]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WES","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WES_N05.11","eo:cloud_cover":5.759115,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.227425,"s2:mean_solar_zenith":43.4776424575435,"s2:mean_solar_azimuth":171.235576308309,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.078951,"s2:vegetation_percentage":69.004923,"s2:thin_cirrus_percentage":4.732712,"s2:cloud_shadow_percentage":0.28985,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.741132,"s2:not_vegetated_percentage":19.847569,"s2:degraded_msi_data_percentage":0.0189,"s2:high_proba_clouds_percentage":0.423821,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.602583,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951","bbox":[131.2005488,68.4035546,131.7341807,68.8957154],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R60m/T52WEB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R60m/T52WEB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.2005488,68.407332],[131.253871,68.4573715],[131.4049718,68.5968391],[131.5574948,68.7362757],[131.7116764,68.8755213],[131.7341807,68.8957154],[131.6733361,68.4035546],[131.2005488,68.407332]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEB_N05.11","eo:cloud_cover":2.489419,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":47.9173483017124,"s2:mean_solar_azimuth":171.790393089591,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.960938,"s2:thin_cirrus_percentage":2.489419,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":95.824677,"s2:unclassified_percentage":0.003894,"s2:not_vegetated_percentage":37.49553,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951","bbox":[130.2858757,67.5073771,131.6837049,68.4942905],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R60m/T52WEA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R60m/T52WEA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[130.2858757,67.5175891],[130.3854935,67.6182942],[130.5247857,67.7586223],[130.6679007,67.8983912],[130.8118693,68.038218],[130.9577475,68.1779816],[131.1050539,68.317716],[131.253871,68.4573715],[131.2938695,68.4942905],[131.6837049,68.491174],[131.5720525,67.5073771],[130.2858757,67.5175891]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEA_N05.11","eo:cloud_cover":44.600189,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.317938,"s2:mean_solar_zenith":47.0295225315839,"s2:mean_solar_azimuth":171.680458025836,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":47.277573,"s2:thin_cirrus_percentage":40.49665,"s2:cloud_shadow_percentage":0.390534,"s2:nodata_pixel_percentage":68.255192,"s2:unclassified_percentage":0.01643,"s2:not_vegetated_percentage":7.39556,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.938311,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.165226,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951","bbox":[128.6313048,65.7299121,129.2184871,66.3927877],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R60m/T52WDU_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R60m/T52WDU_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.6313048,65.7299121],[128.6803133,65.7885544],[128.8051215,65.929389],[128.9306399,66.0703047],[129.0568185,66.2112587],[129.1820685,66.3526398],[129.2184871,66.3927877],[129.2128247,65.7336593],[128.6313048,65.7299121]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WDU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WDU_N05.11","eo:cloud_cover":87.409705,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.016386,"s2:mean_solar_zenith":45.4096751438101,"s2:mean_solar_azimuth":168.577958033717,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.006044,"s2:vegetation_percentage":0.90118,"s2:thin_cirrus_percentage":1.310954,"s2:cloud_shadow_percentage":6.273145,"s2:nodata_pixel_percentage":92.204446,"s2:unclassified_percentage":1.957238,"s2:not_vegetated_percentage":3.422431,"s2:degraded_msi_data_percentage":0.0014,"s2:high_proba_clouds_percentage":70.731151,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.367594,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951","bbox":[127.8753205,64.8277285,129.2135496,65.8214035],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R60m/T52WDT_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R60m/T52WDT_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.8753205,64.8277285],[127.9655371,64.9388521],[128.0824097,65.080645],[128.2006112,65.2223042],[128.3185328,65.3641777],[128.4419513,65.50498],[128.5616802,65.6466009],[128.6803133,65.7885544],[128.7065269,65.8181341],[129.2135496,65.8214035],[129.2057115,64.8362408],[127.8753205,64.8277285]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WDT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WDT_N05.11","eo:cloud_cover":92.608041,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003467,"s2:mean_solar_zenith":44.5226742738124,"s2:mean_solar_azimuth":168.523026107826,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.003244,"s2:vegetation_percentage":2.630634,"s2:thin_cirrus_percentage":1.981442,"s2:cloud_shadow_percentage":0.228093,"s2:nodata_pixel_percentage":61.34249,"s2:unclassified_percentage":2.109787,"s2:not_vegetated_percentage":1.963161,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":80.711335,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.915261,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951","bbox":[127.1646008,63.925791,129.2063838,64.9239955],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R60m/T52WDS_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R60m/T52WDS_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.1646008,63.925791],[127.1790362,63.9448436],[127.2877065,64.0870749],[127.3983676,64.2290554],[127.5091714,64.3712024],[127.6227764,64.5129161],[127.7367608,64.6547273],[127.8502661,64.7968679],[127.9469287,64.9159314],[129.2063838,64.9239955],[129.1991056,63.9387126],[127.1646008,63.925791]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WDS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WDS_N05.11","eo:cloud_cover":39.816773,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.976928,"s2:mean_solar_zenith":43.6356587032227,"s2:mean_solar_azimuth":168.459967188638,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.053122,"s2:vegetation_percentage":42.942822,"s2:thin_cirrus_percentage":5.197151,"s2:cloud_shadow_percentage":1.370669,"s2:nodata_pixel_percentage":27.974859,"s2:unclassified_percentage":2.059083,"s2:not_vegetated_percentage":11.335365,"s2:degraded_msi_data_percentage":0.0083,"s2:high_proba_clouds_percentage":26.782978,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":7.836644,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951","bbox":[130.9763539,62.9899815,133.2862441,64.0127512],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R60m/T52VFR_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R60m/T52VFR_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.2162377,63.4889035],[133.1303171,63.4019607],[132.994726,63.2638539],[132.8604581,63.1256284],[132.7301294,62.9899815],[130.9763539,63.0279443],[131.0456808,64.0127512],[133.2862441,63.9638363],[133.2162377,63.4889035]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFR_N05.11","eo:cloud_cover":10.351101,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.941527,"s2:mean_solar_zenith":42.4444820685437,"s2:mean_solar_azimuth":173.856552211937,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.02482,"s2:vegetation_percentage":84.155053,"s2:thin_cirrus_percentage":10.325257,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":4.998215,"s2:unclassified_percentage":0.317888,"s2:not_vegetated_percentage":2.000846,"s2:degraded_msi_data_percentage":0.0214,"s2:high_proba_clouds_percentage":0.000035,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.025809,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951","bbox":[130.9176451,62.1093539,132.8127904,63.1156693],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R60m/T52VFQ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R60m/T52VFQ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.8127904,63.0760156],[132.7275337,62.9872799],[132.5959738,62.8488806],[132.4656772,62.7103375],[132.3362041,62.5716607],[132.2074656,62.4328557],[132.0795897,62.2939248],[132.014806,62.2227676],[131.9519214,62.1538178],[131.9117885,62.1093539],[130.9176451,62.1307003],[130.9823142,63.1156693],[132.8127904,63.0760156]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFQ_N05.11","eo:cloud_cover":5.314786,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.061753,"s2:mean_solar_zenith":41.5550985030653,"s2:mean_solar_azimuth":173.69971435638,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":91.024876,"s2:thin_cirrus_percentage":5.117859,"s2:cloud_shadow_percentage":0.524357,"s2:nodata_pixel_percentage":34.316128,"s2:unclassified_percentage":0.436825,"s2:not_vegetated_percentage":0.565136,"s2:degraded_msi_data_percentage":0.0293,"s2:high_proba_clouds_percentage":0.036056,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.160871,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951","bbox":[130.8627658,61.2274397,131.9899516,62.2184397],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R60m/T52VFP_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R60m/T52VFP_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.9899516,62.1955161],[131.9519214,62.1538178],[131.8263048,62.0146449],[131.7734854,61.9555542],[131.7025895,61.8764038],[131.5792047,61.7370479],[131.4572377,61.5976178],[131.3361918,61.4581338],[131.2161762,61.3185757],[131.1384299,61.2274397],[130.8627658,61.2333094],[130.9232108,62.2184397],[131.9899516,62.1955161]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFP_N05.11","eo:cloud_cover":0.242587,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.536898,"s2:mean_solar_zenith":40.6655719220419,"s2:mean_solar_azimuth":173.54448998684,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":96.210164,"s2:thin_cirrus_percentage":0.000156,"s2:cloud_shadow_percentage":0.661625,"s2:nodata_pixel_percentage":68.093097,"s2:unclassified_percentage":0.582098,"s2:not_vegetated_percentage":0.597519,"s2:degraded_msi_data_percentage":0.0145,"s2:high_proba_clouds_percentage":0.039618,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.202812,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951","bbox":[130.8423379,60.8748244,131.2124947,61.3216015],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R60m/T52VFN_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R60m/T52VFN_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.2124947,61.3142602],[131.0970869,61.1789765],[130.9797062,61.0391954],[130.8627034,60.8993834],[130.8423379,60.8748244],[130.868005,61.3216015],[131.2124947,61.3142602]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFN_N05.11","eo:cloud_cover":0.009899,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.141616,"s2:mean_solar_zenith":39.7764401618711,"s2:mean_solar_azimuth":173.39022892516,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.690014,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.003032,"s2:nodata_pixel_percentage":96.279573,"s2:unclassified_percentage":0.075267,"s2:not_vegetated_percentage":0.072146,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.000357,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.009542,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951","bbox":[128.9995907,63.0251146,131.2455715,64.0271539],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R60m/T52VER_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R60m/T52VER_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995907,64.0271539],[131.2455715,64.0097976],[131.1694829,63.0251146],[128.9996046,63.041742],[128.9995907,64.0271539]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VER","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VER_N05.11","eo:cloud_cover":4.716614,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":7.009887,"s2:mean_solar_zenith":42.5898323635958,"s2:mean_solar_azimuth":171.120065448574,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000189,"s2:vegetation_percentage":86.070371,"s2:thin_cirrus_percentage":4.71378,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.491173,"s2:not_vegetated_percentage":1.652437,"s2:degraded_msi_data_percentage":0.0047,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.002833,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951","bbox":[128.9996034,62.1279766,131.1760247,63.1295192],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R60m/T52VEQ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R60m/T52VEQ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9996034,63.1295192],[131.1760247,63.1128289],[131.1050472,62.1279766],[128.9996163,62.1439815],[128.9996034,63.1295192]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEQ_N05.11","eo:cloud_cover":4.926161,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":6.093029,"s2:mean_solar_zenith":41.7014131027106,"s2:mean_solar_azimuth":171.001607845712,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.765083,"s2:thin_cirrus_percentage":4.925355,"s2:cloud_shadow_percentage":0.000561,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.629424,"s2:not_vegetated_percentage":3.559852,"s2:degraded_msi_data_percentage":0.0033,"s2:high_proba_clouds_percentage":0.000013,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000793,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951","bbox":[128.9996152,61.2306854,131.1111559,62.2317701],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R60m/T52VEP_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R60m/T52VEP_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9996152,62.2317701],[131.1111559,62.2157059],[131.0448136,61.2306854],[128.9996273,61.2461037],[128.9996152,62.2317701]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEP_N05.11","eo:cloud_cover":0.008547,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":4.470636,"s2:mean_solar_zenith":40.8129259048393,"s2:mean_solar_azimuth":170.87977634975,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":92.479879,"s2:thin_cirrus_percentage":0.000282,"s2:cloud_shadow_percentage":0.037405,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.522623,"s2:not_vegetated_percentage":2.433456,"s2:degraded_msi_data_percentage":0.0185,"s2:high_proba_clouds_percentage":0.000899,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.007366,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951","bbox":[128.9996263,60.3381652,131.050564,61.3344425],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R60m/T52VEN_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R60m/T52VEN_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.0372417,61.1077108],[130.9797062,61.0391954],[130.8627034,60.8993834],[130.7465924,60.7593638],[130.6309458,60.619276],[130.575031,60.5508652],[130.5154066,60.4780474],[130.4017775,60.3381652],[128.9996376,60.3486448],[128.9996263,61.3344425],[131.050564,61.318968],[131.0372417,61.1077108]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEN_N05.11","eo:cloud_cover":0.068222,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.089501,"s2:mean_solar_zenith":39.9249157120179,"s2:mean_solar_azimuth":170.754112760966,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.534261,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.162721,"s2:nodata_pixel_percentage":11.716418,"s2:unclassified_percentage":0.056872,"s2:not_vegetated_percentage":0.084025,"s2:degraded_msi_data_percentage":0.0231,"s2:high_proba_clouds_percentage":0.008475,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.059747,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951","bbox":[128.9996366,59.4453304,130.4726708,60.4364568],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R60m/T52VEM_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R60m/T52VEM_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[130.4726708,60.4254378],[130.4014547,60.3377678],[130.2889588,60.197265],[130.2189943,60.109708],[130.1775702,60.0578764],[130.176963,60.0571081],[130.1767648,60.05686],[130.1755344,60.0553004],[130.0665401,59.9173806],[129.9561049,59.7769528],[129.8471001,59.6363193],[129.7393285,59.4955713],[129.7009413,59.4453304],[128.9996473,59.4505251],[128.9996366,60.4364568],[130.4726708,60.4254378]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEM_N05.11","eo:cloud_cover":34.67139,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.262607,"s2:mean_solar_zenith":39.0363297021797,"s2:mean_solar_azimuth":170.623913261053,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":64.85399,"s2:thin_cirrus_percentage":22.233857,"s2:cloud_shadow_percentage":0.013978,"s2:nodata_pixel_percentage":45.096695,"s2:unclassified_percentage":0.034989,"s2:not_vegetated_percentage":0.151711,"s2:degraded_msi_data_percentage":0.0303,"s2:high_proba_clouds_percentage":1.785089,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.652445,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951","bbox":[128.9996463,58.5520155,129.7677234,59.5383491],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R60m/T52VEL_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R60m/T52VEL_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.7677234,59.5326546],[129.7393285,59.4955713],[129.6318376,59.3548878],[129.5256621,59.2140441],[129.4200495,59.0730297],[129.3148762,58.9319202],[129.2100621,58.7908103],[129.1061322,58.6495909],[129.0358358,58.5520155],[128.9996563,58.5522811],[128.9996463,59.5383491],[129.7677234,59.5326546]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEL_N05.11","eo:cloud_cover":91.924906,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":38.1477121807761,"s2:mean_solar_azimuth":170.48875262019,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":7.422899,"s2:thin_cirrus_percentage":11.432301,"s2:cloud_shadow_percentage":0.642389,"s2:nodata_pixel_percentage":79.423267,"s2:unclassified_percentage":0.001322,"s2:not_vegetated_percentage":0.008481,"s2:degraded_msi_data_percentage":0.006,"s2:high_proba_clouds_percentage":17.982896,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":62.509716,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951","bbox":[128.9996555,58.5018767,129.0991687,58.6406562],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R60m/T52VEK_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R60m/T52VEK_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.0991687,58.6399252],[129.0041457,58.5080279],[128.9996568,58.5018767],[128.9996555,58.6406562],[129.0991687,58.6399252]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEK_N05.11","eo:cloud_cover":100.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":37.2596152541718,"s2:mean_solar_azimuth":170.348076961828,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.012802,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.663079,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":59.963173,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":40.024027,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951","bbox":[126.977122,63.0279332,129.1997345,64.0270166],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R60m/T52VDR_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R60m/T52VDR_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.977122,63.6773387],[127.0712145,63.802535],[127.1790362,63.9448436],[127.2322652,64.0145115],[129.1997345,64.0270166],[129.1929602,63.0416105],[127.0228562,63.0279332],[126.977122,63.6773387]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDR_N05.11","eo:cloud_cover":0.046248,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":8.477577,"s2:mean_solar_zenith":42.7491680001305,"s2:mean_solar_azimuth":168.388860780674,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":88.414162,"s2:thin_cirrus_percentage":0.037266,"s2:cloud_shadow_percentage":0.033034,"s2:nodata_pixel_percentage":2.253692,"s2:unclassified_percentage":0.710184,"s2:not_vegetated_percentage":2.224082,"s2:degraded_msi_data_percentage":0.0206,"s2:high_proba_clouds_percentage":0.00058,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.008401,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951","bbox":[127.0168934,62.1306897,129.1935426,63.1293872],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R60m/T52VDQ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R60m/T52VDQ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0168934,63.1156582],[129.1935426,63.1293872],[129.1872239,62.143855],[127.0815883,62.1306897],[127.0168934,63.1156582]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDQ_N05.11","eo:cloud_cover":4.532895,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.381983,"s2:mean_solar_zenith":41.8621575784698,"s2:mean_solar_azimuth":168.309427119423,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.332455,"s2:thin_cirrus_percentage":0.932575,"s2:cloud_shadow_percentage":4.556654,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.507586,"s2:not_vegetated_percentage":6.684162,"s2:degraded_msi_data_percentage":0.0222,"s2:high_proba_clouds_percentage":1.081294,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.519026,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951","bbox":[127.0760204,61.2332992,129.1877677,62.231643],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R60m/T52VDP_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R60m/T52VDP_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0760204,62.2184291],[129.1877677,62.231643],[129.1818621,61.2459818],[127.1364896,61.2332992],[127.0760204,62.2184291]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDP_N05.11","eo:cloud_cover":5.962572,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.812217,"s2:mean_solar_zenith":40.975169144676,"s2:mean_solar_azimuth":168.221622562471,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.394979,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":5.817081,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.569607,"s2:not_vegetated_percentage":1.407165,"s2:degraded_msi_data_percentage":0.016,"s2:high_proba_clouds_percentage":2.054761,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.907811,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951","bbox":[127.1312482,60.3363003,129.1823739,61.3343201],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R60m/T52VDN_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R60m/T52VDN_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.1312482,61.3215913],[129.1823739,61.3343201],[129.1768439,60.3485273],[127.1878754,60.3363003],[127.1312482,61.3215913]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDN_N05.11","eo:cloud_cover":0.321011,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.933388,"s2:mean_solar_zenith":40.0887563936172,"s2:mean_solar_azimuth":168.125212521695,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":95.36674,"s2:thin_cirrus_percentage":0.000272,"s2:cloud_shadow_percentage":0.706696,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.184877,"s2:not_vegetated_percentage":0.423277,"s2:degraded_msi_data_percentage":0.0017,"s2:high_proba_clouds_percentage":0.067886,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.252853,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951","bbox":[127.1829927,59.4386163,129.1773207,60.4363388],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R60m/T52VDM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R60m/T52VDM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.1829927,60.4240684],[129.1773207,60.4363388],[129.1721336,59.4504118],[127.236112,59.4386163],[127.1829927,60.4240684]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDM_N05.11","eo:cloud_cover":47.327846,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.029535,"s2:mean_solar_zenith":39.2018693815406,"s2:mean_solar_azimuth":168.019860507826,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":51.659262,"s2:thin_cirrus_percentage":16.004343,"s2:cloud_shadow_percentage":0.865906,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.025936,"s2:not_vegetated_percentage":0.089638,"s2:degraded_msi_data_percentage":0.0084,"s2:high_proba_clouds_percentage":12.341492,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.982011,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951","bbox":[127.2315279,58.5407855,129.1725812,59.5382354],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R60m/T52VDL_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R60m/T52VDL_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.1686087,58.7344837],[129.1061322,58.6495909],[129.0353728,58.5513728],[127.2814375,58.5407855],[127.2315279,59.5263988],[129.1725812,59.5382354],[129.1686087,58.7344837]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDL_N05.11","eo:cloud_cover":93.35587,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.016872,"s2:mean_solar_zenith":38.3150631080366,"s2:mean_solar_azimuth":167.905246417085,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":5.907575,"s2:thin_cirrus_percentage":26.277691,"s2:cloud_shadow_percentage":0.566101,"s2:nodata_pixel_percentage":0.694115,"s2:unclassified_percentage":0.058368,"s2:not_vegetated_percentage":0.094859,"s2:degraded_msi_data_percentage":0.028,"s2:high_proba_clouds_percentage":24.890532,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":42.187646,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951","bbox":[127.2771006,57.6433463,129.0993167,58.6401306],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R60m/T52VDK_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R60m/T52VDK_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.0993167,58.6401306],[129.0041457,58.5080279],[128.9655697,58.4551675],[128.9003554,58.3658761],[128.7965655,58.2250694],[128.7334728,58.1337096],[128.6989907,58.0840318],[128.5969669,57.9430622],[128.497614,57.8016144],[128.4011714,57.6596215],[128.3943184,57.6497449],[127.3240672,57.6433463],[127.2771006,58.6291209],[129.0993167,58.6401306]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDK_N05.11","eo:cloud_cover":99.998522,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":37.4288897872923,"s2:mean_solar_azimuth":167.781074358126,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":9e-6,"s2:thin_cirrus_percentage":1.261552,"s2:cloud_shadow_percentage":0.001149,"s2:nodata_pixel_percentage":22.927535,"s2:unclassified_percentage":0.000142,"s2:not_vegetated_percentage":0.000181,"s2:degraded_msi_data_percentage":0.0265,"s2:high_proba_clouds_percentage":75.842607,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":22.894354,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951","bbox":[127.3200079,56.7452211,128.4543698,57.7379458],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R60m/T52VDJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R60m/T52VDJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.4543698,57.7379458],[128.4011714,57.6596215],[128.3029818,57.518109],[128.2067018,57.3761853],[128.1100626,57.2343255],[128.0110463,57.0930677],[127.9190438,56.950263],[127.8253816,56.8079231],[127.7851523,56.7477124],[127.3642661,56.7452211],[127.3200079,57.7311575],[128.4543698,57.7379458]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDJ_N05.11","eo:cloud_cover":88.149291,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.006661,"s2:mean_solar_zenith":36.5423098098697,"s2:mean_solar_azimuth":167.646738291023,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.010077,"s2:vegetation_percentage":6.651367,"s2:thin_cirrus_percentage":9.607031,"s2:cloud_shadow_percentage":2.944999,"s2:nodata_pixel_percentage":57.660306,"s2:unclassified_percentage":0.658542,"s2:not_vegetated_percentage":1.438749,"s2:degraded_msi_data_percentage":0.0314,"s2:high_proba_clouds_percentage":44.659731,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":33.882529,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951","bbox":[127.3604383,56.1382728,127.8437979,56.8359107],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R60m/T52VDH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R60m/T52VDH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.8437979,56.8359107],[127.8253816,56.8079231],[127.7844507,56.7466624],[127.7298105,56.6651172],[127.6636084,56.5627038],[127.6382617,56.5235954],[127.5710385,56.4205765],[127.5448612,56.3805035],[127.4530232,56.238231],[127.4230386,56.1907083],[127.3898619,56.1382728],[127.3604383,56.8330467],[127.8437979,56.8359107]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDH_N05.11","eo:cloud_cover":99.999857,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":35.6558828244402,"s2:mean_solar_azimuth":167.501766686448,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.686651,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":90.70968,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000143,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":80.570889,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.742315,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951","bbox":[126.4913407,63.0157988,127.2172106,63.9206225],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R60m/T52VCR_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R60m/T52VCR_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.4913407,63.0157988],[126.5442443,63.0895601],[126.5914974,63.1545953],[126.6477818,63.2318841],[126.7522213,63.3745676],[126.7741412,63.4043398],[126.8578044,63.5175778],[126.9641677,63.6601022],[127.0712145,63.802535],[127.1606848,63.9206225],[127.2172106,63.0305154],[126.4913407,63.0157988]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCR_N05.11","eo:cloud_cover":0.115362,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.82724,"s2:mean_solar_zenith":42.9221743799511,"s2:mean_solar_azimuth":165.669840361009,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":96.303809,"s2:thin_cirrus_percentage":0.00009,"s2:cloud_shadow_percentage":0.260315,"s2:nodata_pixel_percentage":85.300654,"s2:unclassified_percentage":0.439103,"s2:not_vegetated_percentage":1.004424,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.013791,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.101481,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951","bbox":[125.8574215,62.1047625,127.2701768,63.1182501],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R60m/T52VCQ_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R60m/T52VCQ_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.8574215,62.1047625],[125.9440647,62.232065],[126.041841,62.3750828],[126.1404532,62.5180708],[126.2399976,62.661007],[126.340658,62.8038308],[126.4418096,62.9467397],[126.5442443,63.0895601],[126.5554127,63.1049313],[127.2118332,63.1182501],[127.2701768,62.1331753],[125.8574215,62.1047625]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCQ_N05.11","eo:cloud_cover":5.341376,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.304834,"s2:mean_solar_zenith":42.0370052606386,"s2:mean_solar_azimuth":165.629689768671,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":82.501113,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":7.249346,"s2:nodata_pixel_percentage":51.830238,"s2:unclassified_percentage":0.722848,"s2:not_vegetated_percentage":3.875196,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.534252,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.807124,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951","bbox":[125.2743035,61.1949732,127.3196877,62.2209238],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R60m/T52VCP_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R60m/T52VCP_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.2743035,61.2246888],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3699042,61.3723446],[125.4636208,61.5157764],[125.5065532,61.5809699],[125.5583435,61.6594893],[125.654055,61.8027201],[125.749814,61.9460176],[125.8467433,62.0890734],[125.9180275,62.1938091],[127.2651556,62.2209238],[127.3196877,61.2356936],[125.2779445,61.1949732],[125.2743035,61.2246888]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCP_N05.11","eo:cloud_cover":0.771749,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.248412,"s2:mean_solar_zenith":41.1519640110838,"s2:mean_solar_azimuth":165.576204350518,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.241757,"s2:thin_cirrus_percentage":0.030352,"s2:cloud_shadow_percentage":0.985723,"s2:nodata_pixel_percentage":17.972867,"s2:unclassified_percentage":0.266751,"s2:not_vegetated_percentage":4.414283,"s2:degraded_msi_data_percentage":0.0132,"s2:high_proba_clouds_percentage":0.193152,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.548245,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951","bbox":[125.2742181,60.2993491,127.3660277,61.3239944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R60m/T52VCN_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R60m/T52VCN_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.2742181,61.2245552],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3127039,61.284028],[127.314961,61.3239944],[127.3660277,60.3386088],[125.3803718,60.2993491],[125.2742181,61.2245552]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCN_N05.11","eo:cloud_cover":5.284181,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.514631,"s2:mean_solar_zenith":40.2676107637875,"s2:mean_solar_azimuth":165.509433344206,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":88.531071,"s2:thin_cirrus_percentage":2.980587,"s2:cloud_shadow_percentage":2.747851,"s2:nodata_pixel_percentage":0.092269,"s2:unclassified_percentage":0.387848,"s2:not_vegetated_percentage":0.435736,"s2:degraded_msi_data_percentage":0.0223,"s2:high_proba_clouds_percentage":0.849839,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.453755,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951","bbox":[125.3706384,59.4029675,127.4095273,60.426385],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R60m/T52VCM_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R60m/T52VCM_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.3706384,60.386986],[127.3616245,60.426385],[127.4095273,59.4408433],[125.4765375,59.4029675],[125.3706384,60.386986]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCM_N05.11","eo:cloud_cover":54.562652,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000969,"s2:mean_solar_zenith":39.3829023138874,"s2:mean_solar_azimuth":165.429353133968,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":42.078218,"s2:thin_cirrus_percentage":17.758116,"s2:cloud_shadow_percentage":2.886878,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.211021,"s2:not_vegetated_percentage":0.2563,"s2:degraded_msi_data_percentage":0.0222,"s2:high_proba_clouds_percentage":15.312667,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.49187,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951","bbox":[125.467398,58.506372,127.4504014,59.5286335],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R60m/T52VCL_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R60m/T52VCL_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.467398,59.4906256],[127.4053934,59.5286335],[127.4504014,58.5429352],[125.5669133,58.506372],[125.467398,59.4906256]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCL_N05.11","eo:cloud_cover":76.46718,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.084867,"s2:mean_solar_zenith":38.4984031318894,"s2:mean_solar_azimuth":165.335805493598,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001311,"s2:vegetation_percentage":18.992594,"s2:thin_cirrus_percentage":18.077123,"s2:cloud_shadow_percentage":1.707032,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.10983,"s2:not_vegetated_percentage":1.617009,"s2:degraded_msi_data_percentage":0.1382,"s2:high_proba_clouds_percentage":21.402517,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":36.987537,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951","bbox":[125.5582651,57.6101061,127.488844,58.6312781],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R60m/T52VCK_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R60m/T52VCK_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.5582651,58.5945887],[127.4464903,58.6312781],[127.488844,57.6454227],[125.6519254,57.6101061],[125.5582651,58.5945887]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCK_N05.11","eo:cloud_cover":85.446417,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003105,"s2:mean_solar_zenith":37.6146677210644,"s2:mean_solar_azimuth":165.228708429987,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00145,"s2:vegetation_percentage":8.690373,"s2:thin_cirrus_percentage":9.627593,"s2:cloud_shadow_percentage":3.039114,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.310062,"s2:not_vegetated_percentage":1.484424,"s2:degraded_msi_data_percentage":0.0157,"s2:high_proba_clouds_percentage":40.221915,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":35.59691,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951","bbox":[125.6438299,56.7130985,127.5250943,57.7332409],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R60m/T52VCJ_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R60m/T52VCJ_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.6438299,57.6978051],[127.4851834,57.7332409],[127.5250943,56.7472276],[125.7321002,56.7130985],[125.6438299,57.6978051]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCJ_N05.11","eo:cloud_cover":97.759056,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.001977,"s2:mean_solar_zenith":36.7306734519704,"s2:mean_solar_azimuth":165.107555251711,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000153,"s2:vegetation_percentage":0.413011,"s2:thin_cirrus_percentage":4.231559,"s2:cloud_shadow_percentage":1.778043,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.022478,"s2:not_vegetated_percentage":0.022658,"s2:degraded_msi_data_percentage":0.0206,"s2:high_proba_clouds_percentage":46.142748,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":47.384754,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951","bbox":[125.7244654,55.8158913,127.5393279,56.8350599],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R60m/T52VCH_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R60m/T52VCH_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.5393279,56.3719315],[127.4530232,56.238231],[127.4230386,56.1907083],[127.3635027,56.0966123],[127.2728758,55.9543032],[127.2018322,55.8421537],[125.8077653,55.8158913],[125.7244654,56.8008172],[127.5216425,56.8350599],[127.5393279,56.3719315]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCH_N05.11","eo:cloud_cover":99.637979,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":35.8469826643837,"s2:mean_solar_azimuth":164.972040568133,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.049283,"s2:thin_cirrus_percentage":3.240846,"s2:cloud_shadow_percentage":0.29987,"s2:nodata_pixel_percentage":5.534351,"s2:unclassified_percentage":0.01263,"s2:not_vegetated_percentage":0.000239,"s2:degraded_msi_data_percentage":0.0267,"s2:high_proba_clouds_percentage":38.787299,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":57.609838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951","bbox":[125.8005114,54.9190265,127.258534,55.9316633],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R60m/T52UCG_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R60m/T52UCG_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.258534,55.9316633],[127.1827045,55.8119586],[127.0940249,55.6692617],[127.0057939,55.5265009],[126.917857,55.3837001],[126.8299533,55.2409646],[126.74296,55.0980927],[126.6564661,54.9552042],[126.6432996,54.9332676],[125.8792201,54.9190265],[125.8005114,55.9041676],[127.258534,55.9316633]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52UCG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52UCG_N05.11","eo:cloud_cover":98.357725,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":34.9641683856508,"s2:mean_solar_azimuth":164.821706661523,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.787698,"s2:thin_cirrus_percentage":5.856419,"s2:cloud_shadow_percentage":0.69695,"s2:nodata_pixel_percentage":36.292416,"s2:unclassified_percentage":0.155951,"s2:not_vegetated_percentage":0.001677,"s2:degraded_msi_data_percentage":0.0297,"s2:high_proba_clouds_percentage":51.1594,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.34191,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951","bbox":[125.872404,54.0214307,126.6970015,55.0221689],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R60m/T52UCF_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R60m/T52UCF_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.6970015,55.0221689],[126.6564661,54.9552042],[126.5706774,54.8122726],[126.4853614,54.6693457],[126.4006598,54.5263376],[126.3157278,54.3834622],[126.2320757,54.2404286],[126.1492445,54.0972465],[126.1076334,54.0243943],[125.9468576,54.0214307],[125.872404,55.0067836],[126.6970015,55.0221689]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52UCF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52UCF_N05.11","eo:cloud_cover":99.999827,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":34.0812138922962,"s2:mean_solar_azimuth":164.655760015323,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.312156,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":71.359682,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000174,"s2:degraded_msi_data_percentage":0.0129,"s2:high_proba_clouds_percentage":78.24527,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.442401,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951","bbox":[125.9404063,53.7745817,126.1584915,54.1132308],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R60m/T52UCE_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R60m/T52UCE_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.1584915,54.1132308],[126.1492445,54.0972465],[126.0673388,53.9538472],[125.9848749,53.8105611],[125.9643445,53.7745817],[125.9404063,54.1092064],[126.1584915,54.1132308]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52UCE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52UCE_N05.11","eo:cloud_cover":96.291208,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003274,"s2:mean_solar_zenith":33.1987005853998,"s2:mean_solar_azimuth":164.473521748612,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":3.364669,"s2:thin_cirrus_percentage":8.658732,"s2:cloud_shadow_percentage":0.058003,"s2:nodata_pixel_percentage":97.872138,"s2:unclassified_percentage":0.276452,"s2:not_vegetated_percentage":0.006393,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":61.876446,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.756034,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951","bbox":[125.8612845,62.0855865,127.1538391,63.0819513],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R60m/T51VXK_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R60m/T51VXK_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.8612845,62.1104383],[125.9440647,62.232065],[126.041841,62.3750828],[126.1404532,62.5180708],[126.2399976,62.661007],[126.340658,62.8038308],[126.4418096,62.9467397],[126.5387871,63.0819513],[127.1538391,63.0686274],[127.0186771,62.0855865],[125.8612845,62.1104383]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXK_N05.11","eo:cloud_cover":4.719193,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.263164,"s2:mean_solar_zenith":42.0506712037409,"s2:mean_solar_azimuth":165.417113163303,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.87838,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":6.934454,"s2:nodata_pixel_percentage":58.767182,"s2:unclassified_percentage":0.555618,"s2:not_vegetated_percentage":3.645528,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.320873,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.39832,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951","bbox":[125.2742138,61.1898465,127.0303111,62.1970148],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R60m/T51VXJ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R60m/T51VXJ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.2742138,61.2245484],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3699042,61.3723446],[125.4636208,61.5157764],[125.5065532,61.5809699],[125.5583435,61.6594893],[125.654055,61.8027201],[125.749814,61.9460176],[125.8467433,62.0890734],[125.9202093,62.1970148],[127.0303111,62.1731593],[126.903949,61.1898465],[125.2742138,61.2245484]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXJ_N05.11","eo:cloud_cover":0.22014,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.302835,"s2:mean_solar_zenith":41.1867835009883,"s2:mean_solar_azimuth":165.122628454948,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.371725,"s2:thin_cirrus_percentage":0.028434,"s2:cloud_shadow_percentage":0.398179,"s2:nodata_pixel_percentage":34.213015,"s2:unclassified_percentage":0.265908,"s2:not_vegetated_percentage":5.351976,"s2:degraded_msi_data_percentage":0.0064,"s2:high_proba_clouds_percentage":0.036045,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.155662,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951","bbox":[124.8114005,60.2944061,126.914903,61.3117421],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R60m/T51VXH_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R60m/T51VXH_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.8210903,60.5049769],[124.8249807,60.5113176],[124.9138654,60.6549626],[125.0032327,60.7986453],[125.0941823,60.9421125],[125.1853742,61.0856306],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3306535,61.3117421],[126.914903,61.2779804],[126.7965453,60.2944061],[124.8114005,60.3363102],[124.8210903,60.5049769]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXH_N05.11","eo:cloud_cover":7.542037,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.279637,"s2:mean_solar_zenith":40.3238955866215,"s2:mean_solar_azimuth":164.822379623298,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.434909,"s2:thin_cirrus_percentage":3.581131,"s2:cloud_shadow_percentage":4.534865,"s2:nodata_pixel_percentage":9.713614,"s2:unclassified_percentage":0.522446,"s2:not_vegetated_percentage":0.597518,"s2:degraded_msi_data_percentage":0.0176,"s2:high_proba_clouds_percentage":1.54485,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.416056,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951","bbox":[124.7631831,59.3981984,126.8067517,60.4240783],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R60m/T51VXG_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R60m/T51VXG_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.8162812,60.4240783],[126.8067517,60.3820254],[126.6957051,59.3981984],[124.7631831,59.4386259],[124.8162812,60.4240783]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXG_N05.11","eo:cloud_cover":57.89808,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000305,"s2:mean_solar_zenith":39.4610213628829,"s2:mean_solar_azimuth":164.514884494607,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.59192,"s2:thin_cirrus_percentage":17.715505,"s2:cloud_shadow_percentage":4.72235,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.428356,"s2:not_vegetated_percentage":0.355357,"s2:degraded_msi_data_percentage":0.0216,"s2:high_proba_clouds_percentage":14.115481,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":26.067099,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951","bbox":[124.7178757,58.5017681,126.705289,59.5264083],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R60m/T51VXF_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R60m/T51VXF_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.7677654,59.5264083],[126.705289,59.48584],[126.6009344,58.5017681],[124.7178757,58.5407947],[124.7677654,59.5264083]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXF_N05.11","eo:cloud_cover":84.907711,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.051762,"s2:mean_solar_zenith":38.5987462846354,"s2:mean_solar_azimuth":164.199051968167,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00133,"s2:vegetation_percentage":10.837167,"s2:thin_cirrus_percentage":10.934602,"s2:cloud_shadow_percentage":1.625469,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.823939,"s2:not_vegetated_percentage":1.739268,"s2:degraded_msi_data_percentage":0.1559,"s2:high_proba_clouds_percentage":30.019575,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":43.953529,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951","bbox":[124.675263,57.605659,126.6100032,58.6291301],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R60m/T51VXE_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R60m/T51VXE_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.7222109,58.6291301],[126.6100032,58.5899689],[126.5117866,57.605659],[124.675263,57.6433552],[124.7222109,58.6291301]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXE_N05.11","eo:cloud_cover":83.065593,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003457,"s2:mean_solar_zenith":37.737647148645,"s2:mean_solar_azimuth":163.873932455555,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001311,"s2:vegetation_percentage":9.472118,"s2:thin_cirrus_percentage":10.507391,"s2:cloud_shadow_percentage":3.265965,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.934967,"s2:not_vegetated_percentage":2.231472,"s2:degraded_msi_data_percentage":0.0231,"s2:high_proba_clouds_percentage":44.325012,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.233185,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951","bbox":[124.6350802,56.7088008,126.520276,57.7311664],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R60m/T51VXD_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R60m/T51VXD_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6793207,57.7311664],[126.520276,57.6933429],[126.4277099,56.7088008],[124.6350802,56.7452297],[124.6793207,57.7311664]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXD_N05.11","eo:cloud_cover":86.153275,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.045823,"s2:mean_solar_zenith":36.8767690687929,"s2:mean_solar_azimuth":163.537818213253,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000046,"s2:vegetation_percentage":8.697088,"s2:thin_cirrus_percentage":8.987717,"s2:cloud_shadow_percentage":2.873391,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.415002,"s2:not_vegetated_percentage":0.781066,"s2:degraded_msi_data_percentage":0.0258,"s2:high_proba_clouds_percentage":51.484102,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.681457,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951","bbox":[124.5971619,55.811736,126.4357163,56.8330553],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R60m/T51VXC_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R60m/T51VXC_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6389064,56.8330553],[126.4357163,56.7965052],[126.3483613,55.811736],[124.5971619,55.8469564],[124.6389064,56.8330553]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXC_N05.11","eo:cloud_cover":80.37315,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.040378,"s2:mean_solar_zenith":36.0167025115408,"s2:mean_solar_azimuth":163.189664865841,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001802,"s2:vegetation_percentage":13.058314,"s2:thin_cirrus_percentage":9.831335,"s2:cloud_shadow_percentage":5.830083,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.345865,"s2:not_vegetated_percentage":0.336887,"s2:degraded_msi_data_percentage":0.2077,"s2:high_proba_clouds_percentage":28.778237,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.763577,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951","bbox":[124.7173583,60.3337804,125.0193553,60.8240776],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R60m/T51VWH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R60m/T51VWH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.7173583,60.3358065],[124.7368049,60.3676069],[124.8249807,60.5113176],[124.9138654,60.6549626],[125.0032327,60.7986453],[125.0193553,60.8240776],[124.9884362,60.3337804],[124.7173583,60.3358065]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWH_N05.11","eo:cloud_cover":2.231455,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.123831,"s2:mean_solar_zenith":40.6013483995389,"s2:mean_solar_azimuth":162.238556121133,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":94.158405,"s2:thin_cirrus_percentage":1.469386,"s2:cloud_shadow_percentage":1.166013,"s2:nodata_pixel_percentage":96.806538,"s2:unclassified_percentage":0.425865,"s2:not_vegetated_percentage":0.821289,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.140466,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.621603,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951","bbox":[124.1812178,59.4361854,124.9937932,60.4232067],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R60m/T51VWG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R60m/T51VWG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.1812178,59.4417727],[124.2178591,59.5041056],[124.3024279,59.6482388],[124.3884266,59.7921383],[124.4747037,59.9360939],[124.5615303,60.0800233],[124.6489053,60.2238678],[124.7368049,60.3676069],[124.770919,60.4232067],[124.9937932,60.4215395],[124.9355133,59.4361854],[124.1812178,59.4417727]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWG_N05.11","eo:cloud_cover":55.649191,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":39.7418448623104,"s2:mean_solar_azimuth":161.959303472834,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.038169,"s2:thin_cirrus_percentage":22.523712,"s2:cloud_shadow_percentage":7.36936,"s2:nodata_pixel_percentage":75.410157,"s2:unclassified_percentage":0.573913,"s2:not_vegetated_percentage":0.368027,"s2:degraded_msi_data_percentage":0.0011,"s2:high_proba_clouds_percentage":10.974427,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":22.151056,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951","bbox":[123.6714801,58.5384388,124.9405427,59.5292081],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R60m/T51VWF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R60m/T51VWF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.6714801,58.5473506],[123.722775,58.639394],[123.8039467,58.7835312],[123.8853601,58.9276965],[123.9666585,59.0720401],[124.0498987,59.2160415],[124.1332296,59.3601371],[124.2178591,59.5041056],[124.2325877,59.5292081],[124.9405427,59.5239593],[124.8857837,58.5384388],[123.6714801,58.5473506]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWF_N05.11","eo:cloud_cover":81.033099,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.043118,"s2:mean_solar_zenith":38.8831309879419,"s2:mean_solar_azimuth":161.667799182135,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":10.345491,"s2:thin_cirrus_percentage":16.57799,"s2:cloud_shadow_percentage":4.357751,"s2:nodata_pixel_percentage":50.038314,"s2:unclassified_percentage":2.540173,"s2:not_vegetated_percentage":1.678819,"s2:degraded_msi_data_percentage":0.005,"s2:high_proba_clouds_percentage":37.707323,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":26.747787,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951","bbox":[123.1828317,57.6410797,124.8905421,58.6353608],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R60m/T51VWE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R60m/T51VWE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.1828317,57.6531181],[123.2468288,57.7728426],[123.3244985,57.9174652],[123.4033861,58.0619148],[123.481966,58.2065113],[123.5622705,58.3507675],[123.6423679,58.4951117],[123.7205273,58.6353608],[124.8905421,58.6267661],[124.8390116,57.6410797],[123.1828317,57.6531181]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWE_N05.11","eo:cloud_cover":99.754447,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":38.0257934249818,"s2:mean_solar_azimuth":161.363270080768,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":1.372901,"s2:cloud_shadow_percentage":0.24555,"s2:nodata_pixel_percentage":24.488933,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0105,"s2:high_proba_clouds_percentage":72.708732,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.672811,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951","bbox":[122.999668,56.7430308,124.8434653,57.7406252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R60m/T51VWD_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R60m/T51VWD_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.999668,57.3064169],[123.0167676,57.3389609],[123.0928648,57.4836288],[123.1695307,57.6282349],[123.2296074,57.7406252],[124.8434653,57.7288832],[124.794906,56.7430308],[122.9996729,56.7559505],[122.999668,57.3064169]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWD_N05.11","eo:cloud_cover":96.187341,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.002037,"s2:mean_solar_zenith":37.1688958453377,"s2:mean_solar_azimuth":161.04420339059,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":2.456396,"s2:thin_cirrus_percentage":3.343562,"s2:cloud_shadow_percentage":0.507342,"s2:nodata_pixel_percentage":2.935342,"s2:unclassified_percentage":0.74617,"s2:not_vegetated_percentage":0.086305,"s2:degraded_msi_data_percentage":0.0291,"s2:high_proba_clouds_percentage":51.66654,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.177237,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951","bbox":[122.9996721,55.8448305,124.7991059,56.8438118],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R60m/T51VWC_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R60m/T51VWC_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.9996721,56.8438118],[124.7991059,56.8308491],[124.7532859,55.8448305],[122.9996805,55.8573211],[122.9996721,56.8438118]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWC_N05.11","eo:cloud_cover":61.630154,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.030153,"s2:mean_solar_zenith":36.3130386398673,"s2:mean_solar_azimuth":160.709692363544,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.016443,"s2:vegetation_percentage":24.218497,"s2:thin_cirrus_percentage":7.01362,"s2:cloud_shadow_percentage":11.141433,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.582566,"s2:not_vegetated_percentage":2.323748,"s2:degraded_msi_data_percentage":0.1589,"s2:high_proba_clouds_percentage":29.178974,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.437561,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951","bbox":[122.7126308,56.7532025,123.1633916,57.6166554],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R60m/T51VVD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R60m/T51VVD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.7126308,56.7532025],[122.7162521,56.7604165],[122.790841,56.9050909],[122.8653564,57.0498061],[122.9408001,57.1943794],[123.0167676,57.3389609],[123.0928648,57.4836288],[123.1633916,57.6166554],[123.1596203,56.7558483],[122.7126308,56.7532025]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VVD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VVD_N05.11","eo:cloud_cover":92.885494,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.011394,"s2:mean_solar_zenith":37.4767638724535,"s2:mean_solar_azimuth":158.568712849072,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":3.241396,"s2:thin_cirrus_percentage":14.323263,"s2:cloud_shadow_percentage":0.650767,"s2:nodata_pixel_percentage":89.516771,"s2:unclassified_percentage":0.875791,"s2:not_vegetated_percentage":2.301516,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":49.858767,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.703463,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951","bbox":[122.2595518,55.851971,123.159994,56.8437093],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R60m/T51VVC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R60m/T51VVC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.2595518,55.851971],[122.2790468,55.8910374],[122.3491953,56.0363776],[122.4226852,56.1810109],[122.4957057,56.325857],[122.5695814,56.4705657],[122.6434336,56.6153529],[122.7162521,56.7604165],[122.7579667,56.8413273],[123.159994,56.8437093],[123.1559167,55.8572224],[122.2595518,55.851971]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VVC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VVC_N05.11","eo:cloud_cover":98.473299,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000751,"s2:mean_solar_zenith":36.6255546904771,"s2:mean_solar_azimuth":158.249173729644,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.333282,"s2:thin_cirrus_percentage":2.277825,"s2:cloud_shadow_percentage":1.097256,"s2:nodata_pixel_percentage":63.752663,"s2:unclassified_percentage":0.074426,"s2:not_vegetated_percentage":0.018966,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":21.215393,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":74.98008,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951","bbox":[126.045107,53.9152179,126.1543823,54.109222],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R60m/T51UYV_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R60m/T51UYV_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.1543823,54.1061278],[126.1492445,54.0972465],[126.0673388,53.9538472],[126.045107,53.9152179],[126.0589827,54.109222],[126.1543823,54.1061278]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UYV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UYV_N05.11","eo:cloud_cover":99.981284,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":33.1506421165131,"s2:mean_solar_azimuth":164.537132209352,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000645,"s2:thin_cirrus_percentage":0.393647,"s2:cloud_shadow_percentage":0.001291,"s2:nodata_pixel_percentage":99.485868,"s2:unclassified_percentage":0.008389,"s2:not_vegetated_percentage":0.008389,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":93.898463,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":5.689174,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736","bbox":[124.4953796,53.1302708,125.8664881,53.8933641],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R60m/T51UXV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R60m/T51UXV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.4884241,53.6901522],[125.4885654,53.6904054],[125.4891078,53.6902887],[125.4894449,53.6908929],[125.5039535,53.6874959],[125.503751,53.687133],[125.6506011,53.6531602],[125.8664881,53.6026128],[125.7859926,53.4606453],[125.7054103,53.3171489],[125.6253696,53.1736377],[125.6012551,53.1302708],[124.4953796,53.1517855],[124.5219295,53.8933641],[124.7816897,53.8417288],[124.7817719,53.8418812],[124.7821093,53.8418142],[124.7824295,53.8424074],[124.9417879,53.8085628],[125.1531166,53.7635297],[125.1531058,53.76351],[125.1535946,53.7634037],[125.1534731,53.7631817],[125.1537243,53.7631272],[125.1537101,53.7631014],[125.1540333,53.7630313],[125.1539083,53.762803],[125.1539368,53.7627968],[125.1536511,53.7622749],[125.4884241,53.6901522]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UXV_N05.11","eo:cloud_cover":57.297868,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.051528,"s2:mean_solar_zenith":33.4428233592958,"s2:mean_solar_azimuth":162.058972933642,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":38.879889,"s2:thin_cirrus_percentage":21.175461,"s2:cloud_shadow_percentage":1.375699,"s2:nodata_pixel_percentage":52.880234,"s2:unclassified_percentage":0.661029,"s2:not_vegetated_percentage":1.733291,"s2:degraded_msi_data_percentage":0.0264,"s2:high_proba_clouds_percentage":18.629491,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":17.492916,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951","bbox":[124.5154737,53.4389177,126.15453,54.1383733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R60m/T51UXV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R60m/T51UXV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.5141266,53.4995389],[125.4119279,53.5234491],[125.4118286,53.523271],[125.4117048,53.5233],[125.4115105,53.5229515],[125.3948381,53.5265454],[125.3950925,53.5270036],[125.0625067,53.5992397],[125.0624721,53.5991765],[125.0382765,53.6042932],[125.0382994,53.6043352],[125.038216,53.6043529],[125.0383493,53.6045975],[124.7113843,53.6741125],[124.7113072,53.6739695],[124.7101066,53.6742254],[124.710092,53.6741983],[124.7100034,53.6742172],[124.7097646,53.6737754],[124.7088823,53.6739509],[124.6918944,53.6775433],[124.6920168,53.6777704],[124.5154737,53.7130452],[124.5307013,54.1383733],[126.15453,54.106383],[126.1492445,54.0972465],[126.0673388,53.9538472],[125.9848749,53.8105611],[125.9030535,53.6671698],[125.8216955,53.5237566],[125.7738209,53.4389177],[125.5141266,53.4995389]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UXV_N05.11","eo:cloud_cover":75.041485,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.015173,"s2:mean_solar_zenith":33.4428233592958,"s2:mean_solar_azimuth":162.058972933642,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":20.049483,"s2:thin_cirrus_percentage":21.57958,"s2:cloud_shadow_percentage":2.185212,"s2:nodata_pixel_percentage":50.558668,"s2:unclassified_percentage":0.303577,"s2:not_vegetated_percentage":2.394095,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":25.175184,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.286716,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736","bbox":[124.4649804,52.2409272,125.649989,53.2402083],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R60m/T51UXU_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R60m/T51UXU_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.649989,53.2177799],[125.6253696,53.1736377],[125.5456072,53.0301951],[125.4665804,52.8866619],[125.3880901,52.7430708],[125.3099468,52.5994597],[125.2321784,52.4558624],[125.1550113,52.3121694],[125.1166706,52.2409272],[124.4649804,52.2534568],[124.4984604,53.2402083],[125.649989,53.2177799]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UXU_N05.11","eo:cloud_cover":78.283638,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.117534,"s2:mean_solar_zenith":32.5874882578317,"s2:mean_solar_azimuth":161.648350107667,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":16.530271,"s2:thin_cirrus_percentage":14.665918,"s2:cloud_shadow_percentage":0.601585,"s2:nodata_pixel_percentage":44.84674,"s2:unclassified_percentage":2.471653,"s2:not_vegetated_percentage":1.994159,"s2:degraded_msi_data_percentage":0.0306,"s2:high_proba_clouds_percentage":42.633015,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":20.984702,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736","bbox":[124.4361206,51.3503969,125.1634942,52.3413551],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R60m/T51UXT_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R60m/T51UXT_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.1634942,52.3279654],[125.1550113,52.3121694],[125.0776825,52.168482],[125.0011792,52.0245944],[124.9247977,51.8807541],[124.8488376,51.7368822],[124.7740366,51.5928144],[124.6995434,51.4487578],[124.6489659,51.3503969],[124.4361206,51.3544394],[124.4678842,52.3413551],[125.1634942,52.3279654]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UXT_N05.11","eo:cloud_cover":42.99162,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.008262,"s2:mean_solar_zenith":31.7329884341935,"s2:mean_solar_azimuth":161.21765425791,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":49.09727,"s2:thin_cirrus_percentage":7.465654,"s2:cloud_shadow_percentage":3.823742,"s2:nodata_pixel_percentage":71.850431,"s2:unclassified_percentage":3.486861,"s2:not_vegetated_percentage":0.590113,"s2:degraded_msi_data_percentage":0.0137,"s2:high_proba_clouds_percentage":20.667204,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.858763,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951","bbox":[124.5613574,54.9150072,126.3559683,55.9353354],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R60m/T51UXB_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R60m/T51UXB_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6007969,55.9353354],[126.3559683,55.8999986],[126.2734267,54.9150072],[124.5613574,54.949074],[124.6007969,55.9353354]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UXB_N05.11","eo:cloud_cover":88.807923,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.020468,"s2:mean_solar_zenith":35.1580547342679,"s2:mean_solar_azimuth":162.828282523976,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":9.042518,"s2:thin_cirrus_percentage":24.010889,"s2:cloud_shadow_percentage":1.367089,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.223838,"s2:not_vegetated_percentage":0.532002,"s2:degraded_msi_data_percentage":0.0269,"s2:high_proba_clouds_percentage":33.219445,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":31.57759,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951","bbox":[122.9996938,53.6836594,124.6803359,54.1481041],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R60m/T51UWV_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R60m/T51UWV_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6625437,53.6836594],[124.3645949,53.7431921],[124.3645896,53.7431821],[124.3424073,53.7474544],[124.3426493,53.7479108],[124.0176633,53.8106443],[124.017598,53.810519],[124.0164772,53.8107353],[124.0162841,53.8103658],[124.0059661,53.8122532],[123.9970036,53.8139794],[123.9973736,53.8146887],[123.6701786,53.874526],[123.669832,53.8738516],[123.6573272,53.8760265],[123.648813,53.8775839],[123.6489988,53.8779461],[123.6486847,53.8780006],[123.6487191,53.8780676],[123.64867,53.8780761],[123.6486992,53.8781329],[123.3008855,53.9384707],[123.2994055,53.9387182],[123.2994322,53.9387709],[123.2071657,53.954145],[122.9996949,53.9888438],[122.9996938,54.1481041],[124.6803359,54.1363774],[124.6625437,53.6836594]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UWV_N05.11","eo:cloud_cover":30.101115,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.016995,"s2:mean_solar_zenith":33.7533105076474,"s2:mean_solar_azimuth":159.600653364513,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.237719,"s2:thin_cirrus_percentage":12.295584,"s2:cloud_shadow_percentage":8.178432,"s2:nodata_pixel_percentage":69.2334,"s2:unclassified_percentage":1.578633,"s2:not_vegetated_percentage":0.859638,"s2:degraded_msi_data_percentage":0.0011,"s2:high_proba_clouds_percentage":8.614112,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.191418,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736","bbox":[122.9997279,47.930217,123.3765395,48.753013],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R60m/T51UWP_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R60m/T51UWP_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.3765395,48.7505719],[123.3585612,48.7119546],[123.3552534,48.7048697],[123.3513598,48.6965415],[123.2878676,48.5609815],[123.2215248,48.4159299],[123.1546532,48.2710565],[123.0884539,48.1260927],[123.0227773,47.9810966],[122.9997322,47.930217],[122.9997279,48.753013],[123.3765395,48.7505719]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UWP_N05.11","eo:cloud_cover":63.980716,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":28.6794760102683,"s2:mean_solar_azimuth":156.759918302674,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":34.175,"s2:thin_cirrus_percentage":30.567065,"s2:cloud_shadow_percentage":0.858481,"s2:nodata_pixel_percentage":89.681041,"s2:unclassified_percentage":0.258059,"s2:not_vegetated_percentage":0.727008,"s2:degraded_msi_data_percentage":0.0003,"s2:high_proba_clouds_percentage":11.811411,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.60224,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951","bbox":[122.9996798,54.9470178,124.7572757,55.9457344],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R60m/T51UWB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R60m/T51UWB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.9996798,55.9457344],[124.7572757,55.9332025],[124.7139855,54.9470178],[122.9996877,54.9590989],[122.9996798,55.9457344]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UWB_N05.11","eo:cloud_cover":49.787244,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.044164,"s2:mean_solar_zenith":35.4588406100177,"s2:mean_solar_azimuth":160.358673885298,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":37.789297,"s2:thin_cirrus_percentage":13.094236,"s2:cloud_shadow_percentage":10.389226,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.397232,"s2:not_vegetated_percentage":1.566494,"s2:degraded_msi_data_percentage":0.1166,"s2:high_proba_clouds_percentage":17.587948,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":19.105059,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736","bbox":[122.9996936,54.0555765,123.6635938,54.1679624],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R60m/T51UWA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R60m/T51UWA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.9996936,54.1679624],[123.0491081,54.1603337],[123.0489318,54.1599803],[123.049026,54.1599646],[123.0487058,54.1593229],[123.382052,54.1037045],[123.382073,54.1037458],[123.3821003,54.1037413],[123.3821741,54.1038871],[123.3823408,54.1038593],[123.3824132,54.1040024],[123.3824393,54.103998],[123.3824639,54.1040465],[123.3828133,54.1039882],[123.3829292,54.1042174],[123.6635938,54.0555765],[122.9996944,54.0602038],[122.9996936,54.1679624]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UWA_N05.11","eo:cloud_cover":8.451172,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.065912,"s2:mean_solar_zenith":34.6053844976197,"s2:mean_solar_azimuth":159.989421016063,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":87.770379,"s2:thin_cirrus_percentage":0.290421,"s2:cloud_shadow_percentage":1.6381,"s2:nodata_pixel_percentage":97.880805,"s2:unclassified_percentage":0.714232,"s2:not_vegetated_percentage":1.220707,"s2:degraded_msi_data_percentage":0.0028,"s2:high_proba_clouds_percentage":4.407667,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.753084,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951","bbox":[122.999687,54.0485147,124.7177342,55.046986],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R60m/T51UWA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R60m/T51UWA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.999687,55.046986],[124.7177342,55.0348657],[124.6767881,54.0485147],[122.9996944,54.0602038],[122.999687,55.046986]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UWA_N05.11","eo:cloud_cover":28.662688,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.010066,"s2:mean_solar_zenith":34.6053844976197,"s2:mean_solar_azimuth":159.989421016063,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.858567,"s2:thin_cirrus_percentage":11.501379,"s2:cloud_shadow_percentage":10.085355,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.358572,"s2:not_vegetated_percentage":0.998374,"s2:degraded_msi_data_percentage":0.0181,"s2:high_proba_clouds_percentage":8.541209,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.6201,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951","bbox":[121.9838497,53.9639095,123.1494256,54.1480114],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R60m/T51UVV_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R60m/T51UVV_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.1487821,53.9639095],[122.9479832,53.9974924],[122.9481262,53.9977808],[122.6132063,54.0496365],[122.6131096,54.049439],[122.5886183,54.0532539],[122.5886636,54.0533466],[122.2889777,54.0984146],[122.2284259,54.1076076],[122.2286166,54.1080021],[122.2278167,54.108111],[122.2278316,54.1081418],[122.1761686,54.1151418],[121.9838497,54.1413221],[123.1494256,54.1480114],[123.1487821,53.9639095]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UVV_N05.11","eo:cloud_cover":3.08952,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.017315,"s2:mean_solar_zenith":34.0813654983863,"s2:mean_solar_azimuth":157.166422690752,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":92.764705,"s2:thin_cirrus_percentage":0.131603,"s2:cloud_shadow_percentage":2.433042,"s2:nodata_pixel_percentage":93.5233,"s2:unclassified_percentage":0.330672,"s2:not_vegetated_percentage":1.343744,"s2:degraded_msi_data_percentage":0.0402,"s2:high_proba_clouds_percentage":0.973729,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.984188,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951","bbox":[121.8245577,54.9513065,123.1562717,55.9456353],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R60m/T51UVB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R60m/T51UVB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.8245577,54.9513065],[121.8573636,55.0210211],[121.9265895,55.1661143],[121.99571,55.3112522],[122.0657173,55.4562553],[122.1360145,55.6013198],[122.2068202,55.7463008],[122.2790468,55.8910374],[122.3029832,55.9406311],[123.1562717,55.9456353],[123.1524197,54.9590034],[121.8245577,54.9513065]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UVB_N05.11","eo:cloud_cover":87.740666,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.040295,"s2:mean_solar_zenith":35.7762565582716,"s2:mean_solar_azimuth":157.909946927641,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":8.209021,"s2:thin_cirrus_percentage":4.126655,"s2:cloud_shadow_percentage":3.075512,"s2:nodata_pixel_percentage":37.455398,"s2:unclassified_percentage":0.626232,"s2:not_vegetated_percentage":0.301926,"s2:degraded_msi_data_percentage":0.8614,"s2:high_proba_clouds_percentage":18.792695,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":64.821315,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736","bbox":[121.4668827,54.0504964,123.1494142,54.3749405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R60m/T51UVA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R60m/T51UVA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.4668827,54.1836475],[121.4887371,54.230434],[121.5558041,54.3749405],[121.9281611,54.3242906],[121.9282534,54.3244854],[121.928668,54.3244291],[121.9287311,54.3245624],[121.9290838,54.3245147],[121.9291289,54.32461],[121.9295965,54.3245468],[121.9297185,54.3248042],[121.9301434,54.324747],[121.9301624,54.3247872],[121.9305235,54.3247387],[121.9306037,54.3249078],[121.9308485,54.324875],[121.9308513,54.324881],[122.293863,54.2755855],[122.3246217,54.2713226],[122.3244758,54.2710202],[122.3247688,54.2709758],[122.3246482,54.2707258],[122.325808,54.2705502],[122.3257694,54.2704702],[122.3261054,54.2704194],[122.326099,54.2704061],[122.3264015,54.2703605],[122.3263961,54.2703493],[122.375888,54.2628902],[122.3867791,54.2612461],[122.6681326,54.2187082],[122.6681627,54.2187697],[122.6684173,54.2187312],[122.6684497,54.2187973],[122.6686699,54.2187641],[122.6687585,54.2189444],[122.668847,54.218931],[122.6688765,54.2189911],[122.6689649,54.2189778],[122.6689848,54.2190182],[123.0491081,54.1603337],[123.0489318,54.1599803],[123.049026,54.1599646],[123.0487058,54.1593229],[123.1494142,54.1425198],[123.14911,54.0601114],[121.4719201,54.0504964],[121.4668827,54.1836475]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UVA_N05.11","eo:cloud_cover":16.879188,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.006543,"s2:mean_solar_zenith":34.9279765778761,"s2:mean_solar_azimuth":157.549415349823,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":70.123202,"s2:thin_cirrus_percentage":0.069427,"s2:cloud_shadow_percentage":10.63133,"s2:nodata_pixel_percentage":79.059011,"s2:unclassified_percentage":0.881372,"s2:not_vegetated_percentage":1.458544,"s2:degraded_msi_data_percentage":0.0188,"s2:high_proba_clouds_percentage":8.416358,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.393401,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951","bbox":[121.4790494,54.056768,123.1527533,55.0468902],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R60m/T51UVA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R60m/T51UVA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.5659122,54.056768],[122.2889777,54.0984146],[122.2284259,54.1076076],[122.2286166,54.1080021],[122.2278167,54.108111],[122.2278316,54.1081418],[122.1761686,54.1151418],[121.8811708,54.1552997],[121.8810903,54.1551292],[121.8806732,54.1551863],[121.8806703,54.1551802],[121.8794626,54.1553438],[121.8793785,54.155165],[121.8535206,54.1587227],[121.8538059,54.1593139],[121.4790494,54.2095157],[121.5188676,54.2942384],[121.5851657,54.439808],[121.6527232,54.5851212],[121.7207465,54.7304114],[121.788983,54.8757081],[121.8573636,55.0210211],[121.8661441,55.0394246],[123.1527533,55.0468902],[123.14911,54.0601114],[122.5659122,54.056768]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UVA_N05.11","eo:cloud_cover":52.653968,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003285,"s2:mean_solar_zenith":34.9279765778761,"s2:mean_solar_azimuth":157.549415349823,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":37.74555,"s2:thin_cirrus_percentage":1.242309,"s2:cloud_shadow_percentage":7.265861,"s2:nodata_pixel_percentage":16.475068,"s2:unclassified_percentage":1.050488,"s2:not_vegetated_percentage":1.254543,"s2:degraded_msi_data_percentage":2.0749,"s2:high_proba_clouds_percentage":16.001086,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":35.410574,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736","bbox":[120.9984315,53.1416409,121.6511208,54.1401868],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R60m/T51UUV_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R60m/T51UUV_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.9984315,53.1416409],[121.0293857,53.2129719],[121.0939341,53.3584219],[121.1582032,53.5039295],[121.2234148,53.6493069],[121.2891205,53.7946536],[121.3556109,53.9398481],[121.4209831,54.0853839],[121.4450805,54.1369727],[121.6192567,54.1401868],[121.6511208,53.1535351],[120.9984315,53.1416409]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UUV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UUV_N05.11","eo:cloud_cover":4.091585,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.931335,"s2:mean_solar_zenith":34.4261817607303,"s2:mean_solar_azimuth":154.760325095232,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":91.110557,"s2:thin_cirrus_percentage":1.435339,"s2:cloud_shadow_percentage":3.054372,"s2:nodata_pixel_percentage":75.347459,"s2:unclassified_percentage":0.269249,"s2:not_vegetated_percentage":0.481111,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.107008,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.549238,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736","bbox":[120.6056024,52.2358279,121.6785441,53.2419635],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R60m/T51UUU_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R60m/T51UUU_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.6056024,52.2358279],[120.6495214,52.3393057],[120.7117381,52.4850079],[120.7745227,52.6306574],[120.8384771,52.7760809],[120.9017741,52.9217141],[120.9661176,53.0671769],[121.0293857,53.2129719],[121.0373045,53.2308157],[121.6483415,53.2419635],[121.6785441,52.2551507],[120.6056024,52.2358279]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UUU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UUU_N05.11","eo:cloud_cover":29.20112,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.027118,"s2:mean_solar_zenith":33.5881135017548,"s2:mean_solar_azimuth":154.358239976182,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":65.406787,"s2:thin_cirrus_percentage":14.649937,"s2:cloud_shadow_percentage":4.400674,"s2:nodata_pixel_percentage":48.51661,"s2:unclassified_percentage":0.382532,"s2:not_vegetated_percentage":0.568262,"s2:degraded_msi_data_percentage":0.1776,"s2:high_proba_clouds_percentage":5.582973,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.968209,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736","bbox":[121.4043239,54.0482962,121.6221725,54.3749405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R60m/T51UUA_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R60m/T51UUA_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.4043239,54.0482962],[121.4209831,54.0853839],[121.4887371,54.230434],[121.5558041,54.3749405],[121.6114247,54.3673747],[121.6221725,54.0523118],[121.4043239,54.0482962]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UUA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UUA_N05.11","eo:cloud_cover":25.536171,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":35.2668931326153,"s2:mean_solar_azimuth":155.135981523394,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":53.405219,"s2:thin_cirrus_percentage":0.00171,"s2:cloud_shadow_percentage":18.725342,"s2:nodata_pixel_percentage":97.477144,"s2:unclassified_percentage":0.516839,"s2:not_vegetated_percentage":1.798414,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":12.719624,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":12.814838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736","bbox":[121.7069511,45.0581917,122.1752693,46.0486504],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R60m/T51TVL_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R60m/T51TVL_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.1752693,46.0486504],[122.1329686,45.9488702],[122.0720409,45.8035458],[122.0110653,45.6582561],[121.9502934,45.5129648],[121.8899568,45.3675816],[121.8298896,45.2221331],[121.8252616,45.2109057],[121.7701436,45.0773904],[121.7623215,45.0583569],[121.7294164,45.0581917],[121.7069511,46.0462596],[122.1752693,46.0486504]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TVL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TVL_N05.11","eo:cloud_cover":98.190892,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000057,"s2:mean_solar_zenith":26.5701043469989,"s2:mean_solar_azimuth":152.40220453019,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.665535,"s2:thin_cirrus_percentage":3.684097,"s2:cloud_shadow_percentage":1.088557,"s2:nodata_pixel_percentage":82.523805,"s2:unclassified_percentage":0.051316,"s2:not_vegetated_percentage":0.00131,"s2:degraded_msi_data_percentage":0.0629,"s2:high_proba_clouds_percentage":58.089715,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":36.417076,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736","bbox":[121.7274503,44.9821886,121.7989239,45.1471066],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R60m/T51TVK_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R60m/T51TVK_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.7989239,45.1471066],[121.7701436,45.0773904],[121.7310193,44.9821886],[121.7274503,45.1467472],[121.7989239,45.1471066]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TVK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TVK_N05.11","eo:cloud_cover":100.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":25.7525590817109,"s2:mean_solar_azimuth":151.679725430971,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.615014,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":99.540663,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.459336,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736","bbox":[120.5688037,42.060235,120.7221903,42.429263],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R60m/T51TUG_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R60m/T51TUG_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.7221903,42.429263],[120.676057,42.3076801],[120.6206454,42.1618905],[120.5826297,42.060235],[120.5688037,42.4269017],[120.7221903,42.429263]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TUG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TUG_N05.11","eo:cloud_cover":99.987483,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":23.7890219812945,"s2:mean_solar_azimuth":146.652794097916,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.352288,"s2:cloud_shadow_percentage":0.00634,"s2:nodata_pixel_percentage":97.959131,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.006178,"s2:degraded_msi_data_percentage":0.0599,"s2:high_proba_clouds_percentage":66.681027,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":32.954165,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736","bbox":[119.4545363,39.6090131,120.0489377,40.6113254],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R60m/T51TTE_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R60m/T51TTE_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.0489377,40.6113254],[120.0282934,40.5542995],[119.9758153,40.4080915],[119.9230646,40.2620155],[119.8714404,40.1156798],[119.8513154,40.0589762],[119.819189,39.9686227],[119.7672769,39.8222937],[119.7387107,39.7415223],[119.7157065,39.6765674],[119.6935001,39.6136387],[119.5054874,39.6090131],[119.4545363,40.5964015],[120.0489377,40.6113254]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TTE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TTE_N05.11","eo:cloud_cover":80.006087,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":17.062339,"s2:mean_solar_zenith":22.7403756866213,"s2:mean_solar_azimuth":142.117565763747,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000243,"s2:vegetation_percentage":1.548352,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.00516,"s2:nodata_pixel_percentage":69.909889,"s2:unclassified_percentage":0.602656,"s2:not_vegetated_percentage":0.769749,"s2:degraded_msi_data_percentage":0.2965,"s2:high_proba_clouds_percentage":75.100821,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":4.905267,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736","bbox":[119.5010231,39.1430719,119.7250791,39.703032],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R60m/T51STD_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R60m/T51STD_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.7250791,39.703032],[119.7157065,39.6765674],[119.6640093,39.5300675],[119.6124705,39.3835187],[119.5611444,39.2369834],[119.528373,39.1430719],[119.5010231,39.6975095],[119.7250791,39.703032]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51STD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51STD_N05.11","eo:cloud_cover":2.799612,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":97.144371,"s2:mean_solar_zenith":21.9895965995577,"s2:mean_solar_azimuth":140.961465471589,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":95.220464,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.05602,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.027767,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.771845,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736","bbox":[120.5925969,52.1754847,121.634183,53.1792832],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R60m/T50UQD_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R60m/T50UQD_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.5925969,52.2051856],[120.6495214,52.3393057],[120.7117381,52.4850079],[120.7745227,52.6306574],[120.8384771,52.7760809],[120.9017741,52.9217141],[120.9661176,53.0671769],[121.0147664,53.1792832],[121.634183,53.159422],[121.5310322,52.1754847],[120.5925969,52.2051856]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UQD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UQD_N05.11","eo:cloud_cover":25.962237,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.047666,"s2:mean_solar_zenith":33.5713724823885,"s2:mean_solar_azimuth":154.209458513207,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":68.457073,"s2:thin_cirrus_percentage":14.526783,"s2:cloud_shadow_percentage":4.580833,"s2:nodata_pixel_percentage":52.271348,"s2:unclassified_percentage":0.378007,"s2:not_vegetated_percentage":0.564111,"s2:degraded_msi_data_percentage":0.0622,"s2:high_proba_clouds_percentage":4.97154,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.463914,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736","bbox":[120.2219412,51.2789252,121.5399797,52.2919894],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R60m/T50UQC_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R60m/T50UQC_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.2219412,51.3170712],[120.2227487,51.3190554],[120.2831008,51.4648783],[120.3435517,51.6106504],[120.4035932,51.7565431],[120.4652142,51.9021099],[120.5259895,52.0479574],[120.58769,52.1936244],[120.629439,52.2919894],[121.5399797,52.2631374],[121.4420952,51.2789252],[120.2219412,51.3170712]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UQC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UQC_N05.11","eo:cloud_cover":31.898367,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.214088,"s2:mean_solar_zenith":32.7693558338171,"s2:mean_solar_azimuth":153.582585084605,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":54.990929,"s2:thin_cirrus_percentage":5.04574,"s2:cloud_shadow_percentage":11.602494,"s2:nodata_pixel_percentage":33.275384,"s2:unclassified_percentage":0.805883,"s2:not_vegetated_percentage":0.448126,"s2:degraded_msi_data_percentage":0.1617,"s2:high_proba_clouds_percentage":14.983115,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.869514,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736","bbox":[119.169004,48.6298216,119.9045728,49.6229567],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R60m/T50UPV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R60m/T50UPV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.169004,48.6422133],[119.1869991,48.6899548],[119.2419162,48.8362346],[119.2974718,48.9824502],[119.3533039,49.128699],[119.4092168,49.2749858],[119.4656067,49.4212239],[119.5224453,49.5673876],[119.544024,49.6229567],[119.9045728,49.6162737],[119.8474785,48.6298216],[119.169004,48.6422133]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UPV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UPV_N05.11","eo:cloud_cover":28.28463,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.360298,"s2:mean_solar_zenith":30.8534709153541,"s2:mean_solar_azimuth":149.224726944608,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000436,"s2:vegetation_percentage":47.813132,"s2:thin_cirrus_percentage":0.020456,"s2:cloud_shadow_percentage":13.622352,"s2:nodata_pixel_percentage":65.792853,"s2:unclassified_percentage":0.628211,"s2:not_vegetated_percentage":9.29018,"s2:degraded_msi_data_percentage":0.0525,"s2:high_proba_clouds_percentage":17.138596,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.12558,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736","bbox":[119.5100935,49.5284183,119.9593861,50.5158587],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R60m/T50UPA_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R60m/T50UPA_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.5100935,49.5356243],[119.5224453,49.5673876],[119.5792112,49.7135705],[119.6363844,49.8596112],[119.6936125,50.0056639],[119.7510548,50.1516985],[119.8090594,50.2976236],[119.8668884,50.4436337],[119.8960822,50.5158587],[119.9593861,50.51467],[119.8993597,49.5284183],[119.5100935,49.5356243]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UPA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UPA_N05.11","eo:cloud_cover":22.555679,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.007636,"s2:mean_solar_zenith":31.6359537791406,"s2:mean_solar_azimuth":149.938004776559,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.772295,"s2:thin_cirrus_percentage":0.005205,"s2:cloud_shadow_percentage":14.883555,"s2:nodata_pixel_percentage":85.531396,"s2:unclassified_percentage":0.312989,"s2:not_vegetated_percentage":2.459519,"s2:degraded_msi_data_percentage":0.0117,"s2:high_proba_clouds_percentage":12.131319,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.419154,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736","bbox":[119.5794595,45.8957353,121.0656571,46.9235731],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R60m/T50TQS_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R60m/T50TQS_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.6264854,46.9235731],[121.0656571,46.8814597],[120.9930022,45.8957353],[119.5794595,45.9364309],[119.6264854,46.9235731]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQS_N05.11","eo:cloud_cover":27.660647,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000289,"s2:mean_solar_zenith":28.0407323538848,"s2:mean_solar_azimuth":149.157109553527,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":56.90102,"s2:thin_cirrus_percentage":0.050043,"s2:cloud_shadow_percentage":13.618906,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.215981,"s2:not_vegetated_percentage":1.600997,"s2:degraded_msi_data_percentage":0.0667,"s2:high_proba_clouds_percentage":16.988012,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.622592,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736","bbox":[119.4272955,42.3046906,120.8181237,43.326257],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R60m/T50TQN_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R60m/T50TQN_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.7739049,42.5651556],[120.7313982,42.4535302],[120.676057,42.3076801],[120.6749208,42.3046906],[119.4272955,42.3383721],[119.4662891,43.326257],[120.8181237,43.2890818],[120.7739049,42.5651556]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQN_N05.11","eo:cloud_cover":97.065979,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.004349,"s2:mean_solar_zenith":24.9974691461116,"s2:mean_solar_azimuth":145.343136428766,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":1.203796,"s2:thin_cirrus_percentage":0.286871,"s2:cloud_shadow_percentage":0.210673,"s2:nodata_pixel_percentage":0.893073,"s2:unclassified_percentage":0.388368,"s2:not_vegetated_percentage":1.126617,"s2:degraded_msi_data_percentage":0.0407,"s2:high_proba_clouds_percentage":79.418463,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":17.360643,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736","bbox":[119.361109,40.5215379,120.3744324,41.5268623],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R60m/T50TQL_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R60m/T50TQL_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.3744324,41.5008773],[120.3485427,41.4317422],[120.2947043,41.2854654],[120.240833,41.1392216],[120.187221,40.992973],[120.1342279,40.8466718],[120.0812006,40.7004455],[120.0282934,40.5542995],[120.0165344,40.5215379],[119.361109,40.5386175],[119.3967036,41.5268623],[120.3744324,41.5008773]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQL_N05.11","eo:cloud_cover":99.236029,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.015013,"s2:mean_solar_zenith":23.5228477672578,"s2:mean_solar_azimuth":143.079866845773,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.006039,"s2:thin_cirrus_percentage":5e-6,"s2:cloud_shadow_percentage":0.731515,"s2:nodata_pixel_percentage":37.700263,"s2:unclassified_percentage":0.004974,"s2:not_vegetated_percentage":0.006428,"s2:degraded_msi_data_percentage":0.1815,"s2:high_proba_clouds_percentage":96.402979,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.833042,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736","bbox":[119.3301855,39.6287972,120.0480229,40.6266494],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R60m/T50TQK_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R60m/T50TQK_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.0480229,40.6087983],[120.0282934,40.5542995],[119.9758153,40.4080915],[119.9230646,40.2620155],[119.8714404,40.1156798],[119.8513154,40.0589762],[119.819189,39.9686227],[119.7672769,39.8222937],[119.7387107,39.7415223],[119.7157065,39.6765674],[119.6988493,39.6287972],[119.3301855,39.6382276],[119.3642082,40.6266494],[120.0480229,40.6087983]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQK_N05.11","eo:cloud_cover":75.909507,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":16.082352,"s2:mean_solar_zenith":22.7998528423952,"s2:mean_solar_azimuth":141.840330969318,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000196,"s2:vegetation_percentage":4.620372,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.517618,"s2:nodata_pixel_percentage":59.397584,"s2:unclassified_percentage":1.103476,"s2:not_vegetated_percentage":1.764095,"s2:degraded_msi_data_percentage":0.2493,"s2:high_proba_clouds_percentage":69.136828,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.772681,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736","bbox":[118.2142871,42.3357822,119.5875362,43.3462],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R60m/T50TPN_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R60m/T50TPN_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.2338121,43.3462],[119.5875362,43.3235766],[119.5466306,42.3357822],[118.2142871,42.3576415],[118.2338121,43.3462]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TPN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TPN_N05.11","eo:cloud_cover":36.116058,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.106227,"s2:mean_solar_zenith":25.5386119791428,"s2:mean_solar_azimuth":143.028396117195,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000962,"s2:vegetation_percentage":37.823474,"s2:thin_cirrus_percentage":0.452646,"s2:cloud_shadow_percentage":6.894921,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.214482,"s2:not_vegetated_percentage":17.791484,"s2:degraded_msi_data_percentage":0.0557,"s2:high_proba_clouds_percentage":24.020392,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.64302,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736","bbox":[118.1987909,45.9567699,118.4342866,46.6304619],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R60m/T50TNS_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R60m/T50TNS_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.1987909,45.9581201],[118.2325341,46.0544868],[118.2834303,46.2012099],[118.3349002,46.347706],[118.3862382,46.4942726],[118.4342866,46.6304619],[118.4166561,45.9567699],[118.1987909,45.9581201]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TNS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TNS_N05.11","eo:cloud_cover":11.262465,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.830601,"s2:mean_solar_zenith":29.0507935392686,"s2:mean_solar_azimuth":144.596861136244,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":68.35593,"s2:thin_cirrus_percentage":5.509831,"s2:cloud_shadow_percentage":4.810938,"s2:nodata_pixel_percentage":95.042419,"s2:unclassified_percentage":0.336697,"s2:not_vegetated_percentage":14.377066,"s2:degraded_msi_data_percentage":0.0001,"s2:high_proba_clouds_percentage":2.567159,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.185475,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736","bbox":[117.8895777,45.0567486,118.4189041,46.0459415],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R60m/T50TNR_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R60m/T50TNR_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.8895777,45.0598289],[117.9284054,45.1743711],[117.9784136,45.3210777],[118.0286379,45.4678191],[118.0790918,45.6145875],[118.1299256,45.7612573],[118.1811913,45.9078576],[118.229542,46.0459415],[118.4189041,46.0447662],[118.3942539,45.0567486],[117.8895777,45.0598289]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TNR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TNR_N05.11","eo:cloud_cover":7.710127,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.227757,"s2:mean_solar_zenith":28.3008404942099,"s2:mean_solar_azimuth":143.720238992279,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.020385,"s2:vegetation_percentage":62.175059,"s2:thin_cirrus_percentage":0.104868,"s2:cloud_shadow_percentage":5.627007,"s2:nodata_pixel_percentage":75.651205,"s2:unclassified_percentage":0.755714,"s2:not_vegetated_percentage":22.477517,"s2:degraded_msi_data_percentage":0.001,"s2:high_proba_clouds_percentage":3.633779,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.971479,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736","bbox":[117.5889028,44.1571166,118.3964112,45.1482147],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R60m/T50TNQ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R60m/T50TNQ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.5889028,44.1618268],[117.6325885,44.2939196],[117.681421,44.4407804],[117.7306125,44.5875027],[117.7798669,44.7342142],[117.8291308,44.8809633],[117.8786777,45.0276736],[117.9195388,45.1482147],[118.3964112,45.1452997],[118.372894,44.1571166],[117.5889028,44.1618268]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TNQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TNQ_N05.11","eo:cloud_cover":23.080322,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0417,"s2:mean_solar_zenith":27.5586205163193,"s2:mean_solar_azimuth":142.794105299252,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.57253,"s2:thin_cirrus_percentage":2.204978,"s2:cloud_shadow_percentage":8.319222,"s2:nodata_pixel_percentage":54.831058,"s2:unclassified_percentage":0.561122,"s2:not_vegetated_percentage":8.392074,"s2:degraded_msi_data_percentage":0.0172,"s2:high_proba_clouds_percentage":12.556584,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.31876,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736","bbox":[116.7218325,41.4618364,117.1186942,42.4526297],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R60m/T50TMM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R60m/T50TMM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.7218325,41.4618364],[116.7342955,41.5018647],[116.7799969,41.6489077],[116.8264115,41.795836],[116.8730517,41.9427994],[116.9188569,42.0900523],[116.965478,42.2370827],[117.0122762,42.3841243],[117.0340859,42.4522246],[117.1186942,42.4526297],[117.1168731,41.4636925],[116.7218325,41.4618364]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TMM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TMM_N05.11","eo:cloud_cover":13.409732,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.037201,"s2:mean_solar_zenith":25.9700458856941,"s2:mean_solar_azimuth":137.491697498845,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":78.346264,"s2:thin_cirrus_percentage":0.000019,"s2:cloud_shadow_percentage":1.496124,"s2:nodata_pixel_percentage":82.224864,"s2:unclassified_percentage":0.696433,"s2:not_vegetated_percentage":5.929337,"s2:degraded_msi_data_percentage":0.0003,"s2:high_proba_clouds_percentage":6.646004,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.763709,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736","bbox":[116.4430791,40.55959,117.1170316,41.5517851],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R60m/T50TML_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R60m/T50TML_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.4430791,40.55959],[116.4611705,40.6197993],[116.5059286,40.7670862],[116.5513424,40.9141132],[116.5979323,41.0607592],[116.6417932,41.2082121],[116.6885271,41.354867],[116.7342955,41.5018647],[116.7492729,41.5500542],[117.1170316,41.5517851],[117.1152916,40.5626924],[116.4430791,40.55959]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TML","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TML_N05.11","eo:cloud_cover":1.470486,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.085095,"s2:mean_solar_zenith":25.2769763879235,"s2:mean_solar_azimuth":136.332294279426,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":95.43981,"s2:thin_cirrus_percentage":0.000202,"s2:cloud_shadow_percentage":0.891395,"s2:nodata_pixel_percentage":60.542274,"s2:unclassified_percentage":0.097371,"s2:not_vegetated_percentage":1.950037,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.67822,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.792064,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736","bbox":[119.3006375,38.7360413,119.7299013,39.7268153],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R60m/T50SQJ_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R60m/T50SQJ_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.7299013,39.7166481],[119.7157065,39.6765674],[119.6640093,39.5300675],[119.6124705,39.3835187],[119.5611444,39.2369834],[119.5100199,39.0904785],[119.4591559,38.9439878],[119.4085484,38.797521],[119.3874031,38.7360413],[119.3006375,38.7382186],[119.3331665,39.7268153],[119.7299013,39.7166481]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SQJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SQJ_N05.11","eo:cloud_cover":20.921469,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":78.946793,"s2:mean_solar_zenith":22.0883445369773,"s2:mean_solar_azimuth":140.521557816201,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.017688,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.01604,"s2:nodata_pixel_percentage":81.280202,"s2:unclassified_percentage":0.003864,"s2:not_vegetated_percentage":0.094148,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":11.769027,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.152442,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736","bbox":[119.2918736,38.4576552,119.4174953,38.8262817],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R60m/T50SQH_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R60m/T50SQH_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.4174953,38.8234148],[119.4085484,38.797521],[119.3581734,38.651056],[119.307937,38.5046006],[119.2918736,38.4576552],[119.3034704,38.8262817],[119.4174953,38.8234148]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SQH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SQH_N05.11","eo:cloud_cover":47.70222,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":52.205902,"s2:mean_solar_zenith":21.3885780137229,"s2:mean_solar_azimuth":139.115402045806,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.4038,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.091874,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":18.943036,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.759184,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736","bbox":[118.1508722,38.7363369,119.447885,39.7443999],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R60m/T50SPJ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R60m/T50SPJ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.4167008,38.8211153],[119.4085484,38.797521],[119.3875048,38.7363369],[118.1508722,38.7551983],[118.167158,39.7443999],[119.447885,39.7244518],[119.4167008,38.8211153]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SPJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SPJ_N05.11","eo:cloud_cover":20.222032,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":39.885443,"s2:mean_solar_zenith":22.6840681044289,"s2:mean_solar_azimuth":138.199942169003,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":22.857326,"s2:thin_cirrus_percentage":0.000242,"s2:cloud_shadow_percentage":1.767036,"s2:nodata_pixel_percentage":0.111814,"s2:unclassified_percentage":2.368912,"s2:not_vegetated_percentage":12.879643,"s2:degraded_msi_data_percentage":0.0202,"s2:high_proba_clouds_percentage":11.702741,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.519049,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736","bbox":[118.1102397,36.0461721,118.8109879,37.041254],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R60m/T50SPF_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R60m/T50SPF_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.8109879,37.0311754],[118.76475,36.8915401],[118.7163983,36.7449153],[118.6679767,36.5983507],[118.6198789,36.4517246],[118.5720684,36.3049556],[118.5236848,36.1582592],[118.4874197,36.0461721],[118.1102397,36.0515828],[118.1244855,37.041254],[118.8109879,37.0311754]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SPF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SPF_N05.11","eo:cloud_cover":36.983517,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.265535,"s2:mean_solar_zenith":20.6750215960592,"s2:mean_solar_azimuth":133.711979389783,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":34.599906,"s2:thin_cirrus_percentage":6.869698,"s2:cloud_shadow_percentage":12.036689,"s2:nodata_pixel_percentage":56.897491,"s2:unclassified_percentage":0.989636,"s2:not_vegetated_percentage":15.108298,"s2:degraded_msi_data_percentage":0.0491,"s2:high_proba_clouds_percentage":16.961607,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.15221,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736","bbox":[118.0934106,34.8104737,118.228127,35.2380875],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R60m/T50SPD_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R60m/T50SPD_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.228127,35.2362718],[118.1941734,35.1294626],[118.1475869,34.9825917],[118.1013403,34.8357003],[118.0934106,34.8104737],[118.0990408,35.2380875],[118.228127,35.2362718]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SPD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SPD_N05.11","eo:cloud_cover":26.308063,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.43517,"s2:mean_solar_zenith":19.4188388313226,"s2:mean_solar_azimuth":130.20887712026,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":46.315238,"s2:thin_cirrus_percentage":22.232413,"s2:cloud_shadow_percentage":0.66529,"s2:nodata_pixel_percentage":97.789735,"s2:unclassified_percentage":0.501519,"s2:not_vegetated_percentage":25.741094,"s2:degraded_msi_data_percentage":0.0255,"s2:high_proba_clouds_percentage":0.583179,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.49247,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736","bbox":[116.9997724,36.9514795,118.2493543,37.9475896],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R60m/T50SNG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R60m/T50SNG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.9997724,37.9475896],[118.2493543,37.9409562],[118.2330052,36.9514795],[116.9997753,36.9578811],[116.9997724,37.9475896]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SNG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SNG_N05.11","eo:cloud_cover":47.13845,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.602669,"s2:mean_solar_zenith":21.9739264966328,"s2:mean_solar_azimuth":133.083464061664,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":31.315121,"s2:thin_cirrus_percentage":16.231024,"s2:cloud_shadow_percentage":9.945966,"s2:nodata_pixel_percentage":3e-6,"s2:unclassified_percentage":0.741862,"s2:not_vegetated_percentage":10.248818,"s2:degraded_msi_data_percentage":0.0126,"s2:high_proba_clouds_percentage":16.119608,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.787817,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736","bbox":[116.9997848,32.4474308,117.666375,33.4395751],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R60m/T50SNB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R60m/T50SNB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.666375,33.4364017],[117.6444503,33.3648472],[117.5995079,33.2177733],[117.5546741,33.0707217],[117.5099751,32.9236622],[117.4653549,32.7765144],[117.4207487,32.6292944],[117.3764334,32.4819554],[117.3660533,32.4474308],[116.9997872,32.4491288],[116.9997848,33.4395751],[117.666375,33.4364017]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SNB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SNB_N05.11","eo:cloud_cover":39.729539,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.83291,"s2:mean_solar_zenith":18.9771520751009,"s2:mean_solar_azimuth":124.161536284537,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":32.208225,"s2:thin_cirrus_percentage":6.435398,"s2:cloud_shadow_percentage":1.07809,"s2:nodata_pixel_percentage":56.314051,"s2:unclassified_percentage":1.244856,"s2:not_vegetated_percentage":23.90082,"s2:degraded_msi_data_percentage":0.035,"s2:high_proba_clouds_percentage":18.052907,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.241231,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736","bbox":[116.999787,32.2482444,117.3925471,32.5373552],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R60m/T50SNA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R60m/T50SNA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.3925471,32.53553],[117.3764334,32.4819554],[117.332138,32.3346271],[117.3062352,32.2482444],[117.2528013,32.2622692],[117.0461187,32.3166646],[117.046091,32.3165716],[117.0459935,32.3165973],[117.0454263,32.3146922],[116.9997875,32.3257877],[116.999787,32.5373552],[117.3925471,32.53553]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SNA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SNA_N05.11","eo:cloud_cover":26.832655,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.541355,"s2:mean_solar_zenith":18.4456314194497,"s2:mean_solar_azimuth":122.033562227785,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":39.458776,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":92.377031,"s2:unclassified_percentage":0.998794,"s2:not_vegetated_percentage":32.1652,"s2:degraded_msi_data_percentage":0.0012,"s2:high_proba_clouds_percentage":14.997889,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.834764,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736","bbox":[115.9013317,38.7554279,117.1139256,39.750212],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R60m/T50SMJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R60m/T50SMJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.9013317,38.7554279],[115.9301224,38.8532881],[115.9736448,39.0005998],[116.0172137,39.1478543],[116.0608096,39.2950671],[116.1044794,39.4422733],[116.1483299,39.5894922],[116.1923701,39.736696],[116.195178,39.7460419],[117.1139256,39.750212],[117.1123356,38.7608105],[115.9013317,38.7554279]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMJ_N05.11","eo:cloud_cover":1.14024,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.138078,"s2:mean_solar_zenith":23.927685575955,"s2:mean_solar_azimuth":133.801367476993,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":65.048999,"s2:thin_cirrus_percentage":1.021053,"s2:cloud_shadow_percentage":0.014508,"s2:nodata_pixel_percentage":16.666119,"s2:unclassified_percentage":0.792223,"s2:not_vegetated_percentage":31.795236,"s2:degraded_msi_data_percentage":0.016,"s2:high_proba_clouds_percentage":0.009149,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.110037,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736","bbox":[115.8614709,36.9525649,117.111086,37.9475371],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R60m/T50SMG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R60m/T50SMG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.8614709,37.9420809],[117.111086,37.9475371],[117.1096319,36.9578305],[115.8763705,36.9525649],[115.8614709,37.9420809]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMG_N05.11","eo:cloud_cover":41.186291,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.053991,"s2:mean_solar_zenith":22.6340813175253,"s2:mean_solar_azimuth":130.954784605596,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.987856,"s2:thin_cirrus_percentage":9.839559,"s2:cloud_shadow_percentage":11.77372,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.437062,"s2:not_vegetated_percentage":9.555632,"s2:degraded_msi_data_percentage":0.0298,"s2:high_proba_clouds_percentage":16.522081,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.824648,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736","bbox":[115.8750647,36.0515787,117.1097593,37.0465323],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R60m/T50SMF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R60m/T50SMF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.8750647,37.0412498],[117.1097593,37.0465323],[117.1083685,36.056675],[115.8893163,36.0515787],[115.8750647,37.0412498]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMF_N05.11","eo:cloud_cover":46.413097,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.336628,"s2:mean_solar_zenith":22.0119019990082,"s2:mean_solar_azimuth":129.402097516376,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.597174,"s2:thin_cirrus_percentage":15.03856,"s2:cloud_shadow_percentage":4.154141,"s2:nodata_pixel_percentage":7e-6,"s2:unclassified_percentage":0.695393,"s2:not_vegetated_percentage":11.786846,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":13.983063,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":17.391473,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736","bbox":[115.8880749,35.1499121,117.1084896,36.1448493],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R60m/T50SME_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R60m/T50SME_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.8880749,36.1397366],[117.1084896,36.1448493],[117.1071592,35.1548426],[115.9017071,35.1499121],[115.8880749,36.1397366]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SME","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SME_N05.11","eo:cloud_cover":58.306003,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.369206,"s2:mean_solar_zenith":21.4074804479542,"s2:mean_solar_azimuth":127.754859134037,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":28.753677,"s2:thin_cirrus_percentage":21.736342,"s2:cloud_shadow_percentage":0.966457,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.66243,"s2:not_vegetated_percentage":10.925531,"s2:degraded_msi_data_percentage":0.0143,"s2:high_proba_clouds_percentage":14.595555,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.974111,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736","bbox":[115.9005196,34.2481073,117.1072751,35.2430302],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R60m/T50SMD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R60m/T50SMD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.9005196,35.2380835],[117.1072751,35.2430302],[117.1060025,34.2528758],[115.9135595,34.2481073],[115.9005196,35.2380835]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMD_N05.11","eo:cloud_cover":90.309763,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.518857,"s2:mean_solar_zenith":20.8227995236326,"s2:mean_solar_azimuth":126.009053551506,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":4.199996,"s2:thin_cirrus_percentage":14.53747,"s2:cloud_shadow_percentage":1.179472,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.02645,"s2:not_vegetated_percentage":3.765067,"s2:degraded_msi_data_percentage":0.0033,"s2:high_proba_clouds_percentage":37.807155,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":37.96514,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736","bbox":[116.1145798,32.3015168,117.1039399,32.5373123],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R60m/T50SMA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R60m/T50SMA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.1036749,32.3015168],[117.0461187,32.3166646],[117.046091,32.3165716],[117.0459935,32.3165973],[117.0454263,32.3146922],[116.7782206,32.3796543],[116.778231,32.3796895],[116.7781318,32.3797131],[116.7781616,32.3798144],[116.7781075,32.3798273],[116.7781694,32.3800382],[116.7781547,32.3800417],[116.7784096,32.3809087],[116.7781299,32.3809753],[116.778211,32.381251],[116.7781507,32.3812654],[116.7782918,32.3817456],[116.5535674,32.4356065],[116.5437143,32.437978],[116.5431121,32.4359135],[116.2813242,32.4947713],[116.2816815,32.496011],[116.2815423,32.4960413],[116.2818084,32.4969648],[116.2814579,32.4970413],[116.2814761,32.4971044],[116.1145798,32.5335306],[117.1039399,32.5373123],[117.1036749,32.3015168]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMA_N05.11","eo:cloud_cover":14.862227,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":3.917596,"s2:mean_solar_zenith":19.2058256898959,"s2:mean_solar_azimuth":120.135148203205,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":61.090124,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.531518,"s2:nodata_pixel_percentage":89.938831,"s2:unclassified_percentage":0.804895,"s2:not_vegetated_percentage":18.791266,"s2:degraded_msi_data_percentage":0.0359,"s2:high_proba_clouds_percentage":6.904262,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":7.957965,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736","bbox":[115.63759,37.8502561,115.9746634,38.8443739],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R60m/T50SLH_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R60m/T50SLH_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.63759,37.8502561],[115.671881,37.9689406],[115.7145596,38.1162715],[115.7574188,38.2636455],[115.8004173,38.411074],[115.8435289,38.5584864],[115.8867567,38.7058869],[115.9273598,38.8438979],[115.9606157,38.8443739],[115.9746634,37.8549777],[115.63759,37.8502561]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLH_N05.11","eo:cloud_cover":38.279384,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.115262,"s2:mean_solar_zenith":23.932092986659,"s2:mean_solar_azimuth":130.356473489181,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":35.349339,"s2:thin_cirrus_percentage":5.769221,"s2:cloud_shadow_percentage":8.881476,"s2:nodata_pixel_percentage":85.593003,"s2:unclassified_percentage":0.588054,"s2:not_vegetated_percentage":16.765666,"s2:degraded_msi_data_percentage":0.0303,"s2:high_proba_clouds_percentage":19.331181,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.178983,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736","bbox":[115.3785214,36.9452099,115.9868749,37.9431112],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R60m/T50SLG_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R60m/T50SLG_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.3785214,36.9452099],[115.4182056,37.0847685],[115.4602395,37.2322337],[115.5023433,37.3796156],[115.5445309,37.526943],[115.586851,37.6742695],[115.6293078,37.8215905],[115.66316,37.9387564],[115.9734399,37.9431112],[115.9868749,36.9535591],[115.3785214,36.9452099]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLG_N05.11","eo:cloud_cover":36.07443,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.366998,"s2:mean_solar_zenith":23.3079127743644,"s2:mean_solar_azimuth":128.912664618134,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":42.052454,"s2:thin_cirrus_percentage":9.59694,"s2:cloud_shadow_percentage":8.664303,"s2:nodata_pixel_percentage":63.342643,"s2:unclassified_percentage":0.446737,"s2:not_vegetated_percentage":12.388815,"s2:degraded_msi_data_percentage":0.0098,"s2:high_proba_clouds_percentage":13.623509,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":12.853979,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736","bbox":[115.1241092,36.0407906,115.998548,37.0422472],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R60m/T50SLF_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R60m/T50SLF_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.1241092,36.0407906],[115.1272005,36.0518786],[115.168395,36.1994042],[115.2097009,36.3469466],[115.2511476,36.4945241],[115.2927244,36.6421295],[115.3344184,36.7896865],[115.3762581,36.9372503],[115.4038391,37.0342453],[115.9856975,37.0422472],[115.998548,36.052541],[115.1241092,36.0407906]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLF_N05.11","eo:cloud_cover":54.964435,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.055954,"s2:mean_solar_zenith":22.7011208309229,"s2:mean_solar_azimuth":127.38554131012,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":23.944311,"s2:thin_cirrus_percentage":18.65389,"s2:cloud_shadow_percentage":4.03236,"s2:nodata_pixel_percentage":40.977442,"s2:unclassified_percentage":1.742189,"s2:not_vegetated_percentage":15.259357,"s2:degraded_msi_data_percentage":0.0036,"s2:high_proba_clouds_percentage":14.528267,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.782278,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736","bbox":[114.8735561,35.1359055,116.0097208,36.140702],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R60m/T50SLE_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R60m/T50SLE_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.8735561,35.1359055],[114.8819738,35.1665639],[114.9226016,35.3142249],[114.9632854,35.461833],[115.004088,35.6093671],[115.0450297,35.7568681],[115.0860717,35.9043527],[115.1272005,36.0518786],[115.1488123,36.1292747],[115.9974287,36.140702],[116.0097208,35.1508431],[114.8735561,35.1359055]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLE_N05.11","eo:cloud_cover":61.273545,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.115494,"s2:mean_solar_zenith":22.112424509398,"s2:mean_solar_azimuth":125.769073487741,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":21.663535,"s2:thin_cirrus_percentage":21.789815,"s2:cloud_shadow_percentage":2.258105,"s2:nodata_pixel_percentage":18.485914,"s2:unclassified_percentage":0.487194,"s2:not_vegetated_percentage":14.201862,"s2:degraded_msi_data_percentage":0.0151,"s2:high_proba_clouds_percentage":18.484378,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":20.999353,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736","bbox":[114.8107801,34.2336874,116.020408,35.2390176],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R60m/T50SLD_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R60m/T50SLD_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.8107801,34.9069749],[114.8414251,35.0188806],[114.8819738,35.1665639],[114.8978821,35.2243822],[116.00865,35.2390176],[116.020408,34.2490077],[114.8285025,34.2336874],[114.8107801,34.9069749]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLD_N05.11","eo:cloud_cover":78.448844,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.034417,"s2:mean_solar_zenith":21.5437499415022,"s2:mean_solar_azimuth":124.060060209001,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":16.212113,"s2:thin_cirrus_percentage":15.942572,"s2:cloud_shadow_percentage":0.25766,"s2:nodata_pixel_percentage":1.390798,"s2:unclassified_percentage":0.02907,"s2:not_vegetated_percentage":5.016909,"s2:degraded_msi_data_percentage":0.0217,"s2:high_proba_clouds_percentage":37.523243,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":24.983029,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736","bbox":[114.8489629,32.548068,116.0392875,33.4357788],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R60m/T50SLB_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R60m/T50SLB_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.0392875,32.548068],[115.7887615,32.599859],[115.7889327,32.6004646],[115.7889023,32.6004706],[115.7891664,32.6014053],[115.7889536,32.6014471],[115.7889979,32.6016034],[115.7889594,32.6016109],[115.7890053,32.6017728],[115.5566318,32.6474306],[115.5560434,32.6453339],[115.2930914,32.6951129],[115.2937843,32.697615],[115.0578661,32.7390137],[115.0578174,32.7388361],[115.0566854,32.739034],[115.0561579,32.7371155],[114.8646338,32.7699863],[114.8489629,33.4209188],[116.0296449,33.4357788],[116.0392875,32.548068]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLB_N05.11","eo:cloud_cover":22.575794,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.203345,"s2:mean_solar_zenith":20.4735728391914,"s2:mean_solar_azimuth":120.350540525566,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":47.479817,"s2:thin_cirrus_percentage":0.78185,"s2:cloud_shadow_percentage":6.80596,"s2:nodata_pixel_percentage":22.615021,"s2:unclassified_percentage":1.604452,"s2:not_vegetated_percentage":21.323994,"s2:degraded_msi_data_percentage":0.0201,"s2:high_proba_clouds_percentage":9.574964,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":12.21898,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736","bbox":[114.6260528,34.2288219,114.9346265,35.2250277],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R60m/T50SKD_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R60m/T50SKD_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.6260528,34.2288219],[114.6400448,34.28055],[114.6801328,34.4281839],[114.7203285,34.5758146],[114.7606131,34.7235075],[114.8009815,34.8711936],[114.8414251,35.0188806],[114.8819738,35.1665639],[114.897987,35.2247636],[114.9098528,35.2250277],[114.9346265,34.2355216],[114.6260528,34.2288219]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SKD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SKD_N05.11","eo:cloud_cover":43.614638,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":22.2761367578294,"s2:mean_solar_azimuth":122.199905893594,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":48.51774,"s2:thin_cirrus_percentage":19.065133,"s2:cloud_shadow_percentage":0.279661,"s2:nodata_pixel_percentage":86.968803,"s2:unclassified_percentage":0.038013,"s2:not_vegetated_percentage":7.548423,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":8.437844,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":16.11166,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736","bbox":[114.3823884,33.3223707,114.9561528,34.3242059],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R60m/T50SKC_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R60m/T50SKC_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.3823884,33.3223707],[114.4016363,33.394506],[114.4411648,33.5422871],[114.4807933,33.6900103],[114.5205076,33.8376791],[114.5602767,33.9852886],[114.6001102,34.1329128],[114.6400448,34.28055],[114.6502313,34.3180644],[114.9324553,34.3242059],[114.9561528,33.3345403],[114.3823884,33.3223707]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SKC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SKC_N05.11","eo:cloud_cover":11.416361,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.145795,"s2:mean_solar_zenith":21.7449250375714,"s2:mean_solar_azimuth":120.441765877917,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":61.459398,"s2:thin_cirrus_percentage":1.473696,"s2:cloud_shadow_percentage":3.381855,"s2:nodata_pixel_percentage":64.255857,"s2:unclassified_percentage":1.099615,"s2:not_vegetated_percentage":22.484984,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":3.599652,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.343013,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736","bbox":[114.2607634,32.7519975,114.9694467,33.4226979],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R60m/T50SKB_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R60m/T50SKB_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.9694467,32.7519975],[114.7866736,32.7833664],[114.7873809,32.7859752],[114.7868224,32.7860614],[114.7868867,32.7862979],[114.5420852,32.8238584],[114.5415941,32.8220329],[114.2607634,32.8652053],[114.2835294,32.9510485],[114.3228282,33.0988814],[114.362195,33.2466921],[114.4016363,33.394506],[114.4060608,33.4110471],[114.9540887,33.4226979],[114.9694467,32.7519975]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SKB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SKB_N05.11","eo:cloud_cover":22.665247,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.044582,"s2:mean_solar_zenith":21.2368714393912,"s2:mean_solar_azimuth":118.590050519461,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":43.758434,"s2:thin_cirrus_percentage":0.316356,"s2:cloud_shadow_percentage":6.892233,"s2:nodata_pixel_percentage":67.121089,"s2:unclassified_percentage":1.238217,"s2:not_vegetated_percentage":25.397611,"s2:degraded_msi_data_percentage":0.0001,"s2:high_proba_clouds_percentage":9.031008,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.317885,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317","bbox":[156.1138782,71.0946572,157.4042726,71.8926319],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R60m/T57WVV_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R60m/T57WVV_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.1138782,71.8926319],[156.1865749,71.8773005],[156.1873346,71.8776742],[156.1876319,71.8776116],[156.1876651,71.8776279],[156.188117,71.877533],[156.1900524,71.8784839],[156.8140604,71.7434156],[156.8138246,71.7433015],[156.8144989,71.7431445],[156.8104562,71.7411889],[157.1727301,71.6575571],[157.4042726,71.6037897],[157.1415077,71.4783743],[156.8815306,71.3524484],[156.6249589,71.2261815],[156.3719088,71.0996042],[156.3638923,71.0955339],[156.2327264,71.0946572],[156.1138782,71.8926319]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57WVV","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T57WVV_N05.11","eo:cloud_cover":0.808194,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":99.191809,"s2:mean_solar_zenith":50.6476398763521,"s2:mean_solar_azimuth":189.674210386958,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.807331,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":82.696778,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0252,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.000863,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317","bbox":[152.9994042,71.9896812,155.6536986,72.4824862],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R60m/T56XNF_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R60m/T56XNF_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[152.9994042,72.4824862],[153.2193985,72.4460466],[153.2161141,72.4442957],[153.2179226,72.4439833],[153.2172622,72.443631],[153.7972632,72.3435368],[153.8006367,72.3453062],[153.8006751,72.3452996],[153.8010871,72.3455156],[154.444778,72.2286253],[154.4440394,72.2282447],[154.4441165,72.22823],[154.4413735,72.2268181],[154.4427393,72.2265573],[154.4425015,72.2264349],[155.0043533,72.1190371],[155.0047979,72.1192626],[155.0048938,72.1192443],[155.0075676,72.1205995],[155.1169701,72.0988713],[155.6369063,71.9954883],[155.6368743,71.9954724],[155.6372575,71.9953915],[155.6342712,71.9939029],[155.6352357,71.9937003],[155.635059,71.9936122],[155.6536986,71.9896812],[152.9994198,72.0113634],[152.9994042,72.4824862]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNF","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56XNF_N05.11","eo:cloud_cover":96.588451,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":3.411547,"s2:mean_solar_zenith":51.4036388492559,"s2:mean_solar_azimuth":185.856579772221,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.549547,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":79.889983,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.006,"s2:high_proba_clouds_percentage":93.191421,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.847482,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317","bbox":[149.9444535,71.989773,153.2899112,72.9336541],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R60m/T56XMF_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R60m/T56XMF_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.9444535,72.9336541],[150.5960508,72.8460045],[150.5930046,72.8442415],[150.5960489,72.8438183],[150.5954453,72.8434687],[151.0566301,72.779791],[151.2382524,72.7545429],[151.2384947,72.7546802],[151.2395613,72.7545329],[151.2427866,72.7563617],[151.5095988,72.7163929],[151.9434834,72.6512482],[151.9408115,72.6497676],[151.9427225,72.6494703],[151.9424003,72.6492914],[151.9427767,72.649233],[151.942188,72.6489065],[152.5493995,72.5547733],[152.5525707,72.556499],[153.2193985,72.4460466],[153.2161141,72.4442957],[153.2179226,72.4439833],[153.2172622,72.443631],[153.2899112,72.4310936],[153.2831475,72.0111578],[150.1000757,71.989773],[149.9444535,72.9336541]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMF","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56XMF_N05.11","eo:cloud_cover":36.172736,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":63.827264,"s2:mean_solar_zenith":51.3424657006491,"s2:mean_solar_azimuth":182.33412651875,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":2.19706,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":30.161938,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0208,"s2:high_proba_clouds_percentage":27.641454,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":6.334222,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317","bbox":[155.7661688,71.0815674,157.4042726,71.9394383],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R60m/T56WPE_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R60m/T56WPE_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[155.8919355,71.9394383],[156.1865749,71.8773005],[156.1873346,71.8776742],[156.1876319,71.8776116],[156.1876651,71.8776279],[156.188117,71.877533],[156.1900524,71.8784839],[156.8140604,71.7434156],[156.8138246,71.7433015],[156.8144989,71.7431445],[156.8104562,71.7411889],[157.1727301,71.6575571],[157.4042726,71.6037897],[157.1415077,71.4783743],[156.8815306,71.3524484],[156.6249589,71.2261815],[156.3719088,71.0996042],[156.3363851,71.0815674],[155.7661688,71.0946736],[155.8919355,71.9394383]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WPE","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WPE_N05.11","eo:cloud_cover":6.615165,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":50.099075,"s2:mean_solar_zenith":50.5852245554377,"s2:mean_solar_azimuth":189.292703639737,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":43.285748,"s2:vegetation_percentage":0.000012,"s2:thin_cirrus_percentage":6.175373,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":73.227441,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0264,"s2:high_proba_clouds_percentage":0.000012,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.439779,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317","bbox":[155.7222819,70.7655909,156.503808,71.1822592],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R60m/T56WPD_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R60m/T56WPD_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.503808,71.1655811],[156.3719088,71.0996042],[156.1220054,70.9727179],[155.8751998,70.845503],[155.7222819,70.7655909],[155.7785751,71.1822592],[156.503808,71.1655811]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WPD","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WPD_N05.11","eo:cloud_cover":35.880098,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":32.543823,"s2:mean_solar_zenith":49.6953014001368,"s2:mean_solar_azimuth":189.242109828946,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000264,"s2:vegetation_percentage":19.556281,"s2:thin_cirrus_percentage":33.529049,"s2:cloud_shadow_percentage":0.14037,"s2:nodata_pixel_percentage":94.972533,"s2:unclassified_percentage":0.985492,"s2:not_vegetated_percentage":10.893675,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.128425,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.222621,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317","bbox":[152.9994439,70.2047216,156.049855,71.2028426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R60m/T56WND_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R60m/T56WND_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.0109186,70.9154587],[155.8751998,70.845503],[155.6311487,70.7179664],[155.3897268,70.5901472],[155.1510019,70.4620067],[154.9150514,70.3335674],[154.6821372,70.2048519],[154.6819046,70.2047216],[152.9994705,70.2183208],[152.9994439,71.2028426],[156.049855,71.1780394],[156.0109186,70.9154587]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WND","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WND_N05.11","eo:cloud_cover":56.856114,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":15.574054,"s2:mean_solar_zenith":49.6197441185099,"s2:mean_solar_azimuth":185.964816080689,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000039,"s2:vegetation_percentage":18.447578,"s2:thin_cirrus_percentage":41.570169,"s2:cloud_shadow_percentage":1.502586,"s2:nodata_pixel_percentage":15.417919,"s2:unclassified_percentage":0.599417,"s2:not_vegetated_percentage":7.02021,"s2:degraded_msi_data_percentage":0.0181,"s2:high_proba_clouds_percentage":2.51416,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":12.771785,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317","bbox":[152.9994682,69.3200417,154.8382891,70.3060175],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R60m/T56WNC_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R60m/T56WNC_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[154.8382891,70.2911462],[154.6821372,70.2048519],[154.4520274,70.0759117],[154.2522737,69.9620968],[154.2308369,69.9499096],[154.2270893,69.9477473],[154.2251344,69.9466335],[154.1821007,69.9217891],[154.0063688,69.8203926],[153.9848081,69.8077666],[153.7789296,69.6873514],[153.5598436,69.5573057],[153.3434392,69.4270398],[153.1680828,69.3200417],[152.9994925,69.3213967],[152.9994682,70.3060175],[154.8382891,70.2911462]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WNC","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WNC_N05.11","eo:cloud_cover":28.974444,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":6.244714,"s2:mean_solar_zenith":48.727798516941,"s2:mean_solar_azimuth":186.035519925034,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.007582,"s2:vegetation_percentage":61.014575,"s2:thin_cirrus_percentage":24.466808,"s2:cloud_shadow_percentage":0.602819,"s2:nodata_pixel_percentage":65.473133,"s2:unclassified_percentage":0.150109,"s2:not_vegetated_percentage":3.005756,"s2:degraded_msi_data_percentage":0.0246,"s2:high_proba_clouds_percentage":1.617663,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.889972,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317","bbox":[152.9994904,69.2161524,153.3108208,69.4096405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R60m/T56WNB_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R60m/T56WNB_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.3108208,69.4071369],[153.1295349,69.2965207],[152.9994948,69.2161524],[152.9994904,69.4096405],[153.3108208,69.4071369]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WNB","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WNB_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":16.187942,"s2:mean_solar_zenith":47.8365840469843,"s2:mean_solar_azimuth":186.116465845849,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":79.936624,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.936272,"s2:unclassified_percentage":0.015907,"s2:not_vegetated_percentage":3.85953,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317","bbox":[150.2203151,70.1988218,153.2713887,71.2026464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R60m/T56WMD_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R60m/T56WMD_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.2203151,71.1822428],[153.2713887,71.2026464],[153.258393,70.2181351],[150.3532315,70.1988218],[150.2203151,71.1822428]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WMD","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WMD_N05.11","eo:cloud_cover":30.180329,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":22.282319,"s2:mean_solar_zenith":49.5549166581445,"s2:mean_solar_azimuth":182.67867868366,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001221,"s2:vegetation_percentage":34.504521,"s2:thin_cirrus_percentage":23.401777,"s2:cloud_shadow_percentage":3.834599,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.141184,"s2:not_vegetated_percentage":9.055829,"s2:degraded_msi_data_percentage":0.0119,"s2:high_proba_clouds_percentage":2.924363,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":3.854188,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317","bbox":[150.5541183,67.6415161,151.8870665,68.5035751],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R60m/T56WMA_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R60m/T56WMA_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[151.8870665,68.5035751],[151.6963116,68.3760551],[151.501133,68.2436697],[151.3306669,68.1266474],[151.3128158,68.1144175],[151.3098001,68.1123227],[151.3080017,68.1110881],[151.11682,67.9783099],[150.9277644,67.8453157],[150.7405053,67.7122238],[150.6423828,67.6415161],[150.5541183,68.494811],[151.8870665,68.5035751]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WMA","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WMA_N05.11","eo:cloud_cover":0.260707,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":23.086421,"s2:mean_solar_zenith":46.8742524507715,"s2:mean_solar_azimuth":183.187959173324,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":75.189161,"s2:thin_cirrus_percentage":0.260707,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":78.507793,"s2:unclassified_percentage":0.000123,"s2:not_vegetated_percentage":1.463589,"s2:degraded_msi_data_percentage":0.0257,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317","bbox":[149.8987666,71.9166252,153.2446805,72.9191954],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R60m/T55XFA_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R60m/T55XFA_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.051941,72.9191954],[150.5960508,72.8460045],[150.5930046,72.8442415],[150.5960489,72.8438183],[150.5954453,72.8434687],[151.0566301,72.779791],[151.2382524,72.7545429],[151.2384947,72.7546802],[151.2395613,72.7545329],[151.2427866,72.7563617],[151.5095988,72.7163929],[151.9434834,72.6512482],[151.9408115,72.6497676],[151.9427225,72.6494703],[151.9424003,72.6492914],[151.9427767,72.649233],[151.942188,72.6489065],[152.5493995,72.5547733],[152.5525707,72.556499],[153.2193985,72.4460466],[153.2161141,72.4442957],[153.2179226,72.4439833],[153.2172622,72.443631],[153.2446805,72.4388993],[153.0648961,71.9166252],[149.8987666,71.9897902],[150.051941,72.9191954]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XFA","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55XFA_N05.11","eo:cloud_cover":32.868475,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":39.013121,"s2:mean_solar_zenith":51.2931417795957,"s2:mean_solar_azimuth":182.281583054438,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":28.06398,"s2:vegetation_percentage":0.014809,"s2:thin_cirrus_percentage":6.119839,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":25.548658,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.039622,"s2:degraded_msi_data_percentage":0.0206,"s2:high_proba_clouds_percentage":18.249761,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":8.498877,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317","bbox":[148.3295008,71.9853678,150.3435503,72.9465808],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R60m/T55XEA_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R60m/T55XEA_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.3295008,72.0004983],[148.3331336,72.0028979],[148.5412191,72.138423],[148.7520334,72.2737263],[148.9654906,72.408815],[149.1815603,72.5436977],[149.4007946,72.6783585],[149.6231885,72.812805],[149.8483552,72.9465808],[150.3435503,72.8799696],[150.181736,71.9853678],[148.3295008,72.0004983]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEA","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55XEA_N05.11","eo:cloud_cover":0.165311,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":78.549856,"s2:mean_solar_zenith":51.3316846054059,"s2:mean_solar_azimuth":178.758447433788,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":6.250601,"s2:vegetation_percentage":9.62053,"s2:thin_cirrus_percentage":0.079091,"s2:cloud_shadow_percentage":0.125453,"s2:nodata_pixel_percentage":65.46303,"s2:unclassified_percentage":0.00707,"s2:not_vegetated_percentage":5.281178,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.022864,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.063356,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317","bbox":[149.7661688,71.0251958,153.093564,72.0778947],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R60m/T55WFV_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R60m/T55WFV_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.9125486,72.0778947],[153.093564,72.0043476],[152.7889605,71.0251958],[149.7661688,71.0946736],[149.9125486,72.0778947]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFV","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFV_N05.11","eo:cloud_cover":14.408642,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":62.24485,"s2:mean_solar_zenith":50.3985404696825,"s2:mean_solar_azimuth":182.119104010669,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":5.137096,"s2:vegetation_percentage":8.447716,"s2:thin_cirrus_percentage":7.188072,"s2:cloud_shadow_percentage":0.3712,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.017366,"s2:not_vegetated_percentage":9.373128,"s2:degraded_msi_data_percentage":0.0177,"s2:high_proba_clouds_percentage":4.545556,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.675014,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317","bbox":[149.4354563,68.3567732,152.3308902,69.3909851],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R60m/T55WFS_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R60m/T55WFS_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[152.1824531,68.69759],[152.094174,68.6401589],[151.8940049,68.5082134],[151.6963116,68.3760551],[151.6678839,68.3567732],[149.4354563,68.4071896],[149.546266,69.3909851],[152.3308902,69.3276752],[152.1824531,68.69759]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFS","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFS_N05.11","eo:cloud_cover":0.789332,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":16.580273,"s2:mean_solar_zenith":47.7128243449971,"s2:mean_solar_azimuth":181.748147889462,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":77.942979,"s2:thin_cirrus_percentage":0.556001,"s2:cloud_shadow_percentage":0.55987,"s2:nodata_pixel_percentage":2.93372,"s2:unclassified_percentage":0.029898,"s2:not_vegetated_percentage":4.097645,"s2:degraded_msi_data_percentage":0.019,"s2:high_proba_clouds_percentage":0.077236,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.156095,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317","bbox":[149.3431637,67.4864868,151.7945524,68.4948252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R60m/T55WFR_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R60m/T55WFR_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[151.7945524,68.4417292],[151.6963116,68.3760551],[151.501133,68.2436697],[151.3306669,68.1266474],[151.3128158,68.1144175],[151.3098001,68.1123227],[151.3080017,68.1110881],[151.11682,67.9783099],[150.9277644,67.8453157],[150.7405053,67.7122238],[150.5554665,67.5788836],[150.4289849,67.4864868],[149.3431637,67.5108527],[149.4449048,68.4948252],[151.7945524,68.4417292]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFR","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFR_N05.11","eo:cloud_cover":4.023106,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":12.379175,"s2:mean_solar_zenith":46.8171259569399,"s2:mean_solar_azimuth":181.656167535865,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":75.724196,"s2:thin_cirrus_percentage":0.328595,"s2:cloud_shadow_percentage":3.949002,"s2:nodata_pixel_percentage":34.944767,"s2:unclassified_percentage":0.226697,"s2:not_vegetated_percentage":3.697826,"s2:degraded_msi_data_percentage":0.0183,"s2:high_proba_clouds_percentage":1.715708,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":1.978803,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317","bbox":[149.2581395,66.613896,150.5456307,67.5985039],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R60m/T55WFQ_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R60m/T55WFQ_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.5456307,67.5716984],[150.3725878,67.4452878],[150.1914159,67.3114862],[150.011373,67.1776197],[149.8336593,67.0434616],[149.6577203,66.9091737],[149.4838735,66.7747109],[149.3119871,66.6401049],[149.2789046,66.613896],[149.2581395,66.6143589],[149.3518535,67.5985039],[150.5456307,67.5716984]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFQ","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFQ_N05.11","eo:cloud_cover":18.311203,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":0.16762,"s2:mean_solar_zenith":45.9212867035903,"s2:mean_solar_azimuth":181.577292223729,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":70.429194,"s2:thin_cirrus_percentage":8.949737,"s2:cloud_shadow_percentage":8.770066,"s2:nodata_pixel_percentage":76.459223,"s2:unclassified_percentage":0.405287,"s2:not_vegetated_percentage":1.91663,"s2:degraded_msi_data_percentage":0.0258,"s2:high_proba_clouds_percentage":4.362518,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":4.998947,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317","bbox":[149.256871,66.5964405,149.3882669,66.7025631],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R60m/T55WFP_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R60m/T55WFP_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.3882669,66.6998404],[149.3119871,66.6401049],[149.256871,66.5964405],[149.2662054,66.7025631],[149.3882669,66.6998404]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFP","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFP_N05.11","eo:cloud_cover":14.128898,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":9.20466,"s2:mean_solar_zenith":45.0258444072951,"s2:mean_solar_azimuth":181.510355019838,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":72.944981,"s2:thin_cirrus_percentage":14.128898,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.753672,"s2:unclassified_percentage":0.006734,"s2:not_vegetated_percentage":3.714728,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317","bbox":[147.0447745,71.0904748,150.196858,72.0876178],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R60m/T55WEV_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R60m/T55WEV_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.0447745,71.1147861],[147.1430576,71.1858658],[147.3347997,71.3224894],[147.5290457,71.4589168],[147.7256634,71.5951974],[147.9251834,71.7312914],[148.1276863,71.8671899],[148.3331336,72.0028979],[148.4632127,72.0876178],[150.196858,72.073449],[150.0362417,71.0904748],[147.0447745,71.1147861]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WEV","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WEV_N05.11","eo:cloud_cover":4.320446,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":28.570759,"s2:mean_solar_zenith":50.436239013637,"s2:mean_solar_azimuth":178.719528383963,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.556214,"s2:vegetation_percentage":43.16763,"s2:thin_cirrus_percentage":0.006602,"s2:cloud_shadow_percentage":6.721912,"s2:nodata_pixel_percentage":24.21111,"s2:unclassified_percentage":0.254749,"s2:not_vegetated_percentage":16.408287,"s2:degraded_msi_data_percentage":0.0097,"s2:high_proba_clouds_percentage":2.393112,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":1.920732,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317","bbox":[146.9994471,70.1948429,150.049855,71.2014965],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R60m/T55WEU_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R60m/T55WEU_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.9994471,71.0820047],[147.1430576,71.1858658],[147.1649942,71.2014965],[150.049855,71.1780394],[149.9040632,70.1948429],[146.9994705,70.2183208],[146.9994471,71.0820047]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WEU","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WEU_N05.11","eo:cloud_cover":15.072462,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":13.500412,"s2:mean_solar_zenith":49.5401095399085,"s2:mean_solar_azimuth":178.688054056801,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001239,"s2:vegetation_percentage":47.441328,"s2:thin_cirrus_percentage":0.028125,"s2:cloud_shadow_percentage":13.83779,"s2:nodata_pixel_percentage":0.388642,"s2:unclassified_percentage":0.420075,"s2:not_vegetated_percentage":9.726688,"s2:degraded_msi_data_percentage":0.0204,"s2:high_proba_clouds_percentage":8.549342,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":6.494995,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"collections":["sentinel-2-l2a"],"token":"next:sentinel-2-l2a:S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '131723' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 13:05:28 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T130527Z-167d46d96d8dtcxmhC1DEN584s0000000s1g0000000020tb status: code: 200 message: OK - request: body: '{"collections": ["sentinel-2-l2a"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '35' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716","bbox":[118.2169585,42.492896,118.5443546,43.3462],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_AOT_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R60m/T50TPN_20250717T031151_B01_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B02_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B03_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B04_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B05_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B06_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B07_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_B08_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R60m/T50TPN_20250717T031151_B09_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B11_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B12_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_B8A_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R20m/T50TPN_20250717T031151_SCL_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_WVP_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/IMG_DATA/R10m/T50TPN_20250717T031151_TCI_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/GRANULE/L2A_T50TPN_A052582_20250717T031154/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE/DATASTRIP/DS_2APS_20250717T060716_S20250717T031154/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TPN_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.5443546,43.3410102],[118.5336127,43.313588],[118.4767986,43.1679071],[118.4200672,43.0223138],[118.363583,42.8767423],[118.3076044,42.7309403],[118.2514322,42.5851422],[118.2169585,42.492896],[118.2338121,43.3462],[118.5443546,43.3410102]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:11:51.024000Z","platform":"Sentinel-2A","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TPN","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T060716_A052582_T50TPN_N05.11","eo:cloud_cover":37.504357,"s2:datatake_id":"GS2A_20250717T031151_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031151_N0511_R075_T50TPN_20250717T060716.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T060716_S20250717T031154_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T06:07:16.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.005036,"s2:mean_solar_zenith":24.4791112148997,"s2:mean_solar_azimuth":148.082651359385,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":42.258921,"s2:thin_cirrus_percentage":7.103997,"s2:cloud_shadow_percentage":11.257639,"s2:nodata_pixel_percentage":90.118074,"s2:unclassified_percentage":0.714036,"s2:not_vegetated_percentage":8.081225,"s2:degraded_msi_data_percentage":0.0041,"s2:high_proba_clouds_percentage":17.202029,"s2:reflectance_conversion_factor":0.96769091883615,"s2:medium_proba_clouds_percentage":13.198331,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716","bbox":[115.0575906,44.1468602,115.8719187,45.1480732],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_AOT_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R60m/T50TLQ_20250717T031151_B01_60m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B02_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B03_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B04_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B05_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B06_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B07_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_B08_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R60m/T50TLQ_20250717T031151_B09_60m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B11_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B12_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_B8A_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R20m/T50TLQ_20250717T031151_SCL_20m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_WVP_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/IMG_DATA/R10m/T50TLQ_20250717T031151_TCI_10m.tif","proj:bbox":[300000.0,4890240.0,409800.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/GRANULE/L2A_T50TLQ_A052582_20250717T031154/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/LQ/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE/DATASTRIP/DS_2APS_20250717T060716_S20250717T031154/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50TLQ_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.0575906,44.1468602],[115.1011869,44.2782072],[115.1502472,44.4250039],[115.1989562,44.5720106],[115.2484172,44.7188577],[115.2981315,44.865624],[115.3479419,45.0123669],[115.3916184,45.1406223],[115.8525926,45.1480732],[115.8719187,44.1597966],[115.0575906,44.1468602]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:11:51.024000Z","platform":"Sentinel-2A","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TLQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T060716_A052582_T50TLQ_N05.11","eo:cloud_cover":72.285634,"s2:datatake_id":"GS2A_20250717T031151_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031151_N0511_R075_T50TLQ_20250717T060716.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T060716_S20250717T031154_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T06:07:16.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.001972,"s2:mean_solar_zenith":27.5224023843446,"s2:mean_solar_azimuth":142.894627902949,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":5.61901,"s2:thin_cirrus_percentage":18.582772,"s2:cloud_shadow_percentage":1.436035,"s2:nodata_pixel_percentage":53.895164,"s2:unclassified_percentage":0.504762,"s2:not_vegetated_percentage":20.151974,"s2:degraded_msi_data_percentage":0.0243,"s2:high_proba_clouds_percentage":25.602505,"s2:reflectance_conversion_factor":0.96769091883615,"s2:medium_proba_clouds_percentage":28.100359,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716","bbox":[115.8880749,35.834919,115.9908287,36.1401671],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_AOT_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R60m/T50SME_20250717T031151_B01_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B02_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B03_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B04_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B05_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B06_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B07_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_B08_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R60m/T50SME_20250717T031151_B09_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B11_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B12_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_B8A_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R20m/T50SME_20250717T031151_SCL_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_WVP_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/IMG_DATA/R10m/T50SME_20250717T031151_TCI_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/GRANULE/L2A_T50SME_A052582_20250717T031154/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE/DATASTRIP/DS_2APS_20250717T060716_S20250717T031154/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031151_R075_T50SME_20250717T060716&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.9908287,36.1401671],[115.9438729,35.9950224],[115.8965727,35.848305],[115.892273,35.834919],[115.8880749,36.1397366],[115.9908287,36.1401671]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:11:51.024000Z","platform":"Sentinel-2A","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SME","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T060716_A052582_T50SME_N05.11","eo:cloud_cover":47.183838,"s2:datatake_id":"GS2A_20250717T031151_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031151_N0511_R075_T50SME_20250717T060716.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T060716_S20250717T031154_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T06:07:16.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.101275,"s2:mean_solar_zenith":19.8235202933671,"s2:mean_solar_azimuth":132.817782085647,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":43.840736,"s2:thin_cirrus_percentage":15.224913,"s2:cloud_shadow_percentage":0.102303,"s2:nodata_pixel_percentage":98.709226,"s2:unclassified_percentage":3.013829,"s2:not_vegetated_percentage":5.741826,"s2:degraded_msi_data_percentage":0.0021,"s2:high_proba_clouds_percentage":16.757917,"s2:reflectance_conversion_factor":0.96769091883615,"s2:medium_proba_clouds_percentage":15.201008,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712","bbox":[128.9996085,62.1408465,129.8006331,62.7419066],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R60m/T52VEQ_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R60m/T52VEQ_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R20m/T52VEQ_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/IMG_DATA/R10m/T52VEQ_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/GRANULE/L2A_T52VEQ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9996085,62.7419066],[129.3348229,62.6719642],[129.3491627,62.6689494],[129.348033,62.6677051],[129.3528745,62.6666135],[129.352699,62.6664204],[129.4534519,62.6439367],[129.8006331,62.565659],[129.6739234,62.4289043],[129.5469863,62.2900438],[129.4212215,62.151078],[129.4120261,62.1408465],[128.9996163,62.1439815],[128.9996085,62.7419066]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VEQ_N05.11","eo:cloud_cover":0.000763,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VEQ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.179538,"s2:mean_solar_zenith":41.555142486688,"s2:mean_solar_azimuth":174.585341968684,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.208325,"s2:thin_cirrus_percentage":0.000699,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":84.345657,"s2:unclassified_percentage":0.07844,"s2:not_vegetated_percentage":0.532063,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.000064,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712","bbox":[128.9996152,61.6772872,129.490866,62.2317701],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R60m/T52VEP_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R60m/T52VEP_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R20m/T52VEP_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/IMG_DATA/R10m/T52VEP_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/GRANULE/L2A_T52VEP_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VEP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.490866,62.2280327],[129.4212215,62.151078],[129.2962974,62.0120782],[129.1720438,61.8729258],[129.0490893,61.7335802],[128.999622,61.6772872],[128.9996152,62.2317701],[129.490866,62.2280327]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEP","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VEP_N05.11","eo:cloud_cover":0.000152,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VEP_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.205156,"s2:mean_solar_zenith":40.6603597363943,"s2:mean_solar_azimuth":174.526032947034,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":98.683,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":93.438905,"s2:unclassified_percentage":0.135321,"s2:not_vegetated_percentage":0.975464,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.000152,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712","bbox":[127.0165743,63.0279332,127.5170036,63.1171334],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R60m/T52VDR_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R60m/T52VDR_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R20m/T52VDR_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/IMG_DATA/R10m/T52VDR_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/GRANULE/L2A_T52VDR_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0165743,63.1171334],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.5170036,63.0310476],[127.0228562,63.0279332],[127.0165743,63.1171334]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDR","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDR_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDR_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.089908,"s2:mean_solar_zenith":42.5550553789093,"s2:mean_solar_azimuth":171.901675873215,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.055481,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.977798,"s2:unclassified_percentage":0.072705,"s2:not_vegetated_percentage":0.779959,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712","bbox":[127.0168934,62.1306897,129.1908025,63.1157098],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R60m/T52VDQ_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R60m/T52VDQ_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R20m/T52VDQ_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/IMG_DATA/R10m/T52VDQ_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/GRANULE/L2A_T52VDQ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0250686,63.1157098],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.5863074,63.0188193],[127.5853142,63.0176504],[127.5853219,63.017649],[127.5852843,63.0176048],[127.9988353,62.940722],[127.9988523,62.9407417],[127.998859,62.9407404],[127.9989099,62.9407993],[127.9990872,62.9407663],[127.9991731,62.940866],[128.0030855,62.9401388],[128.0032019,62.9402737],[128.0034798,62.9402222],[128.0040857,62.9409228],[128.4608686,62.8531384],[128.4657378,62.8521987],[128.4646482,62.8509597],[128.8780099,62.7661366],[128.8781506,62.766294],[128.8783839,62.7662462],[128.8784644,62.7663364],[128.8824752,62.765515],[128.8827621,62.7658365],[128.882924,62.7658034],[128.8829464,62.7658285],[128.8833939,62.7657373],[128.8837086,62.7660891],[129.1908025,62.702014],[129.1872239,62.143855],[127.0815883,62.1306897],[127.0168934,63.1156582],[127.0250686,63.1157098]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDQ_N05.11","eo:cloud_cover":5.201023,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDQ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.444513,"s2:mean_solar_zenith":41.660975876224,"s2:mean_solar_azimuth":171.880878712841,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":79.42512,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":6.495123,"s2:nodata_pixel_percentage":21.144556,"s2:unclassified_percentage":0.661313,"s2:not_vegetated_percentage":7.766136,"s2:degraded_msi_data_percentage":0.0187,"s2:high_proba_clouds_percentage":1.77157,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":3.429453,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712","bbox":[127.0760204,61.2345813,129.1877677,62.231643],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R60m/T52VDP_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R60m/T52VDP_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R20m/T52VDP_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/IMG_DATA/R10m/T52VDP_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/GRANULE/L2A_T52VDP_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.3432582,61.2345813],[127.1337622,61.2777318],[127.0760204,62.2184291],[129.1877677,62.231643],[129.1857101,61.8882308],[129.1720438,61.8729258],[129.0490893,61.7335802],[128.9266298,61.5942232],[128.8056844,61.4546144],[128.6854216,61.3149099],[128.6232308,61.2425179],[127.3432582,61.2345813]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDP","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDP_N05.11","eo:cloud_cover":5.202496,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDP_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.858072,"s2:mean_solar_zenith":40.7667686010522,"s2:mean_solar_azimuth":171.854576639774,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":86.080956,"s2:thin_cirrus_percentage":0.000277,"s2:cloud_shadow_percentage":5.805069,"s2:nodata_pixel_percentage":9.062117,"s2:unclassified_percentage":0.581971,"s2:not_vegetated_percentage":1.446041,"s2:degraded_msi_data_percentage":0.0252,"s2:high_proba_clouds_percentage":1.739334,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":3.462885,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712","bbox":[127.1312482,61.0025097,128.6995513,61.3313238],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_AOT_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R60m/T52VDN_20250717T031031_B01_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B02_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B03_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B04_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B05_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B06_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B07_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_B08_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R60m/T52VDN_20250717T031031_B09_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B11_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B12_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_B8A_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R20m/T52VDN_20250717T031031_SCL_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_WVP_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/IMG_DATA/R10m/T52VDN_20250717T031031_TCI_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/GRANULE/L2A_T52VDN_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VDN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.4187135,61.0025097],[127.9690619,61.1041713],[127.9691274,61.1042502],[127.9686036,61.1043609],[127.9689712,61.1048051],[127.7134838,61.1582637],[127.5692104,61.1887463],[127.5690063,61.1884943],[127.5677994,61.1887468],[127.5676201,61.1885253],[127.5669824,61.1886589],[127.566871,61.1885231],[127.133769,61.2777304],[127.1312482,61.3215913],[128.6995513,61.3313238],[128.6854216,61.3149099],[128.5653652,61.1751607],[128.4464531,61.0352923],[128.4187135,61.0025097]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDN","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VDN_N05.11","eo:cloud_cover":0.580258,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VDN_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":12.036611,"s2:mean_solar_zenith":39.8729740524278,"s2:mean_solar_azimuth":171.822741890705,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.533697,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":1.129968,"s2:nodata_pixel_percentage":85.815692,"s2:unclassified_percentage":0.586644,"s2:not_vegetated_percentage":0.96022,"s2:degraded_msi_data_percentage":0.0198,"s2:high_proba_clouds_percentage":0.175081,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.405177,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712","bbox":[124.9899031,62.9866068,127.2172106,63.4248872],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R60m/T52VCR_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R60m/T52VCR_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R20m/T52VCR_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/IMG_DATA/R10m/T52VCR_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/GRANULE/L2A_T52VCR_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCR_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.9899031,63.4248872],[125.2932314,63.3847438],[125.2932886,63.3848182],[125.2979312,63.3841971],[125.2981631,63.384498],[125.2989197,63.3843977],[125.2995225,63.3851818],[125.3895905,63.372172],[125.632161,63.3370397],[125.6340874,63.3367593],[125.7889128,63.314125],[125.7886802,63.3138295],[125.7887275,63.3138223],[125.7877109,63.3125302],[125.7877482,63.3125246],[125.7876699,63.3124252],[126.2195538,63.2478247],[126.2196728,63.2479728],[126.2197034,63.2479682],[126.2197423,63.2480168],[126.2246919,63.2472743],[126.2254384,63.2482054],[126.3050526,63.2354271],[126.3824637,63.2229757],[126.6983208,63.1720815],[126.6971974,63.1707085],[126.697223,63.1707043],[126.6971894,63.1706633],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.2137791,63.08455],[127.2172106,63.0305154],[125.0515033,62.9866068],[124.9899031,63.4248872]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCR","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCR_N05.11","eo:cloud_cover":8.21901,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCR_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.656129,"s2:mean_solar_zenith":42.6743589294175,"s2:mean_solar_azimuth":169.168645103758,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":82.176405,"s2:thin_cirrus_percentage":7.90844,"s2:cloud_shadow_percentage":0.498461,"s2:nodata_pixel_percentage":74.510235,"s2:unclassified_percentage":0.358015,"s2:not_vegetated_percentage":8.088169,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.049592,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.260978,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712","bbox":[125.0396236,62.0909077,127.2701768,63.1145955],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R60m/T52VCQ_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R60m/T52VCQ_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R20m/T52VCQ_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/IMG_DATA/R10m/T52VCQ_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/GRANULE/L2A_T52VCQ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCQ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0317166,63.1145955],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.2138297,63.0845411],[127.2701768,62.1331753],[125.1685297,62.0909077],[125.0396236,63.0741757],[127.0317166,63.1145955]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCQ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCQ_N05.11","eo:cloud_cover":3.044319,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCQ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.262499,"s2:mean_solar_zenith":41.7812611954988,"s2:mean_solar_azimuth":169.186086335173,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":87.450129,"s2:thin_cirrus_percentage":0.000076,"s2:cloud_shadow_percentage":4.792491,"s2:nodata_pixel_percentage":0.1421,"s2:unclassified_percentage":0.395385,"s2:not_vegetated_percentage":4.05145,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.876345,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":2.167897,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712","bbox":[125.1574343,61.2394793,127.3194781,62.2209238],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R60m/T52VCP_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R60m/T52VCP_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R20m/T52VCP_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/IMG_DATA/R10m/T52VCP_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/GRANULE/L2A_T52VCP_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCP_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.3194781,61.2394793],[127.1231788,61.2799116],[127.1232847,61.2800426],[127.1219084,61.2803084],[127.1220094,61.2804344],[127.1199989,61.2808238],[127.1202491,61.2811357],[126.7235626,61.3576592],[126.7234342,61.357496],[126.7230399,61.3575721],[126.7228081,61.3572812],[126.2803626,61.4399715],[126.2805356,61.4401926],[126.2800414,61.4402802],[126.28051,61.4408843],[125.8827905,61.5113669],[125.882757,61.511323],[125.8786748,61.5120461],[125.8781038,61.5113084],[125.6894189,61.5430415],[125.4306695,61.5865714],[125.4311657,61.5872339],[125.4264335,61.587998],[125.4268802,61.5885931],[125.2257255,61.6211511],[125.1574343,62.1785001],[127.2651556,62.2209238],[127.3194781,61.2394793]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCP","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCP_N05.11","eo:cloud_cover":0.378669,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCP_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.324839,"s2:mean_solar_zenith":40.8881029281013,"s2:mean_solar_azimuth":169.192930712771,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.305993,"s2:thin_cirrus_percentage":0.003307,"s2:cloud_shadow_percentage":0.609475,"s2:nodata_pixel_percentage":22.153567,"s2:unclassified_percentage":0.245625,"s2:not_vegetated_percentage":5.071058,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.08969,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.285671,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712","bbox":[126.9371671,61.2395079,127.3193394,61.3239944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_AOT_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R60m/T52VCN_20250717T031031_B01_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B02_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B03_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B04_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B05_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B06_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B07_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_B08_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R60m/T52VCN_20250717T031031_B09_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B11_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B12_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_B8A_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R20m/T52VCN_20250717T031031_SCL_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_WVP_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/IMG_DATA/R10m/T52VCN_20250717T031031_TCI_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/GRANULE/L2A_T52VCN_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T52VCN_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.3193394,61.2395079],[127.1231788,61.2799116],[127.1232847,61.2800426],[127.1219084,61.2803084],[127.1220094,61.2804344],[127.1199989,61.2808238],[127.1202491,61.2811357],[126.9371671,61.3164534],[127.314961,61.3239944],[127.3193394,61.2395079]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCN","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T52VCN_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T52VCN_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.0,"s2:mean_solar_zenith":39.99542120153,"s2:mean_solar_azimuth":169.189539087694,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.996364,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.178582,"s2:unclassified_percentage":0.003635,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712","bbox":[124.9763539,62.9810794,127.1580834,63.4229999],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_AOT_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R60m/T51VXL_20250717T031031_B01_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B02_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B03_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B04_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B05_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B06_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B07_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_B08_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R60m/T51VXL_20250717T031031_B09_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B11_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B12_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_B8A_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R20m/T51VXL_20250717T031031_SCL_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_WVP_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/IMG_DATA/R10m/T51VXL_20250717T031031_TCI_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/GRANULE/L2A_T51VXL_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.0041644,63.4229999],[125.2932314,63.3847438],[125.2932886,63.3848182],[125.2979312,63.3841971],[125.2981631,63.384498],[125.2989197,63.3843977],[125.2995225,63.3851818],[125.3895905,63.372172],[125.632161,63.3370397],[125.6340874,63.3367593],[125.7889128,63.314125],[125.7886802,63.3138295],[125.7887275,63.3138223],[125.7877109,63.3125302],[125.7877482,63.3125246],[125.7876699,63.3124252],[126.2195538,63.2478247],[126.2196728,63.2479728],[126.2197034,63.2479682],[126.2197423,63.2480168],[126.2246919,63.2472743],[126.2254384,63.2482054],[126.3050526,63.2354271],[126.3824637,63.2229757],[126.6983208,63.1720815],[126.6971974,63.1707085],[126.697223,63.1707043],[126.6971894,63.1706633],[127.1168073,63.1003341],[127.1168113,63.100339],[127.1213552,63.0995767],[127.1222847,63.1006937],[127.1580834,63.0943772],[127.141383,62.9810794],[124.9763539,63.0279443],[125.0041644,63.4229999]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXL","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VXL_N05.11","eo:cloud_cover":8.247952,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VXL_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.686861,"s2:mean_solar_zenith":42.6678613842167,"s2:mean_solar_azimuth":169.206249487435,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":82.077497,"s2:thin_cirrus_percentage":7.931365,"s2:cloud_shadow_percentage":0.614416,"s2:nodata_pixel_percentage":73.752838,"s2:unclassified_percentage":0.342299,"s2:not_vegetated_percentage":8.025804,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.05055,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.266037,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712","bbox":[124.9176451,62.0855865,127.1538391,63.1156693],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_AOT_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R60m/T51VXK_20250717T031031_B01_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B02_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B03_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B04_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B05_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B06_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B07_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_B08_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R60m/T51VXK_20250717T031031_B09_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B11_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B12_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_B8A_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R20m/T51VXK_20250717T031031_SCL_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_WVP_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/IMG_DATA/R10m/T51VXK_20250717T031031_TCI_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/GRANULE/L2A_T51VXK_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.9823142,63.1156693],[127.1538391,63.0686274],[127.0186771,62.0855865],[124.9176451,62.1307003],[124.9823142,63.1156693]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXK","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VXK_N05.11","eo:cloud_cover":2.430609,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VXK_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.282683,"s2:mean_solar_zenith":41.7905952014376,"s2:mean_solar_azimuth":168.972251447119,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":88.523567,"s2:thin_cirrus_percentage":0.00207,"s2:cloud_shadow_percentage":3.906056,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.334412,"s2:not_vegetated_percentage":4.519023,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.6896,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":1.738939,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712","bbox":[124.8897369,61.3196438,127.0303111,62.2184397],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_AOT_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R60m/T51VXJ_20250717T031031_B01_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B02_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B03_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B04_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B05_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B06_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B07_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_B08_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R60m/T51VXJ_20250717T031031_B09_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B11_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B12_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_B8A_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R20m/T51VXJ_20250717T031031_SCL_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_WVP_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/IMG_DATA/R10m/T51VXJ_20250717T031031_TCI_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/GRANULE/L2A_T51VXJ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VXJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.9206288,61.3196438],[126.7235626,61.3576592],[126.7234342,61.357496],[126.7230399,61.3575721],[126.7228081,61.3572812],[126.2803626,61.4399715],[126.2805356,61.4401926],[126.2800414,61.4402802],[126.28051,61.4408843],[125.8827905,61.5113669],[125.882757,61.511323],[125.8786748,61.5120461],[125.8781038,61.5113084],[125.6894189,61.5430415],[125.4306695,61.5865714],[125.4311657,61.5872339],[125.4264335,61.587998],[125.4268802,61.5885931],[125.0213233,61.6542347],[125.0206154,61.6532697],[125.0205831,61.6532264],[124.8897369,61.6728839],[124.9232108,62.2184397],[127.0303111,62.1731593],[126.9206288,61.3196438]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXJ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VXJ_N05.11","eo:cloud_cover":0.09484,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VXJ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.390283,"s2:mean_solar_zenith":40.9134462760282,"s2:mean_solar_azimuth":168.736071092909,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.095291,"s2:thin_cirrus_percentage":0.002062,"s2:cloud_shadow_percentage":0.189878,"s2:nodata_pixel_percentage":29.218137,"s2:unclassified_percentage":0.256012,"s2:not_vegetated_percentage":5.894198,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.020653,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.072125,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712","bbox":[123.9805079,63.0251146,125.1982436,63.512869],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R60m/T51VWL_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R60m/T51VWL_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R20m/T51VWL_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/IMG_DATA/R10m/T51VWL_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/GRANULE/L2A_T51VWL_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WL/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWL_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.9805079,63.0342255],[124.0175404,63.085966],[124.1204767,63.2286379],[124.224467,63.3711768],[124.32843,63.512869],[124.5210703,63.4881189],[124.6346038,63.4734666],[124.8427827,63.4461241],[124.8426612,63.4459627],[124.843131,63.4458996],[124.8420428,63.4444555],[125.1982436,63.3973148],[125.1694829,63.0251146],[123.9805079,63.0342255]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWL","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VWL_N05.11","eo:cloud_cover":1.018668,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VWL_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":2.220357,"s2:mean_solar_zenith":42.8838893759669,"s2:mean_solar_azimuth":166.489936893053,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":72.827864,"s2:thin_cirrus_percentage":0.982256,"s2:cloud_shadow_percentage":0.032739,"s2:nodata_pixel_percentage":79.224998,"s2:unclassified_percentage":0.36414,"s2:not_vegetated_percentage":23.532301,"s2:degraded_msi_data_percentage":0.0254,"s2:high_proba_clouds_percentage":0.00452,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":0.031893,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712","bbox":[123.354832,62.1279766,125.1760247,63.1215163],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R60m/T51VWK_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R60m/T51VWK_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R20m/T51VWK_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/IMG_DATA/R10m/T51VWK_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/GRANULE/L2A_T51VWK_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WK/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWK_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.354832,62.1412813],[123.4144574,62.228337],[123.5131015,62.3715201],[123.6127497,62.51456],[123.7130394,62.6574937],[123.8139747,62.8003313],[123.9153436,62.9431804],[124.0175404,63.085966],[124.0431896,63.1215163],[125.1760247,63.1128289],[125.1050472,62.1279766],[123.354832,62.1412813]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWK","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VWK_N05.11","eo:cloud_cover":7.135528,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VWK_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.506344,"s2:mean_solar_zenith":42.0087072062846,"s2:mean_solar_azimuth":166.295937583059,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.679336,"s2:thin_cirrus_percentage":5.686684,"s2:cloud_shadow_percentage":2.243425,"s2:nodata_pixel_percentage":32.554737,"s2:unclassified_percentage":0.489599,"s2:not_vegetated_percentage":5.940771,"s2:degraded_msi_data_percentage":0.0169,"s2:high_proba_clouds_percentage":0.370124,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":1.07872,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712","bbox":[123.1985668,61.6459062,125.1111559,62.2286126],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_AOT_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R60m/T51VWJ_20250717T031031_B01_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B02_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B03_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B04_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B05_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B06_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B07_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_B08_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R60m/T51VWJ_20250717T031031_B09_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B11_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B12_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_B8A_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R20m/T51VWJ_20250717T031031_SCL_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_WVP_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/IMG_DATA/R10m/T51VWJ_20250717T031031_TCI_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/GRANULE/L2A_T51VWJ_A052582_20250717T031025/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WJ/2025/07/17/S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE/DATASTRIP/DS_2APS_20250717T050712_S20250717T031025/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20250717T031031_R075_T51VWJ_20250717T050712&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.0727792,61.6459062],[125.0213233,61.6542347],[125.0206154,61.6532697],[125.0205831,61.6532264],[124.5618784,61.7221392],[124.5626009,61.7231425],[124.5564762,61.7240349],[124.5565079,61.7240783],[124.5563956,61.7240948],[124.5565044,61.7242461],[124.1371289,61.7858646],[124.1365717,61.7850755],[123.6592948,61.8481846],[123.660187,61.8494696],[123.3815512,61.8856612],[123.1985668,61.909715],[123.2200843,61.9419286],[123.3164139,62.0851892],[123.4144574,62.228337],[123.4146472,62.2286126],[125.1111559,62.2157059],[125.0727792,61.6459062]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T03:10:31.024000Z","platform":"Sentinel-2A","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWJ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20250717T050712_A052582_T51VWJ_N05.11","eo:cloud_cover":17.276834,"s2:datatake_id":"GS2A_20250717T031031_052582_N05.11","s2:product_uri":"S2A_MSIL2A_20250717T031031_N0511_R075_T51VWJ_20250717T050712.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20250717T050712_S20250717T031025_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:07:12.000000Z","sat:relative_orbit":75,"s2:water_percentage":0.309421,"s2:mean_solar_zenith":41.1337724557747,"s2:mean_solar_azimuth":166.094856835182,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":78.719282,"s2:thin_cirrus_percentage":15.268284,"s2:cloud_shadow_percentage":1.109277,"s2:nodata_pixel_percentage":60.790163,"s2:unclassified_percentage":0.225751,"s2:not_vegetated_percentage":2.317589,"s2:degraded_msi_data_percentage":0.0102,"s2:high_proba_clouds_percentage":0.228628,"s2:reflectance_conversion_factor":0.967690846045656,"s2:medium_proba_clouds_percentage":1.779921,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500","bbox":[158.999207,76.4849983,160.3514349,76.9244244],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R60m/T57XWF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R60m/T57XWF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R20m/T57XWF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/IMG_DATA/R10m/T57XWF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/GRANULE/L2A_T57XWF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[158.999207,76.9244244],[159.0277214,76.9172337],[159.0284819,76.9173979],[159.0286906,76.9173453],[159.0290513,76.9174232],[159.0291725,76.9173927],[159.0304404,76.9176667],[159.0305714,76.9176338],[159.0316672,76.9178705],[159.0319787,76.9177922],[159.0327171,76.9179518],[159.032787,76.9179342],[159.0333799,76.9180625],[159.0336093,76.9180049],[159.034998,76.9183053],[159.0353471,76.9182178],[159.0360053,76.9183601],[159.036266,76.9182948],[159.0372549,76.9185087],[159.2809197,76.8551048],[159.7206787,76.7400003],[159.7134913,76.7384641],[160.3514349,76.5588516],[160.0037225,76.4849983],[158.9992329,76.493385],[158.999207,76.9244244]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XWF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XWF_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XWF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.998295,"s2:mean_solar_zenith":57.0125193903975,"s2:mean_solar_azimuth":206.318532794304,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001708,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":92.03369,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.019,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500","bbox":[158.999228,76.2654779,160.3514349,76.5810287],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R60m/T57XWE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R60m/T57XWE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R20m/T57XWE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/IMG_DATA/R10m/T57XWE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/GRANULE/L2A_T57XWE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XWE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[160.3115986,76.5700674],[160.3514349,76.5588516],[159.8829236,76.4593409],[159.4120142,76.3571229],[158.9992446,76.2654779],[158.999228,76.5810287],[160.3115986,76.5700674]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XWE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XWE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XWE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":100.0,"s2:mean_solar_zenith":56.2005204288736,"s2:mean_solar_azimuth":206.477256331399,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":94.691265,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500","bbox":[154.729453,77.3578558,157.1147583,77.8563411],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R60m/T57XVG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R60m/T57XVG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R20m/T57XVG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/IMG_DATA/R10m/T57XVG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/GRANULE/L2A_T57XVG_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[154.729453,77.8563411],[154.8202751,77.8399709],[154.8207919,77.8400908],[154.8208739,77.8400761],[154.8230835,77.8405892],[154.8243286,77.8403644],[154.8293017,77.8415197],[155.2337823,77.7636555],[155.6282619,77.6875444],[155.6194528,77.6855303],[156.3071352,77.5465017],[156.3073866,77.5465585],[156.307522,77.5465311],[156.3087991,77.5468196],[156.309347,77.5467088],[156.3159533,77.5482018],[157.0648,77.3881022],[157.0565254,77.3862579],[157.1147583,77.3731023],[154.9021672,77.3578558],[154.729453,77.8563411]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVG_N05.11","eo:cloud_cover":0.341631,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVG_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.655706,"s2:mean_solar_zenith":57.4702757300568,"s2:mean_solar_azimuth":201.548329525018,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.00266,"s2:thin_cirrus_percentage":0.027108,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":87.528163,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0006,"s2:high_proba_clouds_percentage":0.005161,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.309362,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500","bbox":[154.8738859,76.4642293,159.3841769,77.4586326],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R60m/T57XVF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R60m/T57XVF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R20m/T57XVF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/IMG_DATA/R10m/T57XVF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/GRANULE/L2A_T57XVF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.7349029,77.4586326],[157.0648,77.3881022],[157.0565254,77.3862579],[157.7022397,77.2403818],[157.702601,77.2404615],[157.7027581,77.240426],[157.7047207,77.2408589],[157.7054919,77.2406847],[157.7066273,77.2409352],[157.7066411,77.2409321],[157.7066482,77.2409337],[157.7069247,77.2408713],[157.7113152,77.2418411],[157.751275,77.2323977],[158.3681624,77.0864368],[158.4215766,77.0737874],[158.4137157,77.0720741],[159.0277214,76.9172337],[159.0284819,76.9173979],[159.0286906,76.9173453],[159.0290513,76.9174232],[159.0291725,76.9173927],[159.0304404,76.9176667],[159.0305714,76.9176338],[159.0316672,76.9178705],[159.0319787,76.9177922],[159.0327171,76.9179518],[159.032787,76.9179342],[159.0333799,76.9180625],[159.0336093,76.9180049],[159.034998,76.9183053],[159.0353471,76.9182178],[159.0360053,76.9183601],[159.036266,76.9182948],[159.0372549,76.9185087],[159.2809197,76.8551048],[159.3841769,76.8280778],[159.3743463,76.4931072],[155.1684626,76.4642293],[154.8738859,77.4458044],[156.7349029,77.4586326]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVF_N05.11","eo:cloud_cover":0.183424,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.799508,"s2:mean_solar_zenith":56.6528706201607,"s2:mean_solar_azimuth":201.956721906669,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000284,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.012645,"s2:nodata_pixel_percentage":19.528614,"s2:unclassified_percentage":0.000025,"s2:not_vegetated_percentage":0.003999,"s2:degraded_msi_data_percentage":0.0129,"s2:high_proba_clouds_percentage":0.050012,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.133412,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500","bbox":[155.1439841,75.5697411,159.376745,76.580749],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R60m/T57XVE_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R60m/T57XVE_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R20m/T57XVE_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/IMG_DATA/R10m/T57XVE_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/GRANULE/L2A_T57XVE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[159.3707743,76.3479666],[158.9476216,76.2540163],[158.4897237,76.1501067],[158.0387006,76.0453667],[157.5940915,75.9398774],[157.1558349,75.8336193],[156.7242541,75.7265717],[156.2992958,75.618772],[156.1292961,75.5747183],[155.4016102,75.5697411],[155.1439841,76.5516761],[159.376745,76.580749],[159.3707743,76.3479666]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":99.999988,"s2:mean_solar_zenith":55.8369908790616,"s2:mean_solar_azimuth":202.358804292345,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":5e-6,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":31.199139,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":5e-6,"s2:degraded_msi_data_percentage":0.0254,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500","bbox":[155.3801086,75.3937971,156.4805352,75.6647472],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R60m/T57XVD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R60m/T57XVD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R20m/T57XVD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/IMG_DATA/R10m/T57XVD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/GRANULE/L2A_T57XVD_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/X/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T57XVD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.4805352,75.6647472],[156.2992958,75.618772],[155.8804421,75.5102304],[155.4676367,75.400987],[155.4410269,75.3937971],[155.3801086,75.6572177],[156.4805352,75.6647472]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57XVD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T57XVD_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T57XVD_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":100.0,"s2:mean_solar_zenith":55.0232203762536,"s2:mean_solar_azimuth":202.757833932918,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":96.295464,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500","bbox":[152.999126,77.3539538,157.1995181,78.1584369],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R60m/T56XNM_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R60m/T56XNM_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R20m/T56XNM_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/IMG_DATA/R10m/T56XNM_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/GRANULE/L2A_T56XNM_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[152.999126,78.1584369],[153.2137934,78.1240967],[153.2164319,78.1247293],[153.2181228,78.1244585],[153.2226392,78.1255419],[153.6076847,78.0591084],[154.0880985,77.9760879],[154.0781257,77.9737392],[154.8202751,77.8399709],[154.8207919,77.8400908],[154.8208739,77.8400761],[154.8230835,77.8405892],[154.8243286,77.8403644],[154.8293017,77.8415197],[155.2337823,77.7636555],[155.6282619,77.6875444],[155.6194528,77.6855303],[156.3071352,77.5465017],[156.3073866,77.5465585],[156.307522,77.5465311],[156.3087991,77.5468196],[156.309347,77.5467088],[156.3159533,77.5482018],[157.0648,77.3881022],[157.0565254,77.3862579],[157.1995181,77.3539538],[152.9991794,77.3891507],[152.999126,78.1584369]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNM_N05.11","eo:cloud_cover":5.330747,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNM_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":94.668388,"s2:mean_solar_zenith":57.340280258578,"s2:mean_solar_azimuth":199.653776562899,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000865,"s2:thin_cirrus_percentage":2.421382,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":62.79549,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0251,"s2:high_proba_clouds_percentage":0.541456,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.36791,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500","bbox":[152.999228,75.571101,157.2301741,76.5810287],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R60m/T56XNK_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R60m/T56XNK_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R20m/T56XNK_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/IMG_DATA/R10m/T56XNK_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/GRANULE/L2A_T56XNK_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[157.0152107,75.7987394],[156.7242541,75.7265717],[156.2992958,75.618772],[156.1153371,75.571101],[152.9992797,75.5970173],[152.999228,76.5810287],[157.2301741,76.5456907],[157.0152107,75.7987394]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNK_N05.11","eo:cloud_cover":33.50164,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNK_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":66.49825,"s2:mean_solar_zenith":55.6396491325,"s2:mean_solar_azimuth":199.832394104259,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000014,"s2:thin_cirrus_percentage":0.030269,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":2.534195,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000092,"s2:degraded_msi_data_percentage":0.0223,"s2:high_proba_clouds_percentage":24.216855,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.254517,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500","bbox":[152.9992754,74.7005381,156.4460123,75.6846675],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R60m/T56XNJ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R60m/T56XNJ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R20m/T56XNJ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/IMG_DATA/R10m/T56XNJ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/GRANULE/L2A_T56XNJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.4460123,75.6559898],[156.2992958,75.618772],[155.8804421,75.5102304],[155.4676367,75.400987],[155.0607457,75.2910453],[155.0597053,75.2907587],[155.0571479,75.2900682],[154.8086754,75.2215872],[154.6595007,75.180482],[154.6578474,75.1800178],[154.6559695,75.1795002],[154.637369,75.1742679],[154.2635992,75.0693229],[153.8728205,74.9574878],[153.4876079,74.8449646],[153.1077556,74.7318693],[153.0045456,74.7005381],[152.999321,74.7005814],[152.9992754,75.6846675],[156.4460123,75.6559898]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNJ_N05.11","eo:cloud_cover":70.339298,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":29.659665,"s2:mean_solar_zenith":54.7911516161212,"s2:mean_solar_azimuth":199.962093717898,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.127737,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":56.646645,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.001041,"s2:degraded_msi_data_percentage":0.0227,"s2:high_proba_clouds_percentage":60.172588,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.038975,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500","bbox":[152.9993171,74.698952,153.2907765,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R60m/T56XNH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R60m/T56XNH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R20m/T56XNH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/IMG_DATA/R10m/T56XNH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/GRANULE/L2A_T56XNH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XNH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.2907765,74.786361],[153.1077556,74.7318693],[152.9993208,74.698952],[152.9993171,74.7887762],[153.2907765,74.786361]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XNH_N05.11","eo:cloud_cover":91.559899,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XNH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":8.429157,"s2:mean_solar_zenith":53.9446261366776,"s2:mean_solar_azimuth":200.114987193235,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.109418,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.666452,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.010942,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":68.745273,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":22.705208,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500","bbox":[150.9180636,78.2677006,152.2768507,78.4028043],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R60m/T56XMN_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R60m/T56XMN_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R20m/T56XMN_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/IMG_DATA/R10m/T56XMN_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8690220.0,509760.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/GRANULE/L2A_T56XMN_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMN_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.9180636,78.2677006],[150.9973416,78.2879305],[151.4584651,78.4028043],[152.0501679,78.3119796],[152.2768507,78.2770951],[150.9180636,78.2677006]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMN_N05.11","eo:cloud_cover":98.9811,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMN_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.018898,"s2:mean_solar_zenith":57.9347833437519,"s2:mean_solar_azimuth":194.608044592398,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.390734,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":52.855265,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":46.125838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500","bbox":[148.785543,77.3578558,153.4242399,78.3609268],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R60m/T56XMM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R60m/T56XMM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R20m/T56XMM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/IMG_DATA/R10m/T56XMM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8590200.0,509760.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/GRANULE/L2A_T56XMM_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMM_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.785543,77.694455],[148.7915312,77.6961872],[149.2156941,77.8158741],[149.6482867,77.9348992],[150.0892084,78.0532582],[150.5388616,78.1709369],[150.9973416,78.2879305],[151.2777707,78.3577902],[151.7312878,78.3609268],[152.0501679,78.3119796],[152.4104764,78.2565313],[152.4077242,78.2558588],[152.4080935,78.2557991],[152.4073844,78.2556261],[152.4076782,78.2555787],[152.4070375,78.2554222],[152.4070648,78.2554178],[152.4060861,78.2551787],[152.4060873,78.2551785],[152.4018478,78.2541446],[152.4019927,78.2541215],[152.4015927,78.2540239],[153.2137934,78.1240967],[153.2164319,78.1247293],[153.2181228,78.1244585],[153.2226392,78.1255419],[153.4242399,78.0907589],[153.4004489,77.3888525],[148.9021672,77.3578558],[148.785543,77.694455]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMM_N05.11","eo:cloud_cover":53.933001,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMM_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":46.066993,"s2:mean_solar_zenith":57.0791530126844,"s2:mean_solar_azimuth":194.974581699899,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":4e-6,"s2:thin_cirrus_percentage":0.964429,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":23.851644,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0112,"s2:high_proba_clouds_percentage":37.277386,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.691185,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500","bbox":[148.8738859,76.4642293,153.4032221,77.4770256],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R60m/T56XML_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R60m/T56XML_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R20m/T56XML_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/IMG_DATA/R10m/T56XML_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/GRANULE/L2A_T56XML_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XML_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.8738859,77.4458044],[153.4032221,77.4770256],[153.3743463,76.4931072],[149.1684626,76.4642293],[148.8738859,77.4458044]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XML","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XML_N05.11","eo:cloud_cover":53.365338,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XML_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":16.842276,"s2:mean_solar_zenith":56.2252079251133,"s2:mean_solar_azimuth":195.327958642391,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":29.711074,"s2:vegetation_percentage":0.00001,"s2:thin_cirrus_percentage":8.906405,"s2:cloud_shadow_percentage":0.073955,"s2:nodata_pixel_percentage":0.000017,"s2:unclassified_percentage":0.000524,"s2:not_vegetated_percentage":0.004741,"s2:degraded_msi_data_percentage":0.0244,"s2:high_proba_clouds_percentage":17.852481,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":26.606452,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500","bbox":[149.1439841,75.5697411,153.376745,76.580749],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R60m/T56XMK_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R60m/T56XMK_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R20m/T56XMK_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/IMG_DATA/R10m/T56XMK_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/GRANULE/L2A_T56XMK_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.1439841,76.5516761],[153.376745,76.580749],[153.3515061,75.5967575],[149.4016102,75.5697411],[149.1439841,76.5516761]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMK_N05.11","eo:cloud_cover":45.38013,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMK_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":52.364403,"s2:mean_solar_zenith":55.3719755202348,"s2:mean_solar_azimuth":195.673002025668,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":1.971009,"s2:vegetation_percentage":0.000159,"s2:thin_cirrus_percentage":5.233015,"s2:cloud_shadow_percentage":0.283665,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.00003,"s2:not_vegetated_percentage":0.000601,"s2:degraded_msi_data_percentage":0.0026,"s2:high_proba_clouds_percentage":21.191287,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.95583,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500","bbox":[149.3801086,74.6749694,153.353612,75.684406],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R60m/T56XMJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R60m/T56XMJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R20m/T56XMJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/IMG_DATA/R10m/T56XMJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/GRANULE/L2A_T56XMJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.3336017,74.7991116],[153.1077556,74.7318693],[152.9963672,74.6980554],[149.6072622,74.6749694],[149.3801086,75.6572177],[153.353612,75.684406],[153.3336017,74.7991116]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMJ_N05.11","eo:cloud_cover":85.592216,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":13.543333,"s2:mean_solar_zenith":54.5200220153859,"s2:mean_solar_azimuth":196.01289650902,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.145424,"s2:vegetation_percentage":0.000017,"s2:thin_cirrus_percentage":1.460761,"s2:cloud_shadow_percentage":0.7084,"s2:nodata_pixel_percentage":0.474215,"s2:unclassified_percentage":0.005104,"s2:not_vegetated_percentage":0.005507,"s2:degraded_msi_data_percentage":0.0183,"s2:high_proba_clouds_percentage":67.295456,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":16.835994,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500","bbox":[149.5881136,73.7804829,153.2972396,74.7882853],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R60m/T56XMH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R60m/T56XMH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R20m/T56XMH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/IMG_DATA/R10m/T56XMH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/GRANULE/L2A_T56XMH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.2972396,74.7882853],[153.1077556,74.7318693],[152.733329,74.6182055],[152.364361,74.5038966],[152.0006473,74.3890213],[151.6423724,74.2735787],[151.2890793,74.1575707],[150.9406558,74.0410123],[150.5970299,73.923947],[150.2579129,73.8063941],[150.1921903,73.7832117],[149.7898569,73.7804829],[149.5881136,74.763009],[153.2972396,74.7882853]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMH_N05.11","eo:cloud_cover":99.362773,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.636787,"s2:mean_solar_zenith":53.6699179512728,"s2:mean_solar_azimuth":196.350226583669,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000036,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.212714,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":44.940388,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000404,"s2:degraded_msi_data_percentage":0.0241,"s2:high_proba_clouds_percentage":93.303627,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":5.846434,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500","bbox":[149.7728973,73.6488294,150.448892,73.8725959],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R60m/T56XMG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R60m/T56XMG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R20m/T56XMG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/IMG_DATA/R10m/T56XMG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/GRANULE/L2A_T56XMG_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T56XMG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.448892,73.8725959],[150.2579129,73.8063941],[149.9231974,73.6883294],[149.81311,73.6488294],[149.7728973,73.8680091],[150.448892,73.8725959]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T56XMG_N05.11","eo:cloud_cover":99.953437,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T56XMG_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.046564,"s2:mean_solar_zenith":52.8207046054607,"s2:mean_solar_azimuth":196.687646798262,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":97.905159,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":98.446125,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.507312,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500","bbox":[150.8601802,78.2447576,151.8739788,78.4028043],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R60m/T55XEH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R60m/T55XEH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R20m/T55XEH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/IMG_DATA/R10m/T55XEH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8690220.0,609780.0,8800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/GRANULE/L2A_T55XEH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.8601802,78.2529301],[150.9973416,78.2879305],[151.4584651,78.4028043],[151.8739788,78.3390241],[151.8321726,78.2447576],[150.8601802,78.2529301]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEH_N05.11","eo:cloud_cover":98.501015,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.498985,"s2:mean_solar_zenith":57.8666844216934,"s2:mean_solar_azimuth":193.082431081795,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.070586,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":45.901051,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":52.599967,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500","bbox":[147.7295877,77.3514755,151.8679037,78.3377171],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R60m/T55XEG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R60m/T55XEG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8700000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R20m/T55XEG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8700000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/IMG_DATA/R10m/T55XEG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8590200.0,609780.0,8700000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8700000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/GRANULE/L2A_T55XEG_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEG_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.7295877,77.3830302],[147.9673017,77.455002],[148.3756143,77.5758752],[148.7915312,77.6961872],[149.2156941,77.8158741],[149.6482867,77.9348992],[150.0892084,78.0532582],[150.5388616,78.1709369],[150.9973416,78.2879305],[151.1971937,78.3377171],[151.8679037,78.332076],[151.4952763,77.3514755],[147.7295877,77.3830302]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEG_N05.11","eo:cloud_cover":77.95974,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEG_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":22.04026,"s2:mean_solar_zenith":56.9884929302579,"s2:mean_solar_azimuth":193.066565610651,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.72874,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":51.733977,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0006,"s2:high_proba_clouds_percentage":60.839087,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":16.391915,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500","bbox":[146.999193,76.458284,151.5262788,77.4688195],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R60m/T55XEF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R60m/T55XEF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R20m/T55XEF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/IMG_DATA/R10m/T55XEF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8490240.0,609780.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/GRANULE/L2A_T55XEF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.999193,77.1566382],[147.1725997,77.2116075],[147.5662727,77.333584],[147.9673017,77.455002],[148.0139776,77.4688195],[151.5262788,77.4393779],[151.2033368,76.458284],[146.9992329,76.493385],[146.999193,77.1566382]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEF_N05.11","eo:cloud_cover":82.031554,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":10.689694,"s2:mean_solar_zenith":56.1114584570531,"s2:mean_solar_azimuth":193.082010454725,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":7.173916,"s2:vegetation_percentage":0.000031,"s2:thin_cirrus_percentage":4.543883,"s2:cloud_shadow_percentage":0.097317,"s2:nodata_pixel_percentage":3.864735,"s2:unclassified_percentage":0.000538,"s2:not_vegetated_percentage":0.00556,"s2:degraded_msi_data_percentage":0.0197,"s2:high_proba_clouds_percentage":52.378035,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.109643,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500","bbox":[146.999228,75.5641782,151.2301741,76.5810287],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R60m/T55XEE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R60m/T55XEE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R20m/T55XEE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/IMG_DATA/R10m/T55XEE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/GRANULE/L2A_T55XEE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.999228,76.5810287],[151.2301741,76.5456907],[150.9477068,75.5641782],[146.9992797,75.5970173],[146.999228,76.5810287]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEE_N05.11","eo:cloud_cover":53.384507,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":46.615151,"s2:mean_solar_zenith":55.2345549596294,"s2:mean_solar_azimuth":193.124143423144,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000093,"s2:thin_cirrus_percentage":4.994157,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000249,"s2:degraded_msi_data_percentage":0.0196,"s2:high_proba_clouds_percentage":39.077944,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.312408,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500","bbox":[146.9992754,74.6697452,150.9712829,75.6846675],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R60m/T55XED_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R60m/T55XED_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R20m/T55XED_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/IMG_DATA/R10m/T55XED_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/GRANULE/L2A_T55XED_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/ED/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XED_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.9992754,75.6846675],[150.9712829,75.6516194],[150.7222017,74.6697452],[146.999321,74.7005814],[146.9992754,75.6846675]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XED","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XED_N05.11","eo:cloud_cover":77.311695,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XED_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":12.304876,"s2:mean_solar_zenith":54.3583376728985,"s2:mean_solar_azimuth":193.18952409454,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":2.859898,"s2:vegetation_percentage":0.440835,"s2:thin_cirrus_percentage":2.720784,"s2:cloud_shadow_percentage":1.480692,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":3.236721,"s2:not_vegetated_percentage":2.365284,"s2:degraded_msi_data_percentage":0.0013,"s2:high_proba_clouds_percentage":59.503609,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.087296,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500","bbox":[146.9993171,73.7783931,150.7431996,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R60m/T55XEC_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R60m/T55XEC_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R20m/T55XEC_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/IMG_DATA/R10m/T55XEC_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/GRANULE/L2A_T55XEC_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.55186,73.9082891],[150.2579129,73.8063941],[150.1785294,73.7783931],[146.9993576,73.8046111],[146.9993171,74.7887762],[150.7431996,74.7577532],[150.55186,73.9082891]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEC_N05.11","eo:cloud_cover":68.469048,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEC_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":7.635746,"s2:mean_solar_zenith":53.4833641272104,"s2:mean_solar_azimuth":193.275554588597,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":23.895152,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":1.61995,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.685422,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.00006,"s2:degraded_msi_data_percentage":0.0197,"s2:high_proba_clouds_percentage":52.331609,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.517485,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951","bbox":[146.9993572,72.901175,149.0036291,73.8089506],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R60m/T55XEB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R60m/T55XEB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R20m/T55XEB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/IMG_DATA/R10m/T55XEB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.9993572,73.8089506],[147.1427832,73.7794979],[147.1388486,73.7779517],[147.7229513,73.6506409],[147.7233951,73.650813],[147.7235094,73.6507881],[147.7236932,73.6508593],[147.7240475,73.6507822],[147.7243296,73.6508916],[147.7243504,73.6508871],[147.7247691,73.6510496],[147.7248505,73.6510319],[147.7255062,73.6512862],[147.7257039,73.6512433],[147.7261293,73.6514081],[147.7263864,73.6513524],[147.7267364,73.6514879],[147.7270351,73.6514232],[147.727791,73.651716],[147.7280459,73.6516608],[147.7281685,73.6517083],[148.1005415,73.5684062],[148.3843142,73.504544],[148.3808209,73.5032084],[149.0036291,73.3532031],[148.6905197,73.2352856],[148.3769724,73.1148966],[148.0677956,72.9940723],[147.8341147,72.901175],[146.9993903,72.9080271],[146.9993572,73.8089506]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XEB_N05.11","eo:cloud_cover":2.939822,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":97.059447,"s2:mean_solar_zenith":52.6086159254848,"s2:mean_solar_azimuth":193.380384898633,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000733,"s2:thin_cirrus_percentage":2.770614,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":67.427117,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0269,"s2:high_proba_clouds_percentage":0.010828,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.15838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500","bbox":[146.9993542,73.2165381,150.4241503,73.8922753],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R60m/T55XEB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R60m/T55XEB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R20m/T55XEB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/IMG_DATA/R10m/T55XEB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/GRANULE/L2A_T55XEB_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.9964017,73.3707326],[148.0002195,73.3721947],[147.7680023,73.4239233],[147.412226,73.503572],[147.4092088,73.5024014],[147.0642351,73.5769222],[146.9993652,73.5909837],[146.9993542,73.8922753],[150.4241503,73.8640193],[150.2579129,73.8063941],[149.9231974,73.6883294],[149.5927626,73.5697675],[149.2665598,73.4507085],[148.9449355,73.3311567],[148.6417125,73.2165381],[148.2633675,73.3068357],[147.9964017,73.3707326]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XEB_N05.11","eo:cloud_cover":30.561236,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEB_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":69.43807,"s2:mean_solar_zenith":52.6086159254848,"s2:mean_solar_azimuth":193.380384898633,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":8.89519,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":59.988683,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000697,"s2:degraded_msi_data_percentage":0.0254,"s2:high_proba_clouds_percentage":16.320927,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":5.34512,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951","bbox":[146.9993873,72.5599198,148.0501794,72.9956989],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R60m/T55XEA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R60m/T55XEA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R20m/T55XEA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/IMG_DATA/R10m/T55XEA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/GRANULE/L2A_T55XEA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.0501794,72.9870692],[147.7628731,72.8728537],[147.4620504,72.751222],[147.1650834,72.6291719],[146.9994017,72.5599198],[146.9993873,72.9956989],[148.0501794,72.9870692]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XEA_N05.11","eo:cloud_cover":12.590303,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XEA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":74.539685,"s2:mean_solar_zenith":51.7346580706931,"s2:mean_solar_azimuth":193.502587708943,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":12.870012,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":11.001419,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":93.117845,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.228802,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.360082,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500","bbox":[144.9727037,76.4766174,147.3974775,77.2812842],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R60m/T55XDF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R60m/T55XDF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R20m/T55XDF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/IMG_DATA/R10m/T55XDF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8490240.0,509760.0,8600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/GRANULE/L2A_T55XDF_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDF_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[144.9727037,76.4766174],[145.3052262,76.5938859],[145.6660787,76.7184031],[146.0332306,76.8424469],[146.4064577,76.966006],[146.7860659,77.0890777],[147.1725997,77.2116075],[147.3974775,77.2812842],[147.3743463,76.4931072],[144.9727037,76.4766174]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDF_N05.11","eo:cloud_cover":97.803628,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDF_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.196238,"s2:mean_solar_zenith":55.9469383487191,"s2:mean_solar_azimuth":188.652071215512,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.00006,"s2:thin_cirrus_percentage":0.096082,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":77.772284,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000075,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":91.611886,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.09566,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500","bbox":[143.3258015,75.5697411,147.376745,76.580749],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R60m/T55XDE_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R60m/T55XDE_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R20m/T55XDE_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/IMG_DATA/R10m/T55XDE_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8390220.0,509760.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/GRANULE/L2A_T55XDE_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDE_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.3258015,75.8586838],[143.5955298,75.9644114],[143.9254381,76.0911774],[144.2610233,76.2175534],[144.6027971,76.3434738],[144.9508318,76.4689039],[145.2260891,76.5659771],[147.376745,76.580749],[147.3515061,75.5967575],[143.4016102,75.5697411],[143.3258015,75.8586838]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDE_N05.11","eo:cloud_cover":90.807956,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDE_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.909883,"s2:mean_solar_zenith":55.0674685642311,"s2:mean_solar_azimuth":188.93362573964,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.239319,"s2:vegetation_percentage":1.220182,"s2:thin_cirrus_percentage":0.605449,"s2:cloud_shadow_percentage":0.091088,"s2:nodata_pixel_percentage":17.870143,"s2:unclassified_percentage":0.886826,"s2:not_vegetated_percentage":3.844749,"s2:degraded_msi_data_percentage":0.0112,"s2:high_proba_clouds_percentage":81.95383,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.248676,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500","bbox":[143.3801086,74.6749694,147.353612,75.684406],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R60m/T55XDD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R60m/T55XDD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R20m/T55XDD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/IMG_DATA/R10m/T55XDD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/GRANULE/L2A_T55XDD_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDD_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.3801086,75.6572177],[147.353612,75.684406],[147.3313691,74.7003374],[143.6072622,74.6749694],[143.3801086,75.6572177]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDD_N05.11","eo:cloud_cover":58.769011,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDD_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":6.432378,"s2:mean_solar_zenith":54.188595245275,"s2:mean_solar_azimuth":189.20742134287,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":18.296257,"s2:vegetation_percentage":4.808707,"s2:thin_cirrus_percentage":15.144363,"s2:cloud_shadow_percentage":0.7723,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.309027,"s2:not_vegetated_percentage":9.612324,"s2:degraded_msi_data_percentage":0.0249,"s2:high_proba_clouds_percentage":32.176167,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.448479,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951","bbox":[143.6576412,73.7804829,147.0309408,74.4243973],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R60m/T55XDC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R60m/T55XDC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R20m/T55XDC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/IMG_DATA/R10m/T55XDC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.6576412,74.4243973],[143.8425029,74.3949498],[143.8427858,74.3950704],[143.8428508,74.3950601],[143.8432757,74.3952413],[143.8433346,74.3952319],[143.8442535,74.3956238],[143.8455124,74.3954229],[143.8477618,74.3963821],[143.8611116,74.3941139],[144.564333,74.2744318],[144.5600383,74.2726344],[145.1837304,74.1618627],[145.183849,74.1619116],[145.1839586,74.1618921],[145.1842111,74.1619961],[145.1843403,74.1619731],[145.1848576,74.1621862],[145.1854279,74.1620849],[145.18592,74.1622875],[145.1861034,74.1622549],[145.1886967,74.163322],[145.8756247,74.034811],[145.8715136,74.0331463],[146.4711492,73.9150241],[146.4713366,73.9150989],[146.4714534,73.9150759],[146.4717724,73.9152032],[146.4720054,73.9151573],[146.4729092,73.9155181],[146.4735859,73.9153848],[146.4740415,73.9155666],[146.4745134,73.9154737],[146.4762838,73.9161797],[146.7211208,73.8660542],[146.8460013,73.8404424],[147.0309408,73.8024649],[143.7898569,73.7804829],[143.6576412,74.4243973]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XDC_N05.11","eo:cloud_cover":8.149624,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":91.848963,"s2:mean_solar_zenith":53.3108710887811,"s2:mean_solar_azimuth":189.475936283652,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001413,"s2:thin_cirrus_percentage":8.13981,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":69.469947,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.002,"s2:high_proba_clouds_percentage":0.001554,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.008259,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500","bbox":[143.5881136,73.795527,147.3332438,74.7885307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R60m/T55XDC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R60m/T55XDC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R20m/T55XDC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/IMG_DATA/R10m/T55XDC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/GRANULE/L2A_T55XDC_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDC_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.0080057,73.795527],[145.9698994,73.8030006],[145.4871549,73.8978162],[145.4905777,73.8992053],[145.4899398,73.8993243],[145.49035,73.8994909],[145.4900864,73.89954],[145.4905524,73.8997292],[144.8815565,74.0132759],[144.8811576,74.0131115],[144.880944,74.0131514],[144.8801573,74.012827],[144.8800192,74.0128527],[144.8767525,74.0115065],[144.1773071,74.1355529],[144.1811868,74.1371806],[144.1796693,74.1374379],[144.1809535,74.1379769],[143.6996537,74.2197888],[143.5881136,74.763009],[147.3332438,74.7885307],[147.313497,73.8043812],[146.0080057,73.795527]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDC_N05.11","eo:cloud_cover":28.899541,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDC_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":71.100444,"s2:mean_solar_zenith":53.3108710887811,"s2:mean_solar_azimuth":189.475936283652,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000015,"s2:thin_cirrus_percentage":13.928008,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":13.920067,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0067,"s2:high_proba_clouds_percentage":8.524251,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.447282,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951","bbox":[143.7728973,72.8852322,147.3124334,73.887309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R60m/T55XDB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R60m/T55XDB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R20m/T55XDB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/IMG_DATA/R10m/T55XDB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.617302,73.887309],[146.7211208,73.8660542],[146.8460013,73.8404424],[147.1427832,73.7794979],[147.1388486,73.7779517],[147.3124334,73.7401172],[147.297514,72.90781],[143.9532063,72.8852322],[143.7728973,73.8680091],[146.617302,73.887309]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XDB_N05.11","eo:cloud_cover":1.884676,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":98.115051,"s2:mean_solar_zenith":52.4332724762266,"s2:mean_solar_azimuth":189.741694550662,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000273,"s2:thin_cirrus_percentage":1.371634,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":1.536909,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0111,"s2:high_proba_clouds_percentage":0.180282,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.332761,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500","bbox":[145.5766032,73.524143,147.3151567,73.8920442],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R60m/T55XDB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R60m/T55XDB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R20m/T55XDB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/IMG_DATA/R10m/T55XDB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/GRANULE/L2A_T55XDB_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDB_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.308562,73.524143],[147.0642351,73.5769222],[146.7539348,73.6441841],[146.757624,73.6456368],[146.1872056,73.761992],[146.1629589,73.7669515],[146.1599113,73.7657346],[145.9698994,73.8030006],[145.5766032,73.8802477],[147.3151567,73.8920442],[147.308562,73.524143]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T55XDB_N05.11","eo:cloud_cover":8.546601,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDB_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":91.453397,"s2:mean_solar_zenith":52.4332724762266,"s2:mean_solar_azimuth":189.741694550662,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":7.799733,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":90.71641,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.020871,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.725997,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951","bbox":[143.9380027,71.989773,147.2990014,72.9954806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R60m/T55XDA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R60m/T55XDA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R20m/T55XDA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/IMG_DATA/R10m/T55XDA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/GRANULE/L2A_T55XDA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/DA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55XDA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.2939546,72.6821365],[147.1650834,72.6291719],[146.8721115,72.5067147],[146.5833251,72.3838049],[146.2981795,72.2604713],[146.0160354,72.1367849],[145.8225341,72.0506566],[145.7348784,72.0116786],[145.7103461,72.0005912],[144.1000757,71.989773],[143.9380027,72.9727797],[147.2990014,72.9954806],[147.2939546,72.6821365]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XDA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55XDA_N05.11","eo:cloud_cover":4.178511,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55XDA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":45.487988,"s2:mean_solar_zenith":51.5563580868775,"s2:mean_solar_azimuth":190.006349868291,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":19.9306,"s2:vegetation_percentage":18.95621,"s2:thin_cirrus_percentage":3.178966,"s2:cloud_shadow_percentage":0.016211,"s2:nodata_pixel_percentage":16.86351,"s2:unclassified_percentage":0.001732,"s2:not_vegetated_percentage":11.428755,"s2:degraded_msi_data_percentage":0.0268,"s2:high_proba_clouds_percentage":0.226987,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.772558,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951","bbox":[144.0862883,71.2917806,145.911249,72.090144],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R60m/T55WDV_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R60m/T55WDV_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R20m/T55WDV_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/IMG_DATA/R10m/T55WDV_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/GRANULE/L2A_T55WDV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/DV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T55WDV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[145.911249,72.090144],[145.8225341,72.0506566],[145.7348784,72.0116786],[145.6002591,71.9508375],[145.4618036,71.8883175],[145.1900375,71.7635196],[144.9218929,71.638388],[144.657853,71.5128494],[144.3973893,71.387001],[144.2033674,71.2917806],[144.0862883,72.0778773],[145.911249,72.090144]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WDV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T55WDV_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T55WDV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":20.162447,"s2:mean_solar_zenith":50.6806861481694,"s2:mean_solar_azimuth":190.271271226905,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":61.317939,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":77.268368,"s2:unclassified_percentage":0.007108,"s2:not_vegetated_percentage":18.512507,"s2:degraded_msi_data_percentage":0.013,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951","bbox":[143.8987666,71.9504888,147.4017391,72.972798],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R60m/T54XXF_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R60m/T54XXF_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R20m/T54XXF_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/IMG_DATA/R10m/T54XXF_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/GRANULE/L2A_T54XXF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.334089,72.6986313],[147.1650834,72.6291719],[146.8721115,72.5067147],[146.5833251,72.3838049],[146.2981795,72.2604713],[146.0160354,72.1367849],[145.8225341,72.0506566],[145.7348784,72.0116786],[145.6002591,71.9508375],[145.5994869,71.9504888],[143.8987666,71.9897902],[144.0607752,72.972798],[147.4017391,72.8951551],[147.334089,72.6986313]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XXF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XXF_N05.11","eo:cloud_cover":3.613853,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XXF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":44.992217,"s2:mean_solar_zenith":51.5059130620187,"s2:mean_solar_azimuth":189.959083750985,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":16.5314,"s2:vegetation_percentage":22.158545,"s2:thin_cirrus_percentage":2.81934,"s2:cloud_shadow_percentage":0.016218,"s2:nodata_pixel_percentage":18.535386,"s2:unclassified_percentage":0.002317,"s2:not_vegetated_percentage":12.685449,"s2:degraded_msi_data_percentage":0.0267,"s2:high_proba_clouds_percentage":0.182719,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.611794,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500","bbox":[142.642721,75.5641782,145.2301741,76.5461933],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R60m/T54XWK_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R60m/T54XWK_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R20m/T54XWK_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/IMG_DATA/R10m/T54XWK_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8390220.0,609780.0,8500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/GRANULE/L2A_T54XWK_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWK_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[142.642721,75.5833488],[142.9522892,75.7096954],[143.2711197,75.8372498],[143.5955298,75.9644114],[143.9254381,76.0911774],[144.2610233,76.2175534],[144.6027971,76.3434738],[144.9508318,76.4689039],[145.1699908,76.5461933],[145.2301741,76.5456907],[144.9477068,75.5641782],[142.642721,75.5833488]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XWK_N05.11","eo:cloud_cover":72.699803,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWK_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":5.865882,"s2:mean_solar_zenith":54.9924664658243,"s2:mean_solar_azimuth":186.368779040953,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":2.459931,"s2:vegetation_percentage":3.335379,"s2:thin_cirrus_percentage":4.421542,"s2:cloud_shadow_percentage":0.405315,"s2:nodata_pixel_percentage":70.761877,"s2:unclassified_percentage":2.99689,"s2:not_vegetated_percentage":12.236802,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":53.297496,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.980765,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951","bbox":[140.9993155,74.6932115,141.8890895,74.8190142],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R60m/T54XWJ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R60m/T54XWJ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R20m/T54XWJ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/IMG_DATA/R10m/T54XWJ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993155,74.8190142],[141.2888983,74.7793529],[141.6421896,74.7308209],[141.7279364,74.7189072],[141.7270199,74.718493],[141.7271871,74.7184689],[141.7267913,74.7182899],[141.7267941,74.7182895],[141.7233817,74.7167444],[141.8890895,74.6932115],[140.999321,74.7005814],[140.9993155,74.8190142]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWJ_N05.11","eo:cloud_cover":44.347519,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":12.819929,"s2:mean_solar_zenith":54.100346650766,"s2:mean_solar_azimuth":186.364404467272,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":42.826158,"s2:vegetation_percentage":0.001421,"s2:thin_cirrus_percentage":0.680291,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.598808,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.004973,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":27.896923,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.770306,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500","bbox":[140.9993131,74.6697452,144.9712829,75.6692426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R60m/T54XWJ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R60m/T54XWJ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R20m/T54XWJ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/IMG_DATA/R10m/T54XWJ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8290200.0,609780.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/GRANULE/L2A_T54XWJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993131,74.8708045],[141.1431699,74.936469],[141.4329284,75.0661884],[141.7274136,75.1955858],[142.0264599,75.3246509],[142.3302554,75.4533604],[142.6387495,75.5817279],[142.8531737,75.6692426],[144.9712829,75.6516194],[144.7222017,74.6697452],[140.999321,74.7005814],[140.9993131,74.8708045]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XWJ_N05.11","eo:cloud_cover":36.025184,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":8.738525,"s2:mean_solar_zenith":54.100346650766,"s2:mean_solar_azimuth":186.364404467272,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":22.222336,"s2:vegetation_percentage":6.057433,"s2:thin_cirrus_percentage":17.357659,"s2:cloud_shadow_percentage":0.880937,"s2:nodata_pixel_percentage":19.857705,"s2:unclassified_percentage":3.742191,"s2:not_vegetated_percentage":22.333394,"s2:degraded_msi_data_percentage":0.0106,"s2:high_proba_clouds_percentage":4.333816,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.33371,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951","bbox":[140.9993171,73.7755608,144.6310856,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R60m/T54XWH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R60m/T54XWH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R20m/T54XWH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/IMG_DATA/R10m/T54XWH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[141.2343127,74.7868289],[141.2888983,74.7793529],[141.6421896,74.7308209],[141.7279364,74.7189072],[141.7270199,74.718493],[141.7271871,74.7184689],[141.7267913,74.7182899],[141.7267941,74.7182895],[141.7233817,74.7167444],[142.4260678,74.6169529],[142.4274429,74.6175627],[142.4284679,74.6174161],[142.4286886,74.6175139],[142.4293456,74.6174205],[142.4313117,74.6182925],[142.5714281,74.5968342],[143.0565481,74.522405],[143.1901437,74.5018368],[143.1851411,74.4996642],[143.8425029,74.3949498],[143.8427858,74.3950704],[143.8428508,74.3950601],[143.8432757,74.3952413],[143.8433346,74.3952319],[143.8442535,74.3956238],[143.8455124,74.3954229],[143.8477618,74.3963821],[143.8611116,74.3941139],[144.564333,74.2744318],[144.5600383,74.2726344],[144.6310856,74.260016],[144.5219633,73.7755608],[140.9993576,73.8046111],[140.9993171,74.7887762],[141.2343127,74.7868289]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWH_N05.11","eo:cloud_cover":15.946352,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":20.537336,"s2:mean_solar_zenith":53.2089328359889,"s2:mean_solar_azimuth":186.37760112025,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":59.982371,"s2:vegetation_percentage":2.560437,"s2:thin_cirrus_percentage":9.459811,"s2:cloud_shadow_percentage":0.034289,"s2:nodata_pixel_percentage":23.364276,"s2:unclassified_percentage":0.002771,"s2:not_vegetated_percentage":0.936446,"s2:degraded_msi_data_percentage":0.0213,"s2:high_proba_clouds_percentage":2.69999,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.786552,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500","bbox":[140.9993171,74.0629478,144.7431996,74.7887762],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R60m/T54XWH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R60m/T54XWH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R20m/T54XWH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/IMG_DATA/R10m/T54XWH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8190240.0,609780.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/GRANULE/L2A_T54XWH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[144.5866965,74.0629478],[144.1773071,74.1355529],[144.1811868,74.1371806],[144.1796693,74.1374379],[144.1809535,74.1379769],[143.5452185,74.2460398],[143.540708,74.244115],[142.8065067,74.3613423],[142.809754,74.3627563],[142.8066019,74.3632394],[142.8066661,74.3632673],[142.80603,74.3633653],[142.8066123,74.3636189],[142.1339778,74.467267],[142.1294965,74.4652781],[141.6961413,74.5267268],[141.3473333,74.576475],[141.3517476,74.57848],[140.9993238,74.6268919],[140.9993171,74.7887762],[144.7431996,74.7577532],[144.5866965,74.0629478]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XWH_N05.11","eo:cloud_cover":51.360768,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":12.210329,"s2:mean_solar_zenith":53.208932835989,"s2:mean_solar_azimuth":186.37760112025,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":36.428866,"s2:vegetation_percentage":0.000038,"s2:thin_cirrus_percentage":47.277904,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":56.844443,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0262,"s2:high_proba_clouds_percentage":1.294806,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.788056,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951","bbox":[140.9993542,72.8805816,144.5405623,73.8922753],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R60m/T54XWG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R60m/T54XWG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R20m/T54XWG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/IMG_DATA/R10m/T54XWG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/GRANULE/L2A_T54XWG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993542,73.8922753],[144.5405623,73.8630589],[144.3428176,72.8805816],[140.9993903,72.9080271],[140.9993542,73.8922753]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWG_N05.11","eo:cloud_cover":2.097392,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":27.304021,"s2:mean_solar_zenith":52.3171650640296,"s2:mean_solar_azimuth":186.406378672536,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":33.061871,"s2:vegetation_percentage":31.237328,"s2:thin_cirrus_percentage":1.785213,"s2:cloud_shadow_percentage":0.151642,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.05427,"s2:not_vegetated_percentage":6.093477,"s2:degraded_msi_data_percentage":0.0137,"s2:high_proba_clouds_percentage":0.028587,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.283592,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951","bbox":[140.9993873,71.9853678,144.3594919,72.9956989],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R60m/T54XWF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R60m/T54XWF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R20m/T54XWF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/IMG_DATA/R10m/T54XWF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/GRANULE/L2A_T54XWF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.9993873,72.9956989],[144.3594919,72.9681038],[144.181736,71.9853678],[140.9994198,72.0113634],[140.9993873,72.9956989]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XWF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XWF_N05.11","eo:cloud_cover":0.000063,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XWF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":19.687065,"s2:mean_solar_zenith":51.4255870137129,"s2:mean_solar_azimuth":186.449108624762,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":15.100153,"s2:vegetation_percentage":42.105362,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.002445,"s2:not_vegetated_percentage":23.104914,"s2:degraded_msi_data_percentage":0.0019,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000063,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951","bbox":[140.6201516,74.6954927,141.3330181,74.8309812],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R60m/T54XVJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R60m/T54XVJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R20m/T54XVJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/IMG_DATA/R10m/T54XVJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.6201516,74.6954927],[140.6341605,74.7021176],[140.9119394,74.8309812],[141.2888983,74.7793529],[141.3330181,74.7732921],[141.3313691,74.7003374],[140.6201516,74.6954927]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVJ_N05.11","eo:cloud_cover":74.726093,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":7.062066,"s2:mean_solar_zenith":54.0353756222663,"s2:mean_solar_azimuth":182.361351685279,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":18.206279,"s2:vegetation_percentage":0.001442,"s2:thin_cirrus_percentage":0.115579,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.389578,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.00412,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":53.441209,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.169306,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500","bbox":[140.619971,74.6954915,141.3386848,75.0239973],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R60m/T54XVJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R60m/T54XVJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R20m/T54XVJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/IMG_DATA/R10m/T54XVJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8290200.0,509760.0,8400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/GRANULE/L2A_T54XVJ_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVJ_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.619971,74.6954915],[140.8582521,74.8064162],[141.1431699,74.936469],[141.3386848,75.0239973],[141.3313691,74.7003374],[140.619971,74.6954915]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XVJ_N05.11","eo:cloud_cover":77.274442,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVJ_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":20.548312,"s2:mean_solar_zenith":54.0353756222664,"s2:mean_solar_azimuth":182.361351685279,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.012121,"s2:vegetation_percentage":0.000112,"s2:thin_cirrus_percentage":0.441083,"s2:cloud_shadow_percentage":2.165012,"s2:nodata_pixel_percentage":97.043848,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":42.865559,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":33.967799,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951","bbox":[138.800028,73.7873342,141.3329382,74.7878078],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R60m/T54XVH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R60m/T54XVH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R20m/T54XVH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/IMG_DATA/R10m/T54XVH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.800028,73.7873342],[139.0408218,73.9136998],[139.296295,74.0458292],[139.5555232,74.1776776],[139.8187172,74.3092406],[140.086072,74.4405095],[140.3578673,74.571457],[140.6341605,74.7021176],[140.8127876,74.784984],[141.2271654,74.7878078],[141.2888983,74.7793529],[141.3329382,74.7733031],[141.313497,73.8043812],[138.800028,73.7873342]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVH_N05.11","eo:cloud_cover":46.900082,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":19.634269,"s2:mean_solar_zenith":53.1422322075326,"s2:mean_solar_azimuth":182.555905771605,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":22.965646,"s2:vegetation_percentage":3.566145,"s2:thin_cirrus_percentage":8.210114,"s2:cloud_shadow_percentage":1.8615,"s2:nodata_pixel_percentage":58.156729,"s2:unclassified_percentage":0.490754,"s2:not_vegetated_percentage":4.581606,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":20.102456,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.58751,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500","bbox":[140.5930405,74.5815923,141.3332438,74.7885307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R60m/T54XVH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R60m/T54XVH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8300040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R20m/T54XVH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8300040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/IMG_DATA/R10m/T54XVH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8190240.0,509760.0,8300040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8300040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/GRANULE/L2A_T54XVH_A043673_20250717T025527/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE/DATASTRIP/DS_2BPS_20250717T044500_S20250717T025527/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVH_20250717T044500&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[141.3290916,74.5815923],[140.8795148,74.6433499],[140.5930405,74.6829548],[140.8122043,74.78498],[141.3332438,74.7885307],[141.3290916,74.5815923]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T044500_A043673_T54XVH_N05.11","eo:cloud_cover":73.722351,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVH_20250717T044500.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T044500_S20250717T025527_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:45:00.000000Z","sat:relative_orbit":32,"s2:water_percentage":14.889362,"s2:mean_solar_zenith":53.1422322075327,"s2:mean_solar_azimuth":182.555905771605,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":11.388166,"s2:vegetation_percentage":0.000119,"s2:thin_cirrus_percentage":2.290314,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":97.210932,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":38.146052,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":33.285987,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951","bbox":[137.8799475,72.8852322,141.3151567,73.8920442],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R60m/T54XVG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R60m/T54XVG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R20m/T54XVG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/IMG_DATA/R10m/T54XVG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,8090220.0,509760.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/GRANULE/L2A_T54XVG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.8799475,73.2845304],[138.0540315,73.382468],[138.2950343,73.5157073],[138.5398695,73.6486677],[138.7885911,73.7813322],[138.9692245,73.8761265],[141.3151567,73.8920442],[141.297514,72.90781],[137.9532063,72.8852322],[137.8799475,73.2845304]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVG_N05.11","eo:cloud_cover":8.419208,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":33.768678,"s2:mean_solar_zenith":52.2486793462447,"s2:mean_solar_azimuth":182.744340259198,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":49.342129,"s2:vegetation_percentage":5.999731,"s2:thin_cirrus_percentage":6.089519,"s2:cloud_shadow_percentage":0.459979,"s2:nodata_pixel_percentage":10.380324,"s2:unclassified_percentage":0.059182,"s2:not_vegetated_percentage":1.951094,"s2:degraded_msi_data_percentage":0.0157,"s2:high_proba_clouds_percentage":0.555568,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.774121,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951","bbox":[137.9380027,71.989773,141.2990014,72.9954806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R60m/T54XVF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R60m/T54XVF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R20m/T54XVF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/IMG_DATA/R10m/T54XVF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/GRANULE/L2A_T54XVF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/X/VF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54XVF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.9380027,72.9727797],[141.2990014,72.9954806],[141.2831475,72.0111578],[138.1000757,71.989773],[137.9380027,72.9727797]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54XVF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54XVF_N05.11","eo:cloud_cover":8.302079,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54XVF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":25.15133,"s2:mean_solar_zenith":51.3552596440843,"s2:mean_solar_azimuth":182.928194484078,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":36.912629,"s2:vegetation_percentage":16.042349,"s2:thin_cirrus_percentage":6.249959,"s2:cloud_shadow_percentage":0.201569,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.006553,"s2:not_vegetated_percentage":13.383493,"s2:degraded_msi_data_percentage":0.0241,"s2:high_proba_clouds_percentage":0.650638,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.401482,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951","bbox":[143.7661688,71.093762,145.78636,72.0778947],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R60m/T54WXE_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R60m/T54WXE_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R20m/T54WXE_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/IMG_DATA/R10m/T54WXE_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/GRANULE/L2A_T54WXE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[145.78636,72.034571],[145.7348784,72.0116786],[145.6002591,71.9508375],[145.4618036,71.8883175],[145.1900375,71.7635196],[144.9218929,71.638388],[144.657853,71.5128494],[144.3973893,71.387001],[144.1403129,71.2608353],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.8058313,71.093762],[143.7661688,71.0946736],[143.9125486,72.0778947],[145.78636,72.034571]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WXE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WXE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WXE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":17.80114,"s2:mean_solar_zenith":50.6173097050979,"s2:mean_solar_azimuth":189.890433656743,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":64.843941,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":70.015293,"s2:unclassified_percentage":0.006584,"s2:not_vegetated_percentage":17.348334,"s2:degraded_msi_data_percentage":0.016,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951","bbox":[143.7637458,71.0724966,143.9735536,71.1822592],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R60m/T54WXD_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R60m/T54WXD_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R20m/T54WXD_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/IMG_DATA/R10m/T54WXD_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/GRANULE/L2A_T54WXD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.9735536,71.1777753],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.7637458,71.0724966],[143.7785751,71.1822592],[143.9735536,71.1777753]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WXD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WXD_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WXD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":37.691283,"s2:mean_solar_zenith":49.728460700465,"s2:mean_solar_azimuth":189.847226215649,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":52.84155,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.66892,"s2:unclassified_percentage":0.048102,"s2:not_vegetated_percentage":9.419063,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951","bbox":[140.999417,71.0923697,144.196858,72.0995811],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R60m/T54WWE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R60m/T54WWE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R20m/T54WWE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/IMG_DATA/R10m/T54WWE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/GRANULE/L2A_T54WWE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[144.0573242,71.2195],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.8030759,71.0923697],[140.9994464,71.1151545],[140.999417,72.0995811],[144.196858,72.073449],[144.0573242,71.2195]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WWE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WWE_N05.11","eo:cloud_cover":0.000043,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WWE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":11.577826,"s2:mean_solar_zenith":50.5347458337918,"s2:mean_solar_azimuth":186.504601337355,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00004,"s2:vegetation_percentage":76.62341,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.535061,"s2:unclassified_percentage":0.003769,"s2:not_vegetated_percentage":11.794909,"s2:degraded_msi_data_percentage":0.0199,"s2:high_proba_clouds_percentage":7e-6,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000037,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951","bbox":[140.9994439,70.2091535,143.975301,71.2028426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R60m/T54WWD_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R60m/T54WWD_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R20m/T54WWD_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/IMG_DATA/R10m/T54WWD_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/GRANULE/L2A_T54WWD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[143.975301,71.1786456],[143.9716398,71.1768221],[143.8840091,71.1332644],[143.6330812,71.0064731],[143.5205388,70.9486732],[143.3873848,70.880465],[143.1424829,70.7530538],[142.9002939,70.6252531],[142.6604381,70.4972318],[142.4236022,70.3689064],[142.1895253,70.2403091],[142.1336098,70.2091535],[140.9994705,70.2183208],[140.9994439,71.2028426],[143.975301,71.1786456]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WWD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WWD_N05.11","eo:cloud_cover":0.000053,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WWD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":13.600075,"s2:mean_solar_zenith":49.6435833253783,"s2:mean_solar_azimuth":186.571966927614,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000058,"s2:vegetation_percentage":81.680822,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":31.762895,"s2:unclassified_percentage":0.002431,"s2:not_vegetated_percentage":4.716554,"s2:degraded_msi_data_percentage":0.0283,"s2:high_proba_clouds_percentage":0.00001,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000044,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951","bbox":[140.9994682,69.5568751,142.2901301,70.3060175],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R60m/T54WWC_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R60m/T54WWC_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R20m/T54WWC_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/IMG_DATA/R10m/T54WWC_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/GRANULE/L2A_T54WWC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[142.2901301,70.2955794],[142.1895253,70.2403091],[141.9582319,70.1114347],[141.7294833,69.9824322],[141.5033786,69.8532883],[141.2813115,69.7236358],[141.0612888,69.5938449],[140.9994867,69.5568751],[140.9994682,70.3060175],[142.2901301,70.2955794]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WWC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WWC_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WWC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.064775,"s2:mean_solar_zenith":48.7526479783835,"s2:mean_solar_azimuth":186.650496601281,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.002181,"s2:vegetation_percentage":78.974593,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":83.264059,"s2:unclassified_percentage":0.000119,"s2:not_vegetated_percentage":18.958335,"s2:degraded_msi_data_percentage":0.0073,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951","bbox":[138.0862883,71.0946572,141.284496,72.0993744],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R60m/T54WVE_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R60m/T54WVE_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R20m/T54WVE_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/IMG_DATA/R10m/T54WVE_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/GRANULE/L2A_T54WVE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.0862883,72.0778773],[141.284496,72.0993744],[141.2701751,71.1149593],[138.2327264,71.0946572],[138.0862883,72.0778773]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVE_N05.11","eo:cloud_cover":5.863766,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":28.236791,"s2:mean_solar_zenith":50.4625171471027,"s2:mean_solar_azimuth":183.108802615492,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":3.599776,"s2:vegetation_percentage":43.710288,"s2:thin_cirrus_percentage":5.068998,"s2:cloud_shadow_percentage":0.022166,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.020202,"s2:not_vegetated_percentage":18.547009,"s2:degraded_msi_data_percentage":0.0078,"s2:high_proba_clouds_percentage":0.318177,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.476591,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951","bbox":[138.2203151,70.1988218,141.2713887,71.2026464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R60m/T54WVD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R60m/T54WVD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R20m/T54WVD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/IMG_DATA/R10m/T54WVD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/GRANULE/L2A_T54WVD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.2203151,71.1822428],[141.2713887,71.2026464],[141.258393,70.2181351],[138.3532315,70.1988218],[138.2203151,71.1822428]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVD_N05.11","eo:cloud_cover":0.000017,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":11.096323,"s2:mean_solar_zenith":49.5693878530036,"s2:mean_solar_azimuth":183.287525469711,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00004,"s2:vegetation_percentage":80.303013,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.001261,"s2:not_vegetated_percentage":8.599345,"s2:degraded_msi_data_percentage":0.0062,"s2:high_proba_clouds_percentage":7e-6,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.00001,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951","bbox":[138.3419414,69.302813,141.2594967,70.3058309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R60m/T54WVC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R60m/T54WVC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R20m/T54WVC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/IMG_DATA/R10m/T54WVC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/GRANULE/L2A_T54WVC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[141.252288,69.7065149],[141.0612888,69.5938449],[140.8438762,69.4637893],[140.631353,69.3329125],[140.6054012,69.3169743],[138.4630916,69.302813],[138.3419414,70.2864248],[141.2594967,70.3058309],[141.252288,69.7065149]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVC_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.304452,"s2:mean_solar_zenith":48.6764182398639,"s2:mean_solar_azimuth":183.465358157545,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.070214,"s2:vegetation_percentage":75.791138,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":4.585987,"s2:unclassified_percentage":0.000042,"s2:not_vegetated_percentage":23.83392,"s2:degraded_msi_data_percentage":0.0233,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951","bbox":[138.4527167,68.4071754,140.7503058,69.4061665],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R60m/T54WVB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R60m/T54WVB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R20m/T54WVB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/IMG_DATA/R10m/T54WVB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/GRANULE/L2A_T54WVB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.7503058,69.4061665],[140.631353,69.3329125],[140.4187678,69.2023538],[140.2079766,69.0715492],[139.9991895,68.9404648],[139.7925405,68.8091917],[139.5884797,68.6776793],[139.38814,68.5455772],[139.1906958,68.413147],[139.1878784,68.4112778],[138.5635706,68.4071754],[138.4527167,69.3909702],[140.7503058,69.4061665]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVB_N05.11","eo:cloud_cover":3.335383,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.970102,"s2:mean_solar_zenith":47.784152898517,"s2:mean_solar_azimuth":183.643037696029,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.071176,"s2:vegetation_percentage":79.263401,"s2:thin_cirrus_percentage":3.248752,"s2:cloud_shadow_percentage":0.290992,"s2:nodata_pixel_percentage":47.297373,"s2:unclassified_percentage":0.009349,"s2:not_vegetated_percentage":15.899885,"s2:degraded_msi_data_percentage":0.0255,"s2:high_proba_clouds_percentage":0.001788,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.084843,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951","bbox":[138.5541183,68.0155973,139.3199586,68.4998464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R60m/T54WVA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R60m/T54WVA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R20m/T54WVA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/IMG_DATA/R10m/T54WVA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/GRANULE/L2A_T54WVA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/54/W/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T54WVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[139.3199586,68.4998464],[139.1906958,68.413147],[139.0044204,68.2895577],[138.99053,68.2803526],[138.978028,68.271814],[138.7975345,68.1490727],[138.6050813,68.0165698],[138.603688,68.0155973],[138.5541183,68.494811],[139.3199586,68.4998464]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32654,"instruments":["msi"],"s2:mgrs_tile":"54WVA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T54WVA_N05.11","eo:cloud_cover":6.39925,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T54WVA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.708158,"s2:mean_solar_zenith":46.891533182743,"s2:mean_solar_azimuth":183.821664487087,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":1.753561,"s2:vegetation_percentage":34.304196,"s2:thin_cirrus_percentage":5.917664,"s2:cloud_shadow_percentage":0.006917,"s2:nodata_pixel_percentage":93.140912,"s2:unclassified_percentage":0.039955,"s2:not_vegetated_percentage":52.866346,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.017849,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.463737,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951","bbox":[137.8987666,71.9166252,141.4017391,72.972798],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R60m/T53XPA_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R60m/T53XPA_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R20m/T53XPA_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/IMG_DATA/R10m/T53XPA_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/GRANULE/L2A_T53XPA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XPA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[138.0607752,72.972798],[141.4017391,72.8951551],[141.0648961,71.9166252],[137.8987666,71.9897902],[138.0607752,72.972798]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53XPA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53XPA_N05.11","eo:cloud_cover":8.471534,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53XPA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":25.152224,"s2:mean_solar_zenith":51.305817275075,"s2:mean_solar_azimuth":182.876057466885,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":35.284233,"s2:vegetation_percentage":16.72368,"s2:thin_cirrus_percentage":6.34322,"s2:cloud_shadow_percentage":0.240537,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.005819,"s2:not_vegetated_percentage":14.121971,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":0.718425,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.409889,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951","bbox":[137.1986657,72.8805816,138.4922012,73.6227809],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R60m/T53XNB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R60m/T53XNB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R20m/T53XNB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/IMG_DATA/R10m/T53XNB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,8090220.0,609780.0,8200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/GRANULE/L2A_T53XNB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.1986657,72.8899737],[137.3529907,72.9812994],[137.5830159,73.1152239],[137.8167258,73.2489626],[138.0540315,73.382468],[138.2950343,73.5157073],[138.4922012,73.6227809],[138.3428176,72.8805816],[137.1986657,72.8899737]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53XNB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53XNB_N05.11","eo:cloud_cover":10.7994,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53XNB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":22.729982,"s2:mean_solar_zenith":52.2312101532652,"s2:mean_solar_azimuth":179.393948289904,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":66.468495,"s2:vegetation_percentage":0.002124,"s2:thin_cirrus_percentage":9.430973,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":87.50307,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.240589,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.127837,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951","bbox":[135.7810207,71.9853678,138.3594919,72.9764372],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R60m/T53XNA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R60m/T53XNA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R20m/T53XNA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/IMG_DATA/R10m/T53XNA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/GRANULE/L2A_T53XNA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/X/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53XNA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[135.7810207,72.0049787],[135.8306676,72.0376004],[136.0398937,72.1730333],[136.25145,72.3082848],[136.4654229,72.4433503],[136.6822884,72.5782131],[136.9025759,72.7128205],[137.1263184,72.8471604],[137.3447744,72.9764372],[138.3594919,72.9681038],[138.181736,71.9853678],[135.7810207,72.0049787]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53XNA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53XNA_N05.11","eo:cloud_cover":4.452536,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53XNA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":95.541453,"s2:mean_solar_zenith":51.3351404866702,"s2:mean_solar_azimuth":179.353434492462,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.006011,"s2:thin_cirrus_percentage":3.826519,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":47.843993,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0008,"s2:high_proba_clouds_percentage":0.184047,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.441969,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951","bbox":[137.7661688,71.0251958,141.093564,72.0778947],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R60m/T53WPV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R60m/T53WPV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R20m/T53WPV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/IMG_DATA/R10m/T53WPV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/GRANULE/L2A_T53WPV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.9125486,72.0778947],[141.093564,72.0043476],[140.7889605,71.0251958],[137.7661688,71.0946736],[137.9125486,72.0778947]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPV_N05.11","eo:cloud_cover":5.74511,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":32.687479,"s2:mean_solar_zenith":50.4111090772672,"s2:mean_solar_azimuth":182.720923216345,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":4.85146,"s2:vegetation_percentage":37.601638,"s2:thin_cirrus_percentage":5.047541,"s2:cloud_shadow_percentage":0.023882,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.018172,"s2:not_vegetated_percentage":19.072258,"s2:degraded_msi_data_percentage":0.0117,"s2:high_proba_clouds_percentage":0.269389,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.42818,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951","bbox":[137.6457116,70.1327293,140.814787,71.1822592],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R60m/T53WPU_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R60m/T53WPU_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R20m/T53WPU_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/IMG_DATA/R10m/T53WPU_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/GRANULE/L2A_T53WPU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.7785751,71.1822592],[140.814787,71.1124355],[140.5381092,70.1327293],[137.6457116,70.1988374],[137.7785751,71.1822592]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPU_N05.11","eo:cloud_cover":3e-6,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":13.414465,"s2:mean_solar_zenith":49.5157431265834,"s2:mean_solar_azimuth":182.587133584315,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":77.782768,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.001921,"s2:not_vegetated_percentage":8.80084,"s2:degraded_msi_data_percentage":0.0012,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3e-6,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951","bbox":[137.5358953,69.2398107,140.5616186,70.2864405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R60m/T53WPT_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R60m/T53WPT_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R20m/T53WPT_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/IMG_DATA/R10m/T53WPT_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/GRANULE/L2A_T53WPT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.6569973,70.2864405],[140.5616186,70.2200158],[140.3092739,69.2398107],[137.5358953,69.3028279],[137.6569973,70.2864405]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPT_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.085959,"s2:mean_solar_zenith":48.6202573099626,"s2:mean_solar_azimuth":182.472257995074,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.097359,"s2:vegetation_percentage":76.235116,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":23.58157,"s2:degraded_msi_data_percentage":0.0173,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951","bbox":[137.4354563,68.3690508,140.3308902,69.3909851],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R60m/T53WPS_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R60m/T53WPS_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R20m/T53WPS_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/IMG_DATA/R10m/T53WPS_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/GRANULE/L2A_T53WPS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[140.2812653,69.1170279],[140.2079766,69.0715492],[139.9991895,68.9404648],[139.7925405,68.8091917],[139.5884797,68.6776793],[139.38814,68.5455772],[139.1906958,68.413147],[139.1242334,68.3690508],[137.4354563,68.4071896],[137.546266,69.3909851],[140.3308902,69.3276752],[140.2812653,69.1170279]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPS_N05.11","eo:cloud_cover":9.896792,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.361735,"s2:mean_solar_zenith":47.7251878306583,"s2:mean_solar_azimuth":182.374139174231,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.202622,"s2:vegetation_percentage":71.319681,"s2:thin_cirrus_percentage":6.357141,"s2:cloud_shadow_percentage":1.606275,"s2:nodata_pixel_percentage":14.510258,"s2:unclassified_percentage":0.019405,"s2:not_vegetated_percentage":15.364692,"s2:degraded_msi_data_percentage":0.0247,"s2:high_proba_clouds_percentage":1.873058,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.666593,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951","bbox":[137.3431637,67.4987463,139.2516026,68.4948252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R60m/T53WPR_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R60m/T53WPR_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R20m/T53WPR_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/IMG_DATA/R10m/T53WPR_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/GRANULE/L2A_T53WPR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[139.2516026,68.4539985],[139.1906958,68.413147],[139.0044204,68.2895577],[138.99053,68.2803526],[138.978028,68.271814],[138.7975345,68.1490727],[138.6050813,68.0165698],[138.414898,67.8838321],[138.2278795,67.7506648],[138.0449052,67.6167832],[137.8826614,67.4987463],[137.3431637,67.5108527],[137.4449048,68.4948252],[139.2516026,68.4539985]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPR_N05.11","eo:cloud_cover":50.947386,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.132876,"s2:mean_solar_zenith":46.829461693452,"s2:mean_solar_azimuth":182.29099033466,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.371113,"s2:vegetation_percentage":28.684637,"s2:thin_cirrus_percentage":14.934808,"s2:cloud_shadow_percentage":2.099002,"s2:nodata_pixel_percentage":55.891585,"s2:unclassified_percentage":0.706798,"s2:not_vegetated_percentage":16.609885,"s2:degraded_msi_data_percentage":0.0239,"s2:high_proba_clouds_percentage":21.74134,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.271238,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951","bbox":[137.3011384,67.0659149,137.9997823,67.5985039],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R60m/T53WPQ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R60m/T53WPQ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R20m/T53WPQ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/IMG_DATA/R10m/T53WPQ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/GRANULE/L2A_T53WPQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/PQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WPQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.9997823,67.583955],[137.8613163,67.4832171],[137.6800852,67.3492598],[137.5000028,67.2152473],[137.3213521,67.0811797],[137.3011384,67.0659149],[137.3518535,67.5985039],[137.9997823,67.583955]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WPQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WPQ_N05.11","eo:cloud_cover":80.372506,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WPQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.581574,"s2:mean_solar_zenith":45.9336159916215,"s2:mean_solar_azimuth":182.221357511726,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.009367,"s2:vegetation_percentage":12.079749,"s2:thin_cirrus_percentage":13.551554,"s2:cloud_shadow_percentage":1.584354,"s2:nodata_pixel_percentage":93.269897,"s2:unclassified_percentage":1.45884,"s2:not_vegetated_percentage":3.908234,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":25.341576,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.479379,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951","bbox":[134.9994355,71.0904748,138.196858,72.0920994],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R60m/T53WNV_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R60m/T53WNV_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R20m/T53WNV_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/IMG_DATA/R10m/T53WNV_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/GRANULE/L2A_T53WNV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994355,71.4781682],[135.0219441,71.4939117],[135.2197311,71.6301191],[135.4205147,71.7661413],[135.6242101,71.9019427],[135.8306676,72.0376004],[135.9148614,72.0920994],[138.196858,72.073449],[138.0362417,71.0904748],[134.9994464,71.1151545],[134.9994355,71.4781682]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNV_N05.11","eo:cloud_cover":0.039394,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":36.798185,"s2:mean_solar_zenith":50.4394772497286,"s2:mean_solar_azimuth":179.321853230839,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":27.153489,"s2:vegetation_percentage":20.840448,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":9.368174,"s2:unclassified_percentage":0.006403,"s2:not_vegetated_percentage":15.162079,"s2:degraded_msi_data_percentage":0.0173,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.039394,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951","bbox":[134.9994439,70.1948429,138.049855,71.2028426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R60m/T53WNU_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R60m/T53WNU_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R20m/T53WNU_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/IMG_DATA/R10m/T53WNU_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/GRANULE/L2A_T53WNU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994439,71.2028426],[138.049855,71.1780394],[137.9040632,70.1948429],[134.9994705,70.2183208],[134.9994439,71.2028426]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNU_N05.11","eo:cloud_cover":0.488346,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":16.513933,"s2:mean_solar_zenith":49.543143601069,"s2:mean_solar_azimuth":179.298078790733,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001158,"s2:vegetation_percentage":77.088505,"s2:thin_cirrus_percentage":0.47116,"s2:cloud_shadow_percentage":0.000617,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.008119,"s2:not_vegetated_percentage":5.899327,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.017186,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951","bbox":[134.9994682,69.2990206,137.9164472,70.3060175],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R60m/T53WNT_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R60m/T53WNT_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R20m/T53WNT_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/IMG_DATA/R10m/T53WNT_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/GRANULE/L2A_T53WNT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994682,70.3060175],[137.9164472,70.2824267],[137.7835563,69.2990206],[134.9994925,69.3213967],[134.9994682,70.3060175]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNT_N05.11","eo:cloud_cover":4.688246,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.84148,"s2:mean_solar_zenith":48.6466760123962,"s2:mean_solar_azimuth":179.281215552931,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.02204,"s2:vegetation_percentage":77.097553,"s2:thin_cirrus_percentage":4.368287,"s2:cloud_shadow_percentage":0.050149,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.002482,"s2:not_vegetated_percentage":17.298049,"s2:degraded_msi_data_percentage":0.0154,"s2:high_proba_clouds_percentage":0.000292,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.319667,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951","bbox":[134.9994904,68.4035546,137.7949369,69.4096405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R60m/T53WNS_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R60m/T53WNS_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R20m/T53WNS_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/IMG_DATA/R10m/T53WNS_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/GRANULE/L2A_T53WNS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9994904,69.4096405],[137.7949369,69.3871601],[137.6733361,68.4035546],[134.9995126,68.4249171],[134.9994904,69.4096405]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNS_N05.11","eo:cloud_cover":3.499497,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.498203,"s2:mean_solar_zenith":47.750610937167,"s2:mean_solar_azimuth":179.27051116146,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000332,"s2:vegetation_percentage":83.526266,"s2:thin_cirrus_percentage":2.582646,"s2:cloud_shadow_percentage":0.218712,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.010491,"s2:not_vegetated_percentage":12.246495,"s2:degraded_msi_data_percentage":0.0003,"s2:high_proba_clouds_percentage":0.441279,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.475572,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951","bbox":[134.9995107,67.5073771,137.6837049,68.5126321],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R60m/T53WNR_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R60m/T53WNR_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R20m/T53WNR_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/IMG_DATA/R10m/T53WNR_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/GRANULE/L2A_T53WNR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.9995107,68.5126321],[137.6837049,68.491174],[137.5720525,67.5073771],[134.9995311,67.5278024],[134.9995107,68.5126321]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNR_N05.11","eo:cloud_cover":36.66355,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.499322,"s2:mean_solar_zenith":46.8538715277138,"s2:mean_solar_azimuth":179.265415984781,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.004509,"s2:vegetation_percentage":44.98021,"s2:thin_cirrus_percentage":10.196213,"s2:cloud_shadow_percentage":3.757443,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":2.886065,"s2:not_vegetated_percentage":11.208901,"s2:degraded_msi_data_percentage":0.0146,"s2:high_proba_clouds_percentage":17.368774,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.098563,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951","bbox":[134.9995294,66.6170156,137.581589,67.6155271],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R60m/T53WNQ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R60m/T53WNQ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R20m/T53WNQ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/IMG_DATA/R10m/T53WNQ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/GRANULE/L2A_T53WNQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[137.5454291,67.2490523],[137.5000028,67.2152473],[137.3213521,67.0811797],[137.1438475,66.9471341],[136.9697618,66.8125882],[136.7971426,66.6780005],[136.7200851,66.6170156],[134.9995482,66.6305875],[134.9995294,67.6155271],[137.581589,67.5950132],[137.5454291,67.2490523]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNQ_N05.11","eo:cloud_cover":71.882689,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.241975,"s2:mean_solar_zenith":45.956994707828,"s2:mean_solar_azimuth":179.265390275024,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000881,"s2:vegetation_percentage":11.376605,"s2:thin_cirrus_percentage":8.059323,"s2:cloud_shadow_percentage":3.133707,"s2:nodata_pixel_percentage":10.036112,"s2:unclassified_percentage":6.558467,"s2:not_vegetated_percentage":6.805665,"s2:degraded_msi_data_percentage":0.0236,"s2:high_proba_clouds_percentage":44.913453,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.909921,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951","bbox":[134.9995465,65.7288235,136.8310071,66.7188603],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R60m/T53WNP_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R60m/T53WNP_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R20m/T53WNP_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/IMG_DATA/R10m/T53WNP_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/GRANULE/L2A_T53WNP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[136.8310071,66.7044039],[136.7971426,66.6780005],[136.6268255,66.5432079],[136.4554565,66.4089337],[136.2905121,66.2734345],[136.124355,66.1384481],[135.9590236,66.0034615],[135.7973805,65.8677223],[135.6387393,65.7314011],[135.6357109,65.7288235],[134.9995639,65.7338076],[134.9995465,66.7188603],[136.8310071,66.7044039]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNP_N05.11","eo:cloud_cover":79.262155,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.064865,"s2:mean_solar_zenith":45.0605176677555,"s2:mean_solar_azimuth":179.27010740126,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001381,"s2:vegetation_percentage":11.749259,"s2:thin_cirrus_percentage":35.7537,"s2:cloud_shadow_percentage":1.796817,"s2:nodata_pixel_percentage":50.036603,"s2:unclassified_percentage":1.188451,"s2:not_vegetated_percentage":5.935958,"s2:degraded_msi_data_percentage":0.0263,"s2:high_proba_clouds_percentage":7.194892,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":36.313558,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951","bbox":[134.9995624,65.1784831,135.7369237,65.8215524],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R60m/T53WNN_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R60m/T53WNN_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R20m/T53WNN_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/IMG_DATA/R10m/T53WNN_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/GRANULE/L2A_T53WNN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/NN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WNN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[135.7369237,65.8157714],[135.6387393,65.7314011],[135.4790342,65.5954711],[135.3203988,65.4595167],[135.1640839,65.3232305],[135.009083,65.1869289],[134.9995729,65.1784831],[134.9995624,65.8215524],[135.7369237,65.8157714]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WNN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WNN_N05.11","eo:cloud_cover":99.833322,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WNN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000033,"s2:mean_solar_zenith":44.163363602334,"s2:mean_solar_azimuth":179.279169599448,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.150944,"s2:thin_cirrus_percentage":28.099704,"s2:cloud_shadow_percentage":0.000668,"s2:nodata_pixel_percentage":90.066993,"s2:unclassified_percentage":0.001436,"s2:not_vegetated_percentage":0.013595,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":14.312494,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":57.421124,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951","bbox":[134.4811106,71.1096852,135.2782462,71.6697606],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R60m/T53WMV_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R60m/T53WMV_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R20m/T53WMV_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/IMG_DATA/R10m/T53WMV_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/GRANULE/L2A_T53WMV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.4811106,71.1096852],[134.6351874,71.2210221],[134.8269898,71.3575522],[135.0219441,71.4939117],[135.2197311,71.6301191],[135.2782462,71.6697606],[135.2701751,71.1149593],[134.4811106,71.1096852]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMV_N05.11","eo:cloud_cover":0.039226,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":24.383707,"s2:mean_solar_zenith":50.4784982490092,"s2:mean_solar_azimuth":175.916797651609,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.759301,"s2:vegetation_percentage":45.216641,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":92.96276,"s2:unclassified_percentage":0.023998,"s2:not_vegetated_percentage":29.577124,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.039226,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951","bbox":[133.2861284,70.2050237,135.2713887,71.2026464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R60m/T53WMU_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R60m/T53WMU_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R20m/T53WMU_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/IMG_DATA/R10m/T53WMU_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/GRANULE/L2A_T53WMU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.2861284,70.2050237],[133.3563274,70.2605362],[133.533248,70.3982007],[133.7113221,70.5358675],[133.8919369,70.6731953],[134.0746049,70.8103348],[134.2592913,70.9473583],[134.4459812,71.0843005],[134.6035773,71.1981805],[135.2713887,71.2026464],[135.258393,70.2181351],[133.2861284,70.2050237]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMU_N05.11","eo:cloud_cover":0.35225,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":3.292965,"s2:mean_solar_zenith":49.58155452922,"s2:mean_solar_azimuth":176.004006870427,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.002004,"s2:vegetation_percentage":90.762228,"s2:thin_cirrus_percentage":0.319707,"s2:cloud_shadow_percentage":0.003768,"s2:nodata_pixel_percentage":55.793881,"s2:unclassified_percentage":0.005914,"s2:not_vegetated_percentage":5.580869,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":8e-6,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.032536,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951","bbox":[132.4375113,69.302813,135.2594967,70.3058309],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R60m/T53WMT_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R60m/T53WMT_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R20m/T53WMT_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/IMG_DATA/R10m/T53WMT_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7690200.0,509760.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/GRANULE/L2A_T53WMT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.4375113,69.510498],[132.5072291,69.5697717],[132.6725396,69.7081763],[132.8399998,69.846495],[133.010646,69.9845106],[133.1819808,70.122665],[133.3563274,70.2605362],[133.3986312,70.2934534],[135.2594967,70.3058309],[135.2476536,69.3212198],[132.4630916,69.302813],[132.4375113,69.510498]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMT_N05.11","eo:cloud_cover":0.83192,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.963727,"s2:mean_solar_zenith":48.684473752372,"s2:mean_solar_azimuth":176.085958812526,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.012127,"s2:vegetation_percentage":82.922882,"s2:thin_cirrus_percentage":0.805923,"s2:cloud_shadow_percentage":0.00147,"s2:nodata_pixel_percentage":14.697061,"s2:unclassified_percentage":0.003228,"s2:not_vegetated_percentage":15.264641,"s2:degraded_msi_data_percentage":0.014,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.025997,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951","bbox":[132.4527167,68.4071754,135.2486677,69.4094627],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R60m/T53WMS_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R60m/T53WMS_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R20m/T53WMS_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/IMG_DATA/R10m/T53WMS_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7590240.0,509760.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/GRANULE/L2A_T53WMS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.4527167,69.3909702],[135.2486677,69.4094627],[135.2378328,68.4247482],[132.5635706,68.4071754],[132.4527167,69.3909702]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMS_N05.11","eo:cloud_cover":1.381439,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.717108,"s2:mean_solar_zenith":47.7877908664443,"s2:mean_solar_azimuth":176.163362195745,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":80.133373,"s2:thin_cirrus_percentage":0.558542,"s2:cloud_shadow_percentage":0.66032,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.270719,"s2:not_vegetated_percentage":15.837045,"s2:degraded_msi_data_percentage":0.023,"s2:high_proba_clouds_percentage":0.428001,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.394896,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951","bbox":[132.5541183,67.5108391,135.2387566,68.5124624],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R60m/T53WMR_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R60m/T53WMR_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R20m/T53WMR_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/IMG_DATA/R10m/T53WMR_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/GRANULE/L2A_T53WMR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.5541183,68.494811],[135.2387566,68.5124624],[135.2288099,67.5276409],[132.6559,67.5108391],[132.5541183,68.494811]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMR_N05.11","eo:cloud_cover":1.407487,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.355294,"s2:mean_solar_zenith":46.8904280749316,"s2:mean_solar_azimuth":176.236873363626,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.387017,"s2:thin_cirrus_percentage":0.862691,"s2:cloud_shadow_percentage":0.62312,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.23916,"s2:not_vegetated_percentage":12.987924,"s2:degraded_msi_data_percentage":0.0178,"s2:high_proba_clouds_percentage":0.214253,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.330543,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951","bbox":[132.6472067,66.6143459,135.2296594,67.6153648],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R60m/T53WMQ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R60m/T53WMQ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R20m/T53WMQ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/IMG_DATA/R10m/T53WMQ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7390200.0,509760.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/GRANULE/L2A_T53WMQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.6472067,67.5984902],[135.2296594,67.6153648],[135.2204986,66.6304328],[132.7409581,66.6143459],[132.6472067,67.5984902]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMQ_N05.11","eo:cloud_cover":48.034894,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.562238,"s2:mean_solar_zenith":45.9929211883906,"s2:mean_solar_azimuth":176.306964756757,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":43.581593,"s2:thin_cirrus_percentage":24.397135,"s2:cloud_shadow_percentage":1.614102,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.005252,"s2:not_vegetated_percentage":5.20192,"s2:degraded_msi_data_percentage":0.0018,"s2:high_proba_clouds_percentage":9.764101,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.873656,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951","bbox":[132.732889,65.718237,135.221287,66.718705],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R60m/T53WMP_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R60m/T53WMP_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R20m/T53WMP_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/IMG_DATA/R10m/T53WMP_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/GRANULE/L2A_T53WMP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.732889,66.7025501],[135.221287,66.718705],[135.2128247,65.7336593],[132.8195021,65.718237],[132.732889,66.7025501]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMP_N05.11","eo:cloud_cover":96.877158,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":45.0958071044653,"s2:mean_solar_azimuth":176.374033706648,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":1.051838,"s2:thin_cirrus_percentage":17.849383,"s2:cloud_shadow_percentage":0.780558,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.527862,"s2:not_vegetated_percentage":0.762589,"s2:degraded_msi_data_percentage":0.012,"s2:high_proba_clouds_percentage":28.265235,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":50.762534,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951","bbox":[132.8120825,64.8214388,135.2135496,65.8214035],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R60m/T53WMN_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R60m/T53WMN_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R20m/T53WMN_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/IMG_DATA/R10m/T53WMN_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/GRANULE/L2A_T53WMN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[135.2099039,65.3631796],[135.1640839,65.3232305],[135.009083,65.1869289],[134.8555479,65.0505759],[134.7035955,64.9141124],[134.6140229,64.8324549],[132.8923143,64.8214388],[132.8120825,65.8059182],[135.2135496,65.8214035],[135.2099039,65.3631796]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMN_N05.11","eo:cloud_cover":98.44386,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.028701,"s2:mean_solar_zenith":44.1980073241091,"s2:mean_solar_azimuth":176.438516584663,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00057,"s2:vegetation_percentage":1.056921,"s2:thin_cirrus_percentage":20.16459,"s2:cloud_shadow_percentage":0.393805,"s2:nodata_pixel_percentage":6.942555,"s2:unclassified_percentage":0.029457,"s2:not_vegetated_percentage":0.044553,"s2:degraded_msi_data_percentage":0.0227,"s2:high_proba_clouds_percentage":46.016845,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":32.26243,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951","bbox":[132.8854324,63.9244911,134.7110691,64.9208241],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R60m/T53WMM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R60m/T53WMM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R20m/T53WMM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/IMG_DATA/R10m/T53WMM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/GRANULE/L2A_T53WMM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/W/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53WMM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.7110691,64.9208241],[134.7035955,64.9141124],[134.5536454,64.7774128],[134.4045168,64.6408004],[134.2802415,64.524936],[134.2564905,64.5028569],[134.2103015,64.4586964],[134.1136279,64.3664568],[133.9697259,64.2290907],[133.8236568,64.0922739],[133.6820659,63.954531],[133.6563042,63.9289139],[132.9599395,63.9244911],[132.8854324,64.9091348],[134.7110691,64.9208241]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53WMM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53WMM_N05.11","eo:cloud_cover":33.978871,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53WMM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.19202,"s2:mean_solar_zenith":43.3000574461588,"s2:mean_solar_azimuth":176.500781592237,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.743309,"s2:vegetation_percentage":30.364639,"s2:thin_cirrus_percentage":15.058976,"s2:cloud_shadow_percentage":0.091821,"s2:nodata_pixel_percentage":45.192254,"s2:unclassified_percentage":0.995471,"s2:not_vegetated_percentage":21.746081,"s2:degraded_msi_data_percentage":0.0279,"s2:high_proba_clouds_percentage":7.460166,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.459728,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951","bbox":[132.9535015,63.2747981,133.7470856,64.0177837],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R60m/T53VML_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R60m/T53VML_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R20m/T53VML_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/IMG_DATA/R10m/T53VML_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/GRANULE/L2A_T53VML_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VML_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.7470856,64.0177837],[133.6820659,63.954531],[133.5430972,63.816342],[133.4042308,63.6782928],[133.2668301,63.5400978],[133.1303171,63.4019607],[133.0054708,63.2747981],[132.9535015,64.0127397],[133.7470856,64.0177837]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53VML","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53VML_N05.11","eo:cloud_cover":12.662388,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53VML_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.697701,"s2:mean_solar_zenith":42.4024958912698,"s2:mean_solar_azimuth":176.56100877451,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.731281,"s2:vegetation_percentage":71.997678,"s2:thin_cirrus_percentage":12.659788,"s2:cloud_shadow_percentage":0.096674,"s2:nodata_pixel_percentage":86.858964,"s2:unclassified_percentage":0.285579,"s2:not_vegetated_percentage":9.435956,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.000328,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.002272,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951","bbox":[130.913343,62.9866068,133.1897998,64.015435],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R60m/T53VLL_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R60m/T53VLL_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R20m/T53VLL_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/IMG_DATA/R10m/T53VLL_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/GRANULE/L2A_T53VLL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.1897998,63.462151],[133.1303171,63.4019607],[132.994726,63.2638539],[132.8604581,63.1256284],[132.7601712,63.0212492],[131.0515033,62.9866068],[130.913343,63.9696051],[133.1546638,64.015435],[133.1897998,63.462151]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53VLL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53VLL_N05.11","eo:cloud_cover":9.69805,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53VLL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.908008,"s2:mean_solar_zenith":42.4500229392061,"s2:mean_solar_azimuth":173.818382111021,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.030738,"s2:vegetation_percentage":84.882092,"s2:thin_cirrus_percentage":9.672086,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":4.712111,"s2:unclassified_percentage":0.32355,"s2:not_vegetated_percentage":1.908846,"s2:degraded_msi_data_percentage":0.0223,"s2:high_proba_clouds_percentage":0.000024,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.02594,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951","bbox":[131.1574343,61.3660298,131.9897108,62.195252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R60m/T53VLJ_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R60m/T53VLJ_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R20m/T53VLJ_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/IMG_DATA/R10m/T53VLJ_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/GRANULE/L2A_T53VLJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/53/V/LJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T53VLJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.9897108,62.195252],[131.9519214,62.1538178],[131.8263048,62.0146449],[131.7734854,61.9555542],[131.7025895,61.8764038],[131.5792047,61.7370479],[131.4572377,61.5976178],[131.3361918,61.4581338],[131.2569852,61.3660298],[131.1574343,62.1785001],[131.9897108,62.195252]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32653,"instruments":["msi"],"s2:mgrs_tile":"53VLJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T53VLJ_N05.11","eo:cloud_cover":0.438324,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T53VLJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.222577,"s2:mean_solar_zenith":40.6529531920545,"s2:mean_solar_azimuth":174.0039605909,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":95.807463,"s2:thin_cirrus_percentage":0.000185,"s2:cloud_shadow_percentage":1.201613,"s2:nodata_pixel_percentage":83.840901,"s2:unclassified_percentage":0.557658,"s2:not_vegetated_percentage":0.61831,"s2:degraded_msi_data_percentage":0.004,"s2:high_proba_clouds_percentage":0.072151,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.365989,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951","bbox":[131.2581395,66.5592595,133.9254764,67.5985039],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R60m/T52WFV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R60m/T52WFV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R20m/T52WFV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/IMG_DATA/R10m/T52WFV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/GRANULE/L2A_T52WFV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.3518535,67.5985039],[133.9254764,67.5407149],[133.7299138,66.5592595],[131.2581395,66.6143589],[131.3518535,67.5985039]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFV_N05.11","eo:cloud_cover":69.579434,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.356283,"s2:mean_solar_zenith":45.999385627067,"s2:mean_solar_azimuth":174.519173584484,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":26.530567,"s2:thin_cirrus_percentage":45.736045,"s2:cloud_shadow_percentage":0.558913,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.08071,"s2:not_vegetated_percentage":2.894091,"s2:degraded_msi_data_percentage":0.0213,"s2:high_proba_clouds_percentage":3.3369,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":20.506491,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951","bbox":[131.1796268,65.66542,133.7467491,66.7025631],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R60m/T52WFU_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R60m/T52WFU_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R20m/T52WFU_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/IMG_DATA/R10m/T52WFU_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/GRANULE/L2A_T52WFU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.2662054,66.7025631],[133.7467491,66.6472313],[133.5660076,65.66542],[131.1796268,65.7182494],[131.2662054,66.7025631]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFU_N05.11","eo:cloud_cover":80.381471,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.040909,"s2:mean_solar_zenith":45.1111715791707,"s2:mean_solar_azimuth":174.346133667649,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":14.363141,"s2:thin_cirrus_percentage":37.047416,"s2:cloud_shadow_percentage":2.320102,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.216419,"s2:not_vegetated_percentage":1.677957,"s2:degraded_msi_data_percentage":0.0075,"s2:high_proba_clouds_percentage":15.949947,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":27.384108,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951","bbox":[131.1068437,64.7707414,133.5814932,65.8059307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R60m/T52WFT_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R60m/T52WFT_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R20m/T52WFT_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/IMG_DATA/R10m/T52WFT_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7190220.0,709800.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/GRANULE/L2A_T52WFT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.1870434,65.8059307],[133.5814932,65.7528862],[133.4140108,64.7707414],[131.1068437,64.8214508],[131.1870434,65.8059307]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFT_N05.11","eo:cloud_cover":57.527,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.089396,"s2:mean_solar_zenith":44.2222573271832,"s2:mean_solar_azimuth":174.178715827812,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.03204,"s2:vegetation_percentage":30.414471,"s2:thin_cirrus_percentage":18.254933,"s2:cloud_shadow_percentage":2.321787,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.492108,"s2:not_vegetated_percentage":7.543512,"s2:degraded_msi_data_percentage":0.0011,"s2:high_proba_clouds_percentage":20.062615,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":19.209455,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951","bbox":[131.0392454,63.8757772,133.4283789,64.9091468],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R60m/T52WFS_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R60m/T52WFS_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R20m/T52WFS_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/IMG_DATA/R10m/T52WFS_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7090200.0,709800.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/GRANULE/L2A_T52WFS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.1137228,64.9091468],[133.4283789,64.8582363],[133.2727989,63.8757772],[131.0392454,63.9245026],[131.1137228,64.9091468]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFS_N05.11","eo:cloud_cover":9.216897,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.248951,"s2:mean_solar_zenith":43.3331813369737,"s2:mean_solar_azimuth":174.015842397136,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.667234,"s2:vegetation_percentage":54.976976,"s2:thin_cirrus_percentage":7.174903,"s2:cloud_shadow_percentage":0.037306,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.938136,"s2:not_vegetated_percentage":21.746583,"s2:degraded_msi_data_percentage":0.0156,"s2:high_proba_clouds_percentage":0.313619,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.728375,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951","bbox":[134.3782739,71.0251958,134.9105306,71.4159842],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R60m/T52WFE_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R60m/T52WFE_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R20m/T52WFE_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/IMG_DATA/R10m/T52WFE_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/GRANULE/L2A_T52WFE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[134.3782739,71.0346353],[134.4459812,71.0843005],[134.6351874,71.2210221],[134.8269898,71.3575522],[134.9105306,71.4159842],[134.7889605,71.0251958],[134.3782739,71.0346353]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFE_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":14.570828,"s2:mean_solar_zenith":50.4399499537414,"s2:mean_solar_azimuth":175.523721823951,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":68.903619,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":97.471303,"s2:unclassified_percentage":0.027554,"s2:not_vegetated_percentage":16.497999,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951","bbox":[132.1782345,69.2398107,134.5616186,70.2479433],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R60m/T52WFC_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R60m/T52WFC_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R20m/T52WFC_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/IMG_DATA/R10m/T52WFC_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7690200.0,709800.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/GRANULE/L2A_T52WFC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.1782345,69.2882325],[132.1831794,69.2925464],[132.3442605,69.4312167],[132.5072291,69.5697717],[132.6725396,69.7081763],[132.8399998,69.846495],[133.010646,69.9845106],[133.1819808,70.122665],[133.340403,70.2479433],[134.5616186,70.2200158],[134.3092739,69.2398107],[132.1782345,69.2882325]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFC_N05.11","eo:cloud_cover":0.066171,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.05008,"s2:mean_solar_zenith":48.664054088493,"s2:mean_solar_azimuth":175.086798999784,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.013523,"s2:vegetation_percentage":85.094708,"s2:thin_cirrus_percentage":0.066171,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":41.09005,"s2:unclassified_percentage":0.000608,"s2:not_vegetated_percentage":14.774911,"s2:degraded_msi_data_percentage":0.0032,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951","bbox":[131.4354563,68.3470175,134.3308902,69.3743442],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R60m/T52WFB_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R60m/T52WFB_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R20m/T52WFB_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/IMG_DATA/R10m/T52WFB_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/GRANULE/L2A_T52WFB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/FB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WFB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.4627689,68.6496772],[131.5574948,68.7362757],[131.7116764,68.8755213],[131.8668155,69.0147346],[132.0240415,69.1537179],[132.1831794,69.2925464],[132.2781968,69.3743442],[134.3308902,69.3276752],[134.0998643,68.3470175],[131.4354563,68.4071896],[131.4627689,68.6496772]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WFB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WFB_N05.11","eo:cloud_cover":1.499358,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WFB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.444134,"s2:mean_solar_zenith":47.7763639288029,"s2:mean_solar_azimuth":174.88800636576,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000163,"s2:vegetation_percentage":77.548021,"s2:thin_cirrus_percentage":0.589012,"s2:cloud_shadow_percentage":0.710457,"s2:nodata_pixel_percentage":10.278857,"s2:unclassified_percentage":0.299622,"s2:not_vegetated_percentage":19.498242,"s2:degraded_msi_data_percentage":0.0174,"s2:high_proba_clouds_percentage":0.476632,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.433714,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951","bbox":[129.4326646,66.6110311,131.581589,67.6046234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R60m/T52WEV_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R60m/T52WEV_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R20m/T52WEV_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/IMG_DATA/R10m/T52WEV_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7390200.0,609780.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/GRANULE/L2A_T52WEV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.4326646,66.627171],[129.4395568,66.6346719],[129.569974,66.7756814],[129.7029067,66.9163859],[129.8368444,67.0570373],[129.9718905,67.1976125],[130.1092595,67.3378121],[130.2467967,67.4780835],[130.3719703,67.6046234],[131.581589,67.5950132],[131.478743,66.6110311],[129.4326646,66.627171]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEV_N05.11","eo:cloud_cover":56.754273,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.137858,"s2:mean_solar_zenith":46.1415775723871,"s2:mean_solar_azimuth":171.570681979177,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.010488,"s2:vegetation_percentage":27.792656,"s2:thin_cirrus_percentage":26.870412,"s2:cloud_shadow_percentage":9.748025,"s2:nodata_pixel_percentage":35.875851,"s2:unclassified_percentage":2.108658,"s2:not_vegetated_percentage":3.448037,"s2:degraded_msi_data_percentage":0.0056,"s2:high_proba_clouds_percentage":15.36417,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.519691,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951","bbox":[128.9995566,65.715059,131.487595,66.7148022],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R60m/T52WEU_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R60m/T52WEU_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R20m/T52WEU_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/IMG_DATA/R10m/T52WEU_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7290240.0,609780.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/GRANULE/L2A_T52WEU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995566,66.1472915],[129.0568185,66.2112587],[129.1820685,66.3526398],[129.3100284,66.4937028],[129.4395568,66.6346719],[129.5136678,66.7148022],[131.487595,66.6992212],[131.3925776,65.715059],[128.9995639,65.7338076],[128.9995566,66.1472915]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEU_N05.11","eo:cloud_cover":58.694005,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.187807,"s2:mean_solar_zenith":45.2540563512696,"s2:mean_solar_azimuth":171.460375519743,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.020823,"s2:vegetation_percentage":19.575879,"s2:thin_cirrus_percentage":6.623583,"s2:cloud_shadow_percentage":7.282652,"s2:nodata_pixel_percentage":6.247365,"s2:unclassified_percentage":4.842953,"s2:not_vegetated_percentage":9.395286,"s2:degraded_msi_data_percentage":0.0214,"s2:high_proba_clouds_percentage":38.061482,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.008942,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951","bbox":[128.9995624,64.8183886,131.4007172,65.8215524],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R60m/T52WET_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R60m/T52WET_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R20m/T52WET_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/IMG_DATA/R10m/T52WET_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7190220.0,609780.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/GRANULE/L2A_T52WET_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ET/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WET_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995624,65.8215524],[131.4007172,65.8027272],[131.3126985,64.8183886],[128.9995785,64.8363831],[128.9995624,65.8215524]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WET","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WET_N05.11","eo:cloud_cover":41.352487,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WET_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.192166,"s2:mean_solar_zenith":44.3658966769181,"s2:mean_solar_azimuth":171.348870647938,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.034827,"s2:vegetation_percentage":27.956703,"s2:thin_cirrus_percentage":4.539822,"s2:cloud_shadow_percentage":6.532108,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":5.609962,"s2:not_vegetated_percentage":16.073813,"s2:degraded_msi_data_percentage":0.0221,"s2:high_proba_clouds_percentage":25.178194,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.634471,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951","bbox":[128.9995771,63.9215604,131.3202484,64.9241384],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R60m/T52WES_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R60m/T52WES_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R20m/T52WES_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/IMG_DATA/R10m/T52WES_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7090200.0,609780.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/GRANULE/L2A_T52WES_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/ES/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WES_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995771,64.9241384],[131.3202484,64.9060724],[131.2385085,63.9215604],[128.999592,63.9388493],[128.9995771,64.9241384]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WES","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WES_N05.11","eo:cloud_cover":5.759115,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WES_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.227425,"s2:mean_solar_zenith":43.4776424575435,"s2:mean_solar_azimuth":171.235576308309,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.078951,"s2:vegetation_percentage":69.004923,"s2:thin_cirrus_percentage":4.732712,"s2:cloud_shadow_percentage":0.28985,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.741132,"s2:not_vegetated_percentage":19.847569,"s2:degraded_msi_data_percentage":0.0189,"s2:high_proba_clouds_percentage":0.423821,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.602583,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951","bbox":[131.2005488,68.4035546,131.7341807,68.8957154],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R60m/T52WEB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R60m/T52WEB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R20m/T52WEB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/IMG_DATA/R10m/T52WEB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/GRANULE/L2A_T52WEB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.2005488,68.407332],[131.253871,68.4573715],[131.4049718,68.5968391],[131.5574948,68.7362757],[131.7116764,68.8755213],[131.7341807,68.8957154],[131.6733361,68.4035546],[131.2005488,68.407332]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEB_N05.11","eo:cloud_cover":2.489419,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":47.9173483017124,"s2:mean_solar_azimuth":171.790393089591,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.960938,"s2:thin_cirrus_percentage":2.489419,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":95.824677,"s2:unclassified_percentage":0.003894,"s2:not_vegetated_percentage":37.49553,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951","bbox":[130.2858757,67.5073771,131.6837049,68.4942905],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R60m/T52WEA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R60m/T52WEA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R20m/T52WEA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/IMG_DATA/R10m/T52WEA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,7490220.0,609780.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/GRANULE/L2A_T52WEA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/EA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WEA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[130.2858757,67.5175891],[130.3854935,67.6182942],[130.5247857,67.7586223],[130.6679007,67.8983912],[130.8118693,68.038218],[130.9577475,68.1779816],[131.1050539,68.317716],[131.253871,68.4573715],[131.2938695,68.4942905],[131.6837049,68.491174],[131.5720525,67.5073771],[130.2858757,67.5175891]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WEA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WEA_N05.11","eo:cloud_cover":44.600189,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WEA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.317938,"s2:mean_solar_zenith":47.0295225315839,"s2:mean_solar_azimuth":171.680458025836,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":47.277573,"s2:thin_cirrus_percentage":40.49665,"s2:cloud_shadow_percentage":0.390534,"s2:nodata_pixel_percentage":68.255192,"s2:unclassified_percentage":0.01643,"s2:not_vegetated_percentage":7.39556,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.938311,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.165226,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951","bbox":[128.6313048,65.7299121,129.2184871,66.3927877],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R60m/T52WDU_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R60m/T52WDU_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R20m/T52WDU_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/IMG_DATA/R10m/T52WDU_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7290240.0,509760.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/GRANULE/L2A_T52WDU_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDU_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.6313048,65.7299121],[128.6803133,65.7885544],[128.8051215,65.929389],[128.9306399,66.0703047],[129.0568185,66.2112587],[129.1820685,66.3526398],[129.2184871,66.3927877],[129.2128247,65.7336593],[128.6313048,65.7299121]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WDU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WDU_N05.11","eo:cloud_cover":87.409705,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WDU_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.016386,"s2:mean_solar_zenith":45.4096751438101,"s2:mean_solar_azimuth":168.577958033717,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.006044,"s2:vegetation_percentage":0.90118,"s2:thin_cirrus_percentage":1.310954,"s2:cloud_shadow_percentage":6.273145,"s2:nodata_pixel_percentage":92.204446,"s2:unclassified_percentage":1.957238,"s2:not_vegetated_percentage":3.422431,"s2:degraded_msi_data_percentage":0.0014,"s2:high_proba_clouds_percentage":70.731151,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.367594,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951","bbox":[127.8753205,64.8277285,129.2135496,65.8214035],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R60m/T52WDT_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R60m/T52WDT_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R20m/T52WDT_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/IMG_DATA/R10m/T52WDT_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7190220.0,509760.0,7300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/GRANULE/L2A_T52WDT_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDT_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.8753205,64.8277285],[127.9655371,64.9388521],[128.0824097,65.080645],[128.2006112,65.2223042],[128.3185328,65.3641777],[128.4419513,65.50498],[128.5616802,65.6466009],[128.6803133,65.7885544],[128.7065269,65.8181341],[129.2135496,65.8214035],[129.2057115,64.8362408],[127.8753205,64.8277285]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WDT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WDT_N05.11","eo:cloud_cover":92.608041,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WDT_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003467,"s2:mean_solar_zenith":44.5226742738124,"s2:mean_solar_azimuth":168.523026107826,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.003244,"s2:vegetation_percentage":2.630634,"s2:thin_cirrus_percentage":1.981442,"s2:cloud_shadow_percentage":0.228093,"s2:nodata_pixel_percentage":61.34249,"s2:unclassified_percentage":2.109787,"s2:not_vegetated_percentage":1.963161,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":80.711335,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.915261,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951","bbox":[127.1646008,63.925791,129.2063838,64.9239955],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R60m/T52WDS_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R60m/T52WDS_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R20m/T52WDS_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/IMG_DATA/R10m/T52WDS_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,7090200.0,509760.0,7200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/GRANULE/L2A_T52WDS_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/W/DS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52WDS_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.1646008,63.925791],[127.1790362,63.9448436],[127.2877065,64.0870749],[127.3983676,64.2290554],[127.5091714,64.3712024],[127.6227764,64.5129161],[127.7367608,64.6547273],[127.8502661,64.7968679],[127.9469287,64.9159314],[129.2063838,64.9239955],[129.1991056,63.9387126],[127.1646008,63.925791]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52WDS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52WDS_N05.11","eo:cloud_cover":39.816773,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52WDS_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.976928,"s2:mean_solar_zenith":43.6356587032227,"s2:mean_solar_azimuth":168.459967188638,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.053122,"s2:vegetation_percentage":42.942822,"s2:thin_cirrus_percentage":5.197151,"s2:cloud_shadow_percentage":1.370669,"s2:nodata_pixel_percentage":27.974859,"s2:unclassified_percentage":2.059083,"s2:not_vegetated_percentage":11.335365,"s2:degraded_msi_data_percentage":0.0083,"s2:high_proba_clouds_percentage":26.782978,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":7.836644,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951","bbox":[130.9763539,62.9899815,133.2862441,64.0127512],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R60m/T52VFR_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R60m/T52VFR_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R20m/T52VFR_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/IMG_DATA/R10m/T52VFR_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6990240.0,709800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/GRANULE/L2A_T52VFR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[133.2162377,63.4889035],[133.1303171,63.4019607],[132.994726,63.2638539],[132.8604581,63.1256284],[132.7301294,62.9899815],[130.9763539,63.0279443],[131.0456808,64.0127512],[133.2862441,63.9638363],[133.2162377,63.4889035]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFR_N05.11","eo:cloud_cover":10.351101,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.941527,"s2:mean_solar_zenith":42.4444820685437,"s2:mean_solar_azimuth":173.856552211937,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.02482,"s2:vegetation_percentage":84.155053,"s2:thin_cirrus_percentage":10.325257,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":4.998215,"s2:unclassified_percentage":0.317888,"s2:not_vegetated_percentage":2.000846,"s2:degraded_msi_data_percentage":0.0214,"s2:high_proba_clouds_percentage":0.000035,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.025809,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951","bbox":[130.9176451,62.1093539,132.8127904,63.1156693],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R60m/T52VFQ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R60m/T52VFQ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R20m/T52VFQ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/IMG_DATA/R10m/T52VFQ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/GRANULE/L2A_T52VFQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[132.8127904,63.0760156],[132.7275337,62.9872799],[132.5959738,62.8488806],[132.4656772,62.7103375],[132.3362041,62.5716607],[132.2074656,62.4328557],[132.0795897,62.2939248],[132.014806,62.2227676],[131.9519214,62.1538178],[131.9117885,62.1093539],[130.9176451,62.1307003],[130.9823142,63.1156693],[132.8127904,63.0760156]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFQ_N05.11","eo:cloud_cover":5.314786,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.061753,"s2:mean_solar_zenith":41.5550985030653,"s2:mean_solar_azimuth":173.69971435638,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":91.024876,"s2:thin_cirrus_percentage":5.117859,"s2:cloud_shadow_percentage":0.524357,"s2:nodata_pixel_percentage":34.316128,"s2:unclassified_percentage":0.436825,"s2:not_vegetated_percentage":0.565136,"s2:degraded_msi_data_percentage":0.0293,"s2:high_proba_clouds_percentage":0.036056,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.160871,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951","bbox":[130.8627658,61.2274397,131.9899516,62.2184397],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R60m/T52VFP_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R60m/T52VFP_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R20m/T52VFP_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/IMG_DATA/R10m/T52VFP_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/GRANULE/L2A_T52VFP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.9899516,62.1955161],[131.9519214,62.1538178],[131.8263048,62.0146449],[131.7734854,61.9555542],[131.7025895,61.8764038],[131.5792047,61.7370479],[131.4572377,61.5976178],[131.3361918,61.4581338],[131.2161762,61.3185757],[131.1384299,61.2274397],[130.8627658,61.2333094],[130.9232108,62.2184397],[131.9899516,62.1955161]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFP_N05.11","eo:cloud_cover":0.242587,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.536898,"s2:mean_solar_zenith":40.6655719220419,"s2:mean_solar_azimuth":173.54448998684,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":96.210164,"s2:thin_cirrus_percentage":0.000156,"s2:cloud_shadow_percentage":0.661625,"s2:nodata_pixel_percentage":68.093097,"s2:unclassified_percentage":0.582098,"s2:not_vegetated_percentage":0.597519,"s2:degraded_msi_data_percentage":0.0145,"s2:high_proba_clouds_percentage":0.039618,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.202812,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951","bbox":[130.8423379,60.8748244,131.2124947,61.3216015],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R60m/T52VFN_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R60m/T52VFN_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R20m/T52VFN_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/IMG_DATA/R10m/T52VFN_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/GRANULE/L2A_T52VFN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/FN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VFN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.2124947,61.3142602],[131.0970869,61.1789765],[130.9797062,61.0391954],[130.8627034,60.8993834],[130.8423379,60.8748244],[130.868005,61.3216015],[131.2124947,61.3142602]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VFN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VFN_N05.11","eo:cloud_cover":0.009899,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VFN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.141616,"s2:mean_solar_zenith":39.7764401618711,"s2:mean_solar_azimuth":173.39022892516,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.690014,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.003032,"s2:nodata_pixel_percentage":96.279573,"s2:unclassified_percentage":0.075267,"s2:not_vegetated_percentage":0.072146,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.000357,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.009542,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951","bbox":[128.9995907,63.0251146,131.2455715,64.0271539],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R60m/T52VER_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R60m/T52VER_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R20m/T52VER_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/IMG_DATA/R10m/T52VER_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6990240.0,609780.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/GRANULE/L2A_T52VER_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/ER/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VER_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9995907,64.0271539],[131.2455715,64.0097976],[131.1694829,63.0251146],[128.9996046,63.041742],[128.9995907,64.0271539]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VER","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VER_N05.11","eo:cloud_cover":4.716614,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VER_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":7.009887,"s2:mean_solar_zenith":42.5898323635958,"s2:mean_solar_azimuth":171.120065448574,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000189,"s2:vegetation_percentage":86.070371,"s2:thin_cirrus_percentage":4.71378,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.491173,"s2:not_vegetated_percentage":1.652437,"s2:degraded_msi_data_percentage":0.0047,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.002833,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951","bbox":[128.9996034,62.1279766,131.1760247,63.1295192],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R60m/T52VEQ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R60m/T52VEQ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R20m/T52VEQ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/IMG_DATA/R10m/T52VEQ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6890220.0,609780.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/GRANULE/L2A_T52VEQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9996034,63.1295192],[131.1760247,63.1128289],[131.1050472,62.1279766],[128.9996163,62.1439815],[128.9996034,63.1295192]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEQ_N05.11","eo:cloud_cover":4.926161,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":6.093029,"s2:mean_solar_zenith":41.7014131027106,"s2:mean_solar_azimuth":171.001607845712,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.765083,"s2:thin_cirrus_percentage":4.925355,"s2:cloud_shadow_percentage":0.000561,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.629424,"s2:not_vegetated_percentage":3.559852,"s2:degraded_msi_data_percentage":0.0033,"s2:high_proba_clouds_percentage":0.000013,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.000793,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951","bbox":[128.9996152,61.2306854,131.1111559,62.2317701],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R60m/T52VEP_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R60m/T52VEP_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R20m/T52VEP_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/IMG_DATA/R10m/T52VEP_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6790200.0,609780.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/GRANULE/L2A_T52VEP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.9996152,62.2317701],[131.1111559,62.2157059],[131.0448136,61.2306854],[128.9996273,61.2461037],[128.9996152,62.2317701]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEP_N05.11","eo:cloud_cover":0.008547,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":4.470636,"s2:mean_solar_zenith":40.8129259048393,"s2:mean_solar_azimuth":170.87977634975,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":92.479879,"s2:thin_cirrus_percentage":0.000282,"s2:cloud_shadow_percentage":0.037405,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.522623,"s2:not_vegetated_percentage":2.433456,"s2:degraded_msi_data_percentage":0.0185,"s2:high_proba_clouds_percentage":0.000899,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.007366,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951","bbox":[128.9996263,60.3381652,131.050564,61.3344425],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R60m/T52VEN_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R60m/T52VEN_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R20m/T52VEN_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/IMG_DATA/R10m/T52VEN_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/GRANULE/L2A_T52VEN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[131.0372417,61.1077108],[130.9797062,61.0391954],[130.8627034,60.8993834],[130.7465924,60.7593638],[130.6309458,60.619276],[130.575031,60.5508652],[130.5154066,60.4780474],[130.4017775,60.3381652],[128.9996376,60.3486448],[128.9996263,61.3344425],[131.050564,61.318968],[131.0372417,61.1077108]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEN_N05.11","eo:cloud_cover":0.068222,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.089501,"s2:mean_solar_zenith":39.9249157120179,"s2:mean_solar_azimuth":170.754112760966,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":99.534261,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.162721,"s2:nodata_pixel_percentage":11.716418,"s2:unclassified_percentage":0.056872,"s2:not_vegetated_percentage":0.084025,"s2:degraded_msi_data_percentage":0.0231,"s2:high_proba_clouds_percentage":0.008475,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.059747,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951","bbox":[128.9996366,59.4453304,130.4726708,60.4364568],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R60m/T52VEM_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R60m/T52VEM_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R20m/T52VEM_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/IMG_DATA/R10m/T52VEM_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/GRANULE/L2A_T52VEM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[130.4726708,60.4254378],[130.4014547,60.3377678],[130.2889588,60.197265],[130.2189943,60.109708],[130.1775702,60.0578764],[130.176963,60.0571081],[130.1767648,60.05686],[130.1755344,60.0553004],[130.0665401,59.9173806],[129.9561049,59.7769528],[129.8471001,59.6363193],[129.7393285,59.4955713],[129.7009413,59.4453304],[128.9996473,59.4505251],[128.9996366,60.4364568],[130.4726708,60.4254378]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEM_N05.11","eo:cloud_cover":34.67139,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.262607,"s2:mean_solar_zenith":39.0363297021797,"s2:mean_solar_azimuth":170.623913261053,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":64.85399,"s2:thin_cirrus_percentage":22.233857,"s2:cloud_shadow_percentage":0.013978,"s2:nodata_pixel_percentage":45.096695,"s2:unclassified_percentage":0.034989,"s2:not_vegetated_percentage":0.151711,"s2:degraded_msi_data_percentage":0.0303,"s2:high_proba_clouds_percentage":1.785089,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.652445,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951","bbox":[128.9996463,58.5520155,129.7677234,59.5383491],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R60m/T52VEL_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R60m/T52VEL_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R20m/T52VEL_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/IMG_DATA/R10m/T52VEL_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/GRANULE/L2A_T52VEL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.7677234,59.5326546],[129.7393285,59.4955713],[129.6318376,59.3548878],[129.5256621,59.2140441],[129.4200495,59.0730297],[129.3148762,58.9319202],[129.2100621,58.7908103],[129.1061322,58.6495909],[129.0358358,58.5520155],[128.9996563,58.5522811],[128.9996463,59.5383491],[129.7677234,59.5326546]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEL_N05.11","eo:cloud_cover":91.924906,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":38.1477121807761,"s2:mean_solar_azimuth":170.48875262019,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":7.422899,"s2:thin_cirrus_percentage":11.432301,"s2:cloud_shadow_percentage":0.642389,"s2:nodata_pixel_percentage":79.423267,"s2:unclassified_percentage":0.001322,"s2:not_vegetated_percentage":0.008481,"s2:degraded_msi_data_percentage":0.006,"s2:high_proba_clouds_percentage":17.982896,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":62.509716,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951","bbox":[128.9996555,58.5018767,129.0991687,58.6406562],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R60m/T52VEK_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R60m/T52VEK_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R20m/T52VEK_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/IMG_DATA/R10m/T52VEK_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/GRANULE/L2A_T52VEK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/EK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VEK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.0991687,58.6399252],[129.0041457,58.5080279],[128.9996568,58.5018767],[128.9996555,58.6406562],[129.0991687,58.6399252]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VEK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VEK_N05.11","eo:cloud_cover":100.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VEK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":37.2596152541718,"s2:mean_solar_azimuth":170.348076961828,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.012802,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.663079,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":59.963173,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":40.024027,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951","bbox":[126.977122,63.0279332,129.1997345,64.0270166],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R60m/T52VDR_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R60m/T52VDR_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R20m/T52VDR_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/IMG_DATA/R10m/T52VDR_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6990240.0,509760.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/GRANULE/L2A_T52VDR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.977122,63.6773387],[127.0712145,63.802535],[127.1790362,63.9448436],[127.2322652,64.0145115],[129.1997345,64.0270166],[129.1929602,63.0416105],[127.0228562,63.0279332],[126.977122,63.6773387]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDR_N05.11","eo:cloud_cover":0.046248,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":8.477577,"s2:mean_solar_zenith":42.7491680001305,"s2:mean_solar_azimuth":168.388860780674,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":88.414162,"s2:thin_cirrus_percentage":0.037266,"s2:cloud_shadow_percentage":0.033034,"s2:nodata_pixel_percentage":2.253692,"s2:unclassified_percentage":0.710184,"s2:not_vegetated_percentage":2.224082,"s2:degraded_msi_data_percentage":0.0206,"s2:high_proba_clouds_percentage":0.00058,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.008401,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951","bbox":[127.0168934,62.1306897,129.1935426,63.1293872],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R60m/T52VDQ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R60m/T52VDQ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R20m/T52VDQ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/IMG_DATA/R10m/T52VDQ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6890220.0,509760.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/GRANULE/L2A_T52VDQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0168934,63.1156582],[129.1935426,63.1293872],[129.1872239,62.143855],[127.0815883,62.1306897],[127.0168934,63.1156582]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDQ_N05.11","eo:cloud_cover":4.532895,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.381983,"s2:mean_solar_zenith":41.8621575784698,"s2:mean_solar_azimuth":168.309427119423,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.332455,"s2:thin_cirrus_percentage":0.932575,"s2:cloud_shadow_percentage":4.556654,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.507586,"s2:not_vegetated_percentage":6.684162,"s2:degraded_msi_data_percentage":0.0222,"s2:high_proba_clouds_percentage":1.081294,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.519026,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951","bbox":[127.0760204,61.2332992,129.1877677,62.231643],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R60m/T52VDP_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R60m/T52VDP_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R20m/T52VDP_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/IMG_DATA/R10m/T52VDP_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6790200.0,509760.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/GRANULE/L2A_T52VDP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.0760204,62.2184291],[129.1877677,62.231643],[129.1818621,61.2459818],[127.1364896,61.2332992],[127.0760204,62.2184291]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDP_N05.11","eo:cloud_cover":5.962572,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.812217,"s2:mean_solar_zenith":40.975169144676,"s2:mean_solar_azimuth":168.221622562471,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.394979,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":5.817081,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.569607,"s2:not_vegetated_percentage":1.407165,"s2:degraded_msi_data_percentage":0.016,"s2:high_proba_clouds_percentage":2.054761,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.907811,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951","bbox":[127.1312482,60.3363003,129.1823739,61.3343201],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R60m/T52VDN_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R60m/T52VDN_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R20m/T52VDN_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/IMG_DATA/R10m/T52VDN_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6690240.0,509760.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/GRANULE/L2A_T52VDN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.1312482,61.3215913],[129.1823739,61.3343201],[129.1768439,60.3485273],[127.1878754,60.3363003],[127.1312482,61.3215913]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDN_N05.11","eo:cloud_cover":0.321011,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.933388,"s2:mean_solar_zenith":40.0887563936172,"s2:mean_solar_azimuth":168.125212521695,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":95.36674,"s2:thin_cirrus_percentage":0.000272,"s2:cloud_shadow_percentage":0.706696,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.184877,"s2:not_vegetated_percentage":0.423277,"s2:degraded_msi_data_percentage":0.0017,"s2:high_proba_clouds_percentage":0.067886,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.252853,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951","bbox":[127.1829927,59.4386163,129.1773207,60.4363388],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R60m/T52VDM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R60m/T52VDM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R20m/T52VDM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/IMG_DATA/R10m/T52VDM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6590220.0,509760.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/GRANULE/L2A_T52VDM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.1829927,60.4240684],[129.1773207,60.4363388],[129.1721336,59.4504118],[127.236112,59.4386163],[127.1829927,60.4240684]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDM_N05.11","eo:cloud_cover":47.327846,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.029535,"s2:mean_solar_zenith":39.2018693815406,"s2:mean_solar_azimuth":168.019860507826,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":51.659262,"s2:thin_cirrus_percentage":16.004343,"s2:cloud_shadow_percentage":0.865906,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.025936,"s2:not_vegetated_percentage":0.089638,"s2:degraded_msi_data_percentage":0.0084,"s2:high_proba_clouds_percentage":12.341492,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.982011,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951","bbox":[127.2315279,58.5407855,129.1725812,59.5382354],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R60m/T52VDL_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R60m/T52VDL_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R20m/T52VDL_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/IMG_DATA/R10m/T52VDL_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/GRANULE/L2A_T52VDL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.1686087,58.7344837],[129.1061322,58.6495909],[129.0353728,58.5513728],[127.2814375,58.5407855],[127.2315279,59.5263988],[129.1725812,59.5382354],[129.1686087,58.7344837]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDL_N05.11","eo:cloud_cover":93.35587,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.016872,"s2:mean_solar_zenith":38.3150631080366,"s2:mean_solar_azimuth":167.905246417085,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":5.907575,"s2:thin_cirrus_percentage":26.277691,"s2:cloud_shadow_percentage":0.566101,"s2:nodata_pixel_percentage":0.694115,"s2:unclassified_percentage":0.058368,"s2:not_vegetated_percentage":0.094859,"s2:degraded_msi_data_percentage":0.028,"s2:high_proba_clouds_percentage":24.890532,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":42.187646,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951","bbox":[127.2771006,57.6433463,129.0993167,58.6401306],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R60m/T52VDK_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R60m/T52VDK_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R20m/T52VDK_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/IMG_DATA/R10m/T52VDK_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/GRANULE/L2A_T52VDK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[129.0993167,58.6401306],[129.0041457,58.5080279],[128.9655697,58.4551675],[128.9003554,58.3658761],[128.7965655,58.2250694],[128.7334728,58.1337096],[128.6989907,58.0840318],[128.5969669,57.9430622],[128.497614,57.8016144],[128.4011714,57.6596215],[128.3943184,57.6497449],[127.3240672,57.6433463],[127.2771006,58.6291209],[129.0993167,58.6401306]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDK_N05.11","eo:cloud_cover":99.998522,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":37.4288897872923,"s2:mean_solar_azimuth":167.781074358126,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":9e-6,"s2:thin_cirrus_percentage":1.261552,"s2:cloud_shadow_percentage":0.001149,"s2:nodata_pixel_percentage":22.927535,"s2:unclassified_percentage":0.000142,"s2:not_vegetated_percentage":0.000181,"s2:degraded_msi_data_percentage":0.0265,"s2:high_proba_clouds_percentage":75.842607,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":22.894354,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951","bbox":[127.3200079,56.7452211,128.4543698,57.7379458],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R60m/T52VDJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R60m/T52VDJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R20m/T52VDJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/IMG_DATA/R10m/T52VDJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/GRANULE/L2A_T52VDJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[128.4543698,57.7379458],[128.4011714,57.6596215],[128.3029818,57.518109],[128.2067018,57.3761853],[128.1100626,57.2343255],[128.0110463,57.0930677],[127.9190438,56.950263],[127.8253816,56.8079231],[127.7851523,56.7477124],[127.3642661,56.7452211],[127.3200079,57.7311575],[128.4543698,57.7379458]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDJ_N05.11","eo:cloud_cover":88.149291,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.006661,"s2:mean_solar_zenith":36.5423098098697,"s2:mean_solar_azimuth":167.646738291023,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.010077,"s2:vegetation_percentage":6.651367,"s2:thin_cirrus_percentage":9.607031,"s2:cloud_shadow_percentage":2.944999,"s2:nodata_pixel_percentage":57.660306,"s2:unclassified_percentage":0.658542,"s2:not_vegetated_percentage":1.438749,"s2:degraded_msi_data_percentage":0.0314,"s2:high_proba_clouds_percentage":44.659731,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":33.882529,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951","bbox":[127.3604383,56.1382728,127.8437979,56.8359107],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R60m/T52VDH_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R60m/T52VDH_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R20m/T52VDH_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/IMG_DATA/R10m/T52VDH_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/GRANULE/L2A_T52VDH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/DH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VDH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.8437979,56.8359107],[127.8253816,56.8079231],[127.7844507,56.7466624],[127.7298105,56.6651172],[127.6636084,56.5627038],[127.6382617,56.5235954],[127.5710385,56.4205765],[127.5448612,56.3805035],[127.4530232,56.238231],[127.4230386,56.1907083],[127.3898619,56.1382728],[127.3604383,56.8330467],[127.8437979,56.8359107]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VDH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VDH_N05.11","eo:cloud_cover":99.999857,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VDH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":35.6558828244402,"s2:mean_solar_azimuth":167.501766686448,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.686651,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":90.70968,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000143,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":80.570889,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":18.742315,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951","bbox":[126.4913407,63.0157988,127.2172106,63.9206225],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R60m/T52VCR_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R60m/T52VCR_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R20m/T52VCR_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/IMG_DATA/R10m/T52VCR_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6990240.0,409800.0,7100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/GRANULE/L2A_T52VCR_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCR_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.4913407,63.0157988],[126.5442443,63.0895601],[126.5914974,63.1545953],[126.6477818,63.2318841],[126.7522213,63.3745676],[126.7741412,63.4043398],[126.8578044,63.5175778],[126.9641677,63.6601022],[127.0712145,63.802535],[127.1606848,63.9206225],[127.2172106,63.0305154],[126.4913407,63.0157988]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCR_N05.11","eo:cloud_cover":0.115362,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCR_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.82724,"s2:mean_solar_zenith":42.9221743799511,"s2:mean_solar_azimuth":165.669840361009,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":96.303809,"s2:thin_cirrus_percentage":0.00009,"s2:cloud_shadow_percentage":0.260315,"s2:nodata_pixel_percentage":85.300654,"s2:unclassified_percentage":0.439103,"s2:not_vegetated_percentage":1.004424,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.013791,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.101481,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951","bbox":[125.8574215,62.1047625,127.2701768,63.1182501],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R60m/T52VCQ_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R60m/T52VCQ_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R20m/T52VCQ_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/IMG_DATA/R10m/T52VCQ_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6890220.0,409800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/GRANULE/L2A_T52VCQ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCQ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.8574215,62.1047625],[125.9440647,62.232065],[126.041841,62.3750828],[126.1404532,62.5180708],[126.2399976,62.661007],[126.340658,62.8038308],[126.4418096,62.9467397],[126.5442443,63.0895601],[126.5554127,63.1049313],[127.2118332,63.1182501],[127.2701768,62.1331753],[125.8574215,62.1047625]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCQ_N05.11","eo:cloud_cover":5.341376,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCQ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.304834,"s2:mean_solar_zenith":42.0370052606386,"s2:mean_solar_azimuth":165.629689768671,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":82.501113,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":7.249346,"s2:nodata_pixel_percentage":51.830238,"s2:unclassified_percentage":0.722848,"s2:not_vegetated_percentage":3.875196,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.534252,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.807124,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951","bbox":[125.2743035,61.1949732,127.3196877,62.2209238],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R60m/T52VCP_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R60m/T52VCP_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R20m/T52VCP_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/IMG_DATA/R10m/T52VCP_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6790200.0,409800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/GRANULE/L2A_T52VCP_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCP_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.2743035,61.2246888],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3699042,61.3723446],[125.4636208,61.5157764],[125.5065532,61.5809699],[125.5583435,61.6594893],[125.654055,61.8027201],[125.749814,61.9460176],[125.8467433,62.0890734],[125.9180275,62.1938091],[127.2651556,62.2209238],[127.3196877,61.2356936],[125.2779445,61.1949732],[125.2743035,61.2246888]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCP_N05.11","eo:cloud_cover":0.771749,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCP_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.248412,"s2:mean_solar_zenith":41.1519640110838,"s2:mean_solar_azimuth":165.576204350518,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.241757,"s2:thin_cirrus_percentage":0.030352,"s2:cloud_shadow_percentage":0.985723,"s2:nodata_pixel_percentage":17.972867,"s2:unclassified_percentage":0.266751,"s2:not_vegetated_percentage":4.414283,"s2:degraded_msi_data_percentage":0.0132,"s2:high_proba_clouds_percentage":0.193152,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.548245,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951","bbox":[125.2742181,60.2993491,127.3660277,61.3239944],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R60m/T52VCN_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R60m/T52VCN_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R20m/T52VCN_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/IMG_DATA/R10m/T52VCN_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6690240.0,409800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/GRANULE/L2A_T52VCN_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCN_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.2742181,61.2245552],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3127039,61.284028],[127.314961,61.3239944],[127.3660277,60.3386088],[125.3803718,60.2993491],[125.2742181,61.2245552]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCN_N05.11","eo:cloud_cover":5.284181,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCN_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.514631,"s2:mean_solar_zenith":40.2676107637875,"s2:mean_solar_azimuth":165.509433344206,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":88.531071,"s2:thin_cirrus_percentage":2.980587,"s2:cloud_shadow_percentage":2.747851,"s2:nodata_pixel_percentage":0.092269,"s2:unclassified_percentage":0.387848,"s2:not_vegetated_percentage":0.435736,"s2:degraded_msi_data_percentage":0.0223,"s2:high_proba_clouds_percentage":0.849839,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.453755,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951","bbox":[125.3706384,59.4029675,127.4095273,60.426385],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R60m/T52VCM_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R60m/T52VCM_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R20m/T52VCM_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/IMG_DATA/R10m/T52VCM_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6590220.0,409800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/GRANULE/L2A_T52VCM_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCM_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.3706384,60.386986],[127.3616245,60.426385],[127.4095273,59.4408433],[125.4765375,59.4029675],[125.3706384,60.386986]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCM_N05.11","eo:cloud_cover":54.562652,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCM_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000969,"s2:mean_solar_zenith":39.3829023138874,"s2:mean_solar_azimuth":165.429353133968,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":42.078218,"s2:thin_cirrus_percentage":17.758116,"s2:cloud_shadow_percentage":2.886878,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.211021,"s2:not_vegetated_percentage":0.2563,"s2:degraded_msi_data_percentage":0.0222,"s2:high_proba_clouds_percentage":15.312667,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.49187,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951","bbox":[125.467398,58.506372,127.4504014,59.5286335],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R60m/T52VCL_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R60m/T52VCL_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R20m/T52VCL_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/IMG_DATA/R10m/T52VCL_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/GRANULE/L2A_T52VCL_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCL_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.467398,59.4906256],[127.4053934,59.5286335],[127.4504014,58.5429352],[125.5669133,58.506372],[125.467398,59.4906256]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCL_N05.11","eo:cloud_cover":76.46718,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCL_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.084867,"s2:mean_solar_zenith":38.4984031318894,"s2:mean_solar_azimuth":165.335805493598,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001311,"s2:vegetation_percentage":18.992594,"s2:thin_cirrus_percentage":18.077123,"s2:cloud_shadow_percentage":1.707032,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.10983,"s2:not_vegetated_percentage":1.617009,"s2:degraded_msi_data_percentage":0.1382,"s2:high_proba_clouds_percentage":21.402517,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":36.987537,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951","bbox":[125.5582651,57.6101061,127.488844,58.6312781],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R60m/T52VCK_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R60m/T52VCK_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R20m/T52VCK_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/IMG_DATA/R10m/T52VCK_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/GRANULE/L2A_T52VCK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.5582651,58.5945887],[127.4464903,58.6312781],[127.488844,57.6454227],[125.6519254,57.6101061],[125.5582651,58.5945887]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCK_N05.11","eo:cloud_cover":85.446417,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003105,"s2:mean_solar_zenith":37.6146677210644,"s2:mean_solar_azimuth":165.228708429987,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00145,"s2:vegetation_percentage":8.690373,"s2:thin_cirrus_percentage":9.627593,"s2:cloud_shadow_percentage":3.039114,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.310062,"s2:not_vegetated_percentage":1.484424,"s2:degraded_msi_data_percentage":0.0157,"s2:high_proba_clouds_percentage":40.221915,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":35.59691,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951","bbox":[125.6438299,56.7130985,127.5250943,57.7332409],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R60m/T52VCJ_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R60m/T52VCJ_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R20m/T52VCJ_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/IMG_DATA/R10m/T52VCJ_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/GRANULE/L2A_T52VCJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.6438299,57.6978051],[127.4851834,57.7332409],[127.5250943,56.7472276],[125.7321002,56.7130985],[125.6438299,57.6978051]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCJ_N05.11","eo:cloud_cover":97.759056,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.001977,"s2:mean_solar_zenith":36.7306734519704,"s2:mean_solar_azimuth":165.107555251711,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000153,"s2:vegetation_percentage":0.413011,"s2:thin_cirrus_percentage":4.231559,"s2:cloud_shadow_percentage":1.778043,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.022478,"s2:not_vegetated_percentage":0.022658,"s2:degraded_msi_data_percentage":0.0206,"s2:high_proba_clouds_percentage":46.142748,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":47.384754,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951","bbox":[125.7244654,55.8158913,127.5393279,56.8350599],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R60m/T52VCH_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R60m/T52VCH_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R20m/T52VCH_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/IMG_DATA/R10m/T52VCH_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/GRANULE/L2A_T52VCH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/V/CH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52VCH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.5393279,56.3719315],[127.4530232,56.238231],[127.4230386,56.1907083],[127.3635027,56.0966123],[127.2728758,55.9543032],[127.2018322,55.8421537],[125.8077653,55.8158913],[125.7244654,56.8008172],[127.5216425,56.8350599],[127.5393279,56.3719315]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52VCH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52VCH_N05.11","eo:cloud_cover":99.637979,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52VCH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":35.8469826643837,"s2:mean_solar_azimuth":164.972040568133,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.049283,"s2:thin_cirrus_percentage":3.240846,"s2:cloud_shadow_percentage":0.29987,"s2:nodata_pixel_percentage":5.534351,"s2:unclassified_percentage":0.01263,"s2:not_vegetated_percentage":0.000239,"s2:degraded_msi_data_percentage":0.0267,"s2:high_proba_clouds_percentage":38.787299,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":57.609838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951","bbox":[125.8005114,54.9190265,127.258534,55.9316633],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R60m/T52UCG_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R60m/T52UCG_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R20m/T52UCG_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/IMG_DATA/R10m/T52UCG_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/GRANULE/L2A_T52UCG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[127.258534,55.9316633],[127.1827045,55.8119586],[127.0940249,55.6692617],[127.0057939,55.5265009],[126.917857,55.3837001],[126.8299533,55.2409646],[126.74296,55.0980927],[126.6564661,54.9552042],[126.6432996,54.9332676],[125.8792201,54.9190265],[125.8005114,55.9041676],[127.258534,55.9316633]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52UCG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52UCG_N05.11","eo:cloud_cover":98.357725,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52UCG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":34.9641683856508,"s2:mean_solar_azimuth":164.821706661523,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.787698,"s2:thin_cirrus_percentage":5.856419,"s2:cloud_shadow_percentage":0.69695,"s2:nodata_pixel_percentage":36.292416,"s2:unclassified_percentage":0.155951,"s2:not_vegetated_percentage":0.001677,"s2:degraded_msi_data_percentage":0.0297,"s2:high_proba_clouds_percentage":51.1594,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.34191,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951","bbox":[125.872404,54.0214307,126.6970015,55.0221689],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R60m/T52UCF_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R60m/T52UCF_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R20m/T52UCF_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/IMG_DATA/R10m/T52UCF_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/GRANULE/L2A_T52UCF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.6970015,55.0221689],[126.6564661,54.9552042],[126.5706774,54.8122726],[126.4853614,54.6693457],[126.4006598,54.5263376],[126.3157278,54.3834622],[126.2320757,54.2404286],[126.1492445,54.0972465],[126.1076334,54.0243943],[125.9468576,54.0214307],[125.872404,55.0067836],[126.6970015,55.0221689]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52UCF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52UCF_N05.11","eo:cloud_cover":99.999827,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52UCF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":34.0812138922962,"s2:mean_solar_azimuth":164.655760015323,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.312156,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":71.359682,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.000174,"s2:degraded_msi_data_percentage":0.0129,"s2:high_proba_clouds_percentage":78.24527,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.442401,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951","bbox":[125.9404063,53.7745817,126.1584915,54.1132308],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R60m/T52UCE_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R60m/T52UCE_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R20m/T52UCE_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/IMG_DATA/R10m/T52UCE_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/GRANULE/L2A_T52UCE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/52/U/CE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T52UCE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.1584915,54.1132308],[126.1492445,54.0972465],[126.0673388,53.9538472],[125.9848749,53.8105611],[125.9643445,53.7745817],[125.9404063,54.1092064],[126.1584915,54.1132308]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32652,"instruments":["msi"],"s2:mgrs_tile":"52UCE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T52UCE_N05.11","eo:cloud_cover":96.291208,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T52UCE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003274,"s2:mean_solar_zenith":33.1987005853998,"s2:mean_solar_azimuth":164.473521748612,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":3.364669,"s2:thin_cirrus_percentage":8.658732,"s2:cloud_shadow_percentage":0.058003,"s2:nodata_pixel_percentage":97.872138,"s2:unclassified_percentage":0.276452,"s2:not_vegetated_percentage":0.006393,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":61.876446,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.756034,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951","bbox":[125.8612845,62.0855865,127.1538391,63.0819513],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R60m/T51VXK_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R60m/T51VXK_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R20m/T51VXK_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/IMG_DATA/R10m/T51VXK_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6890220.0,709800.0,7000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/GRANULE/L2A_T51VXK_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXK_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.8612845,62.1104383],[125.9440647,62.232065],[126.041841,62.3750828],[126.1404532,62.5180708],[126.2399976,62.661007],[126.340658,62.8038308],[126.4418096,62.9467397],[126.5387871,63.0819513],[127.1538391,63.0686274],[127.0186771,62.0855865],[125.8612845,62.1104383]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXK_N05.11","eo:cloud_cover":4.719193,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXK_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.263164,"s2:mean_solar_zenith":42.0506712037409,"s2:mean_solar_azimuth":165.417113163303,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":83.87838,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":6.934454,"s2:nodata_pixel_percentage":58.767182,"s2:unclassified_percentage":0.555618,"s2:not_vegetated_percentage":3.645528,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.320873,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.39832,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951","bbox":[125.2742138,61.1898465,127.0303111,62.1970148],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R60m/T51VXJ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R60m/T51VXJ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R20m/T51VXJ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/IMG_DATA/R10m/T51VXJ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6790200.0,709800.0,6900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/GRANULE/L2A_T51VXJ_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXJ_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.2742138,61.2245484],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3699042,61.3723446],[125.4636208,61.5157764],[125.5065532,61.5809699],[125.5583435,61.6594893],[125.654055,61.8027201],[125.749814,61.9460176],[125.8467433,62.0890734],[125.9202093,62.1970148],[127.0303111,62.1731593],[126.903949,61.1898465],[125.2742138,61.2245484]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXJ_N05.11","eo:cloud_cover":0.22014,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXJ_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.302835,"s2:mean_solar_zenith":41.1867835009883,"s2:mean_solar_azimuth":165.122628454948,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":93.371725,"s2:thin_cirrus_percentage":0.028434,"s2:cloud_shadow_percentage":0.398179,"s2:nodata_pixel_percentage":34.213015,"s2:unclassified_percentage":0.265908,"s2:not_vegetated_percentage":5.351976,"s2:degraded_msi_data_percentage":0.0064,"s2:high_proba_clouds_percentage":0.036045,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.155662,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951","bbox":[124.8114005,60.2944061,126.914903,61.3117421],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R60m/T51VXH_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R60m/T51VXH_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R20m/T51VXH_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/IMG_DATA/R10m/T51VXH_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6690240.0,709800.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/GRANULE/L2A_T51VXH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.8210903,60.5049769],[124.8249807,60.5113176],[124.9138654,60.6549626],[125.0032327,60.7986453],[125.0941823,60.9421125],[125.1853742,61.0856306],[125.2761811,61.2276248],[125.2769677,61.228852],[125.3306535,61.3117421],[126.914903,61.2779804],[126.7965453,60.2944061],[124.8114005,60.3363102],[124.8210903,60.5049769]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXH_N05.11","eo:cloud_cover":7.542037,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":2.279637,"s2:mean_solar_zenith":40.3238955866215,"s2:mean_solar_azimuth":164.822379623298,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":84.434909,"s2:thin_cirrus_percentage":3.581131,"s2:cloud_shadow_percentage":4.534865,"s2:nodata_pixel_percentage":9.713614,"s2:unclassified_percentage":0.522446,"s2:not_vegetated_percentage":0.597518,"s2:degraded_msi_data_percentage":0.0176,"s2:high_proba_clouds_percentage":1.54485,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.416056,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951","bbox":[124.7631831,59.3981984,126.8067517,60.4240783],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R60m/T51VXG_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R60m/T51VXG_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R20m/T51VXG_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/IMG_DATA/R10m/T51VXG_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6590220.0,709800.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/GRANULE/L2A_T51VXG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.8162812,60.4240783],[126.8067517,60.3820254],[126.6957051,59.3981984],[124.7631831,59.4386259],[124.8162812,60.4240783]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXG_N05.11","eo:cloud_cover":57.89808,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000305,"s2:mean_solar_zenith":39.4610213628829,"s2:mean_solar_azimuth":164.514884494607,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.59192,"s2:thin_cirrus_percentage":17.715505,"s2:cloud_shadow_percentage":4.72235,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.428356,"s2:not_vegetated_percentage":0.355357,"s2:degraded_msi_data_percentage":0.0216,"s2:high_proba_clouds_percentage":14.115481,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":26.067099,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951","bbox":[124.7178757,58.5017681,126.705289,59.5264083],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R60m/T51VXF_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R60m/T51VXF_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R20m/T51VXF_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/IMG_DATA/R10m/T51VXF_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6490200.0,709800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/GRANULE/L2A_T51VXF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.7677654,59.5264083],[126.705289,59.48584],[126.6009344,58.5017681],[124.7178757,58.5407947],[124.7677654,59.5264083]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXF_N05.11","eo:cloud_cover":84.907711,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.051762,"s2:mean_solar_zenith":38.5987462846354,"s2:mean_solar_azimuth":164.199051968167,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.00133,"s2:vegetation_percentage":10.837167,"s2:thin_cirrus_percentage":10.934602,"s2:cloud_shadow_percentage":1.625469,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.823939,"s2:not_vegetated_percentage":1.739268,"s2:degraded_msi_data_percentage":0.1559,"s2:high_proba_clouds_percentage":30.019575,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":43.953529,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951","bbox":[124.675263,57.605659,126.6100032,58.6291301],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R60m/T51VXE_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R60m/T51VXE_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R20m/T51VXE_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/IMG_DATA/R10m/T51VXE_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/GRANULE/L2A_T51VXE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.7222109,58.6291301],[126.6100032,58.5899689],[126.5117866,57.605659],[124.675263,57.6433552],[124.7222109,58.6291301]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXE_N05.11","eo:cloud_cover":83.065593,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003457,"s2:mean_solar_zenith":37.737647148645,"s2:mean_solar_azimuth":163.873932455555,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001311,"s2:vegetation_percentage":9.472118,"s2:thin_cirrus_percentage":10.507391,"s2:cloud_shadow_percentage":3.265965,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.934967,"s2:not_vegetated_percentage":2.231472,"s2:degraded_msi_data_percentage":0.0231,"s2:high_proba_clouds_percentage":44.325012,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.233185,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951","bbox":[124.6350802,56.7088008,126.520276,57.7311664],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R60m/T51VXD_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R60m/T51VXD_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R20m/T51VXD_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/IMG_DATA/R10m/T51VXD_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/GRANULE/L2A_T51VXD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6793207,57.7311664],[126.520276,57.6933429],[126.4277099,56.7088008],[124.6350802,56.7452297],[124.6793207,57.7311664]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXD_N05.11","eo:cloud_cover":86.153275,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.045823,"s2:mean_solar_zenith":36.8767690687929,"s2:mean_solar_azimuth":163.537818213253,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000046,"s2:vegetation_percentage":8.697088,"s2:thin_cirrus_percentage":8.987717,"s2:cloud_shadow_percentage":2.873391,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.415002,"s2:not_vegetated_percentage":0.781066,"s2:degraded_msi_data_percentage":0.0258,"s2:high_proba_clouds_percentage":51.484102,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.681457,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951","bbox":[124.5971619,55.811736,126.4357163,56.8330553],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R60m/T51VXC_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R60m/T51VXC_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R20m/T51VXC_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/IMG_DATA/R10m/T51VXC_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/GRANULE/L2A_T51VXC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/XC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VXC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6389064,56.8330553],[126.4357163,56.7965052],[126.3483613,55.811736],[124.5971619,55.8469564],[124.6389064,56.8330553]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VXC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VXC_N05.11","eo:cloud_cover":80.37315,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VXC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.040378,"s2:mean_solar_zenith":36.0167025115408,"s2:mean_solar_azimuth":163.189664865841,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001802,"s2:vegetation_percentage":13.058314,"s2:thin_cirrus_percentage":9.831335,"s2:cloud_shadow_percentage":5.830083,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.345865,"s2:not_vegetated_percentage":0.336887,"s2:degraded_msi_data_percentage":0.2077,"s2:high_proba_clouds_percentage":28.778237,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.763577,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951","bbox":[124.7173583,60.3337804,125.0193553,60.8240776],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R60m/T51VWH_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R60m/T51VWH_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R20m/T51VWH_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/IMG_DATA/R10m/T51VWH_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6690240.0,609780.0,6800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/GRANULE/L2A_T51VWH_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWH_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.7173583,60.3358065],[124.7368049,60.3676069],[124.8249807,60.5113176],[124.9138654,60.6549626],[125.0032327,60.7986453],[125.0193553,60.8240776],[124.9884362,60.3337804],[124.7173583,60.3358065]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWH_N05.11","eo:cloud_cover":2.231455,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWH_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.123831,"s2:mean_solar_zenith":40.6013483995389,"s2:mean_solar_azimuth":162.238556121133,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":94.158405,"s2:thin_cirrus_percentage":1.469386,"s2:cloud_shadow_percentage":1.166013,"s2:nodata_pixel_percentage":96.806538,"s2:unclassified_percentage":0.425865,"s2:not_vegetated_percentage":0.821289,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.140466,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.621603,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951","bbox":[124.1812178,59.4361854,124.9937932,60.4232067],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R60m/T51VWG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R60m/T51VWG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R20m/T51VWG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/IMG_DATA/R10m/T51VWG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6590220.0,609780.0,6700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/GRANULE/L2A_T51VWG_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWG_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.1812178,59.4417727],[124.2178591,59.5041056],[124.3024279,59.6482388],[124.3884266,59.7921383],[124.4747037,59.9360939],[124.5615303,60.0800233],[124.6489053,60.2238678],[124.7368049,60.3676069],[124.770919,60.4232067],[124.9937932,60.4215395],[124.9355133,59.4361854],[124.1812178,59.4417727]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWG_N05.11","eo:cloud_cover":55.649191,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWG_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":39.7418448623104,"s2:mean_solar_azimuth":161.959303472834,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.038169,"s2:thin_cirrus_percentage":22.523712,"s2:cloud_shadow_percentage":7.36936,"s2:nodata_pixel_percentage":75.410157,"s2:unclassified_percentage":0.573913,"s2:not_vegetated_percentage":0.368027,"s2:degraded_msi_data_percentage":0.0011,"s2:high_proba_clouds_percentage":10.974427,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":22.151056,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951","bbox":[123.6714801,58.5384388,124.9405427,59.5292081],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R60m/T51VWF_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R60m/T51VWF_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R20m/T51VWF_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/IMG_DATA/R10m/T51VWF_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/GRANULE/L2A_T51VWF_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWF_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.6714801,58.5473506],[123.722775,58.639394],[123.8039467,58.7835312],[123.8853601,58.9276965],[123.9666585,59.0720401],[124.0498987,59.2160415],[124.1332296,59.3601371],[124.2178591,59.5041056],[124.2325877,59.5292081],[124.9405427,59.5239593],[124.8857837,58.5384388],[123.6714801,58.5473506]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWF_N05.11","eo:cloud_cover":81.033099,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWF_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.043118,"s2:mean_solar_zenith":38.8831309879419,"s2:mean_solar_azimuth":161.667799182135,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":10.345491,"s2:thin_cirrus_percentage":16.57799,"s2:cloud_shadow_percentage":4.357751,"s2:nodata_pixel_percentage":50.038314,"s2:unclassified_percentage":2.540173,"s2:not_vegetated_percentage":1.678819,"s2:degraded_msi_data_percentage":0.005,"s2:high_proba_clouds_percentage":37.707323,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":26.747787,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951","bbox":[123.1828317,57.6410797,124.8905421,58.6353608],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R60m/T51VWE_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R60m/T51VWE_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R20m/T51VWE_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/IMG_DATA/R10m/T51VWE_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/GRANULE/L2A_T51VWE_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWE_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.1828317,57.6531181],[123.2468288,57.7728426],[123.3244985,57.9174652],[123.4033861,58.0619148],[123.481966,58.2065113],[123.5622705,58.3507675],[123.6423679,58.4951117],[123.7205273,58.6353608],[124.8905421,58.6267661],[124.8390116,57.6410797],[123.1828317,57.6531181]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWE_N05.11","eo:cloud_cover":99.754447,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWE_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":38.0257934249818,"s2:mean_solar_azimuth":161.363270080768,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":1.372901,"s2:cloud_shadow_percentage":0.24555,"s2:nodata_pixel_percentage":24.488933,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0105,"s2:high_proba_clouds_percentage":72.708732,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.672811,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951","bbox":[122.999668,56.7430308,124.8434653,57.7406252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R60m/T51VWD_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R60m/T51VWD_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R20m/T51VWD_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/IMG_DATA/R10m/T51VWD_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/GRANULE/L2A_T51VWD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.999668,57.3064169],[123.0167676,57.3389609],[123.0928648,57.4836288],[123.1695307,57.6282349],[123.2296074,57.7406252],[124.8434653,57.7288832],[124.794906,56.7430308],[122.9996729,56.7559505],[122.999668,57.3064169]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWD_N05.11","eo:cloud_cover":96.187341,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.002037,"s2:mean_solar_zenith":37.1688958453377,"s2:mean_solar_azimuth":161.04420339059,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":2.456396,"s2:thin_cirrus_percentage":3.343562,"s2:cloud_shadow_percentage":0.507342,"s2:nodata_pixel_percentage":2.935342,"s2:unclassified_percentage":0.74617,"s2:not_vegetated_percentage":0.086305,"s2:degraded_msi_data_percentage":0.0291,"s2:high_proba_clouds_percentage":51.66654,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":41.177237,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951","bbox":[122.9996721,55.8448305,124.7991059,56.8438118],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R60m/T51VWC_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R60m/T51VWC_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R20m/T51VWC_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/IMG_DATA/R10m/T51VWC_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/GRANULE/L2A_T51VWC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/WC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VWC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.9996721,56.8438118],[124.7991059,56.8308491],[124.7532859,55.8448305],[122.9996805,55.8573211],[122.9996721,56.8438118]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VWC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VWC_N05.11","eo:cloud_cover":61.630154,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VWC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.030153,"s2:mean_solar_zenith":36.3130386398673,"s2:mean_solar_azimuth":160.709692363544,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.016443,"s2:vegetation_percentage":24.218497,"s2:thin_cirrus_percentage":7.01362,"s2:cloud_shadow_percentage":11.141433,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.582566,"s2:not_vegetated_percentage":2.323748,"s2:degraded_msi_data_percentage":0.1589,"s2:high_proba_clouds_percentage":29.178974,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":25.437561,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951","bbox":[122.7126308,56.7532025,123.1633916,57.6166554],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R60m/T51VVD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R60m/T51VVD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R20m/T51VVD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/IMG_DATA/R10m/T51VVD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/GRANULE/L2A_T51VVD_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVD_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.7126308,56.7532025],[122.7162521,56.7604165],[122.790841,56.9050909],[122.8653564,57.0498061],[122.9408001,57.1943794],[123.0167676,57.3389609],[123.0928648,57.4836288],[123.1633916,57.6166554],[123.1596203,56.7558483],[122.7126308,56.7532025]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VVD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VVD_N05.11","eo:cloud_cover":92.885494,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VVD_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.011394,"s2:mean_solar_zenith":37.4767638724535,"s2:mean_solar_azimuth":158.568712849072,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":3.241396,"s2:thin_cirrus_percentage":14.323263,"s2:cloud_shadow_percentage":0.650767,"s2:nodata_pixel_percentage":89.516771,"s2:unclassified_percentage":0.875791,"s2:not_vegetated_percentage":2.301516,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":49.858767,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.703463,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951","bbox":[122.2595518,55.851971,123.159994,56.8437093],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R60m/T51VVC_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R60m/T51VVC_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R20m/T51VVC_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/IMG_DATA/R10m/T51VVC_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/GRANULE/L2A_T51VVC_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/V/VC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51VVC_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.2595518,55.851971],[122.2790468,55.8910374],[122.3491953,56.0363776],[122.4226852,56.1810109],[122.4957057,56.325857],[122.5695814,56.4705657],[122.6434336,56.6153529],[122.7162521,56.7604165],[122.7579667,56.8413273],[123.159994,56.8437093],[123.1559167,55.8572224],[122.2595518,55.851971]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51VVC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51VVC_N05.11","eo:cloud_cover":98.473299,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51VVC_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000751,"s2:mean_solar_zenith":36.6255546904771,"s2:mean_solar_azimuth":158.249173729644,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.333282,"s2:thin_cirrus_percentage":2.277825,"s2:cloud_shadow_percentage":1.097256,"s2:nodata_pixel_percentage":63.752663,"s2:unclassified_percentage":0.074426,"s2:not_vegetated_percentage":0.018966,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":21.215393,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":74.98008,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951","bbox":[126.045107,53.9152179,126.1543823,54.109222],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R60m/T51UYV_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R60m/T51UYV_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R20m/T51UYV_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/IMG_DATA/R10m/T51UYV_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/GRANULE/L2A_T51UYV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/YV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UYV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[126.1543823,54.1061278],[126.1492445,54.0972465],[126.0673388,53.9538472],[126.045107,53.9152179],[126.0589827,54.109222],[126.1543823,54.1061278]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UYV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UYV_N05.11","eo:cloud_cover":99.981284,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UYV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":33.1506421165131,"s2:mean_solar_azimuth":164.537132209352,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000645,"s2:thin_cirrus_percentage":0.393647,"s2:cloud_shadow_percentage":0.001291,"s2:nodata_pixel_percentage":99.485868,"s2:unclassified_percentage":0.008389,"s2:not_vegetated_percentage":0.008389,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":93.898463,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":5.689174,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736","bbox":[124.4953796,53.1302708,125.8664881,53.8933641],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R60m/T51UXV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R60m/T51UXV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R20m/T51UXV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/IMG_DATA/R10m/T51UXV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.4884241,53.6901522],[125.4885654,53.6904054],[125.4891078,53.6902887],[125.4894449,53.6908929],[125.5039535,53.6874959],[125.503751,53.687133],[125.6506011,53.6531602],[125.8664881,53.6026128],[125.7859926,53.4606453],[125.7054103,53.3171489],[125.6253696,53.1736377],[125.6012551,53.1302708],[124.4953796,53.1517855],[124.5219295,53.8933641],[124.7816897,53.8417288],[124.7817719,53.8418812],[124.7821093,53.8418142],[124.7824295,53.8424074],[124.9417879,53.8085628],[125.1531166,53.7635297],[125.1531058,53.76351],[125.1535946,53.7634037],[125.1534731,53.7631817],[125.1537243,53.7631272],[125.1537101,53.7631014],[125.1540333,53.7630313],[125.1539083,53.762803],[125.1539368,53.7627968],[125.1536511,53.7622749],[125.4884241,53.6901522]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UXV_N05.11","eo:cloud_cover":57.297868,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.051528,"s2:mean_solar_zenith":33.4428233592958,"s2:mean_solar_azimuth":162.058972933642,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":38.879889,"s2:thin_cirrus_percentage":21.175461,"s2:cloud_shadow_percentage":1.375699,"s2:nodata_pixel_percentage":52.880234,"s2:unclassified_percentage":0.661029,"s2:not_vegetated_percentage":1.733291,"s2:degraded_msi_data_percentage":0.0264,"s2:high_proba_clouds_percentage":18.629491,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":17.492916,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951","bbox":[124.5154737,53.4389177,126.15453,54.1383733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R60m/T51UXV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R60m/T51UXV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R20m/T51UXV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/IMG_DATA/R10m/T51UXV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/GRANULE/L2A_T51UXV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.5141266,53.4995389],[125.4119279,53.5234491],[125.4118286,53.523271],[125.4117048,53.5233],[125.4115105,53.5229515],[125.3948381,53.5265454],[125.3950925,53.5270036],[125.0625067,53.5992397],[125.0624721,53.5991765],[125.0382765,53.6042932],[125.0382994,53.6043352],[125.038216,53.6043529],[125.0383493,53.6045975],[124.7113843,53.6741125],[124.7113072,53.6739695],[124.7101066,53.6742254],[124.710092,53.6741983],[124.7100034,53.6742172],[124.7097646,53.6737754],[124.7088823,53.6739509],[124.6918944,53.6775433],[124.6920168,53.6777704],[124.5154737,53.7130452],[124.5307013,54.1383733],[126.15453,54.106383],[126.1492445,54.0972465],[126.0673388,53.9538472],[125.9848749,53.8105611],[125.9030535,53.6671698],[125.8216955,53.5237566],[125.7738209,53.4389177],[125.5141266,53.4995389]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UXV_N05.11","eo:cloud_cover":75.041485,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.015173,"s2:mean_solar_zenith":33.4428233592958,"s2:mean_solar_azimuth":162.058972933642,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":20.049483,"s2:thin_cirrus_percentage":21.57958,"s2:cloud_shadow_percentage":2.185212,"s2:nodata_pixel_percentage":50.558668,"s2:unclassified_percentage":0.303577,"s2:not_vegetated_percentage":2.394095,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":25.175184,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.286716,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736","bbox":[124.4649804,52.2409272,125.649989,53.2402083],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R60m/T51UXU_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R60m/T51UXU_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R20m/T51UXU_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/IMG_DATA/R10m/T51UXU_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5790240.0,709800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/GRANULE/L2A_T51UXU_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.649989,53.2177799],[125.6253696,53.1736377],[125.5456072,53.0301951],[125.4665804,52.8866619],[125.3880901,52.7430708],[125.3099468,52.5994597],[125.2321784,52.4558624],[125.1550113,52.3121694],[125.1166706,52.2409272],[124.4649804,52.2534568],[124.4984604,53.2402083],[125.649989,53.2177799]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UXU_N05.11","eo:cloud_cover":78.283638,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXU_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.117534,"s2:mean_solar_zenith":32.5874882578317,"s2:mean_solar_azimuth":161.648350107667,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":16.530271,"s2:thin_cirrus_percentage":14.665918,"s2:cloud_shadow_percentage":0.601585,"s2:nodata_pixel_percentage":44.84674,"s2:unclassified_percentage":2.471653,"s2:not_vegetated_percentage":1.994159,"s2:degraded_msi_data_percentage":0.0306,"s2:high_proba_clouds_percentage":42.633015,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":20.984702,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736","bbox":[124.4361206,51.3503969,125.1634942,52.3413551],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R60m/T51UXT_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R60m/T51UXT_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R20m/T51UXT_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/IMG_DATA/R10m/T51UXT_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5690220.0,709800.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/GRANULE/L2A_T51UXT_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XT/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXT_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[125.1634942,52.3279654],[125.1550113,52.3121694],[125.0776825,52.168482],[125.0011792,52.0245944],[124.9247977,51.8807541],[124.8488376,51.7368822],[124.7740366,51.5928144],[124.6995434,51.4487578],[124.6489659,51.3503969],[124.4361206,51.3544394],[124.4678842,52.3413551],[125.1634942,52.3279654]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXT","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UXT_N05.11","eo:cloud_cover":42.99162,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXT_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.008262,"s2:mean_solar_zenith":31.7329884341935,"s2:mean_solar_azimuth":161.21765425791,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":49.09727,"s2:thin_cirrus_percentage":7.465654,"s2:cloud_shadow_percentage":3.823742,"s2:nodata_pixel_percentage":71.850431,"s2:unclassified_percentage":3.486861,"s2:not_vegetated_percentage":0.590113,"s2:degraded_msi_data_percentage":0.0137,"s2:high_proba_clouds_percentage":20.667204,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.858763,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951","bbox":[124.5613574,54.9150072,126.3559683,55.9353354],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R60m/T51UXB_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R60m/T51UXB_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R20m/T51UXB_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/IMG_DATA/R10m/T51UXB_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/GRANULE/L2A_T51UXB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/XB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UXB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6007969,55.9353354],[126.3559683,55.8999986],[126.2734267,54.9150072],[124.5613574,54.949074],[124.6007969,55.9353354]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UXB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UXB_N05.11","eo:cloud_cover":88.807923,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UXB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.020468,"s2:mean_solar_zenith":35.1580547342679,"s2:mean_solar_azimuth":162.828282523976,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":9.042518,"s2:thin_cirrus_percentage":24.010889,"s2:cloud_shadow_percentage":1.367089,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.223838,"s2:not_vegetated_percentage":0.532002,"s2:degraded_msi_data_percentage":0.0269,"s2:high_proba_clouds_percentage":33.219445,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":31.57759,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951","bbox":[122.9996938,53.6836594,124.6803359,54.1481041],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R60m/T51UWV_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R60m/T51UWV_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R20m/T51UWV_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/IMG_DATA/R10m/T51UWV_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/GRANULE/L2A_T51UWV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[124.6625437,53.6836594],[124.3645949,53.7431921],[124.3645896,53.7431821],[124.3424073,53.7474544],[124.3426493,53.7479108],[124.0176633,53.8106443],[124.017598,53.810519],[124.0164772,53.8107353],[124.0162841,53.8103658],[124.0059661,53.8122532],[123.9970036,53.8139794],[123.9973736,53.8146887],[123.6701786,53.874526],[123.669832,53.8738516],[123.6573272,53.8760265],[123.648813,53.8775839],[123.6489988,53.8779461],[123.6486847,53.8780006],[123.6487191,53.8780676],[123.64867,53.8780761],[123.6486992,53.8781329],[123.3008855,53.9384707],[123.2994055,53.9387182],[123.2994322,53.9387709],[123.2071657,53.954145],[122.9996949,53.9888438],[122.9996938,54.1481041],[124.6803359,54.1363774],[124.6625437,53.6836594]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UWV_N05.11","eo:cloud_cover":30.101115,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.016995,"s2:mean_solar_zenith":33.7533105076474,"s2:mean_solar_azimuth":159.600653364513,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.237719,"s2:thin_cirrus_percentage":12.295584,"s2:cloud_shadow_percentage":8.178432,"s2:nodata_pixel_percentage":69.2334,"s2:unclassified_percentage":1.578633,"s2:not_vegetated_percentage":0.859638,"s2:degraded_msi_data_percentage":0.0011,"s2:high_proba_clouds_percentage":8.614112,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.191418,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736","bbox":[122.9997279,47.930217,123.3765395,48.753013],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R60m/T51UWP_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R60m/T51UWP_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5400000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R20m/T51UWP_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5400000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/IMG_DATA/R10m/T51UWP_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5290200.0,609780.0,5400000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5400000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/GRANULE/L2A_T51UWP_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WP/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWP_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.3765395,48.7505719],[123.3585612,48.7119546],[123.3552534,48.7048697],[123.3513598,48.6965415],[123.2878676,48.5609815],[123.2215248,48.4159299],[123.1546532,48.2710565],[123.0884539,48.1260927],[123.0227773,47.9810966],[122.9997322,47.930217],[122.9997279,48.753013],[123.3765395,48.7505719]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWP","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UWP_N05.11","eo:cloud_cover":63.980716,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWP_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":28.6794760102683,"s2:mean_solar_azimuth":156.759918302674,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":34.175,"s2:thin_cirrus_percentage":30.567065,"s2:cloud_shadow_percentage":0.858481,"s2:nodata_pixel_percentage":89.681041,"s2:unclassified_percentage":0.258059,"s2:not_vegetated_percentage":0.727008,"s2:degraded_msi_data_percentage":0.0003,"s2:high_proba_clouds_percentage":11.811411,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.60224,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951","bbox":[122.9996798,54.9470178,124.7572757,55.9457344],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R60m/T51UWB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R60m/T51UWB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R20m/T51UWB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/IMG_DATA/R10m/T51UWB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/GRANULE/L2A_T51UWB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.9996798,55.9457344],[124.7572757,55.9332025],[124.7139855,54.9470178],[122.9996877,54.9590989],[122.9996798,55.9457344]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UWB_N05.11","eo:cloud_cover":49.787244,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.044164,"s2:mean_solar_zenith":35.4588406100177,"s2:mean_solar_azimuth":160.358673885298,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":37.789297,"s2:thin_cirrus_percentage":13.094236,"s2:cloud_shadow_percentage":10.389226,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.397232,"s2:not_vegetated_percentage":1.566494,"s2:degraded_msi_data_percentage":0.1166,"s2:high_proba_clouds_percentage":17.587948,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":19.105059,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736","bbox":[122.9996936,54.0555765,123.6635938,54.1679624],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R60m/T51UWA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R60m/T51UWA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R20m/T51UWA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/IMG_DATA/R10m/T51UWA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.9996936,54.1679624],[123.0491081,54.1603337],[123.0489318,54.1599803],[123.049026,54.1599646],[123.0487058,54.1593229],[123.382052,54.1037045],[123.382073,54.1037458],[123.3821003,54.1037413],[123.3821741,54.1038871],[123.3823408,54.1038593],[123.3824132,54.1040024],[123.3824393,54.103998],[123.3824639,54.1040465],[123.3828133,54.1039882],[123.3829292,54.1042174],[123.6635938,54.0555765],[122.9996944,54.0602038],[122.9996936,54.1679624]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UWA_N05.11","eo:cloud_cover":8.451172,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.065912,"s2:mean_solar_zenith":34.6053844976197,"s2:mean_solar_azimuth":159.989421016063,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":87.770379,"s2:thin_cirrus_percentage":0.290421,"s2:cloud_shadow_percentage":1.6381,"s2:nodata_pixel_percentage":97.880805,"s2:unclassified_percentage":0.714232,"s2:not_vegetated_percentage":1.220707,"s2:degraded_msi_data_percentage":0.0028,"s2:high_proba_clouds_percentage":4.407667,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.753084,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951","bbox":[122.999687,54.0485147,124.7177342,55.046986],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R60m/T51UWA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R60m/T51UWA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R20m/T51UWA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/IMG_DATA/R10m/T51UWA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/GRANULE/L2A_T51UWA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/WA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UWA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.999687,55.046986],[124.7177342,55.0348657],[124.6767881,54.0485147],[122.9996944,54.0602038],[122.999687,55.046986]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UWA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UWA_N05.11","eo:cloud_cover":28.662688,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UWA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.010066,"s2:mean_solar_zenith":34.6053844976197,"s2:mean_solar_azimuth":159.989421016063,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.858567,"s2:thin_cirrus_percentage":11.501379,"s2:cloud_shadow_percentage":10.085355,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.358572,"s2:not_vegetated_percentage":0.998374,"s2:degraded_msi_data_percentage":0.0181,"s2:high_proba_clouds_percentage":8.541209,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.6201,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951","bbox":[121.9838497,53.9639095,123.1494256,54.1480114],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R60m/T51UVV_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R60m/T51UVV_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R20m/T51UVV_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/IMG_DATA/R10m/T51UVV_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/GRANULE/L2A_T51UVV_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVV_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[123.1487821,53.9639095],[122.9479832,53.9974924],[122.9481262,53.9977808],[122.6132063,54.0496365],[122.6131096,54.049439],[122.5886183,54.0532539],[122.5886636,54.0533466],[122.2889777,54.0984146],[122.2284259,54.1076076],[122.2286166,54.1080021],[122.2278167,54.108111],[122.2278316,54.1081418],[122.1761686,54.1151418],[121.9838497,54.1413221],[123.1494256,54.1480114],[123.1487821,53.9639095]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UVV_N05.11","eo:cloud_cover":3.08952,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVV_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.017315,"s2:mean_solar_zenith":34.0813654983863,"s2:mean_solar_azimuth":157.166422690752,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":92.764705,"s2:thin_cirrus_percentage":0.131603,"s2:cloud_shadow_percentage":2.433042,"s2:nodata_pixel_percentage":93.5233,"s2:unclassified_percentage":0.330672,"s2:not_vegetated_percentage":1.343744,"s2:degraded_msi_data_percentage":0.0402,"s2:high_proba_clouds_percentage":0.973729,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.984188,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951","bbox":[121.8245577,54.9513065,123.1562717,55.9456353],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R60m/T51UVB_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R60m/T51UVB_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R20m/T51UVB_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/IMG_DATA/R10m/T51UVB_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/GRANULE/L2A_T51UVB_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVB_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.8245577,54.9513065],[121.8573636,55.0210211],[121.9265895,55.1661143],[121.99571,55.3112522],[122.0657173,55.4562553],[122.1360145,55.6013198],[122.2068202,55.7463008],[122.2790468,55.8910374],[122.3029832,55.9406311],[123.1562717,55.9456353],[123.1524197,54.9590034],[121.8245577,54.9513065]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UVB_N05.11","eo:cloud_cover":87.740666,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVB_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.040295,"s2:mean_solar_zenith":35.7762565582716,"s2:mean_solar_azimuth":157.909946927641,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":8.209021,"s2:thin_cirrus_percentage":4.126655,"s2:cloud_shadow_percentage":3.075512,"s2:nodata_pixel_percentage":37.455398,"s2:unclassified_percentage":0.626232,"s2:not_vegetated_percentage":0.301926,"s2:degraded_msi_data_percentage":0.8614,"s2:high_proba_clouds_percentage":18.792695,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":64.821315,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736","bbox":[121.4668827,54.0504964,123.1494142,54.3749405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R60m/T51UVA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R60m/T51UVA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R20m/T51UVA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/IMG_DATA/R10m/T51UVA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.4668827,54.1836475],[121.4887371,54.230434],[121.5558041,54.3749405],[121.9281611,54.3242906],[121.9282534,54.3244854],[121.928668,54.3244291],[121.9287311,54.3245624],[121.9290838,54.3245147],[121.9291289,54.32461],[121.9295965,54.3245468],[121.9297185,54.3248042],[121.9301434,54.324747],[121.9301624,54.3247872],[121.9305235,54.3247387],[121.9306037,54.3249078],[121.9308485,54.324875],[121.9308513,54.324881],[122.293863,54.2755855],[122.3246217,54.2713226],[122.3244758,54.2710202],[122.3247688,54.2709758],[122.3246482,54.2707258],[122.325808,54.2705502],[122.3257694,54.2704702],[122.3261054,54.2704194],[122.326099,54.2704061],[122.3264015,54.2703605],[122.3263961,54.2703493],[122.375888,54.2628902],[122.3867791,54.2612461],[122.6681326,54.2187082],[122.6681627,54.2187697],[122.6684173,54.2187312],[122.6684497,54.2187973],[122.6686699,54.2187641],[122.6687585,54.2189444],[122.668847,54.218931],[122.6688765,54.2189911],[122.6689649,54.2189778],[122.6689848,54.2190182],[123.0491081,54.1603337],[123.0489318,54.1599803],[123.049026,54.1599646],[123.0487058,54.1593229],[123.1494142,54.1425198],[123.14911,54.0601114],[121.4719201,54.0504964],[121.4668827,54.1836475]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UVA_N05.11","eo:cloud_cover":16.879188,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.006543,"s2:mean_solar_zenith":34.9279765778761,"s2:mean_solar_azimuth":157.549415349823,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":70.123202,"s2:thin_cirrus_percentage":0.069427,"s2:cloud_shadow_percentage":10.63133,"s2:nodata_pixel_percentage":79.059011,"s2:unclassified_percentage":0.881372,"s2:not_vegetated_percentage":1.458544,"s2:degraded_msi_data_percentage":0.0188,"s2:high_proba_clouds_percentage":8.416358,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.393401,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951","bbox":[121.4790494,54.056768,123.1527533,55.0468902],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R60m/T51UVA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R60m/T51UVA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R20m/T51UVA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/IMG_DATA/R10m/T51UVA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/GRANULE/L2A_T51UVA_A043673_20250717T025639/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/VA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE/DATASTRIP/DS_2BPS_20250717T045951_S20250717T025639/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UVA_20250717T045951&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.5659122,54.056768],[122.2889777,54.0984146],[122.2284259,54.1076076],[122.2286166,54.1080021],[122.2278167,54.108111],[122.2278316,54.1081418],[122.1761686,54.1151418],[121.8811708,54.1552997],[121.8810903,54.1551292],[121.8806732,54.1551863],[121.8806703,54.1551802],[121.8794626,54.1553438],[121.8793785,54.155165],[121.8535206,54.1587227],[121.8538059,54.1593139],[121.4790494,54.2095157],[121.5188676,54.2942384],[121.5851657,54.439808],[121.6527232,54.5851212],[121.7207465,54.7304114],[121.788983,54.8757081],[121.8573636,55.0210211],[121.8661441,55.0394246],[123.1527533,55.0468902],[123.14911,54.0601114],[122.5659122,54.056768]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UVA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T045951_A043673_T51UVA_N05.11","eo:cloud_cover":52.653968,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UVA_20250717T045951.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T045951_S20250717T025639_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:59:51.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.003285,"s2:mean_solar_zenith":34.9279765778761,"s2:mean_solar_azimuth":157.549415349823,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":37.74555,"s2:thin_cirrus_percentage":1.242309,"s2:cloud_shadow_percentage":7.265861,"s2:nodata_pixel_percentage":16.475068,"s2:unclassified_percentage":1.050488,"s2:not_vegetated_percentage":1.254543,"s2:degraded_msi_data_percentage":2.0749,"s2:high_proba_clouds_percentage":16.001086,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":35.410574,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736","bbox":[120.9984315,53.1416409,121.6511208,54.1401868],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R60m/T51UUV_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R60m/T51UUV_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R20m/T51UUV_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/IMG_DATA/R10m/T51UUV_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/GRANULE/L2A_T51UUV_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.9984315,53.1416409],[121.0293857,53.2129719],[121.0939341,53.3584219],[121.1582032,53.5039295],[121.2234148,53.6493069],[121.2891205,53.7946536],[121.3556109,53.9398481],[121.4209831,54.0853839],[121.4450805,54.1369727],[121.6192567,54.1401868],[121.6511208,53.1535351],[120.9984315,53.1416409]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UUV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UUV_N05.11","eo:cloud_cover":4.091585,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UUV_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.931335,"s2:mean_solar_zenith":34.4261817607303,"s2:mean_solar_azimuth":154.760325095232,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":91.110557,"s2:thin_cirrus_percentage":1.435339,"s2:cloud_shadow_percentage":3.054372,"s2:nodata_pixel_percentage":75.347459,"s2:unclassified_percentage":0.269249,"s2:not_vegetated_percentage":0.481111,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":1.107008,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":1.549238,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736","bbox":[120.6056024,52.2358279,121.6785441,53.2419635],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R60m/T51UUU_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R60m/T51UUU_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R20m/T51UUU_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/IMG_DATA/R10m/T51UUU_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5790240.0,409800.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/GRANULE/L2A_T51UUU_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UU/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUU_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.6056024,52.2358279],[120.6495214,52.3393057],[120.7117381,52.4850079],[120.7745227,52.6306574],[120.8384771,52.7760809],[120.9017741,52.9217141],[120.9661176,53.0671769],[121.0293857,53.2129719],[121.0373045,53.2308157],[121.6483415,53.2419635],[121.6785441,52.2551507],[120.6056024,52.2358279]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UUU","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UUU_N05.11","eo:cloud_cover":29.20112,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UUU_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.027118,"s2:mean_solar_zenith":33.5881135017548,"s2:mean_solar_azimuth":154.358239976182,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":65.406787,"s2:thin_cirrus_percentage":14.649937,"s2:cloud_shadow_percentage":4.400674,"s2:nodata_pixel_percentage":48.51661,"s2:unclassified_percentage":0.382532,"s2:not_vegetated_percentage":0.568262,"s2:degraded_msi_data_percentage":0.1776,"s2:high_proba_clouds_percentage":5.582973,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.968209,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736","bbox":[121.4043239,54.0482962,121.6221725,54.3749405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R60m/T51UUA_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R60m/T51UUA_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R20m/T51UUA_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/IMG_DATA/R10m/T51UUA_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/GRANULE/L2A_T51UUA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/U/UA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51UUA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.4043239,54.0482962],[121.4209831,54.0853839],[121.4887371,54.230434],[121.5558041,54.3749405],[121.6114247,54.3673747],[121.6221725,54.0523118],[121.4043239,54.0482962]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51UUA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51UUA_N05.11","eo:cloud_cover":25.536171,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51UUA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":35.2668931326153,"s2:mean_solar_azimuth":155.135981523394,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":53.405219,"s2:thin_cirrus_percentage":0.00171,"s2:cloud_shadow_percentage":18.725342,"s2:nodata_pixel_percentage":97.477144,"s2:unclassified_percentage":0.516839,"s2:not_vegetated_percentage":1.798414,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":12.719624,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":12.814838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736","bbox":[121.7069511,45.0581917,122.1752693,46.0486504],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R60m/T51TVL_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R60m/T51TVL_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R20m/T51TVL_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/IMG_DATA/R10m/T51TVL_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4990200.0,509760.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/GRANULE/L2A_T51TVL_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[122.1752693,46.0486504],[122.1329686,45.9488702],[122.0720409,45.8035458],[122.0110653,45.6582561],[121.9502934,45.5129648],[121.8899568,45.3675816],[121.8298896,45.2221331],[121.8252616,45.2109057],[121.7701436,45.0773904],[121.7623215,45.0583569],[121.7294164,45.0581917],[121.7069511,46.0462596],[122.1752693,46.0486504]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TVL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TVL_N05.11","eo:cloud_cover":98.190892,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TVL_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000057,"s2:mean_solar_zenith":26.5701043469989,"s2:mean_solar_azimuth":152.40220453019,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.665535,"s2:thin_cirrus_percentage":3.684097,"s2:cloud_shadow_percentage":1.088557,"s2:nodata_pixel_percentage":82.523805,"s2:unclassified_percentage":0.051316,"s2:not_vegetated_percentage":0.00131,"s2:degraded_msi_data_percentage":0.0629,"s2:high_proba_clouds_percentage":58.089715,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":36.417076,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736","bbox":[121.7274503,44.9821886,121.7989239,45.1471066],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R60m/T51TVK_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R60m/T51TVK_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R20m/T51TVK_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/IMG_DATA/R10m/T51TVK_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4890240.0,509760.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/GRANULE/L2A_T51TVK_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/VK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TVK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[121.7989239,45.1471066],[121.7701436,45.0773904],[121.7310193,44.9821886],[121.7274503,45.1467472],[121.7989239,45.1471066]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TVK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TVK_N05.11","eo:cloud_cover":100.0,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TVK_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":25.7525590817109,"s2:mean_solar_azimuth":151.679725430971,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.615014,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":99.540663,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.459336,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736","bbox":[120.5688037,42.060235,120.7221903,42.429263],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R60m/T51TUG_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R60m/T51TUG_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R20m/T51TUG_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/IMG_DATA/R10m/T51TUG_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,4590240.0,409800.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/GRANULE/L2A_T51TUG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/UG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TUG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.7221903,42.429263],[120.676057,42.3076801],[120.6206454,42.1618905],[120.5826297,42.060235],[120.5688037,42.4269017],[120.7221903,42.429263]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TUG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TUG_N05.11","eo:cloud_cover":99.987483,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TUG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":23.7890219812945,"s2:mean_solar_azimuth":146.652794097916,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.352288,"s2:cloud_shadow_percentage":0.00634,"s2:nodata_pixel_percentage":97.959131,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.006178,"s2:degraded_msi_data_percentage":0.0599,"s2:high_proba_clouds_percentage":66.681027,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":32.954165,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736","bbox":[119.4545363,39.6090131,120.0489377,40.6113254],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R60m/T51TTE_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R60m/T51TTE_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R20m/T51TTE_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/IMG_DATA/R10m/T51TTE_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,4390200.0,309780.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/GRANULE/L2A_T51TTE_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/T/TE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51TTE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.0489377,40.6113254],[120.0282934,40.5542995],[119.9758153,40.4080915],[119.9230646,40.2620155],[119.8714404,40.1156798],[119.8513154,40.0589762],[119.819189,39.9686227],[119.7672769,39.8222937],[119.7387107,39.7415223],[119.7157065,39.6765674],[119.6935001,39.6136387],[119.5054874,39.6090131],[119.4545363,40.5964015],[120.0489377,40.6113254]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51TTE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51TTE_N05.11","eo:cloud_cover":80.006087,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51TTE_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":17.062339,"s2:mean_solar_zenith":22.7403756866213,"s2:mean_solar_azimuth":142.117565763747,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000243,"s2:vegetation_percentage":1.548352,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.00516,"s2:nodata_pixel_percentage":69.909889,"s2:unclassified_percentage":0.602656,"s2:not_vegetated_percentage":0.769749,"s2:degraded_msi_data_percentage":0.2965,"s2:high_proba_clouds_percentage":75.100821,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":4.905267,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736","bbox":[119.5010231,39.1430719,119.7250791,39.703032],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R60m/T51STD_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R60m/T51STD_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R20m/T51STD_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/IMG_DATA/R10m/T51STD_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,4290240.0,309780.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/GRANULE/L2A_T51STD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/51/S/TD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T51STD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.7250791,39.703032],[119.7157065,39.6765674],[119.6640093,39.5300675],[119.6124705,39.3835187],[119.5611444,39.2369834],[119.528373,39.1430719],[119.5010231,39.6975095],[119.7250791,39.703032]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32651,"instruments":["msi"],"s2:mgrs_tile":"51STD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T51STD_N05.11","eo:cloud_cover":2.799612,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T51STD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":97.144371,"s2:mean_solar_zenith":21.9895965995577,"s2:mean_solar_azimuth":140.961465471589,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":95.220464,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.05602,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.027767,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.771845,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736","bbox":[120.5925969,52.1754847,121.634183,53.1792832],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R60m/T50UQD_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R60m/T50UQD_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R20m/T50UQD_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/IMG_DATA/R10m/T50UQD_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5790240.0,809760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/GRANULE/L2A_T50UQD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.5925969,52.2051856],[120.6495214,52.3393057],[120.7117381,52.4850079],[120.7745227,52.6306574],[120.8384771,52.7760809],[120.9017741,52.9217141],[120.9661176,53.0671769],[121.0147664,53.1792832],[121.634183,53.159422],[121.5310322,52.1754847],[120.5925969,52.2051856]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UQD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UQD_N05.11","eo:cloud_cover":25.962237,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UQD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.047666,"s2:mean_solar_zenith":33.5713724823885,"s2:mean_solar_azimuth":154.209458513207,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":68.457073,"s2:thin_cirrus_percentage":14.526783,"s2:cloud_shadow_percentage":4.580833,"s2:nodata_pixel_percentage":52.271348,"s2:unclassified_percentage":0.378007,"s2:not_vegetated_percentage":0.564111,"s2:degraded_msi_data_percentage":0.0622,"s2:high_proba_clouds_percentage":4.97154,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.463914,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736","bbox":[120.2219412,51.2789252,121.5399797,52.2919894],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R60m/T50UQC_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R60m/T50UQC_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5800020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R20m/T50UQC_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5800020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/IMG_DATA/R10m/T50UQC_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5690220.0,809760.0,5800020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5800020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/GRANULE/L2A_T50UQC_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/QC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UQC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.2219412,51.3170712],[120.2227487,51.3190554],[120.2831008,51.4648783],[120.3435517,51.6106504],[120.4035932,51.7565431],[120.4652142,51.9021099],[120.5259895,52.0479574],[120.58769,52.1936244],[120.629439,52.2919894],[121.5399797,52.2631374],[121.4420952,51.2789252],[120.2219412,51.3170712]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UQC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UQC_N05.11","eo:cloud_cover":31.898367,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UQC_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.214088,"s2:mean_solar_zenith":32.7693558338171,"s2:mean_solar_azimuth":153.582585084605,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":54.990929,"s2:thin_cirrus_percentage":5.04574,"s2:cloud_shadow_percentage":11.602494,"s2:nodata_pixel_percentage":33.275384,"s2:unclassified_percentage":0.805883,"s2:not_vegetated_percentage":0.448126,"s2:degraded_msi_data_percentage":0.1617,"s2:high_proba_clouds_percentage":14.983115,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.869514,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736","bbox":[119.169004,48.6298216,119.9045728,49.6229567],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R60m/T50UPV_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R60m/T50UPV_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5500020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R20m/T50UPV_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5500020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/IMG_DATA/R10m/T50UPV_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5390220.0,709800.0,5500020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5500020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/GRANULE/L2A_T50UPV_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PV/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPV_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.169004,48.6422133],[119.1869991,48.6899548],[119.2419162,48.8362346],[119.2974718,48.9824502],[119.3533039,49.128699],[119.4092168,49.2749858],[119.4656067,49.4212239],[119.5224453,49.5673876],[119.544024,49.6229567],[119.9045728,49.6162737],[119.8474785,48.6298216],[119.169004,48.6422133]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UPV","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UPV_N05.11","eo:cloud_cover":28.28463,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UPV_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.360298,"s2:mean_solar_zenith":30.8534709153541,"s2:mean_solar_azimuth":149.224726944608,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000436,"s2:vegetation_percentage":47.813132,"s2:thin_cirrus_percentage":0.020456,"s2:cloud_shadow_percentage":13.622352,"s2:nodata_pixel_percentage":65.792853,"s2:unclassified_percentage":0.628211,"s2:not_vegetated_percentage":9.29018,"s2:degraded_msi_data_percentage":0.0525,"s2:high_proba_clouds_percentage":17.138596,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.12558,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736","bbox":[119.5100935,49.5284183,119.9593861,50.5158587],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R60m/T50UPA_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R60m/T50UPA_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,5600040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R20m/T50UPA_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,5600040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/IMG_DATA/R10m/T50UPA_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,5490240.0,709800.0,5600040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,5600040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/GRANULE/L2A_T50UPA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/U/PA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50UPA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.5100935,49.5356243],[119.5224453,49.5673876],[119.5792112,49.7135705],[119.6363844,49.8596112],[119.6936125,50.0056639],[119.7510548,50.1516985],[119.8090594,50.2976236],[119.8668884,50.4436337],[119.8960822,50.5158587],[119.9593861,50.51467],[119.8993597,49.5284183],[119.5100935,49.5356243]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50UPA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50UPA_N05.11","eo:cloud_cover":22.555679,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50UPA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.007636,"s2:mean_solar_zenith":31.6359537791406,"s2:mean_solar_azimuth":149.938004776559,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.772295,"s2:thin_cirrus_percentage":0.005205,"s2:cloud_shadow_percentage":14.883555,"s2:nodata_pixel_percentage":85.531396,"s2:unclassified_percentage":0.312989,"s2:not_vegetated_percentage":2.459519,"s2:degraded_msi_data_percentage":0.0117,"s2:high_proba_clouds_percentage":12.131319,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.419154,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736","bbox":[119.5794595,45.8957353,121.0656571,46.9235731],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R60m/T50TQS_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R60m/T50TQS_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R20m/T50TQS_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/IMG_DATA/R10m/T50TQS_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,5090220.0,809760.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/GRANULE/L2A_T50TQS_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.6264854,46.9235731],[121.0656571,46.8814597],[120.9930022,45.8957353],[119.5794595,45.9364309],[119.6264854,46.9235731]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQS_N05.11","eo:cloud_cover":27.660647,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQS_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.000289,"s2:mean_solar_zenith":28.0407323538848,"s2:mean_solar_azimuth":149.157109553527,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":56.90102,"s2:thin_cirrus_percentage":0.050043,"s2:cloud_shadow_percentage":13.618906,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.215981,"s2:not_vegetated_percentage":1.600997,"s2:degraded_msi_data_percentage":0.0667,"s2:high_proba_clouds_percentage":16.988012,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":10.622592,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736","bbox":[119.4272955,42.3046906,120.8181237,43.326257],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R60m/T50TQN_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R60m/T50TQN_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R20m/T50TQN_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/IMG_DATA/R10m/T50TQN_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4690200.0,809760.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/GRANULE/L2A_T50TQN_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.7739049,42.5651556],[120.7313982,42.4535302],[120.676057,42.3076801],[120.6749208,42.3046906],[119.4272955,42.3383721],[119.4662891,43.326257],[120.8181237,43.2890818],[120.7739049,42.5651556]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQN_N05.11","eo:cloud_cover":97.065979,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQN_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.004349,"s2:mean_solar_zenith":24.9974691461116,"s2:mean_solar_azimuth":145.343136428766,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":1.203796,"s2:thin_cirrus_percentage":0.286871,"s2:cloud_shadow_percentage":0.210673,"s2:nodata_pixel_percentage":0.893073,"s2:unclassified_percentage":0.388368,"s2:not_vegetated_percentage":1.126617,"s2:degraded_msi_data_percentage":0.0407,"s2:high_proba_clouds_percentage":79.418463,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":17.360643,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736","bbox":[119.361109,40.5215379,120.3744324,41.5268623],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R60m/T50TQL_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R60m/T50TQL_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R20m/T50TQL_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/IMG_DATA/R10m/T50TQL_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4490220.0,809760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/GRANULE/L2A_T50TQL_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QL/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQL_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.3744324,41.5008773],[120.3485427,41.4317422],[120.2947043,41.2854654],[120.240833,41.1392216],[120.187221,40.992973],[120.1342279,40.8466718],[120.0812006,40.7004455],[120.0282934,40.5542995],[120.0165344,40.5215379],[119.361109,40.5386175],[119.3967036,41.5268623],[120.3744324,41.5008773]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQL","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQL_N05.11","eo:cloud_cover":99.236029,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQL_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.015013,"s2:mean_solar_zenith":23.5228477672578,"s2:mean_solar_azimuth":143.079866845773,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.006039,"s2:thin_cirrus_percentage":5e-6,"s2:cloud_shadow_percentage":0.731515,"s2:nodata_pixel_percentage":37.700263,"s2:unclassified_percentage":0.004974,"s2:not_vegetated_percentage":0.006428,"s2:degraded_msi_data_percentage":0.1815,"s2:high_proba_clouds_percentage":96.402979,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":2.833042,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736","bbox":[119.3301855,39.6287972,120.0480229,40.6266494],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R60m/T50TQK_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R60m/T50TQK_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R20m/T50TQK_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/IMG_DATA/R10m/T50TQK_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4390200.0,809760.0,4500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/GRANULE/L2A_T50TQK_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/QK/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TQK_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[120.0480229,40.6087983],[120.0282934,40.5542995],[119.9758153,40.4080915],[119.9230646,40.2620155],[119.8714404,40.1156798],[119.8513154,40.0589762],[119.819189,39.9686227],[119.7672769,39.8222937],[119.7387107,39.7415223],[119.7157065,39.6765674],[119.6988493,39.6287972],[119.3301855,39.6382276],[119.3642082,40.6266494],[120.0480229,40.6087983]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TQK","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TQK_N05.11","eo:cloud_cover":75.909507,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TQK_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":16.082352,"s2:mean_solar_zenith":22.7998528423952,"s2:mean_solar_azimuth":141.840330969318,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000196,"s2:vegetation_percentage":4.620372,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.517618,"s2:nodata_pixel_percentage":59.397584,"s2:unclassified_percentage":1.103476,"s2:not_vegetated_percentage":1.764095,"s2:degraded_msi_data_percentage":0.2493,"s2:high_proba_clouds_percentage":69.136828,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.772681,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736","bbox":[118.2142871,42.3357822,119.5875362,43.3462],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R60m/T50TPN_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R60m/T50TPN_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R20m/T50TPN_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/IMG_DATA/R10m/T50TPN_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,4690200.0,709800.0,4800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/GRANULE/L2A_T50TPN_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/PN/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TPN_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.2338121,43.3462],[119.5875362,43.3235766],[119.5466306,42.3357822],[118.2142871,42.3576415],[118.2338121,43.3462]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TPN","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TPN_N05.11","eo:cloud_cover":36.116058,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TPN_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.106227,"s2:mean_solar_zenith":25.5386119791428,"s2:mean_solar_azimuth":143.028396117195,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000962,"s2:vegetation_percentage":37.823474,"s2:thin_cirrus_percentage":0.452646,"s2:cloud_shadow_percentage":6.894921,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":1.214482,"s2:not_vegetated_percentage":17.791484,"s2:degraded_msi_data_percentage":0.0557,"s2:high_proba_clouds_percentage":24.020392,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.64302,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736","bbox":[118.1987909,45.9567699,118.4342866,46.6304619],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R60m/T50TNS_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R60m/T50TNS_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5200020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R20m/T50TNS_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5200020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/IMG_DATA/R10m/T50TNS_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,5090220.0,609780.0,5200020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5200020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/GRANULE/L2A_T50TNS_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NS/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNS_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.1987909,45.9581201],[118.2325341,46.0544868],[118.2834303,46.2012099],[118.3349002,46.347706],[118.3862382,46.4942726],[118.4342866,46.6304619],[118.4166561,45.9567699],[118.1987909,45.9581201]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TNS","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TNS_N05.11","eo:cloud_cover":11.262465,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TNS_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.830601,"s2:mean_solar_zenith":29.0507935392686,"s2:mean_solar_azimuth":144.596861136244,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":68.35593,"s2:thin_cirrus_percentage":5.509831,"s2:cloud_shadow_percentage":4.810938,"s2:nodata_pixel_percentage":95.042419,"s2:unclassified_percentage":0.336697,"s2:not_vegetated_percentage":14.377066,"s2:degraded_msi_data_percentage":0.0001,"s2:high_proba_clouds_percentage":2.567159,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.185475,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736","bbox":[117.8895777,45.0567486,118.4189041,46.0459415],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R60m/T50TNR_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R60m/T50TNR_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R20m/T50TNR_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/IMG_DATA/R10m/T50TNR_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,4990200.0,609780.0,5100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/GRANULE/L2A_T50TNR_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NR/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNR_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.8895777,45.0598289],[117.9284054,45.1743711],[117.9784136,45.3210777],[118.0286379,45.4678191],[118.0790918,45.6145875],[118.1299256,45.7612573],[118.1811913,45.9078576],[118.229542,46.0459415],[118.4189041,46.0447662],[118.3942539,45.0567486],[117.8895777,45.0598289]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TNR","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TNR_N05.11","eo:cloud_cover":7.710127,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TNR_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.227757,"s2:mean_solar_zenith":28.3008404942099,"s2:mean_solar_azimuth":143.720238992279,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.020385,"s2:vegetation_percentage":62.175059,"s2:thin_cirrus_percentage":0.104868,"s2:cloud_shadow_percentage":5.627007,"s2:nodata_pixel_percentage":75.651205,"s2:unclassified_percentage":0.755714,"s2:not_vegetated_percentage":22.477517,"s2:degraded_msi_data_percentage":0.001,"s2:high_proba_clouds_percentage":3.633779,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.971479,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736","bbox":[117.5889028,44.1571166,118.3964112,45.1482147],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R60m/T50TNQ_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R60m/T50TNQ_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,5000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R20m/T50TNQ_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,5000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/IMG_DATA/R10m/T50TNQ_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,4890240.0,609780.0,5000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,5000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/GRANULE/L2A_T50TNQ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/NQ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TNQ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.5889028,44.1618268],[117.6325885,44.2939196],[117.681421,44.4407804],[117.7306125,44.5875027],[117.7798669,44.7342142],[117.8291308,44.8809633],[117.8786777,45.0276736],[117.9195388,45.1482147],[118.3964112,45.1452997],[118.372894,44.1571166],[117.5889028,44.1618268]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TNQ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TNQ_N05.11","eo:cloud_cover":23.080322,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TNQ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0417,"s2:mean_solar_zenith":27.5586205163193,"s2:mean_solar_azimuth":142.794105299252,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":59.57253,"s2:thin_cirrus_percentage":2.204978,"s2:cloud_shadow_percentage":8.319222,"s2:nodata_pixel_percentage":54.831058,"s2:unclassified_percentage":0.561122,"s2:not_vegetated_percentage":8.392074,"s2:degraded_msi_data_percentage":0.0172,"s2:high_proba_clouds_percentage":12.556584,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.31876,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736","bbox":[116.7218325,41.4618364,117.1186942,42.4526297],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R60m/T50TMM_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R60m/T50TMM_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R20m/T50TMM_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/IMG_DATA/R10m/T50TMM_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4590240.0,509760.0,4700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/GRANULE/L2A_T50TMM_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/MM/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TMM_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.7218325,41.4618364],[116.7342955,41.5018647],[116.7799969,41.6489077],[116.8264115,41.795836],[116.8730517,41.9427994],[116.9188569,42.0900523],[116.965478,42.2370827],[117.0122762,42.3841243],[117.0340859,42.4522246],[117.1186942,42.4526297],[117.1168731,41.4636925],[116.7218325,41.4618364]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TMM","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TMM_N05.11","eo:cloud_cover":13.409732,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TMM_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.037201,"s2:mean_solar_zenith":25.9700458856941,"s2:mean_solar_azimuth":137.491697498845,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":78.346264,"s2:thin_cirrus_percentage":0.000019,"s2:cloud_shadow_percentage":1.496124,"s2:nodata_pixel_percentage":82.224864,"s2:unclassified_percentage":0.696433,"s2:not_vegetated_percentage":5.929337,"s2:degraded_msi_data_percentage":0.0003,"s2:high_proba_clouds_percentage":6.646004,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.763709,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736","bbox":[116.4430791,40.55959,117.1170316,41.5517851],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R60m/T50TML_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R60m/T50TML_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R20m/T50TML_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/IMG_DATA/R10m/T50TML_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4490220.0,509760.0,4600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/GRANULE/L2A_T50TML_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/T/ML/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50TML_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.4430791,40.55959],[116.4611705,40.6197993],[116.5059286,40.7670862],[116.5513424,40.9141132],[116.5979323,41.0607592],[116.6417932,41.2082121],[116.6885271,41.354867],[116.7342955,41.5018647],[116.7492729,41.5500542],[117.1170316,41.5517851],[117.1152916,40.5626924],[116.4430791,40.55959]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50TML","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50TML_N05.11","eo:cloud_cover":1.470486,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50TML_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.085095,"s2:mean_solar_zenith":25.2769763879235,"s2:mean_solar_azimuth":136.332294279426,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":95.43981,"s2:thin_cirrus_percentage":0.000202,"s2:cloud_shadow_percentage":0.891395,"s2:nodata_pixel_percentage":60.542274,"s2:unclassified_percentage":0.097371,"s2:not_vegetated_percentage":1.950037,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.67822,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.792064,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736","bbox":[119.3006375,38.7360413,119.7299013,39.7268153],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R60m/T50SQJ_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R60m/T50SQJ_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R20m/T50SQJ_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/IMG_DATA/R10m/T50SQJ_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4290240.0,809760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/GRANULE/L2A_T50SQJ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.7299013,39.7166481],[119.7157065,39.6765674],[119.6640093,39.5300675],[119.6124705,39.3835187],[119.5611444,39.2369834],[119.5100199,39.0904785],[119.4591559,38.9439878],[119.4085484,38.797521],[119.3874031,38.7360413],[119.3006375,38.7382186],[119.3331665,39.7268153],[119.7299013,39.7166481]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SQJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SQJ_N05.11","eo:cloud_cover":20.921469,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SQJ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":78.946793,"s2:mean_solar_zenith":22.0883445369773,"s2:mean_solar_azimuth":140.521557816201,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.017688,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.01604,"s2:nodata_pixel_percentage":81.280202,"s2:unclassified_percentage":0.003864,"s2:not_vegetated_percentage":0.094148,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":11.769027,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":9.152442,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736","bbox":[119.2918736,38.4576552,119.4174953,38.8262817],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_AOT_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R60m/T50SQH_20250717T025529_B01_60m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B02_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B03_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B04_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B05_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B06_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B07_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_B08_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R60m/T50SQH_20250717T025529_B09_60m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B11_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B12_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_B8A_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R20m/T50SQH_20250717T025529_SCL_20m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_WVP_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/IMG_DATA/R10m/T50SQH_20250717T025529_TCI_10m.tif","proj:bbox":[699960.0,4190220.0,809760.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/GRANULE/L2A_T50SQH_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/QH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SQH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.4174953,38.8234148],[119.4085484,38.797521],[119.3581734,38.651056],[119.307937,38.5046006],[119.2918736,38.4576552],[119.3034704,38.8262817],[119.4174953,38.8234148]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SQH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SQH_N05.11","eo:cloud_cover":47.70222,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SQH_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":52.205902,"s2:mean_solar_zenith":21.3885780137229,"s2:mean_solar_azimuth":139.115402045806,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.4038,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.091874,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":18.943036,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":28.759184,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736","bbox":[118.1508722,38.7363369,119.447885,39.7443999],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R60m/T50SPJ_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R60m/T50SPJ_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R20m/T50SPJ_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/IMG_DATA/R10m/T50SPJ_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,4290240.0,709800.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/GRANULE/L2A_T50SPJ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[119.4167008,38.8211153],[119.4085484,38.797521],[119.3875048,38.7363369],[118.1508722,38.7551983],[118.167158,39.7443999],[119.447885,39.7244518],[119.4167008,38.8211153]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SPJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SPJ_N05.11","eo:cloud_cover":20.222032,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SPJ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":39.885443,"s2:mean_solar_zenith":22.6840681044289,"s2:mean_solar_azimuth":138.199942169003,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":22.857326,"s2:thin_cirrus_percentage":0.000242,"s2:cloud_shadow_percentage":1.767036,"s2:nodata_pixel_percentage":0.111814,"s2:unclassified_percentage":2.368912,"s2:not_vegetated_percentage":12.879643,"s2:degraded_msi_data_percentage":0.0202,"s2:high_proba_clouds_percentage":11.702741,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":8.519049,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736","bbox":[118.1102397,36.0461721,118.8109879,37.041254],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R60m/T50SPF_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R60m/T50SPF_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R20m/T50SPF_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/IMG_DATA/R10m/T50SPF_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,3990240.0,709800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/GRANULE/L2A_T50SPF_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.8109879,37.0311754],[118.76475,36.8915401],[118.7163983,36.7449153],[118.6679767,36.5983507],[118.6198789,36.4517246],[118.5720684,36.3049556],[118.5236848,36.1582592],[118.4874197,36.0461721],[118.1102397,36.0515828],[118.1244855,37.041254],[118.8109879,37.0311754]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SPF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SPF_N05.11","eo:cloud_cover":36.983517,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SPF_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.265535,"s2:mean_solar_zenith":20.6750215960592,"s2:mean_solar_azimuth":133.711979389783,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":34.599906,"s2:thin_cirrus_percentage":6.869698,"s2:cloud_shadow_percentage":12.036689,"s2:nodata_pixel_percentage":56.897491,"s2:unclassified_percentage":0.989636,"s2:not_vegetated_percentage":15.108298,"s2:degraded_msi_data_percentage":0.0491,"s2:high_proba_clouds_percentage":16.961607,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.15221,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736","bbox":[118.0934106,34.8104737,118.228127,35.2380875],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_AOT_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R60m/T50SPD_20250717T025529_B01_60m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B02_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B03_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B04_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B05_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B06_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B07_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_B08_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R60m/T50SPD_20250717T025529_B09_60m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B11_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B12_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_B8A_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R20m/T50SPD_20250717T025529_SCL_20m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_WVP_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/IMG_DATA/R10m/T50SPD_20250717T025529_TCI_10m.tif","proj:bbox":[600000.0,3790200.0,709800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/GRANULE/L2A_T50SPD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/PD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SPD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[118.228127,35.2362718],[118.1941734,35.1294626],[118.1475869,34.9825917],[118.1013403,34.8357003],[118.0934106,34.8104737],[118.0990408,35.2380875],[118.228127,35.2362718]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SPD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SPD_N05.11","eo:cloud_cover":26.308063,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SPD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.43517,"s2:mean_solar_zenith":19.4188388313226,"s2:mean_solar_azimuth":130.20887712026,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":46.315238,"s2:thin_cirrus_percentage":22.232413,"s2:cloud_shadow_percentage":0.66529,"s2:nodata_pixel_percentage":97.789735,"s2:unclassified_percentage":0.501519,"s2:not_vegetated_percentage":25.741094,"s2:degraded_msi_data_percentage":0.0255,"s2:high_proba_clouds_percentage":0.583179,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":3.49247,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736","bbox":[116.9997724,36.9514795,118.2493543,37.9475896],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R60m/T50SNG_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R60m/T50SNG_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R20m/T50SNG_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/IMG_DATA/R10m/T50SNG_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,4090200.0,609780.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/GRANULE/L2A_T50SNG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.9997724,37.9475896],[118.2493543,37.9409562],[118.2330052,36.9514795],[116.9997753,36.9578811],[116.9997724,37.9475896]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SNG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SNG_N05.11","eo:cloud_cover":47.13845,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SNG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.602669,"s2:mean_solar_zenith":21.9739264966328,"s2:mean_solar_azimuth":133.083464061664,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":31.315121,"s2:thin_cirrus_percentage":16.231024,"s2:cloud_shadow_percentage":9.945966,"s2:nodata_pixel_percentage":3e-6,"s2:unclassified_percentage":0.741862,"s2:not_vegetated_percentage":10.248818,"s2:degraded_msi_data_percentage":0.0126,"s2:high_proba_clouds_percentage":16.119608,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.787817,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736","bbox":[116.9997848,32.4474308,117.666375,33.4395751],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R60m/T50SNB_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R60m/T50SNB_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R20m/T50SNB_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/IMG_DATA/R10m/T50SNB_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,3590220.0,609780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/GRANULE/L2A_T50SNB_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.666375,33.4364017],[117.6444503,33.3648472],[117.5995079,33.2177733],[117.5546741,33.0707217],[117.5099751,32.9236622],[117.4653549,32.7765144],[117.4207487,32.6292944],[117.3764334,32.4819554],[117.3660533,32.4474308],[116.9997872,32.4491288],[116.9997848,33.4395751],[117.666375,33.4364017]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SNB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SNB_N05.11","eo:cloud_cover":39.729539,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SNB_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.83291,"s2:mean_solar_zenith":18.9771520751009,"s2:mean_solar_azimuth":124.161536284537,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":32.208225,"s2:thin_cirrus_percentage":6.435398,"s2:cloud_shadow_percentage":1.07809,"s2:nodata_pixel_percentage":56.314051,"s2:unclassified_percentage":1.244856,"s2:not_vegetated_percentage":23.90082,"s2:degraded_msi_data_percentage":0.035,"s2:high_proba_clouds_percentage":18.052907,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":15.241231,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736","bbox":[116.999787,32.2482444,117.3925471,32.5373552],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_AOT_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R60m/T50SNA_20250717T025529_B01_60m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B02_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B03_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B04_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B05_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B06_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B07_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_B08_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R60m/T50SNA_20250717T025529_B09_60m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B11_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B12_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_B8A_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R20m/T50SNA_20250717T025529_SCL_20m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_WVP_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/IMG_DATA/R10m/T50SNA_20250717T025529_TCI_10m.tif","proj:bbox":[499980.0,3490200.0,609780.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/GRANULE/L2A_T50SNA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/NA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SNA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.3925471,32.53553],[117.3764334,32.4819554],[117.332138,32.3346271],[117.3062352,32.2482444],[117.2528013,32.2622692],[117.0461187,32.3166646],[117.046091,32.3165716],[117.0459935,32.3165973],[117.0454263,32.3146922],[116.9997875,32.3257877],[116.999787,32.5373552],[117.3925471,32.53553]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SNA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SNA_N05.11","eo:cloud_cover":26.832655,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SNA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.541355,"s2:mean_solar_zenith":18.4456314194497,"s2:mean_solar_azimuth":122.033562227785,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":39.458776,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":92.377031,"s2:unclassified_percentage":0.998794,"s2:not_vegetated_percentage":32.1652,"s2:degraded_msi_data_percentage":0.0012,"s2:high_proba_clouds_percentage":14.997889,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":11.834764,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736","bbox":[115.9013317,38.7554279,117.1139256,39.750212],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R60m/T50SMJ_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R60m/T50SMJ_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R20m/T50SMJ_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/IMG_DATA/R10m/T50SMJ_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4290240.0,509760.0,4400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/GRANULE/L2A_T50SMJ_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MJ/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMJ_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.9013317,38.7554279],[115.9301224,38.8532881],[115.9736448,39.0005998],[116.0172137,39.1478543],[116.0608096,39.2950671],[116.1044794,39.4422733],[116.1483299,39.5894922],[116.1923701,39.736696],[116.195178,39.7460419],[117.1139256,39.750212],[117.1123356,38.7608105],[115.9013317,38.7554279]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMJ","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMJ_N05.11","eo:cloud_cover":1.14024,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMJ_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":1.138078,"s2:mean_solar_zenith":23.927685575955,"s2:mean_solar_azimuth":133.801367476993,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":65.048999,"s2:thin_cirrus_percentage":1.021053,"s2:cloud_shadow_percentage":0.014508,"s2:nodata_pixel_percentage":16.666119,"s2:unclassified_percentage":0.792223,"s2:not_vegetated_percentage":31.795236,"s2:degraded_msi_data_percentage":0.016,"s2:high_proba_clouds_percentage":0.009149,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":0.110037,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736","bbox":[115.8614709,36.9525649,117.111086,37.9475371],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R60m/T50SMG_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R60m/T50SMG_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R20m/T50SMG_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/IMG_DATA/R10m/T50SMG_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,4090200.0,509760.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/GRANULE/L2A_T50SMG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.8614709,37.9420809],[117.111086,37.9475371],[117.1096319,36.9578305],[115.8763705,36.9525649],[115.8614709,37.9420809]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMG_N05.11","eo:cloud_cover":41.186291,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.053991,"s2:mean_solar_zenith":22.6340813175253,"s2:mean_solar_azimuth":130.954784605596,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.987856,"s2:thin_cirrus_percentage":9.839559,"s2:cloud_shadow_percentage":11.77372,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.437062,"s2:not_vegetated_percentage":9.555632,"s2:degraded_msi_data_percentage":0.0298,"s2:high_proba_clouds_percentage":16.522081,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":14.824648,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736","bbox":[115.8750647,36.0515787,117.1097593,37.0465323],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R60m/T50SMF_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R60m/T50SMF_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R20m/T50SMF_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/IMG_DATA/R10m/T50SMF_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3990240.0,509760.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/GRANULE/L2A_T50SMF_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.8750647,37.0412498],[117.1097593,37.0465323],[117.1083685,36.056675],[115.8893163,36.0515787],[115.8750647,37.0412498]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMF_N05.11","eo:cloud_cover":46.413097,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMF_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.336628,"s2:mean_solar_zenith":22.0119019990082,"s2:mean_solar_azimuth":129.402097516376,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":36.597174,"s2:thin_cirrus_percentage":15.03856,"s2:cloud_shadow_percentage":4.154141,"s2:nodata_pixel_percentage":7e-6,"s2:unclassified_percentage":0.695393,"s2:not_vegetated_percentage":11.786846,"s2:degraded_msi_data_percentage":0.0229,"s2:high_proba_clouds_percentage":13.983063,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":17.391473,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736","bbox":[115.8880749,35.1499121,117.1084896,36.1448493],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R60m/T50SME_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R60m/T50SME_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R20m/T50SME_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/IMG_DATA/R10m/T50SME_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3890220.0,509760.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/GRANULE/L2A_T50SME_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/ME/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SME_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.8880749,36.1397366],[117.1084896,36.1448493],[117.1071592,35.1548426],[115.9017071,35.1499121],[115.8880749,36.1397366]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SME","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SME_N05.11","eo:cloud_cover":58.306003,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SME_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.369206,"s2:mean_solar_zenith":21.4074804479542,"s2:mean_solar_azimuth":127.754859134037,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":28.753677,"s2:thin_cirrus_percentage":21.736342,"s2:cloud_shadow_percentage":0.966457,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.66243,"s2:not_vegetated_percentage":10.925531,"s2:degraded_msi_data_percentage":0.0143,"s2:high_proba_clouds_percentage":14.595555,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.974111,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736","bbox":[115.9005196,34.2481073,117.1072751,35.2430302],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R60m/T50SMD_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R60m/T50SMD_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R20m/T50SMD_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/IMG_DATA/R10m/T50SMD_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3790200.0,509760.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/GRANULE/L2A_T50SMD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.9005196,35.2380835],[117.1072751,35.2430302],[117.1060025,34.2528758],[115.9135595,34.2481073],[115.9005196,35.2380835]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMD_N05.11","eo:cloud_cover":90.309763,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.518857,"s2:mean_solar_zenith":20.8227995236326,"s2:mean_solar_azimuth":126.009053551506,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":4.199996,"s2:thin_cirrus_percentage":14.53747,"s2:cloud_shadow_percentage":1.179472,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.02645,"s2:not_vegetated_percentage":3.765067,"s2:degraded_msi_data_percentage":0.0033,"s2:high_proba_clouds_percentage":37.807155,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":37.96514,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736","bbox":[116.1145798,32.3015168,117.1039399,32.5373123],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_AOT_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R60m/T50SMA_20250717T025529_B01_60m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B02_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B03_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B04_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B05_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B06_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B07_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_B08_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R60m/T50SMA_20250717T025529_B09_60m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,3600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B11_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B12_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_B8A_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R20m/T50SMA_20250717T025529_SCL_20m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,3600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_WVP_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/IMG_DATA/R10m/T50SMA_20250717T025529_TCI_10m.tif","proj:bbox":[399960.0,3490200.0,509760.0,3600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,3600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/GRANULE/L2A_T50SMA_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/MA/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SMA_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[117.1036749,32.3015168],[117.0461187,32.3166646],[117.046091,32.3165716],[117.0459935,32.3165973],[117.0454263,32.3146922],[116.7782206,32.3796543],[116.778231,32.3796895],[116.7781318,32.3797131],[116.7781616,32.3798144],[116.7781075,32.3798273],[116.7781694,32.3800382],[116.7781547,32.3800417],[116.7784096,32.3809087],[116.7781299,32.3809753],[116.778211,32.381251],[116.7781507,32.3812654],[116.7782918,32.3817456],[116.5535674,32.4356065],[116.5437143,32.437978],[116.5431121,32.4359135],[116.2813242,32.4947713],[116.2816815,32.496011],[116.2815423,32.4960413],[116.2818084,32.4969648],[116.2814579,32.4970413],[116.2814761,32.4971044],[116.1145798,32.5335306],[117.1039399,32.5373123],[117.1036749,32.3015168]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SMA","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SMA_N05.11","eo:cloud_cover":14.862227,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SMA_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":3.917596,"s2:mean_solar_zenith":19.2058256898959,"s2:mean_solar_azimuth":120.135148203205,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":61.090124,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.531518,"s2:nodata_pixel_percentage":89.938831,"s2:unclassified_percentage":0.804895,"s2:not_vegetated_percentage":18.791266,"s2:degraded_msi_data_percentage":0.0359,"s2:high_proba_clouds_percentage":6.904262,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":7.957965,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736","bbox":[115.63759,37.8502561,115.9746634,38.8443739],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R60m/T50SLH_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R60m/T50SLH_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4300020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R20m/T50SLH_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4300020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/IMG_DATA/R10m/T50SLH_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,4190220.0,409800.0,4300020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4300020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/GRANULE/L2A_T50SLH_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LH/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLH_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.63759,37.8502561],[115.671881,37.9689406],[115.7145596,38.1162715],[115.7574188,38.2636455],[115.8004173,38.411074],[115.8435289,38.5584864],[115.8867567,38.7058869],[115.9273598,38.8438979],[115.9606157,38.8443739],[115.9746634,37.8549777],[115.63759,37.8502561]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLH","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLH_N05.11","eo:cloud_cover":38.279384,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLH_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.115262,"s2:mean_solar_zenith":23.932092986659,"s2:mean_solar_azimuth":130.356473489181,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":35.349339,"s2:thin_cirrus_percentage":5.769221,"s2:cloud_shadow_percentage":8.881476,"s2:nodata_pixel_percentage":85.593003,"s2:unclassified_percentage":0.588054,"s2:not_vegetated_percentage":16.765666,"s2:degraded_msi_data_percentage":0.0303,"s2:high_proba_clouds_percentage":19.331181,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.178983,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736","bbox":[115.3785214,36.9452099,115.9868749,37.9431112],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R60m/T50SLG_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R60m/T50SLG_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4200000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R20m/T50SLG_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4200000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/IMG_DATA/R10m/T50SLG_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,4090200.0,409800.0,4200000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4200000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/GRANULE/L2A_T50SLG_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LG/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLG_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.3785214,36.9452099],[115.4182056,37.0847685],[115.4602395,37.2322337],[115.5023433,37.3796156],[115.5445309,37.526943],[115.586851,37.6742695],[115.6293078,37.8215905],[115.66316,37.9387564],[115.9734399,37.9431112],[115.9868749,36.9535591],[115.3785214,36.9452099]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLG","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLG_N05.11","eo:cloud_cover":36.07443,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLG_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.366998,"s2:mean_solar_zenith":23.3079127743644,"s2:mean_solar_azimuth":128.912664618134,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":42.052454,"s2:thin_cirrus_percentage":9.59694,"s2:cloud_shadow_percentage":8.664303,"s2:nodata_pixel_percentage":63.342643,"s2:unclassified_percentage":0.446737,"s2:not_vegetated_percentage":12.388815,"s2:degraded_msi_data_percentage":0.0098,"s2:high_proba_clouds_percentage":13.623509,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":12.853979,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736","bbox":[115.1241092,36.0407906,115.998548,37.0422472],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R60m/T50SLF_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R60m/T50SLF_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4100040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R20m/T50SLF_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4100040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/IMG_DATA/R10m/T50SLF_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3990240.0,409800.0,4100040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4100040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/GRANULE/L2A_T50SLF_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LF/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLF_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[115.1241092,36.0407906],[115.1272005,36.0518786],[115.168395,36.1994042],[115.2097009,36.3469466],[115.2511476,36.4945241],[115.2927244,36.6421295],[115.3344184,36.7896865],[115.3762581,36.9372503],[115.4038391,37.0342453],[115.9856975,37.0422472],[115.998548,36.052541],[115.1241092,36.0407906]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLF","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLF_N05.11","eo:cloud_cover":54.964435,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLF_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.055954,"s2:mean_solar_zenith":22.7011208309229,"s2:mean_solar_azimuth":127.38554131012,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":23.944311,"s2:thin_cirrus_percentage":18.65389,"s2:cloud_shadow_percentage":4.03236,"s2:nodata_pixel_percentage":40.977442,"s2:unclassified_percentage":1.742189,"s2:not_vegetated_percentage":15.259357,"s2:degraded_msi_data_percentage":0.0036,"s2:high_proba_clouds_percentage":14.528267,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":21.782278,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736","bbox":[114.8735561,35.1359055,116.0097208,36.140702],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R60m/T50SLE_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R60m/T50SLE_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,4000020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R20m/T50SLE_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,4000020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/IMG_DATA/R10m/T50SLE_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3890220.0,409800.0,4000020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,4000020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/GRANULE/L2A_T50SLE_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LE/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLE_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.8735561,35.1359055],[114.8819738,35.1665639],[114.9226016,35.3142249],[114.9632854,35.461833],[115.004088,35.6093671],[115.0450297,35.7568681],[115.0860717,35.9043527],[115.1272005,36.0518786],[115.1488123,36.1292747],[115.9974287,36.140702],[116.0097208,35.1508431],[114.8735561,35.1359055]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLE","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLE_N05.11","eo:cloud_cover":61.273545,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLE_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.115494,"s2:mean_solar_zenith":22.112424509398,"s2:mean_solar_azimuth":125.769073487741,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":21.663535,"s2:thin_cirrus_percentage":21.789815,"s2:cloud_shadow_percentage":2.258105,"s2:nodata_pixel_percentage":18.485914,"s2:unclassified_percentage":0.487194,"s2:not_vegetated_percentage":14.201862,"s2:degraded_msi_data_percentage":0.0151,"s2:high_proba_clouds_percentage":18.484378,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":20.999353,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736","bbox":[114.8107801,34.2336874,116.020408,35.2390176],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R60m/T50SLD_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R60m/T50SLD_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R20m/T50SLD_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/IMG_DATA/R10m/T50SLD_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3790200.0,409800.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/GRANULE/L2A_T50SLD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.8107801,34.9069749],[114.8414251,35.0188806],[114.8819738,35.1665639],[114.8978821,35.2243822],[116.00865,35.2390176],[116.020408,34.2490077],[114.8285025,34.2336874],[114.8107801,34.9069749]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLD_N05.11","eo:cloud_cover":78.448844,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.034417,"s2:mean_solar_zenith":21.5437499415022,"s2:mean_solar_azimuth":124.060060209001,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":16.212113,"s2:thin_cirrus_percentage":15.942572,"s2:cloud_shadow_percentage":0.25766,"s2:nodata_pixel_percentage":1.390798,"s2:unclassified_percentage":0.02907,"s2:not_vegetated_percentage":5.016909,"s2:degraded_msi_data_percentage":0.0217,"s2:high_proba_clouds_percentage":37.523243,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":24.983029,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736","bbox":[114.8489629,32.548068,116.0392875,33.4357788],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_AOT_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R60m/T50SLB_20250717T025529_B01_60m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B02_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B03_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B04_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B05_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B06_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B07_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_B08_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R60m/T50SLB_20250717T025529_B09_60m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B11_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B12_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_B8A_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R20m/T50SLB_20250717T025529_SCL_20m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_WVP_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/IMG_DATA/R10m/T50SLB_20250717T025529_TCI_10m.tif","proj:bbox":[300000.0,3590220.0,409800.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/GRANULE/L2A_T50SLB_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/LB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SLB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[116.0392875,32.548068],[115.7887615,32.599859],[115.7889327,32.6004646],[115.7889023,32.6004706],[115.7891664,32.6014053],[115.7889536,32.6014471],[115.7889979,32.6016034],[115.7889594,32.6016109],[115.7890053,32.6017728],[115.5566318,32.6474306],[115.5560434,32.6453339],[115.2930914,32.6951129],[115.2937843,32.697615],[115.0578661,32.7390137],[115.0578174,32.7388361],[115.0566854,32.739034],[115.0561579,32.7371155],[114.8646338,32.7699863],[114.8489629,33.4209188],[116.0296449,33.4357788],[116.0392875,32.548068]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SLB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SLB_N05.11","eo:cloud_cover":22.575794,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SLB_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.203345,"s2:mean_solar_zenith":20.4735728391914,"s2:mean_solar_azimuth":120.350540525566,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":47.479817,"s2:thin_cirrus_percentage":0.78185,"s2:cloud_shadow_percentage":6.80596,"s2:nodata_pixel_percentage":22.615021,"s2:unclassified_percentage":1.604452,"s2:not_vegetated_percentage":21.323994,"s2:degraded_msi_data_percentage":0.0201,"s2:high_proba_clouds_percentage":9.574964,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":12.21898,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736","bbox":[114.6260528,34.2288219,114.9346265,35.2250277],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R60m/T50SKD_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R60m/T50SKD_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3900000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R20m/T50SKD_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3900000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/IMG_DATA/R10m/T50SKD_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,3790200.0,309780.0,3900000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3900000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/GRANULE/L2A_T50SKD_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KD/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKD_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.6260528,34.2288219],[114.6400448,34.28055],[114.6801328,34.4281839],[114.7203285,34.5758146],[114.7606131,34.7235075],[114.8009815,34.8711936],[114.8414251,35.0188806],[114.8819738,35.1665639],[114.897987,35.2247636],[114.9098528,35.2250277],[114.9346265,34.2355216],[114.6260528,34.2288219]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SKD","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SKD_N05.11","eo:cloud_cover":43.614638,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SKD_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.0,"s2:mean_solar_zenith":22.2761367578294,"s2:mean_solar_azimuth":122.199905893594,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":48.51774,"s2:thin_cirrus_percentage":19.065133,"s2:cloud_shadow_percentage":0.279661,"s2:nodata_pixel_percentage":86.968803,"s2:unclassified_percentage":0.038013,"s2:not_vegetated_percentage":7.548423,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":8.437844,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":16.11166,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736","bbox":[114.3823884,33.3223707,114.9561528,34.3242059],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R60m/T50SKC_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R60m/T50SKC_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3800040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R20m/T50SKC_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3800040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/IMG_DATA/R10m/T50SKC_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,3690240.0,309780.0,3800040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3800040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/GRANULE/L2A_T50SKC_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KC/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKC_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.3823884,33.3223707],[114.4016363,33.394506],[114.4411648,33.5422871],[114.4807933,33.6900103],[114.5205076,33.8376791],[114.5602767,33.9852886],[114.6001102,34.1329128],[114.6400448,34.28055],[114.6502313,34.3180644],[114.9324553,34.3242059],[114.9561528,33.3345403],[114.3823884,33.3223707]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SKC","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SKC_N05.11","eo:cloud_cover":11.416361,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SKC_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.145795,"s2:mean_solar_zenith":21.7449250375714,"s2:mean_solar_azimuth":120.441765877917,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":61.459398,"s2:thin_cirrus_percentage":1.473696,"s2:cloud_shadow_percentage":3.381855,"s2:nodata_pixel_percentage":64.255857,"s2:unclassified_percentage":1.099615,"s2:not_vegetated_percentage":22.484984,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":3.599652,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":6.343013,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736","bbox":[114.2607634,32.7519975,114.9694467,33.4226979],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_AOT_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R60m/T50SKB_20250717T025529_B01_60m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B02_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B03_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B04_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B05_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B06_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B07_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_B08_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R60m/T50SKB_20250717T025529_B09_60m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,199980.0,0.0,-60.0,3700020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B11_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B12_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_B8A_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R20m/T50SKB_20250717T025529_SCL_20m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,199980.0,0.0,-20.0,3700020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_WVP_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/IMG_DATA/R10m/T50SKB_20250717T025529_TCI_10m.tif","proj:bbox":[199980.0,3590220.0,309780.0,3700020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,199980.0,0.0,-10.0,3700020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/GRANULE/L2A_T50SKB_A043673_20250717T030244/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/50/S/KB/2025/07/17/S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE/DATASTRIP/DS_2BPS_20250717T052736_S20250717T030244/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2B_MSIL2A_20250717T025529_R032_T50SKB_20250717T052736&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[114.9694467,32.7519975],[114.7866736,32.7833664],[114.7873809,32.7859752],[114.7868224,32.7860614],[114.7868867,32.7862979],[114.5420852,32.8238584],[114.5415941,32.8220329],[114.2607634,32.8652053],[114.2835294,32.9510485],[114.3228282,33.0988814],[114.362195,33.2466921],[114.4016363,33.394506],[114.4060608,33.4110471],[114.9540887,33.4226979],[114.9694467,32.7519975]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:55:29.024000Z","platform":"Sentinel-2B","proj:epsg":32650,"instruments":["msi"],"s2:mgrs_tile":"50SKB","constellation":"Sentinel 2","s2:granule_id":"S2B_OPER_MSI_L2A_TL_2BPS_20250717T052736_A043673_T50SKB_N05.11","eo:cloud_cover":22.665247,"s2:datatake_id":"GS2B_20250717T025529_043673_N05.11","s2:product_uri":"S2B_MSIL2A_20250717T025529_N0511_R032_T50SKB_20250717T052736.SAFE","s2:datastrip_id":"S2B_OPER_MSI_L2A_DS_2BPS_20250717T052736_S20250717T030244_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T05:27:36.000000Z","sat:relative_orbit":32,"s2:water_percentage":0.044582,"s2:mean_solar_zenith":21.2368714393912,"s2:mean_solar_azimuth":118.590050519461,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":43.758434,"s2:thin_cirrus_percentage":0.316356,"s2:cloud_shadow_percentage":6.892233,"s2:nodata_pixel_percentage":67.121089,"s2:unclassified_percentage":1.238217,"s2:not_vegetated_percentage":25.397611,"s2:degraded_msi_data_percentage":0.0001,"s2:high_proba_clouds_percentage":9.031008,"s2:reflectance_conversion_factor":0.967690025886324,"s2:medium_proba_clouds_percentage":13.317885,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317","bbox":[156.1138782,71.0946572,157.4042726,71.8926319],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R60m/T57WVV_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R60m/T57WVV_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R20m/T57WVV_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/IMG_DATA/R10m/T57WVV_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7890240.0,509760.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/GRANULE/L2A_T57WVV_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/57/W/VV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T57WVV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.1138782,71.8926319],[156.1865749,71.8773005],[156.1873346,71.8776742],[156.1876319,71.8776116],[156.1876651,71.8776279],[156.188117,71.877533],[156.1900524,71.8784839],[156.8140604,71.7434156],[156.8138246,71.7433015],[156.8144989,71.7431445],[156.8104562,71.7411889],[157.1727301,71.6575571],[157.4042726,71.6037897],[157.1415077,71.4783743],[156.8815306,71.3524484],[156.6249589,71.2261815],[156.3719088,71.0996042],[156.3638923,71.0955339],[156.2327264,71.0946572],[156.1138782,71.8926319]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32657,"instruments":["msi"],"s2:mgrs_tile":"57WVV","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T57WVV_N05.11","eo:cloud_cover":0.808194,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T57WVV_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":99.191809,"s2:mean_solar_zenith":50.6476398763521,"s2:mean_solar_azimuth":189.674210386958,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.807331,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":82.696778,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0252,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.000863,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317","bbox":[152.9994042,71.9896812,155.6536986,72.4824862],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R60m/T56XNF_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R60m/T56XNF_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R20m/T56XNF_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/IMG_DATA/R10m/T56XNF_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/GRANULE/L2A_T56XNF_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/NF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XNF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[152.9994042,72.4824862],[153.2193985,72.4460466],[153.2161141,72.4442957],[153.2179226,72.4439833],[153.2172622,72.443631],[153.7972632,72.3435368],[153.8006367,72.3453062],[153.8006751,72.3452996],[153.8010871,72.3455156],[154.444778,72.2286253],[154.4440394,72.2282447],[154.4441165,72.22823],[154.4413735,72.2268181],[154.4427393,72.2265573],[154.4425015,72.2264349],[155.0043533,72.1190371],[155.0047979,72.1192626],[155.0048938,72.1192443],[155.0075676,72.1205995],[155.1169701,72.0988713],[155.6369063,71.9954883],[155.6368743,71.9954724],[155.6372575,71.9953915],[155.6342712,71.9939029],[155.6352357,71.9937003],[155.635059,71.9936122],[155.6536986,71.9896812],[152.9994198,72.0113634],[152.9994042,72.4824862]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XNF","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56XNF_N05.11","eo:cloud_cover":96.588451,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56XNF_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":3.411547,"s2:mean_solar_zenith":51.4036388492559,"s2:mean_solar_azimuth":185.856579772221,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":0.549547,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":79.889983,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.006,"s2:high_proba_clouds_percentage":93.191421,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.847482,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317","bbox":[149.9444535,71.989773,153.2899112,72.9336541],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R60m/T56XMF_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R60m/T56XMF_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R20m/T56XMF_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/IMG_DATA/R10m/T56XMF_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7990200.0,509760.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/GRANULE/L2A_T56XMF_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/X/MF/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56XMF_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.9444535,72.9336541],[150.5960508,72.8460045],[150.5930046,72.8442415],[150.5960489,72.8438183],[150.5954453,72.8434687],[151.0566301,72.779791],[151.2382524,72.7545429],[151.2384947,72.7546802],[151.2395613,72.7545329],[151.2427866,72.7563617],[151.5095988,72.7163929],[151.9434834,72.6512482],[151.9408115,72.6497676],[151.9427225,72.6494703],[151.9424003,72.6492914],[151.9427767,72.649233],[151.942188,72.6489065],[152.5493995,72.5547733],[152.5525707,72.556499],[153.2193985,72.4460466],[153.2161141,72.4442957],[153.2179226,72.4439833],[153.2172622,72.443631],[153.2899112,72.4310936],[153.2831475,72.0111578],[150.1000757,71.989773],[149.9444535,72.9336541]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56XMF","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56XMF_N05.11","eo:cloud_cover":36.172736,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56XMF_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":63.827264,"s2:mean_solar_zenith":51.3424657006491,"s2:mean_solar_azimuth":182.33412651875,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":2.19706,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":30.161938,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0208,"s2:high_proba_clouds_percentage":27.641454,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":6.334222,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317","bbox":[155.7661688,71.0815674,157.4042726,71.9394383],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R60m/T56WPE_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R60m/T56WPE_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R20m/T56WPE_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/IMG_DATA/R10m/T56WPE_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/GRANULE/L2A_T56WPE_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PE/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPE_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[155.8919355,71.9394383],[156.1865749,71.8773005],[156.1873346,71.8776742],[156.1876319,71.8776116],[156.1876651,71.8776279],[156.188117,71.877533],[156.1900524,71.8784839],[156.8140604,71.7434156],[156.8138246,71.7433015],[156.8144989,71.7431445],[156.8104562,71.7411889],[157.1727301,71.6575571],[157.4042726,71.6037897],[157.1415077,71.4783743],[156.8815306,71.3524484],[156.6249589,71.2261815],[156.3719088,71.0996042],[156.3363851,71.0815674],[155.7661688,71.0946736],[155.8919355,71.9394383]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WPE","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WPE_N05.11","eo:cloud_cover":6.615165,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WPE_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":50.099075,"s2:mean_solar_zenith":50.5852245554377,"s2:mean_solar_azimuth":189.292703639737,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":43.285748,"s2:vegetation_percentage":0.000012,"s2:thin_cirrus_percentage":6.175373,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":73.227441,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0264,"s2:high_proba_clouds_percentage":0.000012,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.439779,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317","bbox":[155.7222819,70.7655909,156.503808,71.1822592],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R60m/T56WPD_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R60m/T56WPD_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R20m/T56WPD_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/IMG_DATA/R10m/T56WPD_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7790220.0,709800.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/GRANULE/L2A_T56WPD_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/PD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WPD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.503808,71.1655811],[156.3719088,71.0996042],[156.1220054,70.9727179],[155.8751998,70.845503],[155.7222819,70.7655909],[155.7785751,71.1822592],[156.503808,71.1655811]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WPD","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WPD_N05.11","eo:cloud_cover":35.880098,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WPD_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":32.543823,"s2:mean_solar_zenith":49.6953014001368,"s2:mean_solar_azimuth":189.242109828946,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000264,"s2:vegetation_percentage":19.556281,"s2:thin_cirrus_percentage":33.529049,"s2:cloud_shadow_percentage":0.14037,"s2:nodata_pixel_percentage":94.972533,"s2:unclassified_percentage":0.985492,"s2:not_vegetated_percentage":10.893675,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.128425,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.222621,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317","bbox":[152.9994439,70.2047216,156.049855,71.2028426],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R60m/T56WND_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R60m/T56WND_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R20m/T56WND_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/IMG_DATA/R10m/T56WND_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/GRANULE/L2A_T56WND_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/ND/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WND_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[156.0109186,70.9154587],[155.8751998,70.845503],[155.6311487,70.7179664],[155.3897268,70.5901472],[155.1510019,70.4620067],[154.9150514,70.3335674],[154.6821372,70.2048519],[154.6819046,70.2047216],[152.9994705,70.2183208],[152.9994439,71.2028426],[156.049855,71.1780394],[156.0109186,70.9154587]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WND","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WND_N05.11","eo:cloud_cover":56.856114,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WND_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":15.574054,"s2:mean_solar_zenith":49.6197441185099,"s2:mean_solar_azimuth":185.964816080689,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.000039,"s2:vegetation_percentage":18.447578,"s2:thin_cirrus_percentage":41.570169,"s2:cloud_shadow_percentage":1.502586,"s2:nodata_pixel_percentage":15.417919,"s2:unclassified_percentage":0.599417,"s2:not_vegetated_percentage":7.02021,"s2:degraded_msi_data_percentage":0.0181,"s2:high_proba_clouds_percentage":2.51416,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":12.771785,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317","bbox":[152.9994682,69.3200417,154.8382891,70.3060175],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R60m/T56WNC_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R60m/T56WNC_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7800000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R20m/T56WNC_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7800000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/IMG_DATA/R10m/T56WNC_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7690200.0,609780.0,7800000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7800000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/GRANULE/L2A_T56WNC_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NC/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNC_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[154.8382891,70.2911462],[154.6821372,70.2048519],[154.4520274,70.0759117],[154.2522737,69.9620968],[154.2308369,69.9499096],[154.2270893,69.9477473],[154.2251344,69.9466335],[154.1821007,69.9217891],[154.0063688,69.8203926],[153.9848081,69.8077666],[153.7789296,69.6873514],[153.5598436,69.5573057],[153.3434392,69.4270398],[153.1680828,69.3200417],[152.9994925,69.3213967],[152.9994682,70.3060175],[154.8382891,70.2911462]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WNC","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WNC_N05.11","eo:cloud_cover":28.974444,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WNC_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":6.244714,"s2:mean_solar_zenith":48.727798516941,"s2:mean_solar_azimuth":186.035519925034,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.007582,"s2:vegetation_percentage":61.014575,"s2:thin_cirrus_percentage":24.466808,"s2:cloud_shadow_percentage":0.602819,"s2:nodata_pixel_percentage":65.473133,"s2:unclassified_percentage":0.150109,"s2:not_vegetated_percentage":3.005756,"s2:degraded_msi_data_percentage":0.0246,"s2:high_proba_clouds_percentage":1.617663,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.889972,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317","bbox":[152.9994904,69.2161524,153.3108208,69.4096405],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R60m/T56WNB_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R60m/T56WNB_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R20m/T56WNB_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/IMG_DATA/R10m/T56WNB_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7590240.0,609780.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/GRANULE/L2A_T56WNB_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/NB/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WNB_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[153.3108208,69.4071369],[153.1295349,69.2965207],[152.9994948,69.2161524],[152.9994904,69.4096405],[153.3108208,69.4071369]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WNB","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WNB_N05.11","eo:cloud_cover":0.0,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WNB_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":16.187942,"s2:mean_solar_zenith":47.8365840469843,"s2:mean_solar_azimuth":186.116465845849,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":79.936624,"s2:thin_cirrus_percentage":0.0,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.936272,"s2:unclassified_percentage":0.015907,"s2:not_vegetated_percentage":3.85953,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317","bbox":[150.2203151,70.1988218,153.2713887,71.2026464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R60m/T56WMD_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R60m/T56WMD_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R20m/T56WMD_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/IMG_DATA/R10m/T56WMD_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7790220.0,509760.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/GRANULE/L2A_T56WMD_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MD/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMD_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.2203151,71.1822428],[153.2713887,71.2026464],[153.258393,70.2181351],[150.3532315,70.1988218],[150.2203151,71.1822428]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WMD","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WMD_N05.11","eo:cloud_cover":30.180329,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WMD_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":22.282319,"s2:mean_solar_zenith":49.5549166581445,"s2:mean_solar_azimuth":182.67867868366,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001221,"s2:vegetation_percentage":34.504521,"s2:thin_cirrus_percentage":23.401777,"s2:cloud_shadow_percentage":3.834599,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.141184,"s2:not_vegetated_percentage":9.055829,"s2:degraded_msi_data_percentage":0.0119,"s2:high_proba_clouds_percentage":2.924363,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":3.854188,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317","bbox":[150.5541183,67.6415161,151.8870665,68.5035751],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_AOT_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R60m/T56WMA_20250717T020711_B01_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B02_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B03_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B04_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B05_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B06_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B07_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_B08_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R60m/T56WMA_20250717T020711_B09_60m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B11_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B12_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_B8A_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R20m/T56WMA_20250717T020711_SCL_20m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_WVP_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/IMG_DATA/R10m/T56WMA_20250717T020711_TCI_10m.tif","proj:bbox":[399960.0,7490220.0,509760.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/GRANULE/L2A_T56WMA_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/56/W/MA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T56WMA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[151.8870665,68.5035751],[151.6963116,68.3760551],[151.501133,68.2436697],[151.3306669,68.1266474],[151.3128158,68.1144175],[151.3098001,68.1123227],[151.3080017,68.1110881],[151.11682,67.9783099],[150.9277644,67.8453157],[150.7405053,67.7122238],[150.6423828,67.6415161],[150.5541183,68.494811],[151.8870665,68.5035751]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32656,"instruments":["msi"],"s2:mgrs_tile":"56WMA","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T56WMA_N05.11","eo:cloud_cover":0.260707,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T56WMA_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":23.086421,"s2:mean_solar_zenith":46.8742524507715,"s2:mean_solar_azimuth":183.187959173324,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":75.189161,"s2:thin_cirrus_percentage":0.260707,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":78.507793,"s2:unclassified_percentage":0.000123,"s2:not_vegetated_percentage":1.463589,"s2:degraded_msi_data_percentage":0.0257,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317","bbox":[149.8987666,71.9166252,153.2446805,72.9191954],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R60m/T55XFA_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R60m/T55XFA_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R20m/T55XFA_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/IMG_DATA/R10m/T55XFA_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7990200.0,709800.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/GRANULE/L2A_T55XFA_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/FA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XFA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.051941,72.9191954],[150.5960508,72.8460045],[150.5930046,72.8442415],[150.5960489,72.8438183],[150.5954453,72.8434687],[151.0566301,72.779791],[151.2382524,72.7545429],[151.2384947,72.7546802],[151.2395613,72.7545329],[151.2427866,72.7563617],[151.5095988,72.7163929],[151.9434834,72.6512482],[151.9408115,72.6497676],[151.9427225,72.6494703],[151.9424003,72.6492914],[151.9427767,72.649233],[151.942188,72.6489065],[152.5493995,72.5547733],[152.5525707,72.556499],[153.2193985,72.4460466],[153.2161141,72.4442957],[153.2179226,72.4439833],[153.2172622,72.443631],[153.2446805,72.4388993],[153.0648961,71.9166252],[149.8987666,71.9897902],[150.051941,72.9191954]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XFA","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55XFA_N05.11","eo:cloud_cover":32.868475,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55XFA_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":39.013121,"s2:mean_solar_zenith":51.2931417795957,"s2:mean_solar_azimuth":182.281583054438,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":28.06398,"s2:vegetation_percentage":0.014809,"s2:thin_cirrus_percentage":6.119839,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":25.548658,"s2:unclassified_percentage":0.0,"s2:not_vegetated_percentage":0.039622,"s2:degraded_msi_data_percentage":0.0206,"s2:high_proba_clouds_percentage":18.249761,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":8.498877,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317","bbox":[148.3295008,71.9853678,150.3435503,72.9465808],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R60m/T55XEA_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R60m/T55XEA_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8100000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R20m/T55XEA_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8100000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/IMG_DATA/R10m/T55XEA_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7990200.0,609780.0,8100000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8100000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/GRANULE/L2A_T55XEA_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/X/EA/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55XEA_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[148.3295008,72.0004983],[148.3331336,72.0028979],[148.5412191,72.138423],[148.7520334,72.2737263],[148.9654906,72.408815],[149.1815603,72.5436977],[149.4007946,72.6783585],[149.6231885,72.812805],[149.8483552,72.9465808],[150.3435503,72.8799696],[150.181736,71.9853678],[148.3295008,72.0004983]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55XEA","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55XEA_N05.11","eo:cloud_cover":0.165311,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55XEA_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":78.549856,"s2:mean_solar_zenith":51.3316846054059,"s2:mean_solar_azimuth":178.758447433788,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":6.250601,"s2:vegetation_percentage":9.62053,"s2:thin_cirrus_percentage":0.079091,"s2:cloud_shadow_percentage":0.125453,"s2:nodata_pixel_percentage":65.46303,"s2:unclassified_percentage":0.00707,"s2:not_vegetated_percentage":5.281178,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.022864,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.063356,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317","bbox":[149.7661688,71.0251958,153.093564,72.0778947],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R60m/T55WFV_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R60m/T55WFV_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R20m/T55WFV_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/IMG_DATA/R10m/T55WFV_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7890240.0,709800.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/GRANULE/L2A_T55WFV_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.9125486,72.0778947],[153.093564,72.0043476],[152.7889605,71.0251958],[149.7661688,71.0946736],[149.9125486,72.0778947]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFV","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFV_N05.11","eo:cloud_cover":14.408642,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFV_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":62.24485,"s2:mean_solar_zenith":50.3985404696825,"s2:mean_solar_azimuth":182.119104010669,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":5.137096,"s2:vegetation_percentage":8.447716,"s2:thin_cirrus_percentage":7.188072,"s2:cloud_shadow_percentage":0.3712,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.017366,"s2:not_vegetated_percentage":9.373128,"s2:degraded_msi_data_percentage":0.0177,"s2:high_proba_clouds_percentage":4.545556,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":2.675014,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317","bbox":[149.4354563,68.3567732,152.3308902,69.3909851],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R60m/T55WFS_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R60m/T55WFS_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7700040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R20m/T55WFS_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7700040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/IMG_DATA/R10m/T55WFS_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7590240.0,709800.0,7700040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7700040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/GRANULE/L2A_T55WFS_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FS/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFS_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[152.1824531,68.69759],[152.094174,68.6401589],[151.8940049,68.5082134],[151.6963116,68.3760551],[151.6678839,68.3567732],[149.4354563,68.4071896],[149.546266,69.3909851],[152.3308902,69.3276752],[152.1824531,68.69759]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFS","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFS_N05.11","eo:cloud_cover":0.789332,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFS_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":16.580273,"s2:mean_solar_zenith":47.7128243449971,"s2:mean_solar_azimuth":181.748147889462,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":77.942979,"s2:thin_cirrus_percentage":0.556001,"s2:cloud_shadow_percentage":0.55987,"s2:nodata_pixel_percentage":2.93372,"s2:unclassified_percentage":0.029898,"s2:not_vegetated_percentage":4.097645,"s2:degraded_msi_data_percentage":0.019,"s2:high_proba_clouds_percentage":0.077236,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.156095,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317","bbox":[149.3431637,67.4864868,151.7945524,68.4948252],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R60m/T55WFR_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R60m/T55WFR_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7600020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R20m/T55WFR_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7600020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/IMG_DATA/R10m/T55WFR_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7490220.0,709800.0,7600020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7600020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/GRANULE/L2A_T55WFR_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FR/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFR_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[151.7945524,68.4417292],[151.6963116,68.3760551],[151.501133,68.2436697],[151.3306669,68.1266474],[151.3128158,68.1144175],[151.3098001,68.1123227],[151.3080017,68.1110881],[151.11682,67.9783099],[150.9277644,67.8453157],[150.7405053,67.7122238],[150.5554665,67.5788836],[150.4289849,67.4864868],[149.3431637,67.5108527],[149.4449048,68.4948252],[151.7945524,68.4417292]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFR","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFR_N05.11","eo:cloud_cover":4.023106,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFR_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":12.379175,"s2:mean_solar_zenith":46.8171259569399,"s2:mean_solar_azimuth":181.656167535865,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":75.724196,"s2:thin_cirrus_percentage":0.328595,"s2:cloud_shadow_percentage":3.949002,"s2:nodata_pixel_percentage":34.944767,"s2:unclassified_percentage":0.226697,"s2:not_vegetated_percentage":3.697826,"s2:degraded_msi_data_percentage":0.0183,"s2:high_proba_clouds_percentage":1.715708,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":1.978803,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317","bbox":[149.2581395,66.613896,150.5456307,67.5985039],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R60m/T55WFQ_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R60m/T55WFQ_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7500000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R20m/T55WFQ_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7500000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/IMG_DATA/R10m/T55WFQ_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7390200.0,709800.0,7500000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7500000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/GRANULE/L2A_T55WFQ_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FQ/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFQ_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[150.5456307,67.5716984],[150.3725878,67.4452878],[150.1914159,67.3114862],[150.011373,67.1776197],[149.8336593,67.0434616],[149.6577203,66.9091737],[149.4838735,66.7747109],[149.3119871,66.6401049],[149.2789046,66.613896],[149.2581395,66.6143589],[149.3518535,67.5985039],[150.5456307,67.5716984]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFQ","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFQ_N05.11","eo:cloud_cover":18.311203,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFQ_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":0.16762,"s2:mean_solar_zenith":45.9212867035903,"s2:mean_solar_azimuth":181.577292223729,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":70.429194,"s2:thin_cirrus_percentage":8.949737,"s2:cloud_shadow_percentage":8.770066,"s2:nodata_pixel_percentage":76.459223,"s2:unclassified_percentage":0.405287,"s2:not_vegetated_percentage":1.91663,"s2:degraded_msi_data_percentage":0.0258,"s2:high_proba_clouds_percentage":4.362518,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":4.998947,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317","bbox":[149.256871,66.5964405,149.3882669,66.7025631],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_AOT_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R60m/T55WFP_20250717T020711_B01_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B02_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B03_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B04_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B05_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B06_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B07_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_B08_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R60m/T55WFP_20250717T020711_B09_60m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,7400040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B11_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B12_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_B8A_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R20m/T55WFP_20250717T020711_SCL_20m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,7400040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_WVP_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/IMG_DATA/R10m/T55WFP_20250717T020711_TCI_10m.tif","proj:bbox":[600000.0,7290240.0,709800.0,7400040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,7400040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/GRANULE/L2A_T55WFP_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/FP/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WFP_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[149.3882669,66.6998404],[149.3119871,66.6401049],[149.256871,66.5964405],[149.2662054,66.7025631],[149.3882669,66.6998404]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WFP","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WFP_N05.11","eo:cloud_cover":14.128898,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WFP_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":9.20466,"s2:mean_solar_zenith":45.0258444072951,"s2:mean_solar_azimuth":181.510355019838,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":72.944981,"s2:thin_cirrus_percentage":14.128898,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.753672,"s2:unclassified_percentage":0.006734,"s2:not_vegetated_percentage":3.714728,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":0.0,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":0.0,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317","bbox":[147.0447745,71.0904748,150.196858,72.0876178],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R60m/T55WEV_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R60m/T55WEV_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,8000040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R20m/T55WEV_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,8000040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/IMG_DATA/R10m/T55WEV_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7890240.0,609780.0,8000040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,8000040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/GRANULE/L2A_T55WEV_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EV/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEV_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[147.0447745,71.1147861],[147.1430576,71.1858658],[147.3347997,71.3224894],[147.5290457,71.4589168],[147.7256634,71.5951974],[147.9251834,71.7312914],[148.1276863,71.8671899],[148.3331336,72.0028979],[148.4632127,72.0876178],[150.196858,72.073449],[150.0362417,71.0904748],[147.0447745,71.1147861]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WEV","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WEV_N05.11","eo:cloud_cover":4.320446,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WEV_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":28.570759,"s2:mean_solar_zenith":50.436239013637,"s2:mean_solar_azimuth":178.719528383963,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.556214,"s2:vegetation_percentage":43.16763,"s2:thin_cirrus_percentage":0.006602,"s2:cloud_shadow_percentage":6.721912,"s2:nodata_pixel_percentage":24.21111,"s2:unclassified_percentage":0.254749,"s2:not_vegetated_percentage":16.408287,"s2:degraded_msi_data_percentage":0.0097,"s2:high_proba_clouds_percentage":2.393112,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":1.920732,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317","bbox":[146.9994471,70.1948429,150.049855,71.2014965],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_AOT_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R60m/T55WEU_20250717T020711_B01_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B02_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B03_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B04_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B05_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B06_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B07_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_B08_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R60m/T55WEU_20250717T020711_B09_60m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,7900020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B11_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B12_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_B8A_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R20m/T55WEU_20250717T020711_SCL_20m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,7900020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_WVP_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/IMG_DATA/R10m/T55WEU_20250717T020711_TCI_10m.tif","proj:bbox":[499980.0,7790220.0,609780.0,7900020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,7900020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/GRANULE/L2A_T55WEU_A004506_20250717T020714/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/55/W/EU/2025/07/17/S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE/DATASTRIP/DS_2CPS_20250717T044317_S20250717T020714/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[146.9994471,71.0820047],[147.1430576,71.1858658],[147.1649942,71.2014965],[150.049855,71.1780394],[149.9040632,70.1948429],[146.9994705,70.2183208],[146.9994471,71.0820047]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2025-07-17T02:07:11.025000Z","platform":"Sentinel-2C","proj:epsg":32655,"instruments":["msi"],"s2:mgrs_tile":"55WEU","constellation":"Sentinel 2","s2:granule_id":"S2C_OPER_MSI_L2A_TL_2CPS_20250717T044317_A004506_T55WEU_N05.11","eo:cloud_cover":15.072462,"s2:datatake_id":"GS2C_20250717T020711_004506_N05.11","s2:product_uri":"S2C_MSIL2A_20250717T020711_N0511_R103_T55WEU_20250717T044317.SAFE","s2:datastrip_id":"S2C_OPER_MSI_L2A_DS_2CPS_20250717T044317_S20250717T020714_N05.11","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2025-07-17T04:43:17.000000Z","sat:relative_orbit":103,"s2:water_percentage":13.500412,"s2:mean_solar_zenith":49.5401095399085,"s2:mean_solar_azimuth":178.688054056801,"s2:processing_baseline":"05.11","s2:snow_ice_percentage":0.001239,"s2:vegetation_percentage":47.441328,"s2:thin_cirrus_percentage":0.028125,"s2:cloud_shadow_percentage":13.83779,"s2:nodata_pixel_percentage":0.388642,"s2:unclassified_percentage":0.420075,"s2:not_vegetated_percentage":9.726688,"s2:degraded_msi_data_percentage":0.0204,"s2:high_proba_clouds_percentage":8.549342,"s2:reflectance_conversion_factor":0.967687397715752,"s2:medium_proba_clouds_percentage":6.494995,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"collections":["sentinel-2-l2a"],"token":"next:sentinel-2-l2a:S2C_MSIL2A_20250717T020711_R103_T55WEU_20250717T044317"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '131723' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 13:05:30 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T130529Z-167d46d96d844j9nhC1DENytps0000000stg000000001p46 status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_client/test_collections_are_clients.yaml000066400000000000000000004321731503646565400306150ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3361' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:32 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125031Z-167d46d96d8rwmk4hC1DEN36180000000srg000000001zdw status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by response: body: string: "{\"id\":\"cil-gdpcir-cc-by\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by\"},{\"rel\":\"license\",\"href\":\"https://spdx.org/licenses/CC-BY-4.0.html\",\"type\":\"text/html\",\"title\":\"Creative Commons Attribution 4.0 International\"},{\"rel\":\"cite-as\",\"href\":\"https://zenodo.org/record/6403794\",\"type\":\"text/html\"},{\"rel\":\"describedby\",\"href\":\"https://github.com/ClimateImpactLab/downscaleCMIP6/\",\"type\":\"text/html\",\"title\":\"Project homepage\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gdpcir.png\",\"type\":\"image/png\",\"title\":\"Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/cil-gdpcir-cc-by.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1950-01-01T00:00:00Z\",\"2100-12-31T00:00:00Z\"]]}},\"license\":\"CC-BY-4.0\",\"sci:doi\":\"10.5194/egusphere-2022-1513\",\"keywords\":[\"CMIP6\",\"Climate Impact Lab\",\"Rhodium Group\",\"Precipitation\",\"Temperature\"],\"providers\":[{\"url\":\"https://impactlab.org/\",\"name\":\"Climate Impact Lab\",\"roles\":[\"producer\"]},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"cmip6:variable\":[\"pr\",\"tasmax\",\"tasmin\"],\"cmip6:source_id\":[\"BCC-CSM2-MR\",\"ACCESS-ESM1-5\",\"ACCESS-CM2\",\"MIROC-ES2L\",\"MIROC6\",\"NorESM2-LM\",\"NorESM2-MM\",\"GFDL-CM4\",\"GFDL-ESM4\",\"NESM3\",\"MPI-ESM1-2-HR\",\"HadGEM3-GC31-LL\",\"UKESM1-0-LL\",\"MPI-ESM1-2-LR\",\"EC-Earth3\",\"EC-Earth3-AerChem\",\"EC-Earth3-CC\",\"EC-Earth3-Veg\",\"EC-Earth3-Veg-LR\",\"CMCC-CM2-SR5\",\"CMCC-ESM2\"],\"cmip6:experiment_id\":[\"historical\",\"ssp126\",\"ssp245\",\"ssp370\",\"ssp585\"],\"cmip6:institution_id\":[\"BCC\",\"CAS\",\"CCCma\",\"CMCC\",\"CSIRO\",\"CSIRO-ARCCSS\",\"DKRZ\",\"EC-Earth-Consortium\",\"INM\",\"MIROC\",\"MOHC\",\"MPI-M\",\"NCC\",\"NOAA-GFDL\",\"NUIST\"]},\"description\":\"The World Climate Research Programme's [6th Coupled Model Intercomparison Project (CMIP6)](https://www.wcrp-climate.org/wgcm-cmip/wgcm-cmip6) represents an enormous advance in the quality, detail, and scope of climate modeling.\\n\\nThe [Global Downscaled Projections for Climate Impacts Research](https://github.com/ClimateImpactLab/downscaleCMIP6) dataset makes this modeling more applicable to understanding the impacts of changes in the climate on humans and society with two key developments: trend-preserving bias correction and downscaling. In this dataset, the [Climate Impact Lab](https://impactlab.org) provides global, daily minimum and maximum air temperature at the surface (`tasmin` and `tasmax`) and daily cumulative surface precipitation (`pr`) corresponding to the CMIP6 historical, ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 scenarios for 25 global climate models on a 1/4-degree regular global grid.\\n\\n## Accessing the data\\n\\nGDPCIR data can be accessed on the Microsoft Planetary Computer. The dataset is made of of three collections, distinguished by data license:\\n* [Public domain (CC0-1.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0)\\n* [Attribution (CC BY 4.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by)\\n\\nEach modeling center with bias corrected and downscaled data in this collection falls into one of these license categories - see the [table below](/dataset/cil-gdpcir-cc-by#available-institutions-models-and-scenarios-by-license-collection) to see which model is in each collection, and see the section below on [Citing, Licensing, and using data produced by this project](/dataset/cil-gdpcir-cc-by#citing-licensing-and-using-data-produced-by-this-project) for citations and additional information about each license.\\n\\n## Data format & contents\\n\\nThe data is stored as partitioned zarr stores (see [https://zarr.readthedocs.io](https://zarr.readthedocs.io)), each of which includes thousands of data and metadata files covering the full time span of the experiment. Historical zarr stores contain just over 50 GB, while SSP zarr stores contain nearly 70GB. Each store is stored as a 32-bit float, with dimensions time (daily datetime), lat (float latitude), and lon (float longitude). The data is chunked at each interval of 365 days and 90 degree interval of latitude and longitude. Therefore, each chunk is `(365, 360, 360)`, with each chunk occupying approximately 180MB in memory.\\n\\nHistorical data is daily, excluding leap days, from Jan 1, 1950 to Dec 31, 2014; SSP data is daily, excluding leap days, from Jan 1, 2015 to either Dec 31, 2099 or Dec 31, 2100, depending on data availability in the source GCM.\\n\\nThe spatial domain covers all 0.25-degree grid cells, indexed by the grid center, with grid edges on the quarter-degree, using a -180 to 180 longitude convention. Thus, the \u201Clon\u201D coordinate extends from -179.875 to 179.875, and the \u201Clat\u201D coordinate extends from -89.875 to 89.875, with intermediate values at each 0.25-degree increment between (e.g. -179.875, -179.625, -179.375, etc).\\n\\n## Available institutions, models, and scenarios by license collection\\n\\n| Modeling institution | Source model | Available experiments \ | License collection |\\n| -------------------- | ----------------- | ------------------------------------------ | ---------------------- |\\n| CAS | FGOALS-g3 [^1] | SSP2-4.5, SSP3-7.0, and SSP5-8.5 \ | Public domain datasets |\\n| INM | INM-CM4-8 \ | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets |\\n| INM | INM-CM5-0 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets |\\n| BCC | BCC-CSM2-MR \ | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| CMCC | CMCC-CM2-SR5 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 \ | CC-BY-40 |\\n| CMCC | CMCC-ESM2 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 | CC-BY-40 |\\n| CSIRO-ARCCSS | ACCESS-CM2 | SSP2-4.5 and SSP3-7.0 | CC-BY-40 |\\n| CSIRO | ACCESS-ESM1-5 | SSP1-2.6, SSP2-4.5, and SSP3-7.0 | CC-BY-40 |\\n| MIROC | MIROC-ES2L | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| MIROC | MIROC6 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| MOHC | HadGEM3-GC31-LL | SSP1-2.6, SSP2-4.5, and SSP5-8.5 | CC-BY-40 \ |\\n| MOHC | UKESM1-0-LL | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| MPI-M | MPI-ESM1-2-LR | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| MPI-M/DKRZ [^2] | MPI-ESM1-2-HR | SSP1-2.6 and SSP5-8.5 | CC-BY-40 |\\n| NCC | NorESM2-LM | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| NCC | NorESM2-MM | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| NOAA-GFDL \ | GFDL-CM4 | SSP2-4.5 and SSP5-8.5 | CC-BY-40 |\\n| NOAA-GFDL | GFDL-ESM4 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| NUIST | NESM3 | SSP1-2.6, SSP2-4.5, and SSP5-8.5 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3 | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 |\\n| EC-Earth-Consortium \ | EC-Earth3-AerChem | ssp370 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3-CC | ssp245 and ssp585 | CC-BY-40 |\\n| EC-Earth-Consortium \ | EC-Earth3-Veg | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3-Veg-LR | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 |\\n| CCCma | CanESM5 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 | CC-BY-40[^3] \ |\\n\\n*Notes:*\\n\\n[^1]: At the time of running, no ssp1-2.6 precipitation data was available. Therefore, we provide `tasmin` and `tamax` for this model and experiment, but not `pr`. All other model/experiment combinations in the above table include all three variables.\\n\\n[^2]: The institution which ran MPI-ESM1-2-HR\u2019s historical (CMIP) simulations is `MPI-M`, while the future (ScenarioMIP) simulations were run by `DKRZ`. Therefore, the institution component of `MPI-ESM1-2-HR` filepaths differ between `historical` and `SSP` scenarios.\\n\\n[^3]: This dataset was previously licensed as [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/), but was relicensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0) in March, 2023. \\n\\n## Project methods\\n\\nThis project makes use of statistical bias correction and downscaling algorithms, which are specifically designed to accurately represent changes in the extremes. For this reason, we selected Quantile Delta Mapping (QDM), following the method introduced by [Cannon et al. (2015)](https://doi.org/10.1175/JCLI-D-14-00754.1), which preserves quantile-specific trends from the GCM while fitting the full distribution for a given day-of-year to a reference dataset (ERA5).\\n\\nWe then introduce a similar method tailored to increase spatial resolution while preserving extreme behavior, Quantile-Preserving Localized-Analog Downscaling (QPLAD).\\n\\nTogether, these methods provide a robust means to handle both the central and tail behavior seen in climate model output, while aligning the full distribution to a state-of-the-art reanalysis dataset and providing the spatial granularity needed to study surface impacts.\\n\\nFor further documentation, see [Global downscaled projections for climate impacts research (GDPCIR): preserving extremes for modeling future climate impacts](https://egusphere.copernicus.org/preprints/2023/egusphere-2022-1513/) (EGUsphere, 2022 [preprint]).\\n\\n## Citing, licensing, and using data produced by this project\\n\\nProjects making use of the data produced as part of the Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CIL GDPCIR) project are requested to cite both this project and the source datasets from which these results are derived. Additionally, the use of data derived from some GCMs *requires* citations, and some modeling centers impose licensing restrictions & requirements on derived works. See each GCM's license info in the links below for more information.\\n\\n### CIL GDPCIR\\n\\nUsers are requested to cite this project in derived works. Our method documentation paper may be cited using the following:\\n\\n> Gergel, D. R., Malevich, S. B., McCusker, K. E., Tenezakis, E., Delgado, M. T., Fish, M. A., and Kopp, R. E.: Global downscaled projections for climate impacts research (GDPCIR): preserving extremes for modeling future climate impacts, EGUsphere [preprint], https://doi.org/10.5194/egusphere-2022-1513, 2023. \\n\\nThe code repository may be cited using the following:\\n\\n> Diana Gergel, Kelly McCusker, Brewster Malevich, Emile Tenezakis, Meredith Fish, Michael Delgado (2022). ClimateImpactLab/downscaleCMIP6: (v1.0.0). Zenodo. https://doi.org/10.5281/zenodo.6403794\\n\\n### ERA5\\n\\nAdditionally, we request you cite the historical dataset used in bias correction and downscaling, ERA5. See the [ECMWF guide to citing a dataset on the Climate Data Store](https://confluence.ecmwf.int/display/CKB/How+to+acknowledge+and+cite+a+Climate+Data+Store+%28CDS%29+catalogue+entry+and+the+data+published+as+part+of+it):\\n\\n> Hersbach, H, et al. The ERA5 global reanalysis. Q J R Meteorol Soc.2020; 146: 1999\u20132049. DOI: [10.1002/qj.3803](https://doi.org/10.1002/qj.3803)\\n>\\n> Mu\xF1oz Sabater, J., (2019): ERA5-Land hourly data from 1981 to present. Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\n>\\n> Mu\xF1oz Sabater, J., (2021): ERA5-Land hourly data from 1950 to 1980. Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\n\\n### GCM-specific citations & licenses\\n\\nThe CMIP6 simulation data made available through the Earth System Grid Federation (ESGF) are subject to Creative Commons [BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) or [BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) licenses. The Climate Impact Lab has reached out to each of the modeling institutions to request waivers from these terms so the outputs of this project may be used with fewer restrictions, and has been granted permission to release the data using the licenses listed here.\\n\\n#### Public Domain Datasets\\n\\nThe following bias corrected and downscaled model simulations are available in the public domain using a [CC0 1.0 Universal Public Domain Declaration](https://creativecommons.org/publicdomain/zero/1.0/). Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0.\\n\\n* **FGOALS-g3**\\n\\n License description: [data_licenses/FGOALS-g3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/FGOALS-g3.txt)\\n\\n \ CMIP Citation:\\n\\n > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6 CMIP*. Version 20190826. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1783\\n\\n ScenarioMIP Citation:\\n\\n \ > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190818; SSP2-4.5 version 20190818; SSP3-7.0 version 20190820; SSP5-8.5 tasmax version 20190819; SSP5-8.5 tasmin version 20190819; SSP5-8.5 pr version 20190818. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2056\\n\\n\\n* **INM-CM4-8**\\n\\n License description: [data_licenses/INM-CM4-8.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/INM-CM4-8.txt)\\n\\n \ CMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8 model output prepared for CMIP6 CMIP*. Version 20190530. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1422\\n\\n ScenarioMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8 model output prepared for CMIP6 ScenarioMIP*. Version 20190603. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12321\\n\\n\\n* **INM-CM5-0**\\n\\n \ License description: [data_licenses/INM-CM5-0.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/INM-CM5-0.txt)\\n\\n \ CMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0 model output prepared for CMIP6 CMIP*. Version 20190610. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1423\\n\\n ScenarioMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190619; SSP2-4.5 version 20190619; SSP3-7.0 version 20190618; SSP5-8.5 version 20190724. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12322\\n\\n\\n#### CC-BY-4.0\\n\\nThe following bias corrected and downscaled model simulations are licensed under a [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/). Note that this license requires citation of the source model output (included here). Please see https://creativecommons.org/licenses/by/4.0/ for more information. Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by.\\n\\n* **ACCESS-CM2**\\n\\n License description: [data_licenses/ACCESS-CM2.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/ACCESS-CM2.txt)\\n\\n \ CMIP Citation:\\n\\n > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2281\\n\\n ScenarioMIP Citation:\\n\\n \ > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2285\\n\\n\\n* **ACCESS-ESM1-5**\\n\\n \ License description: [data_licenses/ACCESS-ESM1-5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/ACCESS-ESM1-5.txt)\\n\\n \ CMIP Citation:\\n\\n > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2288\\n\\n ScenarioMIP Citation:\\n\\n \ > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 ScenarioMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2291\\n\\n\\n* **BCC-CSM2-MR**\\n\\n License description: [data_licenses/BCC-CSM2-MR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/BCC-CSM2-MR.txt)\\n\\n \ CMIP Citation:\\n\\n > Xin, Xiaoge; Zhang, Jie; Zhang, Fang; Wu, Tongwen; Shi, Xueli; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei, Min **(2018)**. *BCC BCC-CSM2MR model output prepared for CMIP6 CMIP*. Version 20181126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1725\\n\\n \ ScenarioMIP Citation:\\n\\n > Xin, Xiaoge; Wu, Tongwen; Shi, Xueli; Zhang, Fang; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei, Min **(2019)**. *BCC BCC-CSM2MR model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190315; SSP2-4.5 version 20190318; SSP3-7.0 version 20190318; SSP5-8.5 version 20190318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1732\\n\\n\\n* **CMCC-CM2-SR5**\\n\\n License description: [data_licenses/CMCC-CM2-SR5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CMCC-CM2-SR5.txt)\\n\\n \ CMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5 model output prepared for CMIP6 CMIP*. Version 20200616. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1362\\n\\n ScenarioMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200717; SSP2-4.5 version 20200617; SSP3-7.0 version 20200622; SSP5-8.5 version 20200622. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1365\\n\\n\\n* **CMCC-ESM2**\\n\\n License description: [data_licenses/CMCC-ESM2.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CMCC-ESM2.txt)\\n\\n \ CMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele; Butensch\xF6n, Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 CMIP*. Version 20210114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13164\\n\\n \ ScenarioMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele; Butensch\xF6n, Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20210126; SSP2-4.5 version 20210129; SSP3-7.0 version 20210202; SSP5-8.5 version 20210126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13168\\n\\n\\n* **EC-Earth3-AerChem**\\n\\n License description: [data_licenses/EC-Earth3-AerChem.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-AerChem.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 CMIP*. Version 20200624. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.639\\n\\n \ ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 ScenarioMIP*. Version 20200827. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.724\\n\\n\\n* **EC-Earth3-CC**\\n\\n License description: [data_licenses/EC-Earth3-CC.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-CC.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth-3-CC model output prepared for CMIP6 CMIP*. Version 20210113. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.640\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2021)**. *EC-Earth-Consortium EC-Earth3-CC model output prepared for CMIP6 ScenarioMIP*. Version 20210113. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.15327\\n\\n\\n* **EC-Earth3-Veg-LR**\\n\\n License description: [data_licenses/EC-Earth3-Veg-LR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-Veg-LR.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 CMIP*. Version 20200217. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.643\\n\\n \ ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20201201; SSP2-4.5 version 20201123; SSP3-7.0 version 20201123; SSP5-8.5 version 20201201. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.728\\n\\n\\n* **EC-Earth3-Veg**\\n\\n License description: [data_licenses/EC-Earth3-Veg.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-Veg.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3-Veg model output prepared for CMIP6 CMIP*. Version 20200225. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.642\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3-Veg model output prepared for CMIP6 ScenarioMIP*. Version 20200225. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.727\\n\\n\\n* **EC-Earth3**\\n\\n License description: [data_licenses/EC-Earth3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3 model output prepared for CMIP6 CMIP*. Version 20200310. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.181\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3 model output prepared for CMIP6 ScenarioMIP*. Version 20200310. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.251\\n\\n\\n* **GFDL-CM4**\\n\\n License description: [data_licenses/GFDL-CM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-CM4.txt)\\n\\n \ CMIP Citation:\\n\\n > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Bushuk, Mitchell; Dunne, Krista A.; Dussin, Raphael; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, P.C.D; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4 model output*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1402\\n\\n ScenarioMIP Citation:\\n\\n \ > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, Chris; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.9242\\n\\n\\n* **GFDL-ESM4**\\n\\n \ License description: [data_licenses/GFDL-ESM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-ESM4.txt)\\n\\n \ CMIP Citation:\\n\\n > Krasting, John P.; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Silvers, Levi; Wyman, Bruce; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Dussin, Raphael; Guo, Huan; He, Jian; Held, Isaac M; Horowitz, Larry W.; Lin, Pu; Milly, P.C.D; Shevliakova, Elena; Stock, Charles; Winton, Michael; Wittenberg, Andrew T.; Xie, Yuanyu; Zhao, Ming **(2018)**. *NOAA-GFDL GFDL-ESM4 model output prepared for CMIP6 CMIP*. Version 20190726. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1407\\n\\n ScenarioMIP Citation:\\n\\n \ > John, Jasmin G; Blanton, Chris; McHugh, Colleen; Radhakrishnan, Aparna; Rand, Kristopher; Vahlenkamp, Hans; Wilson, Chandin; Zadeh, Niki T.; Dunne, John P.; Dussin, Raphael; Horowitz, Larry W.; Krasting, John P.; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Ploshay, Jeffrey; Shevliakova, Elena; Silvers, Levi; Stock, Charles; Winton, Michael; Zeng, Yujin **(2018)**. *NOAA-GFDL GFDL-ESM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1414\\n\\n\\n* **HadGEM3-GC31-LL**\\n\\n License description: [data_licenses/HadGEM3-GC31-LL.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/HadGEM3-GC31-LL.txt)\\n\\n \ CMIP Citation:\\n\\n > Ridley, Jeff; Menary, Matthew; Kuhlbrodt, Till; Andrews, Martin; Andrews, Tim **(2018)**. *MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP*. Version 20190624. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.419\\n\\n ScenarioMIP Citation:\\n\\n \ > Good, Peter **(2019)**. *MOHC HadGEM3-GC31-LL model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200114; SSP2-4.5 version 20190908; SSP5-8.5 version 20200114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.10845\\n\\n\\n* **MIROC-ES2L**\\n\\n License description: [data_licenses/MIROC-ES2L.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MIROC-ES2L.txt)\\n\\n \ CMIP Citation:\\n\\n > Hajima, Tomohiro; Abe, Manabu; Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogura, Tomoo; Ogochi, Koji; Watanabe, Michio; Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio; Tachiiri, Kaoru **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 CMIP*. Version 20191129. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.902\\n\\n \ ScenarioMIP Citation:\\n\\n > Tachiiri, Kaoru; Abe, Manabu; Hajima, Tomohiro; Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogochi, Koji; Watanabe, Michio; Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 ScenarioMIP*. Version 20200318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.936\\n\\n\\n* **MIROC6**\\n\\n License description: [data_licenses/MIROC6.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MIROC6.txt)\\n\\n \ CMIP Citation:\\n\\n > Tatebe, Hiroaki; Watanabe, Masahiro **(2018)**. *MIROC MIROC6 model output prepared for CMIP6 CMIP*. Version 20191016. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.881\\n\\n ScenarioMIP Citation:\\n\\n > Shiogama, Hideo; Abe, Manabu; Tatebe, Hiroaki **(2019)**. *MIROC MIROC6 model output prepared for CMIP6 ScenarioMIP*. Version 20191016. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.898\\n\\n\\n* **MPI-ESM1-2-HR**\\n\\n License description: [data_licenses/MPI-ESM1-2-HR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MPI-ESM1-2-HR.txt)\\n\\n \ CMIP Citation:\\n\\n > Jungclaus, Johann; Bittner, Matthias; Wieners, Karl-Hermann; Wachsmann, Fabian; Schupfner, Martin; Legutke, Stephanie; Giorgetta, Marco; Reick, Christian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Esch, Monika; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-HR model output prepared for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.741\\n\\n \ ScenarioMIP Citation:\\n\\n > Schupfner, Martin; Wieners, Karl-Hermann; Wachsmann, Fabian; Steger, Christian; Bittner, Matthias; Jungclaus, Johann; Fr\xFCh, Barbara; Pankatz, Klaus; Giorgetta, Marco; Reick, Christian; Legutke, Stephanie; Esch, Monika; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *DKRZ MPI-ESM1.2-HR model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2450\\n\\n\\n* **MPI-ESM1-2-LR**\\n\\n License description: [data_licenses/MPI-ESM1-2-LR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MPI-ESM1-2-LR.txt)\\n\\n \ CMIP Citation:\\n\\n > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Legutke, Stephanie; Schupfner, Martin; Wachsmann, Fabian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.742\\n\\n \ ScenarioMIP Citation:\\n\\n > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.793\\n\\n\\n* **NESM3**\\n\\n \ License description: [data_licenses/NESM3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NESM3.txt)\\n\\n \ CMIP Citation:\\n\\n > Cao, Jian; Wang, Bin **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 CMIP*. Version 20190812. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2021\\n\\n ScenarioMIP Citation:\\n\\n \ > Cao, Jian **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190806; SSP2-4.5 version 20190805; SSP5-8.5 version 20190811. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2027\\n\\n\\n* **NorESM2-LM**\\n\\n License description: [data_licenses/NorESM2-LM.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NorESM2-LM.txt)\\n\\n \ CMIP Citation:\\n\\n > Seland, \xD8yvind; Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 CMIP*. Version 20190815. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.502\\n\\n ScenarioMIP Citation:\\n\\n \ > Seland, \xD8yvind; Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.604\\n\\n\\n* **NorESM2-MM**\\n\\n License description: [data_licenses/NorESM2-MM.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NorESM2-MM.txt)\\n\\n \ CMIP Citation:\\n\\n > Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Seland, \xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.506\\n\\n ScenarioMIP Citation:\\n\\n \ > Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Seland, \xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.608\\n\\n\\n* **UKESM1-0-LL**\\n\\n License description: [data_licenses/UKESM1-0-LL.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/UKESM1-0-LL.txt)\\n\\n \ CMIP Citation:\\n\\n > Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Mulcahy, Jane; Sellar, Alistair; Walton, Jeremy; Jones, Colin **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 CMIP*. Version 20190627. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1569\\n\\n \ ScenarioMIP Citation:\\n\\n > Good, Peter; Sellar, Alistair; Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Kuhlbrodt, Till; Walton, Jeremy **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190708; SSP2-4.5 version 20190715; SSP3-7.0 version 20190726; SSP5-8.5 version 20190726. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1567\\n\\n* **CanESM5**\\n\\n License description: [data_licenses/CanESM5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CanESM5.txt). Note: this dataset was previously licensed\\n under CC BY-SA 4.0, but was relicensed as CC BY 4.0 in March, 2023.\\n\\n CMIP Citation:\\n\\n > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model output prepared for CMIP6 CMIP*. Version 20190429. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1303\\n\\n ScenarioMIP Citation:\\n\\n \ > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model output prepared for CMIP6 ScenarioMIP*. Version 20190429. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1317\\n\\n## Acknowledgements\\n\\nThis work is the result of many years worth of work by members of the [Climate Impact Lab](https://impactlab.org), but would not have been possible without many contributions from across the wider scientific and computing communities.\\n\\nSpecifically, we would like to acknowledge the World Climate Research Programme's Working Group on Coupled Modeling, which is responsible for CMIP, and we would like to thank the climate modeling groups for producing and making their model output available. We would particularly like to thank the modeling institutions whose results are included as an input to this repository (listed above) for their contributions to the CMIP6 project and for responding to and granting our requests for license waivers.\\n\\nWe would also like to thank Lamont-Doherty Earth Observatory, the [Pangeo Consortium](https://github.com/pangeo-data) (and especially the [ESGF Cloud Data Working Group](https://pangeo-data.github.io/pangeo-cmip6-cloud/#)) and Google Cloud and the Google Public Datasets program for making the [CMIP6 Google Cloud collection](https://console.cloud.google.com/marketplace/details/noaa-public/cmip6) possible. In particular we're extremely grateful to [Ryan Abernathey](https://github.com/rabernat), [Naomi Henderson](https://github.com/naomi-henderson), [Charles Blackmon-Luca](https://github.com/charlesbluca), [Aparna Radhakrishnan](https://github.com/aradhakrishnanGFDL), [Julius Busecke](https://github.com/jbusecke), and [Charles Stern](https://github.com/cisaacstern) for the huge amount of work they've done to translate the ESGF CMIP6 netCDF archives into consistently-formattted, analysis-ready zarr stores on Google Cloud.\\n\\nWe're also grateful to the [xclim developers](https://github.com/Ouranosinc/xclim/graphs/contributors) ([DOI: 10.5281/zenodo.2795043](https://doi.org/10.5281/zenodo.2795043)), in particular [Pascal Bourgault](https://github.com/aulemahal), [David Huard](https://github.com/huard), and [Travis Logan](https://github.com/tlogan2000), for implementing the QDM bias correction method in the xclim python package, supporting our QPLAD implementation into the package, and ongoing support in integrating dask into downscaling workflows. For method advice and useful conversations, we would like to thank Keith Dixon, Dennis Adams-Smith, and [Joe Hamman](https://github.com/jhamman).\\n\\n## Financial support\\n\\nThis research has been supported by The Rockefeller Foundation and the Microsoft AI for Earth Initiative.\\n\\n## Additional links:\\n\\n* CIL GDPCIR project homepage: [github.com/ClimateImpactLab/downscaleCMIP6](https://github.com/ClimateImpactLab/downscaleCMIP6)\\n* Project listing on zenodo: https://doi.org/10.5281/zenodo.6403794\\n* Climate Impact Lab homepage: [impactlab.org](https://impactlab.org)\",\"item_assets\":{\"pr\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Precipitation\",\"description\":\"Precipitation\"},\"tasmax\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Daily Maximum Near-Surface Air Temperature\",\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Daily Minimum Near-Surface Air Temperature\",\"description\":\"Daily Minimum Near-Surface Air Temperature\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"cil-gdpcir\",\"cube:variables\":{\"pr\":{\"type\":\"data\",\"unit\":\"mm day-1\",\"attrs\":{\"units\":\"mm day-1\"},\"dimensions\":[\"time\",\"lat\",\"lon\"]},\"tasmax\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"maximum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: max')\",\"long_name\":\"Daily Maximum Near-Surface Air Temperature\",\"coordinates\":\"height\",\"cell_methods\":\"area: mean time: maximum (interval: 5 minutes)\",\"cell_measures\":\"area: areacella\",\"original_name\":\"TREFHTMX\",\"standard_name\":\"air_temperature\"},\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"minimum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: min')\",\"long_name\":\"Daily Minimum Near-Surface Air Temperature\",\"coordinates\":\"height\",\"cell_methods\":\"area: mean time: minimum (interval: 5 minutes)\",\"cell_measures\":\"area: areacella\",\"original_name\":\"TREFHTMN\",\"standard_name\":\"air_temperature\"},\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Minimum Near-Surface Air Temperature\"}},\"msft:container\":\"cil-gdpcir\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[-89.875,89.875],\"reference_system\":\"epsg:4326\"},\"lon\":{\"axis\":\"x\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[-179.875,179.875],\"reference_system\":\"epsg:4326\"},\"time\":{\"step\":\"P1DT0H0M0S\",\"type\":\"temporal\",\"extent\":[\"1950-01-01T12:00:00Z\",\"2100-12-31T12:00:00Z\"],\"description\":\"time\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\"msft:storage_account\":\"rhgeuwest\",\"msft:short_description\":\"Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)\"}" headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '11061' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:32 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125032Z-167d46d96d8x72gqhC1DENywxw00000006b0000000002t7m status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by/items/cil-gdpcir-NUIST-NESM3-ssp585-r1i1p1f1-day response: body: string: '{"id":"cil-gdpcir-NUIST-NESM3-ssp585-r1i1p1f1-day","bbox":[-180,-90,180,90],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by/items/cil-gdpcir-NUIST-NESM3-ssp585-r1i1p1f1-day"}],"assets":{"pr":{"href":"abfs://cil-gdpcir/ScenarioMIP/NUIST/NESM3/ssp585/r1i1p1f1/day/pr/v1.1.zarr","cmip6:grid":"T63","msft:https-url":"https://rhgeuwest.blob.core.windows.net/cil-gdpcir/ScenarioMIP/NUIST/NESM3/ssp585/r1i1p1f1/day/pr/v1.1.zarr","cmip6:grid_label":"gn","cmip6:tracking_id":"hdl:21.14100/ed432434-922e-4cea-8400-c321598fd7cf\nhdl:21.14100/abea2bb8-09d0-4114-9051-fe232efe108e\nhdl:21.14100/205a607f-75f4-4919-b495-45fa8fdb77b8","cmip6:variable_id":"pr","xarray:open_kwargs":{"chunks":{},"engine":"zarr","consolidated":true,"storage_options":{"account_name":"rhgeuwest"}},"cmip6:creation_date":"2019-08-11T09:53:50Z","type":"application/vnd+zarr"},"tasmax":{"href":"abfs://cil-gdpcir/ScenarioMIP/NUIST/NESM3/ssp585/r1i1p1f1/day/tasmax/v1.1.zarr","cmip6:grid":"T63","msft:https-url":"https://rhgeuwest.blob.core.windows.net/cil-gdpcir/ScenarioMIP/NUIST/NESM3/ssp585/r1i1p1f1/day/tasmax/v1.1.zarr","cmip6:grid_label":"gn","cmip6:tracking_id":"hdl:21.14100/01f58d9c-1317-467e-813d-a2358cdf7954\nhdl:21.14100/e027cda7-ac28-4e00-b03f-53ad2e6d30b4\nhdl:21.14100/3898bc79-5174-4fcc-9637-4573914ad548","cmip6:variable_id":"tasmax","xarray:open_kwargs":{"chunks":{},"engine":"zarr","consolidated":true,"storage_options":{"account_name":"rhgeuwest"}},"cmip6:creation_date":"2019-08-11T09:50:24Z","type":"application/vnd+zarr"},"tasmin":{"href":"abfs://cil-gdpcir/ScenarioMIP/NUIST/NESM3/ssp585/r1i1p1f1/day/tasmin/v1.1.zarr","cmip6:grid":"T63","msft:https-url":"https://rhgeuwest.blob.core.windows.net/cil-gdpcir/ScenarioMIP/NUIST/NESM3/ssp585/r1i1p1f1/day/tasmin/v1.1.zarr","cmip6:grid_label":"gn","cmip6:tracking_id":"hdl:21.14100/1998e7f0-ad6a-4720-8150-9085db6f96b8\nhdl:21.14100/ca181871-4103-481d-8764-b74c2448427f\nhdl:21.14100/fceb22c4-0454-4d68-bb48-1d903df19e63","cmip6:variable_id":"tasmin","xarray:open_kwargs":{"chunks":{},"engine":"zarr","consolidated":true,"storage_options":{"account_name":"rhgeuwest"}},"cmip6:creation_date":"2019-08-11T09:48:45Z","type":"application/vnd+zarr"}},"geometry":{"type":"Polygon","coordinates":[[[180,-90],[180,90],[-180,90],[-180,-90],[180,-90]]]},"collection":"cil-gdpcir-cc-by","properties":{"datetime":null,"cmip6:realm":"atmos","cmip6:source":"NESM v3 (2016): \naerosol: none\natmos: ECHAM v6.3 (T63; 192 x 96 longitude/latitude; 47 levels; top level 1 Pa)\natmosChem: none\nland: JSBACH v3.1\nlandIce: none\nocean: NEMO v3.4 (NEMO v3.4, tripolar primarily 1deg; 384 x 362 longitude/latitude; 46 levels; top grid cell 0-6 m)\nocnBgchem: none\nseaIce: CICE4.1","end_datetime":"2100-12-31T12:00:00Z","cmip6:license":"https://github.com/ClimateImpactLab/downscaleCMIP6/tree/master/data_licenses/NESM3.txt","cmip6:mip_era":"CMIP6","cmip6:product":"model-output","cmip6:table_id":"day","cube:variables":{"pr":{"type":"data","unit":"mm day-1","attrs":{"units":"mm day-1"},"shape":[31390,720,1440],"dimensions":["time","lat","lon"]},"tasmax":{"type":"data","unit":"K","attrs":{"units":"K","comment":"maximum near-surface (usually, 2 meter) air temperature (add cell_method attribute ''time: max'')","history":"2019-08-11T09:50:24Z altered by CMOR: Treated scalar dimension: ''height''. 2019-08-11T09:50:24Z altered by CMOR: Inverted axis: lat.","long_name":"Daily Maximum Near-Surface Air Temperature","cell_methods":"area: mean time: maximum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[31390,720,1440],"dimensions":["time","lat","lon"],"description":"Daily Maximum Near-Surface Air Temperature"},"tasmin":{"type":"data","unit":"K","attrs":{"units":"K","comment":"minimum near-surface (usually, 2 meter) air temperature (add cell_method attribute ''time: min'')","history":"2019-08-11T09:48:45Z altered by CMOR: Treated scalar dimension: ''height''. 2019-08-11T09:48:45Z altered by CMOR: Inverted axis: lat.","long_name":"Daily Minimum Near-Surface Air Temperature","cell_methods":"area: mean time: minimum","cell_measures":"area: areacella","standard_name":"air_temperature"},"shape":[31390,720,1440],"dimensions":["time","lat","lon"],"description":"Daily Minimum Near-Surface Air Temperature"}},"start_datetime":"2015-01-01T12:00:00Z","cmip6:frequency":"day","cmip6:source_id":"NESM3","cube:dimensions":{"lat":{"axis":"y","step":0.25,"type":"spatial","extent":[-89.875,89.875],"reference_system":"epsg:4326"},"lon":{"axis":"x","step":0.25,"type":"spatial","extent":[-179.875,179.875],"reference_system":"epsg:4326"},"time":{"step":"P1DT0H0M0S","type":"temporal","extent":["2015-01-01T12:00:00Z","2100-12-31T12:00:00Z"],"description":"time"}},"cmip6:experiment":"update of RCP8.5 based on SSP5","cmip6:Conventions":"CF-1.7 CMIP-6.2","cmip6:activity_id":"ScenarioMIP","cmip6:institution":"Nanjing University of Information Science and Technology, Nanjing, 210044, China","cmip6:source_type":"AOGCM","cmip6:experiment_id":"ssp585","cmip6:forcing_index":1,"cmip6:physics_index":1,"cmip6:variant_label":"r1i1p1f1","cmip6:institution_id":"NUIST","cmip6:sub_experiment":"none","cmip6:further_info_url":"https://furtherinfo.es-doc.org/CMIP6.NUIST.NESM3.ssp585.none.r1i1p1f1","cmip6:realization_index":1,"cmip6:sub_experiment_id":"none","cmip6:data_specs_version":"01.00.30","cmip6:nominal_resolution":"250 km","cmip6:initialization_index":1},"stac_extensions":["https://stac-extensions.github.io/datacube/v2.0.0/schema.json"],"stac_version":"1.0.0"}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2007' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:50:33 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125033Z-167d46d96d8rf89khC1DENsp080000000sa00000000005uf status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by response: body: string: "{\"id\":\"cil-gdpcir-cc-by\",\"type\":\"Collection\",\"links\":[{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by/items\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/\"},{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by\"},{\"rel\":\"license\",\"href\":\"https://spdx.org/licenses/CC-BY-4.0.html\",\"type\":\"text/html\",\"title\":\"Creative Commons Attribution 4.0 International\"},{\"rel\":\"cite-as\",\"href\":\"https://zenodo.org/record/6403794\",\"type\":\"text/html\"},{\"rel\":\"describedby\",\"href\":\"https://github.com/ClimateImpactLab/downscaleCMIP6/\",\"type\":\"text/html\",\"title\":\"Project homepage\"},{\"rel\":\"describedby\",\"href\":\"https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by\",\"title\":\"Human readable dataset overview and reference\",\"type\":\"text/html\"}],\"title\":\"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)\",\"assets\":{\"thumbnail\":{\"href\":\"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gdpcir.png\",\"type\":\"image/png\",\"title\":\"Thumbnail\"},\"geoparquet-items\":{\"href\":\"abfs://items/cil-gdpcir-cc-by.parquet\",\"type\":\"application/x-parquet\",\"roles\":[\"stac-items\"],\"title\":\"GeoParquet STAC items\",\"description\":\"Snapshot of the collection's STAC items exported to GeoParquet format.\",\"msft:partition_info\":{\"is_partitioned\":false},\"table:storage_options\":{\"account_name\":\"pcstacitems\"}}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1950-01-01T00:00:00Z\",\"2100-12-31T00:00:00Z\"]]}},\"license\":\"CC-BY-4.0\",\"sci:doi\":\"10.5194/egusphere-2022-1513\",\"keywords\":[\"CMIP6\",\"Climate Impact Lab\",\"Rhodium Group\",\"Precipitation\",\"Temperature\"],\"providers\":[{\"url\":\"https://impactlab.org/\",\"name\":\"Climate Impact Lab\",\"roles\":[\"producer\"]},{\"url\":\"https://planetarycomputer.microsoft.com/\",\"name\":\"Microsoft\",\"roles\":[\"host\"]}],\"summaries\":{\"cmip6:variable\":[\"pr\",\"tasmax\",\"tasmin\"],\"cmip6:source_id\":[\"BCC-CSM2-MR\",\"ACCESS-ESM1-5\",\"ACCESS-CM2\",\"MIROC-ES2L\",\"MIROC6\",\"NorESM2-LM\",\"NorESM2-MM\",\"GFDL-CM4\",\"GFDL-ESM4\",\"NESM3\",\"MPI-ESM1-2-HR\",\"HadGEM3-GC31-LL\",\"UKESM1-0-LL\",\"MPI-ESM1-2-LR\",\"EC-Earth3\",\"EC-Earth3-AerChem\",\"EC-Earth3-CC\",\"EC-Earth3-Veg\",\"EC-Earth3-Veg-LR\",\"CMCC-CM2-SR5\",\"CMCC-ESM2\"],\"cmip6:experiment_id\":[\"historical\",\"ssp126\",\"ssp245\",\"ssp370\",\"ssp585\"],\"cmip6:institution_id\":[\"BCC\",\"CAS\",\"CCCma\",\"CMCC\",\"CSIRO\",\"CSIRO-ARCCSS\",\"DKRZ\",\"EC-Earth-Consortium\",\"INM\",\"MIROC\",\"MOHC\",\"MPI-M\",\"NCC\",\"NOAA-GFDL\",\"NUIST\"]},\"description\":\"The World Climate Research Programme's [6th Coupled Model Intercomparison Project (CMIP6)](https://www.wcrp-climate.org/wgcm-cmip/wgcm-cmip6) represents an enormous advance in the quality, detail, and scope of climate modeling.\\n\\nThe [Global Downscaled Projections for Climate Impacts Research](https://github.com/ClimateImpactLab/downscaleCMIP6) dataset makes this modeling more applicable to understanding the impacts of changes in the climate on humans and society with two key developments: trend-preserving bias correction and downscaling. In this dataset, the [Climate Impact Lab](https://impactlab.org) provides global, daily minimum and maximum air temperature at the surface (`tasmin` and `tasmax`) and daily cumulative surface precipitation (`pr`) corresponding to the CMIP6 historical, ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 scenarios for 25 global climate models on a 1/4-degree regular global grid.\\n\\n## Accessing the data\\n\\nGDPCIR data can be accessed on the Microsoft Planetary Computer. The dataset is made of of three collections, distinguished by data license:\\n* [Public domain (CC0-1.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0)\\n* [Attribution (CC BY 4.0) collection](https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by)\\n\\nEach modeling center with bias corrected and downscaled data in this collection falls into one of these license categories - see the [table below](/dataset/cil-gdpcir-cc-by#available-institutions-models-and-scenarios-by-license-collection) to see which model is in each collection, and see the section below on [Citing, Licensing, and using data produced by this project](/dataset/cil-gdpcir-cc-by#citing-licensing-and-using-data-produced-by-this-project) for citations and additional information about each license.\\n\\n## Data format & contents\\n\\nThe data is stored as partitioned zarr stores (see [https://zarr.readthedocs.io](https://zarr.readthedocs.io)), each of which includes thousands of data and metadata files covering the full time span of the experiment. Historical zarr stores contain just over 50 GB, while SSP zarr stores contain nearly 70GB. Each store is stored as a 32-bit float, with dimensions time (daily datetime), lat (float latitude), and lon (float longitude). The data is chunked at each interval of 365 days and 90 degree interval of latitude and longitude. Therefore, each chunk is `(365, 360, 360)`, with each chunk occupying approximately 180MB in memory.\\n\\nHistorical data is daily, excluding leap days, from Jan 1, 1950 to Dec 31, 2014; SSP data is daily, excluding leap days, from Jan 1, 2015 to either Dec 31, 2099 or Dec 31, 2100, depending on data availability in the source GCM.\\n\\nThe spatial domain covers all 0.25-degree grid cells, indexed by the grid center, with grid edges on the quarter-degree, using a -180 to 180 longitude convention. Thus, the \u201Clon\u201D coordinate extends from -179.875 to 179.875, and the \u201Clat\u201D coordinate extends from -89.875 to 89.875, with intermediate values at each 0.25-degree increment between (e.g. -179.875, -179.625, -179.375, etc).\\n\\n## Available institutions, models, and scenarios by license collection\\n\\n| Modeling institution | Source model | Available experiments \ | License collection |\\n| -------------------- | ----------------- | ------------------------------------------ | ---------------------- |\\n| CAS | FGOALS-g3 [^1] | SSP2-4.5, SSP3-7.0, and SSP5-8.5 \ | Public domain datasets |\\n| INM | INM-CM4-8 \ | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets |\\n| INM | INM-CM5-0 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | Public domain datasets |\\n| BCC | BCC-CSM2-MR \ | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| CMCC | CMCC-CM2-SR5 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 \ | CC-BY-40 |\\n| CMCC | CMCC-ESM2 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 | CC-BY-40 |\\n| CSIRO-ARCCSS | ACCESS-CM2 | SSP2-4.5 and SSP3-7.0 | CC-BY-40 |\\n| CSIRO | ACCESS-ESM1-5 | SSP1-2.6, SSP2-4.5, and SSP3-7.0 | CC-BY-40 |\\n| MIROC | MIROC-ES2L | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| MIROC | MIROC6 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| MOHC | HadGEM3-GC31-LL | SSP1-2.6, SSP2-4.5, and SSP5-8.5 | CC-BY-40 \ |\\n| MOHC | UKESM1-0-LL | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| MPI-M | MPI-ESM1-2-LR | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| MPI-M/DKRZ [^2] | MPI-ESM1-2-HR | SSP1-2.6 and SSP5-8.5 | CC-BY-40 |\\n| NCC | NorESM2-LM | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 \ |\\n| NCC | NorESM2-MM | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| NOAA-GFDL \ | GFDL-CM4 | SSP2-4.5 and SSP5-8.5 | CC-BY-40 |\\n| NOAA-GFDL | GFDL-ESM4 | SSP1-2.6, SSP2-4.5, SSP3-7.0, and SSP5-8.5 | CC-BY-40 |\\n| NUIST | NESM3 | SSP1-2.6, SSP2-4.5, and SSP5-8.5 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3 | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 |\\n| EC-Earth-Consortium \ | EC-Earth3-AerChem | ssp370 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3-CC | ssp245 and ssp585 | CC-BY-40 |\\n| EC-Earth-Consortium \ | EC-Earth3-Veg | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 \ |\\n| EC-Earth-Consortium | EC-Earth3-Veg-LR | ssp1-2.6, ssp2-4.5, ssp3-7.0, and ssp5-8.5 | CC-BY-40 |\\n| CCCma | CanESM5 | ssp1-2.6, ssp2-4.5, ssp3-7.0, ssp5-8.5 | CC-BY-40[^3] \ |\\n\\n*Notes:*\\n\\n[^1]: At the time of running, no ssp1-2.6 precipitation data was available. Therefore, we provide `tasmin` and `tamax` for this model and experiment, but not `pr`. All other model/experiment combinations in the above table include all three variables.\\n\\n[^2]: The institution which ran MPI-ESM1-2-HR\u2019s historical (CMIP) simulations is `MPI-M`, while the future (ScenarioMIP) simulations were run by `DKRZ`. Therefore, the institution component of `MPI-ESM1-2-HR` filepaths differ between `historical` and `SSP` scenarios.\\n\\n[^3]: This dataset was previously licensed as [CC BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/), but was relicensed under [CC BY 4.0](https://creativecommons.org/licenses/by/4.0) in March, 2023. \\n\\n## Project methods\\n\\nThis project makes use of statistical bias correction and downscaling algorithms, which are specifically designed to accurately represent changes in the extremes. For this reason, we selected Quantile Delta Mapping (QDM), following the method introduced by [Cannon et al. (2015)](https://doi.org/10.1175/JCLI-D-14-00754.1), which preserves quantile-specific trends from the GCM while fitting the full distribution for a given day-of-year to a reference dataset (ERA5).\\n\\nWe then introduce a similar method tailored to increase spatial resolution while preserving extreme behavior, Quantile-Preserving Localized-Analog Downscaling (QPLAD).\\n\\nTogether, these methods provide a robust means to handle both the central and tail behavior seen in climate model output, while aligning the full distribution to a state-of-the-art reanalysis dataset and providing the spatial granularity needed to study surface impacts.\\n\\nFor further documentation, see [Global downscaled projections for climate impacts research (GDPCIR): preserving extremes for modeling future climate impacts](https://egusphere.copernicus.org/preprints/2023/egusphere-2022-1513/) (EGUsphere, 2022 [preprint]).\\n\\n## Citing, licensing, and using data produced by this project\\n\\nProjects making use of the data produced as part of the Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CIL GDPCIR) project are requested to cite both this project and the source datasets from which these results are derived. Additionally, the use of data derived from some GCMs *requires* citations, and some modeling centers impose licensing restrictions & requirements on derived works. See each GCM's license info in the links below for more information.\\n\\n### CIL GDPCIR\\n\\nUsers are requested to cite this project in derived works. Our method documentation paper may be cited using the following:\\n\\n> Gergel, D. R., Malevich, S. B., McCusker, K. E., Tenezakis, E., Delgado, M. T., Fish, M. A., and Kopp, R. E.: Global downscaled projections for climate impacts research (GDPCIR): preserving extremes for modeling future climate impacts, EGUsphere [preprint], https://doi.org/10.5194/egusphere-2022-1513, 2023. \\n\\nThe code repository may be cited using the following:\\n\\n> Diana Gergel, Kelly McCusker, Brewster Malevich, Emile Tenezakis, Meredith Fish, Michael Delgado (2022). ClimateImpactLab/downscaleCMIP6: (v1.0.0). Zenodo. https://doi.org/10.5281/zenodo.6403794\\n\\n### ERA5\\n\\nAdditionally, we request you cite the historical dataset used in bias correction and downscaling, ERA5. See the [ECMWF guide to citing a dataset on the Climate Data Store](https://confluence.ecmwf.int/display/CKB/How+to+acknowledge+and+cite+a+Climate+Data+Store+%28CDS%29+catalogue+entry+and+the+data+published+as+part+of+it):\\n\\n> Hersbach, H, et al. The ERA5 global reanalysis. Q J R Meteorol Soc.2020; 146: 1999\u20132049. DOI: [10.1002/qj.3803](https://doi.org/10.1002/qj.3803)\\n>\\n> Mu\xF1oz Sabater, J., (2019): ERA5-Land hourly data from 1981 to present. Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\n>\\n> Mu\xF1oz Sabater, J., (2021): ERA5-Land hourly data from 1950 to 1980. Copernicus Climate Change Service (C3S) Climate Data Store (CDS). (Accessed on June 4, 2021), DOI: [10.24381/cds.e2161bac](https://doi.org/10.24381/cds.e2161bac)\\n\\n### GCM-specific citations & licenses\\n\\nThe CMIP6 simulation data made available through the Earth System Grid Federation (ESGF) are subject to Creative Commons [BY-SA 4.0](https://creativecommons.org/licenses/by-sa/4.0/) or [BY-NC-SA 4.0](https://creativecommons.org/licenses/by-nc-sa/4.0/) licenses. The Climate Impact Lab has reached out to each of the modeling institutions to request waivers from these terms so the outputs of this project may be used with fewer restrictions, and has been granted permission to release the data using the licenses listed here.\\n\\n#### Public Domain Datasets\\n\\nThe following bias corrected and downscaled model simulations are available in the public domain using a [CC0 1.0 Universal Public Domain Declaration](https://creativecommons.org/publicdomain/zero/1.0/). Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc0.\\n\\n* **FGOALS-g3**\\n\\n License description: [data_licenses/FGOALS-g3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/FGOALS-g3.txt)\\n\\n \ CMIP Citation:\\n\\n > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6 CMIP*. Version 20190826. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1783\\n\\n ScenarioMIP Citation:\\n\\n \ > Li, Lijuan **(2019)**. *CAS FGOALS-g3 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190818; SSP2-4.5 version 20190818; SSP3-7.0 version 20190820; SSP5-8.5 tasmax version 20190819; SSP5-8.5 tasmin version 20190819; SSP5-8.5 pr version 20190818. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2056\\n\\n\\n* **INM-CM4-8**\\n\\n License description: [data_licenses/INM-CM4-8.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/INM-CM4-8.txt)\\n\\n \ CMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8 model output prepared for CMIP6 CMIP*. Version 20190530. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1422\\n\\n ScenarioMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM4-8 model output prepared for CMIP6 ScenarioMIP*. Version 20190603. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12321\\n\\n\\n* **INM-CM5-0**\\n\\n \ License description: [data_licenses/INM-CM5-0.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/INM-CM5-0.txt)\\n\\n \ CMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0 model output prepared for CMIP6 CMIP*. Version 20190610. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1423\\n\\n ScenarioMIP Citation:\\n\\n > Volodin, Evgeny; Mortikov, Evgeny; Gritsun, Andrey; Lykossov, Vasily; Galin, Vener; Diansky, Nikolay; Gusev, Anatoly; Kostrykin, Sergey; Iakovlev, Nikolay; Shestakova, Anna; Emelina, Svetlana **(2019)**. *INM INM-CM5-0 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190619; SSP2-4.5 version 20190619; SSP3-7.0 version 20190618; SSP5-8.5 version 20190724. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.12322\\n\\n\\n#### CC-BY-4.0\\n\\nThe following bias corrected and downscaled model simulations are licensed under a [Creative Commons Attribution 4.0 International License](https://creativecommons.org/licenses/by/4.0/). Note that this license requires citation of the source model output (included here). Please see https://creativecommons.org/licenses/by/4.0/ for more information. Access the collection on Planetary Computer at https://planetarycomputer.microsoft.com/dataset/cil-gdpcir-cc-by.\\n\\n* **ACCESS-CM2**\\n\\n License description: [data_licenses/ACCESS-CM2.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/ACCESS-CM2.txt)\\n\\n \ CMIP Citation:\\n\\n > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2281\\n\\n ScenarioMIP Citation:\\n\\n \ > Dix, Martin; Bi, Doahua; Dobrohotoff, Peter; Fiedler, Russell; Harman, Ian; Law, Rachel; Mackallah, Chloe; Marsland, Simon; O'Farrell, Siobhan; Rashid, Harun; Srbinovsky, Jhan; Sullivan, Arnold; Trenham, Claire; Vohralik, Peter; Watterson, Ian; Williams, Gareth; Woodhouse, Matthew; Bodman, Roger; Dias, Fabio Boeira; Domingues, Catia; Hannah, Nicholas; Heerdegen, Aidan; Savita, Abhishek; Wales, Scott; Allen, Chris; Druken, Kelsey; Evans, Ben; Richards, Clare; Ridzwan, Syazwan Mohamed; Roberts, Dale; Smillie, Jon; Snow, Kate; Ward, Marshall; Yang, Rui **(2019)**. *CSIRO-ARCCSS ACCESS-CM2 model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2285\\n\\n\\n* **ACCESS-ESM1-5**\\n\\n \ License description: [data_licenses/ACCESS-ESM1-5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/ACCESS-ESM1-5.txt)\\n\\n \ CMIP Citation:\\n\\n > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 CMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2288\\n\\n ScenarioMIP Citation:\\n\\n \ > Ziehn, Tilo; Chamberlain, Matthew; Lenton, Andrew; Law, Rachel; Bodman, Roger; Dix, Martin; Wang, Yingping; Dobrohotoff, Peter; Srbinovsky, Jhan; Stevens, Lauren; Vohralik, Peter; Mackallah, Chloe; Sullivan, Arnold; O'Farrell, Siobhan; Druken, Kelsey **(2019)**. *CSIRO ACCESS-ESM1.5 model output prepared for CMIP6 ScenarioMIP*. Version 20191115. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2291\\n\\n\\n* **BCC-CSM2-MR**\\n\\n License description: [data_licenses/BCC-CSM2-MR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/BCC-CSM2-MR.txt)\\n\\n \ CMIP Citation:\\n\\n > Xin, Xiaoge; Zhang, Jie; Zhang, Fang; Wu, Tongwen; Shi, Xueli; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei, Min **(2018)**. *BCC BCC-CSM2MR model output prepared for CMIP6 CMIP*. Version 20181126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1725\\n\\n \ ScenarioMIP Citation:\\n\\n > Xin, Xiaoge; Wu, Tongwen; Shi, Xueli; Zhang, Fang; Li, Jianglong; Chu, Min; Liu, Qianxia; Yan, Jinghui; Ma, Qiang; Wei, Min **(2019)**. *BCC BCC-CSM2MR model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190315; SSP2-4.5 version 20190318; SSP3-7.0 version 20190318; SSP5-8.5 version 20190318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1732\\n\\n\\n* **CMCC-CM2-SR5**\\n\\n License description: [data_licenses/CMCC-CM2-SR5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CMCC-CM2-SR5.txt)\\n\\n \ CMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5 model output prepared for CMIP6 CMIP*. Version 20200616. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1362\\n\\n ScenarioMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele **(2020)**. *CMCC CMCC-CM2-SR5 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200717; SSP2-4.5 version 20200617; SSP3-7.0 version 20200622; SSP5-8.5 version 20200622. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1365\\n\\n\\n* **CMCC-ESM2**\\n\\n License description: [data_licenses/CMCC-ESM2.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CMCC-ESM2.txt)\\n\\n \ CMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele; Butensch\xF6n, Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 CMIP*. Version 20210114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13164\\n\\n \ ScenarioMIP Citation:\\n\\n > Lovato, Tomas; Peano, Daniele; Butensch\xF6n, Momme **(2021)**. *CMCC CMCC-ESM2 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20210126; SSP2-4.5 version 20210129; SSP3-7.0 version 20210202; SSP5-8.5 version 20210126. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.13168\\n\\n\\n* **EC-Earth3-AerChem**\\n\\n License description: [data_licenses/EC-Earth3-AerChem.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-AerChem.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 CMIP*. Version 20200624. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.639\\n\\n \ ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-AerChem model output prepared for CMIP6 ScenarioMIP*. Version 20200827. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.724\\n\\n\\n* **EC-Earth3-CC**\\n\\n License description: [data_licenses/EC-Earth3-CC.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-CC.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth-3-CC model output prepared for CMIP6 CMIP*. Version 20210113. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.640\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2021)**. *EC-Earth-Consortium EC-Earth3-CC model output prepared for CMIP6 ScenarioMIP*. Version 20210113. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.15327\\n\\n\\n* **EC-Earth3-Veg-LR**\\n\\n License description: [data_licenses/EC-Earth3-Veg-LR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-Veg-LR.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 CMIP*. Version 20200217. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.643\\n\\n \ ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2020)**. *EC-Earth-Consortium EC-Earth3-Veg-LR model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20201201; SSP2-4.5 version 20201123; SSP3-7.0 version 20201123; SSP5-8.5 version 20201201. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.728\\n\\n\\n* **EC-Earth3-Veg**\\n\\n License description: [data_licenses/EC-Earth3-Veg.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3-Veg.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3-Veg model output prepared for CMIP6 CMIP*. Version 20200225. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.642\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3-Veg model output prepared for CMIP6 ScenarioMIP*. Version 20200225. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.727\\n\\n\\n* **EC-Earth3**\\n\\n License description: [data_licenses/EC-Earth3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/EC-Earth3.txt)\\n\\n \ CMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3 model output prepared for CMIP6 CMIP*. Version 20200310. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.181\\n\\n ScenarioMIP Citation:\\n\\n > EC-Earth Consortium (EC-Earth) **(2019)**. *EC-Earth-Consortium EC-Earth3 model output prepared for CMIP6 ScenarioMIP*. Version 20200310. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.251\\n\\n\\n* **GFDL-CM4**\\n\\n License description: [data_licenses/GFDL-CM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-CM4.txt)\\n\\n \ CMIP Citation:\\n\\n > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Bushuk, Mitchell; Dunne, Krista A.; Dussin, Raphael; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, P.C.D; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4 model output*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1402\\n\\n ScenarioMIP Citation:\\n\\n \ > Guo, Huan; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Schwarzkopf, Daniel M; Seman, Charles J; Shao, Andrew; Silvers, Levi; Wyman, Bruce; Yan, Xiaoqin; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Held, Isaac M; Krasting, John P.; Horowitz, Larry W.; Milly, Chris; Shevliakova, Elena; Winton, Michael; Zhao, Ming; Zhang, Rong **(2018)**. *NOAA-GFDL GFDL-CM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.9242\\n\\n\\n* **GFDL-ESM4**\\n\\n \ License description: [data_licenses/GFDL-ESM4.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/GFDL-ESM4.txt)\\n\\n \ CMIP Citation:\\n\\n > Krasting, John P.; John, Jasmin G; Blanton, Chris; McHugh, Colleen; Nikonov, Serguei; Radhakrishnan, Aparna; Rand, Kristopher; Zadeh, Niki T.; Balaji, V; Durachta, Jeff; Dupuis, Christopher; Menzel, Raymond; Robinson, Thomas; Underwood, Seth; Vahlenkamp, Hans; Dunne, Krista A.; Gauthier, Paul PG; Ginoux, Paul; Griffies, Stephen M.; Hallberg, Robert; Harrison, Matthew; Hurlin, William; Malyshev, Sergey; Naik, Vaishali; Paulot, Fabien; Paynter, David J; Ploshay, Jeffrey; Reichl, Brandon G; Schwarzkopf, Daniel M; Seman, Charles J; Silvers, Levi; Wyman, Bruce; Zeng, Yujin; Adcroft, Alistair; Dunne, John P.; Dussin, Raphael; Guo, Huan; He, Jian; Held, Isaac M; Horowitz, Larry W.; Lin, Pu; Milly, P.C.D; Shevliakova, Elena; Stock, Charles; Winton, Michael; Wittenberg, Andrew T.; Xie, Yuanyu; Zhao, Ming **(2018)**. *NOAA-GFDL GFDL-ESM4 model output prepared for CMIP6 CMIP*. Version 20190726. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1407\\n\\n ScenarioMIP Citation:\\n\\n \ > John, Jasmin G; Blanton, Chris; McHugh, Colleen; Radhakrishnan, Aparna; Rand, Kristopher; Vahlenkamp, Hans; Wilson, Chandin; Zadeh, Niki T.; Dunne, John P.; Dussin, Raphael; Horowitz, Larry W.; Krasting, John P.; Lin, Pu; Malyshev, Sergey; Naik, Vaishali; Ploshay, Jeffrey; Shevliakova, Elena; Silvers, Levi; Stock, Charles; Winton, Michael; Zeng, Yujin **(2018)**. *NOAA-GFDL GFDL-ESM4 model output prepared for CMIP6 ScenarioMIP*. Version 20180701. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1414\\n\\n\\n* **HadGEM3-GC31-LL**\\n\\n License description: [data_licenses/HadGEM3-GC31-LL.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/HadGEM3-GC31-LL.txt)\\n\\n \ CMIP Citation:\\n\\n > Ridley, Jeff; Menary, Matthew; Kuhlbrodt, Till; Andrews, Martin; Andrews, Tim **(2018)**. *MOHC HadGEM3-GC31-LL model output prepared for CMIP6 CMIP*. Version 20190624. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.419\\n\\n ScenarioMIP Citation:\\n\\n \ > Good, Peter **(2019)**. *MOHC HadGEM3-GC31-LL model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20200114; SSP2-4.5 version 20190908; SSP5-8.5 version 20200114. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.10845\\n\\n\\n* **MIROC-ES2L**\\n\\n License description: [data_licenses/MIROC-ES2L.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MIROC-ES2L.txt)\\n\\n \ CMIP Citation:\\n\\n > Hajima, Tomohiro; Abe, Manabu; Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogura, Tomoo; Ogochi, Koji; Watanabe, Michio; Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio; Tachiiri, Kaoru **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 CMIP*. Version 20191129. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.902\\n\\n \ ScenarioMIP Citation:\\n\\n > Tachiiri, Kaoru; Abe, Manabu; Hajima, Tomohiro; Arakawa, Osamu; Suzuki, Tatsuo; Komuro, Yoshiki; Ogochi, Koji; Watanabe, Michio; Yamamoto, Akitomo; Tatebe, Hiroaki; Noguchi, Maki A.; Ohgaito, Rumi; Ito, Akinori; Yamazaki, Dai; Ito, Akihiko; Takata, Kumiko; Watanabe, Shingo; Kawamiya, Michio **(2019)**. *MIROC MIROC-ES2L model output prepared for CMIP6 ScenarioMIP*. Version 20200318. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.936\\n\\n\\n* **MIROC6**\\n\\n License description: [data_licenses/MIROC6.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MIROC6.txt)\\n\\n \ CMIP Citation:\\n\\n > Tatebe, Hiroaki; Watanabe, Masahiro **(2018)**. *MIROC MIROC6 model output prepared for CMIP6 CMIP*. Version 20191016. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.881\\n\\n ScenarioMIP Citation:\\n\\n > Shiogama, Hideo; Abe, Manabu; Tatebe, Hiroaki **(2019)**. *MIROC MIROC6 model output prepared for CMIP6 ScenarioMIP*. Version 20191016. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.898\\n\\n\\n* **MPI-ESM1-2-HR**\\n\\n License description: [data_licenses/MPI-ESM1-2-HR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MPI-ESM1-2-HR.txt)\\n\\n \ CMIP Citation:\\n\\n > Jungclaus, Johann; Bittner, Matthias; Wieners, Karl-Hermann; Wachsmann, Fabian; Schupfner, Martin; Legutke, Stephanie; Giorgetta, Marco; Reick, Christian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Esch, Monika; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-HR model output prepared for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.741\\n\\n \ ScenarioMIP Citation:\\n\\n > Schupfner, Martin; Wieners, Karl-Hermann; Wachsmann, Fabian; Steger, Christian; Bittner, Matthias; Jungclaus, Johann; Fr\xFCh, Barbara; Pankatz, Klaus; Giorgetta, Marco; Reick, Christian; Legutke, Stephanie; Esch, Monika; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *DKRZ MPI-ESM1.2-HR model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2450\\n\\n\\n* **MPI-ESM1-2-LR**\\n\\n License description: [data_licenses/MPI-ESM1-2-LR.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/MPI-ESM1-2-LR.txt)\\n\\n \ CMIP Citation:\\n\\n > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Legutke, Stephanie; Schupfner, Martin; Wachsmann, Fabian; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared for CMIP6 CMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.742\\n\\n \ ScenarioMIP Citation:\\n\\n > Wieners, Karl-Hermann; Giorgetta, Marco; Jungclaus, Johann; Reick, Christian; Esch, Monika; Bittner, Matthias; Gayler, Veronika; Haak, Helmuth; de Vrese, Philipp; Raddatz, Thomas; Mauritsen, Thorsten; von Storch, Jin-Song; Behrens, J\xF6rg; Brovkin, Victor; Claussen, Martin; Crueger, Traute; Fast, Irina; Fiedler, Stephanie; Hagemann, Stefan; Hohenegger, Cathy; Jahns, Thomas; Kloster, Silvia; Kinne, Stefan; Lasslop, Gitta; Kornblueh, Luis; Marotzke, Jochem; Matei, Daniela; Meraner, Katharina; Mikolajewicz, Uwe; Modali, Kameswarrao; M\xFCller, Wolfgang; Nabel, Julia; Notz, Dirk; Peters-von Gehlen, Karsten; Pincus, Robert; Pohlmann, Holger; Pongratz, Julia; Rast, Sebastian; Schmidt, Hauke; Schnur, Reiner; Schulzweida, Uwe; Six, Katharina; Stevens, Bjorn; Voigt, Aiko; Roeckner, Erich **(2019)**. *MPI-M MPIESM1.2-LR model output prepared for CMIP6 ScenarioMIP*. Version 20190710. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.793\\n\\n\\n* **NESM3**\\n\\n \ License description: [data_licenses/NESM3.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NESM3.txt)\\n\\n \ CMIP Citation:\\n\\n > Cao, Jian; Wang, Bin **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 CMIP*. Version 20190812. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2021\\n\\n ScenarioMIP Citation:\\n\\n \ > Cao, Jian **(2019)**. *NUIST NESMv3 model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190806; SSP2-4.5 version 20190805; SSP5-8.5 version 20190811. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.2027\\n\\n\\n* **NorESM2-LM**\\n\\n License description: [data_licenses/NorESM2-LM.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NorESM2-LM.txt)\\n\\n \ CMIP Citation:\\n\\n > Seland, \xD8yvind; Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 CMIP*. Version 20190815. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.502\\n\\n ScenarioMIP Citation:\\n\\n \ > Seland, \xD8yvind; Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-LM model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.604\\n\\n\\n* **NorESM2-MM**\\n\\n License description: [data_licenses/NorESM2-MM.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/NorESM2-MM.txt)\\n\\n \ CMIP Citation:\\n\\n > Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Seland, \xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 CMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.506\\n\\n ScenarioMIP Citation:\\n\\n \ > Bentsen, Mats; Olivi\xE8, Dirk Jan Leo; Seland, \xD8yvind; Toniazzo, Thomas; Gjermundsen, Ada; Graff, Lise Seland; Debernard, Jens Boldingh; Gupta, Alok Kumar; He, Yanchun; Kirkev\xE5g, Alf; Schwinger, J\xF6rg; Tjiputra, Jerry; Aas, Kjetil Schanke; Bethke, Ingo; Fan, Yuanchao; Griesfeller, Jan; Grini, Alf; Guo, Chuncheng; Ilicak, Mehmet; Karset, Inger Helene Hafsahl; Landgren, Oskar Andreas; Liakka, Johan; Moseid, Kine Onsum; Nummelin, Aleksi; Spensberger, Clemens; Tang, Hui; Zhang, Zhongshi; Heinze, Christoph; Iversen, Trond; Schulz, Michael **(2019)**. *NCC NorESM2-MM model output prepared for CMIP6 ScenarioMIP*. Version 20191108. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.608\\n\\n\\n* **UKESM1-0-LL**\\n\\n License description: [data_licenses/UKESM1-0-LL.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/UKESM1-0-LL.txt)\\n\\n \ CMIP Citation:\\n\\n > Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Mulcahy, Jane; Sellar, Alistair; Walton, Jeremy; Jones, Colin **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 CMIP*. Version 20190627. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1569\\n\\n \ ScenarioMIP Citation:\\n\\n > Good, Peter; Sellar, Alistair; Tang, Yongming; Rumbold, Steve; Ellis, Rich; Kelley, Douglas; Kuhlbrodt, Till; Walton, Jeremy **(2019)**. *MOHC UKESM1.0-LL model output prepared for CMIP6 ScenarioMIP*. SSP1-2.6 version 20190708; SSP2-4.5 version 20190715; SSP3-7.0 version 20190726; SSP5-8.5 version 20190726. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1567\\n\\n* **CanESM5**\\n\\n License description: [data_licenses/CanESM5.txt](https://raw.githubusercontent.com/ClimateImpactLab/downscaleCMIP6/master/data_licenses/CanESM5.txt). Note: this dataset was previously licensed\\n under CC BY-SA 4.0, but was relicensed as CC BY 4.0 in March, 2023.\\n\\n CMIP Citation:\\n\\n > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model output prepared for CMIP6 CMIP*. Version 20190429. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1303\\n\\n ScenarioMIP Citation:\\n\\n \ > Swart, Neil Cameron; Cole, Jason N.S.; Kharin, Viatcheslav V.; Lazare, Mike; Scinocca, John F.; Gillett, Nathan P.; Anstey, James; Arora, Vivek; Christian, James R.; Jiao, Yanjun; Lee, Warren G.; Majaess, Fouad; Saenko, Oleg A.; Seiler, Christian; Seinen, Clint; Shao, Andrew; Solheim, Larry; von Salzen, Knut; Yang, Duo; Winter, Barbara; Sigmond, Michael **(2019)**. *CCCma CanESM5 model output prepared for CMIP6 ScenarioMIP*. Version 20190429. Earth System Grid Federation. https://doi.org/10.22033/ESGF/CMIP6.1317\\n\\n## Acknowledgements\\n\\nThis work is the result of many years worth of work by members of the [Climate Impact Lab](https://impactlab.org), but would not have been possible without many contributions from across the wider scientific and computing communities.\\n\\nSpecifically, we would like to acknowledge the World Climate Research Programme's Working Group on Coupled Modeling, which is responsible for CMIP, and we would like to thank the climate modeling groups for producing and making their model output available. We would particularly like to thank the modeling institutions whose results are included as an input to this repository (listed above) for their contributions to the CMIP6 project and for responding to and granting our requests for license waivers.\\n\\nWe would also like to thank Lamont-Doherty Earth Observatory, the [Pangeo Consortium](https://github.com/pangeo-data) (and especially the [ESGF Cloud Data Working Group](https://pangeo-data.github.io/pangeo-cmip6-cloud/#)) and Google Cloud and the Google Public Datasets program for making the [CMIP6 Google Cloud collection](https://console.cloud.google.com/marketplace/details/noaa-public/cmip6) possible. In particular we're extremely grateful to [Ryan Abernathey](https://github.com/rabernat), [Naomi Henderson](https://github.com/naomi-henderson), [Charles Blackmon-Luca](https://github.com/charlesbluca), [Aparna Radhakrishnan](https://github.com/aradhakrishnanGFDL), [Julius Busecke](https://github.com/jbusecke), and [Charles Stern](https://github.com/cisaacstern) for the huge amount of work they've done to translate the ESGF CMIP6 netCDF archives into consistently-formattted, analysis-ready zarr stores on Google Cloud.\\n\\nWe're also grateful to the [xclim developers](https://github.com/Ouranosinc/xclim/graphs/contributors) ([DOI: 10.5281/zenodo.2795043](https://doi.org/10.5281/zenodo.2795043)), in particular [Pascal Bourgault](https://github.com/aulemahal), [David Huard](https://github.com/huard), and [Travis Logan](https://github.com/tlogan2000), for implementing the QDM bias correction method in the xclim python package, supporting our QPLAD implementation into the package, and ongoing support in integrating dask into downscaling workflows. For method advice and useful conversations, we would like to thank Keith Dixon, Dennis Adams-Smith, and [Joe Hamman](https://github.com/jhamman).\\n\\n## Financial support\\n\\nThis research has been supported by The Rockefeller Foundation and the Microsoft AI for Earth Initiative.\\n\\n## Additional links:\\n\\n* CIL GDPCIR project homepage: [github.com/ClimateImpactLab/downscaleCMIP6](https://github.com/ClimateImpactLab/downscaleCMIP6)\\n* Project listing on zenodo: https://doi.org/10.5281/zenodo.6403794\\n* Climate Impact Lab homepage: [impactlab.org](https://impactlab.org)\",\"item_assets\":{\"pr\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Precipitation\",\"description\":\"Precipitation\"},\"tasmax\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Daily Maximum Near-Surface Air Temperature\",\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"application/vnd+zarr\",\"roles\":[\"data\"],\"title\":\"Daily Minimum Near-Surface Air Temperature\",\"description\":\"Daily Minimum Near-Surface Air Temperature\"}},\"msft:region\":\"westeurope\",\"stac_version\":\"1.0.0\",\"msft:group_id\":\"cil-gdpcir\",\"cube:variables\":{\"pr\":{\"type\":\"data\",\"unit\":\"mm day-1\",\"attrs\":{\"units\":\"mm day-1\"},\"dimensions\":[\"time\",\"lat\",\"lon\"]},\"tasmax\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"maximum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: max')\",\"long_name\":\"Daily Maximum Near-Surface Air Temperature\",\"coordinates\":\"height\",\"cell_methods\":\"area: mean time: maximum (interval: 5 minutes)\",\"cell_measures\":\"area: areacella\",\"original_name\":\"TREFHTMX\",\"standard_name\":\"air_temperature\"},\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Maximum Near-Surface Air Temperature\"},\"tasmin\":{\"type\":\"data\",\"unit\":\"K\",\"attrs\":{\"units\":\"K\",\"comment\":\"minimum near-surface (usually, 2 meter) air temperature (add cell_method attribute 'time: min')\",\"long_name\":\"Daily Minimum Near-Surface Air Temperature\",\"coordinates\":\"height\",\"cell_methods\":\"area: mean time: minimum (interval: 5 minutes)\",\"cell_measures\":\"area: areacella\",\"original_name\":\"TREFHTMN\",\"standard_name\":\"air_temperature\"},\"dimensions\":[\"time\",\"lat\",\"lon\"],\"description\":\"Daily Minimum Near-Surface Air Temperature\"}},\"msft:container\":\"cil-gdpcir\",\"cube:dimensions\":{\"lat\":{\"axis\":\"y\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[-89.875,89.875],\"reference_system\":\"epsg:4326\"},\"lon\":{\"axis\":\"x\",\"step\":0.25,\"type\":\"spatial\",\"extent\":[-179.875,179.875],\"reference_system\":\"epsg:4326\"},\"time\":{\"step\":\"P1DT0H0M0S\",\"type\":\"temporal\",\"extent\":[\"1950-01-01T12:00:00Z\",\"2100-12-31T12:00:00Z\"],\"description\":\"time\"}},\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\"msft:storage_account\":\"rhgeuwest\",\"msft:short_description\":\"Climate Impact Lab Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)\"}" headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '11061' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:34 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125033Z-167d46d96d8chv8thC1DENzves0000000st0000000000zc5 status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_client/test_fallback_strategy.yaml000066400000000000000000010736671503646565400274220ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/collections","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3361' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:37 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125036Z-167d46d96d8pgxfphC1DENg83w0000000s7g000000001rv9 status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2 response: body: string: '{"id":"landsat-c2-l2","type":"Collection","links":[{"rel":"items","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/items"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"cite-as","href":"https://doi.org/10.5066/P9IAXOVV","title":"Landsat 4-5 TM Collection 2 Level-2"},{"rel":"cite-as","href":"https://doi.org/10.5066/P9C7I13B","title":"Landsat 7 ETM+ Collection 2 Level-2"},{"rel":"cite-as","href":"https://doi.org/10.5066/P9OGBGM6","title":"Landsat 8-9 OLI/TIRS Collection 2 Level-2"},{"rel":"license","href":"https://www.usgs.gov/core-science-systems/hdds/data-policy","title":"Public Domain"},{"rel":"describedby","href":"https://planetarycomputer.microsoft.com/dataset/landsat-c2-l2","title":"Human readable dataset overview and reference","type":"text/html"}],"title":"Landsat Collection 2 Level-2","assets":{"thumbnail":{"href":"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/landsat-c2-l2-thumb.png","type":"image/png","roles":["thumbnail"],"title":"Landsat Collection 2 Level-2 thumbnail"},"geoparquet-items":{"href":"abfs://items/landsat-c2-l2.parquet","type":"application/x-parquet","roles":["stac-items"],"title":"GeoParquet STAC items","description":"Snapshot of the collection''s STAC items exported to GeoParquet format.","msft:partition_info":{"is_partitioned":true,"partition_frequency":"MS"},"table:storage_options":{"account_name":"pcstacitems"}}},"extent":{"spatial":{"bbox":[[-180.0,-90.0,180.0,90.0]]},"temporal":{"interval":[["1982-08-22T00:00:00Z",null]]}},"license":"proprietary","keywords":["Landsat","USGS","NASA","Satellite","Global","Imagery","Reflectance","Temperature"],"providers":[{"url":"https://landsat.gsfc.nasa.gov/","name":"NASA","roles":["producer","licensor"]},{"url":"https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products","name":"USGS","roles":["producer","processor","licensor"]},{"url":"https://planetarycomputer.microsoft.com","name":"Microsoft","roles":["host"]}],"summaries":{"gsd":[30,60,100,120],"sci:doi":["10.5066/P9IAXOVV","10.5066/P9C7I13B","10.5066/P9OGBGM6"],"eo:bands":[{"name":"TM_B1","common_name":"blue","description":"Visible blue (Thematic Mapper)","center_wavelength":0.49,"full_width_half_max":0.07},{"name":"TM_B2","common_name":"green","description":"Visible green (Thematic Mapper)","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"TM_B3","common_name":"red","description":"Visible red (Thematic Mapper)","center_wavelength":0.66,"full_width_half_max":0.06},{"name":"TM_B4","common_name":"nir08","description":"Near infrared (Thematic Mapper)","center_wavelength":0.83,"full_width_half_max":0.14},{"name":"TM_B5","common_name":"swir16","description":"Short-wave infrared (Thematic Mapper)","center_wavelength":1.65,"full_width_half_max":0.2},{"name":"TM_B6","common_name":"lwir","description":"Long-wave infrared (Thematic Mapper)","center_wavelength":11.45,"full_width_half_max":2.1},{"name":"TM_B7","common_name":"swir22","description":"Short-wave infrared (Thematic Mapper)","center_wavelength":2.22,"full_width_half_max":0.27},{"name":"ETM_B1","common_name":"blue","description":"Visible blue (Enhanced Thematic Mapper Plus)","center_wavelength":0.48,"full_width_half_max":0.07},{"name":"ETM_B2","common_name":"green","description":"Visible green (Enhanced Thematic Mapper Plus)","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"ETM_B3","common_name":"red","description":"Visible red (Enhanced Thematic Mapper Plus)","center_wavelength":0.66,"full_width_half_max":0.06},{"name":"ETM_B4","common_name":"nir08","description":"Near infrared (Enhanced Thematic Mapper Plus)","center_wavelength":0.84,"full_width_half_max":0.13},{"name":"ETM_B5","common_name":"swir16","description":"Short-wave infrared (Enhanced Thematic Mapper Plus)","center_wavelength":1.65,"full_width_half_max":0.2},{"name":"ETM_B6","common_name":"lwir","description":"Long-wave infrared (Enhanced Thematic Mapper Plus)","center_wavelength":11.34,"full_width_half_max":2.05},{"name":"ETM_B7","common_name":"swir22","description":"Short-wave infrared (Enhanced Thematic Mapper Plus)","center_wavelength":2.2,"full_width_half_max":0.28},{"name":"OLI_B1","common_name":"coastal","description":"Coastal/Aerosol (Operational Land Imager)","center_wavelength":0.44,"full_width_half_max":0.02},{"name":"OLI_B2","common_name":"blue","description":"Visible blue (Operational Land Imager)","center_wavelength":0.48,"full_width_half_max":0.06},{"name":"OLI_B3","common_name":"green","description":"Visible green (Operational Land Imager)","center_wavelength":0.56,"full_width_half_max":0.06},{"name":"OLI_B4","common_name":"red","description":"Visible red (Operational Land Imager)","center_wavelength":0.65,"full_width_half_max":0.04},{"name":"OLI_B5","common_name":"nir08","description":"Near infrared (Operational Land Imager)","center_wavelength":0.87,"full_width_half_max":0.03},{"name":"OLI_B6","common_name":"swir16","description":"Short-wave infrared (Operational Land Imager)","center_wavelength":1.61,"full_width_half_max":0.09},{"name":"OLI_B7","common_name":"swir22","description":"Short-wave infrared (Operational Land Imager)","center_wavelength":2.2,"full_width_half_max":0.19},{"name":"TIRS_B10","common_name":"lwir11","description":"Long-wave infrared (Thermal Infrared Sensor)","center_wavelength":10.9,"full_width_half_max":0.59}],"platform":["landsat-4","landsat-5","landsat-7","landsat-8","landsat-9"],"instruments":["tm","etm+","oli","tirs"],"view:off_nadir":{"maximum":15,"minimum":0}},"description":"Landsat Collection 2 Level-2 [Science Products](https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products), consisting of atmospherically corrected [surface reflectance](https://www.usgs.gov/landsat-missions/landsat-collection-2-surface-reflectance) and [surface temperature](https://www.usgs.gov/landsat-missions/landsat-collection-2-surface-temperature) image data. Collection 2 Level-2 Science Products are available from August 22, 1982 to present.\n\nThis dataset represents the global archive of Level-2 data from [Landsat Collection 2](https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-2) acquired by the [Thematic Mapper](https://landsat.gsfc.nasa.gov/thematic-mapper/) onboard Landsat 4 and 5, the [Enhanced Thematic Mapper](https://landsat.gsfc.nasa.gov/the-enhanced-thematic-mapper-plus-etm/) onboard Landsat 7, and the [Operatational Land Imager](https://landsat.gsfc.nasa.gov/satellites/landsat-8/spacecraft-instruments/operational-land-imager/) and [Thermal Infrared Sensor](https://landsat.gsfc.nasa.gov/satellites/landsat-8/spacecraft-instruments/thermal-infrared-sensor/) onboard Landsat 8 and 9. Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\n","item_assets":{"qa":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Surface Temperature Quality Assessment Band","description":"Collection 2 Level-2 Quality Assessment Band (ST_QA) Surface Temperature Product","raster:bands":[{"unit":"kelvin","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"ang":{"type":"text/plain","roles":["metadata"],"title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File"},"red":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Red Band","eo:bands":[{"common_name":"red","description":"Visible red"}],"raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"blue":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Blue Band","eo:bands":[{"common_name":"blue","description":"Visible blue"}],"raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"drad":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Downwelled Radiance Band","description":"Collection 2 Level-2 Downwelled Radiance Band (ST_DRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emis":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Band","description":"Collection 2 Level-2 Emissivity Band (ST_EMIS) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emsd":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Standard Deviation Band","description":"Collection 2 Level-2 Emissivity Standard Deviation Band (ST_EMSD) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"lwir":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","temperature"],"title":"Surface Temperature Band","eo:bands":[{"common_name":"lwir","description":"Long-wave infrared"}],"description":"Collection 2 Level-2 Thermal Infrared Band (ST_B6) Surface Temperature","raster:bands":[{"unit":"kelvin","scale":0.00341802,"nodata":0,"offset":149.0,"data_type":"uint16","spatial_resolution":30}]},"trad":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Thermal Radiance Band","description":"Collection 2 Level-2 Thermal Radiance Band (ST_TRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"urad":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Upwelled Radiance Band","description":"Collection 2 Level-2 Upwelled Radiance Band (ST_URAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"atran":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Atmospheric Transmittance Band","description":"Collection 2 Level-2 Atmospheric Transmittance Band (ST_ATRAN) Surface Temperature Product","raster:bands":[{"scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"cdist":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Cloud Distance Band","description":"Collection 2 Level-2 Cloud Distance Band (ST_CDIST) Surface Temperature Product","raster:bands":[{"unit":"kilometer","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"green":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Green Band","eo:bands":[{"common_name":"green","description":"Visible green","center_wavelength":0.56}],"raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"nir08":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Near Infrared Band 0.8","eo:bands":[{"common_name":"nir08","description":"Near infrared"}],"raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"lwir11":{"gsd":100,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","temperature"],"title":"Surface Temperature Band","eo:bands":[{"name":"TIRS_B10","common_name":"lwir11","description":"Long-wave infrared","center_wavelength":10.9,"full_width_half_max":0.59}],"description":"Collection 2 Level-2 Thermal Infrared Band (ST_B10) Surface Temperature","raster:bands":[{"unit":"kelvin","scale":0.00341802,"nodata":0,"offset":149.0,"data_type":"uint16","spatial_resolution":30}]},"swir16":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 1.6","eo:bands":[{"common_name":"swir16","description":"Short-wave infrared"}],"raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"swir22":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 2.2","eo:bands":[{"common_name":"swir22","description":"Short-wave infrared"}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (SR_B7) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"coastal":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Coastal/Aerosol Band","eo:bands":[{"name":"OLI_B1","common_name":"coastal","description":"Coastal/Aerosol","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (SR_B1) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"mtl.txt":{"type":"text/plain","roles":["metadata"],"title":"Product Metadata File (txt)","description":"Collection 2 Level-2 Product Metadata File (txt)"},"mtl.xml":{"type":"application/xml","roles":["metadata"],"title":"Product Metadata File (xml)","description":"Collection 2 Level-2 Product Metadata File (xml)"},"cloud_qa":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["cloud","cloud-shadow","snow-ice","water-mask"],"title":"Cloud Quality Assessment Band","description":"Collection 2 Level-2 Cloud Quality Assessment Band (SR_CLOUD_QA) Surface Reflectance Product","raster:bands":[{"unit":"bit index","data_type":"uint8","spatial_resolution":30}],"classification:bitfields":[{"name":"ddv","length":1,"offset":0,"classes":[{"name":"not_ddv","value":0,"description":"Pixel has no DDV"},{"name":"ddv","value":1,"description":"Pixel has DDV"}],"description":"Dense Dark Vegetation (DDV)"},{"name":"cloud","length":1,"offset":1,"classes":[{"name":"not_cloud","value":0,"description":"Pixel has no cloud"},{"name":"cloud","value":1,"description":"Pixel has cloud"}],"description":"Cloud mask"},{"name":"cloud_shadow","length":1,"offset":2,"classes":[{"name":"not_shadow","value":0,"description":"Pixel has no cloud shadow"},{"name":"shadow","value":1,"description":"Pixel has cloud shadow"}],"description":"Cloud shadow mask"},{"name":"cloud_adjacent","length":1,"offset":3,"classes":[{"name":"not_adjacent","value":0,"description":"Pixel is not adjacent to cloud"},{"name":"adjacent","value":1,"description":"Pixel is adjacent to cloud"}],"description":"Cloud adjacency"},{"name":"snow","length":1,"offset":4,"classes":[{"name":"not_snow","value":0,"description":"Pixel is not snow"},{"name":"shadow","value":1,"description":"Pixel is snow"}],"description":"Snow mask"},{"name":"water","length":1,"offset":5,"classes":[{"name":"not_water","value":0,"description":"Pixel is not water"},{"name":"water","value":1,"description":"Pixel is water"}],"description":"Water mask"}]},"mtl.json":{"type":"application/json","roles":["metadata"],"title":"Product Metadata File (json)","description":"Collection 2 Level-2 Product Metadata File (json)"},"qa_pixel":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["cloud","cloud-shadow","snow-ice","water-mask"],"title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band (QA_PIXEL)","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint16","spatial_resolution":30}]},"qa_radsat":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["saturation"],"raster:bands":[{"unit":"bit index","data_type":"uint16","spatial_resolution":30}]},"qa_aerosol":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data-mask","water-mask"],"title":"Aerosol Quality Assessment Band","description":"Collection 2 Level-2 Aerosol Quality Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint8","spatial_resolution":30}],"classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Pixel is not fill"},{"name":"fill","value":1,"description":"Pixel is fill"}],"description":"Image or fill data"},{"name":"retrieval","length":1,"offset":1,"classes":[{"name":"not_valid","value":0,"description":"Pixel retrieval is not valid"},{"name":"valid","value":1,"description":"Pixel retrieval is valid"}],"description":"Valid aerosol retrieval"},{"name":"water","length":1,"offset":2,"classes":[{"name":"not_water","value":0,"description":"Pixel is not water"},{"name":"water","value":1,"description":"Pixel is water"}],"description":"Water mask"},{"name":"interpolated","length":1,"offset":5,"classes":[{"name":"not_interpolated","value":0,"description":"Pixel is not interpolated aerosol"},{"name":"interpolated","value":1,"description":"Pixel is interpolated aerosol"}],"description":"Aerosol interpolation"},{"name":"level","length":2,"offset":6,"classes":[{"name":"climatology","value":0,"description":"No aerosol correction applied"},{"name":"low","value":1,"description":"Low aerosol level"},{"name":"medium","value":2,"description":"Medium aerosol level"},{"name":"high","value":3,"description":"High aerosol level"}],"description":"Aerosol level"}]},"atmos_opacity":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Atmospheric Opacity Band","description":"Collection 2 Level-2 Atmospheric Opacity Band (SR_ATMOS_OPACITY) Surface Reflectance Product","raster:bands":[{"scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]}},"stac_version":"1.0.0","msft:group_id":"landsat","msft:container":"landsat-c2","stac_extensions":["https://stac-extensions.github.io/item-assets/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/scientific/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.0.0/schema.json","https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/table/v1.2.0/schema.json"],"msft:storage_account":"landsateuwest","msft:short_description":"Landsat Collection 2 Level-2 data from the Thematic Mapper (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor (TIRS) onboard Landsat 8 and 9.","msft:region":"westeurope"}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3454' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:37 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125037Z-167d46d96d8tpvbjhC1DENh2zs0000000s70000000003d7u status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/items?collections=landsat-c2-l2 response: body: string: '{"type":"FeatureCollection","features":[{"id":"LC09_L2SP_085015_20250713_02_T2","bbox":[-175.35117662476324,63.03386573624564,-169.93326801050802,65.36465426375436],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/items/LC09_L2SP_085015_20250713_02_T2"},{"rel":"cite-as","href":"https://doi.org/10.5066/P9OGBGM6","title":"Landsat 8-9 OLI/TIRS Collection 2 Level-2"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC09_L2SP_085015_20250713_20250714_02_T2_SR","type":"application/json","title":"USGS STAC Item"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-st/items/LC09_L2SP_085015_20250713_20250714_02_T2_ST","type":"application/json","title":"USGS STAC Item"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=landsat-c2-l2&item=LC09_L2SP_085015_20250713_02_T2","title":"Map of item","type":"text/html"}],"assets":{"qa":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_ST_QA.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Surface Temperature Quality Assessment Band","description":"Collection 2 Level-2 Quality Assessment Band (ST_QA) Surface Temperature Product","raster:bands":[{"unit":"kelvin","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"ang":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_ANG.txt","type":"text/plain","roles":["metadata"],"title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File"},"red":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_SR_B4.TIF","eo:bands":[{"name":"OLI_B4","center_wavelength":0.65,"full_width_half_max":0.04,"common_name":"red","description":"Visible red"}],"description":"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Red Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"blue":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_SR_B2.TIF","eo:bands":[{"name":"OLI_B2","center_wavelength":0.48,"full_width_half_max":0.06,"common_name":"blue","description":"Visible blue"}],"description":"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Blue Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"drad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_ST_DRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Downwelled Radiance Band","description":"Collection 2 Level-2 Downwelled Radiance Band (ST_DRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emis":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_ST_EMIS.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Band","description":"Collection 2 Level-2 Emissivity Band (ST_EMIS) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emsd":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_ST_EMSD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Standard Deviation Band","description":"Collection 2 Level-2 Emissivity Standard Deviation Band (ST_EMSD) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"trad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_ST_TRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Thermal Radiance Band","description":"Collection 2 Level-2 Thermal Radiance Band (ST_TRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"urad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_ST_URAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Upwelled Radiance Band","description":"Collection 2 Level-2 Upwelled Radiance Band (ST_URAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"atran":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_ST_ATRAN.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Atmospheric Transmittance Band","description":"Collection 2 Level-2 Atmospheric Transmittance Band (ST_ATRAN) Surface Temperature Product","raster:bands":[{"scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"cdist":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_ST_CDIST.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Cloud Distance Band","description":"Collection 2 Level-2 Cloud Distance Band (ST_CDIST) Surface Temperature Product","raster:bands":[{"unit":"kilometer","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"green":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_SR_B3.TIF","eo:bands":[{"name":"OLI_B3","full_width_half_max":0.06,"common_name":"green","description":"Visible green","center_wavelength":0.56}],"description":"Collection 2 Level-2 Green Band (SR_B3) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Green Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"nir08":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_SR_B5.TIF","eo:bands":[{"name":"OLI_B5","center_wavelength":0.87,"full_width_half_max":0.03,"common_name":"nir08","description":"Near infrared"}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Near Infrared Band 0.8","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"lwir11":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_ST_B10.TIF","gsd":100,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","temperature"],"title":"Surface Temperature Band","eo:bands":[{"name":"TIRS_B10","common_name":"lwir11","description":"Long-wave infrared","center_wavelength":10.9,"full_width_half_max":0.59}],"description":"Collection 2 Level-2 Thermal Infrared Band (ST_B10) Surface Temperature","raster:bands":[{"unit":"kelvin","scale":0.00341802,"nodata":0,"offset":149.0,"data_type":"uint16","spatial_resolution":30}]},"swir16":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_SR_B6.TIF","eo:bands":[{"name":"OLI_B6","center_wavelength":1.61,"full_width_half_max":0.09,"common_name":"swir16","description":"Short-wave infrared"}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (SR_B6) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 1.6","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"swir22":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_SR_B7.TIF","eo:bands":[{"name":"OLI_B7","center_wavelength":2.2,"full_width_half_max":0.19,"common_name":"swir22","description":"Short-wave infrared"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 2.2","description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (SR_B7) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"coastal":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_SR_B1.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Coastal/Aerosol Band","eo:bands":[{"name":"OLI_B1","common_name":"coastal","description":"Coastal/Aerosol","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (SR_B1) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"mtl.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_MTL.txt","type":"text/plain","roles":["metadata"],"title":"Product Metadata File (txt)","description":"Collection 2 Level-2 Product Metadata File (txt)"},"mtl.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_MTL.xml","type":"application/xml","roles":["metadata"],"title":"Product Metadata File (xml)","description":"Collection 2 Level-2 Product Metadata File (xml)"},"mtl.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_MTL.json","type":"application/json","roles":["metadata"],"title":"Product Metadata File (json)","description":"Collection 2 Level-2 Product Metadata File (json)"},"qa_pixel":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_QA_PIXEL.TIF","classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Image data"},{"name":"fill","value":1,"description":"Fill data"}],"description":"Image or fill data"},{"name":"dilated_cloud","length":1,"offset":1,"classes":[{"name":"not_dilated","value":0,"description":"Cloud is not dilated or no cloud"},{"name":"dilated","value":1,"description":"Cloud dilation"}],"description":"Dilated cloud"},{"name":"cirrus","length":1,"offset":2,"classes":[{"name":"not_cirrus","value":0,"description":"Cirrus confidence is not high"},{"name":"cirrus","value":1,"description":"High confidence cirrus"}],"description":"Cirrus mask"},{"name":"cloud","length":1,"offset":3,"classes":[{"name":"not_cloud","value":0,"description":"Cloud confidence is not high"},{"name":"cloud","value":1,"description":"High confidence cloud"}],"description":"Cloud mask"},{"name":"cloud_shadow","length":1,"offset":4,"classes":[{"name":"not_shadow","value":0,"description":"Cloud shadow confidence is not high"},{"name":"shadow","value":1,"description":"High confidence cloud shadow"}],"description":"Cloud shadow mask"},{"name":"snow","length":1,"offset":5,"classes":[{"name":"not_snow","value":0,"description":"Snow/Ice confidence is not high"},{"name":"snow","value":1,"description":"High confidence snow cover"}],"description":"Snow/Ice mask"},{"name":"clear","length":1,"offset":6,"classes":[{"name":"not_clear","value":0,"description":"Cloud or dilated cloud bits are set"},{"name":"clear","value":1,"description":"Cloud and dilated cloud bits are not set"}],"description":"Clear mask"},{"name":"water","length":1,"offset":7,"classes":[{"name":"not_water","value":0,"description":"Land or cloud"},{"name":"water","value":1,"description":"Water"}],"description":"Water mask"},{"name":"cloud_confidence","length":2,"offset":8,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cloud"},{"name":"medium","value":2,"description":"Medium confidence cloud"},{"name":"high","value":3,"description":"High confidence cloud"}],"description":"Cloud confidence levels"},{"name":"cloud_shadow_confidence","length":2,"offset":10,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cloud shadow"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence cloud shadow"}],"description":"Cloud shadow confidence levels"},{"name":"snow_confidence","length":2,"offset":12,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence snow/ice"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence snow/ice"}],"description":"Snow/Ice confidence levels"},{"name":"cirrus_confidence","length":2,"offset":14,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cirrus"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence cirrus"}],"description":"Cirrus confidence levels"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["cloud","cloud-shadow","snow-ice","water-mask"],"title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band (QA_PIXEL)","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint16","spatial_resolution":30}]},"qa_radsat":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_QA_RADSAT.TIF","title":"Radiometric Saturation and Terrain Occlusion Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment Band (QA_RADSAT)","classification:bitfields":[{"name":"band1","length":1,"offset":0,"classes":[{"name":"not_saturated","value":0,"description":"Band 1 not saturated"},{"name":"saturated","value":1,"description":"Band 1 saturated"}],"description":"Band 1 radiometric saturation"},{"name":"band2","length":1,"offset":1,"classes":[{"name":"not_saturated","value":0,"description":"Band 2 not saturated"},{"name":"saturated","value":1,"description":"Band 2 saturated"}],"description":"Band 2 radiometric saturation"},{"name":"band3","length":1,"offset":2,"classes":[{"name":"not_saturated","value":0,"description":"Band 3 not saturated"},{"name":"saturated","value":1,"description":"Band 3 saturated"}],"description":"Band 3 radiometric saturation"},{"name":"band4","length":1,"offset":3,"classes":[{"name":"not_saturated","value":0,"description":"Band 4 not saturated"},{"name":"saturated","value":1,"description":"Band 4 saturated"}],"description":"Band 4 radiometric saturation"},{"name":"band5","length":1,"offset":4,"classes":[{"name":"not_saturated","value":0,"description":"Band 5 not saturated"},{"name":"saturated","value":1,"description":"Band 5 saturated"}],"description":"Band 5 radiometric saturation"},{"name":"band6","length":1,"offset":5,"classes":[{"name":"not_saturated","value":0,"description":"Band 6 not saturated"},{"name":"saturated","value":1,"description":"Band 6 saturated"}],"description":"Band 6 radiometric saturation"},{"name":"band7","length":1,"offset":6,"classes":[{"name":"not_saturated","value":0,"description":"Band 7 not saturated"},{"name":"saturated","value":1,"description":"Band 7 saturated"}],"description":"Band 7 radiometric saturation"},{"name":"band9","length":1,"offset":8,"classes":[{"name":"not_saturated","value":0,"description":"Band 9 not saturated"},{"name":"saturated","value":1,"description":"Band 9 saturated"}],"description":"Band 9 radiometric saturation"},{"name":"occlusion","length":1,"offset":11,"classes":[{"name":"not_occluded","value":0,"description":"Terrain is not occluded"},{"name":"occluded","value":1,"description":"Terrain is occluded"}],"description":"Terrain not visible from sensor due to intervening terrain"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["saturation"],"raster:bands":[{"unit":"bit index","data_type":"uint16","spatial_resolution":30}]},"qa_aerosol":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/015/LC09_L2SP_085015_20250713_20250714_02_T2/LC09_L2SP_085015_20250713_20250714_02_T2_SR_QA_AEROSOL.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data-mask","water-mask"],"title":"Aerosol Quality Assessment Band","description":"Collection 2 Level-2 Aerosol Quality Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint8","spatial_resolution":30}],"classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Pixel is not fill"},{"name":"fill","value":1,"description":"Pixel is fill"}],"description":"Image or fill data"},{"name":"retrieval","length":1,"offset":1,"classes":[{"name":"not_valid","value":0,"description":"Pixel retrieval is not valid"},{"name":"valid","value":1,"description":"Pixel retrieval is valid"}],"description":"Valid aerosol retrieval"},{"name":"water","length":1,"offset":2,"classes":[{"name":"not_water","value":0,"description":"Pixel is not water"},{"name":"water","value":1,"description":"Pixel is water"}],"description":"Water mask"},{"name":"interpolated","length":1,"offset":5,"classes":[{"name":"not_interpolated","value":0,"description":"Pixel is not interpolated aerosol"},{"name":"interpolated","value":1,"description":"Pixel is interpolated aerosol"}],"description":"Aerosol interpolation"},{"name":"level","length":2,"offset":6,"classes":[{"name":"climatology","value":0,"description":"No aerosol correction applied"},{"name":"low","value":1,"description":"Low aerosol level"},{"name":"medium","value":2,"description":"Medium aerosol level"},{"name":"high","value":3,"description":"High aerosol level"}],"description":"Aerosol level"}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=landsat-c2-l2&item=LC09_L2SP_085015_20250713_02_T2&assets=red&assets=green&assets=blue&color_formula=gamma+RGB+2.7%2C+saturation+1.5%2C+sigmoidal+RGB+15+0.55&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=landsat-c2-l2&item=LC09_L2SP_085015_20250713_02_T2&assets=red&assets=green&assets=blue&color_formula=gamma+RGB+2.7%2C+saturation+1.5%2C+sigmoidal+RGB+15+0.55&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-173.72454898722464,65.33359220352254],[-175.05129446965353,63.68060125985634],[-171.51531545184085,63.09721473377911],[-169.99506733230143,64.7246265670339],[-173.72454898722464,65.33359220352254]]]},"collection":"landsat-c2-l2","properties":{"gsd":30,"created":"2025-07-17T09:17:42.486923Z","sci:doi":"10.5066/P9OGBGM6","datetime":"2025-07-13T22:51:40.030342Z","platform":"landsat-9","proj:epsg":32602,"proj:shape":[8461,8411],"description":"Landsat Collection 2 Level-2","instruments":["oli","tirs"],"eo:cloud_cover":100.0,"proj:transform":[30.0,0.0,297285.0,0.0,-30.0,7249515.0],"view:off_nadir":0,"landsat:wrs_row":"015","landsat:scene_id":"LC90850152025194LGN00","landsat:wrs_path":"085","landsat:wrs_type":"2","view:sun_azimuth":164.81308708,"landsat:correction":"L2SP","view:sun_elevation":46.80972808,"landsat:cloud_cover_land":100.0,"landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.1/schema.json","https://stac-extensions.github.io/classification/v1.0.0/schema.json","https://stac-extensions.github.io/scientific/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC09_L2SP_085014_20250713_02_T1","bbox":[-174.20552132859908,64.41546563166713,-168.49571028242417,66.69963436833287],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/items/LC09_L2SP_085014_20250713_02_T1"},{"rel":"cite-as","href":"https://doi.org/10.5066/P9OGBGM6","title":"Landsat 8-9 OLI/TIRS Collection 2 Level-2"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC09_L2SP_085014_20250713_20250714_02_T1_SR","type":"application/json","title":"USGS STAC Item"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-st/items/LC09_L2SP_085014_20250713_20250714_02_T1_ST","type":"application/json","title":"USGS STAC Item"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=landsat-c2-l2&item=LC09_L2SP_085014_20250713_02_T1","title":"Map of item","type":"text/html"}],"assets":{"qa":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_ST_QA.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Surface Temperature Quality Assessment Band","description":"Collection 2 Level-2 Quality Assessment Band (ST_QA) Surface Temperature Product","raster:bands":[{"unit":"kelvin","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"ang":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_ANG.txt","type":"text/plain","roles":["metadata"],"title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File"},"red":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_SR_B4.TIF","eo:bands":[{"name":"OLI_B4","center_wavelength":0.65,"full_width_half_max":0.04,"common_name":"red","description":"Visible red"}],"description":"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Red Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"blue":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_SR_B2.TIF","eo:bands":[{"name":"OLI_B2","center_wavelength":0.48,"full_width_half_max":0.06,"common_name":"blue","description":"Visible blue"}],"description":"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Blue Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"drad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_ST_DRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Downwelled Radiance Band","description":"Collection 2 Level-2 Downwelled Radiance Band (ST_DRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emis":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_ST_EMIS.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Band","description":"Collection 2 Level-2 Emissivity Band (ST_EMIS) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emsd":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_ST_EMSD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Standard Deviation Band","description":"Collection 2 Level-2 Emissivity Standard Deviation Band (ST_EMSD) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"trad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_ST_TRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Thermal Radiance Band","description":"Collection 2 Level-2 Thermal Radiance Band (ST_TRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"urad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_ST_URAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Upwelled Radiance Band","description":"Collection 2 Level-2 Upwelled Radiance Band (ST_URAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"atran":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_ST_ATRAN.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Atmospheric Transmittance Band","description":"Collection 2 Level-2 Atmospheric Transmittance Band (ST_ATRAN) Surface Temperature Product","raster:bands":[{"scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"cdist":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_ST_CDIST.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Cloud Distance Band","description":"Collection 2 Level-2 Cloud Distance Band (ST_CDIST) Surface Temperature Product","raster:bands":[{"unit":"kilometer","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"green":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_SR_B3.TIF","eo:bands":[{"name":"OLI_B3","full_width_half_max":0.06,"common_name":"green","description":"Visible green","center_wavelength":0.56}],"description":"Collection 2 Level-2 Green Band (SR_B3) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Green Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"nir08":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_SR_B5.TIF","eo:bands":[{"name":"OLI_B5","center_wavelength":0.87,"full_width_half_max":0.03,"common_name":"nir08","description":"Near infrared"}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Near Infrared Band 0.8","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"lwir11":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_ST_B10.TIF","gsd":100,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","temperature"],"title":"Surface Temperature Band","eo:bands":[{"name":"TIRS_B10","common_name":"lwir11","description":"Long-wave infrared","center_wavelength":10.9,"full_width_half_max":0.59}],"description":"Collection 2 Level-2 Thermal Infrared Band (ST_B10) Surface Temperature","raster:bands":[{"unit":"kelvin","scale":0.00341802,"nodata":0,"offset":149.0,"data_type":"uint16","spatial_resolution":30}]},"swir16":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_SR_B6.TIF","eo:bands":[{"name":"OLI_B6","center_wavelength":1.61,"full_width_half_max":0.09,"common_name":"swir16","description":"Short-wave infrared"}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (SR_B6) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 1.6","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"swir22":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_SR_B7.TIF","eo:bands":[{"name":"OLI_B7","center_wavelength":2.2,"full_width_half_max":0.19,"common_name":"swir22","description":"Short-wave infrared"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 2.2","description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (SR_B7) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"coastal":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_SR_B1.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Coastal/Aerosol Band","eo:bands":[{"name":"OLI_B1","common_name":"coastal","description":"Coastal/Aerosol","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (SR_B1) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"mtl.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_MTL.txt","type":"text/plain","roles":["metadata"],"title":"Product Metadata File (txt)","description":"Collection 2 Level-2 Product Metadata File (txt)"},"mtl.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_MTL.xml","type":"application/xml","roles":["metadata"],"title":"Product Metadata File (xml)","description":"Collection 2 Level-2 Product Metadata File (xml)"},"mtl.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_MTL.json","type":"application/json","roles":["metadata"],"title":"Product Metadata File (json)","description":"Collection 2 Level-2 Product Metadata File (json)"},"qa_pixel":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_QA_PIXEL.TIF","classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Image data"},{"name":"fill","value":1,"description":"Fill data"}],"description":"Image or fill data"},{"name":"dilated_cloud","length":1,"offset":1,"classes":[{"name":"not_dilated","value":0,"description":"Cloud is not dilated or no cloud"},{"name":"dilated","value":1,"description":"Cloud dilation"}],"description":"Dilated cloud"},{"name":"cirrus","length":1,"offset":2,"classes":[{"name":"not_cirrus","value":0,"description":"Cirrus confidence is not high"},{"name":"cirrus","value":1,"description":"High confidence cirrus"}],"description":"Cirrus mask"},{"name":"cloud","length":1,"offset":3,"classes":[{"name":"not_cloud","value":0,"description":"Cloud confidence is not high"},{"name":"cloud","value":1,"description":"High confidence cloud"}],"description":"Cloud mask"},{"name":"cloud_shadow","length":1,"offset":4,"classes":[{"name":"not_shadow","value":0,"description":"Cloud shadow confidence is not high"},{"name":"shadow","value":1,"description":"High confidence cloud shadow"}],"description":"Cloud shadow mask"},{"name":"snow","length":1,"offset":5,"classes":[{"name":"not_snow","value":0,"description":"Snow/Ice confidence is not high"},{"name":"snow","value":1,"description":"High confidence snow cover"}],"description":"Snow/Ice mask"},{"name":"clear","length":1,"offset":6,"classes":[{"name":"not_clear","value":0,"description":"Cloud or dilated cloud bits are set"},{"name":"clear","value":1,"description":"Cloud and dilated cloud bits are not set"}],"description":"Clear mask"},{"name":"water","length":1,"offset":7,"classes":[{"name":"not_water","value":0,"description":"Land or cloud"},{"name":"water","value":1,"description":"Water"}],"description":"Water mask"},{"name":"cloud_confidence","length":2,"offset":8,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cloud"},{"name":"medium","value":2,"description":"Medium confidence cloud"},{"name":"high","value":3,"description":"High confidence cloud"}],"description":"Cloud confidence levels"},{"name":"cloud_shadow_confidence","length":2,"offset":10,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cloud shadow"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence cloud shadow"}],"description":"Cloud shadow confidence levels"},{"name":"snow_confidence","length":2,"offset":12,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence snow/ice"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence snow/ice"}],"description":"Snow/Ice confidence levels"},{"name":"cirrus_confidence","length":2,"offset":14,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cirrus"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence cirrus"}],"description":"Cirrus confidence levels"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["cloud","cloud-shadow","snow-ice","water-mask"],"title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band (QA_PIXEL)","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint16","spatial_resolution":30}]},"qa_radsat":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_QA_RADSAT.TIF","title":"Radiometric Saturation and Terrain Occlusion Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment Band (QA_RADSAT)","classification:bitfields":[{"name":"band1","length":1,"offset":0,"classes":[{"name":"not_saturated","value":0,"description":"Band 1 not saturated"},{"name":"saturated","value":1,"description":"Band 1 saturated"}],"description":"Band 1 radiometric saturation"},{"name":"band2","length":1,"offset":1,"classes":[{"name":"not_saturated","value":0,"description":"Band 2 not saturated"},{"name":"saturated","value":1,"description":"Band 2 saturated"}],"description":"Band 2 radiometric saturation"},{"name":"band3","length":1,"offset":2,"classes":[{"name":"not_saturated","value":0,"description":"Band 3 not saturated"},{"name":"saturated","value":1,"description":"Band 3 saturated"}],"description":"Band 3 radiometric saturation"},{"name":"band4","length":1,"offset":3,"classes":[{"name":"not_saturated","value":0,"description":"Band 4 not saturated"},{"name":"saturated","value":1,"description":"Band 4 saturated"}],"description":"Band 4 radiometric saturation"},{"name":"band5","length":1,"offset":4,"classes":[{"name":"not_saturated","value":0,"description":"Band 5 not saturated"},{"name":"saturated","value":1,"description":"Band 5 saturated"}],"description":"Band 5 radiometric saturation"},{"name":"band6","length":1,"offset":5,"classes":[{"name":"not_saturated","value":0,"description":"Band 6 not saturated"},{"name":"saturated","value":1,"description":"Band 6 saturated"}],"description":"Band 6 radiometric saturation"},{"name":"band7","length":1,"offset":6,"classes":[{"name":"not_saturated","value":0,"description":"Band 7 not saturated"},{"name":"saturated","value":1,"description":"Band 7 saturated"}],"description":"Band 7 radiometric saturation"},{"name":"band9","length":1,"offset":8,"classes":[{"name":"not_saturated","value":0,"description":"Band 9 not saturated"},{"name":"saturated","value":1,"description":"Band 9 saturated"}],"description":"Band 9 radiometric saturation"},{"name":"occlusion","length":1,"offset":11,"classes":[{"name":"not_occluded","value":0,"description":"Terrain is not occluded"},{"name":"occluded","value":1,"description":"Terrain is occluded"}],"description":"Terrain not visible from sensor due to intervening terrain"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["saturation"],"raster:bands":[{"unit":"bit index","data_type":"uint16","spatial_resolution":30}]},"qa_aerosol":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/014/LC09_L2SP_085014_20250713_20250714_02_T1/LC09_L2SP_085014_20250713_20250714_02_T1_SR_QA_AEROSOL.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data-mask","water-mask"],"title":"Aerosol Quality Assessment Band","description":"Collection 2 Level-2 Aerosol Quality Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint8","spatial_resolution":30}],"classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Pixel is not fill"},{"name":"fill","value":1,"description":"Pixel is fill"}],"description":"Image or fill data"},{"name":"retrieval","length":1,"offset":1,"classes":[{"name":"not_valid","value":0,"description":"Pixel retrieval is not valid"},{"name":"valid","value":1,"description":"Pixel retrieval is valid"}],"description":"Valid aerosol retrieval"},{"name":"water","length":1,"offset":2,"classes":[{"name":"not_water","value":0,"description":"Pixel is not water"},{"name":"water","value":1,"description":"Pixel is water"}],"description":"Water mask"},{"name":"interpolated","length":1,"offset":5,"classes":[{"name":"not_interpolated","value":0,"description":"Pixel is not interpolated aerosol"},{"name":"interpolated","value":1,"description":"Pixel is interpolated aerosol"}],"description":"Aerosol interpolation"},{"name":"level","length":2,"offset":6,"classes":[{"name":"climatology","value":0,"description":"No aerosol correction applied"},{"name":"low","value":1,"description":"Low aerosol level"},{"name":"medium","value":2,"description":"Medium aerosol level"},{"name":"high","value":3,"description":"High aerosol level"}],"description":"Aerosol level"}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=landsat-c2-l2&item=LC09_L2SP_085014_20250713_02_T1&assets=red&assets=green&assets=blue&color_formula=gamma+RGB+2.7%2C+saturation+1.5%2C+sigmoidal+RGB+15+0.55&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=landsat-c2-l2&item=LC09_L2SP_085014_20250713_02_T1&assets=red&assets=green&assets=blue&color_formula=gamma+RGB+2.7%2C+saturation+1.5%2C+sigmoidal+RGB+15+0.55&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-172.49840302178143,66.70298910577768],[-173.95485116567957,65.05876775578554],[-170.26258587117866,64.45133266136678],[-168.59470133811973,66.0659045481276],[-172.49840302178143,66.70298910577768]]]},"collection":"landsat-c2-l2","properties":{"gsd":30,"created":"2025-07-17T09:17:39.812486Z","sci:doi":"10.5066/P9OGBGM6","datetime":"2025-07-13T22:51:16.152036Z","platform":"landsat-9","proj:epsg":32602,"proj:shape":[8451,8401],"description":"Landsat Collection 2 Level-2","instruments":["oli","tirs"],"eo:cloud_cover":94.22,"proj:transform":[30.0,0.0,358485.0,0.0,-30.0,7400115.0],"view:off_nadir":0,"landsat:wrs_row":"014","landsat:scene_id":"LC90850142025194LGN00","landsat:wrs_path":"085","landsat:wrs_type":"2","view:sun_azimuth":166.68937291,"landsat:correction":"L2SP","view:sun_elevation":45.6093248,"landsat:cloud_cover_land":91.46,"landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.1/schema.json","https://stac-extensions.github.io/classification/v1.0.0/schema.json","https://stac-extensions.github.io/scientific/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC09_L2SP_085013_20250713_02_T1","bbox":[-172.933747561624,65.75853555489407,-166.90039059649305,68.06179444510593],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/items/LC09_L2SP_085013_20250713_02_T1"},{"rel":"cite-as","href":"https://doi.org/10.5066/P9OGBGM6","title":"Landsat 8-9 OLI/TIRS Collection 2 Level-2"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC09_L2SP_085013_20250713_20250714_02_T1_SR","type":"application/json","title":"USGS STAC Item"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-st/items/LC09_L2SP_085013_20250713_20250714_02_T1_ST","type":"application/json","title":"USGS STAC Item"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=landsat-c2-l2&item=LC09_L2SP_085013_20250713_02_T1","title":"Map of item","type":"text/html"}],"assets":{"qa":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_ST_QA.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Surface Temperature Quality Assessment Band","description":"Collection 2 Level-2 Quality Assessment Band (ST_QA) Surface Temperature Product","raster:bands":[{"unit":"kelvin","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"ang":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_ANG.txt","type":"text/plain","roles":["metadata"],"title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File"},"red":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_SR_B4.TIF","eo:bands":[{"name":"OLI_B4","center_wavelength":0.65,"full_width_half_max":0.04,"common_name":"red","description":"Visible red"}],"description":"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Red Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"blue":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_SR_B2.TIF","eo:bands":[{"name":"OLI_B2","center_wavelength":0.48,"full_width_half_max":0.06,"common_name":"blue","description":"Visible blue"}],"description":"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Blue Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"drad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_ST_DRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Downwelled Radiance Band","description":"Collection 2 Level-2 Downwelled Radiance Band (ST_DRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emis":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_ST_EMIS.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Band","description":"Collection 2 Level-2 Emissivity Band (ST_EMIS) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emsd":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_ST_EMSD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Standard Deviation Band","description":"Collection 2 Level-2 Emissivity Standard Deviation Band (ST_EMSD) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"trad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_ST_TRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Thermal Radiance Band","description":"Collection 2 Level-2 Thermal Radiance Band (ST_TRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"urad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_ST_URAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Upwelled Radiance Band","description":"Collection 2 Level-2 Upwelled Radiance Band (ST_URAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"atran":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_ST_ATRAN.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Atmospheric Transmittance Band","description":"Collection 2 Level-2 Atmospheric Transmittance Band (ST_ATRAN) Surface Temperature Product","raster:bands":[{"scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"cdist":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_ST_CDIST.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Cloud Distance Band","description":"Collection 2 Level-2 Cloud Distance Band (ST_CDIST) Surface Temperature Product","raster:bands":[{"unit":"kilometer","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"green":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_SR_B3.TIF","eo:bands":[{"name":"OLI_B3","full_width_half_max":0.06,"common_name":"green","description":"Visible green","center_wavelength":0.56}],"description":"Collection 2 Level-2 Green Band (SR_B3) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Green Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"nir08":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_SR_B5.TIF","eo:bands":[{"name":"OLI_B5","center_wavelength":0.87,"full_width_half_max":0.03,"common_name":"nir08","description":"Near infrared"}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Near Infrared Band 0.8","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"lwir11":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_ST_B10.TIF","gsd":100,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","temperature"],"title":"Surface Temperature Band","eo:bands":[{"name":"TIRS_B10","common_name":"lwir11","description":"Long-wave infrared","center_wavelength":10.9,"full_width_half_max":0.59}],"description":"Collection 2 Level-2 Thermal Infrared Band (ST_B10) Surface Temperature","raster:bands":[{"unit":"kelvin","scale":0.00341802,"nodata":0,"offset":149.0,"data_type":"uint16","spatial_resolution":30}]},"swir16":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_SR_B6.TIF","eo:bands":[{"name":"OLI_B6","center_wavelength":1.61,"full_width_half_max":0.09,"common_name":"swir16","description":"Short-wave infrared"}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (SR_B6) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 1.6","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"swir22":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_SR_B7.TIF","eo:bands":[{"name":"OLI_B7","center_wavelength":2.2,"full_width_half_max":0.19,"common_name":"swir22","description":"Short-wave infrared"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 2.2","description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (SR_B7) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"coastal":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_SR_B1.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Coastal/Aerosol Band","eo:bands":[{"name":"OLI_B1","common_name":"coastal","description":"Coastal/Aerosol","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (SR_B1) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"mtl.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_MTL.txt","type":"text/plain","roles":["metadata"],"title":"Product Metadata File (txt)","description":"Collection 2 Level-2 Product Metadata File (txt)"},"mtl.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_MTL.xml","type":"application/xml","roles":["metadata"],"title":"Product Metadata File (xml)","description":"Collection 2 Level-2 Product Metadata File (xml)"},"mtl.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_MTL.json","type":"application/json","roles":["metadata"],"title":"Product Metadata File (json)","description":"Collection 2 Level-2 Product Metadata File (json)"},"qa_pixel":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_QA_PIXEL.TIF","classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Image data"},{"name":"fill","value":1,"description":"Fill data"}],"description":"Image or fill data"},{"name":"dilated_cloud","length":1,"offset":1,"classes":[{"name":"not_dilated","value":0,"description":"Cloud is not dilated or no cloud"},{"name":"dilated","value":1,"description":"Cloud dilation"}],"description":"Dilated cloud"},{"name":"cirrus","length":1,"offset":2,"classes":[{"name":"not_cirrus","value":0,"description":"Cirrus confidence is not high"},{"name":"cirrus","value":1,"description":"High confidence cirrus"}],"description":"Cirrus mask"},{"name":"cloud","length":1,"offset":3,"classes":[{"name":"not_cloud","value":0,"description":"Cloud confidence is not high"},{"name":"cloud","value":1,"description":"High confidence cloud"}],"description":"Cloud mask"},{"name":"cloud_shadow","length":1,"offset":4,"classes":[{"name":"not_shadow","value":0,"description":"Cloud shadow confidence is not high"},{"name":"shadow","value":1,"description":"High confidence cloud shadow"}],"description":"Cloud shadow mask"},{"name":"snow","length":1,"offset":5,"classes":[{"name":"not_snow","value":0,"description":"Snow/Ice confidence is not high"},{"name":"snow","value":1,"description":"High confidence snow cover"}],"description":"Snow/Ice mask"},{"name":"clear","length":1,"offset":6,"classes":[{"name":"not_clear","value":0,"description":"Cloud or dilated cloud bits are set"},{"name":"clear","value":1,"description":"Cloud and dilated cloud bits are not set"}],"description":"Clear mask"},{"name":"water","length":1,"offset":7,"classes":[{"name":"not_water","value":0,"description":"Land or cloud"},{"name":"water","value":1,"description":"Water"}],"description":"Water mask"},{"name":"cloud_confidence","length":2,"offset":8,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cloud"},{"name":"medium","value":2,"description":"Medium confidence cloud"},{"name":"high","value":3,"description":"High confidence cloud"}],"description":"Cloud confidence levels"},{"name":"cloud_shadow_confidence","length":2,"offset":10,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cloud shadow"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence cloud shadow"}],"description":"Cloud shadow confidence levels"},{"name":"snow_confidence","length":2,"offset":12,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence snow/ice"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence snow/ice"}],"description":"Snow/Ice confidence levels"},{"name":"cirrus_confidence","length":2,"offset":14,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cirrus"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence cirrus"}],"description":"Cirrus confidence levels"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["cloud","cloud-shadow","snow-ice","water-mask"],"title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band (QA_PIXEL)","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint16","spatial_resolution":30}]},"qa_radsat":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_QA_RADSAT.TIF","title":"Radiometric Saturation and Terrain Occlusion Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment Band (QA_RADSAT)","classification:bitfields":[{"name":"band1","length":1,"offset":0,"classes":[{"name":"not_saturated","value":0,"description":"Band 1 not saturated"},{"name":"saturated","value":1,"description":"Band 1 saturated"}],"description":"Band 1 radiometric saturation"},{"name":"band2","length":1,"offset":1,"classes":[{"name":"not_saturated","value":0,"description":"Band 2 not saturated"},{"name":"saturated","value":1,"description":"Band 2 saturated"}],"description":"Band 2 radiometric saturation"},{"name":"band3","length":1,"offset":2,"classes":[{"name":"not_saturated","value":0,"description":"Band 3 not saturated"},{"name":"saturated","value":1,"description":"Band 3 saturated"}],"description":"Band 3 radiometric saturation"},{"name":"band4","length":1,"offset":3,"classes":[{"name":"not_saturated","value":0,"description":"Band 4 not saturated"},{"name":"saturated","value":1,"description":"Band 4 saturated"}],"description":"Band 4 radiometric saturation"},{"name":"band5","length":1,"offset":4,"classes":[{"name":"not_saturated","value":0,"description":"Band 5 not saturated"},{"name":"saturated","value":1,"description":"Band 5 saturated"}],"description":"Band 5 radiometric saturation"},{"name":"band6","length":1,"offset":5,"classes":[{"name":"not_saturated","value":0,"description":"Band 6 not saturated"},{"name":"saturated","value":1,"description":"Band 6 saturated"}],"description":"Band 6 radiometric saturation"},{"name":"band7","length":1,"offset":6,"classes":[{"name":"not_saturated","value":0,"description":"Band 7 not saturated"},{"name":"saturated","value":1,"description":"Band 7 saturated"}],"description":"Band 7 radiometric saturation"},{"name":"band9","length":1,"offset":8,"classes":[{"name":"not_saturated","value":0,"description":"Band 9 not saturated"},{"name":"saturated","value":1,"description":"Band 9 saturated"}],"description":"Band 9 radiometric saturation"},{"name":"occlusion","length":1,"offset":11,"classes":[{"name":"not_occluded","value":0,"description":"Terrain is not occluded"},{"name":"occluded","value":1,"description":"Terrain is occluded"}],"description":"Terrain not visible from sensor due to intervening terrain"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["saturation"],"raster:bands":[{"unit":"bit index","data_type":"uint16","spatial_resolution":30}]},"qa_aerosol":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/013/LC09_L2SP_085013_20250713_20250714_02_T1/LC09_L2SP_085013_20250713_20250714_02_T1_SR_QA_AEROSOL.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data-mask","water-mask"],"title":"Aerosol Quality Assessment Band","description":"Collection 2 Level-2 Aerosol Quality Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint8","spatial_resolution":30}],"classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Pixel is not fill"},{"name":"fill","value":1,"description":"Pixel is fill"}],"description":"Image or fill data"},{"name":"retrieval","length":1,"offset":1,"classes":[{"name":"not_valid","value":0,"description":"Pixel retrieval is not valid"},{"name":"valid","value":1,"description":"Pixel retrieval is valid"}],"description":"Valid aerosol retrieval"},{"name":"water","length":1,"offset":2,"classes":[{"name":"not_water","value":0,"description":"Pixel is not water"},{"name":"water","value":1,"description":"Pixel is water"}],"description":"Water mask"},{"name":"interpolated","length":1,"offset":5,"classes":[{"name":"not_interpolated","value":0,"description":"Pixel is not interpolated aerosol"},{"name":"interpolated","value":1,"description":"Pixel is interpolated aerosol"}],"description":"Aerosol interpolation"},{"name":"level","length":2,"offset":6,"classes":[{"name":"climatology","value":0,"description":"No aerosol correction applied"},{"name":"low","value":1,"description":"Low aerosol level"},{"name":"medium","value":2,"description":"Medium aerosol level"},{"name":"high","value":3,"description":"High aerosol level"}],"description":"Aerosol level"}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=landsat-c2-l2&item=LC09_L2SP_085013_20250713_02_T1&assets=red&assets=green&assets=blue&color_formula=gamma+RGB+2.7%2C+saturation+1.5%2C+sigmoidal+RGB+15+0.55&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=landsat-c2-l2&item=LC09_L2SP_085013_20250713_02_T1&assets=red&assets=green&assets=blue&color_formula=gamma+RGB+2.7%2C+saturation+1.5%2C+sigmoidal+RGB+15+0.55&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-171.14260198100072,68.0638957943386],[-172.75173683673415,66.43035356685964],[-168.88829959182414,65.79554471055128],[-167.04839413597338,67.39504042885581],[-171.14260198100072,68.0638957943386]]]},"collection":"landsat-c2-l2","properties":{"gsd":30,"created":"2025-07-17T09:17:37.626342Z","sci:doi":"10.5066/P9OGBGM6","datetime":"2025-07-13T22:50:52.265255Z","platform":"landsat-9","proj:epsg":32602,"proj:shape":[8431,8391],"description":"Landsat Collection 2 Level-2","instruments":["oli","tirs"],"eo:cloud_cover":37.08,"proj:transform":[30.0,0.0,419385.0,0.0,-30.0,7551015.0],"view:off_nadir":0,"landsat:wrs_row":"013","landsat:scene_id":"LC90850132025194LGN00","landsat:wrs_path":"085","landsat:wrs_type":"2","view:sun_azimuth":168.64083762,"landsat:correction":"L2SP","view:sun_elevation":44.39750417,"landsat:cloud_cover_land":35.58,"landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.1/schema.json","https://stac-extensions.github.io/classification/v1.0.0/schema.json","https://stac-extensions.github.io/scientific/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC09_L2SP_085012_20250713_02_T1","bbox":[-171.51794538922994,67.07187552288619,-165.12637876091432,69.42568447711382],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/items/LC09_L2SP_085012_20250713_02_T1"},{"rel":"cite-as","href":"https://doi.org/10.5066/P9OGBGM6","title":"Landsat 8-9 OLI/TIRS Collection 2 Level-2"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC09_L2SP_085012_20250713_20250714_02_T1_SR","type":"application/json","title":"USGS STAC Item"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-st/items/LC09_L2SP_085012_20250713_20250714_02_T1_ST","type":"application/json","title":"USGS STAC Item"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=landsat-c2-l2&item=LC09_L2SP_085012_20250713_02_T1","title":"Map of item","type":"text/html"}],"assets":{"qa":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_ST_QA.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Surface Temperature Quality Assessment Band","description":"Collection 2 Level-2 Quality Assessment Band (ST_QA) Surface Temperature Product","raster:bands":[{"unit":"kelvin","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"ang":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_ANG.txt","type":"text/plain","roles":["metadata"],"title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File"},"red":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_SR_B4.TIF","eo:bands":[{"name":"OLI_B4","center_wavelength":0.65,"full_width_half_max":0.04,"common_name":"red","description":"Visible red"}],"description":"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Red Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"blue":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_SR_B2.TIF","eo:bands":[{"name":"OLI_B2","center_wavelength":0.48,"full_width_half_max":0.06,"common_name":"blue","description":"Visible blue"}],"description":"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Blue Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"drad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_ST_DRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Downwelled Radiance Band","description":"Collection 2 Level-2 Downwelled Radiance Band (ST_DRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emis":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_ST_EMIS.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Band","description":"Collection 2 Level-2 Emissivity Band (ST_EMIS) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emsd":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_ST_EMSD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Standard Deviation Band","description":"Collection 2 Level-2 Emissivity Standard Deviation Band (ST_EMSD) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"trad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_ST_TRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Thermal Radiance Band","description":"Collection 2 Level-2 Thermal Radiance Band (ST_TRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"urad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_ST_URAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Upwelled Radiance Band","description":"Collection 2 Level-2 Upwelled Radiance Band (ST_URAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"atran":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_ST_ATRAN.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Atmospheric Transmittance Band","description":"Collection 2 Level-2 Atmospheric Transmittance Band (ST_ATRAN) Surface Temperature Product","raster:bands":[{"scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"cdist":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_ST_CDIST.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Cloud Distance Band","description":"Collection 2 Level-2 Cloud Distance Band (ST_CDIST) Surface Temperature Product","raster:bands":[{"unit":"kilometer","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"green":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_SR_B3.TIF","eo:bands":[{"name":"OLI_B3","full_width_half_max":0.06,"common_name":"green","description":"Visible green","center_wavelength":0.56}],"description":"Collection 2 Level-2 Green Band (SR_B3) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Green Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"nir08":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_SR_B5.TIF","eo:bands":[{"name":"OLI_B5","center_wavelength":0.87,"full_width_half_max":0.03,"common_name":"nir08","description":"Near infrared"}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Near Infrared Band 0.8","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"lwir11":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_ST_B10.TIF","gsd":100,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","temperature"],"title":"Surface Temperature Band","eo:bands":[{"name":"TIRS_B10","common_name":"lwir11","description":"Long-wave infrared","center_wavelength":10.9,"full_width_half_max":0.59}],"description":"Collection 2 Level-2 Thermal Infrared Band (ST_B10) Surface Temperature","raster:bands":[{"unit":"kelvin","scale":0.00341802,"nodata":0,"offset":149.0,"data_type":"uint16","spatial_resolution":30}]},"swir16":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_SR_B6.TIF","eo:bands":[{"name":"OLI_B6","center_wavelength":1.61,"full_width_half_max":0.09,"common_name":"swir16","description":"Short-wave infrared"}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (SR_B6) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 1.6","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"swir22":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_SR_B7.TIF","eo:bands":[{"name":"OLI_B7","center_wavelength":2.2,"full_width_half_max":0.19,"common_name":"swir22","description":"Short-wave infrared"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 2.2","description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (SR_B7) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"coastal":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_SR_B1.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Coastal/Aerosol Band","eo:bands":[{"name":"OLI_B1","common_name":"coastal","description":"Coastal/Aerosol","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (SR_B1) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"mtl.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_MTL.txt","type":"text/plain","roles":["metadata"],"title":"Product Metadata File (txt)","description":"Collection 2 Level-2 Product Metadata File (txt)"},"mtl.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_MTL.xml","type":"application/xml","roles":["metadata"],"title":"Product Metadata File (xml)","description":"Collection 2 Level-2 Product Metadata File (xml)"},"mtl.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_MTL.json","type":"application/json","roles":["metadata"],"title":"Product Metadata File (json)","description":"Collection 2 Level-2 Product Metadata File (json)"},"qa_pixel":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_QA_PIXEL.TIF","classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Image data"},{"name":"fill","value":1,"description":"Fill data"}],"description":"Image or fill data"},{"name":"dilated_cloud","length":1,"offset":1,"classes":[{"name":"not_dilated","value":0,"description":"Cloud is not dilated or no cloud"},{"name":"dilated","value":1,"description":"Cloud dilation"}],"description":"Dilated cloud"},{"name":"cirrus","length":1,"offset":2,"classes":[{"name":"not_cirrus","value":0,"description":"Cirrus confidence is not high"},{"name":"cirrus","value":1,"description":"High confidence cirrus"}],"description":"Cirrus mask"},{"name":"cloud","length":1,"offset":3,"classes":[{"name":"not_cloud","value":0,"description":"Cloud confidence is not high"},{"name":"cloud","value":1,"description":"High confidence cloud"}],"description":"Cloud mask"},{"name":"cloud_shadow","length":1,"offset":4,"classes":[{"name":"not_shadow","value":0,"description":"Cloud shadow confidence is not high"},{"name":"shadow","value":1,"description":"High confidence cloud shadow"}],"description":"Cloud shadow mask"},{"name":"snow","length":1,"offset":5,"classes":[{"name":"not_snow","value":0,"description":"Snow/Ice confidence is not high"},{"name":"snow","value":1,"description":"High confidence snow cover"}],"description":"Snow/Ice mask"},{"name":"clear","length":1,"offset":6,"classes":[{"name":"not_clear","value":0,"description":"Cloud or dilated cloud bits are set"},{"name":"clear","value":1,"description":"Cloud and dilated cloud bits are not set"}],"description":"Clear mask"},{"name":"water","length":1,"offset":7,"classes":[{"name":"not_water","value":0,"description":"Land or cloud"},{"name":"water","value":1,"description":"Water"}],"description":"Water mask"},{"name":"cloud_confidence","length":2,"offset":8,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cloud"},{"name":"medium","value":2,"description":"Medium confidence cloud"},{"name":"high","value":3,"description":"High confidence cloud"}],"description":"Cloud confidence levels"},{"name":"cloud_shadow_confidence","length":2,"offset":10,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cloud shadow"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence cloud shadow"}],"description":"Cloud shadow confidence levels"},{"name":"snow_confidence","length":2,"offset":12,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence snow/ice"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence snow/ice"}],"description":"Snow/Ice confidence levels"},{"name":"cirrus_confidence","length":2,"offset":14,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cirrus"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence cirrus"}],"description":"Cirrus confidence levels"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["cloud","cloud-shadow","snow-ice","water-mask"],"title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band (QA_PIXEL)","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint16","spatial_resolution":30}]},"qa_radsat":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_QA_RADSAT.TIF","title":"Radiometric Saturation and Terrain Occlusion Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment Band (QA_RADSAT)","classification:bitfields":[{"name":"band1","length":1,"offset":0,"classes":[{"name":"not_saturated","value":0,"description":"Band 1 not saturated"},{"name":"saturated","value":1,"description":"Band 1 saturated"}],"description":"Band 1 radiometric saturation"},{"name":"band2","length":1,"offset":1,"classes":[{"name":"not_saturated","value":0,"description":"Band 2 not saturated"},{"name":"saturated","value":1,"description":"Band 2 saturated"}],"description":"Band 2 radiometric saturation"},{"name":"band3","length":1,"offset":2,"classes":[{"name":"not_saturated","value":0,"description":"Band 3 not saturated"},{"name":"saturated","value":1,"description":"Band 3 saturated"}],"description":"Band 3 radiometric saturation"},{"name":"band4","length":1,"offset":3,"classes":[{"name":"not_saturated","value":0,"description":"Band 4 not saturated"},{"name":"saturated","value":1,"description":"Band 4 saturated"}],"description":"Band 4 radiometric saturation"},{"name":"band5","length":1,"offset":4,"classes":[{"name":"not_saturated","value":0,"description":"Band 5 not saturated"},{"name":"saturated","value":1,"description":"Band 5 saturated"}],"description":"Band 5 radiometric saturation"},{"name":"band6","length":1,"offset":5,"classes":[{"name":"not_saturated","value":0,"description":"Band 6 not saturated"},{"name":"saturated","value":1,"description":"Band 6 saturated"}],"description":"Band 6 radiometric saturation"},{"name":"band7","length":1,"offset":6,"classes":[{"name":"not_saturated","value":0,"description":"Band 7 not saturated"},{"name":"saturated","value":1,"description":"Band 7 saturated"}],"description":"Band 7 radiometric saturation"},{"name":"band9","length":1,"offset":8,"classes":[{"name":"not_saturated","value":0,"description":"Band 9 not saturated"},{"name":"saturated","value":1,"description":"Band 9 saturated"}],"description":"Band 9 radiometric saturation"},{"name":"occlusion","length":1,"offset":11,"classes":[{"name":"not_occluded","value":0,"description":"Terrain is not occluded"},{"name":"occluded","value":1,"description":"Terrain is occluded"}],"description":"Terrain not visible from sensor due to intervening terrain"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["saturation"],"raster:bands":[{"unit":"bit index","data_type":"uint16","spatial_resolution":30}]},"qa_aerosol":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/012/LC09_L2SP_085012_20250713_20250714_02_T1/LC09_L2SP_085012_20250713_20250714_02_T1_SR_QA_AEROSOL.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data-mask","water-mask"],"title":"Aerosol Quality Assessment Band","description":"Collection 2 Level-2 Aerosol Quality Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint8","spatial_resolution":30}],"classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Pixel is not fill"},{"name":"fill","value":1,"description":"Pixel is fill"}],"description":"Image or fill data"},{"name":"retrieval","length":1,"offset":1,"classes":[{"name":"not_valid","value":0,"description":"Pixel retrieval is not valid"},{"name":"valid","value":1,"description":"Pixel retrieval is valid"}],"description":"Valid aerosol retrieval"},{"name":"water","length":1,"offset":2,"classes":[{"name":"not_water","value":0,"description":"Pixel is not water"},{"name":"water","value":1,"description":"Pixel is water"}],"description":"Water mask"},{"name":"interpolated","length":1,"offset":5,"classes":[{"name":"not_interpolated","value":0,"description":"Pixel is not interpolated aerosol"},{"name":"interpolated","value":1,"description":"Pixel is interpolated aerosol"}],"description":"Aerosol interpolation"},{"name":"level","length":2,"offset":6,"classes":[{"name":"climatology","value":0,"description":"No aerosol correction applied"},{"name":"low","value":1,"description":"Low aerosol level"},{"name":"medium","value":2,"description":"Medium aerosol level"},{"name":"high","value":3,"description":"High aerosol level"}],"description":"Aerosol level"}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=landsat-c2-l2&item=LC09_L2SP_085012_20250713_02_T1&assets=red&assets=green&assets=blue&color_formula=gamma+RGB+2.7%2C+saturation+1.5%2C+sigmoidal+RGB+15+0.55&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=landsat-c2-l2&item=LC09_L2SP_085012_20250713_02_T1&assets=red&assets=green&assets=blue&color_formula=gamma+RGB+2.7%2C+saturation+1.5%2C+sigmoidal+RGB+15+0.55&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-169.63239029571878,69.41300696210217],[-171.42474509361074,67.79270928598505],[-167.37420442869055,67.12702212946967],[-165.33348060661288,68.70901982531075],[-169.63239029571878,69.41300696210217]]]},"collection":"landsat-c2-l2","properties":{"gsd":30,"created":"2025-07-17T09:17:34.540118Z","sci:doi":"10.5066/P9OGBGM6","datetime":"2025-07-13T22:50:28.386948Z","platform":"landsat-9","proj:epsg":32602,"proj:shape":[8421,8381],"description":"Landsat Collection 2 Level-2","instruments":["oli","tirs"],"eo:cloud_cover":63.96,"proj:transform":[30.0,0.0,479685.0,0.0,-30.0,7701915.0],"view:off_nadir":0,"landsat:wrs_row":"012","landsat:scene_id":"LC90850122025194LGN00","landsat:wrs_path":"085","landsat:wrs_type":"2","view:sun_azimuth":170.69117039,"landsat:correction":"L2SP","view:sun_elevation":43.17585686,"landsat:cloud_cover_land":36.32,"landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.1/schema.json","https://stac-extensions.github.io/classification/v1.0.0/schema.json","https://stac-extensions.github.io/scientific/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC09_L2SP_085011_20250713_02_T1","bbox":[-170.38925501518037,68.36897600632815,-163.3067226452669,70.77719399367186],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/items/LC09_L2SP_085011_20250713_02_T1"},{"rel":"cite-as","href":"https://doi.org/10.5066/P9OGBGM6","title":"Landsat 8-9 OLI/TIRS Collection 2 Level-2"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC09_L2SP_085011_20250713_20250714_02_T1_SR","type":"application/json","title":"USGS STAC Item"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-st/items/LC09_L2SP_085011_20250713_20250714_02_T1_ST","type":"application/json","title":"USGS STAC Item"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=landsat-c2-l2&item=LC09_L2SP_085011_20250713_02_T1","title":"Map of item","type":"text/html"}],"assets":{"qa":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_ST_QA.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Surface Temperature Quality Assessment Band","description":"Collection 2 Level-2 Quality Assessment Band (ST_QA) Surface Temperature Product","raster:bands":[{"unit":"kelvin","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"ang":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_ANG.txt","type":"text/plain","roles":["metadata"],"title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File"},"red":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_SR_B4.TIF","eo:bands":[{"name":"OLI_B4","center_wavelength":0.65,"full_width_half_max":0.04,"common_name":"red","description":"Visible red"}],"description":"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Red Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"blue":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_SR_B2.TIF","eo:bands":[{"name":"OLI_B2","center_wavelength":0.48,"full_width_half_max":0.06,"common_name":"blue","description":"Visible blue"}],"description":"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Blue Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"drad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_ST_DRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Downwelled Radiance Band","description":"Collection 2 Level-2 Downwelled Radiance Band (ST_DRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emis":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_ST_EMIS.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Band","description":"Collection 2 Level-2 Emissivity Band (ST_EMIS) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emsd":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_ST_EMSD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Standard Deviation Band","description":"Collection 2 Level-2 Emissivity Standard Deviation Band (ST_EMSD) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"trad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_ST_TRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Thermal Radiance Band","description":"Collection 2 Level-2 Thermal Radiance Band (ST_TRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"urad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_ST_URAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Upwelled Radiance Band","description":"Collection 2 Level-2 Upwelled Radiance Band (ST_URAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"atran":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_ST_ATRAN.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Atmospheric Transmittance Band","description":"Collection 2 Level-2 Atmospheric Transmittance Band (ST_ATRAN) Surface Temperature Product","raster:bands":[{"scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"cdist":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_ST_CDIST.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Cloud Distance Band","description":"Collection 2 Level-2 Cloud Distance Band (ST_CDIST) Surface Temperature Product","raster:bands":[{"unit":"kilometer","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"green":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_SR_B3.TIF","eo:bands":[{"name":"OLI_B3","full_width_half_max":0.06,"common_name":"green","description":"Visible green","center_wavelength":0.56}],"description":"Collection 2 Level-2 Green Band (SR_B3) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Green Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"nir08":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_SR_B5.TIF","eo:bands":[{"name":"OLI_B5","center_wavelength":0.87,"full_width_half_max":0.03,"common_name":"nir08","description":"Near infrared"}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Near Infrared Band 0.8","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"lwir11":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_ST_B10.TIF","gsd":100,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","temperature"],"title":"Surface Temperature Band","eo:bands":[{"name":"TIRS_B10","common_name":"lwir11","description":"Long-wave infrared","center_wavelength":10.9,"full_width_half_max":0.59}],"description":"Collection 2 Level-2 Thermal Infrared Band (ST_B10) Surface Temperature","raster:bands":[{"unit":"kelvin","scale":0.00341802,"nodata":0,"offset":149.0,"data_type":"uint16","spatial_resolution":30}]},"swir16":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_SR_B6.TIF","eo:bands":[{"name":"OLI_B6","center_wavelength":1.61,"full_width_half_max":0.09,"common_name":"swir16","description":"Short-wave infrared"}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (SR_B6) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 1.6","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"swir22":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_SR_B7.TIF","eo:bands":[{"name":"OLI_B7","center_wavelength":2.2,"full_width_half_max":0.19,"common_name":"swir22","description":"Short-wave infrared"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 2.2","description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (SR_B7) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"coastal":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_SR_B1.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Coastal/Aerosol Band","eo:bands":[{"name":"OLI_B1","common_name":"coastal","description":"Coastal/Aerosol","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (SR_B1) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"mtl.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_MTL.txt","type":"text/plain","roles":["metadata"],"title":"Product Metadata File (txt)","description":"Collection 2 Level-2 Product Metadata File (txt)"},"mtl.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_MTL.xml","type":"application/xml","roles":["metadata"],"title":"Product Metadata File (xml)","description":"Collection 2 Level-2 Product Metadata File (xml)"},"mtl.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_MTL.json","type":"application/json","roles":["metadata"],"title":"Product Metadata File (json)","description":"Collection 2 Level-2 Product Metadata File (json)"},"qa_pixel":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_QA_PIXEL.TIF","classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Image data"},{"name":"fill","value":1,"description":"Fill data"}],"description":"Image or fill data"},{"name":"dilated_cloud","length":1,"offset":1,"classes":[{"name":"not_dilated","value":0,"description":"Cloud is not dilated or no cloud"},{"name":"dilated","value":1,"description":"Cloud dilation"}],"description":"Dilated cloud"},{"name":"cirrus","length":1,"offset":2,"classes":[{"name":"not_cirrus","value":0,"description":"Cirrus confidence is not high"},{"name":"cirrus","value":1,"description":"High confidence cirrus"}],"description":"Cirrus mask"},{"name":"cloud","length":1,"offset":3,"classes":[{"name":"not_cloud","value":0,"description":"Cloud confidence is not high"},{"name":"cloud","value":1,"description":"High confidence cloud"}],"description":"Cloud mask"},{"name":"cloud_shadow","length":1,"offset":4,"classes":[{"name":"not_shadow","value":0,"description":"Cloud shadow confidence is not high"},{"name":"shadow","value":1,"description":"High confidence cloud shadow"}],"description":"Cloud shadow mask"},{"name":"snow","length":1,"offset":5,"classes":[{"name":"not_snow","value":0,"description":"Snow/Ice confidence is not high"},{"name":"snow","value":1,"description":"High confidence snow cover"}],"description":"Snow/Ice mask"},{"name":"clear","length":1,"offset":6,"classes":[{"name":"not_clear","value":0,"description":"Cloud or dilated cloud bits are set"},{"name":"clear","value":1,"description":"Cloud and dilated cloud bits are not set"}],"description":"Clear mask"},{"name":"water","length":1,"offset":7,"classes":[{"name":"not_water","value":0,"description":"Land or cloud"},{"name":"water","value":1,"description":"Water"}],"description":"Water mask"},{"name":"cloud_confidence","length":2,"offset":8,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cloud"},{"name":"medium","value":2,"description":"Medium confidence cloud"},{"name":"high","value":3,"description":"High confidence cloud"}],"description":"Cloud confidence levels"},{"name":"cloud_shadow_confidence","length":2,"offset":10,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cloud shadow"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence cloud shadow"}],"description":"Cloud shadow confidence levels"},{"name":"snow_confidence","length":2,"offset":12,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence snow/ice"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence snow/ice"}],"description":"Snow/Ice confidence levels"},{"name":"cirrus_confidence","length":2,"offset":14,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cirrus"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence cirrus"}],"description":"Cirrus confidence levels"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["cloud","cloud-shadow","snow-ice","water-mask"],"title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band (QA_PIXEL)","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint16","spatial_resolution":30}]},"qa_radsat":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_QA_RADSAT.TIF","title":"Radiometric Saturation and Terrain Occlusion Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment Band (QA_RADSAT)","classification:bitfields":[{"name":"band1","length":1,"offset":0,"classes":[{"name":"not_saturated","value":0,"description":"Band 1 not saturated"},{"name":"saturated","value":1,"description":"Band 1 saturated"}],"description":"Band 1 radiometric saturation"},{"name":"band2","length":1,"offset":1,"classes":[{"name":"not_saturated","value":0,"description":"Band 2 not saturated"},{"name":"saturated","value":1,"description":"Band 2 saturated"}],"description":"Band 2 radiometric saturation"},{"name":"band3","length":1,"offset":2,"classes":[{"name":"not_saturated","value":0,"description":"Band 3 not saturated"},{"name":"saturated","value":1,"description":"Band 3 saturated"}],"description":"Band 3 radiometric saturation"},{"name":"band4","length":1,"offset":3,"classes":[{"name":"not_saturated","value":0,"description":"Band 4 not saturated"},{"name":"saturated","value":1,"description":"Band 4 saturated"}],"description":"Band 4 radiometric saturation"},{"name":"band5","length":1,"offset":4,"classes":[{"name":"not_saturated","value":0,"description":"Band 5 not saturated"},{"name":"saturated","value":1,"description":"Band 5 saturated"}],"description":"Band 5 radiometric saturation"},{"name":"band6","length":1,"offset":5,"classes":[{"name":"not_saturated","value":0,"description":"Band 6 not saturated"},{"name":"saturated","value":1,"description":"Band 6 saturated"}],"description":"Band 6 radiometric saturation"},{"name":"band7","length":1,"offset":6,"classes":[{"name":"not_saturated","value":0,"description":"Band 7 not saturated"},{"name":"saturated","value":1,"description":"Band 7 saturated"}],"description":"Band 7 radiometric saturation"},{"name":"band9","length":1,"offset":8,"classes":[{"name":"not_saturated","value":0,"description":"Band 9 not saturated"},{"name":"saturated","value":1,"description":"Band 9 saturated"}],"description":"Band 9 radiometric saturation"},{"name":"occlusion","length":1,"offset":11,"classes":[{"name":"not_occluded","value":0,"description":"Terrain is not occluded"},{"name":"occluded","value":1,"description":"Terrain is occluded"}],"description":"Terrain not visible from sensor due to intervening terrain"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["saturation"],"raster:bands":[{"unit":"bit index","data_type":"uint16","spatial_resolution":30}]},"qa_aerosol":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/011/LC09_L2SP_085011_20250713_20250714_02_T1/LC09_L2SP_085011_20250713_20250714_02_T1_SR_QA_AEROSOL.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data-mask","water-mask"],"title":"Aerosol Quality Assessment Band","description":"Collection 2 Level-2 Aerosol Quality Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint8","spatial_resolution":30}],"classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Pixel is not fill"},{"name":"fill","value":1,"description":"Pixel is fill"}],"description":"Image or fill data"},{"name":"retrieval","length":1,"offset":1,"classes":[{"name":"not_valid","value":0,"description":"Pixel retrieval is not valid"},{"name":"valid","value":1,"description":"Pixel retrieval is valid"}],"description":"Valid aerosol retrieval"},{"name":"water","length":1,"offset":2,"classes":[{"name":"not_water","value":0,"description":"Pixel is not water"},{"name":"water","value":1,"description":"Pixel is water"}],"description":"Water mask"},{"name":"interpolated","length":1,"offset":5,"classes":[{"name":"not_interpolated","value":0,"description":"Pixel is not interpolated aerosol"},{"name":"interpolated","value":1,"description":"Pixel is interpolated aerosol"}],"description":"Aerosol interpolation"},{"name":"level","length":2,"offset":6,"classes":[{"name":"climatology","value":0,"description":"No aerosol correction applied"},{"name":"low","value":1,"description":"Low aerosol level"},{"name":"medium","value":2,"description":"Medium aerosol level"},{"name":"high","value":3,"description":"High aerosol level"}],"description":"Aerosol level"}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=landsat-c2-l2&item=LC09_L2SP_085011_20250713_02_T1&assets=red&assets=green&assets=blue&color_formula=gamma+RGB+2.7%2C+saturation+1.5%2C+sigmoidal+RGB+15+0.55&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=landsat-c2-l2&item=LC09_L2SP_085011_20250713_02_T1&assets=red&assets=green&assets=blue&color_formula=gamma+RGB+2.7%2C+saturation+1.5%2C+sigmoidal+RGB+15+0.55&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-167.93451165014957,70.74946077395848],[-169.94673840918574,69.14497658056962],[-165.6959643858654,68.44459309641566],[-163.4151530348691,70.00507386721911],[-167.93451165014957,70.74946077395848]]]},"collection":"landsat-c2-l2","properties":{"gsd":30,"created":"2025-07-17T09:17:32.148788Z","sci:doi":"10.5066/P9OGBGM6","datetime":"2025-07-13T22:50:04.504405Z","platform":"landsat-9","proj:epsg":32603,"proj:shape":[8721,8691],"description":"Landsat Collection 2 Level-2","instruments":["oli","tirs"],"eo:cloud_cover":68.15,"proj:transform":[30.0,0.0,301485.0,0.0,-30.0,7853415.0],"view:off_nadir":0,"landsat:wrs_row":"011","landsat:scene_id":"LC90850112025194LGN00","landsat:wrs_path":"085","landsat:wrs_type":"2","view:sun_azimuth":172.8729542,"landsat:correction":"L2SP","view:sun_elevation":41.94477404,"landsat:cloud_cover_land":40.93,"landsat:collection_number":"02","landsat:collection_category":"T1"},"stac_extensions":["https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.1/schema.json","https://stac-extensions.github.io/classification/v1.0.0/schema.json","https://stac-extensions.github.io/scientific/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC09_L2SP_085010_20250713_02_T2","bbox":[-168.62763760429488,69.7060057724458,-161.05327388041468,72.05043422755419],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/items/LC09_L2SP_085010_20250713_02_T2"},{"rel":"cite-as","href":"https://doi.org/10.5066/P9OGBGM6","title":"Landsat 8-9 OLI/TIRS Collection 2 Level-2"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC09_L2SP_085010_20250713_20250714_02_T2_SR","type":"application/json","title":"USGS STAC Item"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-st/items/LC09_L2SP_085010_20250713_20250714_02_T2_ST","type":"application/json","title":"USGS STAC Item"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=landsat-c2-l2&item=LC09_L2SP_085010_20250713_02_T2","title":"Map of item","type":"text/html"}],"assets":{"qa":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_ST_QA.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Surface Temperature Quality Assessment Band","description":"Collection 2 Level-2 Quality Assessment Band (ST_QA) Surface Temperature Product","raster:bands":[{"unit":"kelvin","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"ang":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_ANG.txt","type":"text/plain","roles":["metadata"],"title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File"},"red":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_SR_B4.TIF","eo:bands":[{"name":"OLI_B4","center_wavelength":0.65,"full_width_half_max":0.04,"common_name":"red","description":"Visible red"}],"description":"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Red Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"blue":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_SR_B2.TIF","eo:bands":[{"name":"OLI_B2","center_wavelength":0.48,"full_width_half_max":0.06,"common_name":"blue","description":"Visible blue"}],"description":"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Blue Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"drad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_ST_DRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Downwelled Radiance Band","description":"Collection 2 Level-2 Downwelled Radiance Band (ST_DRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emis":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_ST_EMIS.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Band","description":"Collection 2 Level-2 Emissivity Band (ST_EMIS) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emsd":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_ST_EMSD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Standard Deviation Band","description":"Collection 2 Level-2 Emissivity Standard Deviation Band (ST_EMSD) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"trad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_ST_TRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Thermal Radiance Band","description":"Collection 2 Level-2 Thermal Radiance Band (ST_TRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"urad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_ST_URAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Upwelled Radiance Band","description":"Collection 2 Level-2 Upwelled Radiance Band (ST_URAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"atran":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_ST_ATRAN.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Atmospheric Transmittance Band","description":"Collection 2 Level-2 Atmospheric Transmittance Band (ST_ATRAN) Surface Temperature Product","raster:bands":[{"scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"cdist":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_ST_CDIST.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Cloud Distance Band","description":"Collection 2 Level-2 Cloud Distance Band (ST_CDIST) Surface Temperature Product","raster:bands":[{"unit":"kilometer","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"green":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_SR_B3.TIF","eo:bands":[{"name":"OLI_B3","full_width_half_max":0.06,"common_name":"green","description":"Visible green","center_wavelength":0.56}],"description":"Collection 2 Level-2 Green Band (SR_B3) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Green Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"nir08":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_SR_B5.TIF","eo:bands":[{"name":"OLI_B5","center_wavelength":0.87,"full_width_half_max":0.03,"common_name":"nir08","description":"Near infrared"}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Near Infrared Band 0.8","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"lwir11":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_ST_B10.TIF","gsd":100,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","temperature"],"title":"Surface Temperature Band","eo:bands":[{"name":"TIRS_B10","common_name":"lwir11","description":"Long-wave infrared","center_wavelength":10.9,"full_width_half_max":0.59}],"description":"Collection 2 Level-2 Thermal Infrared Band (ST_B10) Surface Temperature","raster:bands":[{"unit":"kelvin","scale":0.00341802,"nodata":0,"offset":149.0,"data_type":"uint16","spatial_resolution":30}]},"swir16":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_SR_B6.TIF","eo:bands":[{"name":"OLI_B6","center_wavelength":1.61,"full_width_half_max":0.09,"common_name":"swir16","description":"Short-wave infrared"}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (SR_B6) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 1.6","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"swir22":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_SR_B7.TIF","eo:bands":[{"name":"OLI_B7","center_wavelength":2.2,"full_width_half_max":0.19,"common_name":"swir22","description":"Short-wave infrared"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 2.2","description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (SR_B7) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"coastal":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_SR_B1.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Coastal/Aerosol Band","eo:bands":[{"name":"OLI_B1","common_name":"coastal","description":"Coastal/Aerosol","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (SR_B1) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"mtl.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_MTL.txt","type":"text/plain","roles":["metadata"],"title":"Product Metadata File (txt)","description":"Collection 2 Level-2 Product Metadata File (txt)"},"mtl.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_MTL.xml","type":"application/xml","roles":["metadata"],"title":"Product Metadata File (xml)","description":"Collection 2 Level-2 Product Metadata File (xml)"},"mtl.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_MTL.json","type":"application/json","roles":["metadata"],"title":"Product Metadata File (json)","description":"Collection 2 Level-2 Product Metadata File (json)"},"qa_pixel":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_QA_PIXEL.TIF","classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Image data"},{"name":"fill","value":1,"description":"Fill data"}],"description":"Image or fill data"},{"name":"dilated_cloud","length":1,"offset":1,"classes":[{"name":"not_dilated","value":0,"description":"Cloud is not dilated or no cloud"},{"name":"dilated","value":1,"description":"Cloud dilation"}],"description":"Dilated cloud"},{"name":"cirrus","length":1,"offset":2,"classes":[{"name":"not_cirrus","value":0,"description":"Cirrus confidence is not high"},{"name":"cirrus","value":1,"description":"High confidence cirrus"}],"description":"Cirrus mask"},{"name":"cloud","length":1,"offset":3,"classes":[{"name":"not_cloud","value":0,"description":"Cloud confidence is not high"},{"name":"cloud","value":1,"description":"High confidence cloud"}],"description":"Cloud mask"},{"name":"cloud_shadow","length":1,"offset":4,"classes":[{"name":"not_shadow","value":0,"description":"Cloud shadow confidence is not high"},{"name":"shadow","value":1,"description":"High confidence cloud shadow"}],"description":"Cloud shadow mask"},{"name":"snow","length":1,"offset":5,"classes":[{"name":"not_snow","value":0,"description":"Snow/Ice confidence is not high"},{"name":"snow","value":1,"description":"High confidence snow cover"}],"description":"Snow/Ice mask"},{"name":"clear","length":1,"offset":6,"classes":[{"name":"not_clear","value":0,"description":"Cloud or dilated cloud bits are set"},{"name":"clear","value":1,"description":"Cloud and dilated cloud bits are not set"}],"description":"Clear mask"},{"name":"water","length":1,"offset":7,"classes":[{"name":"not_water","value":0,"description":"Land or cloud"},{"name":"water","value":1,"description":"Water"}],"description":"Water mask"},{"name":"cloud_confidence","length":2,"offset":8,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cloud"},{"name":"medium","value":2,"description":"Medium confidence cloud"},{"name":"high","value":3,"description":"High confidence cloud"}],"description":"Cloud confidence levels"},{"name":"cloud_shadow_confidence","length":2,"offset":10,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cloud shadow"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence cloud shadow"}],"description":"Cloud shadow confidence levels"},{"name":"snow_confidence","length":2,"offset":12,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence snow/ice"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence snow/ice"}],"description":"Snow/Ice confidence levels"},{"name":"cirrus_confidence","length":2,"offset":14,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cirrus"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence cirrus"}],"description":"Cirrus confidence levels"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["cloud","cloud-shadow","snow-ice","water-mask"],"title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band (QA_PIXEL)","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint16","spatial_resolution":30}]},"qa_radsat":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_QA_RADSAT.TIF","title":"Radiometric Saturation and Terrain Occlusion Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment Band (QA_RADSAT)","classification:bitfields":[{"name":"band1","length":1,"offset":0,"classes":[{"name":"not_saturated","value":0,"description":"Band 1 not saturated"},{"name":"saturated","value":1,"description":"Band 1 saturated"}],"description":"Band 1 radiometric saturation"},{"name":"band2","length":1,"offset":1,"classes":[{"name":"not_saturated","value":0,"description":"Band 2 not saturated"},{"name":"saturated","value":1,"description":"Band 2 saturated"}],"description":"Band 2 radiometric saturation"},{"name":"band3","length":1,"offset":2,"classes":[{"name":"not_saturated","value":0,"description":"Band 3 not saturated"},{"name":"saturated","value":1,"description":"Band 3 saturated"}],"description":"Band 3 radiometric saturation"},{"name":"band4","length":1,"offset":3,"classes":[{"name":"not_saturated","value":0,"description":"Band 4 not saturated"},{"name":"saturated","value":1,"description":"Band 4 saturated"}],"description":"Band 4 radiometric saturation"},{"name":"band5","length":1,"offset":4,"classes":[{"name":"not_saturated","value":0,"description":"Band 5 not saturated"},{"name":"saturated","value":1,"description":"Band 5 saturated"}],"description":"Band 5 radiometric saturation"},{"name":"band6","length":1,"offset":5,"classes":[{"name":"not_saturated","value":0,"description":"Band 6 not saturated"},{"name":"saturated","value":1,"description":"Band 6 saturated"}],"description":"Band 6 radiometric saturation"},{"name":"band7","length":1,"offset":6,"classes":[{"name":"not_saturated","value":0,"description":"Band 7 not saturated"},{"name":"saturated","value":1,"description":"Band 7 saturated"}],"description":"Band 7 radiometric saturation"},{"name":"band9","length":1,"offset":8,"classes":[{"name":"not_saturated","value":0,"description":"Band 9 not saturated"},{"name":"saturated","value":1,"description":"Band 9 saturated"}],"description":"Band 9 radiometric saturation"},{"name":"occlusion","length":1,"offset":11,"classes":[{"name":"not_occluded","value":0,"description":"Terrain is not occluded"},{"name":"occluded","value":1,"description":"Terrain is occluded"}],"description":"Terrain not visible from sensor due to intervening terrain"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["saturation"],"raster:bands":[{"unit":"bit index","data_type":"uint16","spatial_resolution":30}]},"qa_aerosol":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/010/LC09_L2SP_085010_20250713_20250714_02_T2/LC09_L2SP_085010_20250713_20250714_02_T2_SR_QA_AEROSOL.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data-mask","water-mask"],"title":"Aerosol Quality Assessment Band","description":"Collection 2 Level-2 Aerosol Quality Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint8","spatial_resolution":30}],"classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Pixel is not fill"},{"name":"fill","value":1,"description":"Pixel is fill"}],"description":"Image or fill data"},{"name":"retrieval","length":1,"offset":1,"classes":[{"name":"not_valid","value":0,"description":"Pixel retrieval is not valid"},{"name":"valid","value":1,"description":"Pixel retrieval is valid"}],"description":"Valid aerosol retrieval"},{"name":"water","length":1,"offset":2,"classes":[{"name":"not_water","value":0,"description":"Pixel is not water"},{"name":"water","value":1,"description":"Pixel is water"}],"description":"Water mask"},{"name":"interpolated","length":1,"offset":5,"classes":[{"name":"not_interpolated","value":0,"description":"Pixel is not interpolated aerosol"},{"name":"interpolated","value":1,"description":"Pixel is interpolated aerosol"}],"description":"Aerosol interpolation"},{"name":"level","length":2,"offset":6,"classes":[{"name":"climatology","value":0,"description":"No aerosol correction applied"},{"name":"low","value":1,"description":"Low aerosol level"},{"name":"medium","value":2,"description":"Medium aerosol level"},{"name":"high","value":3,"description":"High aerosol level"}],"description":"Aerosol level"}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=landsat-c2-l2&item=LC09_L2SP_085010_20250713_02_T2&assets=red&assets=green&assets=blue&color_formula=gamma+RGB+2.7%2C+saturation+1.5%2C+sigmoidal+RGB+15+0.55&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=landsat-c2-l2&item=LC09_L2SP_085010_20250713_02_T2&assets=red&assets=green&assets=blue&color_formula=gamma+RGB+2.7%2C+saturation+1.5%2C+sigmoidal+RGB+15+0.55&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-166.01124956385644,72.07047353583953],[-168.28851156160454,70.4846264348393],[-163.81988436133702,69.7445323491228],[-161.25692334663066,71.27983864000825],[-166.01124956385644,72.07047353583953]]]},"collection":"landsat-c2-l2","properties":{"gsd":30,"created":"2025-07-17T09:17:29.147509Z","sci:doi":"10.5066/P9OGBGM6","datetime":"2025-07-13T22:49:40.617626Z","platform":"landsat-9","proj:epsg":32603,"proj:shape":[8711,8681],"description":"Landsat Collection 2 Level-2","instruments":["oli","tirs"],"eo:cloud_cover":42.41,"proj:transform":[30.0,0.0,375285.0,0.0,-30.0,7998315.0],"view:off_nadir":0,"landsat:wrs_row":"010","landsat:scene_id":"LC90850102025194LGN00","landsat:wrs_path":"085","landsat:wrs_type":"2","view:sun_azimuth":175.22345736,"landsat:correction":"L2SP","view:sun_elevation":40.70498021,"landsat:cloud_cover_land":-1.0,"landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.1/schema.json","https://stac-extensions.github.io/classification/v1.0.0/schema.json","https://stac-extensions.github.io/scientific/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC09_L2SP_085009_20250713_02_T2","bbox":[-166.61367259528663,70.95703562012194,-158.49039170029195,73.37954437987806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/items/LC09_L2SP_085009_20250713_02_T2"},{"rel":"cite-as","href":"https://doi.org/10.5066/P9OGBGM6","title":"Landsat 8-9 OLI/TIRS Collection 2 Level-2"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC09_L2SP_085009_20250713_20250714_02_T2_SR","type":"application/json","title":"USGS STAC Item"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-st/items/LC09_L2SP_085009_20250713_20250714_02_T2_ST","type":"application/json","title":"USGS STAC Item"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=landsat-c2-l2&item=LC09_L2SP_085009_20250713_02_T2","title":"Map of item","type":"text/html"}],"assets":{"qa":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_ST_QA.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Surface Temperature Quality Assessment Band","description":"Collection 2 Level-2 Quality Assessment Band (ST_QA) Surface Temperature Product","raster:bands":[{"unit":"kelvin","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"ang":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_ANG.txt","type":"text/plain","roles":["metadata"],"title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File"},"red":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_SR_B4.TIF","eo:bands":[{"name":"OLI_B4","center_wavelength":0.65,"full_width_half_max":0.04,"common_name":"red","description":"Visible red"}],"description":"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Red Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"blue":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_SR_B2.TIF","eo:bands":[{"name":"OLI_B2","center_wavelength":0.48,"full_width_half_max":0.06,"common_name":"blue","description":"Visible blue"}],"description":"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Blue Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"drad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_ST_DRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Downwelled Radiance Band","description":"Collection 2 Level-2 Downwelled Radiance Band (ST_DRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emis":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_ST_EMIS.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Band","description":"Collection 2 Level-2 Emissivity Band (ST_EMIS) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emsd":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_ST_EMSD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Standard Deviation Band","description":"Collection 2 Level-2 Emissivity Standard Deviation Band (ST_EMSD) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"trad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_ST_TRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Thermal Radiance Band","description":"Collection 2 Level-2 Thermal Radiance Band (ST_TRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"urad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_ST_URAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Upwelled Radiance Band","description":"Collection 2 Level-2 Upwelled Radiance Band (ST_URAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"atran":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_ST_ATRAN.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Atmospheric Transmittance Band","description":"Collection 2 Level-2 Atmospheric Transmittance Band (ST_ATRAN) Surface Temperature Product","raster:bands":[{"scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"cdist":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_ST_CDIST.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Cloud Distance Band","description":"Collection 2 Level-2 Cloud Distance Band (ST_CDIST) Surface Temperature Product","raster:bands":[{"unit":"kilometer","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"green":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_SR_B3.TIF","eo:bands":[{"name":"OLI_B3","full_width_half_max":0.06,"common_name":"green","description":"Visible green","center_wavelength":0.56}],"description":"Collection 2 Level-2 Green Band (SR_B3) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Green Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"nir08":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_SR_B5.TIF","eo:bands":[{"name":"OLI_B5","center_wavelength":0.87,"full_width_half_max":0.03,"common_name":"nir08","description":"Near infrared"}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Near Infrared Band 0.8","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"lwir11":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_ST_B10.TIF","gsd":100,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","temperature"],"title":"Surface Temperature Band","eo:bands":[{"name":"TIRS_B10","common_name":"lwir11","description":"Long-wave infrared","center_wavelength":10.9,"full_width_half_max":0.59}],"description":"Collection 2 Level-2 Thermal Infrared Band (ST_B10) Surface Temperature","raster:bands":[{"unit":"kelvin","scale":0.00341802,"nodata":0,"offset":149.0,"data_type":"uint16","spatial_resolution":30}]},"swir16":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_SR_B6.TIF","eo:bands":[{"name":"OLI_B6","center_wavelength":1.61,"full_width_half_max":0.09,"common_name":"swir16","description":"Short-wave infrared"}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (SR_B6) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 1.6","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"swir22":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_SR_B7.TIF","eo:bands":[{"name":"OLI_B7","center_wavelength":2.2,"full_width_half_max":0.19,"common_name":"swir22","description":"Short-wave infrared"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 2.2","description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (SR_B7) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"coastal":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_SR_B1.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Coastal/Aerosol Band","eo:bands":[{"name":"OLI_B1","common_name":"coastal","description":"Coastal/Aerosol","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (SR_B1) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"mtl.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_MTL.txt","type":"text/plain","roles":["metadata"],"title":"Product Metadata File (txt)","description":"Collection 2 Level-2 Product Metadata File (txt)"},"mtl.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_MTL.xml","type":"application/xml","roles":["metadata"],"title":"Product Metadata File (xml)","description":"Collection 2 Level-2 Product Metadata File (xml)"},"mtl.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_MTL.json","type":"application/json","roles":["metadata"],"title":"Product Metadata File (json)","description":"Collection 2 Level-2 Product Metadata File (json)"},"qa_pixel":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_QA_PIXEL.TIF","classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Image data"},{"name":"fill","value":1,"description":"Fill data"}],"description":"Image or fill data"},{"name":"dilated_cloud","length":1,"offset":1,"classes":[{"name":"not_dilated","value":0,"description":"Cloud is not dilated or no cloud"},{"name":"dilated","value":1,"description":"Cloud dilation"}],"description":"Dilated cloud"},{"name":"cirrus","length":1,"offset":2,"classes":[{"name":"not_cirrus","value":0,"description":"Cirrus confidence is not high"},{"name":"cirrus","value":1,"description":"High confidence cirrus"}],"description":"Cirrus mask"},{"name":"cloud","length":1,"offset":3,"classes":[{"name":"not_cloud","value":0,"description":"Cloud confidence is not high"},{"name":"cloud","value":1,"description":"High confidence cloud"}],"description":"Cloud mask"},{"name":"cloud_shadow","length":1,"offset":4,"classes":[{"name":"not_shadow","value":0,"description":"Cloud shadow confidence is not high"},{"name":"shadow","value":1,"description":"High confidence cloud shadow"}],"description":"Cloud shadow mask"},{"name":"snow","length":1,"offset":5,"classes":[{"name":"not_snow","value":0,"description":"Snow/Ice confidence is not high"},{"name":"snow","value":1,"description":"High confidence snow cover"}],"description":"Snow/Ice mask"},{"name":"clear","length":1,"offset":6,"classes":[{"name":"not_clear","value":0,"description":"Cloud or dilated cloud bits are set"},{"name":"clear","value":1,"description":"Cloud and dilated cloud bits are not set"}],"description":"Clear mask"},{"name":"water","length":1,"offset":7,"classes":[{"name":"not_water","value":0,"description":"Land or cloud"},{"name":"water","value":1,"description":"Water"}],"description":"Water mask"},{"name":"cloud_confidence","length":2,"offset":8,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cloud"},{"name":"medium","value":2,"description":"Medium confidence cloud"},{"name":"high","value":3,"description":"High confidence cloud"}],"description":"Cloud confidence levels"},{"name":"cloud_shadow_confidence","length":2,"offset":10,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cloud shadow"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence cloud shadow"}],"description":"Cloud shadow confidence levels"},{"name":"snow_confidence","length":2,"offset":12,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence snow/ice"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence snow/ice"}],"description":"Snow/Ice confidence levels"},{"name":"cirrus_confidence","length":2,"offset":14,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cirrus"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence cirrus"}],"description":"Cirrus confidence levels"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["cloud","cloud-shadow","snow-ice","water-mask"],"title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band (QA_PIXEL)","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint16","spatial_resolution":30}]},"qa_radsat":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_QA_RADSAT.TIF","title":"Radiometric Saturation and Terrain Occlusion Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment Band (QA_RADSAT)","classification:bitfields":[{"name":"band1","length":1,"offset":0,"classes":[{"name":"not_saturated","value":0,"description":"Band 1 not saturated"},{"name":"saturated","value":1,"description":"Band 1 saturated"}],"description":"Band 1 radiometric saturation"},{"name":"band2","length":1,"offset":1,"classes":[{"name":"not_saturated","value":0,"description":"Band 2 not saturated"},{"name":"saturated","value":1,"description":"Band 2 saturated"}],"description":"Band 2 radiometric saturation"},{"name":"band3","length":1,"offset":2,"classes":[{"name":"not_saturated","value":0,"description":"Band 3 not saturated"},{"name":"saturated","value":1,"description":"Band 3 saturated"}],"description":"Band 3 radiometric saturation"},{"name":"band4","length":1,"offset":3,"classes":[{"name":"not_saturated","value":0,"description":"Band 4 not saturated"},{"name":"saturated","value":1,"description":"Band 4 saturated"}],"description":"Band 4 radiometric saturation"},{"name":"band5","length":1,"offset":4,"classes":[{"name":"not_saturated","value":0,"description":"Band 5 not saturated"},{"name":"saturated","value":1,"description":"Band 5 saturated"}],"description":"Band 5 radiometric saturation"},{"name":"band6","length":1,"offset":5,"classes":[{"name":"not_saturated","value":0,"description":"Band 6 not saturated"},{"name":"saturated","value":1,"description":"Band 6 saturated"}],"description":"Band 6 radiometric saturation"},{"name":"band7","length":1,"offset":6,"classes":[{"name":"not_saturated","value":0,"description":"Band 7 not saturated"},{"name":"saturated","value":1,"description":"Band 7 saturated"}],"description":"Band 7 radiometric saturation"},{"name":"band9","length":1,"offset":8,"classes":[{"name":"not_saturated","value":0,"description":"Band 9 not saturated"},{"name":"saturated","value":1,"description":"Band 9 saturated"}],"description":"Band 9 radiometric saturation"},{"name":"occlusion","length":1,"offset":11,"classes":[{"name":"not_occluded","value":0,"description":"Terrain is not occluded"},{"name":"occluded","value":1,"description":"Terrain is occluded"}],"description":"Terrain not visible from sensor due to intervening terrain"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["saturation"],"raster:bands":[{"unit":"bit index","data_type":"uint16","spatial_resolution":30}]},"qa_aerosol":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/009/LC09_L2SP_085009_20250713_20250714_02_T2/LC09_L2SP_085009_20250713_20250714_02_T2_SR_QA_AEROSOL.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data-mask","water-mask"],"title":"Aerosol Quality Assessment Band","description":"Collection 2 Level-2 Aerosol Quality Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint8","spatial_resolution":30}],"classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Pixel is not fill"},{"name":"fill","value":1,"description":"Pixel is fill"}],"description":"Image or fill data"},{"name":"retrieval","length":1,"offset":1,"classes":[{"name":"not_valid","value":0,"description":"Pixel retrieval is not valid"},{"name":"valid","value":1,"description":"Pixel retrieval is valid"}],"description":"Valid aerosol retrieval"},{"name":"water","length":1,"offset":2,"classes":[{"name":"not_water","value":0,"description":"Pixel is not water"},{"name":"water","value":1,"description":"Pixel is water"}],"description":"Water mask"},{"name":"interpolated","length":1,"offset":5,"classes":[{"name":"not_interpolated","value":0,"description":"Pixel is not interpolated aerosol"},{"name":"interpolated","value":1,"description":"Pixel is interpolated aerosol"}],"description":"Aerosol interpolation"},{"name":"level","length":2,"offset":6,"classes":[{"name":"climatology","value":0,"description":"No aerosol correction applied"},{"name":"low","value":1,"description":"Low aerosol level"},{"name":"medium","value":2,"description":"Medium aerosol level"},{"name":"high","value":3,"description":"High aerosol level"}],"description":"Aerosol level"}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=landsat-c2-l2&item=LC09_L2SP_085009_20250713_02_T2&assets=red&assets=green&assets=blue&color_formula=gamma+RGB+2.7%2C+saturation+1.5%2C+sigmoidal+RGB+15+0.55&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=landsat-c2-l2&item=LC09_L2SP_085009_20250713_02_T2&assets=red&assets=green&assets=blue&color_formula=gamma+RGB+2.7%2C+saturation+1.5%2C+sigmoidal+RGB+15+0.55&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-163.81194048011176,73.37190857006962],[-166.41398666911894,71.80890300523583],[-161.71365226043204,71.02442403668148],[-158.8121334822911,72.52872788482736],[-163.81194048011176,73.37190857006962]]]},"collection":"landsat-c2-l2","properties":{"gsd":30,"created":"2025-07-17T09:17:27.050613Z","sci:doi":"10.5066/P9OGBGM6","datetime":"2025-07-13T22:49:16.730847Z","platform":"landsat-9","proj:epsg":32603,"proj:shape":[8701,8671],"description":"Landsat Collection 2 Level-2","instruments":["oli","tirs"],"eo:cloud_cover":29.92,"proj:transform":[30.0,0.0,448485.0,0.0,-30.0,8143515.0],"view:off_nadir":0,"landsat:wrs_row":"009","landsat:scene_id":"LC90850092025194LGN00","landsat:wrs_path":"085","landsat:wrs_type":"2","view:sun_azimuth":177.78676607,"landsat:correction":"L2SP","view:sun_elevation":39.45716066,"landsat:cloud_cover_land":-1.0,"landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.1/schema.json","https://stac-extensions.github.io/classification/v1.0.0/schema.json","https://stac-extensions.github.io/scientific/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC09_L2SP_085008_20250713_02_T2","bbox":[-164.84447032873334,72.20394615129547,-155.79634302761608,74.65096384870454],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/items/LC09_L2SP_085008_20250713_02_T2"},{"rel":"cite-as","href":"https://doi.org/10.5066/P9OGBGM6","title":"Landsat 8-9 OLI/TIRS Collection 2 Level-2"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC09_L2SP_085008_20250713_20250714_02_T2_SR","type":"application/json","title":"USGS STAC Item"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-st/items/LC09_L2SP_085008_20250713_20250714_02_T2_ST","type":"application/json","title":"USGS STAC Item"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=landsat-c2-l2&item=LC09_L2SP_085008_20250713_02_T2","title":"Map of item","type":"text/html"}],"assets":{"qa":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_ST_QA.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Surface Temperature Quality Assessment Band","description":"Collection 2 Level-2 Quality Assessment Band (ST_QA) Surface Temperature Product","raster:bands":[{"unit":"kelvin","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"ang":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_ANG.txt","type":"text/plain","roles":["metadata"],"title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File"},"red":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_SR_B4.TIF","eo:bands":[{"name":"OLI_B4","center_wavelength":0.65,"full_width_half_max":0.04,"common_name":"red","description":"Visible red"}],"description":"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Red Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"blue":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_SR_B2.TIF","eo:bands":[{"name":"OLI_B2","center_wavelength":0.48,"full_width_half_max":0.06,"common_name":"blue","description":"Visible blue"}],"description":"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Blue Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"drad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_ST_DRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Downwelled Radiance Band","description":"Collection 2 Level-2 Downwelled Radiance Band (ST_DRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emis":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_ST_EMIS.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Band","description":"Collection 2 Level-2 Emissivity Band (ST_EMIS) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emsd":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_ST_EMSD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Standard Deviation Band","description":"Collection 2 Level-2 Emissivity Standard Deviation Band (ST_EMSD) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"trad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_ST_TRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Thermal Radiance Band","description":"Collection 2 Level-2 Thermal Radiance Band (ST_TRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"urad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_ST_URAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Upwelled Radiance Band","description":"Collection 2 Level-2 Upwelled Radiance Band (ST_URAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"atran":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_ST_ATRAN.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Atmospheric Transmittance Band","description":"Collection 2 Level-2 Atmospheric Transmittance Band (ST_ATRAN) Surface Temperature Product","raster:bands":[{"scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"cdist":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_ST_CDIST.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Cloud Distance Band","description":"Collection 2 Level-2 Cloud Distance Band (ST_CDIST) Surface Temperature Product","raster:bands":[{"unit":"kilometer","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"green":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_SR_B3.TIF","eo:bands":[{"name":"OLI_B3","full_width_half_max":0.06,"common_name":"green","description":"Visible green","center_wavelength":0.56}],"description":"Collection 2 Level-2 Green Band (SR_B3) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Green Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"nir08":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_SR_B5.TIF","eo:bands":[{"name":"OLI_B5","center_wavelength":0.87,"full_width_half_max":0.03,"common_name":"nir08","description":"Near infrared"}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Near Infrared Band 0.8","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"lwir11":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_ST_B10.TIF","gsd":100,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","temperature"],"title":"Surface Temperature Band","eo:bands":[{"name":"TIRS_B10","common_name":"lwir11","description":"Long-wave infrared","center_wavelength":10.9,"full_width_half_max":0.59}],"description":"Collection 2 Level-2 Thermal Infrared Band (ST_B10) Surface Temperature","raster:bands":[{"unit":"kelvin","scale":0.00341802,"nodata":0,"offset":149.0,"data_type":"uint16","spatial_resolution":30}]},"swir16":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_SR_B6.TIF","eo:bands":[{"name":"OLI_B6","center_wavelength":1.61,"full_width_half_max":0.09,"common_name":"swir16","description":"Short-wave infrared"}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (SR_B6) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 1.6","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"swir22":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_SR_B7.TIF","eo:bands":[{"name":"OLI_B7","center_wavelength":2.2,"full_width_half_max":0.19,"common_name":"swir22","description":"Short-wave infrared"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 2.2","description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (SR_B7) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"coastal":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_SR_B1.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Coastal/Aerosol Band","eo:bands":[{"name":"OLI_B1","common_name":"coastal","description":"Coastal/Aerosol","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (SR_B1) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"mtl.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_MTL.txt","type":"text/plain","roles":["metadata"],"title":"Product Metadata File (txt)","description":"Collection 2 Level-2 Product Metadata File (txt)"},"mtl.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_MTL.xml","type":"application/xml","roles":["metadata"],"title":"Product Metadata File (xml)","description":"Collection 2 Level-2 Product Metadata File (xml)"},"mtl.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_MTL.json","type":"application/json","roles":["metadata"],"title":"Product Metadata File (json)","description":"Collection 2 Level-2 Product Metadata File (json)"},"qa_pixel":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_QA_PIXEL.TIF","classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Image data"},{"name":"fill","value":1,"description":"Fill data"}],"description":"Image or fill data"},{"name":"dilated_cloud","length":1,"offset":1,"classes":[{"name":"not_dilated","value":0,"description":"Cloud is not dilated or no cloud"},{"name":"dilated","value":1,"description":"Cloud dilation"}],"description":"Dilated cloud"},{"name":"cirrus","length":1,"offset":2,"classes":[{"name":"not_cirrus","value":0,"description":"Cirrus confidence is not high"},{"name":"cirrus","value":1,"description":"High confidence cirrus"}],"description":"Cirrus mask"},{"name":"cloud","length":1,"offset":3,"classes":[{"name":"not_cloud","value":0,"description":"Cloud confidence is not high"},{"name":"cloud","value":1,"description":"High confidence cloud"}],"description":"Cloud mask"},{"name":"cloud_shadow","length":1,"offset":4,"classes":[{"name":"not_shadow","value":0,"description":"Cloud shadow confidence is not high"},{"name":"shadow","value":1,"description":"High confidence cloud shadow"}],"description":"Cloud shadow mask"},{"name":"snow","length":1,"offset":5,"classes":[{"name":"not_snow","value":0,"description":"Snow/Ice confidence is not high"},{"name":"snow","value":1,"description":"High confidence snow cover"}],"description":"Snow/Ice mask"},{"name":"clear","length":1,"offset":6,"classes":[{"name":"not_clear","value":0,"description":"Cloud or dilated cloud bits are set"},{"name":"clear","value":1,"description":"Cloud and dilated cloud bits are not set"}],"description":"Clear mask"},{"name":"water","length":1,"offset":7,"classes":[{"name":"not_water","value":0,"description":"Land or cloud"},{"name":"water","value":1,"description":"Water"}],"description":"Water mask"},{"name":"cloud_confidence","length":2,"offset":8,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cloud"},{"name":"medium","value":2,"description":"Medium confidence cloud"},{"name":"high","value":3,"description":"High confidence cloud"}],"description":"Cloud confidence levels"},{"name":"cloud_shadow_confidence","length":2,"offset":10,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cloud shadow"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence cloud shadow"}],"description":"Cloud shadow confidence levels"},{"name":"snow_confidence","length":2,"offset":12,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence snow/ice"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence snow/ice"}],"description":"Snow/Ice confidence levels"},{"name":"cirrus_confidence","length":2,"offset":14,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cirrus"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence cirrus"}],"description":"Cirrus confidence levels"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["cloud","cloud-shadow","snow-ice","water-mask"],"title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band (QA_PIXEL)","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint16","spatial_resolution":30}]},"qa_radsat":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_QA_RADSAT.TIF","title":"Radiometric Saturation and Terrain Occlusion Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment Band (QA_RADSAT)","classification:bitfields":[{"name":"band1","length":1,"offset":0,"classes":[{"name":"not_saturated","value":0,"description":"Band 1 not saturated"},{"name":"saturated","value":1,"description":"Band 1 saturated"}],"description":"Band 1 radiometric saturation"},{"name":"band2","length":1,"offset":1,"classes":[{"name":"not_saturated","value":0,"description":"Band 2 not saturated"},{"name":"saturated","value":1,"description":"Band 2 saturated"}],"description":"Band 2 radiometric saturation"},{"name":"band3","length":1,"offset":2,"classes":[{"name":"not_saturated","value":0,"description":"Band 3 not saturated"},{"name":"saturated","value":1,"description":"Band 3 saturated"}],"description":"Band 3 radiometric saturation"},{"name":"band4","length":1,"offset":3,"classes":[{"name":"not_saturated","value":0,"description":"Band 4 not saturated"},{"name":"saturated","value":1,"description":"Band 4 saturated"}],"description":"Band 4 radiometric saturation"},{"name":"band5","length":1,"offset":4,"classes":[{"name":"not_saturated","value":0,"description":"Band 5 not saturated"},{"name":"saturated","value":1,"description":"Band 5 saturated"}],"description":"Band 5 radiometric saturation"},{"name":"band6","length":1,"offset":5,"classes":[{"name":"not_saturated","value":0,"description":"Band 6 not saturated"},{"name":"saturated","value":1,"description":"Band 6 saturated"}],"description":"Band 6 radiometric saturation"},{"name":"band7","length":1,"offset":6,"classes":[{"name":"not_saturated","value":0,"description":"Band 7 not saturated"},{"name":"saturated","value":1,"description":"Band 7 saturated"}],"description":"Band 7 radiometric saturation"},{"name":"band9","length":1,"offset":8,"classes":[{"name":"not_saturated","value":0,"description":"Band 9 not saturated"},{"name":"saturated","value":1,"description":"Band 9 saturated"}],"description":"Band 9 radiometric saturation"},{"name":"occlusion","length":1,"offset":11,"classes":[{"name":"not_occluded","value":0,"description":"Terrain is not occluded"},{"name":"occluded","value":1,"description":"Terrain is occluded"}],"description":"Terrain not visible from sensor due to intervening terrain"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["saturation"],"raster:bands":[{"unit":"bit index","data_type":"uint16","spatial_resolution":30}]},"qa_aerosol":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/008/LC09_L2SP_085008_20250713_20250714_02_T2/LC09_L2SP_085008_20250713_20250714_02_T2_SR_QA_AEROSOL.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data-mask","water-mask"],"title":"Aerosol Quality Assessment Band","description":"Collection 2 Level-2 Aerosol Quality Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint8","spatial_resolution":30}],"classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Pixel is not fill"},{"name":"fill","value":1,"description":"Pixel is fill"}],"description":"Image or fill data"},{"name":"retrieval","length":1,"offset":1,"classes":[{"name":"not_valid","value":0,"description":"Pixel retrieval is not valid"},{"name":"valid","value":1,"description":"Pixel retrieval is valid"}],"description":"Valid aerosol retrieval"},{"name":"water","length":1,"offset":2,"classes":[{"name":"not_water","value":0,"description":"Pixel is not water"},{"name":"water","value":1,"description":"Pixel is water"}],"description":"Water mask"},{"name":"interpolated","length":1,"offset":5,"classes":[{"name":"not_interpolated","value":0,"description":"Pixel is not interpolated aerosol"},{"name":"interpolated","value":1,"description":"Pixel is interpolated aerosol"}],"description":"Aerosol interpolation"},{"name":"level","length":2,"offset":6,"classes":[{"name":"climatology","value":0,"description":"No aerosol correction applied"},{"name":"low","value":1,"description":"Low aerosol level"},{"name":"medium","value":2,"description":"Medium aerosol level"},{"name":"high","value":3,"description":"High aerosol level"}],"description":"Aerosol level"}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=landsat-c2-l2&item=LC09_L2SP_085008_20250713_02_T2&assets=red&assets=green&assets=blue&color_formula=gamma+RGB+2.7%2C+saturation+1.5%2C+sigmoidal+RGB+15+0.55&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=landsat-c2-l2&item=LC09_L2SP_085008_20250713_02_T2&assets=red&assets=green&assets=blue&color_formula=gamma+RGB+2.7%2C+saturation+1.5%2C+sigmoidal+RGB+15+0.55&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-161.27277448611594,74.64913933603867],[-164.27354434455597,73.11500411307543],[-159.3295252612134,72.27910107807504],[-156.01942883578045,73.74571959181748],[-161.27277448611594,74.64913933603867]]]},"collection":"landsat-c2-l2","properties":{"gsd":30,"created":"2025-07-17T09:17:24.202415Z","sci:doi":"10.5066/P9OGBGM6","datetime":"2025-07-13T22:48:52.835595Z","platform":"landsat-9","proj:epsg":32604,"proj:shape":[8941,8921],"description":"Landsat Collection 2 Level-2","instruments":["oli","tirs"],"eo:cloud_cover":15.11,"proj:transform":[30.0,0.0,326985.0,0.0,-30.0,8287215.0],"view:off_nadir":0,"landsat:wrs_row":"008","landsat:scene_id":"LC90850082025194LGN00","landsat:wrs_path":"085","landsat:wrs_type":"2","view:sun_azimuth":180.62164176,"landsat:correction":"L2SP","view:sun_elevation":38.2016462,"landsat:cloud_cover_land":-1.0,"landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.1/schema.json","https://stac-extensions.github.io/classification/v1.0.0/schema.json","https://stac-extensions.github.io/scientific/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC09_L2SP_085007_20250713_02_T2","bbox":[-162.1725420841977,73.42917577401938,-152.36882006981534,75.88718422598062],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/items/LC09_L2SP_085007_20250713_02_T2"},{"rel":"cite-as","href":"https://doi.org/10.5066/P9OGBGM6","title":"Landsat 8-9 OLI/TIRS Collection 2 Level-2"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC09_L2SP_085007_20250713_20250714_02_T2_SR","type":"application/json","title":"USGS STAC Item"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-st/items/LC09_L2SP_085007_20250713_20250714_02_T2_ST","type":"application/json","title":"USGS STAC Item"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=landsat-c2-l2&item=LC09_L2SP_085007_20250713_02_T2","title":"Map of item","type":"text/html"}],"assets":{"qa":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_ST_QA.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Surface Temperature Quality Assessment Band","description":"Collection 2 Level-2 Quality Assessment Band (ST_QA) Surface Temperature Product","raster:bands":[{"unit":"kelvin","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"ang":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_ANG.txt","type":"text/plain","roles":["metadata"],"title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File"},"red":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_SR_B4.TIF","eo:bands":[{"name":"OLI_B4","center_wavelength":0.65,"full_width_half_max":0.04,"common_name":"red","description":"Visible red"}],"description":"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Red Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"blue":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_SR_B2.TIF","eo:bands":[{"name":"OLI_B2","center_wavelength":0.48,"full_width_half_max":0.06,"common_name":"blue","description":"Visible blue"}],"description":"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Blue Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"drad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_ST_DRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Downwelled Radiance Band","description":"Collection 2 Level-2 Downwelled Radiance Band (ST_DRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emis":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_ST_EMIS.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Band","description":"Collection 2 Level-2 Emissivity Band (ST_EMIS) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emsd":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_ST_EMSD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Standard Deviation Band","description":"Collection 2 Level-2 Emissivity Standard Deviation Band (ST_EMSD) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"trad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_ST_TRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Thermal Radiance Band","description":"Collection 2 Level-2 Thermal Radiance Band (ST_TRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"urad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_ST_URAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Upwelled Radiance Band","description":"Collection 2 Level-2 Upwelled Radiance Band (ST_URAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"atran":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_ST_ATRAN.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Atmospheric Transmittance Band","description":"Collection 2 Level-2 Atmospheric Transmittance Band (ST_ATRAN) Surface Temperature Product","raster:bands":[{"scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"cdist":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_ST_CDIST.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Cloud Distance Band","description":"Collection 2 Level-2 Cloud Distance Band (ST_CDIST) Surface Temperature Product","raster:bands":[{"unit":"kilometer","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"green":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_SR_B3.TIF","eo:bands":[{"name":"OLI_B3","full_width_half_max":0.06,"common_name":"green","description":"Visible green","center_wavelength":0.56}],"description":"Collection 2 Level-2 Green Band (SR_B3) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Green Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"nir08":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_SR_B5.TIF","eo:bands":[{"name":"OLI_B5","center_wavelength":0.87,"full_width_half_max":0.03,"common_name":"nir08","description":"Near infrared"}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Near Infrared Band 0.8","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"lwir11":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_ST_B10.TIF","gsd":100,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","temperature"],"title":"Surface Temperature Band","eo:bands":[{"name":"TIRS_B10","common_name":"lwir11","description":"Long-wave infrared","center_wavelength":10.9,"full_width_half_max":0.59}],"description":"Collection 2 Level-2 Thermal Infrared Band (ST_B10) Surface Temperature","raster:bands":[{"unit":"kelvin","scale":0.00341802,"nodata":0,"offset":149.0,"data_type":"uint16","spatial_resolution":30}]},"swir16":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_SR_B6.TIF","eo:bands":[{"name":"OLI_B6","center_wavelength":1.61,"full_width_half_max":0.09,"common_name":"swir16","description":"Short-wave infrared"}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (SR_B6) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 1.6","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"swir22":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_SR_B7.TIF","eo:bands":[{"name":"OLI_B7","center_wavelength":2.2,"full_width_half_max":0.19,"common_name":"swir22","description":"Short-wave infrared"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 2.2","description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (SR_B7) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"coastal":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_SR_B1.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Coastal/Aerosol Band","eo:bands":[{"name":"OLI_B1","common_name":"coastal","description":"Coastal/Aerosol","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (SR_B1) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"mtl.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_MTL.txt","type":"text/plain","roles":["metadata"],"title":"Product Metadata File (txt)","description":"Collection 2 Level-2 Product Metadata File (txt)"},"mtl.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_MTL.xml","type":"application/xml","roles":["metadata"],"title":"Product Metadata File (xml)","description":"Collection 2 Level-2 Product Metadata File (xml)"},"mtl.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_MTL.json","type":"application/json","roles":["metadata"],"title":"Product Metadata File (json)","description":"Collection 2 Level-2 Product Metadata File (json)"},"qa_pixel":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_QA_PIXEL.TIF","classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Image data"},{"name":"fill","value":1,"description":"Fill data"}],"description":"Image or fill data"},{"name":"dilated_cloud","length":1,"offset":1,"classes":[{"name":"not_dilated","value":0,"description":"Cloud is not dilated or no cloud"},{"name":"dilated","value":1,"description":"Cloud dilation"}],"description":"Dilated cloud"},{"name":"cirrus","length":1,"offset":2,"classes":[{"name":"not_cirrus","value":0,"description":"Cirrus confidence is not high"},{"name":"cirrus","value":1,"description":"High confidence cirrus"}],"description":"Cirrus mask"},{"name":"cloud","length":1,"offset":3,"classes":[{"name":"not_cloud","value":0,"description":"Cloud confidence is not high"},{"name":"cloud","value":1,"description":"High confidence cloud"}],"description":"Cloud mask"},{"name":"cloud_shadow","length":1,"offset":4,"classes":[{"name":"not_shadow","value":0,"description":"Cloud shadow confidence is not high"},{"name":"shadow","value":1,"description":"High confidence cloud shadow"}],"description":"Cloud shadow mask"},{"name":"snow","length":1,"offset":5,"classes":[{"name":"not_snow","value":0,"description":"Snow/Ice confidence is not high"},{"name":"snow","value":1,"description":"High confidence snow cover"}],"description":"Snow/Ice mask"},{"name":"clear","length":1,"offset":6,"classes":[{"name":"not_clear","value":0,"description":"Cloud or dilated cloud bits are set"},{"name":"clear","value":1,"description":"Cloud and dilated cloud bits are not set"}],"description":"Clear mask"},{"name":"water","length":1,"offset":7,"classes":[{"name":"not_water","value":0,"description":"Land or cloud"},{"name":"water","value":1,"description":"Water"}],"description":"Water mask"},{"name":"cloud_confidence","length":2,"offset":8,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cloud"},{"name":"medium","value":2,"description":"Medium confidence cloud"},{"name":"high","value":3,"description":"High confidence cloud"}],"description":"Cloud confidence levels"},{"name":"cloud_shadow_confidence","length":2,"offset":10,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cloud shadow"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence cloud shadow"}],"description":"Cloud shadow confidence levels"},{"name":"snow_confidence","length":2,"offset":12,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence snow/ice"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence snow/ice"}],"description":"Snow/Ice confidence levels"},{"name":"cirrus_confidence","length":2,"offset":14,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cirrus"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence cirrus"}],"description":"Cirrus confidence levels"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["cloud","cloud-shadow","snow-ice","water-mask"],"title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band (QA_PIXEL)","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint16","spatial_resolution":30}]},"qa_radsat":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_QA_RADSAT.TIF","title":"Radiometric Saturation and Terrain Occlusion Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment Band (QA_RADSAT)","classification:bitfields":[{"name":"band1","length":1,"offset":0,"classes":[{"name":"not_saturated","value":0,"description":"Band 1 not saturated"},{"name":"saturated","value":1,"description":"Band 1 saturated"}],"description":"Band 1 radiometric saturation"},{"name":"band2","length":1,"offset":1,"classes":[{"name":"not_saturated","value":0,"description":"Band 2 not saturated"},{"name":"saturated","value":1,"description":"Band 2 saturated"}],"description":"Band 2 radiometric saturation"},{"name":"band3","length":1,"offset":2,"classes":[{"name":"not_saturated","value":0,"description":"Band 3 not saturated"},{"name":"saturated","value":1,"description":"Band 3 saturated"}],"description":"Band 3 radiometric saturation"},{"name":"band4","length":1,"offset":3,"classes":[{"name":"not_saturated","value":0,"description":"Band 4 not saturated"},{"name":"saturated","value":1,"description":"Band 4 saturated"}],"description":"Band 4 radiometric saturation"},{"name":"band5","length":1,"offset":4,"classes":[{"name":"not_saturated","value":0,"description":"Band 5 not saturated"},{"name":"saturated","value":1,"description":"Band 5 saturated"}],"description":"Band 5 radiometric saturation"},{"name":"band6","length":1,"offset":5,"classes":[{"name":"not_saturated","value":0,"description":"Band 6 not saturated"},{"name":"saturated","value":1,"description":"Band 6 saturated"}],"description":"Band 6 radiometric saturation"},{"name":"band7","length":1,"offset":6,"classes":[{"name":"not_saturated","value":0,"description":"Band 7 not saturated"},{"name":"saturated","value":1,"description":"Band 7 saturated"}],"description":"Band 7 radiometric saturation"},{"name":"band9","length":1,"offset":8,"classes":[{"name":"not_saturated","value":0,"description":"Band 9 not saturated"},{"name":"saturated","value":1,"description":"Band 9 saturated"}],"description":"Band 9 radiometric saturation"},{"name":"occlusion","length":1,"offset":11,"classes":[{"name":"not_occluded","value":0,"description":"Terrain is not occluded"},{"name":"occluded","value":1,"description":"Terrain is occluded"}],"description":"Terrain not visible from sensor due to intervening terrain"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["saturation"],"raster:bands":[{"unit":"bit index","data_type":"uint16","spatial_resolution":30}]},"qa_aerosol":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/007/LC09_L2SP_085007_20250713_20250714_02_T2/LC09_L2SP_085007_20250713_20250714_02_T2_SR_QA_AEROSOL.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data-mask","water-mask"],"title":"Aerosol Quality Assessment Band","description":"Collection 2 Level-2 Aerosol Quality Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint8","spatial_resolution":30}],"classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Pixel is not fill"},{"name":"fill","value":1,"description":"Pixel is fill"}],"description":"Image or fill data"},{"name":"retrieval","length":1,"offset":1,"classes":[{"name":"not_valid","value":0,"description":"Pixel retrieval is not valid"},{"name":"valid","value":1,"description":"Pixel retrieval is valid"}],"description":"Valid aerosol retrieval"},{"name":"water","length":1,"offset":2,"classes":[{"name":"not_water","value":0,"description":"Pixel is not water"},{"name":"water","value":1,"description":"Pixel is water"}],"description":"Water mask"},{"name":"interpolated","length":1,"offset":5,"classes":[{"name":"not_interpolated","value":0,"description":"Pixel is not interpolated aerosol"},{"name":"interpolated","value":1,"description":"Pixel is interpolated aerosol"}],"description":"Aerosol interpolation"},{"name":"level","length":2,"offset":6,"classes":[{"name":"climatology","value":0,"description":"No aerosol correction applied"},{"name":"low","value":1,"description":"Low aerosol level"},{"name":"medium","value":2,"description":"Medium aerosol level"},{"name":"high","value":3,"description":"High aerosol level"}],"description":"Aerosol level"}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=landsat-c2-l2&item=LC09_L2SP_085007_20250713_02_T2&assets=red&assets=green&assets=blue&color_formula=gamma+RGB+2.7%2C+saturation+1.5%2C+sigmoidal+RGB+15+0.55&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=landsat-c2-l2&item=LC09_L2SP_085007_20250713_02_T2&assets=red&assets=green&assets=blue&color_formula=gamma+RGB+2.7%2C+saturation+1.5%2C+sigmoidal+RGB+15+0.55&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-158.3109241884037,75.89487902610779],[-161.80803033547372,74.39732135077257],[-156.61245421782573,73.50345767204345],[-152.8110554742401,74.92303242820365],[-158.3109241884037,75.89487902610779]]]},"collection":"landsat-c2-l2","properties":{"gsd":30,"created":"2025-07-17T09:17:21.801648Z","sci:doi":"10.5066/P9OGBGM6","datetime":"2025-07-13T22:48:28.944580Z","platform":"landsat-9","proj:epsg":32604,"proj:shape":[8931,8911],"description":"Landsat Collection 2 Level-2","instruments":["oli","tirs"],"eo:cloud_cover":27.96,"proj:transform":[30.0,0.0,413685.0,0.0,-30.0,8424915.0],"view:off_nadir":0,"landsat:wrs_row":"007","landsat:scene_id":"LC90850072025194LGN00","landsat:wrs_path":"085","landsat:wrs_type":"2","view:sun_azimuth":183.79618073,"landsat:correction":"L2SP","view:sun_elevation":36.939702,"landsat:cloud_cover_land":-1.0,"landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.1/schema.json","https://stac-extensions.github.io/classification/v1.0.0/schema.json","https://stac-extensions.github.io/scientific/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"LC09_L2SP_085006_20250713_02_T2","bbox":[-159.6478972146189,74.60854634070732,-148.73421927637918,77.08856365929269],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/items/LC09_L2SP_085006_20250713_02_T2"},{"rel":"cite-as","href":"https://doi.org/10.5066/P9OGBGM6","title":"Landsat 8-9 OLI/TIRS Collection 2 Level-2"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC09_L2SP_085006_20250713_20250714_02_T2_SR","type":"application/json","title":"USGS STAC Item"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-st/items/LC09_L2SP_085006_20250713_20250714_02_T2_ST","type":"application/json","title":"USGS STAC Item"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=landsat-c2-l2&item=LC09_L2SP_085006_20250713_02_T2","title":"Map of item","type":"text/html"}],"assets":{"qa":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_ST_QA.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Surface Temperature Quality Assessment Band","description":"Collection 2 Level-2 Quality Assessment Band (ST_QA) Surface Temperature Product","raster:bands":[{"unit":"kelvin","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"ang":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_ANG.txt","type":"text/plain","roles":["metadata"],"title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File"},"red":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_SR_B4.TIF","eo:bands":[{"name":"OLI_B4","center_wavelength":0.65,"full_width_half_max":0.04,"common_name":"red","description":"Visible red"}],"description":"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Red Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"blue":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_SR_B2.TIF","eo:bands":[{"name":"OLI_B2","center_wavelength":0.48,"full_width_half_max":0.06,"common_name":"blue","description":"Visible blue"}],"description":"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Blue Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"drad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_ST_DRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Downwelled Radiance Band","description":"Collection 2 Level-2 Downwelled Radiance Band (ST_DRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emis":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_ST_EMIS.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Band","description":"Collection 2 Level-2 Emissivity Band (ST_EMIS) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emsd":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_ST_EMSD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Standard Deviation Band","description":"Collection 2 Level-2 Emissivity Standard Deviation Band (ST_EMSD) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"trad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_ST_TRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Thermal Radiance Band","description":"Collection 2 Level-2 Thermal Radiance Band (ST_TRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"urad":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_ST_URAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Upwelled Radiance Band","description":"Collection 2 Level-2 Upwelled Radiance Band (ST_URAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"atran":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_ST_ATRAN.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Atmospheric Transmittance Band","description":"Collection 2 Level-2 Atmospheric Transmittance Band (ST_ATRAN) Surface Temperature Product","raster:bands":[{"scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"cdist":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_ST_CDIST.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Cloud Distance Band","description":"Collection 2 Level-2 Cloud Distance Band (ST_CDIST) Surface Temperature Product","raster:bands":[{"unit":"kilometer","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"green":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_SR_B3.TIF","eo:bands":[{"name":"OLI_B3","full_width_half_max":0.06,"common_name":"green","description":"Visible green","center_wavelength":0.56}],"description":"Collection 2 Level-2 Green Band (SR_B3) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Green Band","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"nir08":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_SR_B5.TIF","eo:bands":[{"name":"OLI_B5","center_wavelength":0.87,"full_width_half_max":0.03,"common_name":"nir08","description":"Near infrared"}],"description":"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Near Infrared Band 0.8","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"lwir11":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_ST_B10.TIF","gsd":100,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","temperature"],"title":"Surface Temperature Band","eo:bands":[{"name":"TIRS_B10","common_name":"lwir11","description":"Long-wave infrared","center_wavelength":10.9,"full_width_half_max":0.59}],"description":"Collection 2 Level-2 Thermal Infrared Band (ST_B10) Surface Temperature","raster:bands":[{"unit":"kelvin","scale":0.00341802,"nodata":0,"offset":149.0,"data_type":"uint16","spatial_resolution":30}]},"swir16":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_SR_B6.TIF","eo:bands":[{"name":"OLI_B6","center_wavelength":1.61,"full_width_half_max":0.09,"common_name":"swir16","description":"Short-wave infrared"}],"description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (SR_B6) Surface Reflectance","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 1.6","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"swir22":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_SR_B7.TIF","eo:bands":[{"name":"OLI_B7","center_wavelength":2.2,"full_width_half_max":0.19,"common_name":"swir22","description":"Short-wave infrared"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 2.2","description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (SR_B7) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"coastal":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_SR_B1.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Coastal/Aerosol Band","eo:bands":[{"name":"OLI_B1","common_name":"coastal","description":"Coastal/Aerosol","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (SR_B1) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"mtl.txt":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_MTL.txt","type":"text/plain","roles":["metadata"],"title":"Product Metadata File (txt)","description":"Collection 2 Level-2 Product Metadata File (txt)"},"mtl.xml":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_MTL.xml","type":"application/xml","roles":["metadata"],"title":"Product Metadata File (xml)","description":"Collection 2 Level-2 Product Metadata File (xml)"},"mtl.json":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_MTL.json","type":"application/json","roles":["metadata"],"title":"Product Metadata File (json)","description":"Collection 2 Level-2 Product Metadata File (json)"},"qa_pixel":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_QA_PIXEL.TIF","classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Image data"},{"name":"fill","value":1,"description":"Fill data"}],"description":"Image or fill data"},{"name":"dilated_cloud","length":1,"offset":1,"classes":[{"name":"not_dilated","value":0,"description":"Cloud is not dilated or no cloud"},{"name":"dilated","value":1,"description":"Cloud dilation"}],"description":"Dilated cloud"},{"name":"cirrus","length":1,"offset":2,"classes":[{"name":"not_cirrus","value":0,"description":"Cirrus confidence is not high"},{"name":"cirrus","value":1,"description":"High confidence cirrus"}],"description":"Cirrus mask"},{"name":"cloud","length":1,"offset":3,"classes":[{"name":"not_cloud","value":0,"description":"Cloud confidence is not high"},{"name":"cloud","value":1,"description":"High confidence cloud"}],"description":"Cloud mask"},{"name":"cloud_shadow","length":1,"offset":4,"classes":[{"name":"not_shadow","value":0,"description":"Cloud shadow confidence is not high"},{"name":"shadow","value":1,"description":"High confidence cloud shadow"}],"description":"Cloud shadow mask"},{"name":"snow","length":1,"offset":5,"classes":[{"name":"not_snow","value":0,"description":"Snow/Ice confidence is not high"},{"name":"snow","value":1,"description":"High confidence snow cover"}],"description":"Snow/Ice mask"},{"name":"clear","length":1,"offset":6,"classes":[{"name":"not_clear","value":0,"description":"Cloud or dilated cloud bits are set"},{"name":"clear","value":1,"description":"Cloud and dilated cloud bits are not set"}],"description":"Clear mask"},{"name":"water","length":1,"offset":7,"classes":[{"name":"not_water","value":0,"description":"Land or cloud"},{"name":"water","value":1,"description":"Water"}],"description":"Water mask"},{"name":"cloud_confidence","length":2,"offset":8,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cloud"},{"name":"medium","value":2,"description":"Medium confidence cloud"},{"name":"high","value":3,"description":"High confidence cloud"}],"description":"Cloud confidence levels"},{"name":"cloud_shadow_confidence","length":2,"offset":10,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cloud shadow"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence cloud shadow"}],"description":"Cloud shadow confidence levels"},{"name":"snow_confidence","length":2,"offset":12,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence snow/ice"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence snow/ice"}],"description":"Snow/Ice confidence levels"},{"name":"cirrus_confidence","length":2,"offset":14,"classes":[{"name":"not_set","value":0,"description":"No confidence level set"},{"name":"low","value":1,"description":"Low confidence cirrus"},{"name":"reserved","value":2,"description":"Reserved - value not used"},{"name":"high","value":3,"description":"High confidence cirrus"}],"description":"Cirrus confidence levels"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["cloud","cloud-shadow","snow-ice","water-mask"],"title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band (QA_PIXEL)","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint16","spatial_resolution":30}]},"qa_radsat":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_QA_RADSAT.TIF","title":"Radiometric Saturation and Terrain Occlusion Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment Band (QA_RADSAT)","classification:bitfields":[{"name":"band1","length":1,"offset":0,"classes":[{"name":"not_saturated","value":0,"description":"Band 1 not saturated"},{"name":"saturated","value":1,"description":"Band 1 saturated"}],"description":"Band 1 radiometric saturation"},{"name":"band2","length":1,"offset":1,"classes":[{"name":"not_saturated","value":0,"description":"Band 2 not saturated"},{"name":"saturated","value":1,"description":"Band 2 saturated"}],"description":"Band 2 radiometric saturation"},{"name":"band3","length":1,"offset":2,"classes":[{"name":"not_saturated","value":0,"description":"Band 3 not saturated"},{"name":"saturated","value":1,"description":"Band 3 saturated"}],"description":"Band 3 radiometric saturation"},{"name":"band4","length":1,"offset":3,"classes":[{"name":"not_saturated","value":0,"description":"Band 4 not saturated"},{"name":"saturated","value":1,"description":"Band 4 saturated"}],"description":"Band 4 radiometric saturation"},{"name":"band5","length":1,"offset":4,"classes":[{"name":"not_saturated","value":0,"description":"Band 5 not saturated"},{"name":"saturated","value":1,"description":"Band 5 saturated"}],"description":"Band 5 radiometric saturation"},{"name":"band6","length":1,"offset":5,"classes":[{"name":"not_saturated","value":0,"description":"Band 6 not saturated"},{"name":"saturated","value":1,"description":"Band 6 saturated"}],"description":"Band 6 radiometric saturation"},{"name":"band7","length":1,"offset":6,"classes":[{"name":"not_saturated","value":0,"description":"Band 7 not saturated"},{"name":"saturated","value":1,"description":"Band 7 saturated"}],"description":"Band 7 radiometric saturation"},{"name":"band9","length":1,"offset":8,"classes":[{"name":"not_saturated","value":0,"description":"Band 9 not saturated"},{"name":"saturated","value":1,"description":"Band 9 saturated"}],"description":"Band 9 radiometric saturation"},{"name":"occlusion","length":1,"offset":11,"classes":[{"name":"not_occluded","value":0,"description":"Terrain is not occluded"},{"name":"occluded","value":1,"description":"Terrain is occluded"}],"description":"Terrain not visible from sensor due to intervening terrain"}],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["saturation"],"raster:bands":[{"unit":"bit index","data_type":"uint16","spatial_resolution":30}]},"qa_aerosol":{"href":"https://landsateuwest.blob.core.windows.net/landsat-c2/level-2/standard/oli-tirs/2025/085/006/LC09_L2SP_085006_20250713_20250714_02_T2/LC09_L2SP_085006_20250713_20250714_02_T2_SR_QA_AEROSOL.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data-mask","water-mask"],"title":"Aerosol Quality Assessment Band","description":"Collection 2 Level-2 Aerosol Quality Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint8","spatial_resolution":30}],"classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Pixel is not fill"},{"name":"fill","value":1,"description":"Pixel is fill"}],"description":"Image or fill data"},{"name":"retrieval","length":1,"offset":1,"classes":[{"name":"not_valid","value":0,"description":"Pixel retrieval is not valid"},{"name":"valid","value":1,"description":"Pixel retrieval is valid"}],"description":"Valid aerosol retrieval"},{"name":"water","length":1,"offset":2,"classes":[{"name":"not_water","value":0,"description":"Pixel is not water"},{"name":"water","value":1,"description":"Pixel is water"}],"description":"Water mask"},{"name":"interpolated","length":1,"offset":5,"classes":[{"name":"not_interpolated","value":0,"description":"Pixel is not interpolated aerosol"},{"name":"interpolated","value":1,"description":"Pixel is interpolated aerosol"}],"description":"Aerosol interpolation"},{"name":"level","length":2,"offset":6,"classes":[{"name":"climatology","value":0,"description":"No aerosol correction applied"},{"name":"low","value":1,"description":"Low aerosol level"},{"name":"medium","value":2,"description":"Medium aerosol level"},{"name":"high","value":3,"description":"High aerosol level"}],"description":"Aerosol level"}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=landsat-c2-l2&item=LC09_L2SP_085006_20250713_02_T2&assets=red&assets=green&assets=blue&color_formula=gamma+RGB+2.7%2C+saturation+1.5%2C+sigmoidal+RGB+15+0.55&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=landsat-c2-l2&item=LC09_L2SP_085006_20250713_02_T2&assets=red&assets=green&assets=blue&color_formula=gamma+RGB+2.7%2C+saturation+1.5%2C+sigmoidal+RGB+15+0.55&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-154.81598706321896,77.10155548284308],[-158.93478999884286,75.6508064705735],[-153.49282594843686,74.68995804466219],[-149.09868179965227,76.0513688507994],[-154.81598706321896,77.10155548284308]]]},"collection":"landsat-c2-l2","properties":{"gsd":30,"created":"2025-07-17T09:17:19.568879Z","sci:doi":"10.5066/P9OGBGM6","datetime":"2025-07-13T22:48:05.040854Z","platform":"landsat-9","proj:epsg":32605,"proj:shape":[9091,9081],"description":"Landsat Collection 2 Level-2","instruments":["oli","tirs"],"eo:cloud_cover":99.91,"proj:transform":[30.0,0.0,333885.0,0.0,-30.0,8560515.0],"view:off_nadir":0,"landsat:wrs_row":"006","landsat:scene_id":"LC90850062025194LGN00","landsat:wrs_path":"085","landsat:wrs_type":"2","view:sun_azimuth":187.39921855,"landsat:correction":"L2SP","view:sun_elevation":35.67079248,"landsat:cloud_cover_land":-1.0,"landsat:collection_number":"02","landsat:collection_category":"T2"},"stac_extensions":["https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://landsat.usgs.gov/stac/landsat-extension/v1.1.1/schema.json","https://stac-extensions.github.io/classification/v1.0.0/schema.json","https://stac-extensions.github.io/scientific/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/items"},{"rel":"next","type":"application/geo+json","method":"GET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/items?collections=landsat-c2-l2&token=next:landsat-c2-l2:LC09_L2SP_085006_20250713_02_T2"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '8178' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:50:38 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125037Z-167d46d96d844j9nhC1DENytps0000000skg000000005knn status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_client/test_get_items_without_ids.yaml000066400000000000000000001700721503646565400303260ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://stac.eoapi.dev/ response: body: string: '{"type":"Catalog","id":"eoapi-devseed-stac","title":"eoAPI-stac","description":"Custom stac-fastapi application for eoAPI-Devseed","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","http://www.opengis.net/spec/ogcapi-common-2/1.0/conf/simple-query","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/features-filter","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.1/collection-search","https://api.stacspec.org/v1.0.0-rc.1/collection-search#fields","https://api.stacspec.org/v1.0.0-rc.1/collection-search#filter","https://api.stacspec.org/v1.0.0-rc.1/collection-search#free-text","https://api.stacspec.org/v1.0.0-rc.1/collection-search#query","https://api.stacspec.org/v1.0.0-rc.1/collection-search#sort","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#sort","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/ogcapi-features#fields","https://api.stacspec.org/v1.0.0/ogcapi-features#query","https://api.stacspec.org/v1.0.0/ogcapi-features#sort"],"links":[{"rel":"self","type":"application/json","title":"This document","href":"https://stac.eoapi.dev/"},{"rel":"root","type":"application/json","title":"Root","href":"https://stac.eoapi.dev/"},{"rel":"data","type":"application/json","title":"Collections available for this Catalog","href":"https://stac.eoapi.dev/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://stac.eoapi.dev/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search [GET]","href":"https://stac.eoapi.dev/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search [POST]","href":"https://stac.eoapi.dev/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables available for this Catalog","href":"https://stac.eoapi.dev/queryables","method":"GET"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://stac.eoapi.dev/api"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://stac.eoapi.dev/api.html"}],"stac_extensions":[]}' headers: Apigw-Requestid: - N2sPtjcBvHcEPpA= Connection: - keep-alive Content-Length: - '674' Content-Type: - application/json Date: - Thu, 17 Jul 2025 13:00:45 GMT content-encoding: - gzip vary: - Accept-Encoding status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://stac.eoapi.dev/ response: body: string: '{"type":"Catalog","id":"eoapi-devseed-stac","title":"eoAPI-stac","description":"Custom stac-fastapi application for eoAPI-Devseed","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","http://www.opengis.net/spec/ogcapi-common-2/1.0/conf/simple-query","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/features-filter","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.1/collection-search","https://api.stacspec.org/v1.0.0-rc.1/collection-search#fields","https://api.stacspec.org/v1.0.0-rc.1/collection-search#filter","https://api.stacspec.org/v1.0.0-rc.1/collection-search#free-text","https://api.stacspec.org/v1.0.0-rc.1/collection-search#query","https://api.stacspec.org/v1.0.0-rc.1/collection-search#sort","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/item-search#fields","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#sort","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/ogcapi-features#fields","https://api.stacspec.org/v1.0.0/ogcapi-features#query","https://api.stacspec.org/v1.0.0/ogcapi-features#sort"],"links":[{"rel":"self","type":"application/json","title":"This document","href":"https://stac.eoapi.dev/"},{"rel":"root","type":"application/json","title":"Root","href":"https://stac.eoapi.dev/"},{"rel":"data","type":"application/json","title":"Collections available for this Catalog","href":"https://stac.eoapi.dev/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://stac.eoapi.dev/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search [GET]","href":"https://stac.eoapi.dev/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search [POST]","href":"https://stac.eoapi.dev/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables available for this Catalog","href":"https://stac.eoapi.dev/queryables","method":"GET"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://stac.eoapi.dev/api"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://stac.eoapi.dev/api.html"}],"stac_extensions":[]}' headers: Apigw-Requestid: - N2sPvjtZvHcEPow= Connection: - keep-alive Content-Length: - '674' Content-Type: - application/json Date: - Thu, 17 Jul 2025 13:00:45 GMT content-encoding: - gzip vary: - Accept-Encoding status: code: 200 message: OK - request: body: '{}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '2' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://stac.eoapi.dev/search response: body: string: '{"type":"FeatureCollection","links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://stac.eoapi.dev/search","body":{"token":"next:WildFires-LosAngeles-Jan-2025:11_031311102221_103001010C12B000"}},{"rel":"root","type":"application/json","href":"https://stac.eoapi.dev/"},{"rel":"self","type":"application/json","href":"https://stac.eoapi.dev/search"}],"features":[{"id":"11_031311120101_103001010C12B000","bbox":[-118.44249828329833,33.97016888,-118.43130993485134,33.97363657501462],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025"},{"rel":"parent","type":"application/json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025"},{"rel":"root","type":"application/json","href":"https://stac.eoapi.dev/"},{"rel":"self","type":"application/geo+json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025/items/11_031311120101_103001010C12B000"}],"assets":{"visual":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311120101/2025-01-16/103001010C12B000-visual.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["visual"],"title":"Visual Image","eo:bands":[{"name":"BAND_R","common_name":"red","description":"Red"},{"name":"BAND_G","common_name":"green","description":"Green"},{"name":"BAND_B","common_name":"blue","description":"Blue"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311120101/2025-01-16/103001010C12B000-visual.tif","title":"Public Access"}},"proj:bbox":[364843.75,3754843.75,370156.25,3760156.25],"proj:shape":[17408,17408],"proj:transform":[0.30517578125,0.0,364843.75,0.0,-0.30517578125,3760156.25,0.0,0.0,1.0]},"data-mask":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311120101/2025-01-16/103001010C12B000-data-mask.gpkg","type":"application/geopackage+sqlite3","roles":["data-mask"],"title":"Data Mask","alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311120101/2025-01-16/103001010C12B000-data-mask.gpkg","title":"Public Access"}}},"ms_analytic":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311120101/2025-01-16/103001010C12B000-ms.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Multispectral Image","eo:bands":[{"name":"BAND_C","common_name":"coastal","description":"Coastal Blue"},{"name":"BAND_B","common_name":"blue","description":"Blue"},{"name":"BAND_G","common_name":"green","description":"Green"},{"name":"BAND_Y","common_name":"yellow","description":"Yellow"},{"name":"BAND_R","common_name":"red","description":"Red"},{"name":"BAND_RE","common_name":"rededge","description":"Red Edge 1"},{"name":"BAND_N","common_name":"nir08","description":"Near Infrared 1"},{"name":"BAND_N2","common_name":"nir09","description":"Near Infrared 2"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311120101/2025-01-16/103001010C12B000-ms.tif","title":"Public Access"}},"proj:bbox":[364843.75,3754843.75,370156.25,3760156.25],"proj:shape":[2385,2385],"proj:transform":[2.2274633123689727,0.0,364843.75,0.0,-2.2274633123689727,3760156.25,0.0,0.0,1.0]},"pan_analytic":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311120101/2025-01-16/103001010C12B000-pan.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Panchromatic Image","eo:bands":[{"name":"BAND_P","description":"Pan"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311120101/2025-01-16/103001010C12B000-pan.tif","title":"Public Access"}},"proj:bbox":[364843.75,3754843.75,370156.25,3760156.25],"proj:shape":[9540,9540],"proj:transform":[0.5568658280922432,0.0,364843.75,0.0,-0.5568658280922432,3760156.25,0.0,0.0,1.0]}},"geometry":{"type":"Polygon","coordinates":[[[-118.43130993485134,33.97363657501462],[-118.43156744,33.97016888],[-118.44249828329833,33.973506151797885],[-118.43130993485134,33.97363657501462]]]},"collection":"WildFires-LosAngeles-Jan-2025","properties":{"gsd":0.61,"quadkey":"031311120101","datetime":"2025-01-16T18:58:03Z","platform":"WV02","utm_zone":11,"grid:code":"MXRA-Z11-031311120101","proj:bbox":[366744.1935240542,3759771.6789575517,367775.5468113079,3760156.25],"proj:epsg":32611,"catalog_id":"103001010C12B000","view:azimuth":251.0,"proj:geometry":{"type":"Polygon","coordinates":[[[367775.5468113079,3760156.25],[367746.44394234975,3759771.6789575517],[366744.1935240542,3760156.25],[367775.5468113079,3760156.25]]]},"tile:data_area":0.1,"view:off_nadir":30.0,"tile:clouds_area":0.0,"view:sun_azimuth":161.5,"view:sun_elevation":33.2,"tile:clouds_percent":0,"ard_metadata_version":"0.0.1","view:incidence_angle":55.9},"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://stac-extensions.github.io/eo/v1.1.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json","https://stac-extensions.github.io/alternate-assets/v1.1.0/schema.json"]},{"id":"11_031311102323_103001010C12B000","bbox":[-118.46381101423906,33.97079170184367,-118.42795877354966,34.0187650138046],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025"},{"rel":"parent","type":"application/json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025"},{"rel":"root","type":"application/json","href":"https://stac.eoapi.dev/"},{"rel":"self","type":"application/geo+json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025/items/11_031311102323_103001010C12B000"}],"assets":{"visual":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102323/2025-01-16/103001010C12B000-visual.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["visual"],"title":"Visual Image","eo:bands":[{"name":"BAND_R","common_name":"red","description":"Red"},{"name":"BAND_G","common_name":"green","description":"Green"},{"name":"BAND_B","common_name":"blue","description":"Blue"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102323/2025-01-16/103001010C12B000-visual.tif","title":"Public Access"}},"proj:bbox":[364843.75,3759843.75,370156.25,3765156.25],"proj:shape":[17408,17408],"proj:transform":[0.30517578125,0.0,364843.75,0.0,-0.30517578125,3765156.25,0.0,0.0,1.0]},"data-mask":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102323/2025-01-16/103001010C12B000-data-mask.gpkg","type":"application/geopackage+sqlite3","roles":["data-mask"],"title":"Data Mask","alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102323/2025-01-16/103001010C12B000-data-mask.gpkg","title":"Public Access"}}},"ms_analytic":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102323/2025-01-16/103001010C12B000-ms.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Multispectral Image","eo:bands":[{"name":"BAND_C","common_name":"coastal","description":"Coastal Blue"},{"name":"BAND_B","common_name":"blue","description":"Blue"},{"name":"BAND_G","common_name":"green","description":"Green"},{"name":"BAND_Y","common_name":"yellow","description":"Yellow"},{"name":"BAND_R","common_name":"red","description":"Red"},{"name":"BAND_RE","common_name":"rededge","description":"Red Edge 1"},{"name":"BAND_N","common_name":"nir08","description":"Near Infrared 1"},{"name":"BAND_N2","common_name":"nir09","description":"Near Infrared 2"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102323/2025-01-16/103001010C12B000-ms.tif","title":"Public Access"}},"proj:bbox":[364843.75,3759843.75,370156.25,3765156.25],"proj:shape":[2385,2385],"proj:transform":[2.2274633123689727,0.0,364843.75,0.0,-2.2274633123689727,3765156.25,0.0,0.0,1.0]},"pan_analytic":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102323/2025-01-16/103001010C12B000-pan.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Panchromatic Image","eo:bands":[{"name":"BAND_P","description":"Pan"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102323/2025-01-16/103001010C12B000-pan.tif","title":"Public Access"}},"proj:bbox":[364843.75,3759843.75,370156.25,3765156.25],"proj:shape":[9540,9540],"proj:transform":[0.5568658280922432,0.0,364843.75,0.0,-0.5568658280922432,3765156.25,0.0,0.0,1.0]}},"geometry":{"type":"Polygon","coordinates":[[[-118.46381101423906,34.0183465972556],[-118.42795877354966,34.0187650138046],[-118.43151938296323,33.97081604044585],[-118.433607420076,33.97079170184367],[-118.46315019500364,33.97981134167439],[-118.46381101423906,34.0183465972556]]]},"collection":"WildFires-LosAngeles-Jan-2025","properties":{"gsd":0.61,"quadkey":"031311102323","datetime":"2025-01-16T18:58:03Z","platform":"WV02","utm_zone":11,"grid:code":"MXRA-Z11-031311102323","proj:bbox":[364843.75,3759843.75,368153.92773116165,3765156.25],"proj:epsg":32611,"catalog_id":"103001010C12B000","view:azimuth":250.8,"proj:geometry":{"type":"Polygon","coordinates":[[[364843.75,3765156.25],[368153.92773116165,3765156.25],[367751.898003817,3759843.75],[367558.61588337546,3759843.75],[364843.75,3760885.464509486],[364843.75,3765156.25]]]},"tile:data_area":15.1,"view:off_nadir":30.0,"tile:clouds_area":0.0,"view:sun_azimuth":161.5,"view:sun_elevation":33.2,"tile:clouds_percent":0,"ard_metadata_version":"0.0.1","view:incidence_angle":55.9},"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://stac-extensions.github.io/eo/v1.1.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json","https://stac-extensions.github.io/alternate-assets/v1.1.0/schema.json"]},{"id":"11_031311102322_103001010C12B000","bbox":[-118.5179471823,33.9787731449816,-118.45974970321004,34.01838683046918],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025"},{"rel":"parent","type":"application/json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025"},{"rel":"root","type":"application/json","href":"https://stac.eoapi.dev/"},{"rel":"self","type":"application/geo+json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025/items/11_031311102322_103001010C12B000"}],"assets":{"visual":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102322/2025-01-16/103001010C12B000-visual.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["visual"],"title":"Visual Image","eo:bands":[{"name":"BAND_R","common_name":"red","description":"Red"},{"name":"BAND_G","common_name":"green","description":"Green"},{"name":"BAND_B","common_name":"blue","description":"Blue"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102322/2025-01-16/103001010C12B000-visual.tif","title":"Public Access"}},"proj:bbox":[359843.75,3759843.75,365156.25,3765156.25],"proj:shape":[17408,17408],"proj:transform":[0.30517578125,0.0,359843.75,0.0,-0.30517578125,3765156.25,0.0,0.0,1.0]},"data-mask":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102322/2025-01-16/103001010C12B000-data-mask.gpkg","type":"application/geopackage+sqlite3","roles":["data-mask"],"title":"Data Mask","alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102322/2025-01-16/103001010C12B000-data-mask.gpkg","title":"Public Access"}}},"ms_analytic":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102322/2025-01-16/103001010C12B000-ms.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Multispectral Image","eo:bands":[{"name":"BAND_C","common_name":"coastal","description":"Coastal Blue"},{"name":"BAND_B","common_name":"blue","description":"Blue"},{"name":"BAND_G","common_name":"green","description":"Green"},{"name":"BAND_Y","common_name":"yellow","description":"Yellow"},{"name":"BAND_R","common_name":"red","description":"Red"},{"name":"BAND_RE","common_name":"rededge","description":"Red Edge 1"},{"name":"BAND_N","common_name":"nir08","description":"Near Infrared 1"},{"name":"BAND_N2","common_name":"nir09","description":"Near Infrared 2"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102322/2025-01-16/103001010C12B000-ms.tif","title":"Public Access"}},"proj:bbox":[359843.75,3759843.75,365156.25,3765156.25],"proj:shape":[2388,2388],"proj:transform":[2.2246649916247905,0.0,359843.75,0.0,-2.2246649916247905,3765156.25,0.0,0.0,1.0]},"pan_analytic":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102322/2025-01-16/103001010C12B000-pan.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Panchromatic Image","eo:bands":[{"name":"BAND_P","description":"Pan"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102322/2025-01-16/103001010C12B000-pan.tif","title":"Public Access"}},"proj:bbox":[359843.75,3759843.75,365156.25,3765156.25],"proj:shape":[9552,9552],"proj:transform":[0.5561662479061976,0.0,359843.75,0.0,-0.5561662479061976,3765156.25,0.0,0.0,1.0]}},"geometry":{"type":"Polygon","coordinates":[[[-118.5179471823,34.017690212286595],[-118.46042744595233,34.01838683046918],[-118.45974970321004,33.9787731449816],[-118.51756904890841,33.99642584262849],[-118.5179471823,34.017690212286595]]]},"collection":"WildFires-LosAngeles-Jan-2025","properties":{"gsd":0.61,"quadkey":"031311102322","datetime":"2025-01-16T18:58:03Z","platform":"WV02","utm_zone":11,"grid:code":"MXRA-Z11-031311102322","proj:bbox":[359843.75,3760765.5559032424,365156.25,3765156.25],"proj:epsg":32611,"catalog_id":"103001010C12B000","view:azimuth":250.6,"proj:geometry":{"type":"Polygon","coordinates":[[[359843.75,3765156.25],[365156.25,3765156.25],[365156.25,3760765.5559032424],[359843.75,3762804.002209387],[359843.75,3765156.25]]]},"tile:data_area":17.9,"view:off_nadir":29.8,"tile:clouds_area":0.0,"view:sun_azimuth":161.5,"view:sun_elevation":33.2,"tile:clouds_percent":0,"ard_metadata_version":"0.0.1","view:incidence_angle":56.2},"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://stac-extensions.github.io/eo/v1.1.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json","https://stac-extensions.github.io/alternate-assets/v1.1.0/schema.json"]},{"id":"11_031311102321_103001010C12B000","bbox":[-118.46458583777923,34.01552911508774,-118.42460762823815,34.06389323726292],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025"},{"rel":"parent","type":"application/json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025"},{"rel":"root","type":"application/json","href":"https://stac.eoapi.dev/"},{"rel":"self","type":"application/geo+json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025/items/11_031311102321_103001010C12B000"}],"assets":{"visual":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102321/2025-01-16/103001010C12B000-visual.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["visual"],"title":"Visual Image","eo:bands":[{"name":"BAND_R","common_name":"red","description":"Red"},{"name":"BAND_G","common_name":"green","description":"Green"},{"name":"BAND_B","common_name":"blue","description":"Blue"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102321/2025-01-16/103001010C12B000-visual.tif","title":"Public Access"}},"proj:bbox":[364843.75,3764843.75,370156.25,3770156.25],"proj:shape":[17408,17408],"proj:transform":[0.30517578125,0.0,364843.75,0.0,-0.30517578125,3770156.25,0.0,0.0,1.0]},"data-mask":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102321/2025-01-16/103001010C12B000-data-mask.gpkg","type":"application/geopackage+sqlite3","roles":["data-mask"],"title":"Data Mask","alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102321/2025-01-16/103001010C12B000-data-mask.gpkg","title":"Public Access"}}},"ms_analytic":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102321/2025-01-16/103001010C12B000-ms.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Multispectral Image","eo:bands":[{"name":"BAND_C","common_name":"coastal","description":"Coastal Blue"},{"name":"BAND_B","common_name":"blue","description":"Blue"},{"name":"BAND_G","common_name":"green","description":"Green"},{"name":"BAND_Y","common_name":"yellow","description":"Yellow"},{"name":"BAND_R","common_name":"red","description":"Red"},{"name":"BAND_RE","common_name":"rededge","description":"Red Edge 1"},{"name":"BAND_N","common_name":"nir08","description":"Near Infrared 1"},{"name":"BAND_N2","common_name":"nir09","description":"Near Infrared 2"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102321/2025-01-16/103001010C12B000-ms.tif","title":"Public Access"}},"proj:bbox":[364843.75,3764843.75,370156.25,3770156.25],"proj:shape":[2385,2385],"proj:transform":[2.2274633123689727,0.0,364843.75,0.0,-2.2274633123689727,3770156.25,0.0,0.0,1.0]},"pan_analytic":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102321/2025-01-16/103001010C12B000-pan.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Panchromatic Image","eo:bands":[{"name":"BAND_P","description":"Pan"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102321/2025-01-16/103001010C12B000-pan.tif","title":"Public Access"}},"proj:bbox":[364843.75,3764843.75,370156.25,3770156.25],"proj:shape":[9540,9540],"proj:transform":[0.5568658280922432,0.0,364843.75,0.0,-0.5568658280922432,3770156.25,0.0,0.0,1.0]}},"geometry":{"type":"Polygon","coordinates":[[[-118.46376264492967,34.01552911508774],[-118.46458583777923,34.06342612781529],[-118.42460762823815,34.06389323726292],[-118.42816822066274,34.015944492686366],[-118.46376264492967,34.01552911508774]]]},"collection":"WildFires-LosAngeles-Jan-2025","properties":{"gsd":0.61,"quadkey":"031311102321","datetime":"2025-01-16T18:58:02Z","platform":"WV02","utm_zone":11,"grid:code":"MXRA-Z11-031311102321","proj:bbox":[364843.75,3764843.75,368532.3086510154,3770156.25],"proj:epsg":32611,"catalog_id":"103001010C12B000","view:azimuth":250.5,"proj:geometry":{"type":"Polygon","coordinates":[[[364843.75,3764843.75],[364843.75,3770156.25],[368532.3086510154,3770156.25],[368130.2789236708,3764843.75],[364843.75,3764843.75]]]},"tile:data_area":18.5,"view:off_nadir":30.0,"tile:clouds_area":0.0,"view:sun_azimuth":161.5,"view:sun_elevation":33.2,"tile:clouds_percent":0,"ard_metadata_version":"0.0.1","view:incidence_angle":55.9},"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://stac-extensions.github.io/eo/v1.1.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json","https://stac-extensions.github.io/alternate-assets/v1.1.0/schema.json"]},{"id":"11_031311102320_103001010C12B000","bbox":[-118.51875063479937,34.01487279932069,-118.4603791883506,34.06346642893476],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025"},{"rel":"parent","type":"application/json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025"},{"rel":"root","type":"application/json","href":"https://stac.eoapi.dev/"},{"rel":"self","type":"application/geo+json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025/items/11_031311102320_103001010C12B000"}],"assets":{"visual":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102320/2025-01-16/103001010C12B000-visual.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["visual"],"title":"Visual Image","eo:bands":[{"name":"BAND_R","common_name":"red","description":"Red"},{"name":"BAND_G","common_name":"green","description":"Green"},{"name":"BAND_B","common_name":"blue","description":"Blue"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102320/2025-01-16/103001010C12B000-visual.tif","title":"Public Access"}},"proj:bbox":[359843.75,3764843.75,365156.25,3770156.25],"proj:shape":[17408,17408],"proj:transform":[0.30517578125,0.0,359843.75,0.0,-0.30517578125,3770156.25,0.0,0.0,1.0]},"data-mask":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102320/2025-01-16/103001010C12B000-data-mask.gpkg","type":"application/geopackage+sqlite3","roles":["data-mask"],"title":"Data Mask","alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102320/2025-01-16/103001010C12B000-data-mask.gpkg","title":"Public Access"}}},"ms_analytic":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102320/2025-01-16/103001010C12B000-ms.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Multispectral Image","eo:bands":[{"name":"BAND_C","common_name":"coastal","description":"Coastal Blue"},{"name":"BAND_B","common_name":"blue","description":"Blue"},{"name":"BAND_G","common_name":"green","description":"Green"},{"name":"BAND_Y","common_name":"yellow","description":"Yellow"},{"name":"BAND_R","common_name":"red","description":"Red"},{"name":"BAND_RE","common_name":"rededge","description":"Red Edge 1"},{"name":"BAND_N","common_name":"nir08","description":"Near Infrared 1"},{"name":"BAND_N2","common_name":"nir09","description":"Near Infrared 2"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102320/2025-01-16/103001010C12B000-ms.tif","title":"Public Access"}},"proj:bbox":[359843.75,3764843.75,365156.25,3770156.25],"proj:shape":[2387,2387],"proj:transform":[2.2255969836614997,0.0,359843.75,0.0,-2.2255969836614997,3770156.25,0.0,0.0,1.0]},"pan_analytic":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102320/2025-01-16/103001010C12B000-pan.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Panchromatic Image","eo:bands":[{"name":"BAND_P","description":"Pan"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102320/2025-01-16/103001010C12B000-pan.tif","title":"Public Access"}},"proj:bbox":[359843.75,3764843.75,365156.25,3770156.25],"proj:shape":[9548,9548],"proj:transform":[0.5563992459153749,0.0,359843.75,0.0,-0.5563992459153749,3770156.25,0.0,0.0,1.0]}},"geometry":{"type":"Polygon","coordinates":[[[-118.51875063479937,34.06276863500426],[-118.51789702579136,34.01487279932069],[-118.4603791883506,34.01556934405954],[-118.46120048005898,34.06346642893476],[-118.51875063479937,34.06276863500426]]]},"collection":"WildFires-LosAngeles-Jan-2025","properties":{"gsd":0.61,"quadkey":"031311102320","datetime":"2025-01-16T18:58:02Z","platform":"WV02","utm_zone":11,"grid:code":"MXRA-Z11-031311102320","proj:bbox":[359843.75,3764843.75,365156.25,3770156.25],"proj:epsg":32611,"catalog_id":"103001010C12B000","view:azimuth":250.3,"proj:geometry":{"type":"Polygon","coordinates":[[[359843.75,3770156.25],[359843.75,3764843.75],[365156.25,3764843.75],[365156.25,3770156.25],[359843.75,3770156.25]]]},"tile:data_area":28.2,"view:off_nadir":29.8,"tile:clouds_area":0.0,"view:sun_azimuth":161.5,"view:sun_elevation":33.2,"tile:clouds_percent":0,"ard_metadata_version":"0.0.1","view:incidence_angle":56.2},"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://stac-extensions.github.io/eo/v1.1.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json","https://stac-extensions.github.io/alternate-assets/v1.1.0/schema.json"]},{"id":"11_031311102303_103001010C12B000","bbox":[-118.4653623854319,34.06060866731176,-118.42125649893394,34.109021245158665],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025"},{"rel":"parent","type":"application/json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025"},{"rel":"root","type":"application/json","href":"https://stac.eoapi.dev/"},{"rel":"self","type":"application/geo+json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025/items/11_031311102303_103001010C12B000"}],"assets":{"visual":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102303/2025-01-16/103001010C12B000-visual.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["visual"],"title":"Visual Image","eo:bands":[{"name":"BAND_R","common_name":"red","description":"Red"},{"name":"BAND_G","common_name":"green","description":"Green"},{"name":"BAND_B","common_name":"blue","description":"Blue"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102303/2025-01-16/103001010C12B000-visual.tif","title":"Public Access"}},"proj:bbox":[364843.75,3769843.75,370156.25,3775156.25],"proj:shape":[17408,17408],"proj:transform":[0.30517578125,0.0,364843.75,0.0,-0.30517578125,3775156.25,0.0,0.0,1.0]},"data-mask":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102303/2025-01-16/103001010C12B000-data-mask.gpkg","type":"application/geopackage+sqlite3","roles":["data-mask"],"title":"Data Mask","alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102303/2025-01-16/103001010C12B000-data-mask.gpkg","title":"Public Access"}}},"ms_analytic":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102303/2025-01-16/103001010C12B000-ms.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Multispectral Image","eo:bands":[{"name":"BAND_C","common_name":"coastal","description":"Coastal Blue"},{"name":"BAND_B","common_name":"blue","description":"Blue"},{"name":"BAND_G","common_name":"green","description":"Green"},{"name":"BAND_Y","common_name":"yellow","description":"Yellow"},{"name":"BAND_R","common_name":"red","description":"Red"},{"name":"BAND_RE","common_name":"rededge","description":"Red Edge 1"},{"name":"BAND_N","common_name":"nir08","description":"Near Infrared 1"},{"name":"BAND_N2","common_name":"nir09","description":"Near Infrared 2"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102303/2025-01-16/103001010C12B000-ms.tif","title":"Public Access"}},"proj:bbox":[364843.75,3769843.75,370156.25,3775156.25],"proj:shape":[2382,2382],"proj:transform":[2.2302686817800166,0.0,364843.75,0.0,-2.2302686817800166,3775156.25,0.0,0.0,1.0]},"pan_analytic":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102303/2025-01-16/103001010C12B000-pan.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Panchromatic Image","eo:bands":[{"name":"BAND_P","description":"Pan"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102303/2025-01-16/103001010C12B000-pan.tif","title":"Public Access"}},"proj:bbox":[364843.75,3769843.75,370156.25,3775156.25],"proj:shape":[9528,9528],"proj:transform":[0.5575671704450041,0.0,364843.75,0.0,-0.5575671704450041,3775156.25,0.0,0.0,1.0]}},"geometry":{"type":"Polygon","coordinates":[[[-118.46453736083508,34.06060866731176],[-118.4653623854319,34.10850531161352],[-118.42125649893394,34.109021245158665],[-118.42481707435134,34.06107272960969],[-118.46453736083508,34.06060866731176]]]},"collection":"WildFires-LosAngeles-Jan-2025","properties":{"gsd":0.61,"quadkey":"031311102303","datetime":"2025-01-16T18:58:02Z","platform":"WV02","utm_zone":11,"grid:code":"MXRA-Z11-031311102303","proj:bbox":[364843.75,3769843.75,368910.6895708692,3775156.25],"proj:epsg":32611,"catalog_id":"103001010C12B000","view:azimuth":250.2,"proj:geometry":{"type":"Polygon","coordinates":[[[364843.75,3769843.75],[364843.75,3775156.25],[368910.6895708692,3775156.25],[368508.65984352457,3769843.75],[364843.75,3769843.75]]]},"tile:data_area":20.5,"view:off_nadir":30.0,"tile:clouds_area":0.0,"view:sun_azimuth":161.5,"view:sun_elevation":33.2,"tile:clouds_percent":0,"ard_metadata_version":"0.0.1","view:incidence_angle":55.9},"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://stac-extensions.github.io/eo/v1.1.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json","https://stac-extensions.github.io/alternate-assets/v1.1.0/schema.json"]},{"id":"11_031311102302_103001010C12B000","bbox":[-118.51955587507352,34.059951243774556,-118.46115211507093,34.10854568070948],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025"},{"rel":"parent","type":"application/json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025"},{"rel":"root","type":"application/json","href":"https://stac.eoapi.dev/"},{"rel":"self","type":"application/geo+json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025/items/11_031311102302_103001010C12B000"}],"assets":{"visual":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102302/2025-01-16/103001010C12B000-visual.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["visual"],"title":"Visual Image","eo:bands":[{"name":"BAND_R","common_name":"red","description":"Red"},{"name":"BAND_G","common_name":"green","description":"Green"},{"name":"BAND_B","common_name":"blue","description":"Blue"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102302/2025-01-16/103001010C12B000-visual.tif","title":"Public Access"}},"proj:bbox":[359843.75,3769843.75,365156.25,3775156.25],"proj:shape":[17408,17408],"proj:transform":[0.30517578125,0.0,359843.75,0.0,-0.30517578125,3775156.25,0.0,0.0,1.0]},"data-mask":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102302/2025-01-16/103001010C12B000-data-mask.gpkg","type":"application/geopackage+sqlite3","roles":["data-mask"],"title":"Data Mask","alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102302/2025-01-16/103001010C12B000-data-mask.gpkg","title":"Public Access"}}},"ms_analytic":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102302/2025-01-16/103001010C12B000-ms.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Multispectral Image","eo:bands":[{"name":"BAND_C","common_name":"coastal","description":"Coastal Blue"},{"name":"BAND_B","common_name":"blue","description":"Blue"},{"name":"BAND_G","common_name":"green","description":"Green"},{"name":"BAND_Y","common_name":"yellow","description":"Yellow"},{"name":"BAND_R","common_name":"red","description":"Red"},{"name":"BAND_RE","common_name":"rededge","description":"Red Edge 1"},{"name":"BAND_N","common_name":"nir08","description":"Near Infrared 1"},{"name":"BAND_N2","common_name":"nir09","description":"Near Infrared 2"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102302/2025-01-16/103001010C12B000-ms.tif","title":"Public Access"}},"proj:bbox":[359843.75,3769843.75,365156.25,3775156.25],"proj:shape":[2385,2385],"proj:transform":[2.2274633123689727,0.0,359843.75,0.0,-2.2274633123689727,3775156.25,0.0,0.0,1.0]},"pan_analytic":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102302/2025-01-16/103001010C12B000-pan.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Panchromatic Image","eo:bands":[{"name":"BAND_P","description":"Pan"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102302/2025-01-16/103001010C12B000-pan.tif","title":"Public Access"}},"proj:bbox":[359843.75,3769843.75,365156.25,3775156.25],"proj:shape":[9540,9540],"proj:transform":[0.5568658280922432,0.0,359843.75,0.0,-0.5568658280922432,3775156.25,0.0,0.0,1.0]}},"geometry":{"type":"Polygon","coordinates":[[[-118.51955587507352,34.107846709808776],[-118.5187003666816,34.059951243774556],[-118.46115211507093,34.06064896418505],[-118.46197523429882,34.10854568070948],[-118.51955587507352,34.107846709808776]]]},"collection":"WildFires-LosAngeles-Jan-2025","properties":{"gsd":0.61,"quadkey":"031311102302","datetime":"2025-01-16T18:58:02Z","platform":"WV02","utm_zone":11,"grid:code":"MXRA-Z11-031311102302","proj:bbox":[359843.75,3769843.75,365156.25,3775156.25],"proj:epsg":32611,"catalog_id":"103001010C12B000","view:azimuth":250.0,"proj:geometry":{"type":"Polygon","coordinates":[[[359843.75,3775156.25],[359843.75,3769843.75],[365156.25,3769843.75],[365156.25,3775156.25],[359843.75,3775156.25]]]},"tile:data_area":28.2,"view:off_nadir":29.8,"tile:clouds_area":0.0,"view:sun_azimuth":161.5,"view:sun_elevation":33.2,"tile:clouds_percent":0,"ard_metadata_version":"0.0.1","view:incidence_angle":56.2},"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://stac-extensions.github.io/eo/v1.1.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json","https://stac-extensions.github.io/alternate-assets/v1.1.0/schema.json"]},{"id":"11_031311102231_103001010C12B000","bbox":[-118.57291364404695,34.01419266938623,-118.51451367858594,34.062810427263365],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025"},{"rel":"parent","type":"application/json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025"},{"rel":"root","type":"application/json","href":"https://stac.eoapi.dev/"},{"rel":"self","type":"application/geo+json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025/items/11_031311102231_103001010C12B000"}],"assets":{"visual":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102231/2025-01-16/103001010C12B000-visual.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["visual"],"title":"Visual Image","eo:bands":[{"name":"BAND_R","common_name":"red","description":"Red"},{"name":"BAND_G","common_name":"green","description":"Green"},{"name":"BAND_B","common_name":"blue","description":"Blue"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102231/2025-01-16/103001010C12B000-visual.tif","title":"Public Access"}},"proj:bbox":[354843.75,3764843.75,360156.25,3770156.25],"proj:shape":[17408,17408],"proj:transform":[0.30517578125,0.0,354843.75,0.0,-0.30517578125,3770156.25,0.0,0.0,1.0]},"data-mask":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102231/2025-01-16/103001010C12B000-data-mask.gpkg","type":"application/geopackage+sqlite3","roles":["data-mask"],"title":"Data Mask","alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102231/2025-01-16/103001010C12B000-data-mask.gpkg","title":"Public Access"}}},"ms_analytic":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102231/2025-01-16/103001010C12B000-ms.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Multispectral Image","eo:bands":[{"name":"BAND_C","common_name":"coastal","description":"Coastal Blue"},{"name":"BAND_B","common_name":"blue","description":"Blue"},{"name":"BAND_G","common_name":"green","description":"Green"},{"name":"BAND_Y","common_name":"yellow","description":"Yellow"},{"name":"BAND_R","common_name":"red","description":"Red"},{"name":"BAND_RE","common_name":"rededge","description":"Red Edge 1"},{"name":"BAND_N","common_name":"nir08","description":"Near Infrared 1"},{"name":"BAND_N2","common_name":"nir09","description":"Near Infrared 2"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102231/2025-01-16/103001010C12B000-ms.tif","title":"Public Access"}},"proj:bbox":[354843.75,3764843.75,360156.25,3770156.25],"proj:shape":[2390,2390],"proj:transform":[2.2228033472803346,0.0,354843.75,0.0,-2.2228033472803346,3770156.25,0.0,0.0,1.0]},"pan_analytic":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102231/2025-01-16/103001010C12B000-pan.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Panchromatic Image","eo:bands":[{"name":"BAND_P","description":"Pan"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102231/2025-01-16/103001010C12B000-pan.tif","title":"Public Access"}},"proj:bbox":[354843.75,3764843.75,360156.25,3770156.25],"proj:shape":[9560,9560],"proj:transform":[0.5557008368200836,0.0,354843.75,0.0,-0.5557008368200836,3770156.25,0.0,0.0,1.0]}},"geometry":{"type":"Polygon","coordinates":[[[-118.57291364404695,34.06208728533614],[-118.57202962293307,34.01419266938623],[-118.51451367858594,34.01491451676382],[-118.51536538670128,34.062810427263365],[-118.57291364404695,34.06208728533614]]]},"collection":"WildFires-LosAngeles-Jan-2025","properties":{"gsd":0.6,"quadkey":"031311102231","datetime":"2025-01-16T18:58:02Z","platform":"WV02","utm_zone":11,"grid:code":"MXRA-Z11-031311102231","proj:bbox":[354843.75,3764843.75,360156.25,3770156.25],"proj:epsg":32611,"catalog_id":"103001010C12B000","view:azimuth":250.1,"proj:geometry":{"type":"Polygon","coordinates":[[[354843.75,3770156.25],[354843.75,3764843.75],[360156.25,3764843.75],[360156.25,3770156.25],[354843.75,3770156.25]]]},"tile:data_area":28.2,"view:off_nadir":29.5,"tile:clouds_area":0.0,"view:sun_azimuth":161.5,"view:sun_elevation":33.2,"tile:clouds_percent":0,"ard_metadata_version":"0.0.1","view:incidence_angle":56.5},"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://stac-extensions.github.io/eo/v1.1.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json","https://stac-extensions.github.io/alternate-assets/v1.1.0/schema.json"]},{"id":"11_031311102230_103001010C12B000","bbox":[-118.62707480187281,34.01414544496865,-118.56864638907078,34.06213056857197],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025"},{"rel":"parent","type":"application/json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025"},{"rel":"root","type":"application/json","href":"https://stac.eoapi.dev/"},{"rel":"self","type":"application/geo+json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025/items/11_031311102230_103001010C12B000"}],"assets":{"visual":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102230/2025-01-16/103001010C12B000-visual.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["visual"],"title":"Visual Image","eo:bands":[{"name":"BAND_R","common_name":"red","description":"Red"},{"name":"BAND_G","common_name":"green","description":"Green"},{"name":"BAND_B","common_name":"blue","description":"Blue"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102230/2025-01-16/103001010C12B000-visual.tif","title":"Public Access"}},"proj:bbox":[349843.75,3764843.75,355156.25,3770156.25],"proj:shape":[17408,17408],"proj:transform":[0.30517578125,0.0,349843.75,0.0,-0.30517578125,3770156.25,0.0,0.0,1.0]},"data-mask":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102230/2025-01-16/103001010C12B000-data-mask.gpkg","type":"application/geopackage+sqlite3","roles":["data-mask"],"title":"Data Mask","alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102230/2025-01-16/103001010C12B000-data-mask.gpkg","title":"Public Access"}}},"ms_analytic":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102230/2025-01-16/103001010C12B000-ms.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Multispectral Image","eo:bands":[{"name":"BAND_C","common_name":"coastal","description":"Coastal Blue"},{"name":"BAND_B","common_name":"blue","description":"Blue"},{"name":"BAND_G","common_name":"green","description":"Green"},{"name":"BAND_Y","common_name":"yellow","description":"Yellow"},{"name":"BAND_R","common_name":"red","description":"Red"},{"name":"BAND_RE","common_name":"rededge","description":"Red Edge 1"},{"name":"BAND_N","common_name":"nir08","description":"Near Infrared 1"},{"name":"BAND_N2","common_name":"nir09","description":"Near Infrared 2"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102230/2025-01-16/103001010C12B000-ms.tif","title":"Public Access"}},"proj:bbox":[349843.75,3764843.75,355156.25,3770156.25],"proj:shape":[2393,2393],"proj:transform":[2.220016715419975,0.0,349843.75,0.0,-2.220016715419975,3770156.25,0.0,0.0,1.0]},"pan_analytic":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102230/2025-01-16/103001010C12B000-pan.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Panchromatic Image","eo:bands":[{"name":"BAND_P","description":"Pan"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102230/2025-01-16/103001010C12B000-pan.tif","title":"Public Access"}},"proj:bbox":[349843.75,3764843.75,355156.25,3770156.25],"proj:shape":[9572,9572],"proj:transform":[0.5550041788549938,0.0,349843.75,0.0,-0.5550041788549938,3770156.25,0.0,0.0,1.0]}},"geometry":{"type":"Polygon","coordinates":[[[-118.62707480187281,34.06138208146718],[-118.56952850954949,34.06213056857197],[-118.56864638907078,34.01423587513815],[-118.57560753310148,34.01414544496865],[-118.62646939807934,34.029673969433354],[-118.62707480187281,34.06138208146718]]]},"collection":"WildFires-LosAngeles-Jan-2025","properties":{"gsd":0.6,"quadkey":"031311102230","datetime":"2025-01-16T18:58:02Z","platform":"WV02","utm_zone":11,"grid:code":"MXRA-Z11-031311102230","proj:bbox":[349843.75,3764843.75,355156.25,3770156.25],"proj:epsg":32611,"catalog_id":"103001010C12B000","view:azimuth":249.9,"proj:geometry":{"type":"Polygon","coordinates":[[[349843.75,3770156.25],[355156.25,3770156.25],[355156.25,3764843.75],[354527.8581342358,3764843.75],[349843.75,3766641.077609189],[349843.75,3770156.25]]]},"tile:data_area":24.0,"view:off_nadir":29.2,"tile:clouds_area":0.0,"view:sun_azimuth":161.5,"view:sun_elevation":33.2,"tile:clouds_percent":0,"ard_metadata_version":"0.0.1","view:incidence_angle":56.8},"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://stac-extensions.github.io/eo/v1.1.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json","https://stac-extensions.github.io/alternate-assets/v1.1.0/schema.json"]},{"id":"11_031311102221_103001010C12B000","bbox":[-118.6447824187134,34.028634575028654,-118.6230649833205,34.06142685551099],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025"},{"rel":"parent","type":"application/json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025"},{"rel":"root","type":"application/json","href":"https://stac.eoapi.dev/"},{"rel":"self","type":"application/geo+json","href":"https://stac.eoapi.dev/collections/WildFires-LosAngeles-Jan-2025/items/11_031311102221_103001010C12B000"}],"assets":{"visual":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102221/2025-01-16/103001010C12B000-visual.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["visual"],"title":"Visual Image","eo:bands":[{"name":"BAND_R","common_name":"red","description":"Red"},{"name":"BAND_G","common_name":"green","description":"Green"},{"name":"BAND_B","common_name":"blue","description":"Blue"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102221/2025-01-16/103001010C12B000-visual.tif","title":"Public Access"}},"proj:bbox":[344843.75,3764843.75,350156.25,3770156.25],"proj:shape":[17408,17408],"proj:transform":[0.30517578125,0.0,344843.75,0.0,-0.30517578125,3770156.25,0.0,0.0,1.0]},"data-mask":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102221/2025-01-16/103001010C12B000-data-mask.gpkg","type":"application/geopackage+sqlite3","roles":["data-mask"],"title":"Data Mask","alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102221/2025-01-16/103001010C12B000-data-mask.gpkg","title":"Public Access"}}},"ms_analytic":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102221/2025-01-16/103001010C12B000-ms.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Multispectral Image","eo:bands":[{"name":"BAND_C","common_name":"coastal","description":"Coastal Blue"},{"name":"BAND_B","common_name":"blue","description":"Blue"},{"name":"BAND_G","common_name":"green","description":"Green"},{"name":"BAND_Y","common_name":"yellow","description":"Yellow"},{"name":"BAND_R","common_name":"red","description":"Red"},{"name":"BAND_RE","common_name":"rededge","description":"Red Edge 1"},{"name":"BAND_N","common_name":"nir08","description":"Near Infrared 1"},{"name":"BAND_N2","common_name":"nir09","description":"Near Infrared 2"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102221/2025-01-16/103001010C12B000-ms.tif","title":"Public Access"}},"proj:bbox":[344843.75,3764843.75,350156.25,3770156.25],"proj:shape":[2395,2395],"proj:transform":[2.2181628392484343,0.0,344843.75,0.0,-2.2181628392484343,3770156.25,0.0,0.0,1.0]},"pan_analytic":{"href":"s3://maxar-opendata/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102221/2025-01-16/103001010C12B000-pan.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Panchromatic Image","eo:bands":[{"name":"BAND_P","description":"Pan"}],"alternate":{"public":{"href":"https://maxar-opendata.s3.amazonaws.com/events/WildFires-LosAngeles-Jan-2025/ard/11/031311102221/2025-01-16/103001010C12B000-pan.tif","title":"Public Access"}},"proj:bbox":[344843.75,3764843.75,350156.25,3770156.25],"proj:shape":[9580,9580],"proj:transform":[0.5545407098121086,0.0,344843.75,0.0,-0.5545407098121086,3770156.25,0.0,0.0,1.0]}},"geometry":{"type":"Polygon","coordinates":[[[-118.62368978495365,34.06142685551099],[-118.6230649833205,34.028634575028654],[-118.64256042435896,34.034586685381825],[-118.64256705871034,34.038480984339515],[-118.64351666630682,34.04281080796838],[-118.64367481205242,34.04432499589962],[-118.64351682237967,34.044874738684975],[-118.64394476758926,34.04632202377792],[-118.64388580100393,34.04789140052487],[-118.64404263374676,34.04865158134608],[-118.6439311122966,34.049382328719325],[-118.64458891912794,34.05208564093977],[-118.64459774678713,34.05249899633662],[-118.64455924160046,34.05297617137013],[-118.64415372262089,34.05423371449028],[-118.64407512166937,34.05529975351319],[-118.64431373660962,34.05635604449286],[-118.64469826299134,34.05720567051428],[-118.6447824187134,34.06114626464103],[-118.62368978495365,34.06142685551099]]]},"collection":"WildFires-LosAngeles-Jan-2025","properties":{"gsd":0.6,"quadkey":"031311102221","datetime":"2025-01-16T18:58:02Z","platform":"WV02","utm_zone":11,"grid:code":"MXRA-Z11-031311102221","proj:bbox":[348209.385394977,3766521.169002945,350156.25,3770156.25],"proj:epsg":32611,"catalog_id":"103001010C12B000","view:azimuth":249.7,"proj:geometry":{"type":"Polygon","coordinates":[[[350156.25,3770156.25],[350156.25,3766521.169002945],[348366.793798385,3767207.7968399688],[348373.10791015625,3767639.4653320312],[348293.15185546875,3768121.0327148438],[348281.25,3768289.1845703125],[348296.81396484375,3768349.9145507812],[348259.8876953125,3768511.0473632812],[348266.6015625,3768850.4028320312],[348210.96289252583,3769149.750467882],[348210.88388160756,3769200.1622433537],[348215.02685546875,3769249.8779296875],[348254.69970703125,3769388.7329101562],[348263.85498046875,3769506.8359375],[348243.71337890625,3769624.3286132812],[348210.0719785062,3769718.185293389],[348209.385394977,3770156.25],[350156.25,3770156.25]]]},"tile:data_area":6.1,"view:off_nadir":29.1,"tile:clouds_area":0.0,"view:sun_azimuth":161.5,"view:sun_elevation":33.2,"tile:clouds_percent":0,"ard_metadata_version":"0.0.1","view:incidence_angle":56.9},"stac_version":"1.0.0","stac_extensions":["https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://stac-extensions.github.io/eo/v1.1.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json","https://stac-extensions.github.io/alternate-assets/v1.1.0/schema.json"]}],"numberMatched":144775,"numberReturned":10}' headers: Apigw-Requestid: - N2sPwh_TvHcEPSw= Connection: - keep-alive Content-Length: - '4496' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 13:00:46 GMT content-encoding: - gzip vary: - Accept-Encoding status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_client/test_non_recursion_on_fallback.yaml000066400000000000000000001516051503646565400311230ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://raw.githubusercontent.com/stac-utils/pystac/v1.9.0/docs/example-catalog/catalog.json response: body: string: "{\n \"type\": \"Catalog\",\n \"stac_version\": \"1.0.0\",\n \"stac_extensions\": [],\n \"id\": \"landsat-stac-collection-catalog\",\n \"title\": \"STAC for Landsat data\",\n \"description\": \"STAC for Landsat data\",\n \"links\": [\n {\n \"href\": \"./catalog.json\",\n \"rel\": \"self\"\n },\n \ {\n \"href\": \"./catalog.json\",\n \"rel\": \"root\"\n },\n \ {\n \"href\": \"./landsat-8-l1/collection.json\",\n \"rel\": \"child\"\n }\n ]\n}" headers: Accept-Ranges: - bytes Access-Control-Allow-Origin: - '*' Cache-Control: - max-age=300 Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '209' Content-Security-Policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox Content-Type: - text/plain; charset=utf-8 Cross-Origin-Resource-Policy: - cross-origin Date: - Thu, 17 Jul 2025 12:50:35 GMT ETag: - W/"4f517310845b65ca442e14b6613d76cdc06523f64710d84a6d49b93c49d0dca9" Expires: - Thu, 17 Jul 2025 12:55:35 GMT Source-Age: - '0' Strict-Transport-Security: - max-age=31536000 Vary: - Authorization,Accept-Encoding Via: - 1.1 varnish X-Cache: - MISS X-Cache-Hits: - '0' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - 5fecb92ebfebdf17489da07563d10e97dff1f690 X-Frame-Options: - deny X-GitHub-Request-Id: - F897:10A89A:550B6D:6CA5CF:6878F198 X-Served-By: - cache-den-kden1300063-DEN X-Timer: - S1752756636.670090,VS0,VE92 X-XSS-Protection: - 1; mode=block status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://raw.githubusercontent.com/stac-utils/pystac/v1.9.0/docs/example-catalog/landsat-8-l1/collection.json response: body: string: "{\n \"type\": \"Collection\",\n \"stac_version\" : \"1.0.0\",\n \"stac_extensions\" : [\n \"eo\",\n \"view\",\n \"https://example.com/stac/landsat-extension/1.0/schema.json\"\n \ ],\n \"id\" : \"landsat-8-l1\",\n \"title\" : \"Landsat 8 L1\",\n \"description\" : \"Landsat 8 imagery radiometrically calibrated and orthorectified using ground points and Digital Elevation Model (DEM) data to correct relief displacement.\",\n \ \"keywords\" : [\n \"landsat\",\n \"earth observation\",\n \"usgs\"\n \ ],\n \"license\" : \"proprietary\",\n \"providers\" : [\n {\n \"name\" : \"Development Seed\",\n \"roles\" : [\n \"processor\"\n ],\n \ \"url\" : \"https://github.com/sat-utils/sat-api\"\n }\n ],\n \"extent\" : {\n \"spatial\" : {\n \"bbox\" : [\n [\n -180.0,\n \ -90.0,\n 180.0,\n 90.0\n ]\n ]\n },\n \ \"temporal\" : {\n \"interval\" : [\n [\n \"2018-05-21T15:44:59Z\",\n \ \"2018-07-08T15:45:34Z\"\n ]\n ]\n }\n },\n \"summaries\": {},\n \"properties\" : {\n \"collection\" : \"landsat-8-l1\",\n \"instruments\" : [\"OLI_TIRS\"],\n \"view:sun_azimuth\" : 149.01607154,\n \"eo:bands\" : [\n {\n \"name\" : \"B1\",\n \"full_width_half_max\" : 0.02,\n \"center_wavelength\" : 0.44,\n \"common_name\" : \"coastal\"\n },\n {\n \"name\" : \"B2\",\n \"full_width_half_max\" : 0.06,\n \"center_wavelength\" : 0.48,\n \"common_name\" : \"blue\"\n },\n {\n \"name\" : \"B3\",\n \"full_width_half_max\" : 0.06,\n \"center_wavelength\" : 0.56,\n \"common_name\" : \"green\"\n },\n {\n \"name\" : \"B4\",\n \"full_width_half_max\" : 0.04,\n \"center_wavelength\" : 0.65,\n \"common_name\" : \"red\"\n },\n {\n \"name\" : \"B5\",\n \"full_width_half_max\" : 0.03,\n \"center_wavelength\" : 0.86,\n \"common_name\" : \"nir\"\n },\n {\n \"name\" : \"B6\",\n \"full_width_half_max\" : 0.08,\n \"center_wavelength\" : 1.6,\n \"common_name\" : \"swir16\"\n \ },\n {\n \"name\" : \"B7\",\n \"full_width_half_max\" : 0.22,\n \"center_wavelength\" : 2.2,\n \"common_name\" : \"swir22\"\n \ },\n {\n \"name\" : \"B8\",\n \"full_width_half_max\" : 0.18,\n \"center_wavelength\" : 0.59,\n \"common_name\" : \"pan\"\n },\n {\n \"name\" : \"B9\",\n \"full_width_half_max\" : 0.02,\n \"center_wavelength\" : 1.37,\n \"common_name\" : \"cirrus\"\n },\n {\n \"name\" : \"B10\",\n \"full_width_half_max\" : 0.8,\n \"center_wavelength\" : 10.9,\n \"common_name\" : \"lwir11\"\n \ },\n {\n \"name\" : \"B11\",\n \"full_width_half_max\" : 1,\n \"center_wavelength\" : 12,\n \"common_name\" : \"lwir2\"\n \ }\n ],\n \"view:off_nadir\" : 0,\n \"view:azimuth\" : 0,\n \ \"platform\" : \"landsat-8\",\n \"gsd\" : 15,\n \"view:sun_elevation\" : 59.214247\n },\n \"links\" : [\n {\n \"href\" : \"../catalog.json\",\n \ \"rel\" : \"root\"\n },\n {\n \"href\" : \"../catalog.json\",\n \ \"rel\" : \"parent\"\n },\n {\n \"href\" : \"./collection.json\",\n \ \"rel\" : \"self\"\n },\n {\n \"href\" : \"./2018-06/LC80140332018166LGN00.json\",\n \ \"rel\" : \"item\"\n },\n {\n \"href\" : \"./2018-05/LC80150322018141LGN00.json\",\n \ \"rel\" : \"item\"\n },\n {\n \"href\" : \"./2018-07/LC80150332018189LGN00.json\",\n \ \"rel\" : \"item\"\n },\n {\n \"href\" : \"./2018-06/LC80300332018166LGN00.json\",\n \ \"rel\" : \"item\"\n }\n ]\n}\n" headers: Accept-Ranges: - bytes Access-Control-Allow-Origin: - '*' Cache-Control: - max-age=300 Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '959' Content-Security-Policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox Content-Type: - text/plain; charset=utf-8 Cross-Origin-Resource-Policy: - cross-origin Date: - Thu, 17 Jul 2025 12:50:35 GMT ETag: - W/"d7e83b66298977e660cd41eced9df63c47c5075485bc81bbb67f17a4df051e24" Expires: - Thu, 17 Jul 2025 12:55:35 GMT Source-Age: - '0' Strict-Transport-Security: - max-age=31536000 Vary: - Authorization,Accept-Encoding Via: - 1.1 varnish X-Cache: - MISS X-Cache-Hits: - '0' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - 668cd11a80fbe478224d1d8eeafabda345d62a4d X-Frame-Options: - deny X-GitHub-Request-Id: - 6DED:1C6FBA:53FAEF:6B95BA:6878F19A X-Served-By: - cache-den-kden1300029-DEN X-Timer: - S1752756636.824572,VS0,VE109 X-XSS-Protection: - 1; mode=block status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://raw.githubusercontent.com/stac-utils/pystac/v1.9.0/docs/example-catalog/landsat-8-l1/2018-06/LC80140332018166LGN00.json response: body: string: "{\n \"type\": \"Feature\",\n \"id\": \"LC80140332018166LGN00\",\n \ \"stac_version\" : \"1.0.0\",\n \"stac_extensions\" : [\n \"https://stac-extensions.github.io/eo/v1.1.0/schema.json\",\n \ \"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\n \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n \ ],\n \"bbox\": [\n -76.66703,\n 37.82561,\n -73.94861,\n 39.95958\n \ ],\n \"geometry\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n -76.12180471942207,\n 39.95810181489563\n \ ],\n [\n -73.94910518227414,\n 39.55117185146004\n \ ],\n [\n -74.49564725552679,\n 37.826064511480496\n \ ],\n [\n -76.66550404911956,\n 38.240699151776084\n \ ],\n [\n -76.12180471942207,\n 39.95810181489563\n \ ]\n ]\n ]\n },\n \"collection\": \"landsat-8-l1\",\n \"properties\": {\n \"collection\": \"landsat-8-l1\",\n \"datetime\": \"2018-06-15T15:39:09Z\",\n \ \"view:sun_azimuth\": 125.59055137,\n \"view:sun_elevation\": 66.54485226,\n \ \"eo:cloud_cover\": 22,\n \"instruments\": [\"OLI_TIRS\"],\n \"view:off_nadir\": 0,\n \"platform\": \"landsat-8\",\n \"gsd\": 30,\n \"proj:epsg\": 32618,\n \"proj:transform\": [357585.0, 30.0, 0.0, 4423815.0, 0.0, -30.0],\n \ \"proj:geometry\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [357585.0, 4187685.0],\n [357585.0, 4423815.0],\n \ [589815.0, 4423815.0],\n [589815.0, 4187685.0],\n [357585.0, 4187685.0]\n ]\n ]\n },\n \"proj:shape\": [7741, 7871]\n \ },\n \"assets\": {\n \"index\": {\n \"type\": \"text/html\",\n \ \"title\": \"HTML index page\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/index.html\",\n \ \"roles\": []\n },\n \"thumbnail\": {\n \"title\": \"Thumbnail image\",\n \"type\": \"image/jpeg\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_thumb_large.jpg\",\n \ \"roles\" : [\n \"thumbnail\"\n ]\n },\n \"B1\": {\n \ \"type\": \"image/tiff\",\n \"title\": \"Band 1 (coastal)\",\n \ \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B1.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B1\",\n \"full_width_half_max\" : 0.02,\n \"center_wavelength\" : 0.44,\n \"common_name\" : \"coastal\"\n }\n ]\n },\n \ \"B2\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 2 (blue)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B2.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B2\",\n \"full_width_half_max\" : 0.06,\n \"center_wavelength\" : 0.48,\n \"common_name\" : \"blue\"\n }\n ]\n },\n \ \"B3\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 3 (green)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B3.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B3\",\n \"full_width_half_max\" : 0.06,\n \"center_wavelength\" : 0.56,\n \"common_name\" : \"green\"\n }\n ]\n },\n \ \"B4\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 4 (red)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B4.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B4\",\n \"full_width_half_max\" : 0.04,\n \"center_wavelength\" : 0.65,\n \"common_name\" : \"red\"\n }\n ]\n },\n \ \"B5\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 5 (nir)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B5.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B5\",\n \"full_width_half_max\" : 0.03,\n \"center_wavelength\" : 0.86,\n \"common_name\" : \"nir\"\n }\n ]\n },\n \ \"B6\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 6 (swir16)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B6.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B6\",\n \"full_width_half_max\" : 0.08,\n \"center_wavelength\" : 1.6,\n \"common_name\" : \"swir16\"\n }\n ]\n },\n \ \"B7\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 7 (swir22)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B7.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B7\",\n \"full_width_half_max\" : 0.22,\n \"center_wavelength\" : 2.2,\n \"common_name\" : \"swir22\"\n }\n ]\n },\n \ \"B8\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 8 (pan)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B8.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B8\",\n \"full_width_half_max\" : 0.18,\n \"center_wavelength\" : 0.59,\n \"common_name\" : \"pan\"\n }\n ]\n },\n \ \"B9\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 9 (cirrus)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B9.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B9\",\n \"full_width_half_max\" : 0.02,\n \"center_wavelength\" : 1.37,\n \"common_name\" : \"cirrus\"\n }\n ]\n },\n \ \"B10\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 10 (lwir)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B10.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B10\",\n \"full_width_half_max\" : 0.8,\n \"center_wavelength\" : 10.9,\n \"common_name\" : \"lwir11\"\n }\n ]\n },\n \ \"B11\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 11 (lwir)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_B11.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B11\",\n \"full_width_half_max\" : 1,\n \"center_wavelength\" : 12,\n \"common_name\" : \"lwir2\"\n }\n ]\n },\n \ \"ANG\": {\n \"title\": \"Angle coefficients file\",\n \"type\": \"text/plain\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_ANG.txt\",\n \ \"roles\": []\n },\n \"MTL\": {\n \"title\": \"original metadata file\",\n \"type\": \"text/plain\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_MTL.txt\",\n \ \"roles\": []\n },\n \"BQA\": {\n \"title\": \"Band quality data\",\n \"type\": \"image/tiff\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/014/033/LC08_L1TP_014033_20180615_20180703_01_T1/LC08_L1TP_014033_20180615_20180703_01_T1_BQA.TIF\",\n \ \"roles\": []\n }\n },\n \"links\": [\n {\n \"rel\": \"self\",\n \ \"href\": \"./LC80140332018166LGN00.json\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"../collection.json\"\n },\n {\n \"rel\": \"collection\",\n \"href\": \"../collection.json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"../../catalog.json\"\n }\n ]\n}\n" headers: Accept-Ranges: - bytes Access-Control-Allow-Origin: - '*' Cache-Control: - max-age=300 Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '1382' Content-Security-Policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox Content-Type: - text/plain; charset=utf-8 Cross-Origin-Resource-Policy: - cross-origin Date: - Thu, 17 Jul 2025 12:50:36 GMT ETag: - W/"4aeda1cb7469bd902a948455e21ccb8b8cec0e530c5f287fa31532aeba8a4b4c" Expires: - Thu, 17 Jul 2025 12:55:36 GMT Source-Age: - '0' Strict-Transport-Security: - max-age=31536000 Vary: - Authorization,Accept-Encoding Via: - 1.1 varnish X-Cache: - MISS X-Cache-Hits: - '0' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - ea0defa7bad71610459279c1e3686837bbf77c9f X-Frame-Options: - deny X-GitHub-Request-Id: - 6334:2DC956:520C89:69A753:6878F197 X-Served-By: - cache-den-kden1300038-DEN X-Timer: - S1752756636.994992,VS0,VE108 X-XSS-Protection: - 1; mode=block status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://raw.githubusercontent.com/stac-utils/pystac/v1.9.0/docs/example-catalog/landsat-8-l1/2018-05/LC80150322018141LGN00.json response: body: string: "{\n \"type\": \"Feature\",\n \"id\": \"LC80150322018141LGN00\",\n \ \"stac_version\" : \"1.0.0\",\n \"stac_extensions\" : [\n \"https://stac-extensions.github.io/eo/v1.1.0/schema.json\",\n \ \"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\n \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n \ ],\n \"bbox\": [\n -77.88298,\n 39.23073,\n -75.07535,\n 41.41022\n \ ],\n \"geometry\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n -77.28911976020206,\n 41.40912394323429\n \ ],\n [\n -75.07576783500748,\n 40.97162247589133\n \ ],\n [\n -75.66872631473827,\n 39.23210949585851\n \ ],\n [\n -77.87946700654118,\n 39.67679918442899\n \ ],\n [\n -77.28911976020206,\n 41.40912394323429\n \ ]\n ]\n ]\n },\n \"collection\": \"landsat-8-l1\",\n \"properties\": {\n \"collection\": \"landsat-8-l1\",\n \"datetime\": \"2018-05-21T15:44:59Z\",\n \ \"view:sun_azimuth\": 134.8082647,\n \"view:sun_elevation\": 64.00406717,\n \ \"eo:cloud_cover\": 4,\n \"instruments\": [\"OLI_TIRS\"],\n \"view:off_nadir\": 0,\n \"platform\": \"landsat-8\",\n \"gsd\": 30,\n \"proj:epsg\": 32618,\n \"proj:transform\": [258885.0, 30.0, 0.0, 4584315.0, 0.0, -30.0],\n \ \"proj:geometry\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [258885.0, 4346085.0],\n [258885.0, 4584315.0],\n \ [493515.0, 4584315.0],\n [493515.0, 4346085.0],\n [258885.0, 4346085.0]\n ]\n ]\n },\n \"proj:shape\": [7821, 7941]\n \ },\n \"assets\": {\n \"index\": {\n \"type\": \"text/html\",\n \ \"title\": \"HTML index page\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/032/LC08_L1TP_015032_20180521_20180605_01_T1/index.html\",\n \ \"roles\": []\n },\n \"thumbnail\": {\n \"title\": \"Thumbnail image\",\n \"type\": \"image/jpeg\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/032/LC08_L1TP_015032_20180521_20180605_01_T1/LC08_L1TP_015032_20180521_20180605_01_T1_thumb_large.jpg\",\n \ \"roles\" : [\n \"thumbnail\"\n ]\n },\n \"B1\": {\n \ \"type\": \"image/tiff\",\n \"title\": \"Band 1 (coastal)\",\n \ \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/032/LC08_L1TP_015032_20180521_20180605_01_T1/LC08_L1TP_015032_20180521_20180605_01_T1_B1.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B1\",\n \"full_width_half_max\" : 0.02,\n \"center_wavelength\" : 0.44,\n \"common_name\" : \"coastal\"\n }\n ]\n },\n \ \"B2\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 2 (blue)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/032/LC08_L1TP_015032_20180521_20180605_01_T1/LC08_L1TP_015032_20180521_20180605_01_T1_B2.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B2\",\n \"full_width_half_max\" : 0.06,\n \"center_wavelength\" : 0.48,\n \"common_name\" : \"blue\"\n }\n ]\n },\n \ \"B3\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 3 (green)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/032/LC08_L1TP_015032_20180521_20180605_01_T1/LC08_L1TP_015032_20180521_20180605_01_T1_B3.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B3\",\n \"full_width_half_max\" : 0.06,\n \"center_wavelength\" : 0.56,\n \"common_name\" : \"green\"\n }\n ]\n },\n \ \"B4\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 4 (red)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/032/LC08_L1TP_015032_20180521_20180605_01_T1/LC08_L1TP_015032_20180521_20180605_01_T1_B4.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B4\",\n \"full_width_half_max\" : 0.04,\n \"center_wavelength\" : 0.65,\n \"common_name\" : \"red\"\n }\n ]\n },\n \ \"B5\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 5 (nir)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/032/LC08_L1TP_015032_20180521_20180605_01_T1/LC08_L1TP_015032_20180521_20180605_01_T1_B5.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B5\",\n \"full_width_half_max\" : 0.03,\n \"center_wavelength\" : 0.86,\n \"common_name\" : \"nir\"\n }\n ]\n },\n \ \"B6\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 6 (swir16)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/032/LC08_L1TP_015032_20180521_20180605_01_T1/LC08_L1TP_015032_20180521_20180605_01_T1_B6.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B6\",\n \"full_width_half_max\" : 0.08,\n \"center_wavelength\" : 1.6,\n \"common_name\" : \"swir16\"\n }\n ]\n },\n \ \"B7\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 7 (swir22)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/032/LC08_L1TP_015032_20180521_20180605_01_T1/LC08_L1TP_015032_20180521_20180605_01_T1_B7.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B7\",\n \"full_width_half_max\" : 0.22,\n \"center_wavelength\" : 2.2,\n \"common_name\" : \"swir22\"\n }\n ]\n },\n \ \"B8\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 8 (pan)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/032/LC08_L1TP_015032_20180521_20180605_01_T1/LC08_L1TP_015032_20180521_20180605_01_T1_B8.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B8\",\n \"full_width_half_max\" : 0.18,\n \"center_wavelength\" : 0.59,\n \"common_name\" : \"pan\"\n }\n ]\n },\n \ \"B9\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 9 (cirrus)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/032/LC08_L1TP_015032_20180521_20180605_01_T1/LC08_L1TP_015032_20180521_20180605_01_T1_B9.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B9\",\n \"full_width_half_max\" : 0.02,\n \"center_wavelength\" : 1.37,\n \"common_name\" : \"cirrus\"\n }\n ]\n },\n \ \"B10\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 10 (lwir)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/032/LC08_L1TP_015032_20180521_20180605_01_T1/LC08_L1TP_015032_20180521_20180605_01_T1_B10.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B10\",\n \"full_width_half_max\" : 0.8,\n \"center_wavelength\" : 10.9,\n \"common_name\" : \"lwir11\"\n }\n ]\n },\n \ \"B11\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 11 (lwir)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/032/LC08_L1TP_015032_20180521_20180605_01_T1/LC08_L1TP_015032_20180521_20180605_01_T1_B11.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B11\",\n \"full_width_half_max\" : 1,\n \"center_wavelength\" : 12,\n \"common_name\" : \"lwir2\"\n }\n ]\n },\n \ \"ANG\": {\n \"title\": \"Angle coefficients file\",\n \"type\": \"text/plain\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/032/LC08_L1TP_015032_20180521_20180605_01_T1/LC08_L1TP_015032_20180521_20180605_01_T1_ANG.txt\",\n \ \"roles\": []\n },\n \"MTL\": {\n \"title\": \"original metadata file\",\n \"type\": \"text/plain\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/032/LC08_L1TP_015032_20180521_20180605_01_T1/LC08_L1TP_015032_20180521_20180605_01_T1_MTL.txt\",\n \ \"roles\": []\n },\n \"BQA\": {\n \"title\": \"Band quality data\",\n \"type\": \"image/tiff\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/032/LC08_L1TP_015032_20180521_20180605_01_T1/LC08_L1TP_015032_20180521_20180605_01_T1_BQA.TIF\",\n \ \"roles\": []\n }\n },\n \"links\": [\n {\n \"rel\": \"self\",\n \ \"href\": \"./LC80150322018141LGN00.json\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"../collection.json\"\n },\n {\n \"rel\": \"collection\",\n \"href\": \"../collection.json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"../../catalog.json\"\n }\n ]\n}\n" headers: Accept-Ranges: - bytes Access-Control-Allow-Origin: - '*' Cache-Control: - max-age=300 Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '1380' Content-Security-Policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox Content-Type: - text/plain; charset=utf-8 Cross-Origin-Resource-Policy: - cross-origin Date: - Thu, 17 Jul 2025 12:50:36 GMT ETag: - W/"cd518c56745214a4d20ae145f9fb6edf689b57fc9ac77e1d3592c1476949550f" Expires: - Thu, 17 Jul 2025 12:55:36 GMT Source-Age: - '0' Strict-Transport-Security: - max-age=31536000 Vary: - Authorization,Accept-Encoding Via: - 1.1 varnish X-Cache: - MISS X-Cache-Hits: - '0' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - 22a65d01c74301834b026b6d58c7ed244b86f7f7 X-Frame-Options: - deny X-GitHub-Request-Id: - 3CF8:295142:533BA6:6AD6B6:6878F194 X-Served-By: - cache-den-kden1300029-DEN X-Timer: - S1752756636.162783,VS0,VE101 X-XSS-Protection: - 1; mode=block status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://raw.githubusercontent.com/stac-utils/pystac/v1.9.0/docs/example-catalog/landsat-8-l1/2018-07/LC80150332018189LGN00.json response: body: string: "{\n \"type\": \"Feature\",\n \"id\": \"LC80150332018189LGN00\",\n \ \"stac_version\" : \"1.0.0\",\n \"stac_extensions\" : [\n \"https://stac-extensions.github.io/eo/v1.1.0/schema.json\",\n \ \"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\n \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n \ ],\n \"bbox\": [\n -78.25028,\n 37.79719,\n -75.48983,\n 39.98757\n \ ],\n \"geometry\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n -77.66532657556414,\n 39.987421383364385\n \ ],\n [\n -75.49021499188945,\n 39.54442448711656\n \ ],\n [\n -76.07747288135147,\n 37.799167045362736\n \ ],\n [\n -78.25025639728777,\n 38.24897728816149\n \ ],\n [\n -77.66532657556414,\n 39.987421383364385\n \ ]\n ]\n ]\n },\n \"collection\": \"landsat-8-l1\",\n \"properties\": {\n \"collection\": \"landsat-8-l1\",\n \"datetime\": \"2018-07-08T15:45:34Z\",\n \ \"view:sun_azimuth\": 125.31095515,\n \"view:sun_elevation\": 65.2014335,\n \ \"eo:cloud_cover\": 0,\n \"instruments\": [\"OLI_TIRS\"],\n \"view:off_nadir\": 0,\n \"platform\": \"landsat-8\",\n \"gsd\": 30,\n \"proj:epsg\": 32618,\n \"proj:transform\": [222285.0, 30.0, 0.0, 4426515.0, 0.0, -30.0],\n \ \"proj:geometry\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [222285.0, 4187985.0],\n [222285.0, 4426515.0],\n \ [456915.0, 4426515.0],\n [456915.0, 4187985.0],\n [222285.0,4187985.0]]\n \ ]\n },\n \"proj:shape\": [7821, 7951]\n },\n \"assets\": {\n \ \"index\": {\n \"type\": \"text/html\",\n \"title\": \"HTML index page\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/033/LC08_L1TP_015033_20180708_20180717_01_T1/index.html\",\n \ \"roles\": []\n },\n \"thumbnail\": {\n \"title\": \"Thumbnail image\",\n \"type\": \"image/jpeg\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/033/LC08_L1TP_015033_20180708_20180717_01_T1/LC08_L1TP_015033_20180708_20180717_01_T1_thumb_large.jpg\",\n \ \"roles\" : [\n \"thumbnail\"\n ]\n },\n \"B1\": {\n \ \"type\": \"image/tiff\",\n \"title\": \"Band 1 (coastal)\",\n \ \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/033/LC08_L1TP_015033_20180708_20180717_01_T1/LC08_L1TP_015033_20180708_20180717_01_T1_B1.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B1\",\n \"full_width_half_max\" : 0.02,\n \"center_wavelength\" : 0.44,\n \"common_name\" : \"coastal\"\n }\n ]\n },\n \ \"B2\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 2 (blue)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/033/LC08_L1TP_015033_20180708_20180717_01_T1/LC08_L1TP_015033_20180708_20180717_01_T1_B2.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B2\",\n \"full_width_half_max\" : 0.06,\n \"center_wavelength\" : 0.48,\n \"common_name\" : \"blue\"\n }\n ]\n },\n \ \"B3\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 3 (green)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/033/LC08_L1TP_015033_20180708_20180717_01_T1/LC08_L1TP_015033_20180708_20180717_01_T1_B3.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B3\",\n \"full_width_half_max\" : 0.06,\n \"center_wavelength\" : 0.56,\n \"common_name\" : \"green\"\n }\n ]\n },\n \ \"B4\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 4 (red)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/033/LC08_L1TP_015033_20180708_20180717_01_T1/LC08_L1TP_015033_20180708_20180717_01_T1_B4.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B4\",\n \"full_width_half_max\" : 0.04,\n \"center_wavelength\" : 0.65,\n \"common_name\" : \"red\"\n }\n ]\n },\n \ \"B5\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 5 (nir)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/033/LC08_L1TP_015033_20180708_20180717_01_T1/LC08_L1TP_015033_20180708_20180717_01_T1_B5.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B5\",\n \"full_width_half_max\" : 0.03,\n \"center_wavelength\" : 0.86,\n \"common_name\" : \"nir\"\n }\n ]\n },\n \ \"B6\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 6 (swir16)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/033/LC08_L1TP_015033_20180708_20180717_01_T1/LC08_L1TP_015033_20180708_20180717_01_T1_B6.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B6\",\n \"full_width_half_max\" : 0.08,\n \"center_wavelength\" : 1.6,\n \"common_name\" : \"swir16\"\n }\n ]\n },\n \ \"B7\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 7 (swir22)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/033/LC08_L1TP_015033_20180708_20180717_01_T1/LC08_L1TP_015033_20180708_20180717_01_T1_B7.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B7\",\n \"full_width_half_max\" : 0.22,\n \"center_wavelength\" : 2.2,\n \"common_name\" : \"swir22\"\n }\n ]\n },\n \ \"B8\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 8 (pan)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/033/LC08_L1TP_015033_20180708_20180717_01_T1/LC08_L1TP_015033_20180708_20180717_01_T1_B8.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B8\",\n \"full_width_half_max\" : 0.18,\n \"center_wavelength\" : 0.59,\n \"common_name\" : \"pan\"\n }\n ]\n },\n \ \"B9\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 9 (cirrus)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/033/LC08_L1TP_015033_20180708_20180717_01_T1/LC08_L1TP_015033_20180708_20180717_01_T1_B9.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B9\",\n \"full_width_half_max\" : 0.02,\n \"center_wavelength\" : 1.37,\n \"common_name\" : \"cirrus\"\n }\n ]\n },\n \ \"B10\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 10 (lwir)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/033/LC08_L1TP_015033_20180708_20180717_01_T1/LC08_L1TP_015033_20180708_20180717_01_T1_B10.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B10\",\n \"full_width_half_max\" : 0.8,\n \"center_wavelength\" : 10.9,\n \"common_name\" : \"lwir11\"\n }\n ]\n },\n \ \"B11\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 11 (lwir)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/033/LC08_L1TP_015033_20180708_20180717_01_T1/LC08_L1TP_015033_20180708_20180717_01_T1_B11.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B11\",\n \"full_width_half_max\" : 1,\n \"center_wavelength\" : 12,\n \"common_name\" : \"lwir2\"\n }\n ]\n },\n \ \"ANG\": {\n \"title\": \"Angle coefficients file\",\n \"type\": \"text/plain\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/033/LC08_L1TP_015033_20180708_20180717_01_T1/LC08_L1TP_015033_20180708_20180717_01_T1_ANG.txt\",\n \ \"roles\": []\n },\n \"MTL\": {\n \"title\": \"original metadata file\",\n \"type\": \"text/plain\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/033/LC08_L1TP_015033_20180708_20180717_01_T1/LC08_L1TP_015033_20180708_20180717_01_T1_MTL.txt\",\n \ \"roles\": []\n },\n \"BQA\": {\n \"title\": \"Band quality data\",\n \"type\": \"image/tiff\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/015/033/LC08_L1TP_015033_20180708_20180717_01_T1/LC08_L1TP_015033_20180708_20180717_01_T1_BQA.TIF\",\n \ \"roles\": []\n }\n },\n \"links\": [\n {\n \"rel\": \"self\",\n \ \"href\": \"./LC80150332018189LGN00.json\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"../collection.json\"\n },\n {\n \"rel\": \"collection\",\n \"href\": \"../collection.json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"../../catalog.json\"\n }\n ]\n}\n" headers: Accept-Ranges: - bytes Access-Control-Allow-Origin: - '*' Cache-Control: - max-age=300 Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '1375' Content-Security-Policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox Content-Type: - text/plain; charset=utf-8 Cross-Origin-Resource-Policy: - cross-origin Date: - Thu, 17 Jul 2025 12:50:36 GMT ETag: - W/"f1956bfe0994b5049095141c760f2d24f565019a6e81e1aec1816740157df998" Expires: - Thu, 17 Jul 2025 12:55:36 GMT Source-Age: - '0' Strict-Transport-Security: - max-age=31536000 Vary: - Authorization,Accept-Encoding Via: - 1.1 varnish X-Cache: - MISS X-Cache-Hits: - '0' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - fd3e586f34cf0928954899c666359024d42ff77f X-Frame-Options: - deny X-GitHub-Request-Id: - D2D0:9A716:54A06C:6C3BAF:6878F19B X-Served-By: - cache-den-kden1300022-DEN X-Timer: - S1752756636.327573,VS0,VE119 X-XSS-Protection: - 1; mode=block status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://raw.githubusercontent.com/stac-utils/pystac/v1.9.0/docs/example-catalog/landsat-8-l1/2018-06/LC80300332018166LGN00.json response: body: string: "{\n \"type\": \"Feature\",\n \"stac_version\" : \"1.0.0\",\n \"stac_extensions\" : [\n \"https://stac-extensions.github.io/eo/v1.1.0/schema.json\",\n \"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\n \ \"https://stac-extensions.github.io/projection/v1.1.0/schema.json\"\n \ ],\n \"id\": \"LC80300332018166LGN00\",\n \"bbox\": [\n -101.40793,\n \ 37.81084,\n -98.6721,\n 39.97469\n ],\n \"geometry\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [\n -100.84368079413701,\n \ 39.97210491033466\n ],\n [\n -98.67492641719046,\n \ 39.54833037653145\n ],\n [\n -99.23946071016417,\n \ 37.81370881408165\n ],\n [\n -101.40560438472555,\n \ 38.24476872678675\n ],\n [\n -100.84368079413701,\n \ 39.97210491033466\n ]\n ]\n ]\n },\n \"collection\": \"landsat-8-l1\",\n \"properties\": {\n \"collection\": \"landsat-8-l1\",\n \ \"datetime\": \"2018-06-15T17:18:03Z\",\n \"view:sun_azimuth\": 125.5799919,\n \ \"view:sun_elevation\": 66.54407242,\n \"eo:cloud_cover\": 0,\n \"instruments\": [\"OLI_TIRS\"],\n \"view:off_nadir\": 0,\n \"platform\": \"landsat-8\",\n \ \"gsd\": 30,\n \"proj:epsg\": 32614,\n \"proj:transform\": [294285.0, 30.0, 0.0, 4425015.0, 0.0, -30],\n \"proj:geometry\": {\n \"type\": \"Polygon\",\n \"coordinates\": [\n [\n [294285.0, 4187385.0],\n \ [294285.0, 4425015.0],\n [528015.0, 4425015.0],\n [528015.0, 4187385.0],\n [294285.0, 4187385.0]\n ]\n ]\n },\n \ \"proj:shape\": [7791, 7921]\n },\n \"assets\": {\n \"index\": {\n \ \"type\": \"text/html\",\n \"title\": \"HTML index page\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/030/033/LC08_L1TP_030033_20180615_20180703_01_T1/index.html\",\n \ \"roles\" : []\n },\n \"thumbnail\": {\n \"title\": \"Thumbnail image\",\n \"type\": \"image/jpeg\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/030/033/LC08_L1TP_030033_20180615_20180703_01_T1/LC08_L1TP_030033_20180615_20180703_01_T1_thumb_large.jpg\",\n \ \"roles\" : [\n \"thumbnail\"\n ]\n },\n \"B1\": {\n \ \"type\": \"image/tiff\",\n \"title\": \"Band 1 (coastal)\",\n \ \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/030/033/LC08_L1TP_030033_20180615_20180703_01_T1/LC08_L1TP_030033_20180615_20180703_01_T1_B1.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B1\",\n \"full_width_half_max\" : 0.02,\n \"center_wavelength\" : 0.44,\n \"common_name\" : \"coastal\"\n }\n ]\n },\n \ \"B2\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 2 (blue)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/030/033/LC08_L1TP_030033_20180615_20180703_01_T1/LC08_L1TP_030033_20180615_20180703_01_T1_B2.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B2\",\n \"full_width_half_max\" : 0.06,\n \"center_wavelength\" : 0.48,\n \"common_name\" : \"blue\"\n }\n ]\n },\n \ \"B3\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 3 (green)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/030/033/LC08_L1TP_030033_20180615_20180703_01_T1/LC08_L1TP_030033_20180615_20180703_01_T1_B3.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B3\",\n \"full_width_half_max\" : 0.06,\n \"center_wavelength\" : 0.56,\n \"common_name\" : \"green\"\n }\n ]\n },\n \ \"B4\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 4 (red)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/030/033/LC08_L1TP_030033_20180615_20180703_01_T1/LC08_L1TP_030033_20180615_20180703_01_T1_B4.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B4\",\n \"full_width_half_max\" : 0.04,\n \"center_wavelength\" : 0.65,\n \"common_name\" : \"red\"\n }\n ]\n },\n \ \"B5\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 5 (nir)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/030/033/LC08_L1TP_030033_20180615_20180703_01_T1/LC08_L1TP_030033_20180615_20180703_01_T1_B5.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B5\",\n \"full_width_half_max\" : 0.03,\n \"center_wavelength\" : 0.86,\n \"common_name\" : \"nir\"\n }\n ]\n },\n \ \"B6\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 6 (swir16)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/030/033/LC08_L1TP_030033_20180615_20180703_01_T1/LC08_L1TP_030033_20180615_20180703_01_T1_B6.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B6\",\n \"full_width_half_max\" : 0.08,\n \"center_wavelength\" : 1.6,\n \"common_name\" : \"swir16\"\n }\n ]\n },\n \ \"B7\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 7 (swir22)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/030/033/LC08_L1TP_030033_20180615_20180703_01_T1/LC08_L1TP_030033_20180615_20180703_01_T1_B7.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B7\",\n \"full_width_half_max\" : 0.22,\n \"center_wavelength\" : 2.2,\n \"common_name\" : \"swir22\"\n }\n ]\n },\n \ \"B8\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 8 (pan)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/030/033/LC08_L1TP_030033_20180615_20180703_01_T1/LC08_L1TP_030033_20180615_20180703_01_T1_B8.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B8\",\n \"full_width_half_max\" : 0.18,\n \"center_wavelength\" : 0.59,\n \"common_name\" : \"pan\"\n }\n ]\n },\n \ \"B9\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 9 (cirrus)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/030/033/LC08_L1TP_030033_20180615_20180703_01_T1/LC08_L1TP_030033_20180615_20180703_01_T1_B9.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B9\",\n \"full_width_half_max\" : 0.02,\n \"center_wavelength\" : 1.37,\n \"common_name\" : \"cirrus\"\n }\n ]\n },\n \ \"B10\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 10 (lwir)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/030/033/LC08_L1TP_030033_20180615_20180703_01_T1/LC08_L1TP_030033_20180615_20180703_01_T1_B10.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B10\",\n \"full_width_half_max\" : 0.8,\n \"center_wavelength\" : 10.9,\n \"common_name\" : \"lwir11\"\n }\n ]\n },\n \ \"B11\": {\n \"type\": \"image/tiff\",\n \"title\": \"Band 11 (lwir)\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/030/033/LC08_L1TP_030033_20180615_20180703_01_T1/LC08_L1TP_030033_20180615_20180703_01_T1_B11.TIF\",\n \ \"roles\": [],\n \"eo:bands\": [\n {\n \"name\" : \"B11\",\n \"full_width_half_max\" : 1,\n \"center_wavelength\" : 12,\n \"common_name\" : \"lwir2\"\n }\n ]\n },\n \ \"ANG\": {\n \"title\": \"Angle coefficients file\",\n \"type\": \"text/plain\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/030/033/LC08_L1TP_030033_20180615_20180703_01_T1/LC08_L1TP_030033_20180615_20180703_01_T1_ANG.txt\",\n \ \"roles\": []\n },\n \"MTL\": {\n \"title\": \"original metadata file\",\n \"type\": \"text/plain\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/030/033/LC08_L1TP_030033_20180615_20180703_01_T1/LC08_L1TP_030033_20180615_20180703_01_T1_MTL.txt\",\n \ \"roles\": []\n },\n \"BQA\": {\n \"title\": \"Band quality data\",\n \"type\": \"image/tiff\",\n \"href\": \"https://s3-us-west-2.amazonaws.com/landsat-pds/c1/L8/030/033/LC08_L1TP_030033_20180615_20180703_01_T1/LC08_L1TP_030033_20180615_20180703_01_T1_BQA.TIF\",\n \ \"roles\": []\n }\n },\n \"links\": [\n {\n \"rel\": \"self\",\n \ \"href\": \"./LC80300332018166LGN00.json\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"../collection.json\"\n },\n {\n \"rel\": \"collection\",\n \"href\": \"../collection.json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"../../catalog.json\"\n }\n ]\n}\n" headers: Accept-Ranges: - bytes Access-Control-Allow-Origin: - '*' Cache-Control: - max-age=300 Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '1384' Content-Security-Policy: - default-src 'none'; style-src 'unsafe-inline'; sandbox Content-Type: - text/plain; charset=utf-8 Cross-Origin-Resource-Policy: - cross-origin Date: - Thu, 17 Jul 2025 12:50:36 GMT ETag: - W/"6da3b66dc885889ceff60c1a0618fcc959b22734a7a4d9646fe0f55f0869ca5f" Expires: - Thu, 17 Jul 2025 12:55:36 GMT Source-Age: - '0' Strict-Transport-Security: - max-age=31536000 Vary: - Authorization,Accept-Encoding Via: - 1.1 varnish X-Cache: - MISS X-Cache-Hits: - '0' X-Content-Type-Options: - nosniff X-Fastly-Request-ID: - 0b95ffb0e0a08f01cc16c8c5f2e07bdf769104ba X-Frame-Options: - deny X-GitHub-Request-Id: - CA95:10A89A:550C03:6CA67F:6878F194 X-Served-By: - cache-den-kden1300042-DEN X-Timer: - S1752756637.501698,VS0,VE106 X-XSS-Protection: - 1; mode=block status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_client/test_query_string_in_collections_url.yaml000066400000000000000000002157341503646565400324320ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://paituli.csc.fi/geoserver/ogc/stac/v1 response: body: string: '{"title":"Paituli STAC","description":"Paituli STAC with Finnish data. More info: https://paituli.csc.fi/stac.html","links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=application%2Fjson","rel":"self","type":"application/json","title":"This document"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=application%2Fyaml","rel":"alternate","type":"application/yaml","title":"This document as application/yaml"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=text%2Fhtml","rel":"alternate","type":"text/html","title":"This document as text/html"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/openapi?f=application%2Fvnd.oai.openapi%2Bjson%3Bversion%3D3.0","rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"API definition for this endpoint as application/vnd.oai.openapi+json;version=3.0"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/openapi?f=application%2Fyaml","rel":"service-desc","type":"application/yaml","title":"API definition for this endpoint as application/yaml"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/openapi?f=text%2Fhtml","rel":"service-doc","type":"text/html","title":"API definition for this endpoint as text/html"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=application%2Fjson","rel":"conformance","type":"application/json","title":"Conformance declaration as application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=application%2Fyaml","rel":"conformance","type":"application/yaml","title":"Conformance declaration as application/yaml"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=text%2Fhtml","rel":"conformance","type":"text/html","title":"Conformance declaration as text/html"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections?f=application%2Fjson","rel":"data","type":"application/json","title":"Collections Metadata as application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections?f=text%2Fhtml","rel":"data","type":"text/html","title":"Collections Metadata as text/html"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_global_radiation_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_koivukuitu_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_land_class_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_latvuspeitto_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_8_modif_area_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/regions_land_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_sea_level_pressure_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_koivu_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_latva_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_runkokuori_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_11_days_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_dtw_2m_10ha_threshold_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_1_mining_area_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_general_map_1milj_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_precipitation_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_kasvupaikka_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_6_footprint_perc_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_forest_snow_damage_risk_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_5_road_density_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/daily_wind_damage_risk_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_ika_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/regional_state_administrative_agencies_land_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_2_1_forest_loss_perc_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_nir_b08_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_volume_spruce_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_koivutukki_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_mantykuitu_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_42k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/wind_velocity_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_fra_luokka_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_muulpkuitu_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_13_livestock_mass_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_84k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_kuusitukki_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_erosion_susceptibility_of_agricultural_areas_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/landsat_annual_index_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sea_regions_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_juuret_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_satellite_image_mosaic_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_max_temperature_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/canopy_height_model_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_neulaset_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_3_1_light_mcdm2_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/2m_digital_terrain_model_products_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_dtw_2m_0_5ha_threshold_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_kanto_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_precipitation_1km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_kuolleetoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_mantytukki_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel2-l2a","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_snow_load_on_trees_100m_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_juuret_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/vegetation_height_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_false_color_orthoimage_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_wind_speed_10y_return_level_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_elavatoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_juuret_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_ppa_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_latva_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_stand_class_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/digital_surface_model_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_global_backscatter_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_25m_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_dtw_2m_4ha_threshold_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_12_crop_perc_iiasa_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_neulaset_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_annual_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_site_main_class_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_kanto_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/land_parcels_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_basic_map_background_colour_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_pitajakartta_20k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_5_4_clim_velocity_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_mean_temperature_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/digital_terrain_model_10m_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_lehtip_latvuspeitto_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_2_2_forest_trend_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_monthly_index_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/digital_terrain_model_2m_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_orthoimage_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_maaluokka_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_orthoimage_newest_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/peatland_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_carbon_stock_change_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_keskilapimitta_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_7_impact_area_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_basic_map_print_colour_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/regional_state_administrative_agencies_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_runkokuori_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_temperature_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_tilavuus_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_potential_erosion_of_agricultural_lands_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/municipalities_land_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_min_temperature_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_keskipituus_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_min_temperature_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_swir_b11_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_kuolleetoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_relative_humidity_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_dtw_2m_2ha_threshold_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_100k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_11_crop_perc_uni_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_25k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_kuusi_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_site_fertility_class_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_5_1_temp_trends_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_volume_pine_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_forest_wind_damage_sensitivity_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_5_2_temp_signif_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_volume_of_growing_stock_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_volume_birch_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_5_3_clim_extreme_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_21k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_5_5_aridity_trend_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/digital_terrain_model_2m_slope_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_50k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_volume_of_other_deciduous_tree_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_topographical_wetness_index_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_paatyyppi_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_20k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_precipitation_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/building_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_dtw_2m_1ha_threshold_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_muulptukki_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_mean_temperature_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_basic_map_contours_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/superficial_deposits_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_kuusikuitu_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_basal_area_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_avg_temperature_1km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_latva_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/country_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_erosion_susceptibility_of_land_areas_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_elavatoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_elavatoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/municipalities_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_mista_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_carbon_stock_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_400k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/canopy_cover_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nasa_usgs_latuviitta_landsat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/ndvi_max_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_250k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/regions_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_2_hazard_potential_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_kanto_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_10m_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_neulaset_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_mean_temperature_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/orthophoto_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_precipitation_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_kuolleetoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/digital_terrain_model_2m_aspect_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_3_human_density_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_precipitation_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_wind_speed_50y_return_level_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_false_color_orthoimage_newest_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_11_days_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_manty_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_500k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_10_fire_occur_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_snow_depth_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_taloudellinen_100k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_4_built_area_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/corine_land_cover_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_runkokuori_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_max_temperature_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_9_human_biomes_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_basic_map_without_contours_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_wind_damage_risk_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_muulp_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/country_land_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/search?f=application%2Fgeo%2Bjson","rel":"search","type":"application/geo+json","title":"Items as application/geo+json","method":"GET"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/search?f=text%2Fhtml","rel":"search","type":"text/html","title":"Items as text/html","method":"GET"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1?f=application%2Fjson","rel":"root","type":"application/json","title":"Root Catalog as application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/search?f=application%2Fgeo%2Bjson","rel":"search","type":"application/geo+json","title":"Items as application/geo+json","method":"POST"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/search?f=text%2Fhtml","rel":"search","type":"text/html","title":"Items as text/html","method":"POST"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/queryables?f=application%2Fschema%2Bjson","rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables as application/schema+json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/queryables?f=text%2Fhtml","rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"text/html","title":"Queryables as text/html"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/sortables?f=application%2Fschema%2Bjson","rel":"http://www.opengis.net/def/rel/ogc/1.0/sortables","type":"application/schema+json","title":"Sortables as application/schema+json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/sortables?f=text%2Fhtml","rel":"http://www.opengis.net/def/rel/ogc/1.0/sortables","type":"text/html","title":"Sortables as text/html"}],"id":"GeoserverSTACLandingPage","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/html","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/features-filter","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://geoserver.org/spec/ecql/1.0/req/gs-ecql","http://geoserver.org/spec/ecql/1.0/req/ecql-text","http://www.opengis.net/spec/cql2/1.0/req/basic-cql2","http://www.opengis.net/spec/cql2/1.0/req/advanced-comparison-operators","http://www.opengis.net/spec/cql2/1.0/req/arithmetic","http://www.opengis.net/spec/cql2/1.0/req/property-property","http://www.opengis.net/spec/cql2/1.0/req/basic-spatial-operators","http://www.opengis.net/spec/cql2/1.0/req/spatial-operators","http://www.opengis.net/spec/cql2/1.0/req/functions","http://www.opengis.net/spec/cql2/1.0/req/cql2-text"],"type":"Catalog","stac_version":"1.0.0"}' headers: API-Version: - 1.0.0 Access-Control-Allow-Headers: - Accept, Accept-Language, Cache-Control, Content-Type, DNT, If-Modified-Since, Origin,Range, User-Agent, X-Requested-With Access-Control-Allow-Methods: - GET Access-Control-Allow-Origin: - '*' Connection: - keep-alive Content-Encoding: - gzip Content-Security-Policy: - base-uri 'self'; form-action 'self' https://paituli.csc.fi; default-src 'none'; child-src 'self' https://paituli.csc.fi; connect-src 'self' https://paituli.csc.fi; font-src 'self' https://paituli.csc.fi; img-src 'self' https://paituli.csc.fi data:; style-src 'self' https://paituli.csc.fi 'unsafe-inline'; script-src 'self' https://paituli.csc.fi;, frame-ancestors 'self'; Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:39 GMT Link: - ; rel="self"; type="application/json"; title="This document" - ; rel="alternate"; type="application/yaml"; title="This document as application/yaml" - ; rel="alternate"; type="text/html"; title="This document as text/html" - ; rel="self"; type="application/json"; title="This document" - ; rel="alternate"; type="application/yaml"; title="This document as application/yaml" - ; rel="alternate"; type="text/html"; title="This document as text/html" Server: - nginx/1.24.0 Set-Cookie: - GS_FLOW_CONTROL=GS_CFLOW_5b5418d4:198161cb6c1:-71a5 Transfer-Encoding: - chunked X-Concurrent-Limit-ip: - '10' X-Concurrent-Limit-user: - '10' X-Concurrent-Requests-ip: - '1' X-Concurrent-Requests-user: - '1' X-Content-Type-Options: - nosniff X-Control-flow-delay-ms: - '0' X-Frame-Options: - SAMEORIGIN status: code: 200 message: '' - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Cookie: - GS_FLOW_CONTROL=GS_CFLOW_5b5418d4:198161cb6c1:-71a5 User-Agent: - python-requests/2.32.3 method: GET uri: https://paituli.csc.fi/geoserver/ogc/stac/v1?f=application%2Fjson response: body: string: '{"title":"Paituli STAC","description":"Paituli STAC with Finnish data. More info: https://paituli.csc.fi/stac.html","links":[{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=application%2Fjson","rel":"self","type":"application/json","title":"This document"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=application%2Fyaml","rel":"alternate","type":"application/yaml","title":"This document as application/yaml"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/?f=text%2Fhtml","rel":"alternate","type":"text/html","title":"This document as text/html"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/openapi?f=application%2Fvnd.oai.openapi%2Bjson%3Bversion%3D3.0","rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"API definition for this endpoint as application/vnd.oai.openapi+json;version=3.0"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/openapi?f=application%2Fyaml","rel":"service-desc","type":"application/yaml","title":"API definition for this endpoint as application/yaml"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/openapi?f=text%2Fhtml","rel":"service-doc","type":"text/html","title":"API definition for this endpoint as text/html"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=application%2Fjson","rel":"conformance","type":"application/json","title":"Conformance declaration as application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=application%2Fyaml","rel":"conformance","type":"application/yaml","title":"Conformance declaration as application/yaml"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/conformance?f=text%2Fhtml","rel":"conformance","type":"text/html","title":"Conformance declaration as text/html"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections?f=application%2Fjson","rel":"data","type":"application/json","title":"Collections Metadata as application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections?f=text%2Fhtml","rel":"data","type":"text/html","title":"Collections Metadata as text/html"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_global_radiation_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_koivukuitu_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_land_class_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_latvuspeitto_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_8_modif_area_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/regions_land_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_sea_level_pressure_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_koivu_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_latva_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_runkokuori_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_11_days_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_dtw_2m_10ha_threshold_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_1_mining_area_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_general_map_1milj_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_precipitation_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_kasvupaikka_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_6_footprint_perc_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_forest_snow_damage_risk_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_5_road_density_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/daily_wind_damage_risk_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_ika_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/regional_state_administrative_agencies_land_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_2_1_forest_loss_perc_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_nir_b08_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_volume_spruce_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_koivutukki_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_mantykuitu_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_42k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/wind_velocity_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_fra_luokka_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_muulpkuitu_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_13_livestock_mass_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_84k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_kuusitukki_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_2m_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_erosion_susceptibility_of_agricultural_areas_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/landsat_annual_index_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sea_regions_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_juuret_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_satellite_image_mosaic_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_max_temperature_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/canopy_height_model_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_neulaset_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_3_1_light_mcdm2_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/2m_digital_terrain_model_products_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_dtw_2m_0_5ha_threshold_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_kanto_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_precipitation_1km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_kuolleetoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_mantytukki_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel2-l2a","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_snow_load_on_trees_100m_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_juuret_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/vegetation_height_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_false_color_orthoimage_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_wind_speed_10y_return_level_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_elavatoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_juuret_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_ppa_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_latva_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_stand_class_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/digital_surface_model_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_global_backscatter_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_25m_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_dtw_2m_4ha_threshold_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_12_crop_perc_iiasa_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_neulaset_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_annual_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_site_main_class_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_kanto_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/land_parcels_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_basic_map_background_colour_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_pitajakartta_20k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_5_4_clim_velocity_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_mean_temperature_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/digital_terrain_model_10m_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_lehtip_latvuspeitto_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_2_2_forest_trend_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_monthly_index_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/digital_terrain_model_2m_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_orthoimage_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_maaluokka_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_orthoimage_newest_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/peatland_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_carbon_stock_change_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_keskilapimitta_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_7_impact_area_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_basic_map_print_colour_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/regional_state_administrative_agencies_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_runkokuori_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_temperature_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_daily_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_tilavuus_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_potential_erosion_of_agricultural_lands_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/municipalities_land_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_min_temperature_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_keskipituus_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_1_tiles_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_min_temperature_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_swir_b11_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_kuolleetoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_relative_humidity_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_dtw_2m_2ha_threshold_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_100k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_11_crop_perc_uni_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_25k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_kuusi_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_site_fertility_class_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_5_1_temp_trends_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_volume_pine_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_forest_wind_damage_sensitivity_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_5_2_temp_signif_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_volume_of_growing_stock_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_volume_birch_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_5_3_clim_extreme_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_21k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_5_5_aridity_trend_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/digital_terrain_model_2m_slope_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_50k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_volume_of_other_deciduous_tree_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_topographical_wetness_index_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_paatyyppi_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_20k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_precipitation_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/building_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_dtw_2m_1ha_threshold_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_muulptukki_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_mean_temperature_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_basic_map_contours_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/superficial_deposits_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_kuusikuitu_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_inventory_basal_area_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_avg_temperature_1km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_latva_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/country_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_erosion_susceptibility_of_land_areas_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_elavatoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_elavatoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/municipalities_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_mista_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_carbon_stock_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_400k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/canopy_cover_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nasa_usgs_latuviitta_landsat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/ndvi_max_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_250k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/regions_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_2_hazard_potential_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_lehtip_kanto_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_digital_elevation_model_10m_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_manty_neulaset_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_mean_temperature_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/orthophoto_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_precipitation_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_kuolleetoksat_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/digital_terrain_model_2m_aspect_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_3_human_density_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_monthly_precipitation_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_wind_speed_50y_return_level_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_false_color_orthoimage_newest_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel_2_11_days_mosaics_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_manty_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_topographic_map_500k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_10_fire_occur_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_snow_depth_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_taloudellinen_100k_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_4_built_area_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/corine_land_cover_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_bm_kuusi_runkokuori_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/fmi_daily_max_temperature_predictions_10km_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/hy_spectre_1_9_human_biomes_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/nls_basic_map_without_contours_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/forest_wind_damage_risk_at_fmi","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/luke_vmi_muulp_at_paituli","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/country_land_at_geocubes","rel":"child","type":"application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/search?f=application%2Fgeo%2Bjson","rel":"search","type":"application/geo+json","title":"Items as application/geo+json","method":"GET"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/search?f=text%2Fhtml","rel":"search","type":"text/html","title":"Items as text/html","method":"GET"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1?f=application%2Fjson","rel":"root","type":"application/json","title":"Root Catalog as application/json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/search?f=application%2Fgeo%2Bjson","rel":"search","type":"application/geo+json","title":"Items as application/geo+json","method":"POST"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/search?f=text%2Fhtml","rel":"search","type":"text/html","title":"Items as text/html","method":"POST"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/queryables?f=application%2Fschema%2Bjson","rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables as application/schema+json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/queryables?f=text%2Fhtml","rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"text/html","title":"Queryables as text/html"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/sortables?f=application%2Fschema%2Bjson","rel":"http://www.opengis.net/def/rel/ogc/1.0/sortables","type":"application/schema+json","title":"Sortables as application/schema+json"},{"href":"https://paituli.csc.fi/geoserver/ogc/stac/v1/sortables?f=text%2Fhtml","rel":"http://www.opengis.net/def/rel/ogc/1.0/sortables","type":"text/html","title":"Sortables as text/html"}],"id":"GeoserverSTACLandingPage","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/html","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/core","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/features-filter","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://geoserver.org/spec/ecql/1.0/req/gs-ecql","http://geoserver.org/spec/ecql/1.0/req/ecql-text","http://www.opengis.net/spec/cql2/1.0/req/basic-cql2","http://www.opengis.net/spec/cql2/1.0/req/advanced-comparison-operators","http://www.opengis.net/spec/cql2/1.0/req/arithmetic","http://www.opengis.net/spec/cql2/1.0/req/property-property","http://www.opengis.net/spec/cql2/1.0/req/basic-spatial-operators","http://www.opengis.net/spec/cql2/1.0/req/spatial-operators","http://www.opengis.net/spec/cql2/1.0/req/functions","http://www.opengis.net/spec/cql2/1.0/req/cql2-text"],"type":"Catalog","stac_version":"1.0.0"}' headers: API-Version: - 1.0.0 Access-Control-Allow-Headers: - Accept, Accept-Language, Cache-Control, Content-Type, DNT, If-Modified-Since, Origin,Range, User-Agent, X-Requested-With Access-Control-Allow-Methods: - GET Access-Control-Allow-Origin: - '*' Connection: - keep-alive Content-Encoding: - gzip Content-Security-Policy: - base-uri 'self'; form-action 'self' https://paituli.csc.fi; default-src 'none'; child-src 'self' https://paituli.csc.fi; connect-src 'self' https://paituli.csc.fi; font-src 'self' https://paituli.csc.fi; img-src 'self' https://paituli.csc.fi data:; style-src 'self' https://paituli.csc.fi 'unsafe-inline'; script-src 'self' https://paituli.csc.fi;, frame-ancestors 'self'; Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:40 GMT Link: - ; rel="self"; type="application/json"; title="This document" - ; rel="alternate"; type="application/yaml"; title="This document as application/yaml" - ; rel="alternate"; type="text/html"; title="This document as text/html" - ; rel="self"; type="application/json"; title="This document" - ; rel="alternate"; type="application/yaml"; title="This document as application/yaml" - ; rel="alternate"; type="text/html"; title="This document as text/html" Server: - nginx/1.24.0 Set-Cookie: - GS_FLOW_CONTROL=GS_CFLOW_5b5418d4:198161cb6c1:-71a5 Transfer-Encoding: - chunked X-Concurrent-Limit-ip: - '10' X-Concurrent-Limit-user: - '10' X-Concurrent-Requests-ip: - '1' X-Concurrent-Requests-user: - '1' X-Content-Type-Options: - nosniff X-Control-flow-delay-ms: - '0' X-Frame-Options: - SAMEORIGIN status: code: 200 message: '' - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Cookie: - GS_FLOW_CONTROL=GS_CFLOW_5b5418d4:198161cb6c1:-71a5 User-Agent: - python-requests/2.32.3 method: GET uri: https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel2-l2a?f=application%2Fjson response: body: string: "{\"id\":\"sentinel2-l2a\",\"title\":\"Sentinel-2 L2A\",\"description\":\"Sentinel-2 products, processed to Level-2A (Surface Reflectance), a selection of mostly cloud-free products from Finland. More information: https://a3s.fi/sentinel-readme/README.txt\",\"crs\":[\"http://www.opengis.net/def/crs/OGC/1.3/CRS84\"],\"stac_version\":\"1.0.0\",\"license\":\"CC-BY-3.0-IGO\",\"type\":\"Collection\",\"extent\":{\"spatial\":{\"bbox\":[[17.370638358957653,59.39819844805931,33.248667706050284,70.30601749247492]]},\"temporal\":{\"interval\":[[\"2015-07-04T00:00:00.000+00:00\",\"2025-07-11T00:00:00.000+00:00\"]]}},\"providers\":[{\"name\":\"CSC Finland\",\"roles\":[\"host\"],\"url\":\"https://www.csc.fi/\"},{\"name\":\"ESA\",\"roles\":[\"producer\",\"licensor\"],\"url\":\"https://www.esa.int/\"},{\"name\":\"Maria Yli-Heikkil\xE4\",\"roles\":[\"processor\"]},{\"name\":\"Arttu Kivim\xE4ki\",\"roles\":[\"processor\"]},{\"name\":\"Matias Heino\",\"roles\":[\"processor\"]}],\"assets\":{\"metadata\":{\"href\":\"https://a3s.fi/sentinel-readme/README.txt\",\"roles\":[\"metadata\"]}},\"summaries\":{\"eo:bands\":[{\"name\":\"B01\",\"description\":\"Coastal: 400 - 450 nm\",\"common_name\":\"coastal\"},{\"name\":\"B02\",\"description\":\"Blue: 450 - 500 nm\",\"common_name\":\"blue\"},{\"name\":\"B03\",\"description\":\"Green: 500 - 600 nm\",\"common_name\":\"green\"},{\"name\":\"B04\",\"description\":\"Red: 600 - 700 nm\",\"common_name\":\"red\"},{\"name\":\"B05\",\"description\":\"Vegetation Red Edge: 705 nm\",\"common_name\":\"rededge\"},{\"name\":\"B06\",\"description\":\"Vegetation Red Edge: 740 nm\",\"common_name\":\"rededge\"},{\"name\":\"B07\",\"description\":\"Vegetation Red Edge: 783 nm\",\"common_name\":\"rededge\"},{\"name\":\"B08\",\"description\":\"Near-IR: 750 - 1000 nm\",\"common_name\":\"nir\"},{\"name\":\"B8A\",\"description\":\"Near-IR: 750 - 900 nm\",\"common_name\":\"nir08\"},{\"name\":\"B09\",\"description\":\"Water vapour: 850 - 1050 nm\",\"common_name\":\"nir09\"},{\"name\":\"B10\",\"description\":\"SWIR-Cirrus: 1350 - 1400 nm\",\"common_name\":\"cirrus\"},{\"name\":\"B11\",\"description\":\"SWIR16: 1550 - 1750 nm\",\"common_name\":\"swir16\"},{\"name\":\"B12\",\"description\":\"SWIR22: 2100 - 2300 nm\",\"common_name\":\"swir22\"}],\"gsd\":[10,20,60]},\"links\":[{\"href\":\"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel2-l2a\",\"rel\":\"self\",\"type\":\"application/json\"},{\"href\":\"https://paituli.csc.fi/geoserver/ogc/stac/v1\",\"rel\":\"root\",\"type\":\"application/json\"},{\"href\":\"https://paituli.csc.fi/geoserver/ogc/stac/v1\",\"rel\":\"parent\",\"type\":\"application/json\"},{\"href\":\"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel2-l2a/items\",\"rel\":\"items\",\"type\":\"application/geo+json\"},{\"href\":\"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel2-l2a/queryables\",\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\"},{\"href\":\"https://paituli.csc.fi/geoserver/ogc/stac/v1/collections/sentinel2-l2a/sortables\",\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/sortables\",\"type\":\"application/schema+json\"},{\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"rel\":\"license\",\"type\":\"application/json\"}]}" headers: API-Version: - 1.0.0 Access-Control-Allow-Headers: - Accept, Accept-Language, Cache-Control, Content-Type, DNT, If-Modified-Since, Origin,Range, User-Agent, X-Requested-With Access-Control-Allow-Methods: - GET Access-Control-Allow-Origin: - '*' Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '1024' Content-Security-Policy: - base-uri 'self'; form-action 'self' https://paituli.csc.fi; default-src 'none'; child-src 'self' https://paituli.csc.fi; connect-src 'self' https://paituli.csc.fi; font-src 'self' https://paituli.csc.fi; img-src 'self' https://paituli.csc.fi data:; style-src 'self' https://paituli.csc.fi 'unsafe-inline'; script-src 'self' https://paituli.csc.fi;, frame-ancestors 'self'; Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:41 GMT Server: - nginx/1.24.0 Set-Cookie: - GS_FLOW_CONTROL=GS_CFLOW_5b5418d4:198161cb6c1:-71a5 X-Concurrent-Limit-ip: - '10' X-Concurrent-Limit-user: - '10' X-Concurrent-Requests-ip: - '1' X-Concurrent-Requests-user: - '1' X-Content-Type-Options: - nosniff X-Control-flow-delay-ms: - '0' X-Frame-Options: - SAMEORIGIN status: code: 200 message: '' version: 1 pystac-client-0.9.0/tests/cassettes/test_collection_client/000077500000000000000000000000001503646565400242055ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_collection_client/TestCollectionClient.test_get_item.yaml000066400000000000000000002512531503646565400340260ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/item-search"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3360' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:48 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125048Z-167d46d96d8rlb5rhC1DENq6gn0000000s3g000000005dfk status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/item-search"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3360' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:49 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125048Z-167d46d96d8mdxvvhC1DENbv1s00000003xg000000001t4f status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t response: body: string: '{"id":"aster-l1t","type":"Collection","links":[{"rel":"items","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"license","href":"https://www.usgs.gov/core-science-systems/hdds/data-policy","title":"Public Domain"},{"rel":"describedby","href":"https://planetarycomputer.microsoft.com/dataset/aster-l1t","type":"text/html","title":"Human readable dataset overview and reference"},{"rel":"describedby","href":"https://planetarycomputer.microsoft.com/dataset/aster-l1t","title":"Human readable dataset overview and reference","type":"text/html"}],"title":"ASTER L1T","assets":{"thumbnail":{"href":"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/aster.png","type":"image/png","roles":["thumbnail"],"title":"ASTER L1T"},"geoparquet-items":{"href":"abfs://items/aster-l1t.parquet","type":"application/x-parquet","roles":["stac-items"],"title":"GeoParquet STAC items","description":"Snapshot of the collection''s STAC items exported to GeoParquet format.","msft:partition_info":{"is_partitioned":true,"partition_frequency":"AS"},"table:storage_options":{"account_name":"pcstacitems"}}},"extent":{"spatial":{"bbox":[[-180,-90,180,90]]},"temporal":{"interval":[["2000-03-04T12:00:00Z","2006-12-31T12:00:00Z"]]}},"license":"proprietary","keywords":["ASTER","USGS","NASA","Satellite","Global"],"providers":[{"url":"https://terra.nasa.gov/about/terra-instruments/aster","name":"NASA","roles":["producer","licensor"]},{"url":"https://lpdaac.usgs.gov/data/get-started-data/collection-overview/missions/aster-overview/","name":"USGS","roles":["processor","producer","licensor"]},{"url":"https://planetarycomputer.microsoft.com","name":"Microsoft","roles":["host","processor"]}],"summaries":{"gsd":[15,30,90],"eo:bands":[{"gsd":15,"name":"VNIR_Band1","common_name":"green","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"gsd":15,"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"gsd":15,"name":"VNIR_Band3N","common_name":"nir08","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08},{"gsd":30,"name":"SWIR_Band4","common_name":"swir16","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"gsd":30,"name":"SWIR_Band5","common_name":"swir22","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band6","common_name":"swir22","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band7","common_name":"swir22","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"gsd":30,"name":"SWIR_Band8","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"gsd":30,"name":"SWIR_Band9","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07},{"gsd":90,"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"gsd":90,"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"platform":["terra"],"instruments":["aster"]},"description":"The [ASTER](https://terra.nasa.gov/about/terra-instruments/aster) instrument, launched on-board NASA''s [Terra](https://terra.nasa.gov/) satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. ASTER images provide information about land surface temperature, color, elevation, and mineral composition.\n\nThis dataset represents ASTER [L1T](https://lpdaac.usgs.gov/products/ast_l1tv003/) data from 2000-2006. L1T images have been terrain-corrected and rotated to a north-up UTM projection. Images are in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\n","item_assets":{"TIR":{"roles":["data"],"title":"TIR Swath data","eo:bands":[{"gsd":90,"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"gsd":90,"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","eo:bands":[{"gsd":30,"name":"SWIR_Band4","common_name":"swir","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"gsd":30,"name":"SWIR_Band5","common_name":"swir","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band6","common_name":"swir","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band7","common_name":"swir","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"gsd":30,"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"gsd":30,"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","eo:bands":[{"gsd":15,"name":"VNIR_Band1","common_name":"yellow/green","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"gsd":15,"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"gsd":15,"name":"VNIR_Band3N","common_name":"near infrared","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"qa-txt":{"type":"text/plain","roles":["metadata"],"title":"QA browse file","description":"Geometric quality assessment report."},"qa-browse":{"type":"image/jpeg","roles":["thumbnail"],"title":"QA browse file","description":"Single-band black and white reduced resolution browse overlaid with red, green, and blue (RGB) markers for GCPs used during the geometric verification quality check."},"tir-browse":{"type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"}},"stac_version":"1.0.0","msft:container":"aster","stac_extensions":["https://stac-extensions.github.io/item-assets/v1.0.0/schema.json","https://stac-extensions.github.io/table/v1.2.0/schema.json"],"msft:storage_account":"astersa","msft:short_description":"The ASTER instrument, launched on-board NASA''s Terra satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. This dataset contains ASTER data from 2000-2006.","msft:region":"westeurope"}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2034' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:49 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125049Z-167d46d96d8bvmllhC1DENt02w0000000rz00000000040k5 status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006020322_20150518201805 response: body: string: '{"id":"AST_L1T_00312272006020322_20150518201805","bbox":[98.5127846,-72.6857366,101.0889206,-71.9245548],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006020322_20150518201805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006020322_20150518201805","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[479159.99999999313,-8068679.999054978,575010.0000364248,-7977509.999048144],"proj:shape":[1014,1066],"proj:transform":[89.91557226682148,0.0,479159.99999999313,0.0,-89.91124261028999,-7977509.999048144,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[479159.99999999313,-8068679.999054978,575010.0000364248,-7977509.999048144],"proj:shape":[3040,3196],"proj:transform":[29.990613277982387,0.0,479159.99999999313,0.0,-29.99013158119541,-7977509.999048144,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[479159.99999999313,-8068679.999054978,575010.0000364248,-7977509.999048144],"proj:shape":[6079,6391],"proj:transform":[14.99765295516065,0.0,479159.99999999313,0.0,-14.997532490020406,-7977509.999048144,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006020322_20150518201805&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006020322_20150518201805&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[99.4688048,-71.9317123],[100.26909013382132,-72.06292754128351],[101.01155411667678,-72.18002518606886],[101.02462934566167,-72.18208319828851],[101.0255115,-72.1821809],[101.02561269773116,-72.18223797573658],[101.0485969157694,-72.1858556409902],[101.0496391,-72.1859631],[101.04977848322952,-72.18604161710383],[101.07552427221498,-72.19009394753702],[101.0791318,-72.1904922],[101.08045471515234,-72.19086998838686],[101.0889206,-72.1922025],[100.6948508,-72.4181531],[100.4452794,-72.5580831],[100.2135876,-72.6857366],[100.18857636208548,-72.68191253382402],[100.1874713,-72.6825262],[100.04421765107804,-72.65984096480142],[99.9604827,-72.6470384],[99.4215044,-72.561242],[99.41958374889319,-72.56092573932061],[99.356,-72.5508568],[98.5159305,-72.4122347],[98.51895554626601,-72.41063665367456],[98.5127846,-72.4096541],[98.5128278,-72.4080421],[98.5154932,-72.4080486],[98.5155361,-72.4064365],[98.5208876,-72.4056434],[98.52093,-72.4040314],[98.5263015,-72.4024322],[98.5263435,-72.4008201],[98.5316928,-72.4000267],[98.5317343,-72.3984147],[98.5343982,-72.398421],[98.5344395,-72.3968089],[98.5371032,-72.3968151],[98.5371442,-72.3952031],[98.5424914,-72.3944094],[98.5425319,-72.3927974],[98.5478982,-72.3911975],[98.5479383,-72.3895855],[98.5532833,-72.3887915],[98.5533229,-72.3871795],[98.5559852,-72.3871855],[98.5560245,-72.3855734],[98.5586866,-72.3855794],[98.5587256,-72.3839673],[98.5640686,-72.3831731],[98.5641072,-72.381561],[98.5694682,-72.3799606],[98.5695064,-72.3783485],[98.5748472,-72.377554],[98.5748848,-72.3759419],[98.5802433,-72.3743412],[98.5802804,-72.3727292],[98.5856191,-72.3719343],[98.5856558,-72.3703223],[98.5883156,-72.3703278],[98.5883521,-72.3687157],[98.5910117,-72.3687212],[98.5910478,-72.3671092],[98.5963844,-72.3663141],[98.5964201,-72.364702],[98.5990792,-72.3647074],[98.5991146,-72.3630953],[98.6017734,-72.3631007],[98.6018086,-72.3614886],[98.6044672,-72.361494],[98.6045021,-72.3598819],[98.609836,-72.3590864],[98.6098705,-72.3574744],[98.6125285,-72.3574796],[98.6125628,-72.3558675],[98.6152205,-72.3558727],[98.6152545,-72.3542606],[98.6205863,-72.3534648],[98.6206198,-72.3518528],[98.6259672,-72.3502508],[98.6260002,-72.3486387],[98.6313299,-72.3478427],[98.6313625,-72.3462306],[98.6367072,-72.3446283],[98.6367393,-72.3430163],[98.6420669,-72.3422199],[98.6420985,-72.3406078],[98.6474407,-72.3390053],[98.6474718,-72.3373932],[98.6527973,-72.3365966],[98.6528279,-72.3349845],[98.6581675,-72.3333817],[98.6581977,-72.3317696],[98.663521,-72.3309727],[98.6635507,-72.3293606],[98.6688878,-72.3277575],[98.668917,-72.3261454],[98.6742382,-72.3253482],[98.6742669,-72.3237361],[98.67692,-72.3237404],[98.6769485,-72.3221283],[98.6796014,-72.3221327],[98.6796296,-72.3205206],[98.6849488,-72.3197231],[98.6849766,-72.318111],[98.6903084,-72.3165073],[98.6903357,-72.3148952],[98.6956527,-72.3140974],[98.6956796,-72.3124853],[98.7010088,-72.3108813],[98.7010352,-72.3092692],[98.7063501,-72.3084711],[98.706376,-72.306859],[98.7117027,-72.3052548],[98.7117281,-72.3036427],[98.7170409,-72.3028443],[98.7170659,-72.3012322],[98.72239,-72.2996276],[98.7224144,-72.2980155],[98.7277251,-72.2972169],[98.7277491,-72.2956048],[98.7303981,-72.2956084],[98.7304219,-72.2939963],[98.7330707,-72.2939999],[98.7330942,-72.2923878],[98.7384028,-72.2915889],[98.7384258,-72.2899768],[98.7437448,-72.2883716],[98.7437674,-72.2867595],[98.7490739,-72.2859603],[98.749096,-72.2843482],[98.7517434,-72.2843515],[98.7517652,-72.2827394],[98.7544124,-72.2827427],[98.754434,-72.2811306],[98.7597384,-72.2803311],[98.7597595,-72.278719],[98.7650734,-72.2771133],[98.765094,-72.2755012],[98.7703964,-72.2747014],[98.7704166,-72.2730893],[98.7730623,-72.2730923],[98.7730823,-72.2714802],[98.7757278,-72.2714833],[98.7757476,-72.2698712],[98.7810478,-72.269071],[98.7810671,-72.2674589],[98.7863758,-72.2658526],[98.7863945,-72.2642405],[98.789039,-72.2642434],[98.7890576,-72.2626313],[98.7943551,-72.2618308],[98.7943732,-72.2602187],[98.7996786,-72.258612],[98.7996963,-72.2569999],[98.8049917,-72.2561992],[98.8050089,-72.2545871],[98.8103117,-72.2529801],[98.8103284,-72.251368],[98.8156218,-72.250567],[98.815638,-72.2489549],[98.8182803,-72.2489573],[98.8182962,-72.2473452],[98.8209383,-72.2473476],[98.820954,-72.2457355],[98.8262453,-72.2449342],[98.8262606,-72.2433221],[98.8315583,-72.2417146],[98.8315731,-72.2401025],[98.8368623,-72.2393009],[98.8368767,-72.2376887],[98.8421719,-72.2360809],[98.8421857,-72.2344688],[98.8474729,-72.2336669],[98.8474862,-72.2320548],[98.8527789,-72.2304467],[98.8527918,-72.2288346],[98.8580768,-72.2280324],[98.8580893,-72.2264203],[98.8633794,-72.2248119],[98.8633914,-72.2231998],[98.8686743,-72.2223973],[98.8686859,-72.2207852],[98.8739734,-72.2191766],[98.8739845,-72.2175644],[98.8792653,-72.2167617],[98.8792759,-72.2151496],[98.8845609,-72.2135406],[98.8845711,-72.2119285],[98.8898499,-72.2111255],[98.8898595,-72.2095134],[98.895142,-72.2079041],[98.8951512,-72.206292],[98.9004279,-72.2054887],[98.9004366,-72.2038766],[98.9057165,-72.202267],[98.9057248,-72.2006549],[98.9109994,-72.1998513],[98.9110072,-72.1982392],[98.9136422,-72.1982404],[98.9136498,-72.1966282],[98.9162846,-72.1966294],[98.9162919,-72.1950173],[98.9215645,-72.1942134],[98.9215714,-72.1926012],[98.9268462,-72.1909912],[98.9268526,-72.189379],[98.9321231,-72.1885749],[98.932129,-72.1869627],[98.9374013,-72.1853524],[98.9374068,-72.1837402],[98.9426752,-72.1829358],[98.9426802,-72.1813236],[98.94795,-72.179713],[98.9479546,-72.1781009],[98.9532209,-72.1772961],[98.953225,-72.175684],[98.9584922,-72.1740731],[98.9584959,-72.1724609],[98.9637601,-72.1716559],[98.9637633,-72.1700438],[98.9663943,-72.1700442],[98.9663972,-72.1684321],[98.969028,-72.1684325],[98.9690307,-72.1668204],[98.9742929,-72.1660151],[98.9742952,-72.164403],[98.9795573,-72.1627915],[98.9795591,-72.1611793],[98.9848193,-72.1603738],[98.9848206,-72.1587616],[98.9900802,-72.1571498],[98.9900811,-72.1555377],[98.9953392,-72.1547318],[98.9953396,-72.1531197],[98.9979682,-72.1531198],[98.9979683,-72.1515076],[99.0005967,-72.1515076],[99.0005966,-72.1498955],[99.0058526,-72.1490893],[99.0058521,-72.1474772],[99.0111067,-72.1458649],[99.0111058,-72.1442527],[99.0163597,-72.1434463],[99.0163583,-72.1418342],[99.0216103,-72.1402215],[99.0216085,-72.1386094],[99.0268603,-72.1378027],[99.026858,-72.1361905],[99.0321075,-72.1345776],[99.0321047,-72.1329655],[99.0373545,-72.1321585],[99.0373513,-72.1305464],[99.0425983,-72.1289331],[99.0425946,-72.127321],[99.0478424,-72.1265137],[99.0478382,-72.1249016],[99.0530827,-72.1232881],[99.0530781,-72.121676],[99.0583238,-72.1208684],[99.0583187,-72.1192563],[99.0609425,-72.1192555],[99.0609371,-72.1176433],[99.0635607,-72.1176425],[99.0635552,-72.1160304],[99.0687988,-72.1152225],[99.0687928,-72.1136104],[99.0714158,-72.1136095],[99.0714095,-72.1119973],[99.0740323,-72.1119964],[99.0740258,-72.1103842],[99.0792674,-72.1095761],[99.0792605,-72.107964],[99.0818827,-72.1079629],[99.0818755,-72.1063507],[99.0844975,-72.1063496],[99.0844901,-72.1047375],[99.0897296,-72.1039291],[99.0897218,-72.102317],[99.0949563,-72.1007023],[99.094948,-72.0990902],[99.1001855,-72.0982815],[99.1001768,-72.0966694],[99.1054087,-72.0950545],[99.1053996,-72.0934424],[99.110635,-72.0926334],[99.1106254,-72.0910213],[99.1132451,-72.0910198],[99.1132353,-72.0894076],[99.1158548,-72.0894061],[99.1158447,-72.087794],[99.1210781,-72.0869847],[99.1210676,-72.0853726],[99.1262945,-72.0837571],[99.1262835,-72.082145],[99.1315148,-72.0813355],[99.1315034,-72.0797233],[99.1367279,-72.0781076],[99.136716,-72.0764955],[99.1419452,-72.0756857],[99.1419329,-72.0740735],[99.1471549,-72.0724575],[99.1471421,-72.0708454],[99.1523693,-72.0700353],[99.152356,-72.0684232],[99.1575755,-72.0668069],[99.1575618,-72.0651947],[99.162787,-72.0643844],[99.1627728,-72.0627722],[99.1679898,-72.0611557],[99.1679752,-72.0595435],[99.1731983,-72.0587329],[99.1731833,-72.0571208],[99.1757983,-72.0571184],[99.175783,-72.0555063],[99.1783977,-72.0555039],[99.1783823,-72.0538918],[99.1836033,-72.0530809],[99.1835874,-72.0514687],[99.1887994,-72.0498516],[99.188783,-72.0482395],[99.194002,-72.0474283],[99.1939852,-72.0458161],[99.1991947,-72.0441987],[99.1991774,-72.0425866],[99.2043944,-72.0417751],[99.2043766,-72.040163],[99.2095836,-72.0385453],[99.2095654,-72.0369332],[99.2147804,-72.0361214],[99.2147618,-72.0345093],[99.2173736,-72.0345064],[99.2173547,-72.0328942],[99.2199663,-72.0328913],[99.2199472,-72.0312792],[99.2251601,-72.0304671],[99.2251406,-72.028855],[99.2277516,-72.028852],[99.2277319,-72.0272398],[99.2303426,-72.0272368],[99.2303227,-72.0256246],[99.2355335,-72.0248123],[99.2355131,-72.0232002],[99.2381233,-72.023197],[99.2381027,-72.0215849],[99.2407127,-72.0215817],[99.2406918,-72.0199695],[99.2459006,-72.019157],[99.2458793,-72.0175448],[99.2510764,-72.015926],[99.2510546,-72.0143139],[99.2562614,-72.013501],[99.2562393,-72.0118889],[99.2588479,-72.0118855],[99.2588254,-72.0102733],[99.2614338,-72.0102698],[99.2614112,-72.0086577],[99.266616,-72.0078446],[99.2665929,-72.0062324],[99.271785,-72.0046131],[99.2717615,-72.0030009],[99.2769642,-72.0021875],[99.2769402,-72.0005754],[99.2795472,-72.0005717],[99.279523,-71.9989595],[99.2821298,-71.9989558],[99.2821054,-71.9973436],[99.2873061,-71.99653],[99.2872813,-71.9949178],[99.2924684,-71.9932979],[99.2924431,-71.9916858],[99.2976418,-71.9908718],[99.2976161,-71.9892597],[99.3028007,-71.9876395],[99.3027746,-71.9860274],[99.3079712,-71.9852131],[99.3079446,-71.983601],[99.3105492,-71.9835969],[99.3105224,-71.9819847],[99.3131268,-71.9819806],[99.3130997,-71.9803684],[99.3182943,-71.9795539],[99.3182668,-71.9779418],[99.3208707,-71.9779375],[99.3208429,-71.9763254],[99.3234466,-71.9763211],[99.3234186,-71.9747089],[99.3286112,-71.9738941],[99.3285828,-71.972282],[99.3337601,-71.970661],[99.3337312,-71.9690489],[99.3389218,-71.9682338],[99.3388925,-71.9666217],[99.3440673,-71.9650004],[99.3440376,-71.9633883],[99.3492262,-71.9625729],[99.349196,-71.9609608],[99.3543684,-71.9593393],[99.3543378,-71.9577271],[99.3595243,-71.9569115],[99.3594933,-71.9552994],[99.3620939,-71.9552945],[99.3620627,-71.9536824],[99.3646631,-71.9536776],[99.3646317,-71.9520654],[99.3698162,-71.9512495],[99.3697843,-71.9496374],[99.3723841,-71.9496324],[99.372352,-71.9480203],[99.3749517,-71.9480153],[99.3749193,-71.9464032],[99.3801018,-71.945587],[99.380069,-71.9439749],[99.385234,-71.9423525],[99.3852008,-71.9407404],[99.3903812,-71.9399239],[99.3903476,-71.9383118],[99.3955101,-71.9366892],[99.395476,-71.9350771],[99.4006544,-71.9342603],[99.4006199,-71.9326482],[99.4032174,-71.9326428],[99.4031827,-71.9310307],[99.4057799,-71.9310253],[99.405745,-71.9294132],[99.4109214,-71.9285962],[99.410886,-71.9269841],[99.4134827,-71.9269785],[99.4134471,-71.9253664],[99.4160257,-71.9245548],[99.42329240469921,-71.92568924843837],[99.4246269,-71.9249621],[99.45795183479106,-71.93041833653511],[99.4688048,-71.9317123]]]},"collection":"aster-l1t","properties":{"created":"2015-05-18T20:21:47.235000Z","datetime":"2006-12-27T02:03:22.718000Z","platform":"terra","proj:epsg":32647,"instruments":["aster"],"eo:cloud_cover":0.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":57.318059,"view:sun_elevation":34.202038,"aster:processing_number":"110656","aster:lower_left_quad_cloud_cover":0.0,"aster:upper_left_quad_cloud_cover":0.0,"aster:lower_right_quad_cloud_cover":0.0,"aster:upper_right_quad_cloud_cover":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '5640' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:50:50 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125049Z-167d46d96d8dtcxmhC1DEN584s0000000ry0000000003hha status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/for-sure-not-a-real-id response: body: string: '{"code":"NotFoundError","description":"Item for-sure-not-a-real-id in Collection aster-l1t does not exist."}' headers: Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '108' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:51 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125050Z-167d46d96d84sncshC1DENcfm00000000sf0000000003a4v status: code: 404 message: Not Found version: 1 TestCollectionClient.test_get_item_with_item_search.yaml000066400000000000000000006417461503646565400373570ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_collection_clientinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3363' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:51 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125051Z-167d46d96d82lsqphC1DENh89s0000000s20000000001nk3 status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3363' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:52 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125051Z-167d46d96d8h7x2fhC1DENd7yn0000000smg000000004qmp status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t response: body: string: '{"id":"aster-l1t","type":"Collection","links":[{"rel":"items","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"license","href":"https://www.usgs.gov/core-science-systems/hdds/data-policy","title":"Public Domain"},{"rel":"describedby","href":"https://planetarycomputer.microsoft.com/dataset/aster-l1t","type":"text/html","title":"Human readable dataset overview and reference"},{"rel":"describedby","href":"https://planetarycomputer.microsoft.com/dataset/aster-l1t","title":"Human readable dataset overview and reference","type":"text/html"}],"title":"ASTER L1T","assets":{"thumbnail":{"href":"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/aster.png","type":"image/png","roles":["thumbnail"],"title":"ASTER L1T"},"geoparquet-items":{"href":"abfs://items/aster-l1t.parquet","type":"application/x-parquet","roles":["stac-items"],"title":"GeoParquet STAC items","description":"Snapshot of the collection''s STAC items exported to GeoParquet format.","msft:partition_info":{"is_partitioned":true,"partition_frequency":"AS"},"table:storage_options":{"account_name":"pcstacitems"}}},"extent":{"spatial":{"bbox":[[-180,-90,180,90]]},"temporal":{"interval":[["2000-03-04T12:00:00Z","2006-12-31T12:00:00Z"]]}},"license":"proprietary","keywords":["ASTER","USGS","NASA","Satellite","Global"],"providers":[{"url":"https://terra.nasa.gov/about/terra-instruments/aster","name":"NASA","roles":["producer","licensor"]},{"url":"https://lpdaac.usgs.gov/data/get-started-data/collection-overview/missions/aster-overview/","name":"USGS","roles":["processor","producer","licensor"]},{"url":"https://planetarycomputer.microsoft.com","name":"Microsoft","roles":["host","processor"]}],"summaries":{"gsd":[15,30,90],"eo:bands":[{"gsd":15,"name":"VNIR_Band1","common_name":"green","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"gsd":15,"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"gsd":15,"name":"VNIR_Band3N","common_name":"nir08","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08},{"gsd":30,"name":"SWIR_Band4","common_name":"swir16","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"gsd":30,"name":"SWIR_Band5","common_name":"swir22","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band6","common_name":"swir22","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band7","common_name":"swir22","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"gsd":30,"name":"SWIR_Band8","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"gsd":30,"name":"SWIR_Band9","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07},{"gsd":90,"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"gsd":90,"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"platform":["terra"],"instruments":["aster"]},"description":"The [ASTER](https://terra.nasa.gov/about/terra-instruments/aster) instrument, launched on-board NASA''s [Terra](https://terra.nasa.gov/) satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. ASTER images provide information about land surface temperature, color, elevation, and mineral composition.\n\nThis dataset represents ASTER [L1T](https://lpdaac.usgs.gov/products/ast_l1tv003/) data from 2000-2006. L1T images have been terrain-corrected and rotated to a north-up UTM projection. Images are in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\n","item_assets":{"TIR":{"roles":["data"],"title":"TIR Swath data","eo:bands":[{"gsd":90,"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"gsd":90,"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","eo:bands":[{"gsd":30,"name":"SWIR_Band4","common_name":"swir","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"gsd":30,"name":"SWIR_Band5","common_name":"swir","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band6","common_name":"swir","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band7","common_name":"swir","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"gsd":30,"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"gsd":30,"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","eo:bands":[{"gsd":15,"name":"VNIR_Band1","common_name":"yellow/green","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"gsd":15,"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"gsd":15,"name":"VNIR_Band3N","common_name":"near infrared","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"qa-txt":{"type":"text/plain","roles":["metadata"],"title":"QA browse file","description":"Geometric quality assessment report."},"qa-browse":{"type":"image/jpeg","roles":["thumbnail"],"title":"QA browse file","description":"Single-band black and white reduced resolution browse overlaid with red, green, and blue (RGB) markers for GCPs used during the geometric verification quality check."},"tir-browse":{"type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"}},"stac_version":"1.0.0","msft:container":"aster","stac_extensions":["https://stac-extensions.github.io/item-assets/v1.0.0/schema.json","https://stac-extensions.github.io/table/v1.2.0/schema.json"],"msft:storage_account":"astersa","msft:short_description":"The ASTER instrument, launched on-board NASA''s Terra satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. This dataset contains ASTER data from 2000-2006.","msft:region":"westeurope"}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2034' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:52 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125052Z-167d46d96d85clfkhC1DEN7rkg0000000st000000000114m status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/search?ids=AST_L1T_00312272006020322_20150518201805&collections=aster-l1t response: body: string: '{"type":"FeatureCollection","features":[{"id":"AST_L1T_00312272006020322_20150518201805","bbox":[98.5127846,-72.6857366,101.0889206,-71.9245548],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006020322_20150518201805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006020322_20150518201805","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[479159.99999999313,-8068679.999054978,575010.0000364248,-7977509.999048144],"proj:shape":[1014,1066],"proj:transform":[89.91557226682148,0.0,479159.99999999313,0.0,-89.91124261028999,-7977509.999048144,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[479159.99999999313,-8068679.999054978,575010.0000364248,-7977509.999048144],"proj:shape":[3040,3196],"proj:transform":[29.990613277982387,0.0,479159.99999999313,0.0,-29.99013158119541,-7977509.999048144,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[479159.99999999313,-8068679.999054978,575010.0000364248,-7977509.999048144],"proj:shape":[6079,6391],"proj:transform":[14.99765295516065,0.0,479159.99999999313,0.0,-14.997532490020406,-7977509.999048144,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006020322_20150518201805&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006020322_20150518201805&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[99.4688048,-71.9317123],[100.26909013382132,-72.06292754128351],[101.01155411667678,-72.18002518606886],[101.02462934566167,-72.18208319828851],[101.0255115,-72.1821809],[101.02561269773116,-72.18223797573658],[101.0485969157694,-72.1858556409902],[101.0496391,-72.1859631],[101.04977848322952,-72.18604161710383],[101.07552427221498,-72.19009394753702],[101.0791318,-72.1904922],[101.08045471515234,-72.19086998838686],[101.0889206,-72.1922025],[100.6948508,-72.4181531],[100.4452794,-72.5580831],[100.2135876,-72.6857366],[100.18857636208548,-72.68191253382402],[100.1874713,-72.6825262],[100.04421765107804,-72.65984096480142],[99.9604827,-72.6470384],[99.4215044,-72.561242],[99.41958374889319,-72.56092573932061],[99.356,-72.5508568],[98.5159305,-72.4122347],[98.51895554626601,-72.41063665367456],[98.5127846,-72.4096541],[98.5128278,-72.4080421],[98.5154932,-72.4080486],[98.5155361,-72.4064365],[98.5208876,-72.4056434],[98.52093,-72.4040314],[98.5263015,-72.4024322],[98.5263435,-72.4008201],[98.5316928,-72.4000267],[98.5317343,-72.3984147],[98.5343982,-72.398421],[98.5344395,-72.3968089],[98.5371032,-72.3968151],[98.5371442,-72.3952031],[98.5424914,-72.3944094],[98.5425319,-72.3927974],[98.5478982,-72.3911975],[98.5479383,-72.3895855],[98.5532833,-72.3887915],[98.5533229,-72.3871795],[98.5559852,-72.3871855],[98.5560245,-72.3855734],[98.5586866,-72.3855794],[98.5587256,-72.3839673],[98.5640686,-72.3831731],[98.5641072,-72.381561],[98.5694682,-72.3799606],[98.5695064,-72.3783485],[98.5748472,-72.377554],[98.5748848,-72.3759419],[98.5802433,-72.3743412],[98.5802804,-72.3727292],[98.5856191,-72.3719343],[98.5856558,-72.3703223],[98.5883156,-72.3703278],[98.5883521,-72.3687157],[98.5910117,-72.3687212],[98.5910478,-72.3671092],[98.5963844,-72.3663141],[98.5964201,-72.364702],[98.5990792,-72.3647074],[98.5991146,-72.3630953],[98.6017734,-72.3631007],[98.6018086,-72.3614886],[98.6044672,-72.361494],[98.6045021,-72.3598819],[98.609836,-72.3590864],[98.6098705,-72.3574744],[98.6125285,-72.3574796],[98.6125628,-72.3558675],[98.6152205,-72.3558727],[98.6152545,-72.3542606],[98.6205863,-72.3534648],[98.6206198,-72.3518528],[98.6259672,-72.3502508],[98.6260002,-72.3486387],[98.6313299,-72.3478427],[98.6313625,-72.3462306],[98.6367072,-72.3446283],[98.6367393,-72.3430163],[98.6420669,-72.3422199],[98.6420985,-72.3406078],[98.6474407,-72.3390053],[98.6474718,-72.3373932],[98.6527973,-72.3365966],[98.6528279,-72.3349845],[98.6581675,-72.3333817],[98.6581977,-72.3317696],[98.663521,-72.3309727],[98.6635507,-72.3293606],[98.6688878,-72.3277575],[98.668917,-72.3261454],[98.6742382,-72.3253482],[98.6742669,-72.3237361],[98.67692,-72.3237404],[98.6769485,-72.3221283],[98.6796014,-72.3221327],[98.6796296,-72.3205206],[98.6849488,-72.3197231],[98.6849766,-72.318111],[98.6903084,-72.3165073],[98.6903357,-72.3148952],[98.6956527,-72.3140974],[98.6956796,-72.3124853],[98.7010088,-72.3108813],[98.7010352,-72.3092692],[98.7063501,-72.3084711],[98.706376,-72.306859],[98.7117027,-72.3052548],[98.7117281,-72.3036427],[98.7170409,-72.3028443],[98.7170659,-72.3012322],[98.72239,-72.2996276],[98.7224144,-72.2980155],[98.7277251,-72.2972169],[98.7277491,-72.2956048],[98.7303981,-72.2956084],[98.7304219,-72.2939963],[98.7330707,-72.2939999],[98.7330942,-72.2923878],[98.7384028,-72.2915889],[98.7384258,-72.2899768],[98.7437448,-72.2883716],[98.7437674,-72.2867595],[98.7490739,-72.2859603],[98.749096,-72.2843482],[98.7517434,-72.2843515],[98.7517652,-72.2827394],[98.7544124,-72.2827427],[98.754434,-72.2811306],[98.7597384,-72.2803311],[98.7597595,-72.278719],[98.7650734,-72.2771133],[98.765094,-72.2755012],[98.7703964,-72.2747014],[98.7704166,-72.2730893],[98.7730623,-72.2730923],[98.7730823,-72.2714802],[98.7757278,-72.2714833],[98.7757476,-72.2698712],[98.7810478,-72.269071],[98.7810671,-72.2674589],[98.7863758,-72.2658526],[98.7863945,-72.2642405],[98.789039,-72.2642434],[98.7890576,-72.2626313],[98.7943551,-72.2618308],[98.7943732,-72.2602187],[98.7996786,-72.258612],[98.7996963,-72.2569999],[98.8049917,-72.2561992],[98.8050089,-72.2545871],[98.8103117,-72.2529801],[98.8103284,-72.251368],[98.8156218,-72.250567],[98.815638,-72.2489549],[98.8182803,-72.2489573],[98.8182962,-72.2473452],[98.8209383,-72.2473476],[98.820954,-72.2457355],[98.8262453,-72.2449342],[98.8262606,-72.2433221],[98.8315583,-72.2417146],[98.8315731,-72.2401025],[98.8368623,-72.2393009],[98.8368767,-72.2376887],[98.8421719,-72.2360809],[98.8421857,-72.2344688],[98.8474729,-72.2336669],[98.8474862,-72.2320548],[98.8527789,-72.2304467],[98.8527918,-72.2288346],[98.8580768,-72.2280324],[98.8580893,-72.2264203],[98.8633794,-72.2248119],[98.8633914,-72.2231998],[98.8686743,-72.2223973],[98.8686859,-72.2207852],[98.8739734,-72.2191766],[98.8739845,-72.2175644],[98.8792653,-72.2167617],[98.8792759,-72.2151496],[98.8845609,-72.2135406],[98.8845711,-72.2119285],[98.8898499,-72.2111255],[98.8898595,-72.2095134],[98.895142,-72.2079041],[98.8951512,-72.206292],[98.9004279,-72.2054887],[98.9004366,-72.2038766],[98.9057165,-72.202267],[98.9057248,-72.2006549],[98.9109994,-72.1998513],[98.9110072,-72.1982392],[98.9136422,-72.1982404],[98.9136498,-72.1966282],[98.9162846,-72.1966294],[98.9162919,-72.1950173],[98.9215645,-72.1942134],[98.9215714,-72.1926012],[98.9268462,-72.1909912],[98.9268526,-72.189379],[98.9321231,-72.1885749],[98.932129,-72.1869627],[98.9374013,-72.1853524],[98.9374068,-72.1837402],[98.9426752,-72.1829358],[98.9426802,-72.1813236],[98.94795,-72.179713],[98.9479546,-72.1781009],[98.9532209,-72.1772961],[98.953225,-72.175684],[98.9584922,-72.1740731],[98.9584959,-72.1724609],[98.9637601,-72.1716559],[98.9637633,-72.1700438],[98.9663943,-72.1700442],[98.9663972,-72.1684321],[98.969028,-72.1684325],[98.9690307,-72.1668204],[98.9742929,-72.1660151],[98.9742952,-72.164403],[98.9795573,-72.1627915],[98.9795591,-72.1611793],[98.9848193,-72.1603738],[98.9848206,-72.1587616],[98.9900802,-72.1571498],[98.9900811,-72.1555377],[98.9953392,-72.1547318],[98.9953396,-72.1531197],[98.9979682,-72.1531198],[98.9979683,-72.1515076],[99.0005967,-72.1515076],[99.0005966,-72.1498955],[99.0058526,-72.1490893],[99.0058521,-72.1474772],[99.0111067,-72.1458649],[99.0111058,-72.1442527],[99.0163597,-72.1434463],[99.0163583,-72.1418342],[99.0216103,-72.1402215],[99.0216085,-72.1386094],[99.0268603,-72.1378027],[99.026858,-72.1361905],[99.0321075,-72.1345776],[99.0321047,-72.1329655],[99.0373545,-72.1321585],[99.0373513,-72.1305464],[99.0425983,-72.1289331],[99.0425946,-72.127321],[99.0478424,-72.1265137],[99.0478382,-72.1249016],[99.0530827,-72.1232881],[99.0530781,-72.121676],[99.0583238,-72.1208684],[99.0583187,-72.1192563],[99.0609425,-72.1192555],[99.0609371,-72.1176433],[99.0635607,-72.1176425],[99.0635552,-72.1160304],[99.0687988,-72.1152225],[99.0687928,-72.1136104],[99.0714158,-72.1136095],[99.0714095,-72.1119973],[99.0740323,-72.1119964],[99.0740258,-72.1103842],[99.0792674,-72.1095761],[99.0792605,-72.107964],[99.0818827,-72.1079629],[99.0818755,-72.1063507],[99.0844975,-72.1063496],[99.0844901,-72.1047375],[99.0897296,-72.1039291],[99.0897218,-72.102317],[99.0949563,-72.1007023],[99.094948,-72.0990902],[99.1001855,-72.0982815],[99.1001768,-72.0966694],[99.1054087,-72.0950545],[99.1053996,-72.0934424],[99.110635,-72.0926334],[99.1106254,-72.0910213],[99.1132451,-72.0910198],[99.1132353,-72.0894076],[99.1158548,-72.0894061],[99.1158447,-72.087794],[99.1210781,-72.0869847],[99.1210676,-72.0853726],[99.1262945,-72.0837571],[99.1262835,-72.082145],[99.1315148,-72.0813355],[99.1315034,-72.0797233],[99.1367279,-72.0781076],[99.136716,-72.0764955],[99.1419452,-72.0756857],[99.1419329,-72.0740735],[99.1471549,-72.0724575],[99.1471421,-72.0708454],[99.1523693,-72.0700353],[99.152356,-72.0684232],[99.1575755,-72.0668069],[99.1575618,-72.0651947],[99.162787,-72.0643844],[99.1627728,-72.0627722],[99.1679898,-72.0611557],[99.1679752,-72.0595435],[99.1731983,-72.0587329],[99.1731833,-72.0571208],[99.1757983,-72.0571184],[99.175783,-72.0555063],[99.1783977,-72.0555039],[99.1783823,-72.0538918],[99.1836033,-72.0530809],[99.1835874,-72.0514687],[99.1887994,-72.0498516],[99.188783,-72.0482395],[99.194002,-72.0474283],[99.1939852,-72.0458161],[99.1991947,-72.0441987],[99.1991774,-72.0425866],[99.2043944,-72.0417751],[99.2043766,-72.040163],[99.2095836,-72.0385453],[99.2095654,-72.0369332],[99.2147804,-72.0361214],[99.2147618,-72.0345093],[99.2173736,-72.0345064],[99.2173547,-72.0328942],[99.2199663,-72.0328913],[99.2199472,-72.0312792],[99.2251601,-72.0304671],[99.2251406,-72.028855],[99.2277516,-72.028852],[99.2277319,-72.0272398],[99.2303426,-72.0272368],[99.2303227,-72.0256246],[99.2355335,-72.0248123],[99.2355131,-72.0232002],[99.2381233,-72.023197],[99.2381027,-72.0215849],[99.2407127,-72.0215817],[99.2406918,-72.0199695],[99.2459006,-72.019157],[99.2458793,-72.0175448],[99.2510764,-72.015926],[99.2510546,-72.0143139],[99.2562614,-72.013501],[99.2562393,-72.0118889],[99.2588479,-72.0118855],[99.2588254,-72.0102733],[99.2614338,-72.0102698],[99.2614112,-72.0086577],[99.266616,-72.0078446],[99.2665929,-72.0062324],[99.271785,-72.0046131],[99.2717615,-72.0030009],[99.2769642,-72.0021875],[99.2769402,-72.0005754],[99.2795472,-72.0005717],[99.279523,-71.9989595],[99.2821298,-71.9989558],[99.2821054,-71.9973436],[99.2873061,-71.99653],[99.2872813,-71.9949178],[99.2924684,-71.9932979],[99.2924431,-71.9916858],[99.2976418,-71.9908718],[99.2976161,-71.9892597],[99.3028007,-71.9876395],[99.3027746,-71.9860274],[99.3079712,-71.9852131],[99.3079446,-71.983601],[99.3105492,-71.9835969],[99.3105224,-71.9819847],[99.3131268,-71.9819806],[99.3130997,-71.9803684],[99.3182943,-71.9795539],[99.3182668,-71.9779418],[99.3208707,-71.9779375],[99.3208429,-71.9763254],[99.3234466,-71.9763211],[99.3234186,-71.9747089],[99.3286112,-71.9738941],[99.3285828,-71.972282],[99.3337601,-71.970661],[99.3337312,-71.9690489],[99.3389218,-71.9682338],[99.3388925,-71.9666217],[99.3440673,-71.9650004],[99.3440376,-71.9633883],[99.3492262,-71.9625729],[99.349196,-71.9609608],[99.3543684,-71.9593393],[99.3543378,-71.9577271],[99.3595243,-71.9569115],[99.3594933,-71.9552994],[99.3620939,-71.9552945],[99.3620627,-71.9536824],[99.3646631,-71.9536776],[99.3646317,-71.9520654],[99.3698162,-71.9512495],[99.3697843,-71.9496374],[99.3723841,-71.9496324],[99.372352,-71.9480203],[99.3749517,-71.9480153],[99.3749193,-71.9464032],[99.3801018,-71.945587],[99.380069,-71.9439749],[99.385234,-71.9423525],[99.3852008,-71.9407404],[99.3903812,-71.9399239],[99.3903476,-71.9383118],[99.3955101,-71.9366892],[99.395476,-71.9350771],[99.4006544,-71.9342603],[99.4006199,-71.9326482],[99.4032174,-71.9326428],[99.4031827,-71.9310307],[99.4057799,-71.9310253],[99.405745,-71.9294132],[99.4109214,-71.9285962],[99.410886,-71.9269841],[99.4134827,-71.9269785],[99.4134471,-71.9253664],[99.4160257,-71.9245548],[99.42329240469921,-71.92568924843837],[99.4246269,-71.9249621],[99.45795183479106,-71.93041833653511],[99.4688048,-71.9317123]]]},"collection":"aster-l1t","properties":{"created":"2015-05-18T20:21:47.235000Z","datetime":"2006-12-27T02:03:22.718000Z","platform":"terra","proj:epsg":32647,"instruments":["aster"],"eo:cloud_cover":0.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":57.318059,"view:sun_elevation":34.202038,"aster:processing_number":"110656","aster:lower_left_quad_cloud_cover":0.0,"aster:upper_left_quad_cloud_cover":0.0,"aster:lower_right_quad_cloud_cover":0.0,"aster:upper_right_quad_cloud_cover":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search?ids=AST_L1T_00312272006020322_20150518201805&collections=aster-l1t"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '5684' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:50:53 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125052Z-167d46d96d8kf92xhC1DEN2fsg0000000sfg000000002gcz status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/search?ids=for-sure-not-a-real-id&collections=aster-l1t response: body: string: '{"type":"FeatureCollection","features":[],"links":[{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search?ids=for-sure-not-a-real-id&collections=aster-l1t"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '313' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:50:53 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125053Z-167d46d96d8rwmk4hC1DEN36180000000sng0000000040d5 status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items?collections=aster-l1t response: body: string: '{"type":"FeatureCollection","features":[{"id":"AST_L1T_00312272006020322_20150518201805","bbox":[98.5127846,-72.6857366,101.0889206,-71.9245548],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006020322_20150518201805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006020322_20150518201805","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[479159.99999999313,-8068679.999054978,575010.0000364248,-7977509.999048144],"proj:shape":[1014,1066],"proj:transform":[89.91557226682148,0.0,479159.99999999313,0.0,-89.91124261028999,-7977509.999048144,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[479159.99999999313,-8068679.999054978,575010.0000364248,-7977509.999048144],"proj:shape":[3040,3196],"proj:transform":[29.990613277982387,0.0,479159.99999999313,0.0,-29.99013158119541,-7977509.999048144,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[479159.99999999313,-8068679.999054978,575010.0000364248,-7977509.999048144],"proj:shape":[6079,6391],"proj:transform":[14.99765295516065,0.0,479159.99999999313,0.0,-14.997532490020406,-7977509.999048144,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006020322_20150518201805&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006020322_20150518201805&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[99.4688048,-71.9317123],[100.26909013382132,-72.06292754128351],[101.01155411667678,-72.18002518606886],[101.02462934566167,-72.18208319828851],[101.0255115,-72.1821809],[101.02561269773116,-72.18223797573658],[101.0485969157694,-72.1858556409902],[101.0496391,-72.1859631],[101.04977848322952,-72.18604161710383],[101.07552427221498,-72.19009394753702],[101.0791318,-72.1904922],[101.08045471515234,-72.19086998838686],[101.0889206,-72.1922025],[100.6948508,-72.4181531],[100.4452794,-72.5580831],[100.2135876,-72.6857366],[100.18857636208548,-72.68191253382402],[100.1874713,-72.6825262],[100.04421765107804,-72.65984096480142],[99.9604827,-72.6470384],[99.4215044,-72.561242],[99.41958374889319,-72.56092573932061],[99.356,-72.5508568],[98.5159305,-72.4122347],[98.51895554626601,-72.41063665367456],[98.5127846,-72.4096541],[98.5128278,-72.4080421],[98.5154932,-72.4080486],[98.5155361,-72.4064365],[98.5208876,-72.4056434],[98.52093,-72.4040314],[98.5263015,-72.4024322],[98.5263435,-72.4008201],[98.5316928,-72.4000267],[98.5317343,-72.3984147],[98.5343982,-72.398421],[98.5344395,-72.3968089],[98.5371032,-72.3968151],[98.5371442,-72.3952031],[98.5424914,-72.3944094],[98.5425319,-72.3927974],[98.5478982,-72.3911975],[98.5479383,-72.3895855],[98.5532833,-72.3887915],[98.5533229,-72.3871795],[98.5559852,-72.3871855],[98.5560245,-72.3855734],[98.5586866,-72.3855794],[98.5587256,-72.3839673],[98.5640686,-72.3831731],[98.5641072,-72.381561],[98.5694682,-72.3799606],[98.5695064,-72.3783485],[98.5748472,-72.377554],[98.5748848,-72.3759419],[98.5802433,-72.3743412],[98.5802804,-72.3727292],[98.5856191,-72.3719343],[98.5856558,-72.3703223],[98.5883156,-72.3703278],[98.5883521,-72.3687157],[98.5910117,-72.3687212],[98.5910478,-72.3671092],[98.5963844,-72.3663141],[98.5964201,-72.364702],[98.5990792,-72.3647074],[98.5991146,-72.3630953],[98.6017734,-72.3631007],[98.6018086,-72.3614886],[98.6044672,-72.361494],[98.6045021,-72.3598819],[98.609836,-72.3590864],[98.6098705,-72.3574744],[98.6125285,-72.3574796],[98.6125628,-72.3558675],[98.6152205,-72.3558727],[98.6152545,-72.3542606],[98.6205863,-72.3534648],[98.6206198,-72.3518528],[98.6259672,-72.3502508],[98.6260002,-72.3486387],[98.6313299,-72.3478427],[98.6313625,-72.3462306],[98.6367072,-72.3446283],[98.6367393,-72.3430163],[98.6420669,-72.3422199],[98.6420985,-72.3406078],[98.6474407,-72.3390053],[98.6474718,-72.3373932],[98.6527973,-72.3365966],[98.6528279,-72.3349845],[98.6581675,-72.3333817],[98.6581977,-72.3317696],[98.663521,-72.3309727],[98.6635507,-72.3293606],[98.6688878,-72.3277575],[98.668917,-72.3261454],[98.6742382,-72.3253482],[98.6742669,-72.3237361],[98.67692,-72.3237404],[98.6769485,-72.3221283],[98.6796014,-72.3221327],[98.6796296,-72.3205206],[98.6849488,-72.3197231],[98.6849766,-72.318111],[98.6903084,-72.3165073],[98.6903357,-72.3148952],[98.6956527,-72.3140974],[98.6956796,-72.3124853],[98.7010088,-72.3108813],[98.7010352,-72.3092692],[98.7063501,-72.3084711],[98.706376,-72.306859],[98.7117027,-72.3052548],[98.7117281,-72.3036427],[98.7170409,-72.3028443],[98.7170659,-72.3012322],[98.72239,-72.2996276],[98.7224144,-72.2980155],[98.7277251,-72.2972169],[98.7277491,-72.2956048],[98.7303981,-72.2956084],[98.7304219,-72.2939963],[98.7330707,-72.2939999],[98.7330942,-72.2923878],[98.7384028,-72.2915889],[98.7384258,-72.2899768],[98.7437448,-72.2883716],[98.7437674,-72.2867595],[98.7490739,-72.2859603],[98.749096,-72.2843482],[98.7517434,-72.2843515],[98.7517652,-72.2827394],[98.7544124,-72.2827427],[98.754434,-72.2811306],[98.7597384,-72.2803311],[98.7597595,-72.278719],[98.7650734,-72.2771133],[98.765094,-72.2755012],[98.7703964,-72.2747014],[98.7704166,-72.2730893],[98.7730623,-72.2730923],[98.7730823,-72.2714802],[98.7757278,-72.2714833],[98.7757476,-72.2698712],[98.7810478,-72.269071],[98.7810671,-72.2674589],[98.7863758,-72.2658526],[98.7863945,-72.2642405],[98.789039,-72.2642434],[98.7890576,-72.2626313],[98.7943551,-72.2618308],[98.7943732,-72.2602187],[98.7996786,-72.258612],[98.7996963,-72.2569999],[98.8049917,-72.2561992],[98.8050089,-72.2545871],[98.8103117,-72.2529801],[98.8103284,-72.251368],[98.8156218,-72.250567],[98.815638,-72.2489549],[98.8182803,-72.2489573],[98.8182962,-72.2473452],[98.8209383,-72.2473476],[98.820954,-72.2457355],[98.8262453,-72.2449342],[98.8262606,-72.2433221],[98.8315583,-72.2417146],[98.8315731,-72.2401025],[98.8368623,-72.2393009],[98.8368767,-72.2376887],[98.8421719,-72.2360809],[98.8421857,-72.2344688],[98.8474729,-72.2336669],[98.8474862,-72.2320548],[98.8527789,-72.2304467],[98.8527918,-72.2288346],[98.8580768,-72.2280324],[98.8580893,-72.2264203],[98.8633794,-72.2248119],[98.8633914,-72.2231998],[98.8686743,-72.2223973],[98.8686859,-72.2207852],[98.8739734,-72.2191766],[98.8739845,-72.2175644],[98.8792653,-72.2167617],[98.8792759,-72.2151496],[98.8845609,-72.2135406],[98.8845711,-72.2119285],[98.8898499,-72.2111255],[98.8898595,-72.2095134],[98.895142,-72.2079041],[98.8951512,-72.206292],[98.9004279,-72.2054887],[98.9004366,-72.2038766],[98.9057165,-72.202267],[98.9057248,-72.2006549],[98.9109994,-72.1998513],[98.9110072,-72.1982392],[98.9136422,-72.1982404],[98.9136498,-72.1966282],[98.9162846,-72.1966294],[98.9162919,-72.1950173],[98.9215645,-72.1942134],[98.9215714,-72.1926012],[98.9268462,-72.1909912],[98.9268526,-72.189379],[98.9321231,-72.1885749],[98.932129,-72.1869627],[98.9374013,-72.1853524],[98.9374068,-72.1837402],[98.9426752,-72.1829358],[98.9426802,-72.1813236],[98.94795,-72.179713],[98.9479546,-72.1781009],[98.9532209,-72.1772961],[98.953225,-72.175684],[98.9584922,-72.1740731],[98.9584959,-72.1724609],[98.9637601,-72.1716559],[98.9637633,-72.1700438],[98.9663943,-72.1700442],[98.9663972,-72.1684321],[98.969028,-72.1684325],[98.9690307,-72.1668204],[98.9742929,-72.1660151],[98.9742952,-72.164403],[98.9795573,-72.1627915],[98.9795591,-72.1611793],[98.9848193,-72.1603738],[98.9848206,-72.1587616],[98.9900802,-72.1571498],[98.9900811,-72.1555377],[98.9953392,-72.1547318],[98.9953396,-72.1531197],[98.9979682,-72.1531198],[98.9979683,-72.1515076],[99.0005967,-72.1515076],[99.0005966,-72.1498955],[99.0058526,-72.1490893],[99.0058521,-72.1474772],[99.0111067,-72.1458649],[99.0111058,-72.1442527],[99.0163597,-72.1434463],[99.0163583,-72.1418342],[99.0216103,-72.1402215],[99.0216085,-72.1386094],[99.0268603,-72.1378027],[99.026858,-72.1361905],[99.0321075,-72.1345776],[99.0321047,-72.1329655],[99.0373545,-72.1321585],[99.0373513,-72.1305464],[99.0425983,-72.1289331],[99.0425946,-72.127321],[99.0478424,-72.1265137],[99.0478382,-72.1249016],[99.0530827,-72.1232881],[99.0530781,-72.121676],[99.0583238,-72.1208684],[99.0583187,-72.1192563],[99.0609425,-72.1192555],[99.0609371,-72.1176433],[99.0635607,-72.1176425],[99.0635552,-72.1160304],[99.0687988,-72.1152225],[99.0687928,-72.1136104],[99.0714158,-72.1136095],[99.0714095,-72.1119973],[99.0740323,-72.1119964],[99.0740258,-72.1103842],[99.0792674,-72.1095761],[99.0792605,-72.107964],[99.0818827,-72.1079629],[99.0818755,-72.1063507],[99.0844975,-72.1063496],[99.0844901,-72.1047375],[99.0897296,-72.1039291],[99.0897218,-72.102317],[99.0949563,-72.1007023],[99.094948,-72.0990902],[99.1001855,-72.0982815],[99.1001768,-72.0966694],[99.1054087,-72.0950545],[99.1053996,-72.0934424],[99.110635,-72.0926334],[99.1106254,-72.0910213],[99.1132451,-72.0910198],[99.1132353,-72.0894076],[99.1158548,-72.0894061],[99.1158447,-72.087794],[99.1210781,-72.0869847],[99.1210676,-72.0853726],[99.1262945,-72.0837571],[99.1262835,-72.082145],[99.1315148,-72.0813355],[99.1315034,-72.0797233],[99.1367279,-72.0781076],[99.136716,-72.0764955],[99.1419452,-72.0756857],[99.1419329,-72.0740735],[99.1471549,-72.0724575],[99.1471421,-72.0708454],[99.1523693,-72.0700353],[99.152356,-72.0684232],[99.1575755,-72.0668069],[99.1575618,-72.0651947],[99.162787,-72.0643844],[99.1627728,-72.0627722],[99.1679898,-72.0611557],[99.1679752,-72.0595435],[99.1731983,-72.0587329],[99.1731833,-72.0571208],[99.1757983,-72.0571184],[99.175783,-72.0555063],[99.1783977,-72.0555039],[99.1783823,-72.0538918],[99.1836033,-72.0530809],[99.1835874,-72.0514687],[99.1887994,-72.0498516],[99.188783,-72.0482395],[99.194002,-72.0474283],[99.1939852,-72.0458161],[99.1991947,-72.0441987],[99.1991774,-72.0425866],[99.2043944,-72.0417751],[99.2043766,-72.040163],[99.2095836,-72.0385453],[99.2095654,-72.0369332],[99.2147804,-72.0361214],[99.2147618,-72.0345093],[99.2173736,-72.0345064],[99.2173547,-72.0328942],[99.2199663,-72.0328913],[99.2199472,-72.0312792],[99.2251601,-72.0304671],[99.2251406,-72.028855],[99.2277516,-72.028852],[99.2277319,-72.0272398],[99.2303426,-72.0272368],[99.2303227,-72.0256246],[99.2355335,-72.0248123],[99.2355131,-72.0232002],[99.2381233,-72.023197],[99.2381027,-72.0215849],[99.2407127,-72.0215817],[99.2406918,-72.0199695],[99.2459006,-72.019157],[99.2458793,-72.0175448],[99.2510764,-72.015926],[99.2510546,-72.0143139],[99.2562614,-72.013501],[99.2562393,-72.0118889],[99.2588479,-72.0118855],[99.2588254,-72.0102733],[99.2614338,-72.0102698],[99.2614112,-72.0086577],[99.266616,-72.0078446],[99.2665929,-72.0062324],[99.271785,-72.0046131],[99.2717615,-72.0030009],[99.2769642,-72.0021875],[99.2769402,-72.0005754],[99.2795472,-72.0005717],[99.279523,-71.9989595],[99.2821298,-71.9989558],[99.2821054,-71.9973436],[99.2873061,-71.99653],[99.2872813,-71.9949178],[99.2924684,-71.9932979],[99.2924431,-71.9916858],[99.2976418,-71.9908718],[99.2976161,-71.9892597],[99.3028007,-71.9876395],[99.3027746,-71.9860274],[99.3079712,-71.9852131],[99.3079446,-71.983601],[99.3105492,-71.9835969],[99.3105224,-71.9819847],[99.3131268,-71.9819806],[99.3130997,-71.9803684],[99.3182943,-71.9795539],[99.3182668,-71.9779418],[99.3208707,-71.9779375],[99.3208429,-71.9763254],[99.3234466,-71.9763211],[99.3234186,-71.9747089],[99.3286112,-71.9738941],[99.3285828,-71.972282],[99.3337601,-71.970661],[99.3337312,-71.9690489],[99.3389218,-71.9682338],[99.3388925,-71.9666217],[99.3440673,-71.9650004],[99.3440376,-71.9633883],[99.3492262,-71.9625729],[99.349196,-71.9609608],[99.3543684,-71.9593393],[99.3543378,-71.9577271],[99.3595243,-71.9569115],[99.3594933,-71.9552994],[99.3620939,-71.9552945],[99.3620627,-71.9536824],[99.3646631,-71.9536776],[99.3646317,-71.9520654],[99.3698162,-71.9512495],[99.3697843,-71.9496374],[99.3723841,-71.9496324],[99.372352,-71.9480203],[99.3749517,-71.9480153],[99.3749193,-71.9464032],[99.3801018,-71.945587],[99.380069,-71.9439749],[99.385234,-71.9423525],[99.3852008,-71.9407404],[99.3903812,-71.9399239],[99.3903476,-71.9383118],[99.3955101,-71.9366892],[99.395476,-71.9350771],[99.4006544,-71.9342603],[99.4006199,-71.9326482],[99.4032174,-71.9326428],[99.4031827,-71.9310307],[99.4057799,-71.9310253],[99.405745,-71.9294132],[99.4109214,-71.9285962],[99.410886,-71.9269841],[99.4134827,-71.9269785],[99.4134471,-71.9253664],[99.4160257,-71.9245548],[99.42329240469921,-71.92568924843837],[99.4246269,-71.9249621],[99.45795183479106,-71.93041833653511],[99.4688048,-71.9317123]]]},"collection":"aster-l1t","properties":{"created":"2015-05-18T20:21:47.235000Z","datetime":"2006-12-27T02:03:22.718000Z","platform":"terra","proj:epsg":32647,"instruments":["aster"],"eo:cloud_cover":0.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":57.318059,"view:sun_elevation":34.202038,"aster:processing_number":"110656","aster:lower_left_quad_cloud_cover":0.0,"aster:upper_left_quad_cloud_cover":0.0,"aster:lower_right_quad_cloud_cover":0.0,"aster:upper_right_quad_cloud_cover":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"AST_L1T_00312272006020313_20150518201753","bbox":[99.3885664,-72.2098622,101.8906871,-71.4520434],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006020313_20150518201753"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006020313_20150518201753","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020313_20150518201753_111218.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[509039.9999999969,-8016389.999059276,604890.0003240635,-7925219.999045857],"proj:shape":[1014,1066],"proj:transform":[89.9155725366478,0.0,509039.9999999969,0.0,-89.91124261678353,-7925219.999045857,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020313_20150518201753_111218.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020313_20150518201753_111218.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[509039.9999999969,-8016389.999059276,604890.0003240635,-7925219.999045857],"proj:shape":[3040,3196],"proj:transform":[29.990613367980774,0.0,509039.9999999969,0.0,-29.990131583361347,-7925219.999045857,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020313_20150518201753_111218.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[509039.9999999969,-8016389.999059276,604890.0003240635,-7925219.999045857],"proj:shape":[6079,6391],"proj:transform":[14.997653000166883,0.0,509039.9999999969,0.0,-14.997532491103552,-7925219.999045857,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006020313_20150518201753&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020313_20150518201753_111218_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020313_20150518201753_111218_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006020313_20150518201753&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[101.8664834,-71.7090042],[101.8661676389719,-71.70919524668975],[101.87429353132454,-71.71046700109217],[101.8801797,-71.7111063],[101.88236731605899,-71.71173060031728],[101.8906871,-71.7130327],[101.4479196,-71.9807235],[101.0577641,-72.2098622],[101.03287951690046,-72.20609703674523],[101.0317414,-72.2067654],[100.8900262517455,-72.184482615373],[100.8023384,-72.171215],[100.33099422137461,-72.09658241214296],[100.2306777,-72.080809],[99.3913652,-71.943376],[99.39397991737583,-71.94191488329963],[99.3886167,-71.9410774],[99.3885664,-71.9386592],[99.3911647,-71.9386539],[99.391131,-71.9370418],[99.3963102,-71.9362252],[99.396276,-71.9346131],[99.3988738,-71.9346078],[99.3988394,-71.9329956],[99.401437,-71.9329903],[99.4014024,-71.9313782],[99.4065796,-71.9305613],[99.4065445,-71.9289492],[99.411703,-71.9273261],[99.4116676,-71.925714],[99.4168427,-71.9248968],[99.4168068,-71.9232847],[99.419403,-71.9232791],[99.4193669,-71.921667],[99.4219629,-71.9216614],[99.4219265,-71.9200492],[99.4270997,-71.9192318],[99.4270629,-71.9176197],[99.4296583,-71.917614],[99.4296213,-71.9160018],[99.4322165,-71.9159961],[99.4321793,-71.9143839],[99.4373504,-71.9135662],[99.4373127,-71.9119541],[99.4424639,-71.9103302],[99.4424258,-71.9087181],[99.4475949,-71.9079001],[99.4475564,-71.906288],[99.4527051,-71.9046639],[99.4526662,-71.9030517],[99.4578333,-71.9022335],[99.4577939,-71.9006214],[99.4629402,-71.8989969],[99.4629004,-71.8973848],[99.4680654,-71.8965663],[99.4680252,-71.8949542],[99.473169,-71.8933295],[99.4731283,-71.8917174],[99.4782914,-71.8908986],[99.4782503,-71.8892865],[99.4808418,-71.8892801],[99.4808004,-71.8876679],[99.4833917,-71.8876615],[99.4833502,-71.8860494],[99.4885112,-71.8852303],[99.4884692,-71.8836182],[99.4910599,-71.8836117],[99.4910177,-71.8819995],[99.4936082,-71.881993],[99.4935658,-71.8803808],[99.4987248,-71.8795615],[99.498682,-71.8779494],[99.5012719,-71.8779427],[99.5012288,-71.8763306],[99.5038185,-71.8763239],[99.5037752,-71.8747118],[99.5089323,-71.8738922],[99.5088886,-71.8722801],[99.5114777,-71.8722732],[99.5114338,-71.8706611],[99.5165894,-71.8698413],[99.516545,-71.8682292],[99.5216774,-71.8666032],[99.5216326,-71.8649911],[99.5267862,-71.864171],[99.526741,-71.8625589],[99.5293287,-71.8625519],[99.5292833,-71.8609397],[99.5318709,-71.8609326],[99.5318252,-71.8593205],[99.5369768,-71.8585002],[99.5369307,-71.8568881],[99.5395177,-71.8568809],[99.5394714,-71.8552688],[99.5420582,-71.8552616],[99.5420117,-71.8536494],[99.5471613,-71.8528288],[99.5471144,-71.8512167],[99.5522394,-71.8495899],[99.552192,-71.8479778],[99.5573397,-71.8471569],[99.5572919,-71.8455448],[99.5624145,-71.8439177],[99.5623662,-71.8423056],[99.5675119,-71.8414845],[99.5674632,-71.8398724],[99.5725834,-71.838245],[99.5725343,-71.8366329],[99.5776779,-71.8358115],[99.5776284,-71.8341994],[99.5827462,-71.8325718],[99.5826963,-71.8309597],[99.5878379,-71.830138],[99.5877875,-71.8285259],[99.5929029,-71.826898],[99.5928521,-71.8252859],[99.5979917,-71.8244639],[99.5979405,-71.8228518],[99.6030534,-71.8212237],[99.6030018,-71.8196116],[99.6081394,-71.8187894],[99.6080874,-71.8171773],[99.6106689,-71.8171691],[99.6106166,-71.815557],[99.6131979,-71.8155488],[99.6131454,-71.8139367],[99.618281,-71.8131142],[99.6182281,-71.8115021],[99.6233362,-71.8098735],[99.6232829,-71.8082614],[99.6284165,-71.8074386],[99.6283628,-71.8058265],[99.6334684,-71.8041975],[99.6334142,-71.8025854],[99.6385459,-71.8017624],[99.6384913,-71.8001503],[99.6435946,-71.7985211],[99.6435395,-71.796909],[99.6486692,-71.7960857],[99.6486138,-71.7944736],[99.6537146,-71.7928441],[99.6536587,-71.791232],[99.6587864,-71.7904084],[99.6587301,-71.7887964],[99.6613077,-71.7887875],[99.6612512,-71.7871754],[99.6638286,-71.7871666],[99.6637718,-71.7855545],[99.6688975,-71.7847307],[99.6688404,-71.7831186],[99.6714172,-71.7831096],[99.6713598,-71.7814975],[99.6739364,-71.7814885],[99.6738789,-71.7798765],[99.6790026,-71.7790523],[99.6789446,-71.7774403],[99.6815206,-71.7774312],[99.6814624,-71.7758191],[99.6840382,-71.77581],[99.6839798,-71.7741979],[99.6891016,-71.7733735],[99.6890427,-71.7717614],[99.694134,-71.7701309],[99.6940747,-71.7685188],[99.6991945,-71.7676941],[99.6991348,-71.7660821],[99.7017093,-71.7660727],[99.7016494,-71.7644606],[99.7042236,-71.7644512],[99.7041635,-71.7628392],[99.7092813,-71.7620142],[99.7092208,-71.7604022],[99.7117945,-71.7603927],[99.7117337,-71.7587806],[99.7143072,-71.7587711],[99.7142463,-71.757159],[99.7193621,-71.7563338],[99.7193007,-71.7547217],[99.7243848,-71.7530904],[99.724323,-71.7514783],[99.7294368,-71.7506528],[99.7293746,-71.7490408],[99.7319467,-71.749031],[99.7318843,-71.7474189],[99.7344562,-71.7474091],[99.7343936,-71.7457971],[99.7395055,-71.7449714],[99.7394425,-71.7433593],[99.7445217,-71.7417274],[99.7444582,-71.7401153],[99.7495681,-71.7392893],[99.7495042,-71.7376773],[99.7520748,-71.7376673],[99.7520107,-71.7360552],[99.7545811,-71.7360451],[99.7545168,-71.7344331],[99.7596247,-71.7336068],[99.75956,-71.7319947],[99.7646345,-71.7303623],[99.7645693,-71.7287503],[99.7696753,-71.7279237],[99.7696097,-71.7263117],[99.7721788,-71.7263014],[99.772113,-71.7246893],[99.7746818,-71.724679],[99.7746159,-71.7230669],[99.7797198,-71.7222401],[99.7796534,-71.7206281],[99.7847231,-71.7189951],[99.7846563,-71.7173831],[99.7897583,-71.716556],[99.7896911,-71.714944],[99.7947584,-71.7133108],[99.7946908,-71.7116987],[99.7997908,-71.7108714],[99.7997228,-71.7092593],[99.8047877,-71.7076259],[99.8047192,-71.7060138],[99.8098173,-71.7051862],[99.8097484,-71.7035742],[99.8123143,-71.7035633],[99.8122453,-71.7019513],[99.8173419,-71.7011235],[99.8172724,-71.6995115],[99.8223332,-71.6978775],[99.8222633,-71.6962655],[99.827358,-71.6954374],[99.8272877,-71.6938254],[99.8298522,-71.6938143],[99.8297817,-71.6922023],[99.8323461,-71.6921912],[99.8322754,-71.6905791],[99.8373681,-71.6897508],[99.8372969,-71.6881388],[99.842353,-71.6865043],[99.8422814,-71.6848923],[99.8473721,-71.6840637],[99.8473002,-71.6824517],[99.8498632,-71.6824403],[99.849791,-71.6808283],[99.8523538,-71.6808169],[99.8522815,-71.6792049],[99.8573702,-71.6783761],[99.8572974,-71.676764],[99.8623487,-71.675129],[99.8622755,-71.673517],[99.8673624,-71.6726879],[99.8672887,-71.6710759],[99.8698502,-71.6710643],[99.8697764,-71.6694522],[99.8723377,-71.6694406],[99.8722636,-71.6678286],[99.8773485,-71.6669992],[99.877274,-71.6653872],[99.8823206,-71.6637516],[99.8822457,-71.6621396],[99.8873286,-71.66131],[99.8872534,-71.659698],[99.8898133,-71.6596861],[99.8897378,-71.6580741],[99.8922976,-71.6580622],[99.8922219,-71.6564502],[99.8973028,-71.6556203],[99.8972268,-71.6540082],[99.8997859,-71.6539962],[99.8997096,-71.6523842],[99.9022686,-71.6523722],[99.9021921,-71.6507602],[99.9072711,-71.64993],[99.9071942,-71.648318],[99.9097526,-71.6483059],[99.9096754,-71.6466938],[99.9122336,-71.6466817],[99.9121563,-71.6450697],[99.9172333,-71.6442392],[99.9171556,-71.6426272],[99.9221927,-71.6409907],[99.9221146,-71.6393786],[99.9271897,-71.638548],[99.9271111,-71.6369359],[99.9321459,-71.6352991],[99.9320669,-71.6336871],[99.93714,-71.6328561],[99.9370607,-71.6312441],[99.9396168,-71.6312316],[99.9395372,-71.6296196],[99.942093,-71.6296071],[99.9420133,-71.6279951],[99.9470845,-71.6271638],[99.9470043,-71.6255518],[99.9520343,-71.6239145],[99.9519537,-71.6223025],[99.957023,-71.621471],[99.956942,-71.619859],[99.9619696,-71.6182214],[99.9618882,-71.6166094],[99.9669555,-71.6157776],[99.9668737,-71.6141657],[99.9694275,-71.6141527],[99.9693455,-71.6125407],[99.971899,-71.6125278],[99.9718168,-71.6109158],[99.9768821,-71.6100838],[99.9767995,-71.6084718],[99.9793525,-71.6084587],[99.9792697,-71.6068467],[99.9818225,-71.6068337],[99.9817395,-71.6052217],[99.9868029,-71.6043894],[99.9867194,-71.6027774],[99.99174,-71.601139],[99.9916562,-71.599527],[99.9967176,-71.5986945],[99.9966334,-71.5970825],[99.9991849,-71.5970692],[99.9991004,-71.5954572],[100.0041605,-71.5946245],[100.0040756,-71.5930125],[100.0090922,-71.5913737],[100.0090069,-71.5897617],[100.014065,-71.5889287],[100.0139794,-71.5873167],[100.0165295,-71.5873032],[100.0164436,-71.5856912],[100.0189936,-71.5856776],[100.0189075,-71.5840656],[100.0239637,-71.5832324],[100.0238772,-71.5816204],[100.0288891,-71.579981],[100.0288022,-71.5783691],[100.0338564,-71.5775356],[100.0337691,-71.5759236],[100.0387787,-71.574284],[100.038691,-71.572672],[100.0437433,-71.5718382],[100.0436552,-71.5702263],[100.0486624,-71.5685864],[100.0485739,-71.5669744],[100.0536242,-71.5661404],[100.0535354,-71.5645284],[100.0560824,-71.5645143],[100.0559933,-71.5629024],[100.0585402,-71.5628883],[100.0584509,-71.5612763],[100.0634993,-71.560442],[100.0634096,-71.5588301],[100.0684121,-71.5571897],[100.0683221,-71.5555777],[100.0733685,-71.5547432],[100.073278,-71.5531312],[100.0782782,-71.5514905],[100.0781873,-71.5498786],[100.0832319,-71.5490438],[100.0831406,-71.5474318],[100.0881384,-71.5457909],[100.0880467,-71.544179],[100.0930893,-71.5433439],[100.0929972,-71.541732],[100.0955412,-71.5417173],[100.0954489,-71.5401054],[100.0979927,-71.5400908],[100.0979002,-71.5384788],[100.1029409,-71.5376435],[100.102848,-71.5360316],[100.1078412,-71.5343901],[100.1077479,-71.5327782],[100.1127866,-71.5319426],[100.112693,-71.5303307],[100.1176838,-71.528689],[100.1175897,-71.527077],[100.1226265,-71.5262412],[100.1225321,-71.5246293],[100.1250738,-71.5246143],[100.1249791,-71.5230023],[100.1275206,-71.5229873],[100.1274257,-71.5213754],[100.1324606,-71.5205393],[100.1323653,-71.5189273],[100.1349062,-71.5189122],[100.1348108,-71.5173003],[100.1398442,-71.516464],[100.1397484,-71.5148521],[100.1422888,-71.5148368],[100.1421927,-71.5132249],[100.1447329,-71.5132097],[100.1446366,-71.5115977],[100.1496682,-71.5107612],[100.1495715,-71.5091493],[100.1545537,-71.5075066],[100.1544566,-71.5058947],[100.1594862,-71.5050579],[100.1593888,-71.5034459],[100.1643686,-71.501803],[100.1642708,-71.5001911],[100.1692985,-71.499354],[100.1692002,-71.4977421],[100.1741778,-71.496099],[100.1740791,-71.4944871],[100.1791049,-71.4936497],[100.1790059,-71.4920378],[100.1839811,-71.4903944],[100.1838816,-71.4887825],[100.1889055,-71.4879449],[100.1888057,-71.486333],[100.1913423,-71.4863171],[100.1912422,-71.4847052],[100.1937786,-71.4846893],[100.1936784,-71.4830774],[100.1987003,-71.4822396],[100.1985997,-71.4806277],[100.2035703,-71.4789837],[100.2034692,-71.4773718],[100.2084893,-71.4765337],[100.2083879,-71.4749218],[100.2133561,-71.4732776],[100.2132543,-71.4716658],[100.2182724,-71.4708274],[100.2181703,-71.4692155],[100.2207045,-71.4691992],[100.2206021,-71.4675874],[100.2231362,-71.4675711],[100.2230336,-71.4659592],[100.2280498,-71.4651205],[100.2279468,-71.4635087],[100.2304804,-71.4634923],[100.2303772,-71.4618804],[100.2329105,-71.461864],[100.2328071,-71.4602521],[100.2378214,-71.4594132],[100.2377176,-71.4578013],[100.2402504,-71.4577848],[100.2401464,-71.4561729],[100.2451593,-71.4553338],[100.245055,-71.453722],[100.2475872,-71.4537054],[100.2474826,-71.4520935],[100.2550786,-71.4520434],[100.2562372385249,-71.45274414479073],[100.2567335,-71.4524585],[101.0605383,-71.5830607],[101.8664834,-71.7090042]]]},"collection":"aster-l1t","properties":{"created":"2015-05-18T20:22:03.586000Z","datetime":"2006-12-27T02:03:13.841000Z","platform":"terra","proj:epsg":32647,"instruments":["aster"],"eo:cloud_cover":0.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":56.555381,"view:sun_elevation":34.269495,"aster:processing_number":"111218","aster:lower_left_quad_cloud_cover":0.0,"aster:upper_left_quad_cloud_cover":0.0,"aster:lower_right_quad_cloud_cover":0.0,"aster:upper_right_quad_cloud_cover":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"AST_L1T_00312272006020304_20150518201753","bbox":[100.2238478,-71.7308039,102.6554626,-70.9761174],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006020304_20150518201753"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006020304_20150518201753","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020304_20150518201753_111217.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[539010.0000001943,-7964189.99910798,634860.001607926,-7872929.9990445385],"proj:shape":[1015,1066],"proj:transform":[89.91557374083648,0.0,539010.0000001943,0.0,-89.91133011176521,-7872929.9990445385,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020304_20150518201753_111217.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020304_20150518201753_111217.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[539010.0000001943,-7964189.99910798,634860.001607926,-7872929.9990445385],"proj:shape":[3043,3196],"proj:transform":[29.990613769628187,0.0,539010.0000001943,0.0,-29.99014132876822,-7872929.9990445385,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020304_20150518201753_111217.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[539010.0000001943,-7964189.99910798,634860.001607926,-7872929.9990445385],"proj:shape":[6085,6391],"proj:transform":[14.997653201022013,0.0,539010.0000001943,0.0,-14.99753493236511,-7872929.9990445385,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006020304_20150518201753&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020304_20150518201753_111217_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020304_20150518201753_111217_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006020304_20150518201753&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[101.82725405576103,-71.10197031734187],[101.8287184,-71.1021903],[101.8287555423913,-71.10221179960416],[101.85278009036668,-71.10607563833487],[101.8547141023528,-71.10637656243193],[101.8567496,-71.1066051],[101.85695829398529,-71.10672574917199],[101.88385199194614,-71.11091029499369],[101.8847933,-71.1110158],[101.8848904226146,-71.11107187042006],[102.6088507531927,-71.22371704033326],[102.61405520715144,-71.22452413526952],[102.6468577,-71.2292964],[102.64764021525716,-71.22973242228512],[102.6554626,-71.2309455],[102.2603999,-71.4834945],[101.8619248,-71.7308039],[101.83765509314583,-71.7272016277384],[101.8364545,-71.727947],[101.71930470947746,-71.70963527200118],[101.6735099,-71.7028381],[101.0947703,-71.6120996],[101.08083884413489,-71.6098364314694],[101.0242749,-71.6009949],[100.2259453,-71.4711422],[100.22878034138033,-71.46946800960283],[100.2240018,-71.4687161],[100.2238478,-71.4662983],[100.2288125,-71.4646537],[100.2287095,-71.4630418],[100.2337247,-71.462203],[100.2336212,-71.4605911],[100.2385836,-71.4589463],[100.2384798,-71.4573344],[100.2434931,-71.4564954],[100.2433889,-71.4548835],[100.2459212,-71.4548669],[100.2458168,-71.453255],[100.248349,-71.4532384],[100.2482444,-71.4516265],[100.2532557,-71.4507872],[100.2531507,-71.4491754],[100.2556823,-71.4491586],[100.2555771,-71.4475468],[100.2605871,-71.4467073],[100.2604815,-71.4450954],[100.2654376,-71.4434499],[100.2653316,-71.441838],[100.2703397,-71.4409983],[100.2702333,-71.4393864],[100.2751871,-71.4377406],[100.2750804,-71.4361287],[100.2800865,-71.4352887],[100.2799794,-71.4336769],[100.2825089,-71.4336598],[100.2824016,-71.4320479],[100.2849309,-71.4320308],[100.2848233,-71.430419],[100.2898276,-71.4295787],[100.2897196,-71.4279669],[100.2922484,-71.4279497],[100.2921403,-71.4263378],[100.2946689,-71.4263206],[100.2945605,-71.4247087],[100.2995629,-71.4238682],[100.2994542,-71.4222564],[100.3044011,-71.4206098],[100.304292,-71.418998],[100.3092924,-71.4181572],[100.3091829,-71.4165454],[100.3117102,-71.4165279],[100.3116005,-71.414916],[100.3141275,-71.4148985],[100.3140177,-71.4132867],[100.3190162,-71.4124457],[100.3189059,-71.4108338],[100.3238483,-71.4091868],[100.3237376,-71.4075749],[100.3287342,-71.4067337],[100.3286232,-71.4051218],[100.3335632,-71.4034745],[100.3334518,-71.4018627],[100.3384465,-71.4010212],[100.3383347,-71.3994093],[100.3432724,-71.3977618],[100.3431602,-71.3961499],[100.348153,-71.3953082],[100.3480404,-71.3936963],[100.3529759,-71.3920485],[100.3528629,-71.3904367],[100.3578538,-71.3895947],[100.3577405,-71.3879828],[100.3626737,-71.3863348],[100.3625599,-71.384723],[100.3675489,-71.3838807],[100.3674348,-71.3822689],[100.3723657,-71.3806205],[100.3722512,-71.3790087],[100.3772383,-71.3781662],[100.3771234,-71.3765544],[100.3796453,-71.376536],[100.3795302,-71.3749242],[100.384516,-71.3740814],[100.3844005,-71.3724697],[100.3869219,-71.3724512],[100.3868062,-71.3708394],[100.3893274,-71.3708209],[100.3892116,-71.3692091],[100.3941954,-71.3683661],[100.3940791,-71.3667543],[100.3990038,-71.3651053],[100.3988872,-71.3634935],[100.4038691,-71.3626502],[100.4037521,-71.3610385],[100.406272,-71.3610197],[100.4061548,-71.3594079],[100.4086745,-71.3593892],[100.4085571,-71.3577774],[100.4135371,-71.3569339],[100.4134194,-71.3553221],[100.4159385,-71.3553033],[100.4158205,-71.3536915],[100.4183395,-71.3536726],[100.4182213,-71.3520608],[100.4231995,-71.3512171],[100.4230809,-71.3496053],[100.4279987,-71.3479555],[100.4278798,-71.3463437],[100.4328561,-71.3454997],[100.4327368,-71.343888],[100.4352544,-71.3438689],[100.4351349,-71.3422571],[100.4376523,-71.3422379],[100.4375326,-71.3406262],[100.442507,-71.3397819],[100.4423869,-71.3381702],[100.4473002,-71.3365199],[100.4471797,-71.3349081],[100.4521522,-71.3340636],[100.4520314,-71.3324518],[100.4569424,-71.3308013],[100.4568212,-71.3291896],[100.4617918,-71.3283448],[100.4616702,-71.326733],[100.4665789,-71.3250823],[100.4664569,-71.3234705],[100.4714257,-71.3226255],[100.4713033,-71.3210138],[100.4738179,-71.3209941],[100.4736953,-71.3193824],[100.4786627,-71.3185372],[100.4785398,-71.3169254],[100.4834446,-71.3152742],[100.4833213,-71.3136625],[100.4882867,-71.312817],[100.488163,-71.3112053],[100.4930656,-71.3095538],[100.4929415,-71.3079421],[100.4979051,-71.3070964],[100.4977806,-71.3054847],[100.502681,-71.303833],[100.5025561,-71.3022212],[100.5075178,-71.3013753],[100.5073926,-71.2997635],[100.5122907,-71.2981116],[100.5121651,-71.2964999],[100.5171249,-71.2956536],[100.5169989,-71.2940419],[100.5218947,-71.2923897],[100.5217683,-71.290778],[100.5267263,-71.2899315],[100.5265995,-71.2883198],[100.5314931,-71.2866674],[100.531366,-71.2850557],[100.536322,-71.284209],[100.5361945,-71.2825973],[100.5410858,-71.2809445],[100.540958,-71.2793329],[100.5459122,-71.2784859],[100.5457839,-71.2768742],[100.5506729,-71.2752212],[100.5505443,-71.2736095],[100.5554966,-71.2727623],[100.5553676,-71.2711506],[100.5578757,-71.2711299],[100.5577465,-71.2695182],[100.5626975,-71.2686708],[100.5625679,-71.2670591],[100.5674531,-71.2654057],[100.5673231,-71.263794],[100.5722722,-71.2629464],[100.5721419,-71.2613347],[100.5770248,-71.2596811],[100.5768941,-71.2580694],[100.5818413,-71.2572215],[100.5817102,-71.2556098],[100.5865909,-71.2539559],[100.5864594,-71.2523443],[100.5914048,-71.2514961],[100.591273,-71.2498844],[100.5937783,-71.2498632],[100.5936463,-71.2482515],[100.5961514,-71.2482303],[100.5960192,-71.2466186],[100.6009626,-71.2457702],[100.6008301,-71.2441586],[100.6033346,-71.2441372],[100.6032019,-71.2425256],[100.6057062,-71.2425042],[100.6055733,-71.2408925],[100.6105149,-71.2400439],[100.6103816,-71.2384322],[100.6152555,-71.2367776],[100.6151218,-71.235166],[100.6200615,-71.234317],[100.6199275,-71.2327054],[100.6247991,-71.2310505],[100.6246647,-71.2294389],[100.6296026,-71.2285897],[100.6294678,-71.2269781],[100.6319701,-71.2269564],[100.6318351,-71.2253447],[100.6343372,-71.225323],[100.634202,-71.2237113],[100.639138,-71.2228619],[100.6390025,-71.2212503],[100.641504,-71.2212284],[100.6413683,-71.2196168],[100.6438697,-71.2195949],[100.6437338,-71.2179833],[100.6486679,-71.2171336],[100.6485316,-71.215522],[100.6510324,-71.2155],[100.6508959,-71.2138884],[100.6533965,-71.2138664],[100.6532599,-71.2122548],[100.6581921,-71.2114049],[100.6580551,-71.2097933],[100.6605552,-71.2097712],[100.660418,-71.2081596],[100.6653489,-71.2073095],[100.6652113,-71.2056978],[100.6700724,-71.2040418],[100.6699344,-71.2024302],[100.6748635,-71.2015799],[100.6747251,-71.1999682],[100.679584,-71.198312],[100.6794453,-71.1967004],[100.6843725,-71.1958498],[100.6842334,-71.1942382],[100.6867315,-71.1942157],[100.6865922,-71.1926041],[100.6890901,-71.1925817],[100.6889506,-71.1909701],[100.693876,-71.1901192],[100.6937361,-71.1885076],[100.6985905,-71.1868509],[100.6984504,-71.1852393],[100.7033738,-71.1843882],[100.7032333,-71.1827766],[100.7057299,-71.1827539],[100.7055891,-71.1811423],[100.7080855,-71.1811196],[100.7079446,-71.179508],[100.7128662,-71.1786567],[100.7127249,-71.1770451],[100.7152207,-71.1770223],[100.7150792,-71.1754107],[100.7199995,-71.1745591],[100.7198577,-71.1729476],[100.722353,-71.1729247],[100.7222109,-71.1713131],[100.724706,-71.1712901],[100.7245638,-71.1696786],[100.7294822,-71.1688268],[100.7293396,-71.1672152],[100.7341857,-71.1655575],[100.7340428,-71.163946],[100.7389594,-71.163094],[100.7388161,-71.1614824],[100.74366,-71.1598245],[100.7435163,-71.1582129],[100.748431,-71.1573607],[100.748287,-71.1557491],[100.7531286,-71.1540909],[100.7529842,-71.1524794],[100.7578971,-71.1516269],[100.7577523,-71.1500153],[100.7625917,-71.1483569],[100.7624466,-71.1467454],[100.7673576,-71.1458926],[100.7672121,-71.1442811],[100.7720493,-71.1426224],[100.7719035,-71.1410109],[100.7768126,-71.1401579],[100.7766664,-71.1385464],[100.7815014,-71.1368875],[100.7813548,-71.1352759],[100.7862621,-71.1344227],[100.7861152,-71.1328112],[100.7886052,-71.1327874],[100.7884581,-71.1311758],[100.7933641,-71.1303224],[100.7932166,-71.1287109],[100.7957061,-71.128687],[100.7955584,-71.1270755],[100.7980478,-71.1270516],[100.7978999,-71.12544],[100.802804,-71.1245864],[100.8026558,-71.1229748],[100.8074847,-71.1213153],[100.8073361,-71.1197038],[100.8122384,-71.1188498],[100.8120895,-71.1172383],[100.8169162,-71.1155785],[100.8167669,-71.113967],[100.8216673,-71.1131129],[100.8215176,-71.1115014],[100.8263422,-71.1098413],[100.8261922,-71.1082298],[100.8310907,-71.1073754],[100.8309403,-71.1057639],[100.8357627,-71.1041036],[100.8356119,-71.1024921],[100.8405087,-71.1016375],[100.8403575,-71.100026],[100.8451777,-71.0983655],[100.8450262,-71.096754],[100.8499211,-71.0958991],[100.8497692,-71.0942876],[100.8522543,-71.094263],[100.8521023,-71.0926515],[100.8569959,-71.0917964],[100.8568435,-71.0901849],[100.859328,-71.0901602],[100.8591754,-71.0885487],[100.8616598,-71.088524],[100.861507,-71.0869125],[100.8663988,-71.0860572],[100.8662456,-71.0844457],[100.8710598,-71.0827845],[100.8709063,-71.0811731],[100.8757962,-71.0803175],[100.8756424,-71.078706],[100.8804543,-71.0770446],[100.8803001,-71.0754331],[100.8851882,-71.0745773],[100.8850336,-71.0729659],[100.887516,-71.0729408],[100.8873612,-71.0713293],[100.8898434,-71.0713042],[100.8896884,-71.0696927],[100.8945747,-71.0688367],[100.8944194,-71.0672252],[100.8992269,-71.0655633],[100.8990713,-71.0639519],[100.9039557,-71.0630956],[100.9037997,-71.0614841],[100.9086051,-71.059822],[100.9084487,-71.0582106],[100.9133312,-71.057354],[100.9131745,-71.0557426],[100.9156547,-71.0557171],[100.9154978,-71.0541057],[100.920379,-71.0532489],[100.9202217,-71.0516375],[100.9250233,-71.0499749],[100.9248657,-71.0483635],[100.9297451,-71.0475065],[100.9295871,-71.0458951],[100.9343865,-71.0442323],[100.9342282,-71.0426209],[100.9391058,-71.0417637],[100.9389471,-71.0401523],[100.9437443,-71.0384892],[100.9435852,-71.0368778],[100.948461,-71.0360204],[100.9483016,-71.034409],[100.950779,-71.034383],[100.9506194,-71.0327716],[100.9530966,-71.0327457],[100.9529368,-71.0311343],[100.9578107,-71.0302766],[100.9576506,-71.0286652],[100.9601273,-71.0286391],[100.959967,-71.0270277],[100.9648396,-71.0261698],[100.9646789,-71.0245585],[100.9694702,-71.0228947],[100.9693092,-71.0212834],[100.97418,-71.0204252],[100.9740186,-71.0188139],[100.976494,-71.0187876],[100.9763325,-71.0171762],[100.9788077,-71.0171499],[100.9786459,-71.0155385],[100.9835149,-71.0146802],[100.9833528,-71.0130688],[100.9858275,-71.0130424],[100.9856652,-71.011431],[100.9881397,-71.0114046],[100.9879773,-71.0097933],[100.9928444,-71.0089346],[100.9926816,-71.0073233],[100.9974663,-71.0056588],[100.9973032,-71.0040475],[101.0021685,-71.0031886],[101.002005,-71.0015773],[101.0067875,-70.9999126],[101.0066237,-70.9983013],[101.0114871,-70.9974422],[101.0113229,-70.9958308],[101.0161033,-70.9941659],[101.0159388,-70.9925546],[101.0208004,-70.9916952],[101.0206355,-70.9900839],[101.0254137,-70.9884188],[101.0252484,-70.9868074],[101.0301083,-70.9859478],[101.0299427,-70.9843365],[101.0371064,-70.9818384],[101.0369403,-70.9802271],[101.0394107,-70.9802],[101.0392444,-70.9785887],[101.0417147,-70.9785615],[101.0415482,-70.9769502],[101.0439349,-70.9761174],[101.05094138620392,-70.9772298866258],[101.0517701,-70.9767262],[101.6346104294454,-71.0709876780287],[101.82725405576103,-71.10197031734187]]]},"collection":"aster-l1t","properties":{"created":"2015-05-18T20:21:48.355000Z","datetime":"2006-12-27T02:03:04.964000Z","platform":"terra","proj:epsg":32647,"instruments":["aster"],"eo:cloud_cover":1.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":56.098572,"view:sun_elevation":34.78655,"aster:processing_number":"111217","aster:lower_left_quad_cloud_cover":0.0,"aster:upper_left_quad_cloud_cover":0.0,"aster:lower_right_quad_cloud_cover":1.0,"aster:upper_right_quad_cloud_cover":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"AST_L1T_00312272006020256_20150518201805","bbox":[101.0170108,-71.2492194,103.3844764,-70.4976888],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006020256_20150518201805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006020256_20150518201805","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020256_20150518201805_110648.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[350909.99723753845,-7909289.999158934,444329.9999978208,-7821989.999044152],"proj:shape":[971,1039],"proj:transform":[89.91338090498785,0.0,350909.99723753845,0.0,-89.90731216764344,-7821989.999044152,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020256_20150518201805_110648.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020256_20150518201805_110648.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[350909.99723753845,-7909289.999158934,444329.9999978208,-7821989.999044152],"proj:shape":[2911,3115],"proj:transform":[29.99037006750638,0.0,350909.99723753845,0.0,-29.989694302570175,-7821989.999044152,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020256_20150518201805_110648.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[350909.99723753845,-7909289.999158934,444329.9999978208,-7821989.999044152],"proj:shape":[5821,6229],"proj:transform":[14.997592351947723,0.0,350909.99723753845,0.0,-14.99742314289328,-7821989.999044152,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006020256_20150518201805&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020256_20150518201805_110648_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020256_20150518201805_110648_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006020256_20150518201805&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[102.58177189228145,-70.62220422364679],[103.20841400187894,-70.71938040573197],[103.2085769,-70.719382],[103.20879551994136,-70.71943956943663],[103.22505729026409,-70.72196135456679],[103.2254335,-70.721965],[103.22593955274782,-70.72209817093845],[103.24169026888782,-70.72454070462099],[103.2422944,-70.7245465],[103.24310899669815,-70.72476071305948],[103.32879671580692,-70.7380486891898],[103.3725201,-70.7442938],[103.3773385,-70.7451428],[103.37730050674232,-70.74561165018171],[103.3844764,-70.7467218],[103.0149306,-70.9957171],[102.6277616,-71.2492194],[102.60372086777352,-71.24579636726426],[102.6028857,-71.2463434],[102.55144057297275,-71.23835245254271],[102.5217748,-71.2341285],[102.0195362,-71.1563048],[101.91812092920487,-71.13997920925506],[101.8101987,-71.1232157],[101.0220148,-70.9957259],[101.02397645215919,-70.9945052251093],[101.0170108,-70.9934086],[101.0196408,-70.9926573],[101.0199654,-70.991049],[101.0224328,-70.9911018],[101.0229193,-70.9886893],[101.0281774,-70.9871866],[101.0285012,-70.9855782],[101.030968,-70.9856309],[101.0312915,-70.9840226],[101.0337581,-70.9840753],[101.034243,-70.9816627],[101.0367093,-70.9817154],[101.0370323,-70.980107],[101.0394984,-70.9801596],[101.0398212,-70.9785512],[101.0478631,-70.9754921],[101.0483461,-70.9730795],[101.0508113,-70.973132],[101.0539196,-70.9699676],[101.0563844,-70.97002],[101.0567057,-70.9684116],[101.0591703,-70.968464],[101.0596518,-70.9660513],[101.0621161,-70.9661037],[101.0624368,-70.9644952],[101.0704695,-70.9614351],[101.0709493,-70.9590224],[101.0734129,-70.9590746],[101.0737325,-70.9574661],[101.0817606,-70.9544055],[101.0820794,-70.952797],[101.0845422,-70.9528491],[101.0850202,-70.9504363],[101.0874827,-70.9504884],[101.087801,-70.9488798],[101.0958234,-70.9458186],[101.0962997,-70.9434058],[101.0987614,-70.9434577],[101.0990787,-70.9418492],[101.1043185,-70.9403442],[101.1046353,-70.9387357],[101.1070965,-70.9387874],[101.107413,-70.9371789],[101.1098739,-70.9372306],[101.1103483,-70.9348178],[101.112809,-70.9348695],[101.113125,-70.9332609],[101.1211371,-70.9301985],[101.1216099,-70.9277857],[101.1240697,-70.9278372],[101.127159,-70.9246715],[101.1296185,-70.924723],[101.1299329,-70.9231144],[101.1323922,-70.9231658],[101.1327064,-70.9215572],[101.1351655,-70.9216086],[101.1356364,-70.9191956],[101.1380952,-70.919247],[101.1411809,-70.916081],[101.1436393,-70.9161323],[101.1439525,-70.9145237],[101.1464107,-70.9145749],[101.1468801,-70.912162],[101.149338,-70.9122131],[101.1496506,-70.9106045],[101.1521084,-70.9106557],[101.1524208,-70.909047],[101.160417,-70.9059829],[101.1608844,-70.9035699],[101.1633413,-70.9036209],[101.1664205,-70.9004546],[101.1688771,-70.9005055],[101.1691879,-70.8988968],[101.1716443,-70.8989477],[101.1721102,-70.8965347],[101.1745663,-70.8965855],[101.1748766,-70.8949768],[101.1773325,-70.8950276],[101.1776425,-70.893419],[101.1856285,-70.8903537],[101.1860925,-70.8879407],[101.1885475,-70.8879913],[101.1888566,-70.8863826],[101.196838,-70.8833169],[101.1971463,-70.8817082],[101.1996006,-70.8817587],[101.2000626,-70.8793456],[101.2025167,-70.8793961],[101.2028244,-70.8777873],[101.2108002,-70.874721],[101.2112607,-70.8723079],[101.2137139,-70.8723582],[101.2140206,-70.8707494],[101.2219918,-70.8676826],[101.2222978,-70.8660738],[101.2247503,-70.866124],[101.2252089,-70.8637108],[101.2276611,-70.863761],[101.2279665,-70.8621522],[101.2359321,-70.8590847],[101.2363891,-70.8566715],[101.2388405,-70.8567215],[101.2391449,-70.8551127],[101.2443512,-70.8536037],[101.2446552,-70.8519949],[101.247106,-70.8520448],[101.2474097,-70.8504359],[101.2498603,-70.8504858],[101.2503154,-70.8480725],[101.2527657,-70.8481223],[101.2530689,-70.8465135],[101.2610243,-70.8434449],[101.2614779,-70.8410317],[101.2639274,-70.8410813],[101.2642296,-70.8394724],[101.2721805,-70.8364034],[101.2724818,-70.8347945],[101.2749306,-70.834844],[101.2753823,-70.8324307],[101.2778308,-70.8324802],[101.2781316,-70.8308713],[101.2860769,-70.8278016],[101.2865271,-70.8253883],[101.2889748,-70.8254376],[101.2892746,-70.8238287],[101.2917221,-70.8238779],[101.2920217,-70.822269],[101.2999614,-70.8191987],[101.3004097,-70.8167854],[101.3028563,-70.8168345],[101.3031549,-70.8152255],[101.3110901,-70.8121548],[101.3115368,-70.8097414],[101.3139826,-70.8097903],[101.3170231,-70.8066213],[101.3194685,-70.8066702],[101.3197656,-70.8050613],[101.3222108,-70.8051101],[101.3225077,-70.8035011],[101.3249527,-70.80355],[101.3253976,-70.8011365],[101.3278423,-70.8011853],[101.3308793,-70.7980161],[101.3333237,-70.7980648],[101.3336195,-70.7964558],[101.3360638,-70.7965044],[101.3365071,-70.7940909],[101.338951,-70.7941396],[101.3419851,-70.7909701],[101.3444287,-70.7910187],[101.3447235,-70.7894097],[101.3471669,-70.7894582],[101.3474615,-70.7878492],[101.3499047,-70.7878977],[101.3503461,-70.7854841],[101.3527891,-70.7855326],[101.3558196,-70.7823629],[101.3582622,-70.7824113],[101.3585557,-70.7808023],[101.3609981,-70.7808506],[101.3614381,-70.778437],[101.3638801,-70.7784853],[101.3669079,-70.7753155],[101.3693496,-70.7753637],[101.3696422,-70.7737546],[101.3720837,-70.7738028],[101.372376,-70.7721938],[101.3748174,-70.7722419],[101.3752554,-70.7698283],[101.3776965,-70.7698764],[101.3779883,-70.7682673],[101.3804292,-70.7683154],[101.3807207,-70.7667063],[101.3886246,-70.7636321],[101.3890608,-70.7612185],[101.3915009,-70.7612664],[101.3917914,-70.7596573],[101.3996908,-70.7565826],[101.4001255,-70.754169],[101.4025648,-70.7542167],[101.4055826,-70.7510462],[101.4080215,-70.7510939],[101.4083105,-70.7494848],[101.4107492,-70.7495325],[101.411038,-70.7479233],[101.4134765,-70.747971],[101.4139093,-70.7455572],[101.4163475,-70.7456048],[101.4193619,-70.7424341],[101.4217998,-70.7424816],[101.4220875,-70.7408724],[101.4245252,-70.7409199],[101.4249565,-70.7385062],[101.4273939,-70.7385536],[101.4276812,-70.7369444],[101.4301184,-70.7369919],[101.4304054,-70.7353827],[101.4382893,-70.7323063],[101.4387188,-70.7298925],[101.4411551,-70.7299398],[101.4441632,-70.7267686],[101.4465992,-70.7268158],[101.4468847,-70.7252066],[101.4493206,-70.7252537],[101.4497485,-70.7228399],[101.4521841,-70.722887],[101.4524691,-70.7212778],[101.460344,-70.7182005],[101.4606283,-70.7165912],[101.4630632,-70.7166382],[101.4634893,-70.7142243],[101.4659238,-70.7142713],[101.4662076,-70.712662],[101.474077,-70.7095841],[101.4745016,-70.7071702],[101.4769353,-70.707217],[101.4772181,-70.7056077],[101.4796517,-70.7056545],[101.4799342,-70.7040452],[101.4877982,-70.7009666],[101.4882209,-70.6985527],[101.4906536,-70.6985993],[101.493649,-70.6954273],[101.4960814,-70.6954738],[101.4963624,-70.6938645],[101.4987946,-70.693911],[101.4992159,-70.691497],[101.5016477,-70.6915435],[101.5019283,-70.6899342],[101.5070719,-70.6884176],[101.507352,-70.6868083],[101.5097833,-70.6868547],[101.5100632,-70.6852453],[101.5124943,-70.6852916],[101.5129137,-70.6828776],[101.5153446,-70.6829239],[101.5156239,-70.6813146],[101.5207643,-70.6797976],[101.5210431,-70.6781883],[101.5234735,-70.6782345],[101.5238914,-70.6758204],[101.5263214,-70.6758665],[101.5293078,-70.6726939],[101.5317375,-70.67274],[101.5320153,-70.6711306],[101.5344448,-70.6711766],[101.5347225,-70.6695672],[101.5371518,-70.6696132],[101.5375679,-70.6671991],[101.5399969,-70.6672451],[101.540274,-70.6656357],[101.5481136,-70.6625545],[101.54839,-70.6609451],[101.5508184,-70.6609909],[101.5512326,-70.6585768],[101.5536606,-70.6586225],[101.5539365,-70.6570131],[101.5617707,-70.6539313],[101.5621834,-70.6515172],[101.5646106,-70.6515628],[101.5648855,-70.6499534],[101.5673126,-70.649999],[101.5675873,-70.6483895],[101.5754159,-70.6453071],[101.5758268,-70.642893],[101.5782531,-70.6429384],[101.5785267,-70.6413289],[101.586351,-70.6382461],[101.5867604,-70.6358319],[101.5891858,-70.6358771],[101.5894585,-70.6342677],[101.5972783,-70.6311843],[101.5975503,-70.6295748],[101.599975,-70.62962],[101.6003826,-70.6272057],[101.602807,-70.6272508],[101.6030785,-70.6256413],[101.6055027,-70.6256864],[101.608469,-70.6225124],[101.6108929,-70.6225574],[101.6111636,-70.6209479],[101.6135873,-70.6209928],[101.6139931,-70.6185786],[101.6164165,-70.6186235],[101.6166868,-70.6170139],[101.6244957,-70.6139294],[101.6249,-70.6115151],[101.6273226,-70.6115599],[101.6275919,-70.6099503],[101.6327055,-70.6084302],[101.6329743,-70.6068206],[101.6353964,-70.6068653],[101.635665,-70.6052557],[101.6380868,-70.6053004],[101.6384893,-70.602886],[101.6409109,-70.6029306],[101.641179,-70.601321],[101.6436003,-70.6013656],[101.6438682,-70.599756],[101.6516663,-70.5966703],[101.6520669,-70.5942559],[101.6544875,-70.5943003],[101.6547544,-70.5926907],[101.6598616,-70.5911698],[101.660128,-70.5895602],[101.662548,-70.5896045],[101.6629473,-70.5871901],[101.665367,-70.5872344],[101.6656329,-70.5856248],[101.6680525,-70.585669],[101.671003,-70.5824939],[101.6734222,-70.5825381],[101.6736874,-70.5809285],[101.6761064,-70.5809726],[101.6765038,-70.5785581],[101.6789226,-70.5786022],[101.6791873,-70.5769926],[101.6816058,-70.5770366],[101.6845529,-70.5738613],[101.6869711,-70.5739053],[101.6872351,-70.5722957],[101.6896531,-70.5723396],[101.6900487,-70.5699251],[101.6924665,-70.569969],[101.69273,-70.5683593],[101.7005084,-70.5652715],[101.7009026,-70.562857],[101.7033195,-70.5629007],[101.703582,-70.561291],[101.7059988,-70.5613347],[101.7089397,-70.5581591],[101.7113561,-70.5582027],[101.7116179,-70.556593],[101.7140341,-70.5566366],[101.7144265,-70.5542221],[101.7168424,-70.5542656],[101.7171037,-70.5526559],[101.7248724,-70.549567],[101.7252633,-70.5471524],[101.7276784,-70.5471959],[101.7306138,-70.5440198],[101.7330286,-70.5440632],[101.7332885,-70.5424534],[101.735703,-70.5424967],[101.7359627,-70.540887],[101.7383771,-70.5409303],[101.7387662,-70.5385157],[101.7411803,-70.5385589],[101.7441123,-70.5353826],[101.7465261,-70.5354258],[101.7467848,-70.5338161],[101.7491984,-70.5338592],[101.7494568,-70.5322494],[101.7518702,-70.5322925],[101.7522576,-70.5298779],[101.7546707,-70.5299209],[101.7549286,-70.5283112],[101.7626822,-70.5252206],[101.763068,-70.5228059],[101.7654803,-70.5228488],[101.7684063,-70.5196722],[101.7708182,-70.519715],[101.7710747,-70.5181052],[101.7734865,-70.518148],[101.7737428,-70.5165382],[101.7761544,-70.516581],[101.7765385,-70.5141663],[101.7789498,-70.514209],[101.7792056,-70.5125992],[101.7869494,-70.5095076],[101.7873321,-70.5070929],[101.7897425,-70.5071354],[101.7926624,-70.5039583],[101.7950725,-70.5040008],[101.7953269,-70.502391],[101.7977368,-70.5024335],[101.797991,-70.5008237],[101.8004008,-70.5008661],[101.8007817,-70.4984514],[101.803318,-70.4976888],[101.810126262177,-70.49874915836004],[101.8107087,-70.4983766],[102.43269665267461,-70.59838547870469],[102.58177189228145,-70.62220422364679]]]},"collection":"aster-l1t","properties":{"created":"2015-05-18T20:21:33.481000Z","datetime":"2006-12-27T02:02:56.086000Z","platform":"terra","proj:epsg":32648,"instruments":["aster"],"eo:cloud_cover":0.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":55.683045,"view:sun_elevation":35.375009,"aster:processing_number":"110648","aster:lower_left_quad_cloud_cover":0.0,"aster:upper_left_quad_cloud_cover":0.0,"aster:lower_right_quad_cloud_cover":0.0,"aster:upper_right_quad_cloud_cover":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"AST_L1T_00312272006013731_20150518201743","bbox":[135.6292203,19.4628434,136.35498,20.1057071],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006013731_20150518201743"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006013731_20150518201743","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013731_20150518201743_110808.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[561869.9999999658,2151269.9999983804,645030.0000007269,2224619.999997964],"proj:shape":[816,925],"proj:transform":[89.90270270352553,0.0,561869.9999999658,0.0,-89.88970588184277,2224619.999997964,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013731_20150518201743_110808.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013731_20150518201743_110808.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[561869.9999999658,2151269.9999983804,645030.0000007269,2224619.999997964],"proj:shape":[2446,2773],"proj:transform":[29.989181392268705,0.0,561869.9999999658,0.0,-29.987735077507644,2224619.999997964,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013731_20150518201743_110808.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[561869.9999999658,2151269.9999983804,645030.0000007269,2224619.999997964],"proj:shape":[4891,5545],"proj:transform":[14.997294860371708,0.0,561869.9999999658,0.0,-14.996933142421529,2224619.999997964,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006013731_20150518201743&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013731_20150518201743_110808_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013731_20150518201743_110808_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006013731_20150518201743&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[136.34289821571912,20.020720623833395],[136.35498,20.0189697],[136.2251696,19.4628434],[136.21324947864323,19.46457187143399],[136.2131502,19.464146],[135.6323929,19.5485524],[135.63275314271402,19.5501201980803],[135.6292203,19.5506338],[135.7569616,20.1049213],[135.76012804723007,20.1044634866618],[135.7604138,20.1057071],[136.3429491,20.0209389],[136.34289821571912,20.020720623833395]]]},"collection":"aster-l1t","properties":{"created":"2015-05-18T20:21:37.680000Z","datetime":"2006-12-27T01:37:31.718000Z","platform":"terra","proj:epsg":32653,"instruments":["aster"],"eo:cloud_cover":100.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":155.089912,"view:sun_elevation":42.752652,"aster:processing_number":"110808","aster:lower_left_quad_cloud_cover":100.0,"aster:upper_left_quad_cloud_cover":100.0,"aster:lower_right_quad_cloud_cover":100.0,"aster:upper_right_quad_cloud_cover":100.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"AST_L1T_00312272006013722_20150518201738","bbox":[135.7518298,19.9964726,136.4799012,20.6392677],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006013722_20150518201738"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006013722_20150518201738","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013722_20150518201738_109349.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[574379.9999999411,2210399.9999980354,657630.0000012475,2283749.9999975613],"proj:shape":[816,926],"proj:transform":[89.90280777678878,0.0,574379.9999999411,0.0,-89.889705881772,2283749.9999975613,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013722_20150518201738_109349.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013722_20150518201738_109349.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[574379.9999999411,2210399.9999980354,657630.0000012475,2283749.9999975613],"proj:shape":[2446,2776],"proj:transform":[29.989193084044096,0.0,574379.9999999411,0.0,-29.98773507748404,2283749.9999975613,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013722_20150518201738_109349.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[574379.9999999411,2210399.9999980354,657630.0000012475,2283749.9999975613],"proj:shape":[4891,5551],"proj:transform":[14.997297784418377,0.0,574379.9999999411,0.0,-14.996933142409723,2283749.9999975613,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006013722_20150518201738&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013722_20150518201738_109349_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013722_20150518201738_109349_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006013722_20150518201738&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[136.46780693887987,20.55417166425732],[136.4799012,20.5524262],[136.349385,19.9964726],[136.33748375966826,19.998191668092826],[136.3373251,19.9975148],[135.77846976452852,20.078938136166784],[135.7604534,20.0815405],[135.7604584318643,20.081562326545306],[135.7547289,20.0823971],[135.75491902937964,20.083220901667566],[135.7518298,20.0836675],[135.8796442,20.6386211],[135.88298967960566,20.63813153893669],[135.8832519,20.6392677],[136.4678302,20.5542709],[136.46780693887987,20.55417166425732]]]},"collection":"aster-l1t","properties":{"created":"2015-05-18T20:19:38.498000Z","datetime":"2006-12-27T01:37:22.872000Z","platform":"terra","proj:epsg":32653,"instruments":["aster"],"eo:cloud_cover":100.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":155.455599,"view:sun_elevation":42.167341,"aster:processing_number":"109349","aster:lower_left_quad_cloud_cover":100.0,"aster:upper_left_quad_cloud_cover":100.0,"aster:lower_right_quad_cloud_cover":100.0,"aster:upper_right_quad_cloud_cover":100.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"AST_L1T_00312272006013714_20150518201738","bbox":[135.8753434,20.5299346,136.6058142,21.1732176],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006013714_20150518201738"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006013714_20150518201738","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013714_20150518201738_109352.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[586979.9999999678,2269619.999997638,670140.0000023331,2342879.9999970975],"proj:shape":[815,925],"proj:transform":[89.90270270525981,0.0,586979.9999999678,0.0,-89.88957055148389,2342879.9999970975,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013714_20150518201738_109352.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013714_20150518201738_109352.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[586979.9999999678,2269619.999997638,670140.0000023331,2342879.9999970975],"proj:shape":[2443,2773],"proj:transform":[29.989181392847215,0.0,586979.9999999678,0.0,-29.987720016152014,2342879.9999970975,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013714_20150518201738_109352.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[586979.9999999678,2269619.999997638,670140.0000023331,2342879.9999970975],"proj:shape":[4885,5545],"proj:transform":[14.997294860661015,0.0,586979.9999999678,0.0,-14.996929375529042,2342879.9999970975,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"qa-txt":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013714_20150518201738_109352_QA.txt","type":"text/plain","roles":["metadata"],"title":"QA browse file","description":"Geometric quality assessment report."},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006013714_20150518201738&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013714_20150518201738_109352_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013714_20150518201738_109352_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006013714_20150518201738&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[136.59362214205737,21.087477258797247],[136.6058142,21.0857071],[136.4745514,20.5299346],[136.46269134748107,20.53165230342284],[136.4625983,20.5312573],[135.91722204326257,20.610653175418523],[135.8837035,20.6155077],[135.8837091276481,20.615531985671385],[135.8779603,20.6163689],[135.87828216514689,20.617756017831883],[135.8753434,20.618182],[136.0032642,21.1729815],[136.0069904924415,21.172440542179235],[136.0071708,21.1732176],[136.5937062,21.0878341],[136.59362214205737,21.087477258797247]]]},"collection":"aster-l1t","properties":{"created":"2015-05-18T20:20:08.349000Z","datetime":"2006-12-27T01:37:14.025000Z","platform":"terra","proj:epsg":32653,"instruments":["aster"],"eo:cloud_cover":83.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":155.634358,"view:sun_elevation":42.051896,"aster:processing_number":"109352","aster:lower_left_quad_cloud_cover":75.0,"aster:upper_left_quad_cloud_cover":62.0,"aster:lower_right_quad_cloud_cover":100.0,"aster:upper_right_quad_cloud_cover":95.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"AST_L1T_00312272006013705_20150517144401","bbox":[135.9989222,21.0634942,136.7321884,21.7068767],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006013705_20150517144401"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006013705_20150517144401","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013705_20150517144401_98387.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[599490.00000004,2328839.99999718,682650.0000039825,2402009.999996572],"proj:shape":[814,925],"proj:transform":[89.90270270696476,0.0,599490.00000004,0.0,-89.88943488868777,2402009.999996572,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013705_20150517144401_98387.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013705_20150517144401_98387.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[599490.00000004,2328839.99999718,682650.0000039825,2402009.999996572],"proj:shape":[2440,2773],"proj:transform":[29.98918139341594,0.0,599490.00000004,0.0,-29.987704917783542,2402009.999996572,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013705_20150517144401_98387.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[599490.00000004,2328839.99999718,682650.0000039825,2402009.999996572],"proj:shape":[4879,5545],"proj:transform":[14.997294860945429,0.0,599490.00000004,0.0,-14.996925599383449,2402009.999996572,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006013705_20150517144401&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013705_20150517144401_98387_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013705_20150517144401_98387_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006013705_20150517144401&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[136.7201516677758,21.621093290948348],[136.7321884,21.6193515],[136.6004244,21.0634942],[136.5884133603321,21.065233175340765],[136.5882856,21.0646941],[136.01372462430044,21.14843742478178],[136.0075997,21.1493242],[136.00760103708072,21.14932994894381],[136.0016927,21.1501911],[136.0019501745728,21.15129666139916],[135.9989222,21.1517368],[136.127845,21.7055583],[136.13092876424946,21.705113484976614],[136.1313394,21.7068767],[136.7201812,21.6212179],[136.7201516677758,21.621093290948348]]]},"collection":"aster-l1t","properties":{"created":"2015-05-17T14:47:46.098000Z","datetime":"2006-12-27T01:37:05.179000Z","platform":"terra","proj:epsg":32653,"instruments":["aster"],"eo:cloud_cover":65.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":155.848171,"view:sun_elevation":41.5781,"aster:processing_number":"98387","aster:lower_left_quad_cloud_cover":58.0,"aster:upper_left_quad_cloud_cover":29.0,"aster:lower_right_quad_cloud_cover":98.0,"aster:upper_right_quad_cloud_cover":77.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"AST_L1T_00312272006013656_20150517144401","bbox":[136.1226093,21.5968757,136.8593423,22.2405053],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006013656_20150517144401"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006013656_20150517144401","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013656_20150517144401_98385.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[612000.0000000909,2387969.9999966426,695070.0000067172,2461229.9999959613],"proj:shape":[815,924],"proj:transform":[89.90259740976866,0.0,612000.0000000909,0.0,-89.88957055131134,2461229.9999959613,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013656_20150517144401_98385.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013656_20150517144401_98385.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[612000.0000000909,2387969.9999966426,695070.0000067172,2461229.9999959613],"proj:shape":[2443,2770],"proj:transform":[29.989169677482398,0.0,612000.0000000909,0.0,-29.98772001609445,2461229.9999959613,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013656_20150517144401_98385.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[612000.0000000909,2387969.9999966426,695070.0000067172,2461229.9999959613],"proj:shape":[4885,5539],"proj:transform":[14.997291931147544,0.0,612000.0000000909,0.0,-14.996929375500253,2461229.9999959613,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006013656_20150517144401&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013656_20150517144401_98385_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013656_20150517144401_98385_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006013656_20150517144401&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[136.8474042710693,22.154269905933756],[136.8593423,22.152537],[136.7267509,21.5968757],[136.7148389234011,21.598605440650214],[136.714715,21.598086],[136.1259621,21.6837209],[136.12635632678385,21.685403996318687],[136.1226093,21.6859495],[136.2525878,22.2404107],[136.256229369572,22.23987885488421],[136.2563761,22.2405053],[136.8474386,22.1544138],[136.8474042710693,22.154269905933756]]]},"collection":"aster-l1t","properties":{"created":"2015-05-17T14:47:30.923000Z","datetime":"2006-12-27T01:36:56.334000Z","platform":"terra","proj:epsg":32653,"instruments":["aster"],"eo:cloud_cover":15.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":156.204691,"view:sun_elevation":40.989492,"aster:processing_number":"98385","aster:lower_left_quad_cloud_cover":9.0,"aster:upper_left_quad_cloud_cover":4.0,"aster:lower_right_quad_cloud_cover":30.0,"aster:upper_right_quad_cloud_cover":18.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"AST_L1T_00312272006013647_20150517144406","bbox":[136.2481687,22.1297987,136.9870275,22.7738293],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006013647_20150517144406"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006013647_20150517144406","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013647_20150517144406_98532.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[624420.0000002224,2447189.9999960246,707490.0000108664,2520359.99999528],"proj:shape":[814,924],"proj:transform":[89.90259741411698,0.0,624420.0000002224,0.0,-89.88943488852016,2520359.99999528,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013647_20150517144406_98532.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013647_20150517144406_98532.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[624420.0000002224,2447189.9999960246,707490.0000108664,2520359.99999528],"proj:shape":[2440,2770],"proj:transform":[29.989169678932882,0.0,624420.0000002224,0.0,-29.987704917727626,2520359.99999528,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013647_20150517144406_98532.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[624420.0000002224,2447189.9999960246,707490.0000108664,2520359.99999528],"proj:shape":[4879,5539],"proj:transform":[14.997291931872917,0.0,624420.0000002224,0.0,-14.996925599355484,2520359.99999528,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006013647_20150517144406&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013647_20150517144406_98532_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013647_20150517144406_98532_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006013647_20150517144406&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[136.97501587832852,22.68727360838555],[136.9870275,22.6855298],[136.8538547,22.1297987],[136.8418694317007,22.13153822363808],[136.841778,22.1311566],[136.2508072,22.2172225],[136.25116419485636,22.21874017087905],[136.2481687,22.2191782],[136.3783597,22.7726519],[136.38135866394646,22.772228129674243],[136.3817353,22.7738293],[136.9750832,22.6875546],[136.97501587832852,22.68727360838555]]]},"collection":"aster-l1t","properties":{"created":"2015-05-17T14:47:42.756000Z","datetime":"2006-12-27T01:36:47.488000Z","platform":"terra","proj:epsg":32653,"instruments":["aster"],"eo:cloud_cover":12.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":156.556926,"view:sun_elevation":40.400227,"aster:processing_number":"98532","aster:lower_left_quad_cloud_cover":11.0,"aster:upper_left_quad_cloud_cover":12.0,"aster:lower_right_quad_cloud_cover":7.0,"aster:upper_right_quad_cloud_cover":17.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items"},{"rel":"next","type":"application/geo+json","method":"GET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items?collections=aster-l1t&token=next:aster-l1t:AST_L1T_00312272006013647_20150517144406"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '21773' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:50:54 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125053Z-167d46d96d8kf92xhC1DEN2fsg0000000scg0000000044y7 status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_collection_client/TestCollectionClient.test_get_items.yaml000066400000000000000000005671101503646565400342130ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/item-search"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3360' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:43 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125043Z-167d46d96d8t4qtmhC1DENgtus0000000rhg000000005tc1 status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/item-search"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3360' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:44 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125043Z-167d46d96d8472cmhC1DENpsfg0000000s60000000003zff status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t response: body: string: '{"id":"aster-l1t","type":"Collection","links":[{"rel":"items","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"license","href":"https://www.usgs.gov/core-science-systems/hdds/data-policy","title":"Public Domain"},{"rel":"describedby","href":"https://planetarycomputer.microsoft.com/dataset/aster-l1t","type":"text/html","title":"Human readable dataset overview and reference"},{"rel":"describedby","href":"https://planetarycomputer.microsoft.com/dataset/aster-l1t","title":"Human readable dataset overview and reference","type":"text/html"}],"title":"ASTER L1T","assets":{"thumbnail":{"href":"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/aster.png","type":"image/png","roles":["thumbnail"],"title":"ASTER L1T"},"geoparquet-items":{"href":"abfs://items/aster-l1t.parquet","type":"application/x-parquet","roles":["stac-items"],"title":"GeoParquet STAC items","description":"Snapshot of the collection''s STAC items exported to GeoParquet format.","msft:partition_info":{"is_partitioned":true,"partition_frequency":"AS"},"table:storage_options":{"account_name":"pcstacitems"}}},"extent":{"spatial":{"bbox":[[-180,-90,180,90]]},"temporal":{"interval":[["2000-03-04T12:00:00Z","2006-12-31T12:00:00Z"]]}},"license":"proprietary","keywords":["ASTER","USGS","NASA","Satellite","Global"],"providers":[{"url":"https://terra.nasa.gov/about/terra-instruments/aster","name":"NASA","roles":["producer","licensor"]},{"url":"https://lpdaac.usgs.gov/data/get-started-data/collection-overview/missions/aster-overview/","name":"USGS","roles":["processor","producer","licensor"]},{"url":"https://planetarycomputer.microsoft.com","name":"Microsoft","roles":["host","processor"]}],"summaries":{"gsd":[15,30,90],"eo:bands":[{"gsd":15,"name":"VNIR_Band1","common_name":"green","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"gsd":15,"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"gsd":15,"name":"VNIR_Band3N","common_name":"nir08","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08},{"gsd":30,"name":"SWIR_Band4","common_name":"swir16","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"gsd":30,"name":"SWIR_Band5","common_name":"swir22","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band6","common_name":"swir22","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band7","common_name":"swir22","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"gsd":30,"name":"SWIR_Band8","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"gsd":30,"name":"SWIR_Band9","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07},{"gsd":90,"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"gsd":90,"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"platform":["terra"],"instruments":["aster"]},"description":"The [ASTER](https://terra.nasa.gov/about/terra-instruments/aster) instrument, launched on-board NASA''s [Terra](https://terra.nasa.gov/) satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. ASTER images provide information about land surface temperature, color, elevation, and mineral composition.\n\nThis dataset represents ASTER [L1T](https://lpdaac.usgs.gov/products/ast_l1tv003/) data from 2000-2006. L1T images have been terrain-corrected and rotated to a north-up UTM projection. Images are in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\n","item_assets":{"TIR":{"roles":["data"],"title":"TIR Swath data","eo:bands":[{"gsd":90,"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"gsd":90,"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","eo:bands":[{"gsd":30,"name":"SWIR_Band4","common_name":"swir","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"gsd":30,"name":"SWIR_Band5","common_name":"swir","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band6","common_name":"swir","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band7","common_name":"swir","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"gsd":30,"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"gsd":30,"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","eo:bands":[{"gsd":15,"name":"VNIR_Band1","common_name":"yellow/green","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"gsd":15,"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"gsd":15,"name":"VNIR_Band3N","common_name":"near infrared","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"qa-txt":{"type":"text/plain","roles":["metadata"],"title":"QA browse file","description":"Geometric quality assessment report."},"qa-browse":{"type":"image/jpeg","roles":["thumbnail"],"title":"QA browse file","description":"Single-band black and white reduced resolution browse overlaid with red, green, and blue (RGB) markers for GCPs used during the geometric verification quality check."},"tir-browse":{"type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"}},"stac_version":"1.0.0","msft:container":"aster","stac_extensions":["https://stac-extensions.github.io/item-assets/v1.0.0/schema.json","https://stac-extensions.github.io/table/v1.2.0/schema.json"],"msft:storage_account":"astersa","msft:short_description":"The ASTER instrument, launched on-board NASA''s Terra satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. This dataset contains ASTER data from 2000-2006.","msft:region":"westeurope"}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2034' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:44 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125044Z-167d46d96d8tpvbjhC1DENh2zs0000000sa000000000141m status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items?collections=aster-l1t response: body: string: '{"type":"FeatureCollection","features":[{"id":"AST_L1T_00312272006020322_20150518201805","bbox":[98.5127846,-72.6857366,101.0889206,-71.9245548],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006020322_20150518201805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006020322_20150518201805","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[479159.99999999313,-8068679.999054978,575010.0000364248,-7977509.999048144],"proj:shape":[1014,1066],"proj:transform":[89.91557226682148,0.0,479159.99999999313,0.0,-89.91124261028999,-7977509.999048144,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[479159.99999999313,-8068679.999054978,575010.0000364248,-7977509.999048144],"proj:shape":[3040,3196],"proj:transform":[29.990613277982387,0.0,479159.99999999313,0.0,-29.99013158119541,-7977509.999048144,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[479159.99999999313,-8068679.999054978,575010.0000364248,-7977509.999048144],"proj:shape":[6079,6391],"proj:transform":[14.99765295516065,0.0,479159.99999999313,0.0,-14.997532490020406,-7977509.999048144,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006020322_20150518201805&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006020322_20150518201805&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[99.4688048,-71.9317123],[100.26909013382132,-72.06292754128351],[101.01155411667678,-72.18002518606886],[101.02462934566167,-72.18208319828851],[101.0255115,-72.1821809],[101.02561269773116,-72.18223797573658],[101.0485969157694,-72.1858556409902],[101.0496391,-72.1859631],[101.04977848322952,-72.18604161710383],[101.07552427221498,-72.19009394753702],[101.0791318,-72.1904922],[101.08045471515234,-72.19086998838686],[101.0889206,-72.1922025],[100.6948508,-72.4181531],[100.4452794,-72.5580831],[100.2135876,-72.6857366],[100.18857636208548,-72.68191253382402],[100.1874713,-72.6825262],[100.04421765107804,-72.65984096480142],[99.9604827,-72.6470384],[99.4215044,-72.561242],[99.41958374889319,-72.56092573932061],[99.356,-72.5508568],[98.5159305,-72.4122347],[98.51895554626601,-72.41063665367456],[98.5127846,-72.4096541],[98.5128278,-72.4080421],[98.5154932,-72.4080486],[98.5155361,-72.4064365],[98.5208876,-72.4056434],[98.52093,-72.4040314],[98.5263015,-72.4024322],[98.5263435,-72.4008201],[98.5316928,-72.4000267],[98.5317343,-72.3984147],[98.5343982,-72.398421],[98.5344395,-72.3968089],[98.5371032,-72.3968151],[98.5371442,-72.3952031],[98.5424914,-72.3944094],[98.5425319,-72.3927974],[98.5478982,-72.3911975],[98.5479383,-72.3895855],[98.5532833,-72.3887915],[98.5533229,-72.3871795],[98.5559852,-72.3871855],[98.5560245,-72.3855734],[98.5586866,-72.3855794],[98.5587256,-72.3839673],[98.5640686,-72.3831731],[98.5641072,-72.381561],[98.5694682,-72.3799606],[98.5695064,-72.3783485],[98.5748472,-72.377554],[98.5748848,-72.3759419],[98.5802433,-72.3743412],[98.5802804,-72.3727292],[98.5856191,-72.3719343],[98.5856558,-72.3703223],[98.5883156,-72.3703278],[98.5883521,-72.3687157],[98.5910117,-72.3687212],[98.5910478,-72.3671092],[98.5963844,-72.3663141],[98.5964201,-72.364702],[98.5990792,-72.3647074],[98.5991146,-72.3630953],[98.6017734,-72.3631007],[98.6018086,-72.3614886],[98.6044672,-72.361494],[98.6045021,-72.3598819],[98.609836,-72.3590864],[98.6098705,-72.3574744],[98.6125285,-72.3574796],[98.6125628,-72.3558675],[98.6152205,-72.3558727],[98.6152545,-72.3542606],[98.6205863,-72.3534648],[98.6206198,-72.3518528],[98.6259672,-72.3502508],[98.6260002,-72.3486387],[98.6313299,-72.3478427],[98.6313625,-72.3462306],[98.6367072,-72.3446283],[98.6367393,-72.3430163],[98.6420669,-72.3422199],[98.6420985,-72.3406078],[98.6474407,-72.3390053],[98.6474718,-72.3373932],[98.6527973,-72.3365966],[98.6528279,-72.3349845],[98.6581675,-72.3333817],[98.6581977,-72.3317696],[98.663521,-72.3309727],[98.6635507,-72.3293606],[98.6688878,-72.3277575],[98.668917,-72.3261454],[98.6742382,-72.3253482],[98.6742669,-72.3237361],[98.67692,-72.3237404],[98.6769485,-72.3221283],[98.6796014,-72.3221327],[98.6796296,-72.3205206],[98.6849488,-72.3197231],[98.6849766,-72.318111],[98.6903084,-72.3165073],[98.6903357,-72.3148952],[98.6956527,-72.3140974],[98.6956796,-72.3124853],[98.7010088,-72.3108813],[98.7010352,-72.3092692],[98.7063501,-72.3084711],[98.706376,-72.306859],[98.7117027,-72.3052548],[98.7117281,-72.3036427],[98.7170409,-72.3028443],[98.7170659,-72.3012322],[98.72239,-72.2996276],[98.7224144,-72.2980155],[98.7277251,-72.2972169],[98.7277491,-72.2956048],[98.7303981,-72.2956084],[98.7304219,-72.2939963],[98.7330707,-72.2939999],[98.7330942,-72.2923878],[98.7384028,-72.2915889],[98.7384258,-72.2899768],[98.7437448,-72.2883716],[98.7437674,-72.2867595],[98.7490739,-72.2859603],[98.749096,-72.2843482],[98.7517434,-72.2843515],[98.7517652,-72.2827394],[98.7544124,-72.2827427],[98.754434,-72.2811306],[98.7597384,-72.2803311],[98.7597595,-72.278719],[98.7650734,-72.2771133],[98.765094,-72.2755012],[98.7703964,-72.2747014],[98.7704166,-72.2730893],[98.7730623,-72.2730923],[98.7730823,-72.2714802],[98.7757278,-72.2714833],[98.7757476,-72.2698712],[98.7810478,-72.269071],[98.7810671,-72.2674589],[98.7863758,-72.2658526],[98.7863945,-72.2642405],[98.789039,-72.2642434],[98.7890576,-72.2626313],[98.7943551,-72.2618308],[98.7943732,-72.2602187],[98.7996786,-72.258612],[98.7996963,-72.2569999],[98.8049917,-72.2561992],[98.8050089,-72.2545871],[98.8103117,-72.2529801],[98.8103284,-72.251368],[98.8156218,-72.250567],[98.815638,-72.2489549],[98.8182803,-72.2489573],[98.8182962,-72.2473452],[98.8209383,-72.2473476],[98.820954,-72.2457355],[98.8262453,-72.2449342],[98.8262606,-72.2433221],[98.8315583,-72.2417146],[98.8315731,-72.2401025],[98.8368623,-72.2393009],[98.8368767,-72.2376887],[98.8421719,-72.2360809],[98.8421857,-72.2344688],[98.8474729,-72.2336669],[98.8474862,-72.2320548],[98.8527789,-72.2304467],[98.8527918,-72.2288346],[98.8580768,-72.2280324],[98.8580893,-72.2264203],[98.8633794,-72.2248119],[98.8633914,-72.2231998],[98.8686743,-72.2223973],[98.8686859,-72.2207852],[98.8739734,-72.2191766],[98.8739845,-72.2175644],[98.8792653,-72.2167617],[98.8792759,-72.2151496],[98.8845609,-72.2135406],[98.8845711,-72.2119285],[98.8898499,-72.2111255],[98.8898595,-72.2095134],[98.895142,-72.2079041],[98.8951512,-72.206292],[98.9004279,-72.2054887],[98.9004366,-72.2038766],[98.9057165,-72.202267],[98.9057248,-72.2006549],[98.9109994,-72.1998513],[98.9110072,-72.1982392],[98.9136422,-72.1982404],[98.9136498,-72.1966282],[98.9162846,-72.1966294],[98.9162919,-72.1950173],[98.9215645,-72.1942134],[98.9215714,-72.1926012],[98.9268462,-72.1909912],[98.9268526,-72.189379],[98.9321231,-72.1885749],[98.932129,-72.1869627],[98.9374013,-72.1853524],[98.9374068,-72.1837402],[98.9426752,-72.1829358],[98.9426802,-72.1813236],[98.94795,-72.179713],[98.9479546,-72.1781009],[98.9532209,-72.1772961],[98.953225,-72.175684],[98.9584922,-72.1740731],[98.9584959,-72.1724609],[98.9637601,-72.1716559],[98.9637633,-72.1700438],[98.9663943,-72.1700442],[98.9663972,-72.1684321],[98.969028,-72.1684325],[98.9690307,-72.1668204],[98.9742929,-72.1660151],[98.9742952,-72.164403],[98.9795573,-72.1627915],[98.9795591,-72.1611793],[98.9848193,-72.1603738],[98.9848206,-72.1587616],[98.9900802,-72.1571498],[98.9900811,-72.1555377],[98.9953392,-72.1547318],[98.9953396,-72.1531197],[98.9979682,-72.1531198],[98.9979683,-72.1515076],[99.0005967,-72.1515076],[99.0005966,-72.1498955],[99.0058526,-72.1490893],[99.0058521,-72.1474772],[99.0111067,-72.1458649],[99.0111058,-72.1442527],[99.0163597,-72.1434463],[99.0163583,-72.1418342],[99.0216103,-72.1402215],[99.0216085,-72.1386094],[99.0268603,-72.1378027],[99.026858,-72.1361905],[99.0321075,-72.1345776],[99.0321047,-72.1329655],[99.0373545,-72.1321585],[99.0373513,-72.1305464],[99.0425983,-72.1289331],[99.0425946,-72.127321],[99.0478424,-72.1265137],[99.0478382,-72.1249016],[99.0530827,-72.1232881],[99.0530781,-72.121676],[99.0583238,-72.1208684],[99.0583187,-72.1192563],[99.0609425,-72.1192555],[99.0609371,-72.1176433],[99.0635607,-72.1176425],[99.0635552,-72.1160304],[99.0687988,-72.1152225],[99.0687928,-72.1136104],[99.0714158,-72.1136095],[99.0714095,-72.1119973],[99.0740323,-72.1119964],[99.0740258,-72.1103842],[99.0792674,-72.1095761],[99.0792605,-72.107964],[99.0818827,-72.1079629],[99.0818755,-72.1063507],[99.0844975,-72.1063496],[99.0844901,-72.1047375],[99.0897296,-72.1039291],[99.0897218,-72.102317],[99.0949563,-72.1007023],[99.094948,-72.0990902],[99.1001855,-72.0982815],[99.1001768,-72.0966694],[99.1054087,-72.0950545],[99.1053996,-72.0934424],[99.110635,-72.0926334],[99.1106254,-72.0910213],[99.1132451,-72.0910198],[99.1132353,-72.0894076],[99.1158548,-72.0894061],[99.1158447,-72.087794],[99.1210781,-72.0869847],[99.1210676,-72.0853726],[99.1262945,-72.0837571],[99.1262835,-72.082145],[99.1315148,-72.0813355],[99.1315034,-72.0797233],[99.1367279,-72.0781076],[99.136716,-72.0764955],[99.1419452,-72.0756857],[99.1419329,-72.0740735],[99.1471549,-72.0724575],[99.1471421,-72.0708454],[99.1523693,-72.0700353],[99.152356,-72.0684232],[99.1575755,-72.0668069],[99.1575618,-72.0651947],[99.162787,-72.0643844],[99.1627728,-72.0627722],[99.1679898,-72.0611557],[99.1679752,-72.0595435],[99.1731983,-72.0587329],[99.1731833,-72.0571208],[99.1757983,-72.0571184],[99.175783,-72.0555063],[99.1783977,-72.0555039],[99.1783823,-72.0538918],[99.1836033,-72.0530809],[99.1835874,-72.0514687],[99.1887994,-72.0498516],[99.188783,-72.0482395],[99.194002,-72.0474283],[99.1939852,-72.0458161],[99.1991947,-72.0441987],[99.1991774,-72.0425866],[99.2043944,-72.0417751],[99.2043766,-72.040163],[99.2095836,-72.0385453],[99.2095654,-72.0369332],[99.2147804,-72.0361214],[99.2147618,-72.0345093],[99.2173736,-72.0345064],[99.2173547,-72.0328942],[99.2199663,-72.0328913],[99.2199472,-72.0312792],[99.2251601,-72.0304671],[99.2251406,-72.028855],[99.2277516,-72.028852],[99.2277319,-72.0272398],[99.2303426,-72.0272368],[99.2303227,-72.0256246],[99.2355335,-72.0248123],[99.2355131,-72.0232002],[99.2381233,-72.023197],[99.2381027,-72.0215849],[99.2407127,-72.0215817],[99.2406918,-72.0199695],[99.2459006,-72.019157],[99.2458793,-72.0175448],[99.2510764,-72.015926],[99.2510546,-72.0143139],[99.2562614,-72.013501],[99.2562393,-72.0118889],[99.2588479,-72.0118855],[99.2588254,-72.0102733],[99.2614338,-72.0102698],[99.2614112,-72.0086577],[99.266616,-72.0078446],[99.2665929,-72.0062324],[99.271785,-72.0046131],[99.2717615,-72.0030009],[99.2769642,-72.0021875],[99.2769402,-72.0005754],[99.2795472,-72.0005717],[99.279523,-71.9989595],[99.2821298,-71.9989558],[99.2821054,-71.9973436],[99.2873061,-71.99653],[99.2872813,-71.9949178],[99.2924684,-71.9932979],[99.2924431,-71.9916858],[99.2976418,-71.9908718],[99.2976161,-71.9892597],[99.3028007,-71.9876395],[99.3027746,-71.9860274],[99.3079712,-71.9852131],[99.3079446,-71.983601],[99.3105492,-71.9835969],[99.3105224,-71.9819847],[99.3131268,-71.9819806],[99.3130997,-71.9803684],[99.3182943,-71.9795539],[99.3182668,-71.9779418],[99.3208707,-71.9779375],[99.3208429,-71.9763254],[99.3234466,-71.9763211],[99.3234186,-71.9747089],[99.3286112,-71.9738941],[99.3285828,-71.972282],[99.3337601,-71.970661],[99.3337312,-71.9690489],[99.3389218,-71.9682338],[99.3388925,-71.9666217],[99.3440673,-71.9650004],[99.3440376,-71.9633883],[99.3492262,-71.9625729],[99.349196,-71.9609608],[99.3543684,-71.9593393],[99.3543378,-71.9577271],[99.3595243,-71.9569115],[99.3594933,-71.9552994],[99.3620939,-71.9552945],[99.3620627,-71.9536824],[99.3646631,-71.9536776],[99.3646317,-71.9520654],[99.3698162,-71.9512495],[99.3697843,-71.9496374],[99.3723841,-71.9496324],[99.372352,-71.9480203],[99.3749517,-71.9480153],[99.3749193,-71.9464032],[99.3801018,-71.945587],[99.380069,-71.9439749],[99.385234,-71.9423525],[99.3852008,-71.9407404],[99.3903812,-71.9399239],[99.3903476,-71.9383118],[99.3955101,-71.9366892],[99.395476,-71.9350771],[99.4006544,-71.9342603],[99.4006199,-71.9326482],[99.4032174,-71.9326428],[99.4031827,-71.9310307],[99.4057799,-71.9310253],[99.405745,-71.9294132],[99.4109214,-71.9285962],[99.410886,-71.9269841],[99.4134827,-71.9269785],[99.4134471,-71.9253664],[99.4160257,-71.9245548],[99.42329240469921,-71.92568924843837],[99.4246269,-71.9249621],[99.45795183479106,-71.93041833653511],[99.4688048,-71.9317123]]]},"collection":"aster-l1t","properties":{"created":"2015-05-18T20:21:47.235000Z","datetime":"2006-12-27T02:03:22.718000Z","platform":"terra","proj:epsg":32647,"instruments":["aster"],"eo:cloud_cover":0.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":57.318059,"view:sun_elevation":34.202038,"aster:processing_number":"110656","aster:lower_left_quad_cloud_cover":0.0,"aster:upper_left_quad_cloud_cover":0.0,"aster:lower_right_quad_cloud_cover":0.0,"aster:upper_right_quad_cloud_cover":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"AST_L1T_00312272006020313_20150518201753","bbox":[99.3885664,-72.2098622,101.8906871,-71.4520434],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006020313_20150518201753"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006020313_20150518201753","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020313_20150518201753_111218.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[509039.9999999969,-8016389.999059276,604890.0003240635,-7925219.999045857],"proj:shape":[1014,1066],"proj:transform":[89.9155725366478,0.0,509039.9999999969,0.0,-89.91124261678353,-7925219.999045857,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020313_20150518201753_111218.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020313_20150518201753_111218.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[509039.9999999969,-8016389.999059276,604890.0003240635,-7925219.999045857],"proj:shape":[3040,3196],"proj:transform":[29.990613367980774,0.0,509039.9999999969,0.0,-29.990131583361347,-7925219.999045857,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020313_20150518201753_111218.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[509039.9999999969,-8016389.999059276,604890.0003240635,-7925219.999045857],"proj:shape":[6079,6391],"proj:transform":[14.997653000166883,0.0,509039.9999999969,0.0,-14.997532491103552,-7925219.999045857,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006020313_20150518201753&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020313_20150518201753_111218_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020313_20150518201753_111218_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006020313_20150518201753&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[101.8664834,-71.7090042],[101.8661676389719,-71.70919524668975],[101.87429353132454,-71.71046700109217],[101.8801797,-71.7111063],[101.88236731605899,-71.71173060031728],[101.8906871,-71.7130327],[101.4479196,-71.9807235],[101.0577641,-72.2098622],[101.03287951690046,-72.20609703674523],[101.0317414,-72.2067654],[100.8900262517455,-72.184482615373],[100.8023384,-72.171215],[100.33099422137461,-72.09658241214296],[100.2306777,-72.080809],[99.3913652,-71.943376],[99.39397991737583,-71.94191488329963],[99.3886167,-71.9410774],[99.3885664,-71.9386592],[99.3911647,-71.9386539],[99.391131,-71.9370418],[99.3963102,-71.9362252],[99.396276,-71.9346131],[99.3988738,-71.9346078],[99.3988394,-71.9329956],[99.401437,-71.9329903],[99.4014024,-71.9313782],[99.4065796,-71.9305613],[99.4065445,-71.9289492],[99.411703,-71.9273261],[99.4116676,-71.925714],[99.4168427,-71.9248968],[99.4168068,-71.9232847],[99.419403,-71.9232791],[99.4193669,-71.921667],[99.4219629,-71.9216614],[99.4219265,-71.9200492],[99.4270997,-71.9192318],[99.4270629,-71.9176197],[99.4296583,-71.917614],[99.4296213,-71.9160018],[99.4322165,-71.9159961],[99.4321793,-71.9143839],[99.4373504,-71.9135662],[99.4373127,-71.9119541],[99.4424639,-71.9103302],[99.4424258,-71.9087181],[99.4475949,-71.9079001],[99.4475564,-71.906288],[99.4527051,-71.9046639],[99.4526662,-71.9030517],[99.4578333,-71.9022335],[99.4577939,-71.9006214],[99.4629402,-71.8989969],[99.4629004,-71.8973848],[99.4680654,-71.8965663],[99.4680252,-71.8949542],[99.473169,-71.8933295],[99.4731283,-71.8917174],[99.4782914,-71.8908986],[99.4782503,-71.8892865],[99.4808418,-71.8892801],[99.4808004,-71.8876679],[99.4833917,-71.8876615],[99.4833502,-71.8860494],[99.4885112,-71.8852303],[99.4884692,-71.8836182],[99.4910599,-71.8836117],[99.4910177,-71.8819995],[99.4936082,-71.881993],[99.4935658,-71.8803808],[99.4987248,-71.8795615],[99.498682,-71.8779494],[99.5012719,-71.8779427],[99.5012288,-71.8763306],[99.5038185,-71.8763239],[99.5037752,-71.8747118],[99.5089323,-71.8738922],[99.5088886,-71.8722801],[99.5114777,-71.8722732],[99.5114338,-71.8706611],[99.5165894,-71.8698413],[99.516545,-71.8682292],[99.5216774,-71.8666032],[99.5216326,-71.8649911],[99.5267862,-71.864171],[99.526741,-71.8625589],[99.5293287,-71.8625519],[99.5292833,-71.8609397],[99.5318709,-71.8609326],[99.5318252,-71.8593205],[99.5369768,-71.8585002],[99.5369307,-71.8568881],[99.5395177,-71.8568809],[99.5394714,-71.8552688],[99.5420582,-71.8552616],[99.5420117,-71.8536494],[99.5471613,-71.8528288],[99.5471144,-71.8512167],[99.5522394,-71.8495899],[99.552192,-71.8479778],[99.5573397,-71.8471569],[99.5572919,-71.8455448],[99.5624145,-71.8439177],[99.5623662,-71.8423056],[99.5675119,-71.8414845],[99.5674632,-71.8398724],[99.5725834,-71.838245],[99.5725343,-71.8366329],[99.5776779,-71.8358115],[99.5776284,-71.8341994],[99.5827462,-71.8325718],[99.5826963,-71.8309597],[99.5878379,-71.830138],[99.5877875,-71.8285259],[99.5929029,-71.826898],[99.5928521,-71.8252859],[99.5979917,-71.8244639],[99.5979405,-71.8228518],[99.6030534,-71.8212237],[99.6030018,-71.8196116],[99.6081394,-71.8187894],[99.6080874,-71.8171773],[99.6106689,-71.8171691],[99.6106166,-71.815557],[99.6131979,-71.8155488],[99.6131454,-71.8139367],[99.618281,-71.8131142],[99.6182281,-71.8115021],[99.6233362,-71.8098735],[99.6232829,-71.8082614],[99.6284165,-71.8074386],[99.6283628,-71.8058265],[99.6334684,-71.8041975],[99.6334142,-71.8025854],[99.6385459,-71.8017624],[99.6384913,-71.8001503],[99.6435946,-71.7985211],[99.6435395,-71.796909],[99.6486692,-71.7960857],[99.6486138,-71.7944736],[99.6537146,-71.7928441],[99.6536587,-71.791232],[99.6587864,-71.7904084],[99.6587301,-71.7887964],[99.6613077,-71.7887875],[99.6612512,-71.7871754],[99.6638286,-71.7871666],[99.6637718,-71.7855545],[99.6688975,-71.7847307],[99.6688404,-71.7831186],[99.6714172,-71.7831096],[99.6713598,-71.7814975],[99.6739364,-71.7814885],[99.6738789,-71.7798765],[99.6790026,-71.7790523],[99.6789446,-71.7774403],[99.6815206,-71.7774312],[99.6814624,-71.7758191],[99.6840382,-71.77581],[99.6839798,-71.7741979],[99.6891016,-71.7733735],[99.6890427,-71.7717614],[99.694134,-71.7701309],[99.6940747,-71.7685188],[99.6991945,-71.7676941],[99.6991348,-71.7660821],[99.7017093,-71.7660727],[99.7016494,-71.7644606],[99.7042236,-71.7644512],[99.7041635,-71.7628392],[99.7092813,-71.7620142],[99.7092208,-71.7604022],[99.7117945,-71.7603927],[99.7117337,-71.7587806],[99.7143072,-71.7587711],[99.7142463,-71.757159],[99.7193621,-71.7563338],[99.7193007,-71.7547217],[99.7243848,-71.7530904],[99.724323,-71.7514783],[99.7294368,-71.7506528],[99.7293746,-71.7490408],[99.7319467,-71.749031],[99.7318843,-71.7474189],[99.7344562,-71.7474091],[99.7343936,-71.7457971],[99.7395055,-71.7449714],[99.7394425,-71.7433593],[99.7445217,-71.7417274],[99.7444582,-71.7401153],[99.7495681,-71.7392893],[99.7495042,-71.7376773],[99.7520748,-71.7376673],[99.7520107,-71.7360552],[99.7545811,-71.7360451],[99.7545168,-71.7344331],[99.7596247,-71.7336068],[99.75956,-71.7319947],[99.7646345,-71.7303623],[99.7645693,-71.7287503],[99.7696753,-71.7279237],[99.7696097,-71.7263117],[99.7721788,-71.7263014],[99.772113,-71.7246893],[99.7746818,-71.724679],[99.7746159,-71.7230669],[99.7797198,-71.7222401],[99.7796534,-71.7206281],[99.7847231,-71.7189951],[99.7846563,-71.7173831],[99.7897583,-71.716556],[99.7896911,-71.714944],[99.7947584,-71.7133108],[99.7946908,-71.7116987],[99.7997908,-71.7108714],[99.7997228,-71.7092593],[99.8047877,-71.7076259],[99.8047192,-71.7060138],[99.8098173,-71.7051862],[99.8097484,-71.7035742],[99.8123143,-71.7035633],[99.8122453,-71.7019513],[99.8173419,-71.7011235],[99.8172724,-71.6995115],[99.8223332,-71.6978775],[99.8222633,-71.6962655],[99.827358,-71.6954374],[99.8272877,-71.6938254],[99.8298522,-71.6938143],[99.8297817,-71.6922023],[99.8323461,-71.6921912],[99.8322754,-71.6905791],[99.8373681,-71.6897508],[99.8372969,-71.6881388],[99.842353,-71.6865043],[99.8422814,-71.6848923],[99.8473721,-71.6840637],[99.8473002,-71.6824517],[99.8498632,-71.6824403],[99.849791,-71.6808283],[99.8523538,-71.6808169],[99.8522815,-71.6792049],[99.8573702,-71.6783761],[99.8572974,-71.676764],[99.8623487,-71.675129],[99.8622755,-71.673517],[99.8673624,-71.6726879],[99.8672887,-71.6710759],[99.8698502,-71.6710643],[99.8697764,-71.6694522],[99.8723377,-71.6694406],[99.8722636,-71.6678286],[99.8773485,-71.6669992],[99.877274,-71.6653872],[99.8823206,-71.6637516],[99.8822457,-71.6621396],[99.8873286,-71.66131],[99.8872534,-71.659698],[99.8898133,-71.6596861],[99.8897378,-71.6580741],[99.8922976,-71.6580622],[99.8922219,-71.6564502],[99.8973028,-71.6556203],[99.8972268,-71.6540082],[99.8997859,-71.6539962],[99.8997096,-71.6523842],[99.9022686,-71.6523722],[99.9021921,-71.6507602],[99.9072711,-71.64993],[99.9071942,-71.648318],[99.9097526,-71.6483059],[99.9096754,-71.6466938],[99.9122336,-71.6466817],[99.9121563,-71.6450697],[99.9172333,-71.6442392],[99.9171556,-71.6426272],[99.9221927,-71.6409907],[99.9221146,-71.6393786],[99.9271897,-71.638548],[99.9271111,-71.6369359],[99.9321459,-71.6352991],[99.9320669,-71.6336871],[99.93714,-71.6328561],[99.9370607,-71.6312441],[99.9396168,-71.6312316],[99.9395372,-71.6296196],[99.942093,-71.6296071],[99.9420133,-71.6279951],[99.9470845,-71.6271638],[99.9470043,-71.6255518],[99.9520343,-71.6239145],[99.9519537,-71.6223025],[99.957023,-71.621471],[99.956942,-71.619859],[99.9619696,-71.6182214],[99.9618882,-71.6166094],[99.9669555,-71.6157776],[99.9668737,-71.6141657],[99.9694275,-71.6141527],[99.9693455,-71.6125407],[99.971899,-71.6125278],[99.9718168,-71.6109158],[99.9768821,-71.6100838],[99.9767995,-71.6084718],[99.9793525,-71.6084587],[99.9792697,-71.6068467],[99.9818225,-71.6068337],[99.9817395,-71.6052217],[99.9868029,-71.6043894],[99.9867194,-71.6027774],[99.99174,-71.601139],[99.9916562,-71.599527],[99.9967176,-71.5986945],[99.9966334,-71.5970825],[99.9991849,-71.5970692],[99.9991004,-71.5954572],[100.0041605,-71.5946245],[100.0040756,-71.5930125],[100.0090922,-71.5913737],[100.0090069,-71.5897617],[100.014065,-71.5889287],[100.0139794,-71.5873167],[100.0165295,-71.5873032],[100.0164436,-71.5856912],[100.0189936,-71.5856776],[100.0189075,-71.5840656],[100.0239637,-71.5832324],[100.0238772,-71.5816204],[100.0288891,-71.579981],[100.0288022,-71.5783691],[100.0338564,-71.5775356],[100.0337691,-71.5759236],[100.0387787,-71.574284],[100.038691,-71.572672],[100.0437433,-71.5718382],[100.0436552,-71.5702263],[100.0486624,-71.5685864],[100.0485739,-71.5669744],[100.0536242,-71.5661404],[100.0535354,-71.5645284],[100.0560824,-71.5645143],[100.0559933,-71.5629024],[100.0585402,-71.5628883],[100.0584509,-71.5612763],[100.0634993,-71.560442],[100.0634096,-71.5588301],[100.0684121,-71.5571897],[100.0683221,-71.5555777],[100.0733685,-71.5547432],[100.073278,-71.5531312],[100.0782782,-71.5514905],[100.0781873,-71.5498786],[100.0832319,-71.5490438],[100.0831406,-71.5474318],[100.0881384,-71.5457909],[100.0880467,-71.544179],[100.0930893,-71.5433439],[100.0929972,-71.541732],[100.0955412,-71.5417173],[100.0954489,-71.5401054],[100.0979927,-71.5400908],[100.0979002,-71.5384788],[100.1029409,-71.5376435],[100.102848,-71.5360316],[100.1078412,-71.5343901],[100.1077479,-71.5327782],[100.1127866,-71.5319426],[100.112693,-71.5303307],[100.1176838,-71.528689],[100.1175897,-71.527077],[100.1226265,-71.5262412],[100.1225321,-71.5246293],[100.1250738,-71.5246143],[100.1249791,-71.5230023],[100.1275206,-71.5229873],[100.1274257,-71.5213754],[100.1324606,-71.5205393],[100.1323653,-71.5189273],[100.1349062,-71.5189122],[100.1348108,-71.5173003],[100.1398442,-71.516464],[100.1397484,-71.5148521],[100.1422888,-71.5148368],[100.1421927,-71.5132249],[100.1447329,-71.5132097],[100.1446366,-71.5115977],[100.1496682,-71.5107612],[100.1495715,-71.5091493],[100.1545537,-71.5075066],[100.1544566,-71.5058947],[100.1594862,-71.5050579],[100.1593888,-71.5034459],[100.1643686,-71.501803],[100.1642708,-71.5001911],[100.1692985,-71.499354],[100.1692002,-71.4977421],[100.1741778,-71.496099],[100.1740791,-71.4944871],[100.1791049,-71.4936497],[100.1790059,-71.4920378],[100.1839811,-71.4903944],[100.1838816,-71.4887825],[100.1889055,-71.4879449],[100.1888057,-71.486333],[100.1913423,-71.4863171],[100.1912422,-71.4847052],[100.1937786,-71.4846893],[100.1936784,-71.4830774],[100.1987003,-71.4822396],[100.1985997,-71.4806277],[100.2035703,-71.4789837],[100.2034692,-71.4773718],[100.2084893,-71.4765337],[100.2083879,-71.4749218],[100.2133561,-71.4732776],[100.2132543,-71.4716658],[100.2182724,-71.4708274],[100.2181703,-71.4692155],[100.2207045,-71.4691992],[100.2206021,-71.4675874],[100.2231362,-71.4675711],[100.2230336,-71.4659592],[100.2280498,-71.4651205],[100.2279468,-71.4635087],[100.2304804,-71.4634923],[100.2303772,-71.4618804],[100.2329105,-71.461864],[100.2328071,-71.4602521],[100.2378214,-71.4594132],[100.2377176,-71.4578013],[100.2402504,-71.4577848],[100.2401464,-71.4561729],[100.2451593,-71.4553338],[100.245055,-71.453722],[100.2475872,-71.4537054],[100.2474826,-71.4520935],[100.2550786,-71.4520434],[100.2562372385249,-71.45274414479073],[100.2567335,-71.4524585],[101.0605383,-71.5830607],[101.8664834,-71.7090042]]]},"collection":"aster-l1t","properties":{"created":"2015-05-18T20:22:03.586000Z","datetime":"2006-12-27T02:03:13.841000Z","platform":"terra","proj:epsg":32647,"instruments":["aster"],"eo:cloud_cover":0.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":56.555381,"view:sun_elevation":34.269495,"aster:processing_number":"111218","aster:lower_left_quad_cloud_cover":0.0,"aster:upper_left_quad_cloud_cover":0.0,"aster:lower_right_quad_cloud_cover":0.0,"aster:upper_right_quad_cloud_cover":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"AST_L1T_00312272006020304_20150518201753","bbox":[100.2238478,-71.7308039,102.6554626,-70.9761174],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006020304_20150518201753"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006020304_20150518201753","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020304_20150518201753_111217.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[539010.0000001943,-7964189.99910798,634860.001607926,-7872929.9990445385],"proj:shape":[1015,1066],"proj:transform":[89.91557374083648,0.0,539010.0000001943,0.0,-89.91133011176521,-7872929.9990445385,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020304_20150518201753_111217.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020304_20150518201753_111217.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[539010.0000001943,-7964189.99910798,634860.001607926,-7872929.9990445385],"proj:shape":[3043,3196],"proj:transform":[29.990613769628187,0.0,539010.0000001943,0.0,-29.99014132876822,-7872929.9990445385,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020304_20150518201753_111217.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[539010.0000001943,-7964189.99910798,634860.001607926,-7872929.9990445385],"proj:shape":[6085,6391],"proj:transform":[14.997653201022013,0.0,539010.0000001943,0.0,-14.99753493236511,-7872929.9990445385,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006020304_20150518201753&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020304_20150518201753_111217_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020304_20150518201753_111217_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006020304_20150518201753&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[101.82725405576103,-71.10197031734187],[101.8287184,-71.1021903],[101.8287555423913,-71.10221179960416],[101.85278009036668,-71.10607563833487],[101.8547141023528,-71.10637656243193],[101.8567496,-71.1066051],[101.85695829398529,-71.10672574917199],[101.88385199194614,-71.11091029499369],[101.8847933,-71.1110158],[101.8848904226146,-71.11107187042006],[102.6088507531927,-71.22371704033326],[102.61405520715144,-71.22452413526952],[102.6468577,-71.2292964],[102.64764021525716,-71.22973242228512],[102.6554626,-71.2309455],[102.2603999,-71.4834945],[101.8619248,-71.7308039],[101.83765509314583,-71.7272016277384],[101.8364545,-71.727947],[101.71930470947746,-71.70963527200118],[101.6735099,-71.7028381],[101.0947703,-71.6120996],[101.08083884413489,-71.6098364314694],[101.0242749,-71.6009949],[100.2259453,-71.4711422],[100.22878034138033,-71.46946800960283],[100.2240018,-71.4687161],[100.2238478,-71.4662983],[100.2288125,-71.4646537],[100.2287095,-71.4630418],[100.2337247,-71.462203],[100.2336212,-71.4605911],[100.2385836,-71.4589463],[100.2384798,-71.4573344],[100.2434931,-71.4564954],[100.2433889,-71.4548835],[100.2459212,-71.4548669],[100.2458168,-71.453255],[100.248349,-71.4532384],[100.2482444,-71.4516265],[100.2532557,-71.4507872],[100.2531507,-71.4491754],[100.2556823,-71.4491586],[100.2555771,-71.4475468],[100.2605871,-71.4467073],[100.2604815,-71.4450954],[100.2654376,-71.4434499],[100.2653316,-71.441838],[100.2703397,-71.4409983],[100.2702333,-71.4393864],[100.2751871,-71.4377406],[100.2750804,-71.4361287],[100.2800865,-71.4352887],[100.2799794,-71.4336769],[100.2825089,-71.4336598],[100.2824016,-71.4320479],[100.2849309,-71.4320308],[100.2848233,-71.430419],[100.2898276,-71.4295787],[100.2897196,-71.4279669],[100.2922484,-71.4279497],[100.2921403,-71.4263378],[100.2946689,-71.4263206],[100.2945605,-71.4247087],[100.2995629,-71.4238682],[100.2994542,-71.4222564],[100.3044011,-71.4206098],[100.304292,-71.418998],[100.3092924,-71.4181572],[100.3091829,-71.4165454],[100.3117102,-71.4165279],[100.3116005,-71.414916],[100.3141275,-71.4148985],[100.3140177,-71.4132867],[100.3190162,-71.4124457],[100.3189059,-71.4108338],[100.3238483,-71.4091868],[100.3237376,-71.4075749],[100.3287342,-71.4067337],[100.3286232,-71.4051218],[100.3335632,-71.4034745],[100.3334518,-71.4018627],[100.3384465,-71.4010212],[100.3383347,-71.3994093],[100.3432724,-71.3977618],[100.3431602,-71.3961499],[100.348153,-71.3953082],[100.3480404,-71.3936963],[100.3529759,-71.3920485],[100.3528629,-71.3904367],[100.3578538,-71.3895947],[100.3577405,-71.3879828],[100.3626737,-71.3863348],[100.3625599,-71.384723],[100.3675489,-71.3838807],[100.3674348,-71.3822689],[100.3723657,-71.3806205],[100.3722512,-71.3790087],[100.3772383,-71.3781662],[100.3771234,-71.3765544],[100.3796453,-71.376536],[100.3795302,-71.3749242],[100.384516,-71.3740814],[100.3844005,-71.3724697],[100.3869219,-71.3724512],[100.3868062,-71.3708394],[100.3893274,-71.3708209],[100.3892116,-71.3692091],[100.3941954,-71.3683661],[100.3940791,-71.3667543],[100.3990038,-71.3651053],[100.3988872,-71.3634935],[100.4038691,-71.3626502],[100.4037521,-71.3610385],[100.406272,-71.3610197],[100.4061548,-71.3594079],[100.4086745,-71.3593892],[100.4085571,-71.3577774],[100.4135371,-71.3569339],[100.4134194,-71.3553221],[100.4159385,-71.3553033],[100.4158205,-71.3536915],[100.4183395,-71.3536726],[100.4182213,-71.3520608],[100.4231995,-71.3512171],[100.4230809,-71.3496053],[100.4279987,-71.3479555],[100.4278798,-71.3463437],[100.4328561,-71.3454997],[100.4327368,-71.343888],[100.4352544,-71.3438689],[100.4351349,-71.3422571],[100.4376523,-71.3422379],[100.4375326,-71.3406262],[100.442507,-71.3397819],[100.4423869,-71.3381702],[100.4473002,-71.3365199],[100.4471797,-71.3349081],[100.4521522,-71.3340636],[100.4520314,-71.3324518],[100.4569424,-71.3308013],[100.4568212,-71.3291896],[100.4617918,-71.3283448],[100.4616702,-71.326733],[100.4665789,-71.3250823],[100.4664569,-71.3234705],[100.4714257,-71.3226255],[100.4713033,-71.3210138],[100.4738179,-71.3209941],[100.4736953,-71.3193824],[100.4786627,-71.3185372],[100.4785398,-71.3169254],[100.4834446,-71.3152742],[100.4833213,-71.3136625],[100.4882867,-71.312817],[100.488163,-71.3112053],[100.4930656,-71.3095538],[100.4929415,-71.3079421],[100.4979051,-71.3070964],[100.4977806,-71.3054847],[100.502681,-71.303833],[100.5025561,-71.3022212],[100.5075178,-71.3013753],[100.5073926,-71.2997635],[100.5122907,-71.2981116],[100.5121651,-71.2964999],[100.5171249,-71.2956536],[100.5169989,-71.2940419],[100.5218947,-71.2923897],[100.5217683,-71.290778],[100.5267263,-71.2899315],[100.5265995,-71.2883198],[100.5314931,-71.2866674],[100.531366,-71.2850557],[100.536322,-71.284209],[100.5361945,-71.2825973],[100.5410858,-71.2809445],[100.540958,-71.2793329],[100.5459122,-71.2784859],[100.5457839,-71.2768742],[100.5506729,-71.2752212],[100.5505443,-71.2736095],[100.5554966,-71.2727623],[100.5553676,-71.2711506],[100.5578757,-71.2711299],[100.5577465,-71.2695182],[100.5626975,-71.2686708],[100.5625679,-71.2670591],[100.5674531,-71.2654057],[100.5673231,-71.263794],[100.5722722,-71.2629464],[100.5721419,-71.2613347],[100.5770248,-71.2596811],[100.5768941,-71.2580694],[100.5818413,-71.2572215],[100.5817102,-71.2556098],[100.5865909,-71.2539559],[100.5864594,-71.2523443],[100.5914048,-71.2514961],[100.591273,-71.2498844],[100.5937783,-71.2498632],[100.5936463,-71.2482515],[100.5961514,-71.2482303],[100.5960192,-71.2466186],[100.6009626,-71.2457702],[100.6008301,-71.2441586],[100.6033346,-71.2441372],[100.6032019,-71.2425256],[100.6057062,-71.2425042],[100.6055733,-71.2408925],[100.6105149,-71.2400439],[100.6103816,-71.2384322],[100.6152555,-71.2367776],[100.6151218,-71.235166],[100.6200615,-71.234317],[100.6199275,-71.2327054],[100.6247991,-71.2310505],[100.6246647,-71.2294389],[100.6296026,-71.2285897],[100.6294678,-71.2269781],[100.6319701,-71.2269564],[100.6318351,-71.2253447],[100.6343372,-71.225323],[100.634202,-71.2237113],[100.639138,-71.2228619],[100.6390025,-71.2212503],[100.641504,-71.2212284],[100.6413683,-71.2196168],[100.6438697,-71.2195949],[100.6437338,-71.2179833],[100.6486679,-71.2171336],[100.6485316,-71.215522],[100.6510324,-71.2155],[100.6508959,-71.2138884],[100.6533965,-71.2138664],[100.6532599,-71.2122548],[100.6581921,-71.2114049],[100.6580551,-71.2097933],[100.6605552,-71.2097712],[100.660418,-71.2081596],[100.6653489,-71.2073095],[100.6652113,-71.2056978],[100.6700724,-71.2040418],[100.6699344,-71.2024302],[100.6748635,-71.2015799],[100.6747251,-71.1999682],[100.679584,-71.198312],[100.6794453,-71.1967004],[100.6843725,-71.1958498],[100.6842334,-71.1942382],[100.6867315,-71.1942157],[100.6865922,-71.1926041],[100.6890901,-71.1925817],[100.6889506,-71.1909701],[100.693876,-71.1901192],[100.6937361,-71.1885076],[100.6985905,-71.1868509],[100.6984504,-71.1852393],[100.7033738,-71.1843882],[100.7032333,-71.1827766],[100.7057299,-71.1827539],[100.7055891,-71.1811423],[100.7080855,-71.1811196],[100.7079446,-71.179508],[100.7128662,-71.1786567],[100.7127249,-71.1770451],[100.7152207,-71.1770223],[100.7150792,-71.1754107],[100.7199995,-71.1745591],[100.7198577,-71.1729476],[100.722353,-71.1729247],[100.7222109,-71.1713131],[100.724706,-71.1712901],[100.7245638,-71.1696786],[100.7294822,-71.1688268],[100.7293396,-71.1672152],[100.7341857,-71.1655575],[100.7340428,-71.163946],[100.7389594,-71.163094],[100.7388161,-71.1614824],[100.74366,-71.1598245],[100.7435163,-71.1582129],[100.748431,-71.1573607],[100.748287,-71.1557491],[100.7531286,-71.1540909],[100.7529842,-71.1524794],[100.7578971,-71.1516269],[100.7577523,-71.1500153],[100.7625917,-71.1483569],[100.7624466,-71.1467454],[100.7673576,-71.1458926],[100.7672121,-71.1442811],[100.7720493,-71.1426224],[100.7719035,-71.1410109],[100.7768126,-71.1401579],[100.7766664,-71.1385464],[100.7815014,-71.1368875],[100.7813548,-71.1352759],[100.7862621,-71.1344227],[100.7861152,-71.1328112],[100.7886052,-71.1327874],[100.7884581,-71.1311758],[100.7933641,-71.1303224],[100.7932166,-71.1287109],[100.7957061,-71.128687],[100.7955584,-71.1270755],[100.7980478,-71.1270516],[100.7978999,-71.12544],[100.802804,-71.1245864],[100.8026558,-71.1229748],[100.8074847,-71.1213153],[100.8073361,-71.1197038],[100.8122384,-71.1188498],[100.8120895,-71.1172383],[100.8169162,-71.1155785],[100.8167669,-71.113967],[100.8216673,-71.1131129],[100.8215176,-71.1115014],[100.8263422,-71.1098413],[100.8261922,-71.1082298],[100.8310907,-71.1073754],[100.8309403,-71.1057639],[100.8357627,-71.1041036],[100.8356119,-71.1024921],[100.8405087,-71.1016375],[100.8403575,-71.100026],[100.8451777,-71.0983655],[100.8450262,-71.096754],[100.8499211,-71.0958991],[100.8497692,-71.0942876],[100.8522543,-71.094263],[100.8521023,-71.0926515],[100.8569959,-71.0917964],[100.8568435,-71.0901849],[100.859328,-71.0901602],[100.8591754,-71.0885487],[100.8616598,-71.088524],[100.861507,-71.0869125],[100.8663988,-71.0860572],[100.8662456,-71.0844457],[100.8710598,-71.0827845],[100.8709063,-71.0811731],[100.8757962,-71.0803175],[100.8756424,-71.078706],[100.8804543,-71.0770446],[100.8803001,-71.0754331],[100.8851882,-71.0745773],[100.8850336,-71.0729659],[100.887516,-71.0729408],[100.8873612,-71.0713293],[100.8898434,-71.0713042],[100.8896884,-71.0696927],[100.8945747,-71.0688367],[100.8944194,-71.0672252],[100.8992269,-71.0655633],[100.8990713,-71.0639519],[100.9039557,-71.0630956],[100.9037997,-71.0614841],[100.9086051,-71.059822],[100.9084487,-71.0582106],[100.9133312,-71.057354],[100.9131745,-71.0557426],[100.9156547,-71.0557171],[100.9154978,-71.0541057],[100.920379,-71.0532489],[100.9202217,-71.0516375],[100.9250233,-71.0499749],[100.9248657,-71.0483635],[100.9297451,-71.0475065],[100.9295871,-71.0458951],[100.9343865,-71.0442323],[100.9342282,-71.0426209],[100.9391058,-71.0417637],[100.9389471,-71.0401523],[100.9437443,-71.0384892],[100.9435852,-71.0368778],[100.948461,-71.0360204],[100.9483016,-71.034409],[100.950779,-71.034383],[100.9506194,-71.0327716],[100.9530966,-71.0327457],[100.9529368,-71.0311343],[100.9578107,-71.0302766],[100.9576506,-71.0286652],[100.9601273,-71.0286391],[100.959967,-71.0270277],[100.9648396,-71.0261698],[100.9646789,-71.0245585],[100.9694702,-71.0228947],[100.9693092,-71.0212834],[100.97418,-71.0204252],[100.9740186,-71.0188139],[100.976494,-71.0187876],[100.9763325,-71.0171762],[100.9788077,-71.0171499],[100.9786459,-71.0155385],[100.9835149,-71.0146802],[100.9833528,-71.0130688],[100.9858275,-71.0130424],[100.9856652,-71.011431],[100.9881397,-71.0114046],[100.9879773,-71.0097933],[100.9928444,-71.0089346],[100.9926816,-71.0073233],[100.9974663,-71.0056588],[100.9973032,-71.0040475],[101.0021685,-71.0031886],[101.002005,-71.0015773],[101.0067875,-70.9999126],[101.0066237,-70.9983013],[101.0114871,-70.9974422],[101.0113229,-70.9958308],[101.0161033,-70.9941659],[101.0159388,-70.9925546],[101.0208004,-70.9916952],[101.0206355,-70.9900839],[101.0254137,-70.9884188],[101.0252484,-70.9868074],[101.0301083,-70.9859478],[101.0299427,-70.9843365],[101.0371064,-70.9818384],[101.0369403,-70.9802271],[101.0394107,-70.9802],[101.0392444,-70.9785887],[101.0417147,-70.9785615],[101.0415482,-70.9769502],[101.0439349,-70.9761174],[101.05094138620392,-70.9772298866258],[101.0517701,-70.9767262],[101.6346104294454,-71.0709876780287],[101.82725405576103,-71.10197031734187]]]},"collection":"aster-l1t","properties":{"created":"2015-05-18T20:21:48.355000Z","datetime":"2006-12-27T02:03:04.964000Z","platform":"terra","proj:epsg":32647,"instruments":["aster"],"eo:cloud_cover":1.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":56.098572,"view:sun_elevation":34.78655,"aster:processing_number":"111217","aster:lower_left_quad_cloud_cover":0.0,"aster:upper_left_quad_cloud_cover":0.0,"aster:lower_right_quad_cloud_cover":1.0,"aster:upper_right_quad_cloud_cover":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"AST_L1T_00312272006020256_20150518201805","bbox":[101.0170108,-71.2492194,103.3844764,-70.4976888],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006020256_20150518201805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006020256_20150518201805","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020256_20150518201805_110648.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[350909.99723753845,-7909289.999158934,444329.9999978208,-7821989.999044152],"proj:shape":[971,1039],"proj:transform":[89.91338090498785,0.0,350909.99723753845,0.0,-89.90731216764344,-7821989.999044152,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020256_20150518201805_110648.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020256_20150518201805_110648.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[350909.99723753845,-7909289.999158934,444329.9999978208,-7821989.999044152],"proj:shape":[2911,3115],"proj:transform":[29.99037006750638,0.0,350909.99723753845,0.0,-29.989694302570175,-7821989.999044152,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020256_20150518201805_110648.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[350909.99723753845,-7909289.999158934,444329.9999978208,-7821989.999044152],"proj:shape":[5821,6229],"proj:transform":[14.997592351947723,0.0,350909.99723753845,0.0,-14.99742314289328,-7821989.999044152,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006020256_20150518201805&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020256_20150518201805_110648_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020256_20150518201805_110648_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006020256_20150518201805&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[102.58177189228145,-70.62220422364679],[103.20841400187894,-70.71938040573197],[103.2085769,-70.719382],[103.20879551994136,-70.71943956943663],[103.22505729026409,-70.72196135456679],[103.2254335,-70.721965],[103.22593955274782,-70.72209817093845],[103.24169026888782,-70.72454070462099],[103.2422944,-70.7245465],[103.24310899669815,-70.72476071305948],[103.32879671580692,-70.7380486891898],[103.3725201,-70.7442938],[103.3773385,-70.7451428],[103.37730050674232,-70.74561165018171],[103.3844764,-70.7467218],[103.0149306,-70.9957171],[102.6277616,-71.2492194],[102.60372086777352,-71.24579636726426],[102.6028857,-71.2463434],[102.55144057297275,-71.23835245254271],[102.5217748,-71.2341285],[102.0195362,-71.1563048],[101.91812092920487,-71.13997920925506],[101.8101987,-71.1232157],[101.0220148,-70.9957259],[101.02397645215919,-70.9945052251093],[101.0170108,-70.9934086],[101.0196408,-70.9926573],[101.0199654,-70.991049],[101.0224328,-70.9911018],[101.0229193,-70.9886893],[101.0281774,-70.9871866],[101.0285012,-70.9855782],[101.030968,-70.9856309],[101.0312915,-70.9840226],[101.0337581,-70.9840753],[101.034243,-70.9816627],[101.0367093,-70.9817154],[101.0370323,-70.980107],[101.0394984,-70.9801596],[101.0398212,-70.9785512],[101.0478631,-70.9754921],[101.0483461,-70.9730795],[101.0508113,-70.973132],[101.0539196,-70.9699676],[101.0563844,-70.97002],[101.0567057,-70.9684116],[101.0591703,-70.968464],[101.0596518,-70.9660513],[101.0621161,-70.9661037],[101.0624368,-70.9644952],[101.0704695,-70.9614351],[101.0709493,-70.9590224],[101.0734129,-70.9590746],[101.0737325,-70.9574661],[101.0817606,-70.9544055],[101.0820794,-70.952797],[101.0845422,-70.9528491],[101.0850202,-70.9504363],[101.0874827,-70.9504884],[101.087801,-70.9488798],[101.0958234,-70.9458186],[101.0962997,-70.9434058],[101.0987614,-70.9434577],[101.0990787,-70.9418492],[101.1043185,-70.9403442],[101.1046353,-70.9387357],[101.1070965,-70.9387874],[101.107413,-70.9371789],[101.1098739,-70.9372306],[101.1103483,-70.9348178],[101.112809,-70.9348695],[101.113125,-70.9332609],[101.1211371,-70.9301985],[101.1216099,-70.9277857],[101.1240697,-70.9278372],[101.127159,-70.9246715],[101.1296185,-70.924723],[101.1299329,-70.9231144],[101.1323922,-70.9231658],[101.1327064,-70.9215572],[101.1351655,-70.9216086],[101.1356364,-70.9191956],[101.1380952,-70.919247],[101.1411809,-70.916081],[101.1436393,-70.9161323],[101.1439525,-70.9145237],[101.1464107,-70.9145749],[101.1468801,-70.912162],[101.149338,-70.9122131],[101.1496506,-70.9106045],[101.1521084,-70.9106557],[101.1524208,-70.909047],[101.160417,-70.9059829],[101.1608844,-70.9035699],[101.1633413,-70.9036209],[101.1664205,-70.9004546],[101.1688771,-70.9005055],[101.1691879,-70.8988968],[101.1716443,-70.8989477],[101.1721102,-70.8965347],[101.1745663,-70.8965855],[101.1748766,-70.8949768],[101.1773325,-70.8950276],[101.1776425,-70.893419],[101.1856285,-70.8903537],[101.1860925,-70.8879407],[101.1885475,-70.8879913],[101.1888566,-70.8863826],[101.196838,-70.8833169],[101.1971463,-70.8817082],[101.1996006,-70.8817587],[101.2000626,-70.8793456],[101.2025167,-70.8793961],[101.2028244,-70.8777873],[101.2108002,-70.874721],[101.2112607,-70.8723079],[101.2137139,-70.8723582],[101.2140206,-70.8707494],[101.2219918,-70.8676826],[101.2222978,-70.8660738],[101.2247503,-70.866124],[101.2252089,-70.8637108],[101.2276611,-70.863761],[101.2279665,-70.8621522],[101.2359321,-70.8590847],[101.2363891,-70.8566715],[101.2388405,-70.8567215],[101.2391449,-70.8551127],[101.2443512,-70.8536037],[101.2446552,-70.8519949],[101.247106,-70.8520448],[101.2474097,-70.8504359],[101.2498603,-70.8504858],[101.2503154,-70.8480725],[101.2527657,-70.8481223],[101.2530689,-70.8465135],[101.2610243,-70.8434449],[101.2614779,-70.8410317],[101.2639274,-70.8410813],[101.2642296,-70.8394724],[101.2721805,-70.8364034],[101.2724818,-70.8347945],[101.2749306,-70.834844],[101.2753823,-70.8324307],[101.2778308,-70.8324802],[101.2781316,-70.8308713],[101.2860769,-70.8278016],[101.2865271,-70.8253883],[101.2889748,-70.8254376],[101.2892746,-70.8238287],[101.2917221,-70.8238779],[101.2920217,-70.822269],[101.2999614,-70.8191987],[101.3004097,-70.8167854],[101.3028563,-70.8168345],[101.3031549,-70.8152255],[101.3110901,-70.8121548],[101.3115368,-70.8097414],[101.3139826,-70.8097903],[101.3170231,-70.8066213],[101.3194685,-70.8066702],[101.3197656,-70.8050613],[101.3222108,-70.8051101],[101.3225077,-70.8035011],[101.3249527,-70.80355],[101.3253976,-70.8011365],[101.3278423,-70.8011853],[101.3308793,-70.7980161],[101.3333237,-70.7980648],[101.3336195,-70.7964558],[101.3360638,-70.7965044],[101.3365071,-70.7940909],[101.338951,-70.7941396],[101.3419851,-70.7909701],[101.3444287,-70.7910187],[101.3447235,-70.7894097],[101.3471669,-70.7894582],[101.3474615,-70.7878492],[101.3499047,-70.7878977],[101.3503461,-70.7854841],[101.3527891,-70.7855326],[101.3558196,-70.7823629],[101.3582622,-70.7824113],[101.3585557,-70.7808023],[101.3609981,-70.7808506],[101.3614381,-70.778437],[101.3638801,-70.7784853],[101.3669079,-70.7753155],[101.3693496,-70.7753637],[101.3696422,-70.7737546],[101.3720837,-70.7738028],[101.372376,-70.7721938],[101.3748174,-70.7722419],[101.3752554,-70.7698283],[101.3776965,-70.7698764],[101.3779883,-70.7682673],[101.3804292,-70.7683154],[101.3807207,-70.7667063],[101.3886246,-70.7636321],[101.3890608,-70.7612185],[101.3915009,-70.7612664],[101.3917914,-70.7596573],[101.3996908,-70.7565826],[101.4001255,-70.754169],[101.4025648,-70.7542167],[101.4055826,-70.7510462],[101.4080215,-70.7510939],[101.4083105,-70.7494848],[101.4107492,-70.7495325],[101.411038,-70.7479233],[101.4134765,-70.747971],[101.4139093,-70.7455572],[101.4163475,-70.7456048],[101.4193619,-70.7424341],[101.4217998,-70.7424816],[101.4220875,-70.7408724],[101.4245252,-70.7409199],[101.4249565,-70.7385062],[101.4273939,-70.7385536],[101.4276812,-70.7369444],[101.4301184,-70.7369919],[101.4304054,-70.7353827],[101.4382893,-70.7323063],[101.4387188,-70.7298925],[101.4411551,-70.7299398],[101.4441632,-70.7267686],[101.4465992,-70.7268158],[101.4468847,-70.7252066],[101.4493206,-70.7252537],[101.4497485,-70.7228399],[101.4521841,-70.722887],[101.4524691,-70.7212778],[101.460344,-70.7182005],[101.4606283,-70.7165912],[101.4630632,-70.7166382],[101.4634893,-70.7142243],[101.4659238,-70.7142713],[101.4662076,-70.712662],[101.474077,-70.7095841],[101.4745016,-70.7071702],[101.4769353,-70.707217],[101.4772181,-70.7056077],[101.4796517,-70.7056545],[101.4799342,-70.7040452],[101.4877982,-70.7009666],[101.4882209,-70.6985527],[101.4906536,-70.6985993],[101.493649,-70.6954273],[101.4960814,-70.6954738],[101.4963624,-70.6938645],[101.4987946,-70.693911],[101.4992159,-70.691497],[101.5016477,-70.6915435],[101.5019283,-70.6899342],[101.5070719,-70.6884176],[101.507352,-70.6868083],[101.5097833,-70.6868547],[101.5100632,-70.6852453],[101.5124943,-70.6852916],[101.5129137,-70.6828776],[101.5153446,-70.6829239],[101.5156239,-70.6813146],[101.5207643,-70.6797976],[101.5210431,-70.6781883],[101.5234735,-70.6782345],[101.5238914,-70.6758204],[101.5263214,-70.6758665],[101.5293078,-70.6726939],[101.5317375,-70.67274],[101.5320153,-70.6711306],[101.5344448,-70.6711766],[101.5347225,-70.6695672],[101.5371518,-70.6696132],[101.5375679,-70.6671991],[101.5399969,-70.6672451],[101.540274,-70.6656357],[101.5481136,-70.6625545],[101.54839,-70.6609451],[101.5508184,-70.6609909],[101.5512326,-70.6585768],[101.5536606,-70.6586225],[101.5539365,-70.6570131],[101.5617707,-70.6539313],[101.5621834,-70.6515172],[101.5646106,-70.6515628],[101.5648855,-70.6499534],[101.5673126,-70.649999],[101.5675873,-70.6483895],[101.5754159,-70.6453071],[101.5758268,-70.642893],[101.5782531,-70.6429384],[101.5785267,-70.6413289],[101.586351,-70.6382461],[101.5867604,-70.6358319],[101.5891858,-70.6358771],[101.5894585,-70.6342677],[101.5972783,-70.6311843],[101.5975503,-70.6295748],[101.599975,-70.62962],[101.6003826,-70.6272057],[101.602807,-70.6272508],[101.6030785,-70.6256413],[101.6055027,-70.6256864],[101.608469,-70.6225124],[101.6108929,-70.6225574],[101.6111636,-70.6209479],[101.6135873,-70.6209928],[101.6139931,-70.6185786],[101.6164165,-70.6186235],[101.6166868,-70.6170139],[101.6244957,-70.6139294],[101.6249,-70.6115151],[101.6273226,-70.6115599],[101.6275919,-70.6099503],[101.6327055,-70.6084302],[101.6329743,-70.6068206],[101.6353964,-70.6068653],[101.635665,-70.6052557],[101.6380868,-70.6053004],[101.6384893,-70.602886],[101.6409109,-70.6029306],[101.641179,-70.601321],[101.6436003,-70.6013656],[101.6438682,-70.599756],[101.6516663,-70.5966703],[101.6520669,-70.5942559],[101.6544875,-70.5943003],[101.6547544,-70.5926907],[101.6598616,-70.5911698],[101.660128,-70.5895602],[101.662548,-70.5896045],[101.6629473,-70.5871901],[101.665367,-70.5872344],[101.6656329,-70.5856248],[101.6680525,-70.585669],[101.671003,-70.5824939],[101.6734222,-70.5825381],[101.6736874,-70.5809285],[101.6761064,-70.5809726],[101.6765038,-70.5785581],[101.6789226,-70.5786022],[101.6791873,-70.5769926],[101.6816058,-70.5770366],[101.6845529,-70.5738613],[101.6869711,-70.5739053],[101.6872351,-70.5722957],[101.6896531,-70.5723396],[101.6900487,-70.5699251],[101.6924665,-70.569969],[101.69273,-70.5683593],[101.7005084,-70.5652715],[101.7009026,-70.562857],[101.7033195,-70.5629007],[101.703582,-70.561291],[101.7059988,-70.5613347],[101.7089397,-70.5581591],[101.7113561,-70.5582027],[101.7116179,-70.556593],[101.7140341,-70.5566366],[101.7144265,-70.5542221],[101.7168424,-70.5542656],[101.7171037,-70.5526559],[101.7248724,-70.549567],[101.7252633,-70.5471524],[101.7276784,-70.5471959],[101.7306138,-70.5440198],[101.7330286,-70.5440632],[101.7332885,-70.5424534],[101.735703,-70.5424967],[101.7359627,-70.540887],[101.7383771,-70.5409303],[101.7387662,-70.5385157],[101.7411803,-70.5385589],[101.7441123,-70.5353826],[101.7465261,-70.5354258],[101.7467848,-70.5338161],[101.7491984,-70.5338592],[101.7494568,-70.5322494],[101.7518702,-70.5322925],[101.7522576,-70.5298779],[101.7546707,-70.5299209],[101.7549286,-70.5283112],[101.7626822,-70.5252206],[101.763068,-70.5228059],[101.7654803,-70.5228488],[101.7684063,-70.5196722],[101.7708182,-70.519715],[101.7710747,-70.5181052],[101.7734865,-70.518148],[101.7737428,-70.5165382],[101.7761544,-70.516581],[101.7765385,-70.5141663],[101.7789498,-70.514209],[101.7792056,-70.5125992],[101.7869494,-70.5095076],[101.7873321,-70.5070929],[101.7897425,-70.5071354],[101.7926624,-70.5039583],[101.7950725,-70.5040008],[101.7953269,-70.502391],[101.7977368,-70.5024335],[101.797991,-70.5008237],[101.8004008,-70.5008661],[101.8007817,-70.4984514],[101.803318,-70.4976888],[101.810126262177,-70.49874915836004],[101.8107087,-70.4983766],[102.43269665267461,-70.59838547870469],[102.58177189228145,-70.62220422364679]]]},"collection":"aster-l1t","properties":{"created":"2015-05-18T20:21:33.481000Z","datetime":"2006-12-27T02:02:56.086000Z","platform":"terra","proj:epsg":32648,"instruments":["aster"],"eo:cloud_cover":0.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":55.683045,"view:sun_elevation":35.375009,"aster:processing_number":"110648","aster:lower_left_quad_cloud_cover":0.0,"aster:upper_left_quad_cloud_cover":0.0,"aster:lower_right_quad_cloud_cover":0.0,"aster:upper_right_quad_cloud_cover":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"AST_L1T_00312272006013731_20150518201743","bbox":[135.6292203,19.4628434,136.35498,20.1057071],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006013731_20150518201743"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006013731_20150518201743","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013731_20150518201743_110808.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[561869.9999999658,2151269.9999983804,645030.0000007269,2224619.999997964],"proj:shape":[816,925],"proj:transform":[89.90270270352553,0.0,561869.9999999658,0.0,-89.88970588184277,2224619.999997964,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013731_20150518201743_110808.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013731_20150518201743_110808.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[561869.9999999658,2151269.9999983804,645030.0000007269,2224619.999997964],"proj:shape":[2446,2773],"proj:transform":[29.989181392268705,0.0,561869.9999999658,0.0,-29.987735077507644,2224619.999997964,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013731_20150518201743_110808.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[561869.9999999658,2151269.9999983804,645030.0000007269,2224619.999997964],"proj:shape":[4891,5545],"proj:transform":[14.997294860371708,0.0,561869.9999999658,0.0,-14.996933142421529,2224619.999997964,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006013731_20150518201743&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013731_20150518201743_110808_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013731_20150518201743_110808_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006013731_20150518201743&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[136.34289821571912,20.020720623833395],[136.35498,20.0189697],[136.2251696,19.4628434],[136.21324947864323,19.46457187143399],[136.2131502,19.464146],[135.6323929,19.5485524],[135.63275314271402,19.5501201980803],[135.6292203,19.5506338],[135.7569616,20.1049213],[135.76012804723007,20.1044634866618],[135.7604138,20.1057071],[136.3429491,20.0209389],[136.34289821571912,20.020720623833395]]]},"collection":"aster-l1t","properties":{"created":"2015-05-18T20:21:37.680000Z","datetime":"2006-12-27T01:37:31.718000Z","platform":"terra","proj:epsg":32653,"instruments":["aster"],"eo:cloud_cover":100.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":155.089912,"view:sun_elevation":42.752652,"aster:processing_number":"110808","aster:lower_left_quad_cloud_cover":100.0,"aster:upper_left_quad_cloud_cover":100.0,"aster:lower_right_quad_cloud_cover":100.0,"aster:upper_right_quad_cloud_cover":100.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"AST_L1T_00312272006013722_20150518201738","bbox":[135.7518298,19.9964726,136.4799012,20.6392677],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006013722_20150518201738"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006013722_20150518201738","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013722_20150518201738_109349.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[574379.9999999411,2210399.9999980354,657630.0000012475,2283749.9999975613],"proj:shape":[816,926],"proj:transform":[89.90280777678878,0.0,574379.9999999411,0.0,-89.889705881772,2283749.9999975613,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013722_20150518201738_109349.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013722_20150518201738_109349.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[574379.9999999411,2210399.9999980354,657630.0000012475,2283749.9999975613],"proj:shape":[2446,2776],"proj:transform":[29.989193084044096,0.0,574379.9999999411,0.0,-29.98773507748404,2283749.9999975613,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013722_20150518201738_109349.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[574379.9999999411,2210399.9999980354,657630.0000012475,2283749.9999975613],"proj:shape":[4891,5551],"proj:transform":[14.997297784418377,0.0,574379.9999999411,0.0,-14.996933142409723,2283749.9999975613,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006013722_20150518201738&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013722_20150518201738_109349_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013722_20150518201738_109349_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006013722_20150518201738&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[136.46780693887987,20.55417166425732],[136.4799012,20.5524262],[136.349385,19.9964726],[136.33748375966826,19.998191668092826],[136.3373251,19.9975148],[135.77846976452852,20.078938136166784],[135.7604534,20.0815405],[135.7604584318643,20.081562326545306],[135.7547289,20.0823971],[135.75491902937964,20.083220901667566],[135.7518298,20.0836675],[135.8796442,20.6386211],[135.88298967960566,20.63813153893669],[135.8832519,20.6392677],[136.4678302,20.5542709],[136.46780693887987,20.55417166425732]]]},"collection":"aster-l1t","properties":{"created":"2015-05-18T20:19:38.498000Z","datetime":"2006-12-27T01:37:22.872000Z","platform":"terra","proj:epsg":32653,"instruments":["aster"],"eo:cloud_cover":100.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":155.455599,"view:sun_elevation":42.167341,"aster:processing_number":"109349","aster:lower_left_quad_cloud_cover":100.0,"aster:upper_left_quad_cloud_cover":100.0,"aster:lower_right_quad_cloud_cover":100.0,"aster:upper_right_quad_cloud_cover":100.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"AST_L1T_00312272006013714_20150518201738","bbox":[135.8753434,20.5299346,136.6058142,21.1732176],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006013714_20150518201738"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006013714_20150518201738","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013714_20150518201738_109352.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[586979.9999999678,2269619.999997638,670140.0000023331,2342879.9999970975],"proj:shape":[815,925],"proj:transform":[89.90270270525981,0.0,586979.9999999678,0.0,-89.88957055148389,2342879.9999970975,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013714_20150518201738_109352.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013714_20150518201738_109352.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[586979.9999999678,2269619.999997638,670140.0000023331,2342879.9999970975],"proj:shape":[2443,2773],"proj:transform":[29.989181392847215,0.0,586979.9999999678,0.0,-29.987720016152014,2342879.9999970975,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013714_20150518201738_109352.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[586979.9999999678,2269619.999997638,670140.0000023331,2342879.9999970975],"proj:shape":[4885,5545],"proj:transform":[14.997294860661015,0.0,586979.9999999678,0.0,-14.996929375529042,2342879.9999970975,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"qa-txt":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013714_20150518201738_109352_QA.txt","type":"text/plain","roles":["metadata"],"title":"QA browse file","description":"Geometric quality assessment report."},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006013714_20150518201738&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013714_20150518201738_109352_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013714_20150518201738_109352_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006013714_20150518201738&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[136.59362214205737,21.087477258797247],[136.6058142,21.0857071],[136.4745514,20.5299346],[136.46269134748107,20.53165230342284],[136.4625983,20.5312573],[135.91722204326257,20.610653175418523],[135.8837035,20.6155077],[135.8837091276481,20.615531985671385],[135.8779603,20.6163689],[135.87828216514689,20.617756017831883],[135.8753434,20.618182],[136.0032642,21.1729815],[136.0069904924415,21.172440542179235],[136.0071708,21.1732176],[136.5937062,21.0878341],[136.59362214205737,21.087477258797247]]]},"collection":"aster-l1t","properties":{"created":"2015-05-18T20:20:08.349000Z","datetime":"2006-12-27T01:37:14.025000Z","platform":"terra","proj:epsg":32653,"instruments":["aster"],"eo:cloud_cover":83.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":155.634358,"view:sun_elevation":42.051896,"aster:processing_number":"109352","aster:lower_left_quad_cloud_cover":75.0,"aster:upper_left_quad_cloud_cover":62.0,"aster:lower_right_quad_cloud_cover":100.0,"aster:upper_right_quad_cloud_cover":95.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"AST_L1T_00312272006013705_20150517144401","bbox":[135.9989222,21.0634942,136.7321884,21.7068767],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006013705_20150517144401"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006013705_20150517144401","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013705_20150517144401_98387.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[599490.00000004,2328839.99999718,682650.0000039825,2402009.999996572],"proj:shape":[814,925],"proj:transform":[89.90270270696476,0.0,599490.00000004,0.0,-89.88943488868777,2402009.999996572,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013705_20150517144401_98387.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013705_20150517144401_98387.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[599490.00000004,2328839.99999718,682650.0000039825,2402009.999996572],"proj:shape":[2440,2773],"proj:transform":[29.98918139341594,0.0,599490.00000004,0.0,-29.987704917783542,2402009.999996572,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013705_20150517144401_98387.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[599490.00000004,2328839.99999718,682650.0000039825,2402009.999996572],"proj:shape":[4879,5545],"proj:transform":[14.997294860945429,0.0,599490.00000004,0.0,-14.996925599383449,2402009.999996572,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006013705_20150517144401&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013705_20150517144401_98387_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013705_20150517144401_98387_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006013705_20150517144401&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[136.7201516677758,21.621093290948348],[136.7321884,21.6193515],[136.6004244,21.0634942],[136.5884133603321,21.065233175340765],[136.5882856,21.0646941],[136.01372462430044,21.14843742478178],[136.0075997,21.1493242],[136.00760103708072,21.14932994894381],[136.0016927,21.1501911],[136.0019501745728,21.15129666139916],[135.9989222,21.1517368],[136.127845,21.7055583],[136.13092876424946,21.705113484976614],[136.1313394,21.7068767],[136.7201812,21.6212179],[136.7201516677758,21.621093290948348]]]},"collection":"aster-l1t","properties":{"created":"2015-05-17T14:47:46.098000Z","datetime":"2006-12-27T01:37:05.179000Z","platform":"terra","proj:epsg":32653,"instruments":["aster"],"eo:cloud_cover":65.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":155.848171,"view:sun_elevation":41.5781,"aster:processing_number":"98387","aster:lower_left_quad_cloud_cover":58.0,"aster:upper_left_quad_cloud_cover":29.0,"aster:lower_right_quad_cloud_cover":98.0,"aster:upper_right_quad_cloud_cover":77.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"AST_L1T_00312272006013656_20150517144401","bbox":[136.1226093,21.5968757,136.8593423,22.2405053],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006013656_20150517144401"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006013656_20150517144401","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013656_20150517144401_98385.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[612000.0000000909,2387969.9999966426,695070.0000067172,2461229.9999959613],"proj:shape":[815,924],"proj:transform":[89.90259740976866,0.0,612000.0000000909,0.0,-89.88957055131134,2461229.9999959613,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013656_20150517144401_98385.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013656_20150517144401_98385.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[612000.0000000909,2387969.9999966426,695070.0000067172,2461229.9999959613],"proj:shape":[2443,2770],"proj:transform":[29.989169677482398,0.0,612000.0000000909,0.0,-29.98772001609445,2461229.9999959613,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013656_20150517144401_98385.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[612000.0000000909,2387969.9999966426,695070.0000067172,2461229.9999959613],"proj:shape":[4885,5539],"proj:transform":[14.997291931147544,0.0,612000.0000000909,0.0,-14.996929375500253,2461229.9999959613,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006013656_20150517144401&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013656_20150517144401_98385_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013656_20150517144401_98385_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006013656_20150517144401&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[136.8474042710693,22.154269905933756],[136.8593423,22.152537],[136.7267509,21.5968757],[136.7148389234011,21.598605440650214],[136.714715,21.598086],[136.1259621,21.6837209],[136.12635632678385,21.685403996318687],[136.1226093,21.6859495],[136.2525878,22.2404107],[136.256229369572,22.23987885488421],[136.2563761,22.2405053],[136.8474386,22.1544138],[136.8474042710693,22.154269905933756]]]},"collection":"aster-l1t","properties":{"created":"2015-05-17T14:47:30.923000Z","datetime":"2006-12-27T01:36:56.334000Z","platform":"terra","proj:epsg":32653,"instruments":["aster"],"eo:cloud_cover":15.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":156.204691,"view:sun_elevation":40.989492,"aster:processing_number":"98385","aster:lower_left_quad_cloud_cover":9.0,"aster:upper_left_quad_cloud_cover":4.0,"aster:lower_right_quad_cloud_cover":30.0,"aster:upper_right_quad_cloud_cover":18.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"AST_L1T_00312272006013647_20150517144406","bbox":[136.2481687,22.1297987,136.9870275,22.7738293],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006013647_20150517144406"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006013647_20150517144406","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013647_20150517144406_98532.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[624420.0000002224,2447189.9999960246,707490.0000108664,2520359.99999528],"proj:shape":[814,924],"proj:transform":[89.90259741411698,0.0,624420.0000002224,0.0,-89.88943488852016,2520359.99999528,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013647_20150517144406_98532.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013647_20150517144406_98532.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[624420.0000002224,2447189.9999960246,707490.0000108664,2520359.99999528],"proj:shape":[2440,2770],"proj:transform":[29.989169678932882,0.0,624420.0000002224,0.0,-29.987704917727626,2520359.99999528,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013647_20150517144406_98532.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[624420.0000002224,2447189.9999960246,707490.0000108664,2520359.99999528],"proj:shape":[4879,5539],"proj:transform":[14.997291931872917,0.0,624420.0000002224,0.0,-14.996925599355484,2520359.99999528,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006013647_20150517144406&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013647_20150517144406_98532_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006013647_20150517144406_98532_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006013647_20150517144406&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[136.97501587832852,22.68727360838555],[136.9870275,22.6855298],[136.8538547,22.1297987],[136.8418694317007,22.13153822363808],[136.841778,22.1311566],[136.2508072,22.2172225],[136.25116419485636,22.21874017087905],[136.2481687,22.2191782],[136.3783597,22.7726519],[136.38135866394646,22.772228129674243],[136.3817353,22.7738293],[136.9750832,22.6875546],[136.97501587832852,22.68727360838555]]]},"collection":"aster-l1t","properties":{"created":"2015-05-17T14:47:42.756000Z","datetime":"2006-12-27T01:36:47.488000Z","platform":"terra","proj:epsg":32653,"instruments":["aster"],"eo:cloud_cover":12.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":156.556926,"view:sun_elevation":40.400227,"aster:processing_number":"98532","aster:lower_left_quad_cloud_cover":11.0,"aster:upper_left_quad_cloud_cover":12.0,"aster:lower_right_quad_cloud_cover":7.0,"aster:upper_right_quad_cloud_cover":17.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items"},{"rel":"next","type":"application/geo+json","method":"GET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items?collections=aster-l1t&token=next:aster-l1t:AST_L1T_00312272006013647_20150517144406"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '21773' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:50:45 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125044Z-167d46d96d8chv8thC1DENzves0000000srg0000000024g7 status: code: 200 message: OK version: 1 TestCollectionClient.test_get_items_with_ids.yaml000066400000000000000000003620271503646565400360260ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_collection_clientinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/item-search"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3360' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:46 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125045Z-167d46d96d8chv8thC1DENzves0000000sn0000000004mwd status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/item-search"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3360' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:46 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125046Z-167d46d96d8rwmk4hC1DEN36180000000sqg000000002pgf status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t response: body: string: '{"id":"aster-l1t","type":"Collection","links":[{"rel":"items","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"license","href":"https://www.usgs.gov/core-science-systems/hdds/data-policy","title":"Public Domain"},{"rel":"describedby","href":"https://planetarycomputer.microsoft.com/dataset/aster-l1t","type":"text/html","title":"Human readable dataset overview and reference"},{"rel":"describedby","href":"https://planetarycomputer.microsoft.com/dataset/aster-l1t","title":"Human readable dataset overview and reference","type":"text/html"}],"title":"ASTER L1T","assets":{"thumbnail":{"href":"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/aster.png","type":"image/png","roles":["thumbnail"],"title":"ASTER L1T"},"geoparquet-items":{"href":"abfs://items/aster-l1t.parquet","type":"application/x-parquet","roles":["stac-items"],"title":"GeoParquet STAC items","description":"Snapshot of the collection''s STAC items exported to GeoParquet format.","msft:partition_info":{"is_partitioned":true,"partition_frequency":"AS"},"table:storage_options":{"account_name":"pcstacitems"}}},"extent":{"spatial":{"bbox":[[-180,-90,180,90]]},"temporal":{"interval":[["2000-03-04T12:00:00Z","2006-12-31T12:00:00Z"]]}},"license":"proprietary","keywords":["ASTER","USGS","NASA","Satellite","Global"],"providers":[{"url":"https://terra.nasa.gov/about/terra-instruments/aster","name":"NASA","roles":["producer","licensor"]},{"url":"https://lpdaac.usgs.gov/data/get-started-data/collection-overview/missions/aster-overview/","name":"USGS","roles":["processor","producer","licensor"]},{"url":"https://planetarycomputer.microsoft.com","name":"Microsoft","roles":["host","processor"]}],"summaries":{"gsd":[15,30,90],"eo:bands":[{"gsd":15,"name":"VNIR_Band1","common_name":"green","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"gsd":15,"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"gsd":15,"name":"VNIR_Band3N","common_name":"nir08","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08},{"gsd":30,"name":"SWIR_Band4","common_name":"swir16","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"gsd":30,"name":"SWIR_Band5","common_name":"swir22","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band6","common_name":"swir22","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band7","common_name":"swir22","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"gsd":30,"name":"SWIR_Band8","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"gsd":30,"name":"SWIR_Band9","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07},{"gsd":90,"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"gsd":90,"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"platform":["terra"],"instruments":["aster"]},"description":"The [ASTER](https://terra.nasa.gov/about/terra-instruments/aster) instrument, launched on-board NASA''s [Terra](https://terra.nasa.gov/) satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. ASTER images provide information about land surface temperature, color, elevation, and mineral composition.\n\nThis dataset represents ASTER [L1T](https://lpdaac.usgs.gov/products/ast_l1tv003/) data from 2000-2006. L1T images have been terrain-corrected and rotated to a north-up UTM projection. Images are in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\n","item_assets":{"TIR":{"roles":["data"],"title":"TIR Swath data","eo:bands":[{"gsd":90,"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"gsd":90,"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","eo:bands":[{"gsd":30,"name":"SWIR_Band4","common_name":"swir","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"gsd":30,"name":"SWIR_Band5","common_name":"swir","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band6","common_name":"swir","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band7","common_name":"swir","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"gsd":30,"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"gsd":30,"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","eo:bands":[{"gsd":15,"name":"VNIR_Band1","common_name":"yellow/green","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"gsd":15,"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"gsd":15,"name":"VNIR_Band3N","common_name":"near infrared","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"qa-txt":{"type":"text/plain","roles":["metadata"],"title":"QA browse file","description":"Geometric quality assessment report."},"qa-browse":{"type":"image/jpeg","roles":["thumbnail"],"title":"QA browse file","description":"Single-band black and white reduced resolution browse overlaid with red, green, and blue (RGB) markers for GCPs used during the geometric verification quality check."},"tir-browse":{"type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"}},"stac_version":"1.0.0","msft:container":"aster","stac_extensions":["https://stac-extensions.github.io/item-assets/v1.0.0/schema.json","https://stac-extensions.github.io/table/v1.2.0/schema.json"],"msft:storage_account":"astersa","msft:short_description":"The ASTER instrument, launched on-board NASA''s Terra satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. This dataset contains ASTER data from 2000-2006.","msft:region":"westeurope"}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2034' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:47 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125046Z-167d46d96d844j9nhC1DENytps0000000ssg000000001dep status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/search?ids=AST_L1T_00312272006020322_20150518201805%2CAST_L1T_00312272006020313_20150518201753%2CAST_L1T_00312272006020304_20150518201753&collections=aster-l1t response: body: string: '{"type":"FeatureCollection","features":[{"id":"AST_L1T_00312272006020322_20150518201805","bbox":[98.5127846,-72.6857366,101.0889206,-71.9245548],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006020322_20150518201805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006020322_20150518201805","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[479159.99999999313,-8068679.999054978,575010.0000364248,-7977509.999048144],"proj:shape":[1014,1066],"proj:transform":[89.91557226682148,0.0,479159.99999999313,0.0,-89.91124261028999,-7977509.999048144,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[479159.99999999313,-8068679.999054978,575010.0000364248,-7977509.999048144],"proj:shape":[3040,3196],"proj:transform":[29.990613277982387,0.0,479159.99999999313,0.0,-29.99013158119541,-7977509.999048144,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[479159.99999999313,-8068679.999054978,575010.0000364248,-7977509.999048144],"proj:shape":[6079,6391],"proj:transform":[14.99765295516065,0.0,479159.99999999313,0.0,-14.997532490020406,-7977509.999048144,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006020322_20150518201805&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020322_20150518201805_110656_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006020322_20150518201805&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[99.4688048,-71.9317123],[100.26909013382132,-72.06292754128351],[101.01155411667678,-72.18002518606886],[101.02462934566167,-72.18208319828851],[101.0255115,-72.1821809],[101.02561269773116,-72.18223797573658],[101.0485969157694,-72.1858556409902],[101.0496391,-72.1859631],[101.04977848322952,-72.18604161710383],[101.07552427221498,-72.19009394753702],[101.0791318,-72.1904922],[101.08045471515234,-72.19086998838686],[101.0889206,-72.1922025],[100.6948508,-72.4181531],[100.4452794,-72.5580831],[100.2135876,-72.6857366],[100.18857636208548,-72.68191253382402],[100.1874713,-72.6825262],[100.04421765107804,-72.65984096480142],[99.9604827,-72.6470384],[99.4215044,-72.561242],[99.41958374889319,-72.56092573932061],[99.356,-72.5508568],[98.5159305,-72.4122347],[98.51895554626601,-72.41063665367456],[98.5127846,-72.4096541],[98.5128278,-72.4080421],[98.5154932,-72.4080486],[98.5155361,-72.4064365],[98.5208876,-72.4056434],[98.52093,-72.4040314],[98.5263015,-72.4024322],[98.5263435,-72.4008201],[98.5316928,-72.4000267],[98.5317343,-72.3984147],[98.5343982,-72.398421],[98.5344395,-72.3968089],[98.5371032,-72.3968151],[98.5371442,-72.3952031],[98.5424914,-72.3944094],[98.5425319,-72.3927974],[98.5478982,-72.3911975],[98.5479383,-72.3895855],[98.5532833,-72.3887915],[98.5533229,-72.3871795],[98.5559852,-72.3871855],[98.5560245,-72.3855734],[98.5586866,-72.3855794],[98.5587256,-72.3839673],[98.5640686,-72.3831731],[98.5641072,-72.381561],[98.5694682,-72.3799606],[98.5695064,-72.3783485],[98.5748472,-72.377554],[98.5748848,-72.3759419],[98.5802433,-72.3743412],[98.5802804,-72.3727292],[98.5856191,-72.3719343],[98.5856558,-72.3703223],[98.5883156,-72.3703278],[98.5883521,-72.3687157],[98.5910117,-72.3687212],[98.5910478,-72.3671092],[98.5963844,-72.3663141],[98.5964201,-72.364702],[98.5990792,-72.3647074],[98.5991146,-72.3630953],[98.6017734,-72.3631007],[98.6018086,-72.3614886],[98.6044672,-72.361494],[98.6045021,-72.3598819],[98.609836,-72.3590864],[98.6098705,-72.3574744],[98.6125285,-72.3574796],[98.6125628,-72.3558675],[98.6152205,-72.3558727],[98.6152545,-72.3542606],[98.6205863,-72.3534648],[98.6206198,-72.3518528],[98.6259672,-72.3502508],[98.6260002,-72.3486387],[98.6313299,-72.3478427],[98.6313625,-72.3462306],[98.6367072,-72.3446283],[98.6367393,-72.3430163],[98.6420669,-72.3422199],[98.6420985,-72.3406078],[98.6474407,-72.3390053],[98.6474718,-72.3373932],[98.6527973,-72.3365966],[98.6528279,-72.3349845],[98.6581675,-72.3333817],[98.6581977,-72.3317696],[98.663521,-72.3309727],[98.6635507,-72.3293606],[98.6688878,-72.3277575],[98.668917,-72.3261454],[98.6742382,-72.3253482],[98.6742669,-72.3237361],[98.67692,-72.3237404],[98.6769485,-72.3221283],[98.6796014,-72.3221327],[98.6796296,-72.3205206],[98.6849488,-72.3197231],[98.6849766,-72.318111],[98.6903084,-72.3165073],[98.6903357,-72.3148952],[98.6956527,-72.3140974],[98.6956796,-72.3124853],[98.7010088,-72.3108813],[98.7010352,-72.3092692],[98.7063501,-72.3084711],[98.706376,-72.306859],[98.7117027,-72.3052548],[98.7117281,-72.3036427],[98.7170409,-72.3028443],[98.7170659,-72.3012322],[98.72239,-72.2996276],[98.7224144,-72.2980155],[98.7277251,-72.2972169],[98.7277491,-72.2956048],[98.7303981,-72.2956084],[98.7304219,-72.2939963],[98.7330707,-72.2939999],[98.7330942,-72.2923878],[98.7384028,-72.2915889],[98.7384258,-72.2899768],[98.7437448,-72.2883716],[98.7437674,-72.2867595],[98.7490739,-72.2859603],[98.749096,-72.2843482],[98.7517434,-72.2843515],[98.7517652,-72.2827394],[98.7544124,-72.2827427],[98.754434,-72.2811306],[98.7597384,-72.2803311],[98.7597595,-72.278719],[98.7650734,-72.2771133],[98.765094,-72.2755012],[98.7703964,-72.2747014],[98.7704166,-72.2730893],[98.7730623,-72.2730923],[98.7730823,-72.2714802],[98.7757278,-72.2714833],[98.7757476,-72.2698712],[98.7810478,-72.269071],[98.7810671,-72.2674589],[98.7863758,-72.2658526],[98.7863945,-72.2642405],[98.789039,-72.2642434],[98.7890576,-72.2626313],[98.7943551,-72.2618308],[98.7943732,-72.2602187],[98.7996786,-72.258612],[98.7996963,-72.2569999],[98.8049917,-72.2561992],[98.8050089,-72.2545871],[98.8103117,-72.2529801],[98.8103284,-72.251368],[98.8156218,-72.250567],[98.815638,-72.2489549],[98.8182803,-72.2489573],[98.8182962,-72.2473452],[98.8209383,-72.2473476],[98.820954,-72.2457355],[98.8262453,-72.2449342],[98.8262606,-72.2433221],[98.8315583,-72.2417146],[98.8315731,-72.2401025],[98.8368623,-72.2393009],[98.8368767,-72.2376887],[98.8421719,-72.2360809],[98.8421857,-72.2344688],[98.8474729,-72.2336669],[98.8474862,-72.2320548],[98.8527789,-72.2304467],[98.8527918,-72.2288346],[98.8580768,-72.2280324],[98.8580893,-72.2264203],[98.8633794,-72.2248119],[98.8633914,-72.2231998],[98.8686743,-72.2223973],[98.8686859,-72.2207852],[98.8739734,-72.2191766],[98.8739845,-72.2175644],[98.8792653,-72.2167617],[98.8792759,-72.2151496],[98.8845609,-72.2135406],[98.8845711,-72.2119285],[98.8898499,-72.2111255],[98.8898595,-72.2095134],[98.895142,-72.2079041],[98.8951512,-72.206292],[98.9004279,-72.2054887],[98.9004366,-72.2038766],[98.9057165,-72.202267],[98.9057248,-72.2006549],[98.9109994,-72.1998513],[98.9110072,-72.1982392],[98.9136422,-72.1982404],[98.9136498,-72.1966282],[98.9162846,-72.1966294],[98.9162919,-72.1950173],[98.9215645,-72.1942134],[98.9215714,-72.1926012],[98.9268462,-72.1909912],[98.9268526,-72.189379],[98.9321231,-72.1885749],[98.932129,-72.1869627],[98.9374013,-72.1853524],[98.9374068,-72.1837402],[98.9426752,-72.1829358],[98.9426802,-72.1813236],[98.94795,-72.179713],[98.9479546,-72.1781009],[98.9532209,-72.1772961],[98.953225,-72.175684],[98.9584922,-72.1740731],[98.9584959,-72.1724609],[98.9637601,-72.1716559],[98.9637633,-72.1700438],[98.9663943,-72.1700442],[98.9663972,-72.1684321],[98.969028,-72.1684325],[98.9690307,-72.1668204],[98.9742929,-72.1660151],[98.9742952,-72.164403],[98.9795573,-72.1627915],[98.9795591,-72.1611793],[98.9848193,-72.1603738],[98.9848206,-72.1587616],[98.9900802,-72.1571498],[98.9900811,-72.1555377],[98.9953392,-72.1547318],[98.9953396,-72.1531197],[98.9979682,-72.1531198],[98.9979683,-72.1515076],[99.0005967,-72.1515076],[99.0005966,-72.1498955],[99.0058526,-72.1490893],[99.0058521,-72.1474772],[99.0111067,-72.1458649],[99.0111058,-72.1442527],[99.0163597,-72.1434463],[99.0163583,-72.1418342],[99.0216103,-72.1402215],[99.0216085,-72.1386094],[99.0268603,-72.1378027],[99.026858,-72.1361905],[99.0321075,-72.1345776],[99.0321047,-72.1329655],[99.0373545,-72.1321585],[99.0373513,-72.1305464],[99.0425983,-72.1289331],[99.0425946,-72.127321],[99.0478424,-72.1265137],[99.0478382,-72.1249016],[99.0530827,-72.1232881],[99.0530781,-72.121676],[99.0583238,-72.1208684],[99.0583187,-72.1192563],[99.0609425,-72.1192555],[99.0609371,-72.1176433],[99.0635607,-72.1176425],[99.0635552,-72.1160304],[99.0687988,-72.1152225],[99.0687928,-72.1136104],[99.0714158,-72.1136095],[99.0714095,-72.1119973],[99.0740323,-72.1119964],[99.0740258,-72.1103842],[99.0792674,-72.1095761],[99.0792605,-72.107964],[99.0818827,-72.1079629],[99.0818755,-72.1063507],[99.0844975,-72.1063496],[99.0844901,-72.1047375],[99.0897296,-72.1039291],[99.0897218,-72.102317],[99.0949563,-72.1007023],[99.094948,-72.0990902],[99.1001855,-72.0982815],[99.1001768,-72.0966694],[99.1054087,-72.0950545],[99.1053996,-72.0934424],[99.110635,-72.0926334],[99.1106254,-72.0910213],[99.1132451,-72.0910198],[99.1132353,-72.0894076],[99.1158548,-72.0894061],[99.1158447,-72.087794],[99.1210781,-72.0869847],[99.1210676,-72.0853726],[99.1262945,-72.0837571],[99.1262835,-72.082145],[99.1315148,-72.0813355],[99.1315034,-72.0797233],[99.1367279,-72.0781076],[99.136716,-72.0764955],[99.1419452,-72.0756857],[99.1419329,-72.0740735],[99.1471549,-72.0724575],[99.1471421,-72.0708454],[99.1523693,-72.0700353],[99.152356,-72.0684232],[99.1575755,-72.0668069],[99.1575618,-72.0651947],[99.162787,-72.0643844],[99.1627728,-72.0627722],[99.1679898,-72.0611557],[99.1679752,-72.0595435],[99.1731983,-72.0587329],[99.1731833,-72.0571208],[99.1757983,-72.0571184],[99.175783,-72.0555063],[99.1783977,-72.0555039],[99.1783823,-72.0538918],[99.1836033,-72.0530809],[99.1835874,-72.0514687],[99.1887994,-72.0498516],[99.188783,-72.0482395],[99.194002,-72.0474283],[99.1939852,-72.0458161],[99.1991947,-72.0441987],[99.1991774,-72.0425866],[99.2043944,-72.0417751],[99.2043766,-72.040163],[99.2095836,-72.0385453],[99.2095654,-72.0369332],[99.2147804,-72.0361214],[99.2147618,-72.0345093],[99.2173736,-72.0345064],[99.2173547,-72.0328942],[99.2199663,-72.0328913],[99.2199472,-72.0312792],[99.2251601,-72.0304671],[99.2251406,-72.028855],[99.2277516,-72.028852],[99.2277319,-72.0272398],[99.2303426,-72.0272368],[99.2303227,-72.0256246],[99.2355335,-72.0248123],[99.2355131,-72.0232002],[99.2381233,-72.023197],[99.2381027,-72.0215849],[99.2407127,-72.0215817],[99.2406918,-72.0199695],[99.2459006,-72.019157],[99.2458793,-72.0175448],[99.2510764,-72.015926],[99.2510546,-72.0143139],[99.2562614,-72.013501],[99.2562393,-72.0118889],[99.2588479,-72.0118855],[99.2588254,-72.0102733],[99.2614338,-72.0102698],[99.2614112,-72.0086577],[99.266616,-72.0078446],[99.2665929,-72.0062324],[99.271785,-72.0046131],[99.2717615,-72.0030009],[99.2769642,-72.0021875],[99.2769402,-72.0005754],[99.2795472,-72.0005717],[99.279523,-71.9989595],[99.2821298,-71.9989558],[99.2821054,-71.9973436],[99.2873061,-71.99653],[99.2872813,-71.9949178],[99.2924684,-71.9932979],[99.2924431,-71.9916858],[99.2976418,-71.9908718],[99.2976161,-71.9892597],[99.3028007,-71.9876395],[99.3027746,-71.9860274],[99.3079712,-71.9852131],[99.3079446,-71.983601],[99.3105492,-71.9835969],[99.3105224,-71.9819847],[99.3131268,-71.9819806],[99.3130997,-71.9803684],[99.3182943,-71.9795539],[99.3182668,-71.9779418],[99.3208707,-71.9779375],[99.3208429,-71.9763254],[99.3234466,-71.9763211],[99.3234186,-71.9747089],[99.3286112,-71.9738941],[99.3285828,-71.972282],[99.3337601,-71.970661],[99.3337312,-71.9690489],[99.3389218,-71.9682338],[99.3388925,-71.9666217],[99.3440673,-71.9650004],[99.3440376,-71.9633883],[99.3492262,-71.9625729],[99.349196,-71.9609608],[99.3543684,-71.9593393],[99.3543378,-71.9577271],[99.3595243,-71.9569115],[99.3594933,-71.9552994],[99.3620939,-71.9552945],[99.3620627,-71.9536824],[99.3646631,-71.9536776],[99.3646317,-71.9520654],[99.3698162,-71.9512495],[99.3697843,-71.9496374],[99.3723841,-71.9496324],[99.372352,-71.9480203],[99.3749517,-71.9480153],[99.3749193,-71.9464032],[99.3801018,-71.945587],[99.380069,-71.9439749],[99.385234,-71.9423525],[99.3852008,-71.9407404],[99.3903812,-71.9399239],[99.3903476,-71.9383118],[99.3955101,-71.9366892],[99.395476,-71.9350771],[99.4006544,-71.9342603],[99.4006199,-71.9326482],[99.4032174,-71.9326428],[99.4031827,-71.9310307],[99.4057799,-71.9310253],[99.405745,-71.9294132],[99.4109214,-71.9285962],[99.410886,-71.9269841],[99.4134827,-71.9269785],[99.4134471,-71.9253664],[99.4160257,-71.9245548],[99.42329240469921,-71.92568924843837],[99.4246269,-71.9249621],[99.45795183479106,-71.93041833653511],[99.4688048,-71.9317123]]]},"collection":"aster-l1t","properties":{"created":"2015-05-18T20:21:47.235000Z","datetime":"2006-12-27T02:03:22.718000Z","platform":"terra","proj:epsg":32647,"instruments":["aster"],"eo:cloud_cover":0.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":57.318059,"view:sun_elevation":34.202038,"aster:processing_number":"110656","aster:lower_left_quad_cloud_cover":0.0,"aster:upper_left_quad_cloud_cover":0.0,"aster:lower_right_quad_cloud_cover":0.0,"aster:upper_right_quad_cloud_cover":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"AST_L1T_00312272006020313_20150518201753","bbox":[99.3885664,-72.2098622,101.8906871,-71.4520434],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006020313_20150518201753"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006020313_20150518201753","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020313_20150518201753_111218.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[509039.9999999969,-8016389.999059276,604890.0003240635,-7925219.999045857],"proj:shape":[1014,1066],"proj:transform":[89.9155725366478,0.0,509039.9999999969,0.0,-89.91124261678353,-7925219.999045857,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020313_20150518201753_111218.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020313_20150518201753_111218.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[509039.9999999969,-8016389.999059276,604890.0003240635,-7925219.999045857],"proj:shape":[3040,3196],"proj:transform":[29.990613367980774,0.0,509039.9999999969,0.0,-29.990131583361347,-7925219.999045857,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020313_20150518201753_111218.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[509039.9999999969,-8016389.999059276,604890.0003240635,-7925219.999045857],"proj:shape":[6079,6391],"proj:transform":[14.997653000166883,0.0,509039.9999999969,0.0,-14.997532491103552,-7925219.999045857,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006020313_20150518201753&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020313_20150518201753_111218_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020313_20150518201753_111218_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006020313_20150518201753&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[101.8664834,-71.7090042],[101.8661676389719,-71.70919524668975],[101.87429353132454,-71.71046700109217],[101.8801797,-71.7111063],[101.88236731605899,-71.71173060031728],[101.8906871,-71.7130327],[101.4479196,-71.9807235],[101.0577641,-72.2098622],[101.03287951690046,-72.20609703674523],[101.0317414,-72.2067654],[100.8900262517455,-72.184482615373],[100.8023384,-72.171215],[100.33099422137461,-72.09658241214296],[100.2306777,-72.080809],[99.3913652,-71.943376],[99.39397991737583,-71.94191488329963],[99.3886167,-71.9410774],[99.3885664,-71.9386592],[99.3911647,-71.9386539],[99.391131,-71.9370418],[99.3963102,-71.9362252],[99.396276,-71.9346131],[99.3988738,-71.9346078],[99.3988394,-71.9329956],[99.401437,-71.9329903],[99.4014024,-71.9313782],[99.4065796,-71.9305613],[99.4065445,-71.9289492],[99.411703,-71.9273261],[99.4116676,-71.925714],[99.4168427,-71.9248968],[99.4168068,-71.9232847],[99.419403,-71.9232791],[99.4193669,-71.921667],[99.4219629,-71.9216614],[99.4219265,-71.9200492],[99.4270997,-71.9192318],[99.4270629,-71.9176197],[99.4296583,-71.917614],[99.4296213,-71.9160018],[99.4322165,-71.9159961],[99.4321793,-71.9143839],[99.4373504,-71.9135662],[99.4373127,-71.9119541],[99.4424639,-71.9103302],[99.4424258,-71.9087181],[99.4475949,-71.9079001],[99.4475564,-71.906288],[99.4527051,-71.9046639],[99.4526662,-71.9030517],[99.4578333,-71.9022335],[99.4577939,-71.9006214],[99.4629402,-71.8989969],[99.4629004,-71.8973848],[99.4680654,-71.8965663],[99.4680252,-71.8949542],[99.473169,-71.8933295],[99.4731283,-71.8917174],[99.4782914,-71.8908986],[99.4782503,-71.8892865],[99.4808418,-71.8892801],[99.4808004,-71.8876679],[99.4833917,-71.8876615],[99.4833502,-71.8860494],[99.4885112,-71.8852303],[99.4884692,-71.8836182],[99.4910599,-71.8836117],[99.4910177,-71.8819995],[99.4936082,-71.881993],[99.4935658,-71.8803808],[99.4987248,-71.8795615],[99.498682,-71.8779494],[99.5012719,-71.8779427],[99.5012288,-71.8763306],[99.5038185,-71.8763239],[99.5037752,-71.8747118],[99.5089323,-71.8738922],[99.5088886,-71.8722801],[99.5114777,-71.8722732],[99.5114338,-71.8706611],[99.5165894,-71.8698413],[99.516545,-71.8682292],[99.5216774,-71.8666032],[99.5216326,-71.8649911],[99.5267862,-71.864171],[99.526741,-71.8625589],[99.5293287,-71.8625519],[99.5292833,-71.8609397],[99.5318709,-71.8609326],[99.5318252,-71.8593205],[99.5369768,-71.8585002],[99.5369307,-71.8568881],[99.5395177,-71.8568809],[99.5394714,-71.8552688],[99.5420582,-71.8552616],[99.5420117,-71.8536494],[99.5471613,-71.8528288],[99.5471144,-71.8512167],[99.5522394,-71.8495899],[99.552192,-71.8479778],[99.5573397,-71.8471569],[99.5572919,-71.8455448],[99.5624145,-71.8439177],[99.5623662,-71.8423056],[99.5675119,-71.8414845],[99.5674632,-71.8398724],[99.5725834,-71.838245],[99.5725343,-71.8366329],[99.5776779,-71.8358115],[99.5776284,-71.8341994],[99.5827462,-71.8325718],[99.5826963,-71.8309597],[99.5878379,-71.830138],[99.5877875,-71.8285259],[99.5929029,-71.826898],[99.5928521,-71.8252859],[99.5979917,-71.8244639],[99.5979405,-71.8228518],[99.6030534,-71.8212237],[99.6030018,-71.8196116],[99.6081394,-71.8187894],[99.6080874,-71.8171773],[99.6106689,-71.8171691],[99.6106166,-71.815557],[99.6131979,-71.8155488],[99.6131454,-71.8139367],[99.618281,-71.8131142],[99.6182281,-71.8115021],[99.6233362,-71.8098735],[99.6232829,-71.8082614],[99.6284165,-71.8074386],[99.6283628,-71.8058265],[99.6334684,-71.8041975],[99.6334142,-71.8025854],[99.6385459,-71.8017624],[99.6384913,-71.8001503],[99.6435946,-71.7985211],[99.6435395,-71.796909],[99.6486692,-71.7960857],[99.6486138,-71.7944736],[99.6537146,-71.7928441],[99.6536587,-71.791232],[99.6587864,-71.7904084],[99.6587301,-71.7887964],[99.6613077,-71.7887875],[99.6612512,-71.7871754],[99.6638286,-71.7871666],[99.6637718,-71.7855545],[99.6688975,-71.7847307],[99.6688404,-71.7831186],[99.6714172,-71.7831096],[99.6713598,-71.7814975],[99.6739364,-71.7814885],[99.6738789,-71.7798765],[99.6790026,-71.7790523],[99.6789446,-71.7774403],[99.6815206,-71.7774312],[99.6814624,-71.7758191],[99.6840382,-71.77581],[99.6839798,-71.7741979],[99.6891016,-71.7733735],[99.6890427,-71.7717614],[99.694134,-71.7701309],[99.6940747,-71.7685188],[99.6991945,-71.7676941],[99.6991348,-71.7660821],[99.7017093,-71.7660727],[99.7016494,-71.7644606],[99.7042236,-71.7644512],[99.7041635,-71.7628392],[99.7092813,-71.7620142],[99.7092208,-71.7604022],[99.7117945,-71.7603927],[99.7117337,-71.7587806],[99.7143072,-71.7587711],[99.7142463,-71.757159],[99.7193621,-71.7563338],[99.7193007,-71.7547217],[99.7243848,-71.7530904],[99.724323,-71.7514783],[99.7294368,-71.7506528],[99.7293746,-71.7490408],[99.7319467,-71.749031],[99.7318843,-71.7474189],[99.7344562,-71.7474091],[99.7343936,-71.7457971],[99.7395055,-71.7449714],[99.7394425,-71.7433593],[99.7445217,-71.7417274],[99.7444582,-71.7401153],[99.7495681,-71.7392893],[99.7495042,-71.7376773],[99.7520748,-71.7376673],[99.7520107,-71.7360552],[99.7545811,-71.7360451],[99.7545168,-71.7344331],[99.7596247,-71.7336068],[99.75956,-71.7319947],[99.7646345,-71.7303623],[99.7645693,-71.7287503],[99.7696753,-71.7279237],[99.7696097,-71.7263117],[99.7721788,-71.7263014],[99.772113,-71.7246893],[99.7746818,-71.724679],[99.7746159,-71.7230669],[99.7797198,-71.7222401],[99.7796534,-71.7206281],[99.7847231,-71.7189951],[99.7846563,-71.7173831],[99.7897583,-71.716556],[99.7896911,-71.714944],[99.7947584,-71.7133108],[99.7946908,-71.7116987],[99.7997908,-71.7108714],[99.7997228,-71.7092593],[99.8047877,-71.7076259],[99.8047192,-71.7060138],[99.8098173,-71.7051862],[99.8097484,-71.7035742],[99.8123143,-71.7035633],[99.8122453,-71.7019513],[99.8173419,-71.7011235],[99.8172724,-71.6995115],[99.8223332,-71.6978775],[99.8222633,-71.6962655],[99.827358,-71.6954374],[99.8272877,-71.6938254],[99.8298522,-71.6938143],[99.8297817,-71.6922023],[99.8323461,-71.6921912],[99.8322754,-71.6905791],[99.8373681,-71.6897508],[99.8372969,-71.6881388],[99.842353,-71.6865043],[99.8422814,-71.6848923],[99.8473721,-71.6840637],[99.8473002,-71.6824517],[99.8498632,-71.6824403],[99.849791,-71.6808283],[99.8523538,-71.6808169],[99.8522815,-71.6792049],[99.8573702,-71.6783761],[99.8572974,-71.676764],[99.8623487,-71.675129],[99.8622755,-71.673517],[99.8673624,-71.6726879],[99.8672887,-71.6710759],[99.8698502,-71.6710643],[99.8697764,-71.6694522],[99.8723377,-71.6694406],[99.8722636,-71.6678286],[99.8773485,-71.6669992],[99.877274,-71.6653872],[99.8823206,-71.6637516],[99.8822457,-71.6621396],[99.8873286,-71.66131],[99.8872534,-71.659698],[99.8898133,-71.6596861],[99.8897378,-71.6580741],[99.8922976,-71.6580622],[99.8922219,-71.6564502],[99.8973028,-71.6556203],[99.8972268,-71.6540082],[99.8997859,-71.6539962],[99.8997096,-71.6523842],[99.9022686,-71.6523722],[99.9021921,-71.6507602],[99.9072711,-71.64993],[99.9071942,-71.648318],[99.9097526,-71.6483059],[99.9096754,-71.6466938],[99.9122336,-71.6466817],[99.9121563,-71.6450697],[99.9172333,-71.6442392],[99.9171556,-71.6426272],[99.9221927,-71.6409907],[99.9221146,-71.6393786],[99.9271897,-71.638548],[99.9271111,-71.6369359],[99.9321459,-71.6352991],[99.9320669,-71.6336871],[99.93714,-71.6328561],[99.9370607,-71.6312441],[99.9396168,-71.6312316],[99.9395372,-71.6296196],[99.942093,-71.6296071],[99.9420133,-71.6279951],[99.9470845,-71.6271638],[99.9470043,-71.6255518],[99.9520343,-71.6239145],[99.9519537,-71.6223025],[99.957023,-71.621471],[99.956942,-71.619859],[99.9619696,-71.6182214],[99.9618882,-71.6166094],[99.9669555,-71.6157776],[99.9668737,-71.6141657],[99.9694275,-71.6141527],[99.9693455,-71.6125407],[99.971899,-71.6125278],[99.9718168,-71.6109158],[99.9768821,-71.6100838],[99.9767995,-71.6084718],[99.9793525,-71.6084587],[99.9792697,-71.6068467],[99.9818225,-71.6068337],[99.9817395,-71.6052217],[99.9868029,-71.6043894],[99.9867194,-71.6027774],[99.99174,-71.601139],[99.9916562,-71.599527],[99.9967176,-71.5986945],[99.9966334,-71.5970825],[99.9991849,-71.5970692],[99.9991004,-71.5954572],[100.0041605,-71.5946245],[100.0040756,-71.5930125],[100.0090922,-71.5913737],[100.0090069,-71.5897617],[100.014065,-71.5889287],[100.0139794,-71.5873167],[100.0165295,-71.5873032],[100.0164436,-71.5856912],[100.0189936,-71.5856776],[100.0189075,-71.5840656],[100.0239637,-71.5832324],[100.0238772,-71.5816204],[100.0288891,-71.579981],[100.0288022,-71.5783691],[100.0338564,-71.5775356],[100.0337691,-71.5759236],[100.0387787,-71.574284],[100.038691,-71.572672],[100.0437433,-71.5718382],[100.0436552,-71.5702263],[100.0486624,-71.5685864],[100.0485739,-71.5669744],[100.0536242,-71.5661404],[100.0535354,-71.5645284],[100.0560824,-71.5645143],[100.0559933,-71.5629024],[100.0585402,-71.5628883],[100.0584509,-71.5612763],[100.0634993,-71.560442],[100.0634096,-71.5588301],[100.0684121,-71.5571897],[100.0683221,-71.5555777],[100.0733685,-71.5547432],[100.073278,-71.5531312],[100.0782782,-71.5514905],[100.0781873,-71.5498786],[100.0832319,-71.5490438],[100.0831406,-71.5474318],[100.0881384,-71.5457909],[100.0880467,-71.544179],[100.0930893,-71.5433439],[100.0929972,-71.541732],[100.0955412,-71.5417173],[100.0954489,-71.5401054],[100.0979927,-71.5400908],[100.0979002,-71.5384788],[100.1029409,-71.5376435],[100.102848,-71.5360316],[100.1078412,-71.5343901],[100.1077479,-71.5327782],[100.1127866,-71.5319426],[100.112693,-71.5303307],[100.1176838,-71.528689],[100.1175897,-71.527077],[100.1226265,-71.5262412],[100.1225321,-71.5246293],[100.1250738,-71.5246143],[100.1249791,-71.5230023],[100.1275206,-71.5229873],[100.1274257,-71.5213754],[100.1324606,-71.5205393],[100.1323653,-71.5189273],[100.1349062,-71.5189122],[100.1348108,-71.5173003],[100.1398442,-71.516464],[100.1397484,-71.5148521],[100.1422888,-71.5148368],[100.1421927,-71.5132249],[100.1447329,-71.5132097],[100.1446366,-71.5115977],[100.1496682,-71.5107612],[100.1495715,-71.5091493],[100.1545537,-71.5075066],[100.1544566,-71.5058947],[100.1594862,-71.5050579],[100.1593888,-71.5034459],[100.1643686,-71.501803],[100.1642708,-71.5001911],[100.1692985,-71.499354],[100.1692002,-71.4977421],[100.1741778,-71.496099],[100.1740791,-71.4944871],[100.1791049,-71.4936497],[100.1790059,-71.4920378],[100.1839811,-71.4903944],[100.1838816,-71.4887825],[100.1889055,-71.4879449],[100.1888057,-71.486333],[100.1913423,-71.4863171],[100.1912422,-71.4847052],[100.1937786,-71.4846893],[100.1936784,-71.4830774],[100.1987003,-71.4822396],[100.1985997,-71.4806277],[100.2035703,-71.4789837],[100.2034692,-71.4773718],[100.2084893,-71.4765337],[100.2083879,-71.4749218],[100.2133561,-71.4732776],[100.2132543,-71.4716658],[100.2182724,-71.4708274],[100.2181703,-71.4692155],[100.2207045,-71.4691992],[100.2206021,-71.4675874],[100.2231362,-71.4675711],[100.2230336,-71.4659592],[100.2280498,-71.4651205],[100.2279468,-71.4635087],[100.2304804,-71.4634923],[100.2303772,-71.4618804],[100.2329105,-71.461864],[100.2328071,-71.4602521],[100.2378214,-71.4594132],[100.2377176,-71.4578013],[100.2402504,-71.4577848],[100.2401464,-71.4561729],[100.2451593,-71.4553338],[100.245055,-71.453722],[100.2475872,-71.4537054],[100.2474826,-71.4520935],[100.2550786,-71.4520434],[100.2562372385249,-71.45274414479073],[100.2567335,-71.4524585],[101.0605383,-71.5830607],[101.8664834,-71.7090042]]]},"collection":"aster-l1t","properties":{"created":"2015-05-18T20:22:03.586000Z","datetime":"2006-12-27T02:03:13.841000Z","platform":"terra","proj:epsg":32647,"instruments":["aster"],"eo:cloud_cover":0.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":56.555381,"view:sun_elevation":34.269495,"aster:processing_number":"111218","aster:lower_left_quad_cloud_cover":0.0,"aster:upper_left_quad_cloud_cover":0.0,"aster:lower_right_quad_cloud_cover":0.0,"aster:upper_right_quad_cloud_cover":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"},{"id":"AST_L1T_00312272006020304_20150518201753","bbox":[100.2238478,-71.7308039,102.6554626,-70.9761174],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items/AST_L1T_00312272006020304_20150518201753"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=aster-l1t&item=AST_L1T_00312272006020304_20150518201753","title":"Map of item","type":"text/html"}],"assets":{"TIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020304_20150518201753_111217.TIR.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"proj:bbox":[539010.0000001943,-7964189.99910798,634860.001607926,-7872929.9990445385],"proj:shape":[1015,1066],"proj:transform":[89.91557374083648,0.0,539010.0000001943,0.0,-89.91133011176521,-7872929.9990445385,0.0,0.0,1.0],"roles":["data"],"title":"TIR Swath data","raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020304_20150518201753_111217.hdf.xml","type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020304_20150518201753_111217.SWIR.tif","eo:bands":[{"common_name":"swir16","name":"SWIR_Band4","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"common_name":"swir22","name":"SWIR_Band5","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band6","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"common_name":"swir22","name":"SWIR_Band7","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"proj:bbox":[539010.0000001943,-7964189.99910798,634860.001607926,-7872929.9990445385],"proj:shape":[3043,3196],"proj:transform":[29.990613769628187,0.0,539010.0000001943,0.0,-29.99014132876822,-7872929.9990445385,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020304_20150518201753_111217.VNIR.tif","eo:bands":[{"common_name":"green","name":"VNIR_Band1","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"common_name":"nir08","name":"VNIR_Band3N","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"proj:bbox":[539010.0000001943,-7964189.99910798,634860.001607926,-7872929.9990445385],"proj:shape":[6085,6391],"proj:transform":[14.997653201022013,0.0,539010.0000001943,0.0,-14.99753493236511,-7872929.9990445385,0.0,0.0,1.0],"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=aster-l1t&item=AST_L1T_00312272006020304_20150518201753&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","type":"application/json","roles":["tiles"]},"tir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020304_20150518201753_111217_BR.3.TIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"href":"https://astersa.blob.core.windows.net/aster/images/L1T/2006/12/27/AST_L1T_00312272006020304_20150518201753_111217_BR.2.VNIR.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=aster-l1t&item=AST_L1T_00312272006020304_20150518201753&assets=VNIR&asset_bidx=VNIR%7C2%2C3%2C1&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[101.82725405576103,-71.10197031734187],[101.8287184,-71.1021903],[101.8287555423913,-71.10221179960416],[101.85278009036668,-71.10607563833487],[101.8547141023528,-71.10637656243193],[101.8567496,-71.1066051],[101.85695829398529,-71.10672574917199],[101.88385199194614,-71.11091029499369],[101.8847933,-71.1110158],[101.8848904226146,-71.11107187042006],[102.6088507531927,-71.22371704033326],[102.61405520715144,-71.22452413526952],[102.6468577,-71.2292964],[102.64764021525716,-71.22973242228512],[102.6554626,-71.2309455],[102.2603999,-71.4834945],[101.8619248,-71.7308039],[101.83765509314583,-71.7272016277384],[101.8364545,-71.727947],[101.71930470947746,-71.70963527200118],[101.6735099,-71.7028381],[101.0947703,-71.6120996],[101.08083884413489,-71.6098364314694],[101.0242749,-71.6009949],[100.2259453,-71.4711422],[100.22878034138033,-71.46946800960283],[100.2240018,-71.4687161],[100.2238478,-71.4662983],[100.2288125,-71.4646537],[100.2287095,-71.4630418],[100.2337247,-71.462203],[100.2336212,-71.4605911],[100.2385836,-71.4589463],[100.2384798,-71.4573344],[100.2434931,-71.4564954],[100.2433889,-71.4548835],[100.2459212,-71.4548669],[100.2458168,-71.453255],[100.248349,-71.4532384],[100.2482444,-71.4516265],[100.2532557,-71.4507872],[100.2531507,-71.4491754],[100.2556823,-71.4491586],[100.2555771,-71.4475468],[100.2605871,-71.4467073],[100.2604815,-71.4450954],[100.2654376,-71.4434499],[100.2653316,-71.441838],[100.2703397,-71.4409983],[100.2702333,-71.4393864],[100.2751871,-71.4377406],[100.2750804,-71.4361287],[100.2800865,-71.4352887],[100.2799794,-71.4336769],[100.2825089,-71.4336598],[100.2824016,-71.4320479],[100.2849309,-71.4320308],[100.2848233,-71.430419],[100.2898276,-71.4295787],[100.2897196,-71.4279669],[100.2922484,-71.4279497],[100.2921403,-71.4263378],[100.2946689,-71.4263206],[100.2945605,-71.4247087],[100.2995629,-71.4238682],[100.2994542,-71.4222564],[100.3044011,-71.4206098],[100.304292,-71.418998],[100.3092924,-71.4181572],[100.3091829,-71.4165454],[100.3117102,-71.4165279],[100.3116005,-71.414916],[100.3141275,-71.4148985],[100.3140177,-71.4132867],[100.3190162,-71.4124457],[100.3189059,-71.4108338],[100.3238483,-71.4091868],[100.3237376,-71.4075749],[100.3287342,-71.4067337],[100.3286232,-71.4051218],[100.3335632,-71.4034745],[100.3334518,-71.4018627],[100.3384465,-71.4010212],[100.3383347,-71.3994093],[100.3432724,-71.3977618],[100.3431602,-71.3961499],[100.348153,-71.3953082],[100.3480404,-71.3936963],[100.3529759,-71.3920485],[100.3528629,-71.3904367],[100.3578538,-71.3895947],[100.3577405,-71.3879828],[100.3626737,-71.3863348],[100.3625599,-71.384723],[100.3675489,-71.3838807],[100.3674348,-71.3822689],[100.3723657,-71.3806205],[100.3722512,-71.3790087],[100.3772383,-71.3781662],[100.3771234,-71.3765544],[100.3796453,-71.376536],[100.3795302,-71.3749242],[100.384516,-71.3740814],[100.3844005,-71.3724697],[100.3869219,-71.3724512],[100.3868062,-71.3708394],[100.3893274,-71.3708209],[100.3892116,-71.3692091],[100.3941954,-71.3683661],[100.3940791,-71.3667543],[100.3990038,-71.3651053],[100.3988872,-71.3634935],[100.4038691,-71.3626502],[100.4037521,-71.3610385],[100.406272,-71.3610197],[100.4061548,-71.3594079],[100.4086745,-71.3593892],[100.4085571,-71.3577774],[100.4135371,-71.3569339],[100.4134194,-71.3553221],[100.4159385,-71.3553033],[100.4158205,-71.3536915],[100.4183395,-71.3536726],[100.4182213,-71.3520608],[100.4231995,-71.3512171],[100.4230809,-71.3496053],[100.4279987,-71.3479555],[100.4278798,-71.3463437],[100.4328561,-71.3454997],[100.4327368,-71.343888],[100.4352544,-71.3438689],[100.4351349,-71.3422571],[100.4376523,-71.3422379],[100.4375326,-71.3406262],[100.442507,-71.3397819],[100.4423869,-71.3381702],[100.4473002,-71.3365199],[100.4471797,-71.3349081],[100.4521522,-71.3340636],[100.4520314,-71.3324518],[100.4569424,-71.3308013],[100.4568212,-71.3291896],[100.4617918,-71.3283448],[100.4616702,-71.326733],[100.4665789,-71.3250823],[100.4664569,-71.3234705],[100.4714257,-71.3226255],[100.4713033,-71.3210138],[100.4738179,-71.3209941],[100.4736953,-71.3193824],[100.4786627,-71.3185372],[100.4785398,-71.3169254],[100.4834446,-71.3152742],[100.4833213,-71.3136625],[100.4882867,-71.312817],[100.488163,-71.3112053],[100.4930656,-71.3095538],[100.4929415,-71.3079421],[100.4979051,-71.3070964],[100.4977806,-71.3054847],[100.502681,-71.303833],[100.5025561,-71.3022212],[100.5075178,-71.3013753],[100.5073926,-71.2997635],[100.5122907,-71.2981116],[100.5121651,-71.2964999],[100.5171249,-71.2956536],[100.5169989,-71.2940419],[100.5218947,-71.2923897],[100.5217683,-71.290778],[100.5267263,-71.2899315],[100.5265995,-71.2883198],[100.5314931,-71.2866674],[100.531366,-71.2850557],[100.536322,-71.284209],[100.5361945,-71.2825973],[100.5410858,-71.2809445],[100.540958,-71.2793329],[100.5459122,-71.2784859],[100.5457839,-71.2768742],[100.5506729,-71.2752212],[100.5505443,-71.2736095],[100.5554966,-71.2727623],[100.5553676,-71.2711506],[100.5578757,-71.2711299],[100.5577465,-71.2695182],[100.5626975,-71.2686708],[100.5625679,-71.2670591],[100.5674531,-71.2654057],[100.5673231,-71.263794],[100.5722722,-71.2629464],[100.5721419,-71.2613347],[100.5770248,-71.2596811],[100.5768941,-71.2580694],[100.5818413,-71.2572215],[100.5817102,-71.2556098],[100.5865909,-71.2539559],[100.5864594,-71.2523443],[100.5914048,-71.2514961],[100.591273,-71.2498844],[100.5937783,-71.2498632],[100.5936463,-71.2482515],[100.5961514,-71.2482303],[100.5960192,-71.2466186],[100.6009626,-71.2457702],[100.6008301,-71.2441586],[100.6033346,-71.2441372],[100.6032019,-71.2425256],[100.6057062,-71.2425042],[100.6055733,-71.2408925],[100.6105149,-71.2400439],[100.6103816,-71.2384322],[100.6152555,-71.2367776],[100.6151218,-71.235166],[100.6200615,-71.234317],[100.6199275,-71.2327054],[100.6247991,-71.2310505],[100.6246647,-71.2294389],[100.6296026,-71.2285897],[100.6294678,-71.2269781],[100.6319701,-71.2269564],[100.6318351,-71.2253447],[100.6343372,-71.225323],[100.634202,-71.2237113],[100.639138,-71.2228619],[100.6390025,-71.2212503],[100.641504,-71.2212284],[100.6413683,-71.2196168],[100.6438697,-71.2195949],[100.6437338,-71.2179833],[100.6486679,-71.2171336],[100.6485316,-71.215522],[100.6510324,-71.2155],[100.6508959,-71.2138884],[100.6533965,-71.2138664],[100.6532599,-71.2122548],[100.6581921,-71.2114049],[100.6580551,-71.2097933],[100.6605552,-71.2097712],[100.660418,-71.2081596],[100.6653489,-71.2073095],[100.6652113,-71.2056978],[100.6700724,-71.2040418],[100.6699344,-71.2024302],[100.6748635,-71.2015799],[100.6747251,-71.1999682],[100.679584,-71.198312],[100.6794453,-71.1967004],[100.6843725,-71.1958498],[100.6842334,-71.1942382],[100.6867315,-71.1942157],[100.6865922,-71.1926041],[100.6890901,-71.1925817],[100.6889506,-71.1909701],[100.693876,-71.1901192],[100.6937361,-71.1885076],[100.6985905,-71.1868509],[100.6984504,-71.1852393],[100.7033738,-71.1843882],[100.7032333,-71.1827766],[100.7057299,-71.1827539],[100.7055891,-71.1811423],[100.7080855,-71.1811196],[100.7079446,-71.179508],[100.7128662,-71.1786567],[100.7127249,-71.1770451],[100.7152207,-71.1770223],[100.7150792,-71.1754107],[100.7199995,-71.1745591],[100.7198577,-71.1729476],[100.722353,-71.1729247],[100.7222109,-71.1713131],[100.724706,-71.1712901],[100.7245638,-71.1696786],[100.7294822,-71.1688268],[100.7293396,-71.1672152],[100.7341857,-71.1655575],[100.7340428,-71.163946],[100.7389594,-71.163094],[100.7388161,-71.1614824],[100.74366,-71.1598245],[100.7435163,-71.1582129],[100.748431,-71.1573607],[100.748287,-71.1557491],[100.7531286,-71.1540909],[100.7529842,-71.1524794],[100.7578971,-71.1516269],[100.7577523,-71.1500153],[100.7625917,-71.1483569],[100.7624466,-71.1467454],[100.7673576,-71.1458926],[100.7672121,-71.1442811],[100.7720493,-71.1426224],[100.7719035,-71.1410109],[100.7768126,-71.1401579],[100.7766664,-71.1385464],[100.7815014,-71.1368875],[100.7813548,-71.1352759],[100.7862621,-71.1344227],[100.7861152,-71.1328112],[100.7886052,-71.1327874],[100.7884581,-71.1311758],[100.7933641,-71.1303224],[100.7932166,-71.1287109],[100.7957061,-71.128687],[100.7955584,-71.1270755],[100.7980478,-71.1270516],[100.7978999,-71.12544],[100.802804,-71.1245864],[100.8026558,-71.1229748],[100.8074847,-71.1213153],[100.8073361,-71.1197038],[100.8122384,-71.1188498],[100.8120895,-71.1172383],[100.8169162,-71.1155785],[100.8167669,-71.113967],[100.8216673,-71.1131129],[100.8215176,-71.1115014],[100.8263422,-71.1098413],[100.8261922,-71.1082298],[100.8310907,-71.1073754],[100.8309403,-71.1057639],[100.8357627,-71.1041036],[100.8356119,-71.1024921],[100.8405087,-71.1016375],[100.8403575,-71.100026],[100.8451777,-71.0983655],[100.8450262,-71.096754],[100.8499211,-71.0958991],[100.8497692,-71.0942876],[100.8522543,-71.094263],[100.8521023,-71.0926515],[100.8569959,-71.0917964],[100.8568435,-71.0901849],[100.859328,-71.0901602],[100.8591754,-71.0885487],[100.8616598,-71.088524],[100.861507,-71.0869125],[100.8663988,-71.0860572],[100.8662456,-71.0844457],[100.8710598,-71.0827845],[100.8709063,-71.0811731],[100.8757962,-71.0803175],[100.8756424,-71.078706],[100.8804543,-71.0770446],[100.8803001,-71.0754331],[100.8851882,-71.0745773],[100.8850336,-71.0729659],[100.887516,-71.0729408],[100.8873612,-71.0713293],[100.8898434,-71.0713042],[100.8896884,-71.0696927],[100.8945747,-71.0688367],[100.8944194,-71.0672252],[100.8992269,-71.0655633],[100.8990713,-71.0639519],[100.9039557,-71.0630956],[100.9037997,-71.0614841],[100.9086051,-71.059822],[100.9084487,-71.0582106],[100.9133312,-71.057354],[100.9131745,-71.0557426],[100.9156547,-71.0557171],[100.9154978,-71.0541057],[100.920379,-71.0532489],[100.9202217,-71.0516375],[100.9250233,-71.0499749],[100.9248657,-71.0483635],[100.9297451,-71.0475065],[100.9295871,-71.0458951],[100.9343865,-71.0442323],[100.9342282,-71.0426209],[100.9391058,-71.0417637],[100.9389471,-71.0401523],[100.9437443,-71.0384892],[100.9435852,-71.0368778],[100.948461,-71.0360204],[100.9483016,-71.034409],[100.950779,-71.034383],[100.9506194,-71.0327716],[100.9530966,-71.0327457],[100.9529368,-71.0311343],[100.9578107,-71.0302766],[100.9576506,-71.0286652],[100.9601273,-71.0286391],[100.959967,-71.0270277],[100.9648396,-71.0261698],[100.9646789,-71.0245585],[100.9694702,-71.0228947],[100.9693092,-71.0212834],[100.97418,-71.0204252],[100.9740186,-71.0188139],[100.976494,-71.0187876],[100.9763325,-71.0171762],[100.9788077,-71.0171499],[100.9786459,-71.0155385],[100.9835149,-71.0146802],[100.9833528,-71.0130688],[100.9858275,-71.0130424],[100.9856652,-71.011431],[100.9881397,-71.0114046],[100.9879773,-71.0097933],[100.9928444,-71.0089346],[100.9926816,-71.0073233],[100.9974663,-71.0056588],[100.9973032,-71.0040475],[101.0021685,-71.0031886],[101.002005,-71.0015773],[101.0067875,-70.9999126],[101.0066237,-70.9983013],[101.0114871,-70.9974422],[101.0113229,-70.9958308],[101.0161033,-70.9941659],[101.0159388,-70.9925546],[101.0208004,-70.9916952],[101.0206355,-70.9900839],[101.0254137,-70.9884188],[101.0252484,-70.9868074],[101.0301083,-70.9859478],[101.0299427,-70.9843365],[101.0371064,-70.9818384],[101.0369403,-70.9802271],[101.0394107,-70.9802],[101.0392444,-70.9785887],[101.0417147,-70.9785615],[101.0415482,-70.9769502],[101.0439349,-70.9761174],[101.05094138620392,-70.9772298866258],[101.0517701,-70.9767262],[101.6346104294454,-71.0709876780287],[101.82725405576103,-71.10197031734187]]]},"collection":"aster-l1t","properties":{"created":"2015-05-18T20:21:48.355000Z","datetime":"2006-12-27T02:03:04.964000Z","platform":"terra","proj:epsg":32647,"instruments":["aster"],"eo:cloud_cover":1.0,"view:off_nadir":0.004,"sat:orbit_state":"descending","view:sun_azimuth":56.098572,"view:sun_elevation":34.78655,"aster:processing_number":"111217","aster:lower_left_quad_cloud_cover":0.0,"aster:upper_left_quad_cloud_cover":0.0,"aster:lower_right_quad_cloud_cover":1.0,"aster:upper_right_quad_cloud_cover":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search?ids=AST_L1T_00312272006020322_20150518201805%2CAST_L1T_00312272006020313_20150518201753%2CAST_L1T_00312272006020304_20150518201753&collections=aster-l1t"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '14425' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:50:47 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125047Z-167d46d96d8bpl7whC1DENxmuw0000000s3g000000000u4r status: code: 200 message: OK version: 1 TestCollectionClient.test_get_queryables.yaml000066400000000000000000002333501503646565400351630ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_collection_clientinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3363' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:55 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125054Z-167d46d96d8cbgwghC1DENbc4g0000000seg000000002qd6 status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3363' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:55 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125055Z-167d46d96d8n45rlhC1DENu33s0000000sqg000000002taf status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2 response: body: string: '{"id":"landsat-c2-l2","type":"Collection","links":[{"rel":"items","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/items"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"cite-as","href":"https://doi.org/10.5066/P9IAXOVV","title":"Landsat 4-5 TM Collection 2 Level-2"},{"rel":"cite-as","href":"https://doi.org/10.5066/P9C7I13B","title":"Landsat 7 ETM+ Collection 2 Level-2"},{"rel":"cite-as","href":"https://doi.org/10.5066/P9OGBGM6","title":"Landsat 8-9 OLI/TIRS Collection 2 Level-2"},{"rel":"license","href":"https://www.usgs.gov/core-science-systems/hdds/data-policy","title":"Public Domain"},{"rel":"describedby","href":"https://planetarycomputer.microsoft.com/dataset/landsat-c2-l2","title":"Human readable dataset overview and reference","type":"text/html"}],"title":"Landsat Collection 2 Level-2","assets":{"thumbnail":{"href":"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/landsat-c2-l2-thumb.png","type":"image/png","roles":["thumbnail"],"title":"Landsat Collection 2 Level-2 thumbnail"},"geoparquet-items":{"href":"abfs://items/landsat-c2-l2.parquet","type":"application/x-parquet","roles":["stac-items"],"title":"GeoParquet STAC items","description":"Snapshot of the collection''s STAC items exported to GeoParquet format.","msft:partition_info":{"is_partitioned":true,"partition_frequency":"MS"},"table:storage_options":{"account_name":"pcstacitems"}}},"extent":{"spatial":{"bbox":[[-180.0,-90.0,180.0,90.0]]},"temporal":{"interval":[["1982-08-22T00:00:00Z",null]]}},"license":"proprietary","keywords":["Landsat","USGS","NASA","Satellite","Global","Imagery","Reflectance","Temperature"],"providers":[{"url":"https://landsat.gsfc.nasa.gov/","name":"NASA","roles":["producer","licensor"]},{"url":"https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products","name":"USGS","roles":["producer","processor","licensor"]},{"url":"https://planetarycomputer.microsoft.com","name":"Microsoft","roles":["host"]}],"summaries":{"gsd":[30,60,100,120],"sci:doi":["10.5066/P9IAXOVV","10.5066/P9C7I13B","10.5066/P9OGBGM6"],"eo:bands":[{"name":"TM_B1","common_name":"blue","description":"Visible blue (Thematic Mapper)","center_wavelength":0.49,"full_width_half_max":0.07},{"name":"TM_B2","common_name":"green","description":"Visible green (Thematic Mapper)","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"TM_B3","common_name":"red","description":"Visible red (Thematic Mapper)","center_wavelength":0.66,"full_width_half_max":0.06},{"name":"TM_B4","common_name":"nir08","description":"Near infrared (Thematic Mapper)","center_wavelength":0.83,"full_width_half_max":0.14},{"name":"TM_B5","common_name":"swir16","description":"Short-wave infrared (Thematic Mapper)","center_wavelength":1.65,"full_width_half_max":0.2},{"name":"TM_B6","common_name":"lwir","description":"Long-wave infrared (Thematic Mapper)","center_wavelength":11.45,"full_width_half_max":2.1},{"name":"TM_B7","common_name":"swir22","description":"Short-wave infrared (Thematic Mapper)","center_wavelength":2.22,"full_width_half_max":0.27},{"name":"ETM_B1","common_name":"blue","description":"Visible blue (Enhanced Thematic Mapper Plus)","center_wavelength":0.48,"full_width_half_max":0.07},{"name":"ETM_B2","common_name":"green","description":"Visible green (Enhanced Thematic Mapper Plus)","center_wavelength":0.56,"full_width_half_max":0.08},{"name":"ETM_B3","common_name":"red","description":"Visible red (Enhanced Thematic Mapper Plus)","center_wavelength":0.66,"full_width_half_max":0.06},{"name":"ETM_B4","common_name":"nir08","description":"Near infrared (Enhanced Thematic Mapper Plus)","center_wavelength":0.84,"full_width_half_max":0.13},{"name":"ETM_B5","common_name":"swir16","description":"Short-wave infrared (Enhanced Thematic Mapper Plus)","center_wavelength":1.65,"full_width_half_max":0.2},{"name":"ETM_B6","common_name":"lwir","description":"Long-wave infrared (Enhanced Thematic Mapper Plus)","center_wavelength":11.34,"full_width_half_max":2.05},{"name":"ETM_B7","common_name":"swir22","description":"Short-wave infrared (Enhanced Thematic Mapper Plus)","center_wavelength":2.2,"full_width_half_max":0.28},{"name":"OLI_B1","common_name":"coastal","description":"Coastal/Aerosol (Operational Land Imager)","center_wavelength":0.44,"full_width_half_max":0.02},{"name":"OLI_B2","common_name":"blue","description":"Visible blue (Operational Land Imager)","center_wavelength":0.48,"full_width_half_max":0.06},{"name":"OLI_B3","common_name":"green","description":"Visible green (Operational Land Imager)","center_wavelength":0.56,"full_width_half_max":0.06},{"name":"OLI_B4","common_name":"red","description":"Visible red (Operational Land Imager)","center_wavelength":0.65,"full_width_half_max":0.04},{"name":"OLI_B5","common_name":"nir08","description":"Near infrared (Operational Land Imager)","center_wavelength":0.87,"full_width_half_max":0.03},{"name":"OLI_B6","common_name":"swir16","description":"Short-wave infrared (Operational Land Imager)","center_wavelength":1.61,"full_width_half_max":0.09},{"name":"OLI_B7","common_name":"swir22","description":"Short-wave infrared (Operational Land Imager)","center_wavelength":2.2,"full_width_half_max":0.19},{"name":"TIRS_B10","common_name":"lwir11","description":"Long-wave infrared (Thermal Infrared Sensor)","center_wavelength":10.9,"full_width_half_max":0.59}],"platform":["landsat-4","landsat-5","landsat-7","landsat-8","landsat-9"],"instruments":["tm","etm+","oli","tirs"],"view:off_nadir":{"maximum":15,"minimum":0}},"description":"Landsat Collection 2 Level-2 [Science Products](https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products), consisting of atmospherically corrected [surface reflectance](https://www.usgs.gov/landsat-missions/landsat-collection-2-surface-reflectance) and [surface temperature](https://www.usgs.gov/landsat-missions/landsat-collection-2-surface-temperature) image data. Collection 2 Level-2 Science Products are available from August 22, 1982 to present.\n\nThis dataset represents the global archive of Level-2 data from [Landsat Collection 2](https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-2) acquired by the [Thematic Mapper](https://landsat.gsfc.nasa.gov/thematic-mapper/) onboard Landsat 4 and 5, the [Enhanced Thematic Mapper](https://landsat.gsfc.nasa.gov/the-enhanced-thematic-mapper-plus-etm/) onboard Landsat 7, and the [Operatational Land Imager](https://landsat.gsfc.nasa.gov/satellites/landsat-8/spacecraft-instruments/operational-land-imager/) and [Thermal Infrared Sensor](https://landsat.gsfc.nasa.gov/satellites/landsat-8/spacecraft-instruments/thermal-infrared-sensor/) onboard Landsat 8 and 9. Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\n","item_assets":{"qa":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Surface Temperature Quality Assessment Band","description":"Collection 2 Level-2 Quality Assessment Band (ST_QA) Surface Temperature Product","raster:bands":[{"unit":"kelvin","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"ang":{"type":"text/plain","roles":["metadata"],"title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File"},"red":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Red Band","eo:bands":[{"common_name":"red","description":"Visible red"}],"raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"blue":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Blue Band","eo:bands":[{"common_name":"blue","description":"Visible blue"}],"raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"drad":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Downwelled Radiance Band","description":"Collection 2 Level-2 Downwelled Radiance Band (ST_DRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emis":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Band","description":"Collection 2 Level-2 Emissivity Band (ST_EMIS) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"emsd":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Emissivity Standard Deviation Band","description":"Collection 2 Level-2 Emissivity Standard Deviation Band (ST_EMSD) Surface Temperature Product","raster:bands":[{"unit":"emissivity coefficient","scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"lwir":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","temperature"],"title":"Surface Temperature Band","eo:bands":[{"common_name":"lwir","description":"Long-wave infrared"}],"description":"Collection 2 Level-2 Thermal Infrared Band (ST_B6) Surface Temperature","raster:bands":[{"unit":"kelvin","scale":0.00341802,"nodata":0,"offset":149.0,"data_type":"uint16","spatial_resolution":30}]},"trad":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Thermal Radiance Band","description":"Collection 2 Level-2 Thermal Radiance Band (ST_TRAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"urad":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Upwelled Radiance Band","description":"Collection 2 Level-2 Upwelled Radiance Band (ST_URAD) Surface Temperature Product","raster:bands":[{"unit":"watt/steradian/square_meter/micrometer","scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"atran":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Atmospheric Transmittance Band","description":"Collection 2 Level-2 Atmospheric Transmittance Band (ST_ATRAN) Surface Temperature Product","raster:bands":[{"scale":0.0001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"cdist":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Cloud Distance Band","description":"Collection 2 Level-2 Cloud Distance Band (ST_CDIST) Surface Temperature Product","raster:bands":[{"unit":"kilometer","scale":0.01,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]},"green":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Green Band","eo:bands":[{"common_name":"green","description":"Visible green","center_wavelength":0.56}],"raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"nir08":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Near Infrared Band 0.8","eo:bands":[{"common_name":"nir08","description":"Near infrared"}],"raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"lwir11":{"gsd":100,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","temperature"],"title":"Surface Temperature Band","eo:bands":[{"name":"TIRS_B10","common_name":"lwir11","description":"Long-wave infrared","center_wavelength":10.9,"full_width_half_max":0.59}],"description":"Collection 2 Level-2 Thermal Infrared Band (ST_B10) Surface Temperature","raster:bands":[{"unit":"kelvin","scale":0.00341802,"nodata":0,"offset":149.0,"data_type":"uint16","spatial_resolution":30}]},"swir16":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 1.6","eo:bands":[{"common_name":"swir16","description":"Short-wave infrared"}],"raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"swir22":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Short-wave Infrared Band 2.2","eo:bands":[{"common_name":"swir22","description":"Short-wave infrared"}],"description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (SR_B7) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"coastal":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data","reflectance"],"title":"Coastal/Aerosol Band","eo:bands":[{"name":"OLI_B1","common_name":"coastal","description":"Coastal/Aerosol","center_wavelength":0.44,"full_width_half_max":0.02}],"description":"Collection 2 Level-2 Coastal/Aerosol Band (SR_B1) Surface Reflectance","raster:bands":[{"scale":0.0000275,"nodata":0,"offset":-0.2,"data_type":"uint16","spatial_resolution":30}]},"mtl.txt":{"type":"text/plain","roles":["metadata"],"title":"Product Metadata File (txt)","description":"Collection 2 Level-2 Product Metadata File (txt)"},"mtl.xml":{"type":"application/xml","roles":["metadata"],"title":"Product Metadata File (xml)","description":"Collection 2 Level-2 Product Metadata File (xml)"},"cloud_qa":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["cloud","cloud-shadow","snow-ice","water-mask"],"title":"Cloud Quality Assessment Band","description":"Collection 2 Level-2 Cloud Quality Assessment Band (SR_CLOUD_QA) Surface Reflectance Product","raster:bands":[{"unit":"bit index","data_type":"uint8","spatial_resolution":30}],"classification:bitfields":[{"name":"ddv","length":1,"offset":0,"classes":[{"name":"not_ddv","value":0,"description":"Pixel has no DDV"},{"name":"ddv","value":1,"description":"Pixel has DDV"}],"description":"Dense Dark Vegetation (DDV)"},{"name":"cloud","length":1,"offset":1,"classes":[{"name":"not_cloud","value":0,"description":"Pixel has no cloud"},{"name":"cloud","value":1,"description":"Pixel has cloud"}],"description":"Cloud mask"},{"name":"cloud_shadow","length":1,"offset":2,"classes":[{"name":"not_shadow","value":0,"description":"Pixel has no cloud shadow"},{"name":"shadow","value":1,"description":"Pixel has cloud shadow"}],"description":"Cloud shadow mask"},{"name":"cloud_adjacent","length":1,"offset":3,"classes":[{"name":"not_adjacent","value":0,"description":"Pixel is not adjacent to cloud"},{"name":"adjacent","value":1,"description":"Pixel is adjacent to cloud"}],"description":"Cloud adjacency"},{"name":"snow","length":1,"offset":4,"classes":[{"name":"not_snow","value":0,"description":"Pixel is not snow"},{"name":"shadow","value":1,"description":"Pixel is snow"}],"description":"Snow mask"},{"name":"water","length":1,"offset":5,"classes":[{"name":"not_water","value":0,"description":"Pixel is not water"},{"name":"water","value":1,"description":"Pixel is water"}],"description":"Water mask"}]},"mtl.json":{"type":"application/json","roles":["metadata"],"title":"Product Metadata File (json)","description":"Collection 2 Level-2 Product Metadata File (json)"},"qa_pixel":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["cloud","cloud-shadow","snow-ice","water-mask"],"title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band (QA_PIXEL)","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint16","spatial_resolution":30}]},"qa_radsat":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["saturation"],"raster:bands":[{"unit":"bit index","data_type":"uint16","spatial_resolution":30}]},"qa_aerosol":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data-mask","water-mask"],"title":"Aerosol Quality Assessment Band","description":"Collection 2 Level-2 Aerosol Quality Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product","raster:bands":[{"unit":"bit index","nodata":1,"data_type":"uint8","spatial_resolution":30}],"classification:bitfields":[{"name":"fill","length":1,"offset":0,"classes":[{"name":"not_fill","value":0,"description":"Pixel is not fill"},{"name":"fill","value":1,"description":"Pixel is fill"}],"description":"Image or fill data"},{"name":"retrieval","length":1,"offset":1,"classes":[{"name":"not_valid","value":0,"description":"Pixel retrieval is not valid"},{"name":"valid","value":1,"description":"Pixel retrieval is valid"}],"description":"Valid aerosol retrieval"},{"name":"water","length":1,"offset":2,"classes":[{"name":"not_water","value":0,"description":"Pixel is not water"},{"name":"water","value":1,"description":"Pixel is water"}],"description":"Water mask"},{"name":"interpolated","length":1,"offset":5,"classes":[{"name":"not_interpolated","value":0,"description":"Pixel is not interpolated aerosol"},{"name":"interpolated","value":1,"description":"Pixel is interpolated aerosol"}],"description":"Aerosol interpolation"},{"name":"level","length":2,"offset":6,"classes":[{"name":"climatology","value":0,"description":"No aerosol correction applied"},{"name":"low","value":1,"description":"Low aerosol level"},{"name":"medium","value":2,"description":"Medium aerosol level"},{"name":"high","value":3,"description":"High aerosol level"}],"description":"Aerosol level"}]},"atmos_opacity":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Atmospheric Opacity Band","description":"Collection 2 Level-2 Atmospheric Opacity Band (SR_ATMOS_OPACITY) Surface Reflectance Product","raster:bands":[{"scale":0.001,"nodata":-9999,"data_type":"int16","spatial_resolution":30}]}},"stac_version":"1.0.0","msft:group_id":"landsat","msft:container":"landsat-c2","stac_extensions":["https://stac-extensions.github.io/item-assets/v1.0.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/scientific/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.0.0/schema.json","https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/table/v1.2.0/schema.json"],"msft:storage_account":"landsateuwest","msft:short_description":"Landsat Collection 2 Level-2 data from the Thematic Mapper (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor (TIRS) onboard Landsat 8 and 9.","msft:region":"westeurope"}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3454' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:56 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125055Z-167d46d96d8d8pnqhC1DENb5b40000000s3g000000004mue status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/queryables response: body: string: '{"$id":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2/queryables","type":"object","title":"STAC Queryables.","$schema":"http://json-schema.org/draft-07/schema#","properties":{"id":{"$ref":"https://schemas.stacspec.org/v1.0.0/item-spec/json-schema/item.json#/definitions/core/allOf/2/properties/id","title":"Item ID","description":"Item identifier"},"gsd":{"type":"number"},"created":{"type":"string"},"sci:doi":{"type":"string","title":"Data DOI","pattern":"^10\\.[0-9a-zA-Z]{4,}/[^\\s]+$"},"datetime":{"type":"string","title":"Acquired","format":"date-time","pattern":"(\\+00:00|Z)$","description":"Datetime"},"geometry":{"$ref":"https://geojson.org/schema/Feature.json","title":"Item Geometry","description":"Item Geometry"},"platform":{"enum":["SENTINEL-1A","SENTINEL-1B","SENTINEL-1C"],"type":"string","title":"Platform"},"proj:epsg":{"type":["integer","null"],"title":"EPSG code"},"instrument":{"enum":["etm+","oli","tirs","tm"],"type":"string","title":"Instrument"},"proj:shape":{"type":"array","items":{"type":"integer"},"title":"Shape","maxItems":2,"minItems":2},"description":{"type":"string"},"instruments":{"type":"array"},"end_datetime":{"type":"string","title":"End datetime","format":"date-time","pattern":"(\\+00:00|Z)$","description":"End datetime"},"eo:cloud_cover":{"$ref":"https://stac-extensions.github.io/eo/v1.0.0/schema.json#/definitions/fields/properties/eo:cloud_cover"},"proj:transform":{"type":"array","items":{"type":"number"},"oneOf":[{"maxItems":6,"minItems":6},{"maxItems":9,"minItems":9}],"title":"Transform"},"start_datetime":{"type":"string","title":"Start datetime","format":"date-time","pattern":"(\\+00:00|Z)$","description":"Start datetime"},"view:off_nadir":{"type":"number","title":"Off Nadir","maximum":90,"minimum":0},"landsat:wrs_row":{"type":"string","title":"WRS Row"},"landsat:scene_id":{"type":"string","title":"Scene ID"},"landsat:wrs_path":{"type":"string","title":"WRS Path"},"landsat:wrs_type":{"type":"string"},"view:sun_azimuth":{"type":"number","title":"Sun Azimuth","maximum":360,"minimum":0},"landsat:correction":{"type":"string"},"view:sun_elevation":{"type":"number","title":"Sun Elevation","maximum":90,"minimum":-90},"landsat:cloud_cover_land":{"type":"number","title":"Cloud Cover Land","maximum":100,"minimum":0},"landsat:collection_number":{"type":"string"},"landsat:collection_category":{"enum":["T1","T2"],"type":"string","title":"Collection Cat."}}}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '887' Content-Type: - application/schema+json Date: - Thu, 17 Jul 2025 12:50:56 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125056Z-167d46d96d88hw2shC1DENzkdg0000000kzg000000003m16 status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_collection_client/TestCollectionClient.test_instance.yaml000066400000000000000000001775071503646565400340460ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/item-search"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3360' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:41 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125041Z-167d46d96d8cbgwghC1DENbc4g0000000sh0000000000fty status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/item-search#query","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/item-search"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3360' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:42 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125041Z-167d46d96d8kf92xhC1DEN2fsg0000000se00000000030sm status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t response: body: string: '{"id":"aster-l1t","type":"Collection","links":[{"rel":"items","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"license","href":"https://www.usgs.gov/core-science-systems/hdds/data-policy","title":"Public Domain"},{"rel":"describedby","href":"https://planetarycomputer.microsoft.com/dataset/aster-l1t","type":"text/html","title":"Human readable dataset overview and reference"},{"rel":"describedby","href":"https://planetarycomputer.microsoft.com/dataset/aster-l1t","title":"Human readable dataset overview and reference","type":"text/html"}],"title":"ASTER L1T","assets":{"thumbnail":{"href":"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/aster.png","type":"image/png","roles":["thumbnail"],"title":"ASTER L1T"},"geoparquet-items":{"href":"abfs://items/aster-l1t.parquet","type":"application/x-parquet","roles":["stac-items"],"title":"GeoParquet STAC items","description":"Snapshot of the collection''s STAC items exported to GeoParquet format.","msft:partition_info":{"is_partitioned":true,"partition_frequency":"AS"},"table:storage_options":{"account_name":"pcstacitems"}}},"extent":{"spatial":{"bbox":[[-180,-90,180,90]]},"temporal":{"interval":[["2000-03-04T12:00:00Z","2006-12-31T12:00:00Z"]]}},"license":"proprietary","keywords":["ASTER","USGS","NASA","Satellite","Global"],"providers":[{"url":"https://terra.nasa.gov/about/terra-instruments/aster","name":"NASA","roles":["producer","licensor"]},{"url":"https://lpdaac.usgs.gov/data/get-started-data/collection-overview/missions/aster-overview/","name":"USGS","roles":["processor","producer","licensor"]},{"url":"https://planetarycomputer.microsoft.com","name":"Microsoft","roles":["host","processor"]}],"summaries":{"gsd":[15,30,90],"eo:bands":[{"gsd":15,"name":"VNIR_Band1","common_name":"green","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"gsd":15,"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"gsd":15,"name":"VNIR_Band3N","common_name":"nir08","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08},{"gsd":30,"name":"SWIR_Band4","common_name":"swir16","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"gsd":30,"name":"SWIR_Band5","common_name":"swir22","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band6","common_name":"swir22","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band7","common_name":"swir22","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"gsd":30,"name":"SWIR_Band8","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"gsd":30,"name":"SWIR_Band9","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07},{"gsd":90,"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"gsd":90,"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"platform":["terra"],"instruments":["aster"]},"description":"The [ASTER](https://terra.nasa.gov/about/terra-instruments/aster) instrument, launched on-board NASA''s [Terra](https://terra.nasa.gov/) satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. ASTER images provide information about land surface temperature, color, elevation, and mineral composition.\n\nThis dataset represents ASTER [L1T](https://lpdaac.usgs.gov/products/ast_l1tv003/) data from 2000-2006. L1T images have been terrain-corrected and rotated to a north-up UTM projection. Images are in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\n","item_assets":{"TIR":{"roles":["data"],"title":"TIR Swath data","eo:bands":[{"gsd":90,"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"gsd":90,"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"raster:bands":[{"name":"TIR_Band10","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band11","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band12","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band13","nodata":0,"data_type":"uint16","spatial_resolution":90},{"name":"TIR_Band14","nodata":0,"data_type":"uint16","spatial_resolution":90}]},"xml":{"type":"application/xml","roles":["metadata"],"title":"XML metadata"},"SWIR":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"SWIR Swath data","eo:bands":[{"gsd":30,"name":"SWIR_Band4","common_name":"swir","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"gsd":30,"name":"SWIR_Band5","common_name":"swir","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band6","common_name":"swir","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band7","common_name":"swir","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"gsd":30,"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"gsd":30,"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07}],"raster:bands":[{"name":"SWIR_Band4","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band5","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band6","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band7","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band8","nodata":0,"data_type":"uint8","spatial_resolution":30},{"name":"SWIR_Band9","nodata":0,"data_type":"uint8","spatial_resolution":30}]},"VNIR":{"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"VNIR Swath data","eo:bands":[{"gsd":15,"name":"VNIR_Band1","common_name":"yellow/green","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"gsd":15,"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"gsd":15,"name":"VNIR_Band3N","common_name":"near infrared","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08}],"raster:bands":[{"name":"VNIR_Band1","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band2","nodata":0,"data_type":"uint8","spatial_resolution":15},{"name":"VNIR_Band3N","nodata":0,"data_type":"uint8","spatial_resolution":15}]},"qa-txt":{"type":"text/plain","roles":["metadata"],"title":"QA browse file","description":"Geometric quality assessment report."},"qa-browse":{"type":"image/jpeg","roles":["thumbnail"],"title":"QA browse file","description":"Single-band black and white reduced resolution browse overlaid with red, green, and blue (RGB) markers for GCPs used during the geometric verification quality check."},"tir-browse":{"type":"image/jpeg","roles":["thumbnail"],"title":"Standalone reduced resolution TIR"},"vnir-browse":{"type":"image/jpeg","roles":["thumbnail"],"title":"VNIR browse file","description":"Standalone reduced resolution VNIR"}},"stac_version":"1.0.0","msft:container":"aster","stac_extensions":["https://stac-extensions.github.io/item-assets/v1.0.0/schema.json","https://stac-extensions.github.io/table/v1.2.0/schema.json"],"msft:storage_account":"astersa","msft:short_description":"The ASTER instrument, launched on-board NASA''s Terra satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. This dataset contains ASTER data from 2000-2006.","msft:region":"westeurope"}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2034' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:50:43 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125042Z-167d46d96d8rf89khC1DENsp080000000s50000000004gwg status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_collection_search/000077500000000000000000000000001503646565400241745ustar00rootroot00000000000000TestCollectionSearch.test_bbox_results.yaml000066400000000000000000003624501503646565400346450ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_collection_searchinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://emc.spacebel.be/collections?limit=10&bbox=-159.893%2C21.843%2C-159.176%2C22.266 response: body: string: "{\n \"collections\": [\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"2002-05-20T00:00:00.000Z\",\n \ \"2012-04-08T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"World\",\n \"800 km\",\n \ \"5 - 1150 km\",\n \"Sun-synchronous\",\n \"Very High Resolution - VHR (0 - 5m)\",\n \"Medium Resolution - MR (20 - 500 m)\",\n \ \"EARTH SCIENCE > BIOSPHERE > VEGETATION\",\n \"EARTH SCIENCE > OCEANS\",\n \"EARTH SCIENCE > OCEANS > OCEAN TEMPERATURE\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \"EARTH SCIENCE > ATMOSPHERE > CLOUDS\",\n \ \"EARTH SCIENCE > ATMOSPHERE > PRECIPITATION\",\n \"Vegetation\",\n \ \"Oceans\",\n \"Ocean Temperature\",\n \"Atmosphere\",\n \ \"Clouds\",\n \"Precipitation\",\n \"Imaging Spectrometers/Radiometers\",\n \ \"Envisat\",\n \"AATSR\"\n ],\n \"created\": \"2019-05-21T00:00:00.00Z\",\n \ \"description\": \"The Averaged Surface Temperature (AST) Product contains averaged geophysical data at two different resolutions, and with respect to two different averaging schemes. Measurement data sets at resolutions of 0.5 by 0.5 degrees and 10 by 10 arcmin with respect to a latitude/longitude grid provide continuity with existing ATSR products. Other data sets contain data averaged over equal area cells of 50 by 50 km and 17 by 17 km aligned with the satellite ground track. Both top-of-atmosphere and surface data sets are provided. The surface temperature data sets provide, for sea cells, nadir and dual view sea surface temperatures, and for land cells, land surface temperature and NDVI. Cloud data is also included. No ADS are included in the AST product; auxiliary data is contained within the MDS. The data sets of the AST product are arranged by surface type and resolution. This product is a continuation of ERS ATSR data. The 3rd reprocessing of AATSR data was performed in 2013; the processing updates that have been put in place and the scientific improvements are outlined in full in the User Summary Note for the Third Envisat AATSR Reprocessing https://earth.esa.int/eogateway/documents/20142/37627/IDEAS-VEG-OQC-REP-2148-%28A%29ATSR-Third+Reprocessing-Dataset-User-Summary-v1-0.pdf\",\n \ \"type\": \"Collection\",\n \"title\": \"Envisat AATSR Averaged Surface Temperature (AST) Product [ATS_AR__2P]\",\n \"license\": \"various\",\n \ \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/ENVISAT-1%20PRODUCTS%20SPECIFICATIONS%20-%20VOLUME%207-%20AATSR%20PRODUCTS%20SPECIFICATIONS\",\n \ \"type\": \"application/pdf\",\n \"title\": \"AATSR Product Specification - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/instruments/aatsr/auxiliary-data\",\n \ \"type\": \"text/html\",\n \"title\": \"AATSR auxiliary data - Auxiliary Data\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/instruments/aatsr/products-information\",\n \ \"type\": \"text/html\",\n \"title\": \"AATSR Product Information - Product Information\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/AATSR-product-handbook.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"AATSR Product Handbook - User Manual\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/AATSR-Level-2-ATS_AR__2P-Product-Quality-Readme-Information.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"ATS_AR__2P Product Quality Readme Information - Product Specifications\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?text=&category=Document%20library&filter=envisat,aatsr\",\n \ \"type\": \"text/html\",\n \"title\": \"More AATSR Documents - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/search?text=&category=Tools%20and%20toolboxes&filter=aatsr\",\n \ \"type\": \"text/html\",\n \"title\": \"(A)ATSR Software Tools - Tools\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Envisat\",\n \ \"title\": \"More collections for Envisat platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/702277a0-8a84-5af3-a8f4-31d712ff17c3\",\n \ \"title\": \"More collections for AATSR instrument\"\n }\n \ ],\n \"id\": \"ENVISAT.ATS.AR__2P\",\n \"updated\": \"2022-11-11T00:00:00.00Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"AATSR\"],\n \ \"platform\": [\"Envisat\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2002-05-20T00:00:00.000Z\",\n \ \"2012-04-08T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"World\",\n \"800 km\",\n \ \"5 - 1150 km\",\n \"Sun-synchronous\",\n \"EARTH SCIENCE > OCEANS\",\n \"EARTH SCIENCE > OCEANS > OCEAN TEMPERATURE\",\n \"Oceans\",\n \ \"Ocean Temperature\",\n \"Imaging Spectrometers/Radiometers\",\n \ \"Envisat\",\n \"AATSR\"\n ],\n \"created\": \"2019-05-29T00:00:00.00Z\",\n \ \"description\": \"The L2P product contains full resolution dual-view Sea Surface Temperature (SST) values. These SST use the ARC SST retrieval and cloud screening which differ from the methods used to produce the Gridded Surface Temperature (ATS_NR__2P) products. In addition to SST, the L2P products contain the ATSR Saharan Dust Index (ASDI) and the clear-sky probability estimated by the ARC cloud detection algorithm. The L2P processor also generates L3U products; these are the L2P products averaged onto a regular grid at 0.1 degree resolution (they are therefore similar to the AR / Meteo Envisat-format products). \ The L2P and L3U products are provided in NetCDF-4 format following GHRSST Data Specifications (GDS) v2. The L2P/L3U archive was reprocessed in 2013 with a new processor based upon the ARC SST; the changes are outlined in full in the L2P Reprocessing User Notehttps://earth.esa.int/eogateway/documents/20142/37627/User%20Note%20for%20%28A%29ATSR%20L2P%20Reprocessing\",\n \ \"type\": \"Collection\",\n \"title\": \"Envisat AATSR ARC L2P/L3U \ [UPA-L2P_GHRSST/UPA-L3U_GHRSST]\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/instruments/aatsr/auxiliary-data\",\n \ \"type\": \"text/html\",\n \"title\": \"AATSR auxiliary data - Auxiliary Data\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/ENVISAT-1%20PRODUCTS%20SPECIFICATIONS%20-%20VOLUME%207-%20AATSR%20PRODUCTS%20SPECIFICATIONS\",\n \ \"type\": \"application/pdf\",\n \"title\": \"AATSR Products Specifications - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/AATSR-product-handbook.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"AATSR Product Handbook - User Manual\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/instruments/aatsr/products-information\",\n \ \"type\": \"text/html\",\n \"title\": \"AATSR Product Information - Product Information\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/L2P-Product-Description.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"(A)ATSR SST L2P/L3U Product User Guide - Product Specifications\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://www.ghrsst.org/about-ghrsst/governance-documents/\",\n \ \"type\": \"text/html\",\n \"title\": \"GHRSST data specifications - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/search?text=&category=Document%20library&filter=envisat,aatsr\",\n \ \"type\": \"text/html\",\n \"title\": \"More AATSR Documents - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/search?text=&category=Tools%20and%20toolboxes&filter=aatsr\",\n \ \"type\": \"text/html\",\n \"title\": \"(A)ATSR Software Tools - Tools\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Envisat\",\n \ \"title\": \"More collections for Envisat platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/702277a0-8a84-5af3-a8f4-31d712ff17c3\",\n \ \"title\": \"More collections for AATSR instrument\"\n }\n \ ],\n \"id\": \"ENVISAT.UPA-L2P-L3U\",\n \"updated\": \"2022-11-11T00:00:00.00Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"AATSR\"],\n \ \"platform\": [\"Envisat\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2021-10-09T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"FedEO\",\n \"SCIHUB\",\n \"DIF10\",\n \ \"Sea Surface Topography\",\n \"EARTH SCIENCE > OCEANS > SEA SURFACE TOPOGRAPHY\",\n \"Radar Altimeters\",\n \"Radiometers\",\n \ \"Sentinel-6\",\n \"POSEIDON-4\",\n \"AMR-C\"\n ],\n \ \"created\": \"2024-01-02T00:00:00.00Z\",\n \"description\": \"Copernicus Sentinel-6 Michael Freilich is an Earth Observation satellite mission developed to provide enhanced continuity to the very stable time series of mean sea level measurements and ocean sea state that started in 1992, with the TOPEX/Poseidon mission, then continued by the Jason-1, Jason-2 and Jason-3 satellite missions.\",\n \ \"type\": \"Collection\",\n \"title\": \"Sentinel-6 Products\",\n \ \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=EOP:ESA:SCIHUB:S6\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series EOP:ESA:Sentinel-6\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S6/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for EOP:ESA:SCIHUB:S6\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://dataspace.copernicus.eu\",\n \"title\": \"Copernicus Data Space Ecosystem - Copernicus Data Space Ecosystem\"\n },\n {\n \ \"rel\": \"search\",\n \"href\": \"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S6\",\n \ \"title\": \"FedEO Clearinghouse - FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S6/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinel.esa.int/web/sentinel/missions/sentinel-6\",\n \ \"title\": \"ESA Sentinel-6 Online\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-6\",\n \ \"title\": \"More collections for Sentinel-6 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/700b6e99-a527-5819-b283-4656c8832ea0\",\n \ \"title\": \"More collections for AMR-C instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/5d1512a5-cb97-5e74-8778-35cd65c06936\",\n \ \"title\": \"More collections for POSEIDON-4 instrument\"\n }\n \ ],\n \"id\": \"EOP:ESA:Sentinel-6\",\n \"updated\": \"2020-11-21T00:00:00.00Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\n \"AMR-C\",\n \"POSEIDON-4\"\n \ ],\n \"platform\": [\"Sentinel-6\"]\n }\n },\n {\n \ \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n \ -90,\n 180,\n 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2017-10-13T00:00:00.000Z\",\n null\n \ ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"FedEO\",\n \"SCIHUB\",\n \"DIF10\",\n \"Air Quality\",\n \"EARTH SCIENCE > ATMOSPHERE > AIR QUALITY\",\n \"Sentinel-5P\",\n \ \"TROPOMI\"\n ],\n \"created\": \"2018-10-09T00:00:00.00Z\",\n \ \"description\": \"The Sentinel-5P data offer for the Pre-Operations Open Access Hub consists of Level-1B and Level-2 user products for the TROPOMI instrument.\",\n \"type\": \"Collection\",\n \"title\": \"Sentinel-5P Products\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=EOP:ESA:SCIHUB:S5P\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series EOP:ESA:Sentinel-5P\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S5P/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for EOP:ESA:SCIHUB:S5P\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://dataspace.copernicus.eu\",\n \"title\": \"Copernicus Data Space Ecosystem - Copernicus Data Space Ecosystem\"\n },\n {\n \ \"rel\": \"search\",\n \"href\": \"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S5P\",\n \ \"title\": \"FedEO Clearinghouse - FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S5P/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinel.esa.int/web/sentinel/missions/sentinel-5P\",\n \ \"title\": \"ESA Sentinel-5P Online\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-5p-tropomi\",\n \ \"title\": \"Sentinel-5P TROPOMI User Guide \"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-5P\",\n \ \"title\": \"More collections for Sentinel-5P platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/09f91afd-c0d2-52a9-9b50-b895a60917fa\",\n \ \"title\": \"More collections for TROPOMI instrument\"\n }\n \ ],\n \"id\": \"EOP:ESA:Sentinel-5P\",\n \"updated\": \"2017-04-30T00:00:00.00Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"TROPOMI\"],\n \"processing:lineage\": [\"The Sentinel-5 Precursor objectives are to provide operational space-borne observations in support to the operational monitoring of Air Quality, Climate, Ozone and Surface UV. It will provide measurements of Ozone, NO_2, SO_2, Formaldehyde, Aerosol, Carbonmonoxide, Methane, Clouds.\"],\n \"platform\": [\"Sentinel-5P\"]\n \ }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n ]]},\n \ \"temporal\": {\"interval\": [[\n \"2016-06-22T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"World\",\n \"Planet\",\n \"Land Surface\",\n \"Mapping and Cartography\",\n \"Natural Hazards and Disaster Risk\",\n \"EARTH SCIENCE > LAND SURFACE\",\n \"EARTH SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\",\n \"VIS (0.40 - 0.75 \xB5m)\",\n \"NIR (0.75 - 1.30 \xB5m)\",\n \"Sun-synchronous\",\n \ \"Very High Resolution - VHR (0 - 5m)\",\n \"475 km (reference)\",\n \ \"25 km\",\n \"Imaging Spectrometers/Radiometers\",\n \"PlanetScope\",\n \ \"PlanetScope Camera\"\n ],\n \"created\": \"2019-08-09T00:00:00.00Z\",\n \ \"description\": \"The PlanetScope Level 1B Basic Scene and Level 3B Ortho Scene full archive products are available as part of Planet imagery offer. The Unrectified Asset: PlanetScope Basic Analytic Radiance (TOAR) product is a Scaled Top of Atmosphere Radiance (at sensor) and sensor corrected product, without correction for any geometric distortions inherent in the imaging processes and is not mapped to a cartographic projection. The imagery data is accompanied by Rational Polynomial Coefficients (RPCs) to enable orthorectification by the user. This kind of product is designed for users with advanced image processing and geometric correction capabilities. Basic Scene Product Components and Format Product Components:\\t - Image File (GeoTIFF format) - Metadata File (XML format) - Rational Polynomial Coefficients (XML format) - Thumbnail File (GeoTIFF format) - Unusable Data Mask UDM File (GeoTIFF format) - Usable Data Mask UDM2 File (GeoTIFF format) Bands: 4-band multispectral image (blue, green, red, near-infrared) or 8-band (coastal-blue, blue, green I, green, yellow, red, Rededge, near-infrared) Ground Sampling Distance:\\t - Approximate, satellite altitude dependent - Dove-C: 3.0 m-4.1 m - Dove-R: 3.0 m-4.1 m - SuperDove: 3.7 m-4.2 m Accuracy: <10 m RMSE The Rectified assets: The PlanetScope Ortho Scene product is radiometrically-, sensor- and geometrically- corrected and is projected to a UTM/WGS84 cartographic map projection. The geometric correction uses fine Digital Elevation Models (DEMs) with a post spacing of between 30 and 90 metres. Ortho Scene Product Components and Format Product Components:\\t - Image File (GeoTIFF format) - Metadata File (XML format) - Thumbnail File (GeoTIFF format) - Unusable Data Mask UDM File (GeoTIFF format) - Usable Data Mask UDM2 File (GeoTIFF format) Bands: 3-band natural color (red, green, blue) or 4-band multispectral image (blue, green, red, near-infrared) or 8-band (costal-blue, blue, green I, green, yellow, red, RedEdge, near-infrared) Ground Sampling Distance:\\t - Approximate, satellite altitude dependent - Dove-C: 3.0 m-4.1 m - Dove-R: 3.0 m-4.1 m - SuperDove: 3.7 m-4.2 m Projection: UTM WGS84 Accuracy: <10 m RMSE PlanetScope Ortho Scene product is available in the following: PlanetScope Visual Ortho Scene product is orthorectified and color-corrected (using a colour curve) 3-band RGB Imagery. This correction attempts to optimise colours as seen by the human eye providing images as they would look if viewed from the perspective of the satellite PlanetScope Surface Reflectance product is orthorectified, 4-band BGRN or 8-band Coastal Blue, Blue, Green I, Green, Yellow, Red, RedEdge, NIR Imagery with geometric, radiometric and corrected for surface reflection. This data is optimal for value-added image processing such as land cover classifications. \ PlanetScope Analytic Ortho Scene Surface Reflectance product is orthorectified, 4-band BGRN or 8-band Coastal Blue, Blue, Green I, Green, Yellow, Red, RedEdge, NIR Imagery with geometric, radiometric and calibrated to top of atmosphere radiance. _$$Planet Explorer Catalogue$$ https://www.planet.com/explorer/ can be accessed (Planet registration requested) to discover and check the data readiness. It is worth to mention that the data distribution is based on Data Voucher, corresponding to maximum amount of square kilometers can be ordered and downloaded by the project in a maximum period of 15 moths (this duration cannot be extended) starting from the project proposal acceptance date. Each Date Voucher includes PlanetScope tile view streaming access for a total of 20,000 tiles per calendar month during the project period. All details about the data provision, data access conditions and quota assignment procedure are described in the _$$Terms of Applicability$$ https://earth.esa.int/eogateway/documents/20142/37627/Access-to-ESAs-Planet-Missions-Terms-of-Applicability.pdf available in Resources section.\",\n \"type\": \"Collection\",\n \"title\": \"PlanetScope Full Archive\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://www.planet.com/products/#satellite-imagery\",\n \ \"type\": \"text/html\",\n \"title\": \"Planet products - Catalogue\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Planet-combined-imagery-product-specs-2020.pdf?text=Combined-Imagery-Product-Spec.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Imagery Product Specifications - Product Specifications\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://developers.planet.com/docs/apps/explorer/\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Explorer User Guide - User Manual\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://www.planet.com/explorer/\",\n \"type\": \"text/html\",\n \"title\": \"Planet Explorer Catalogue - Catalogue\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Access-to-ESAs-Planet-Missions-Terms-of-Applicability.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Terms of Applicability - Access Guide\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/PlanetScope\",\n \ \"title\": \"More collections for PlanetScope platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/94314806-9c68-521a-87e2-8cd838eb9de0\",\n \ \"title\": \"More collections for PlanetScope Camera instrument\"\n \ }\n ],\n \"id\": \"PlanetScope.Full.Archive\",\n \"updated\": \"2023-06-13T13:23:41Z\",\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"PlanetScope Camera\"],\n \"platform\": [\"PlanetScope\"]\n }\n },\n {\n \ \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n \ -82,\n 180,\n 82\n ]]},\n \"temporal\": {\"interval\": [[\n \"1991-08-01T00:00:00.000Z\",\n \"2003-06-22T23:59:59.999Z\"\n \ ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"World\",\n \"Agriculture\",\n \"Forestry\",\n \"Oceans\",\n \ \"Ocean Temperature\",\n \"Natural Hazards and Disaster Risk\",\n \ \"Atmosphere\",\n \"Clouds\",\n \"Precipitation\",\n \ \"EARTH SCIENCE > AGRICULTURE\",\n \"EARTH SCIENCE > BIOSPHERE > ECOSYSTEMS > TERRESTRIAL ECOSYSTEMS > FORESTS\",\n \"EARTH SCIENCE > OCEANS\",\n \"EARTH SCIENCE > OCEANS > OCEAN TEMPERATURE\",\n \"EARTH SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \"EARTH SCIENCE > ATMOSPHERE > CLOUDS\",\n \"EARTH SCIENCE > ATMOSPHERE > PRECIPITATION\",\n \"Sun-synchronous\",\n \"782 to 785 km\",\n \"5 km\",\n \"Imaging Spectrometers/Radiometers\",\n \ \"ERS-1\",\n \"ERS-2\",\n \"ATSR-1\",\n \"ATSR-2\"\n \ ],\n \"created\": \"2019-05-29T00:00:00.00Z\",\n \"description\": \"The Gridded Surface Temperature (GST) Product is the Level 2 full resolution geophysical product. The product contains gridded sea-surface temperature images using both nadir and dual view retrieval algorithms. The product includes pixel latitude/longitude positions, X/Y offset and the results of the cloud-clearing/land-flagging. \ It contains a single measurement data set the content of which is switchable, that is to say, the content of each pixel field will depend on the surface type. Specifically, the contents of the data fields will depend on the setting of the forward and nadir cloud flags and the land flag. The 3rd reprocessing of ATSR data was performed in 2013; the processing updates that have been put in place and the scientific improvements are outlined in full in the User Summary Note for the Third ERS ATSR Reprocessing (https://earth.esa.int/eogateway/documents/20142/37627/IDEAS-VEG-OQC-REP-2148-%28A%29ATSR-Third+Reprocessing-Dataset-User-Summary-v1-0.pdf).\",\n \ \"type\": \"Collection\",\n \"title\": \"ERS-1/2 ATSR Gridded Surface Temperature [AT1/AT2_NR__2P]\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-style%20products%20for%20ATSR-1%20and%20ATSR-2%20data\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Envisat-style products for ATSR-1 and ATSR-2 data - Products Specification\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/ENVISAT-1%20PRODUCTS%20SPECIFICATIONS%20-%20VOLUME%207-%20AATSR%20PRODUCTS%20SPECIFICATIONS\",\n \ \"type\": \"application/pdf\",\n \"title\": \"AATSR Product Specifications - Products Specification\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/instruments/atsr/products-information\",\n \ \"type\": \"text/html\",\n \"title\": \"ATSR Product Information - Product Information\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/search?text=&category=Document%20library&filter=atsr-1,atsr-2\",\n \ \"type\": \"text/html\",\n \"title\": \"More ATSR Documents - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/search?skipDetection=true&text=&category=Tools%20and%20toolboxes&filter=atsr-1,atsr-2\",\n \ \"type\": \"text/html\",\n \"title\": \"(A)ATSR Software Tools - Tools\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/ERS-1\",\n \ \"title\": \"More collections for ERS-1 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/ERS-2\",\n \ \"title\": \"More collections for ERS-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/93343b90-3e9f-5830-abe7-151cc69401c1\",\n \ \"title\": \"More collections for ATSR-1 instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/f3ef7078-65ef-5dee-8c5c-61f9706a34ad\",\n \ \"title\": \"More collections for ATSR-2 instrument\"\n }\n \ ],\n \"id\": \"ERS.AT_NR__2P\",\n \"updated\": \"2023-06-13T13:23:39Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\n \ \"ATSR-1\",\n \"ATSR-2\"\n ],\n \"platform\": [\n \"ERS-1\",\n \"ERS-2\"\n ]\n }\n },\n \ {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n \ -90,\n 180,\n 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"1995-07-01T00:00:00.000Z\",\n \"2015-12-31T23:59:59.999Z\"\n \ ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"sci:doi\": \"10.57780/esa-1268efe\",\n \"keywords\": [\n \"World\",\n \"Atmosphere\",\n \ \"Atmospheric Chemistry\",\n \"Atmospheric Radiation\",\n \"Atmospheric Temperature\",\n \"Climate\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \ \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC CHEMISTRY\",\n \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC RADIATION\",\n \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC TEMPERATURE\",\n \"EARTH SCIENCE > CLIMATE INDICATORS\",\n \"Sun-synchronous\",\n \"GDP 5.0\",\n \"782 to 785 km\",\n \"5 km\",\n \"Spectrometers\",\n \"ERS-2\",\n \ \"GOME\"\n ],\n \"created\": \"2019-05-29T00:00:00.00Z\",\n \ \"description\": \"The GOME Total Column Water Vapour (TCWV) Climate product was generated by the Max Planck Institute for Chemistry (MPIC), and the German Aerospace Center (DLR) within the ESA GOME-Evolution project. It is a Level 3 type product containing homogenized time-series of the global distribution of TCWV spanning over more than two decades (1995-2015). The data is provided as single netCDF file, containing monthly mean TCWV (units kg/m2) with 1-degree resolution, and is based on measurements from the satellite instruments ERS-2 GOME, Envisat SCIAMACHY, and MetOp-A GOME-2. Details are available in the paper by Beirle et al, 2018,. Please also consult the GOME TCWV Product Quality Readme file before using the data. (https://earth.esa.int/eogateway/documents/20142/37627/GOME-TCWV-Product-sQuality-Readme-File.pdf)\",\n \ \"type\": \"Collection\",\n \"title\": \"GOME Total Column Water Vapour Climate product\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/10.57780/esa-1268efe\",\n \"type\": \"text/html\",\n \"title\": \"Landing page\"\n },\n {\n \ \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/GOME-Data-Processor-DLFE-638-PSD-4B.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"GOME TCWV Climate product Technical Documents - Product Specifications\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/GOME-Level1-to-2-Algorithms-Description-DLFE-841-GDP-L12.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"GOME Level 1 to 2 Algorithms Description - Technical Note\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Algorithm-Theoretical-Basis-Document-for_GOME-Total-Column-Densities-of-Ozone-And-Nitrogen-Dioxid.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Algorithm Theoretical Basis Document for GOME Total Column Densities of Ozone and Nitrogen Dioxide - Technical Note\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/GOME-Disclaimer-2004-DLFE-640.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Disclaimer for GOME Level-1 and Level-2 Data Products - Technical Note\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/GOME-Software-Databases-For-Level1-to-2-Processing-DLFE-843-GDP-DB.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"GOME Software Databases for Level 1 to 2 Processing - Technical Note\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Data-Validation-Report-for-ERS-2-GOME-Data-Processor-upgrade-to-version4.0-DLFE-641.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Delta Validation Report for ERS-2 GOME Data Processor upgrade toversion 4.0 - Technical Note\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/GOME-Data-Processor-DLFE-656-DLR-GOME-SUM-gdp01-ex-4.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"GOME Data Processor Extraction Software - User Manual\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?category=Document+library&filter=gome\",\n \ \"type\": \"text/html\",\n \"title\": \"More GOME Documents - Other\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/instruments/gome/products-information\",\n \ \"type\": \"text/html\",\n \"title\": \"Documentation related to GOME data quality - Other\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/ERS-2\",\n \ \"title\": \"More collections for ERS-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/a58b108b-492f-54a5-b807-cb97306b6aad\",\n \ \"title\": \"More collections for GOME instrument\"\n }\n \ ],\n \"id\": \"GOME_Evl_ClimateProd_TCWV\",\n \"updated\": \"2023-06-13T13:23:39Z\",\n \"stac_extensions\": [\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"GOME\"],\n \ \"platform\": [\"ERS-2\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2001-11-01T00:00:00.000Z\",\n \ \"2015-03-31T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"World\",\n \"Multispectral\",\n \ \"Panchromatic\",\n \"Pan-sharpened\",\n \"EUSI\",\n \ \"Maxar\",\n \"GeoEye\",\n \"WorldView\",\n \"Cartosat\",\n \ \"Vegetation\",\n \"EARTH SCIENCE > BIOSPHERE > VEGETATION\",\n \ \"VIS (0.40 - 0.75 \xB5m)\",\n \"NIR (0.75 - 1.30 \xB5m)\",\n \ \"Sun-synchronous\",\n \"Very High Resolution - VHR (0 - 5m)\",\n \ \"High Resolution - HR (5 - 20 m)\",\n \"450 km\",\n \"16.5 km\",\n \"Cameras\",\n \"QuickBird-2\",\n \"BGI\"\n ],\n \ \"created\": \"2019-05-22T00:00:00.00Z\",\n \"description\": \"QuickBird high resolution optical products are available as part of the Maxar Standard Satellite Imagery products from the QuickBird, WorldView-1/-2/-3/-4, and GeoEye-1 satellites. All details about the data provision, data access conditions and quota assignment procedure are described into the Terms of Applicability available in Resources section. In particular, QuickBird offers archive panchromatic products up to 0.60m GSD resolution and 4-Bands Multispectral products up to 2.4m GSD resolution \\u2022 Panchromatic and 4-bands - Levels: STANDARD (2A) / VIEW READY STANDARD (OR2A), VIEW READY STEREO, MAP-READY (ORTHO) 1:12.000 Orthorectified, MAP-READY (ORTHO) 1:50.000 Orthorectified - Resolutions: 0.30 m, 0.40 m, 0.50 m. 0.60 m \\u2022 8-Bands - Levels: STANDARD (2A) / VIEW READY STANDARD (OR2A), VIEW READY STEREO, MAP-READY (ORTHO) 1:12.000 Orthorectified - Resolutions: 0.30 m, 0.40 m, 0.50 m. 0.60 m 4-Bands being an optional from: \\u2022\\u2022 4-Band Multispectral (BLUE, GREEN, RED, NIR1) \\u2022 4-Band Pan-sharpened (BLUE, GREEN, RED, NIR1) \\u2022 4-Band Bundle (PAN, BLUE, GREEN, RED, NIR1) \\u2022 3-Bands Natural Colour (pan-sharpened BLUE, GREEN, RED) \\u2022 3-Band Colored Infrared (pan-sharpened GREEN, RED, NIR1) \\u2022 Natural Colour / Coloured Infrared (3-Band pan-sharpened) The list of available archived data can be retrieved using the Image Library (https://www.euspaceimaging.com/image-library/) catalogue.\",\n \"type\": \"Collection\",\n \"title\": \"QuickBird full archive\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Map-Ready-imagery-data-sheet.pdf/83b9a034-5548-1fc7-4744-8d0fdb922f52\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Map Ready data imagery sheet - Product Sepcification\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/DigitalGlobe-GeoStereo.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"GeoStereo product details - Product Sepcification\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/DigitalGlobe-Stereo-Imagery.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Stereo product details - Product Sepcification\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/view-ready-imagery-data-sheet.pdf/e1476ac6-51cc-6052-c138-844dcc0200b8\",\n \ \"type\": \"application/pdf\",\n \"title\": \"View Ready imagery data sheet - Product Sepcification\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/WorldView-GeoEye-QuickBird-Terms-Of-Applicability.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Indian Data Terms of Applicability - Access guide\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request&sys_id=f27b38f9dbdffe40e3cedb11ce961958\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/QuickBird-2\",\n \ \"title\": \"More collections for QuickBird-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/aee4648e-d5cc-5e77-8354-87f45367f1a9\",\n \ \"title\": \"More collections for BGI instrument\"\n }\n \ ],\n \"id\": \"QuickBird.full.archive\",\n \"updated\": \"2023-06-13T13:23:41Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"BGI\"],\n \ \"platform\": [\"QuickBird-2\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2005-01-01T00:00:00.000Z\",\n \ \"2005-12-31T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"sci:doi\": \"10.5270/esa-6riial9\",\n \"keywords\": [\n \"World\",\n \"Surface Radiative Properties\",\n \"EARTH SCIENCE > LAND SURFACE > SURFACE RADIATIVE PROPERTIES\",\n \"UV (0.01 - 0.4 \xB5m)\",\n \"VIS (0.40 - 0.75 \xB5m)\",\n \"NIR (0.75 - 1.30 \xB5m)\",\n \"SWIR (1.3 - 3.0 \xB5m)\",\n \"MWIR (3.0 - 6.0 \xB5m)\",\n \"4.0\",\n \"Very Low Resolution - VLR (> 1200 m)\",\n \"Imaging Spectrometers/Radiometers\",\n \"Scatterometers\",\n \ \"TERRA\",\n \"AQUA\",\n \"QuikSCAT\",\n \"OrbView-2\",\n \ \"MODIS\",\n \"SeaWinds\",\n \"SeaWiFS\"\n ],\n \ \"created\": \"2019-11-21T00:00:00.00Z\",\n \"description\": \"ADAM enables generating typical monthly variations of the global Earth surface reflectance at 0.1\xB0 spatial resolution (Plate Carree projection) and over the spectral range 240-4000nm. The ADAM product is made of gridded monthly mean climatologies over land and ocean surfaces, and of a companion API toolkit that enables the calculation of hyperspectral (at 1 nm resolution over the whole 240-4000 nm spectral range) and multidirectional reflectances (i.e. in any illumination/viewing geometry) depending on user choices. The ADAM climatologies that feed the ADAM calculation tools are: For ocean: monthly chlorophyll concentration derived from SeaWiFS-OrbView-2 (1999-2009); it is used to compute the water column reflectance (which shows large spectral variations in the visible, but is insignificant in the near and mid infrared). monthly wind speed derived from SeaWinds-QuikSCAT-(1999-2009); it is used to calculate the ocean glint reflectance. For land: monthly normalized surface reflectances in the 7 MODIS narrow spectral bands derived from FondsdeSol processing chain of MOD09A1 products (derived from Aqua and Terra observations), on which relies the modelling of the hyperspectral/multidirectional surface (soil/vegetation/snow) reflectance. uncertainty variance-covariance matrix for the 7 spectral bands associated to the normalized surface reflectance. For sea-ice: Sea ice pixels (masked in the original MOD09A1 products) have been accounted for by a gap-filling approach relying on the spatial-temporal distribution of sea ice coverage provided by the CryoClim climatology for year 2005.\",\n \"type\": \"Collection\",\n \ \"title\": \"ADAM Surface Reflectance Database v4.0\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \ \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/10.5270/esa-6riial9\",\n \"type\": \"text/html\",\n \"title\": \"Landing page\"\n },\n {\n \ \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://adam.noveltis.fr/\",\n \"type\": \"text/html\",\n \"title\": \"ADAM Database - Software Tool\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://adam.noveltis.fr/pdfs/NOV-FE-0724-NT-007-v4.2.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"ADAM Algorithm Theoretical Basis Document - Technical Note\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://adam.noveltis.fr/pdfs/NOV-FE-0724-NT-008-v4.0.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"ADAM, description of the web interface. Structure of the ADAM input surface database and output products - Technical Note\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://adam.noveltis.fr/pdfs/NOV-FE-0724-NT-006_v2.1.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"ADAM Final Report, Contract Change request 6 - Technical Note\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/TERRA\",\n \ \"title\": \"More collections for TERRA platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/AQUA\",\n \ \"title\": \"More collections for AQUA platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/QuikSCAT\",\n \ \"title\": \"More collections for QuikSCAT platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/OrbView-2\",\n \ \"title\": \"More collections for OrbView-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/482c462e-543c-5b17-9c69-ef7327e950a9\",\n \ \"title\": \"More collections for SeaWiFS instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/ada8f84c-48ef-50a6-b2ba-635a1bdb7d14\",\n \ \"title\": \"More collections for MODIS instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/3a0e9379-9541-569c-8492-3636d0ef2a27\",\n \ \"title\": \"More collections for SeaWinds instrument\"\n }\n \ ],\n \"id\": \"ADAM.Surface.Reflectance.Database\",\n \"updated\": \"2023-06-13T13:23:39Z\",\n \"stac_extensions\": [\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\n \ \"SeaWiFS\",\n \"MODIS\",\n \"SeaWinds\"\n ],\n \ \"platform\": [\n \"TERRA\",\n \"AQUA\",\n \"QuikSCAT\",\n \ \"OrbView-2\"\n ]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -82,\n 180,\n \ 82\n ]]},\n \"temporal\": {\"interval\": [[\n \"1991-08-01T00:00:00.000Z\",\n \ \"2011-07-04T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"sci:doi\": \"10.57780/ers-af99f2b\",\n \"keywords\": [\n \"World\",\n \"Natural Hazards and Disaster Risk\",\n \"Atmosphere\",\n \ \"Atmospheric Winds\",\n \"EARTH SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\",\n \"Sun-synchronous\",\n \ \"ASPS 10.04\",\n \"Very Low Resolution - VLR (> 1200 m)\",\n \ \"782 to 785 km\",\n \"5 km\",\n \"Scatterometers\",\n \ \"ERS-1\",\n \"ERS-2\",\n \"AMI/Scatterometer\"\n ],\n \ \"created\": \"2019-05-29T00:00:00.00Z\",\n \"description\": \"The ERS data reprocessed with the ASPS facility is also available in the UWI format to maintain the compatibility with the FD (Fast Delivery) products. The ASPS UWI product is organised in frames of 500 x 500 km providing the radar backscattering sigma nought for the three beams of the instrument plus the wind speed and direction. The wind retrieval is performed with the CMOD5N geophysical model function derived by ECMWF to compute the neutral winds rather than 10m winds. \ ASPS UWI products are provided with a spatial resolution of 50x50km and a grid spacing of 25 km. One product covers one orbit from ascending node crossing. Please consult the Product Quality Readme file (https://earth.esa.int/eogateway/documents/20142/37627/ERS-WS-Product-Quality-Readmefile-ENVI-GSOP-EOGD-QD-15-0130-issue1.2.pdf) before using the ERS ASPS data.\",\n \"type\": \"Collection\",\n \"title\": \"ERS-1/2 SCATTEROMETER Nominal Resolution back-scattering measurements, Ocean Wind field [UWI]\",\n \"license\": \"various\",\n \"assets\": {\n \ \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.UWI\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/10.57780/ers-af99f2b\",\n \"type\": \"text/html\",\n \"title\": \"Landing page\"\n },\n {\n \ \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.UWI\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/instruments/ws/products-information\",\n \ \"type\": \"text/html\",\n \"title\": \"Documentation related to SCATTEROMETER data - Product Specifications\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/web/sppa/mission-performance/esa-missions/ers-2/scatterometer/quality-control-reports\",\n \ \"type\": \"text/html\",\n \"title\": \"SCATTEROMETER Quality Information - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?skipDetection=true&text=&category=Document%20library&filter=ami-scatterometer\",\n \ \"type\": \"text/html\",\n \"title\": \"All SCATTEROMETER documents - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/ERS-1\",\n \ \"title\": \"More collections for ERS-1 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/ERS-2\",\n \ \"title\": \"More collections for ERS-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/2659e931-c15f-5b28-82e4-36c69ee2f848\",\n \ \"title\": \"More collections for AMI/Scatterometer instrument\"\n \ }\n ],\n \"id\": \"ERS.UWI\",\n \"updated\": \"2023-06-23T09:01:27Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"AMI/Scatterometer\"],\n \ \"platform\": [\n \"ERS-1\",\n \"ERS-2\"\n ]\n \ }\n }\n ],\n \"numberReturned\": 10,\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections?limit=10&bbox=-159.893%2C21.843%2C-159.176%2C22.266\",\n \ \"type\": \"application/json\",\n \"title\": \"This document\"\n \ },\n {\n \"rel\": \"next\",\n \"href\": \"https://emc.spacebel.be/collections?limit=10&bbox=-159.893%2C21.843%2C-159.176%2C22.266&startRecord=11\",\n \ \"type\": \"application/json\",\n \"title\": \"Next results\"\n \ },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for collection search\"\n }\n ],\n \"numberMatched\": 2365\n}" headers: Access-Control-Allow-Headers: - X-PINGOTHER, Content-Type, Authorization, Accept Access-Control-Allow-Methods: - POST,GET,PUT,HEAD,OPTIONS,DELETE Access-Control-Allow-Origin: - '*' Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Connection: - keep-alive Content-Type: - application/json;charset=UTF-8 Date: - Thu, 17 Jul 2025 12:51:05 GMT Expires: - '0' Pragma: - no-cache Server: - openresty Strict-Transport-Security: - max-age=31536000 ; includeSubDomains Transfer-Encoding: - chunked X-Content-Type-Options: - nosniff X-Frame-Options: - DENY X-Served-By: - emc.spacebel.be X-XSS-Protection: - 1; mode=block status: code: 200 message: '' version: 1 TestCollectionSearch.test_client_side_bbox.yaml000066400000000000000000005702771503646565400354360ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_collection_searchinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v1/collections?limit=10&bbox=60.0%2C0.0%2C70.0%2C10.0 response: body: string: "{\"collections\":[{\"type\":\"Collection\",\"id\":\"sentinel-2-pre-c1-l2a\",\"title\":\"Sentinel-2 Pre-Collection 1 Level-2A \",\"description\":\"Sentinel-2 Pre-Collection 1 Level-2A (baseline < 05.00), with data and metadata matching collection sentinel-2-c1-l2a\",\"stac_version\":\"1.0.0\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"roles\":[\"visual\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"roles\":[\"overview\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"product_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"id\":\"cop-dem-glo-30\",\"type\":\"Collection\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/aggregations\"}],\"title\":\"Copernicus DEM GLO-30\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"DSM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20123/121286/CSCDA_ESA_Mission-specific+Annex_31_Oct_22.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[30],\"platform\":[\"tandem-x\"],\"proj:epsg\":[4326],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[false]},\"description\":\"The Copernicus DEM is a Digital Surface Model (DSM) which represents the surface of the Earth including buildings, infrastructure and vegetation. GLO-30 Public provides limited worldwide coverage at 30 meters because a small subset of tiles covering specific countries are not yet released to the public by the Copernicus Programme.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"raster:bands\":[{\"sampling\":\"point\",\"data_type\":\"float32\",\"spatial_resolution\":30,\"unit\":\"meter\"}]}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"]},{\"id\":\"naip\",\"type\":\"Collection\",\"description\":\"The [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/) (NAIP) provides U.S.-wide, high-resolution aerial imagery, with four spectral bands (R, G, B, IR). NAIP is administered by the [Aerial Field Photography Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/) (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA). \ Data are captured at least once every three years for each state. This dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\n\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip\"},{\"rel\":\"license\",\"href\":\"https://www.fsa.usda.gov/help/policies-and-links/\",\"title\":\"Public Domain\",\"type\":\"text/html\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/F7QN651G\",\"title\":\"NAIP Overview\",\"type\":\"text/html\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.14358/PERS.83.10.737\",\"title\":\"Publication\",\"type\":\"text/html\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/aggregations\"}],\"title\":\"NAIP: National Agriculture Imagery Program\",\"extent\":{\"spatial\":{\"bbox\":[[-160,17,-67,50]]},\"temporal\":{\"interval\":[[\"2010-01-01T00:00:00Z\",\"2022-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"NAIP\",\"Aerial\",\"Imagery\",\"USDA\",\"AFPO\",\"Agriculture\",\"United States\"],\"providers\":[{\"name\":\"USDA Farm Service Agency\",\"url\":\"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/\",\"roles\":[\"producer\",\"licensor\"]},{\"name\":\"Esri\",\"url\":\"https://www.esri.com\",\"roles\":[\"processor\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/naip\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[0.6,1],\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\",\"description\":\"visible red\"},{\"name\":\"Green\",\"common_name\":\"green\",\"description\":\"visible green\"},{\"name\":\"Blue\",\"common_name\":\"blue\",\"description\":\"visible blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"item_assets\":{\"image\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"name\":\"Blue\",\"common_name\":\"blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"metadata\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"FGDC Metdata\"}},\"sci:doi\":\"10.5066/F7QN651G\",\"sci:publications\":[{\"doi\":\"10.14358/PERS.83.10.737\",\"citation\":\"Maxwell, A. E., Warner, T. A., Vanderbilt, B. C., & Ramezan, C. A. (2017). Land cover classification and feature extraction from National Agriculture Imagery Program (NAIP) orthoimagery: A Review. Photogrammetric Engineering & Remote Sensing, 83(11), 737-747. https://doi.org/10.14358/pers.83.10.737\"}],\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"]},{\"id\":\"cop-dem-glo-90\",\"type\":\"Collection\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20123/121286/CSCDA_ESA_Mission-specific+Annex_31_Oct_22.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/aggregations\"}],\"title\":\"Copernicus DEM GLO-90\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[90],\"platform\":[\"tandem-x\"],\"proj:epsg\":[4326],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[false]},\"description\":\"The Copernicus DEM is a Digital Surface Model (DSM) which represents the surface of the Earth including buildings, infrastructure and vegetation. GLO-90 provides worldwide coverage at 90 meters.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"raster:bands\":[{\"sampling\":\"point\",\"data_type\":\"float32\",\"spatial_resolution\":30,\"unit\":\"meter\"}]}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"]},{\"type\":\"Collection\",\"id\":\"landsat-c2-l2\",\"stac_version\":\"1.0.0\",\"description\":\"Atmospherically corrected global Landsat Collection 2 Level-2 data from the Thematic Mapper (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor (TIRS) onboard Landsat 8 and 9.\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9IAXOVV\",\"title\":\"Landsat 4-5 TM Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9C7I13B\",\"title\":\"Landsat 7 ETM+ Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat 8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/core-science-systems/hdds/data-policy\",\"title\":\"Public Domain\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"reduced_resolution_browse\":{\"type\":\"image/jpeg\",\"title\":\"Reduced resolution browse image\",\"roles\":[\"overview\"]},\"mtl.json\":{\"type\":\"application/json\",\"title\":\"Product Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata File (json)\",\"roles\":[\"metadata\"]},\"mtl.txt\":{\"type\":\"text/plain\",\"title\":\"Product Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata File (txt)\",\"roles\":[\"metadata\"]},\"mtl.xml\":{\"type\":\"application/xml\",\"title\":\"Product Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata File (xml)\",\"roles\":[\"metadata\"]},\"ang\":{\"type\":\"text/plain\",\"title\":\"Angle Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients File\",\"roles\":[\"metadata\"]},\"qa_pixel\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality Assessment Band\",\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"]},\"qa_radsat\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"saturation\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\",\"description\":\"Collection 2 Level-2 Coastal/Aerosol Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band\",\"description\":\"Collection 2 Level-2 Blue Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band\",\"description\":\"Collection 2 Level-2 Green Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band\",\"description\":\"Collection 2 Level-2 Red Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band 0.8\",\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared Band 1.6\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 2.2 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"atmos_opacity\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Opacity Band\",\"description\":\"Collection 2 Level-2 Atmospheric Opacity Band Surface Reflectance Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.001}],\"roles\":[\"data\"]},\"cloud_qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Cloud Quality Assessment Band Surface Reflectance Product\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"]},\"qa_aerosol\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Assessment Band Surface Reflectance Product\",\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"data-mask\",\"water-mask\"]},\"lwir11\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band Surface Temperature\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.00341802,\"offset\":149}],\"roles\":[\"temperature\"]},\"lwir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band Surface Temperature\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.00341802,\"offset\":149}],\"roles\":[\"temperature\"]},\"atran\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance Band\",\"description\":\"Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\"]},\"cdist\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"description\":\"Collection 2 Level-2 Cloud Distance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"kilometer\",\"scale\":0.01}],\"roles\":[\"data\"]},\"drad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"urad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"trad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"description\":\"Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"emis\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"description\":\"Collection 2 Level-2 Emissivity Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\",\"emissivity\"]},\"emsd\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard Deviation Band\",\"description\":\"Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\",\"emissivity\"]},\"qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Quality Assessment Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.01}],\"roles\":[\"data\"]}},\"title\":\"Landsat Collection 2 Level-2\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1982-08-22T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Landsat\",\"USGS\",\"NASA\",\"Satellite\",\"Global\",\"Imagery\",\"Reflectance\",\"Temperature\"],\"providers\":[{\"name\":\"NASA\",\"roles\":[\"producer\",\"licensor\"],\"url\":\"https://landsat.gsfc.nasa.gov/\"},{\"name\":\"USGS\",\"roles\":[\"producer\",\"processor\",\"licensor\"],\"url\":\"https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"landsat-4\",\"landsat-5\",\"landsat-7\",\"landsat-8\",\"landsat-9\"],\"instruments\":[\"tm\",\"etm+\",\"oli\",\"tirs\"],\"gsd\":[30,60,100,120],\"sci:doi\":[\"10.5066/P9IAXOVV\",\"10.5066/P9C7I13B\",\"10.5066/P9OGBGM6\"],\"eo:bands\":[{\"name\":\"TM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Thematic Mapper)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.07},{\"name\":\"TM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Thematic Mapper)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"TM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Thematic Mapper)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"TM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Thematic Mapper)\",\"center_wavelength\":0.83,\"full_width_half_max\":0.14},{\"name\":\"TM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"TM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Thematic Mapper)\",\"center_wavelength\":11.45,\"full_width_half_max\":2.1},{\"name\":\"TM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":2.22,\"full_width_half_max\":0.27},{\"name\":\"ETM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.07},{\"name\":\"ETM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"ETM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"ETM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.84,\"full_width_half_max\":0.13},{\"name\":\"ETM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"ETM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":11.34,\"full_width_half_max\":2.05},{\"name\":\"ETM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.28},{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol (Operational Land Imager)\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02},{\"name\":\"OLI_B2\",\"common_name\":\"blue\",\"description\":\"Visible blue (Operational Land Imager)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06},{\"name\":\"OLI_B3\",\"common_name\":\"green\",\"description\":\"Visible green (Operational Land Imager)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06},{\"name\":\"OLI_B4\",\"common_name\":\"red\",\"description\":\"Visible red (Operational Land Imager)\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04},{\"name\":\"OLI_B5\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Operational Land Imager)\",\"center_wavelength\":0.87,\"full_width_half_max\":0.03},{\"name\":\"OLI_B6\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.09},{\"name\":\"OLI_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.19},{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave infrared (Thermal Infrared Sensor)\",\"center_wavelength\":10.9,\"full_width_half_max\":0.59}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-l2a\",\"stac_version\":\"1.0.0\",\"title\":\"Sentinel-2 Level-2A\",\"description\":\"Global Sentinel-2 data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water vapour (WVP)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"aot-jp2\":{\"type\":\"image/jp2\",\"title\":\"Aerosol optical thickness (AOT)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"blue-jp2\":{\"type\":\"image/jp2\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal-jp2\":{\"type\":\"image/jp2\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"green-jp2\":{\"type\":\"image/jp2\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"scl-jp2\":{\"type\":\"image/jp2\",\"title\":\"Scene classification map (SCL)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"reflectance\"]},\"swir16-jp2\":{\"type\":\"image/jp2\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22-jp2\":{\"type\":\"image/jp2\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"visual-jp2\":{\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]},\"wvp-jp2\":{\"type\":\"image/jp2\",\"title\":\"Water vapour (WVP)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-l1c\",\"stac_version\":\"1.0.0\",\"title\":\"Sentinel-2 Level-1C\",\"description\":\"Global Sentinel-2 data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-1C (L1C) Top-of-Atmosphere Reflectance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"blue\":{\"type\":\"image/jp2\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"cirrus\":{\"type\":\"image/jp2\",\"title\":\"Cirrus (band 10) - 60m\",\"eo:bands\":[{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"type\":\"image/jp2\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"type\":\"image/jp2\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"type\":\"image/jp2\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"type\":\"image/jp2\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/jp2\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red\":{\"type\":\"image/jp2\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/jp2\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/jp2\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/jp2\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/jp2\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-c1-l2a\",\"title\":\"Sentinel-2 Collection 1 Level-2A\",\"description\":\"Sentinel-2 Collection 1 Level-2A, data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"stac_version\":\"1.0.0\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"roles\":[\"visual\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"roles\":[\"overview\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"product_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"id\":\"sentinel-1-grd\",\"type\":\"Collection\",\"title\":\"Sentinel-1 Level-1C Ground Range Detected (GRD)\",\"description\":\"Sentinel-1 is a pair of Synthetic Aperture Radar (SAR) imaging satellites launched in 2014 and 2016 by the European Space Agency (ESA). Their 6 day revisit cycle and ability to observe through clouds makes this dataset perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. This dataset represents the global Sentinel-1 GRD archive, from beginning to the present, converted to cloud-optimized GeoTIFF format.\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/technical-guides/sentinel-1-sar/products-algorithms/level-1-algorithms/ground-range-detected\",\"title\":\"Sentinel-1 Ground Range Detected (GRD) Technical Guide\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"Copernicus Sentinel data terms\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/aggregations\"}],\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2014-10-10T00:28:21Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"ESA\",\"Copernicus\",\"Sentinel\",\"C-Band\",\"SAR\",\"GRD\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-1a\",\"sentinel-1b\"],\"constellation\":[\"sentinel-1\"],\"s1:resolution\":[\"full\",\"high\",\"medium\"],\"s1:orbit_source\":[\"DOWNLINK\",\"POEORB\",\"PREORB\",\"RESORB\"],\"sar:looks_range\":[5,6,3,2],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"sar:product_type\":[\"GRD\"],\"sar:looks_azimuth\":[1,6,2],\"sar:polarizations\":[[\"VV\",\"VH\"],[\"HH\",\"HV\"],[\"VV\"],[\"VH\"],[\"HH\"],[\"HV\"]],\"sar:frequency_band\":[\"C\"],\"s1:processing_level\":[\"1\"],\"sar:instrument_mode\":[\"IW\",\"EW\",\"SM\"],\"sar:center_frequency\":[5.405],\"sar:resolution_range\":[20,23,50,93,9],\"s1:product_timeliness\":[\"NRT-10m\",\"NRT-1h\",\"NRT-3h\",\"Fast-24h\",\"Off-line\",\"Reprocessing\"],\"sar:resolution_azimuth\":[22,23,50,87,9],\"sar:pixel_spacing_range\":[10,25,40,3.5],\"sar:observation_direction\":[\"right\"],\"sar:pixel_spacing_azimuth\":[10,25,40,3.5],\"sar:looks_equivalent_number\":[4.4,29.7,2.7,10.7,3.7],\"sat:platform_international_designator\":[\"2014-016A\",\"2016-025A\",\"0000-000A\"],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[true]},\"item_assets\":{\"hh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HH Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"hv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HV Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"vh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VH Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"vv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VV Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail Image\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"SAFE Manifest File\"},\"schema-noise-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Noise Schema\"},\"schema-noise-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Noise Schema\"},\"schema-noise-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Noise Schema\"},\"schema-noise-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Noise Schema\"},\"schema-product-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Product Schema\"},\"schema-product-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Product Schema\"},\"schema-product-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Product Schema\"},\"schema-product-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Product Schema\"},\"schema-calibration-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Calibration Schema\"},\"schema-calibration-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Calibration Schema\"},\"schema-calibration-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Calibration Schema\"},\"schema-calibration-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Calibration Schema\"}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"]}],\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"}],\"context\":{\"page\":1,\"limit\":100,\"matched\":9,\"returned\":9}}" headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '8117' Content-Type: - application/json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:51:13 GMT Via: - 1.1 5950a1c2bfcf1f3e07bedbb2efad39f2.cloudfront.net (CloudFront) X-Amz-Cf-Id: - s2jJuTv86goq6fX6uEhtzW_9x4Jas3Bi_XSzXfAbKO84ajUhbyZxjg== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f1c1-1507b40c511e0a051a9506c2;Parent=5124251183f933d9;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"141dd-9fMv6YJnvxPn9adSQK466CnIbE0" x-amz-apigw-id: - N2q2THLmPHcErNA= x-amzn-Remapped-content-length: - '82397' x-amzn-RequestId: - 3840d654-3208-4f25-9372-28ee7f0e38a9 x-powered-by: - Express status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v1/collections?limit=10&bbox=60.0%2C0.0%2C70.0%2C10.0 response: body: string: "{\"collections\":[{\"type\":\"Collection\",\"id\":\"sentinel-2-pre-c1-l2a\",\"title\":\"Sentinel-2 Pre-Collection 1 Level-2A \",\"description\":\"Sentinel-2 Pre-Collection 1 Level-2A (baseline < 05.00), with data and metadata matching collection sentinel-2-c1-l2a\",\"stac_version\":\"1.0.0\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"roles\":[\"visual\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"roles\":[\"overview\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"product_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"id\":\"cop-dem-glo-30\",\"type\":\"Collection\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/aggregations\"}],\"title\":\"Copernicus DEM GLO-30\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"DSM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20123/121286/CSCDA_ESA_Mission-specific+Annex_31_Oct_22.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[30],\"platform\":[\"tandem-x\"],\"proj:epsg\":[4326],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[false]},\"description\":\"The Copernicus DEM is a Digital Surface Model (DSM) which represents the surface of the Earth including buildings, infrastructure and vegetation. GLO-30 Public provides limited worldwide coverage at 30 meters because a small subset of tiles covering specific countries are not yet released to the public by the Copernicus Programme.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"raster:bands\":[{\"sampling\":\"point\",\"data_type\":\"float32\",\"spatial_resolution\":30,\"unit\":\"meter\"}]}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"]},{\"id\":\"naip\",\"type\":\"Collection\",\"description\":\"The [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/) (NAIP) provides U.S.-wide, high-resolution aerial imagery, with four spectral bands (R, G, B, IR). NAIP is administered by the [Aerial Field Photography Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/) (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA). \ Data are captured at least once every three years for each state. This dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\n\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip\"},{\"rel\":\"license\",\"href\":\"https://www.fsa.usda.gov/help/policies-and-links/\",\"title\":\"Public Domain\",\"type\":\"text/html\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/F7QN651G\",\"title\":\"NAIP Overview\",\"type\":\"text/html\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.14358/PERS.83.10.737\",\"title\":\"Publication\",\"type\":\"text/html\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/aggregations\"}],\"title\":\"NAIP: National Agriculture Imagery Program\",\"extent\":{\"spatial\":{\"bbox\":[[-160,17,-67,50]]},\"temporal\":{\"interval\":[[\"2010-01-01T00:00:00Z\",\"2022-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"NAIP\",\"Aerial\",\"Imagery\",\"USDA\",\"AFPO\",\"Agriculture\",\"United States\"],\"providers\":[{\"name\":\"USDA Farm Service Agency\",\"url\":\"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/\",\"roles\":[\"producer\",\"licensor\"]},{\"name\":\"Esri\",\"url\":\"https://www.esri.com\",\"roles\":[\"processor\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/naip\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[0.6,1],\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\",\"description\":\"visible red\"},{\"name\":\"Green\",\"common_name\":\"green\",\"description\":\"visible green\"},{\"name\":\"Blue\",\"common_name\":\"blue\",\"description\":\"visible blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"item_assets\":{\"image\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"name\":\"Blue\",\"common_name\":\"blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"metadata\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"FGDC Metdata\"}},\"sci:doi\":\"10.5066/F7QN651G\",\"sci:publications\":[{\"doi\":\"10.14358/PERS.83.10.737\",\"citation\":\"Maxwell, A. E., Warner, T. A., Vanderbilt, B. C., & Ramezan, C. A. (2017). Land cover classification and feature extraction from National Agriculture Imagery Program (NAIP) orthoimagery: A Review. Photogrammetric Engineering & Remote Sensing, 83(11), 737-747. https://doi.org/10.14358/pers.83.10.737\"}],\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"]},{\"id\":\"cop-dem-glo-90\",\"type\":\"Collection\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20123/121286/CSCDA_ESA_Mission-specific+Annex_31_Oct_22.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/aggregations\"}],\"title\":\"Copernicus DEM GLO-90\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[90],\"platform\":[\"tandem-x\"],\"proj:epsg\":[4326],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[false]},\"description\":\"The Copernicus DEM is a Digital Surface Model (DSM) which represents the surface of the Earth including buildings, infrastructure and vegetation. GLO-90 provides worldwide coverage at 90 meters.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"raster:bands\":[{\"sampling\":\"point\",\"data_type\":\"float32\",\"spatial_resolution\":30,\"unit\":\"meter\"}]}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"]},{\"type\":\"Collection\",\"id\":\"landsat-c2-l2\",\"stac_version\":\"1.0.0\",\"description\":\"Atmospherically corrected global Landsat Collection 2 Level-2 data from the Thematic Mapper (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor (TIRS) onboard Landsat 8 and 9.\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9IAXOVV\",\"title\":\"Landsat 4-5 TM Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9C7I13B\",\"title\":\"Landsat 7 ETM+ Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat 8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/core-science-systems/hdds/data-policy\",\"title\":\"Public Domain\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"reduced_resolution_browse\":{\"type\":\"image/jpeg\",\"title\":\"Reduced resolution browse image\",\"roles\":[\"overview\"]},\"mtl.json\":{\"type\":\"application/json\",\"title\":\"Product Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata File (json)\",\"roles\":[\"metadata\"]},\"mtl.txt\":{\"type\":\"text/plain\",\"title\":\"Product Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata File (txt)\",\"roles\":[\"metadata\"]},\"mtl.xml\":{\"type\":\"application/xml\",\"title\":\"Product Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata File (xml)\",\"roles\":[\"metadata\"]},\"ang\":{\"type\":\"text/plain\",\"title\":\"Angle Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients File\",\"roles\":[\"metadata\"]},\"qa_pixel\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality Assessment Band\",\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"]},\"qa_radsat\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"saturation\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\",\"description\":\"Collection 2 Level-2 Coastal/Aerosol Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band\",\"description\":\"Collection 2 Level-2 Blue Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band\",\"description\":\"Collection 2 Level-2 Green Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band\",\"description\":\"Collection 2 Level-2 Red Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band 0.8\",\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared Band 1.6\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 2.2 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"atmos_opacity\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Opacity Band\",\"description\":\"Collection 2 Level-2 Atmospheric Opacity Band Surface Reflectance Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.001}],\"roles\":[\"data\"]},\"cloud_qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Cloud Quality Assessment Band Surface Reflectance Product\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"]},\"qa_aerosol\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Assessment Band Surface Reflectance Product\",\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"data-mask\",\"water-mask\"]},\"lwir11\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band Surface Temperature\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.00341802,\"offset\":149}],\"roles\":[\"temperature\"]},\"lwir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band Surface Temperature\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.00341802,\"offset\":149}],\"roles\":[\"temperature\"]},\"atran\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance Band\",\"description\":\"Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\"]},\"cdist\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"description\":\"Collection 2 Level-2 Cloud Distance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"kilometer\",\"scale\":0.01}],\"roles\":[\"data\"]},\"drad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"urad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"trad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"description\":\"Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"emis\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"description\":\"Collection 2 Level-2 Emissivity Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\",\"emissivity\"]},\"emsd\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard Deviation Band\",\"description\":\"Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\",\"emissivity\"]},\"qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Quality Assessment Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.01}],\"roles\":[\"data\"]}},\"title\":\"Landsat Collection 2 Level-2\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1982-08-22T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Landsat\",\"USGS\",\"NASA\",\"Satellite\",\"Global\",\"Imagery\",\"Reflectance\",\"Temperature\"],\"providers\":[{\"name\":\"NASA\",\"roles\":[\"producer\",\"licensor\"],\"url\":\"https://landsat.gsfc.nasa.gov/\"},{\"name\":\"USGS\",\"roles\":[\"producer\",\"processor\",\"licensor\"],\"url\":\"https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"landsat-4\",\"landsat-5\",\"landsat-7\",\"landsat-8\",\"landsat-9\"],\"instruments\":[\"tm\",\"etm+\",\"oli\",\"tirs\"],\"gsd\":[30,60,100,120],\"sci:doi\":[\"10.5066/P9IAXOVV\",\"10.5066/P9C7I13B\",\"10.5066/P9OGBGM6\"],\"eo:bands\":[{\"name\":\"TM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Thematic Mapper)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.07},{\"name\":\"TM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Thematic Mapper)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"TM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Thematic Mapper)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"TM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Thematic Mapper)\",\"center_wavelength\":0.83,\"full_width_half_max\":0.14},{\"name\":\"TM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"TM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Thematic Mapper)\",\"center_wavelength\":11.45,\"full_width_half_max\":2.1},{\"name\":\"TM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":2.22,\"full_width_half_max\":0.27},{\"name\":\"ETM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.07},{\"name\":\"ETM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"ETM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"ETM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.84,\"full_width_half_max\":0.13},{\"name\":\"ETM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"ETM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":11.34,\"full_width_half_max\":2.05},{\"name\":\"ETM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.28},{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol (Operational Land Imager)\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02},{\"name\":\"OLI_B2\",\"common_name\":\"blue\",\"description\":\"Visible blue (Operational Land Imager)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06},{\"name\":\"OLI_B3\",\"common_name\":\"green\",\"description\":\"Visible green (Operational Land Imager)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06},{\"name\":\"OLI_B4\",\"common_name\":\"red\",\"description\":\"Visible red (Operational Land Imager)\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04},{\"name\":\"OLI_B5\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Operational Land Imager)\",\"center_wavelength\":0.87,\"full_width_half_max\":0.03},{\"name\":\"OLI_B6\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.09},{\"name\":\"OLI_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.19},{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave infrared (Thermal Infrared Sensor)\",\"center_wavelength\":10.9,\"full_width_half_max\":0.59}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-l2a\",\"stac_version\":\"1.0.0\",\"title\":\"Sentinel-2 Level-2A\",\"description\":\"Global Sentinel-2 data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water vapour (WVP)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"aot-jp2\":{\"type\":\"image/jp2\",\"title\":\"Aerosol optical thickness (AOT)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"blue-jp2\":{\"type\":\"image/jp2\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal-jp2\":{\"type\":\"image/jp2\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"green-jp2\":{\"type\":\"image/jp2\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"scl-jp2\":{\"type\":\"image/jp2\",\"title\":\"Scene classification map (SCL)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"reflectance\"]},\"swir16-jp2\":{\"type\":\"image/jp2\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22-jp2\":{\"type\":\"image/jp2\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"visual-jp2\":{\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]},\"wvp-jp2\":{\"type\":\"image/jp2\",\"title\":\"Water vapour (WVP)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-l1c\",\"stac_version\":\"1.0.0\",\"title\":\"Sentinel-2 Level-1C\",\"description\":\"Global Sentinel-2 data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-1C (L1C) Top-of-Atmosphere Reflectance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"blue\":{\"type\":\"image/jp2\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"cirrus\":{\"type\":\"image/jp2\",\"title\":\"Cirrus (band 10) - 60m\",\"eo:bands\":[{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"type\":\"image/jp2\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"type\":\"image/jp2\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"type\":\"image/jp2\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"type\":\"image/jp2\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/jp2\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red\":{\"type\":\"image/jp2\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/jp2\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/jp2\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/jp2\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/jp2\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-c1-l2a\",\"title\":\"Sentinel-2 Collection 1 Level-2A\",\"description\":\"Sentinel-2 Collection 1 Level-2A, data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"stac_version\":\"1.0.0\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"roles\":[\"visual\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"roles\":[\"overview\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"product_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"id\":\"sentinel-1-grd\",\"type\":\"Collection\",\"title\":\"Sentinel-1 Level-1C Ground Range Detected (GRD)\",\"description\":\"Sentinel-1 is a pair of Synthetic Aperture Radar (SAR) imaging satellites launched in 2014 and 2016 by the European Space Agency (ESA). Their 6 day revisit cycle and ability to observe through clouds makes this dataset perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. This dataset represents the global Sentinel-1 GRD archive, from beginning to the present, converted to cloud-optimized GeoTIFF format.\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/technical-guides/sentinel-1-sar/products-algorithms/level-1-algorithms/ground-range-detected\",\"title\":\"Sentinel-1 Ground Range Detected (GRD) Technical Guide\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"Copernicus Sentinel data terms\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/aggregations\"}],\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2014-10-10T00:28:21Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"ESA\",\"Copernicus\",\"Sentinel\",\"C-Band\",\"SAR\",\"GRD\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-1a\",\"sentinel-1b\"],\"constellation\":[\"sentinel-1\"],\"s1:resolution\":[\"full\",\"high\",\"medium\"],\"s1:orbit_source\":[\"DOWNLINK\",\"POEORB\",\"PREORB\",\"RESORB\"],\"sar:looks_range\":[5,6,3,2],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"sar:product_type\":[\"GRD\"],\"sar:looks_azimuth\":[1,6,2],\"sar:polarizations\":[[\"VV\",\"VH\"],[\"HH\",\"HV\"],[\"VV\"],[\"VH\"],[\"HH\"],[\"HV\"]],\"sar:frequency_band\":[\"C\"],\"s1:processing_level\":[\"1\"],\"sar:instrument_mode\":[\"IW\",\"EW\",\"SM\"],\"sar:center_frequency\":[5.405],\"sar:resolution_range\":[20,23,50,93,9],\"s1:product_timeliness\":[\"NRT-10m\",\"NRT-1h\",\"NRT-3h\",\"Fast-24h\",\"Off-line\",\"Reprocessing\"],\"sar:resolution_azimuth\":[22,23,50,87,9],\"sar:pixel_spacing_range\":[10,25,40,3.5],\"sar:observation_direction\":[\"right\"],\"sar:pixel_spacing_azimuth\":[10,25,40,3.5],\"sar:looks_equivalent_number\":[4.4,29.7,2.7,10.7,3.7],\"sat:platform_international_designator\":[\"2014-016A\",\"2016-025A\",\"0000-000A\"],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[true]},\"item_assets\":{\"hh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HH Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"hv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HV Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"vh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VH Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"vv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VV Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail Image\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"SAFE Manifest File\"},\"schema-noise-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Noise Schema\"},\"schema-noise-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Noise Schema\"},\"schema-noise-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Noise Schema\"},\"schema-noise-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Noise Schema\"},\"schema-product-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Product Schema\"},\"schema-product-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Product Schema\"},\"schema-product-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Product Schema\"},\"schema-product-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Product Schema\"},\"schema-calibration-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Calibration Schema\"},\"schema-calibration-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Calibration Schema\"},\"schema-calibration-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Calibration Schema\"},\"schema-calibration-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Calibration Schema\"}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"]}],\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"}],\"context\":{\"page\":1,\"limit\":100,\"matched\":9,\"returned\":9}}" headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '8117' Content-Type: - application/json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:51:13 GMT Via: - 1.1 20ebec22e4be2753f048f31dfe94e426.cloudfront.net (CloudFront) X-Amz-Cf-Id: - BPvMdQ2yxqgw1CeSFp1jwoNSwe7b_Ah5oPsw3-Bp6ZVjGAX4Fs18Yw== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f1c1-34e96f88377d58201901cfce;Parent=587f9642259cc658;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"141dd-9fMv6YJnvxPn9adSQK466CnIbE0" x-amz-apigw-id: - N2q2VFoKPHcEuhw= x-amzn-Remapped-content-length: - '82397' x-amzn-RequestId: - 62c2811a-b72a-4d86-b9ea-e85062766e99 x-powered-by: - Express status: code: 200 message: OK version: 1 TestCollectionSearch.test_client_side_datetime.yaml000066400000000000000000005704411503646565400362710ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_collection_searchinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v1/collections?limit=10&datetime=2024-09-15T00%3A00%3A00%2B00%3A00%2F2024-09-16T00%3A00%3A00%2B00%3A00 response: body: string: "{\"collections\":[{\"type\":\"Collection\",\"id\":\"sentinel-2-pre-c1-l2a\",\"title\":\"Sentinel-2 Pre-Collection 1 Level-2A \",\"description\":\"Sentinel-2 Pre-Collection 1 Level-2A (baseline < 05.00), with data and metadata matching collection sentinel-2-c1-l2a\",\"stac_version\":\"1.0.0\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"roles\":[\"visual\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"roles\":[\"overview\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"product_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"id\":\"cop-dem-glo-30\",\"type\":\"Collection\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/aggregations\"}],\"title\":\"Copernicus DEM GLO-30\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"DSM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20123/121286/CSCDA_ESA_Mission-specific+Annex_31_Oct_22.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[30],\"platform\":[\"tandem-x\"],\"proj:epsg\":[4326],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[false]},\"description\":\"The Copernicus DEM is a Digital Surface Model (DSM) which represents the surface of the Earth including buildings, infrastructure and vegetation. GLO-30 Public provides limited worldwide coverage at 30 meters because a small subset of tiles covering specific countries are not yet released to the public by the Copernicus Programme.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"raster:bands\":[{\"sampling\":\"point\",\"data_type\":\"float32\",\"spatial_resolution\":30,\"unit\":\"meter\"}]}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"]},{\"id\":\"naip\",\"type\":\"Collection\",\"description\":\"The [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/) (NAIP) provides U.S.-wide, high-resolution aerial imagery, with four spectral bands (R, G, B, IR). NAIP is administered by the [Aerial Field Photography Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/) (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA). \ Data are captured at least once every three years for each state. This dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\n\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip\"},{\"rel\":\"license\",\"href\":\"https://www.fsa.usda.gov/help/policies-and-links/\",\"title\":\"Public Domain\",\"type\":\"text/html\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/F7QN651G\",\"title\":\"NAIP Overview\",\"type\":\"text/html\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.14358/PERS.83.10.737\",\"title\":\"Publication\",\"type\":\"text/html\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/aggregations\"}],\"title\":\"NAIP: National Agriculture Imagery Program\",\"extent\":{\"spatial\":{\"bbox\":[[-160,17,-67,50]]},\"temporal\":{\"interval\":[[\"2010-01-01T00:00:00Z\",\"2022-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"NAIP\",\"Aerial\",\"Imagery\",\"USDA\",\"AFPO\",\"Agriculture\",\"United States\"],\"providers\":[{\"name\":\"USDA Farm Service Agency\",\"url\":\"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/\",\"roles\":[\"producer\",\"licensor\"]},{\"name\":\"Esri\",\"url\":\"https://www.esri.com\",\"roles\":[\"processor\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/naip\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[0.6,1],\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\",\"description\":\"visible red\"},{\"name\":\"Green\",\"common_name\":\"green\",\"description\":\"visible green\"},{\"name\":\"Blue\",\"common_name\":\"blue\",\"description\":\"visible blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"item_assets\":{\"image\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"name\":\"Blue\",\"common_name\":\"blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"metadata\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"FGDC Metdata\"}},\"sci:doi\":\"10.5066/F7QN651G\",\"sci:publications\":[{\"doi\":\"10.14358/PERS.83.10.737\",\"citation\":\"Maxwell, A. E., Warner, T. A., Vanderbilt, B. C., & Ramezan, C. A. (2017). Land cover classification and feature extraction from National Agriculture Imagery Program (NAIP) orthoimagery: A Review. Photogrammetric Engineering & Remote Sensing, 83(11), 737-747. https://doi.org/10.14358/pers.83.10.737\"}],\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"]},{\"id\":\"cop-dem-glo-90\",\"type\":\"Collection\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20123/121286/CSCDA_ESA_Mission-specific+Annex_31_Oct_22.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/aggregations\"}],\"title\":\"Copernicus DEM GLO-90\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[90],\"platform\":[\"tandem-x\"],\"proj:epsg\":[4326],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[false]},\"description\":\"The Copernicus DEM is a Digital Surface Model (DSM) which represents the surface of the Earth including buildings, infrastructure and vegetation. GLO-90 provides worldwide coverage at 90 meters.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"raster:bands\":[{\"sampling\":\"point\",\"data_type\":\"float32\",\"spatial_resolution\":30,\"unit\":\"meter\"}]}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"]},{\"type\":\"Collection\",\"id\":\"landsat-c2-l2\",\"stac_version\":\"1.0.0\",\"description\":\"Atmospherically corrected global Landsat Collection 2 Level-2 data from the Thematic Mapper (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor (TIRS) onboard Landsat 8 and 9.\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9IAXOVV\",\"title\":\"Landsat 4-5 TM Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9C7I13B\",\"title\":\"Landsat 7 ETM+ Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat 8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/core-science-systems/hdds/data-policy\",\"title\":\"Public Domain\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"reduced_resolution_browse\":{\"type\":\"image/jpeg\",\"title\":\"Reduced resolution browse image\",\"roles\":[\"overview\"]},\"mtl.json\":{\"type\":\"application/json\",\"title\":\"Product Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata File (json)\",\"roles\":[\"metadata\"]},\"mtl.txt\":{\"type\":\"text/plain\",\"title\":\"Product Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata File (txt)\",\"roles\":[\"metadata\"]},\"mtl.xml\":{\"type\":\"application/xml\",\"title\":\"Product Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata File (xml)\",\"roles\":[\"metadata\"]},\"ang\":{\"type\":\"text/plain\",\"title\":\"Angle Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients File\",\"roles\":[\"metadata\"]},\"qa_pixel\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality Assessment Band\",\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"]},\"qa_radsat\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"saturation\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\",\"description\":\"Collection 2 Level-2 Coastal/Aerosol Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band\",\"description\":\"Collection 2 Level-2 Blue Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band\",\"description\":\"Collection 2 Level-2 Green Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band\",\"description\":\"Collection 2 Level-2 Red Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band 0.8\",\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared Band 1.6\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 2.2 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"atmos_opacity\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Opacity Band\",\"description\":\"Collection 2 Level-2 Atmospheric Opacity Band Surface Reflectance Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.001}],\"roles\":[\"data\"]},\"cloud_qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Cloud Quality Assessment Band Surface Reflectance Product\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"]},\"qa_aerosol\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Assessment Band Surface Reflectance Product\",\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"data-mask\",\"water-mask\"]},\"lwir11\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band Surface Temperature\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.00341802,\"offset\":149}],\"roles\":[\"temperature\"]},\"lwir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band Surface Temperature\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.00341802,\"offset\":149}],\"roles\":[\"temperature\"]},\"atran\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance Band\",\"description\":\"Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\"]},\"cdist\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"description\":\"Collection 2 Level-2 Cloud Distance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"kilometer\",\"scale\":0.01}],\"roles\":[\"data\"]},\"drad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"urad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"trad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"description\":\"Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"emis\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"description\":\"Collection 2 Level-2 Emissivity Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\",\"emissivity\"]},\"emsd\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard Deviation Band\",\"description\":\"Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\",\"emissivity\"]},\"qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Quality Assessment Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.01}],\"roles\":[\"data\"]}},\"title\":\"Landsat Collection 2 Level-2\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1982-08-22T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Landsat\",\"USGS\",\"NASA\",\"Satellite\",\"Global\",\"Imagery\",\"Reflectance\",\"Temperature\"],\"providers\":[{\"name\":\"NASA\",\"roles\":[\"producer\",\"licensor\"],\"url\":\"https://landsat.gsfc.nasa.gov/\"},{\"name\":\"USGS\",\"roles\":[\"producer\",\"processor\",\"licensor\"],\"url\":\"https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"landsat-4\",\"landsat-5\",\"landsat-7\",\"landsat-8\",\"landsat-9\"],\"instruments\":[\"tm\",\"etm+\",\"oli\",\"tirs\"],\"gsd\":[30,60,100,120],\"sci:doi\":[\"10.5066/P9IAXOVV\",\"10.5066/P9C7I13B\",\"10.5066/P9OGBGM6\"],\"eo:bands\":[{\"name\":\"TM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Thematic Mapper)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.07},{\"name\":\"TM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Thematic Mapper)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"TM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Thematic Mapper)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"TM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Thematic Mapper)\",\"center_wavelength\":0.83,\"full_width_half_max\":0.14},{\"name\":\"TM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"TM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Thematic Mapper)\",\"center_wavelength\":11.45,\"full_width_half_max\":2.1},{\"name\":\"TM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":2.22,\"full_width_half_max\":0.27},{\"name\":\"ETM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.07},{\"name\":\"ETM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"ETM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"ETM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.84,\"full_width_half_max\":0.13},{\"name\":\"ETM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"ETM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":11.34,\"full_width_half_max\":2.05},{\"name\":\"ETM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.28},{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol (Operational Land Imager)\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02},{\"name\":\"OLI_B2\",\"common_name\":\"blue\",\"description\":\"Visible blue (Operational Land Imager)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06},{\"name\":\"OLI_B3\",\"common_name\":\"green\",\"description\":\"Visible green (Operational Land Imager)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06},{\"name\":\"OLI_B4\",\"common_name\":\"red\",\"description\":\"Visible red (Operational Land Imager)\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04},{\"name\":\"OLI_B5\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Operational Land Imager)\",\"center_wavelength\":0.87,\"full_width_half_max\":0.03},{\"name\":\"OLI_B6\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.09},{\"name\":\"OLI_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.19},{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave infrared (Thermal Infrared Sensor)\",\"center_wavelength\":10.9,\"full_width_half_max\":0.59}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-l2a\",\"stac_version\":\"1.0.0\",\"title\":\"Sentinel-2 Level-2A\",\"description\":\"Global Sentinel-2 data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water vapour (WVP)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"aot-jp2\":{\"type\":\"image/jp2\",\"title\":\"Aerosol optical thickness (AOT)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"blue-jp2\":{\"type\":\"image/jp2\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal-jp2\":{\"type\":\"image/jp2\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"green-jp2\":{\"type\":\"image/jp2\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"scl-jp2\":{\"type\":\"image/jp2\",\"title\":\"Scene classification map (SCL)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"reflectance\"]},\"swir16-jp2\":{\"type\":\"image/jp2\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22-jp2\":{\"type\":\"image/jp2\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"visual-jp2\":{\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]},\"wvp-jp2\":{\"type\":\"image/jp2\",\"title\":\"Water vapour (WVP)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-l1c\",\"stac_version\":\"1.0.0\",\"title\":\"Sentinel-2 Level-1C\",\"description\":\"Global Sentinel-2 data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-1C (L1C) Top-of-Atmosphere Reflectance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"blue\":{\"type\":\"image/jp2\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"cirrus\":{\"type\":\"image/jp2\",\"title\":\"Cirrus (band 10) - 60m\",\"eo:bands\":[{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"type\":\"image/jp2\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"type\":\"image/jp2\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"type\":\"image/jp2\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"type\":\"image/jp2\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/jp2\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red\":{\"type\":\"image/jp2\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/jp2\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/jp2\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/jp2\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/jp2\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-c1-l2a\",\"title\":\"Sentinel-2 Collection 1 Level-2A\",\"description\":\"Sentinel-2 Collection 1 Level-2A, data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"stac_version\":\"1.0.0\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"roles\":[\"visual\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"roles\":[\"overview\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"product_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"id\":\"sentinel-1-grd\",\"type\":\"Collection\",\"title\":\"Sentinel-1 Level-1C Ground Range Detected (GRD)\",\"description\":\"Sentinel-1 is a pair of Synthetic Aperture Radar (SAR) imaging satellites launched in 2014 and 2016 by the European Space Agency (ESA). Their 6 day revisit cycle and ability to observe through clouds makes this dataset perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. This dataset represents the global Sentinel-1 GRD archive, from beginning to the present, converted to cloud-optimized GeoTIFF format.\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/technical-guides/sentinel-1-sar/products-algorithms/level-1-algorithms/ground-range-detected\",\"title\":\"Sentinel-1 Ground Range Detected (GRD) Technical Guide\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"Copernicus Sentinel data terms\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/aggregations\"}],\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2014-10-10T00:28:21Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"ESA\",\"Copernicus\",\"Sentinel\",\"C-Band\",\"SAR\",\"GRD\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-1a\",\"sentinel-1b\"],\"constellation\":[\"sentinel-1\"],\"s1:resolution\":[\"full\",\"high\",\"medium\"],\"s1:orbit_source\":[\"DOWNLINK\",\"POEORB\",\"PREORB\",\"RESORB\"],\"sar:looks_range\":[5,6,3,2],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"sar:product_type\":[\"GRD\"],\"sar:looks_azimuth\":[1,6,2],\"sar:polarizations\":[[\"VV\",\"VH\"],[\"HH\",\"HV\"],[\"VV\"],[\"VH\"],[\"HH\"],[\"HV\"]],\"sar:frequency_band\":[\"C\"],\"s1:processing_level\":[\"1\"],\"sar:instrument_mode\":[\"IW\",\"EW\",\"SM\"],\"sar:center_frequency\":[5.405],\"sar:resolution_range\":[20,23,50,93,9],\"s1:product_timeliness\":[\"NRT-10m\",\"NRT-1h\",\"NRT-3h\",\"Fast-24h\",\"Off-line\",\"Reprocessing\"],\"sar:resolution_azimuth\":[22,23,50,87,9],\"sar:pixel_spacing_range\":[10,25,40,3.5],\"sar:observation_direction\":[\"right\"],\"sar:pixel_spacing_azimuth\":[10,25,40,3.5],\"sar:looks_equivalent_number\":[4.4,29.7,2.7,10.7,3.7],\"sat:platform_international_designator\":[\"2014-016A\",\"2016-025A\",\"0000-000A\"],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[true]},\"item_assets\":{\"hh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HH Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"hv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HV Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"vh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VH Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"vv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VV Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail Image\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"SAFE Manifest File\"},\"schema-noise-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Noise Schema\"},\"schema-noise-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Noise Schema\"},\"schema-noise-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Noise Schema\"},\"schema-noise-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Noise Schema\"},\"schema-product-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Product Schema\"},\"schema-product-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Product Schema\"},\"schema-product-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Product Schema\"},\"schema-product-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Product Schema\"},\"schema-calibration-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Calibration Schema\"},\"schema-calibration-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Calibration Schema\"},\"schema-calibration-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Calibration Schema\"},\"schema-calibration-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Calibration Schema\"}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"]}],\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"}],\"context\":{\"page\":1,\"limit\":100,\"matched\":9,\"returned\":9}}" headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '8117' Content-Type: - application/json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:51:13 GMT Via: - 1.1 f5cdd38f09a779678a15f788f0f3cbe2.cloudfront.net (CloudFront) X-Amz-Cf-Id: - YRJ3dJGygqQkY5qmmwUXGr4EI9KWAfp_a1e0v73p9wbJ1ixXK6RweQ== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f1c1-13a0cdc950474f424055d1a4;Parent=7dad06078f95a283;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"141dd-9fMv6YJnvxPn9adSQK466CnIbE0" x-amz-apigw-id: - N2q2WH0fPHcEf-A= x-amzn-Remapped-content-length: - '82397' x-amzn-RequestId: - ca689c6f-e90d-4591-bd43-97351eff2409 x-powered-by: - Express status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v1/collections?limit=10&datetime=2024-09-15T00%3A00%3A00%2B00%3A00%2F2024-09-16T00%3A00%3A00%2B00%3A00 response: body: string: "{\"collections\":[{\"type\":\"Collection\",\"id\":\"sentinel-2-pre-c1-l2a\",\"title\":\"Sentinel-2 Pre-Collection 1 Level-2A \",\"description\":\"Sentinel-2 Pre-Collection 1 Level-2A (baseline < 05.00), with data and metadata matching collection sentinel-2-c1-l2a\",\"stac_version\":\"1.0.0\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"roles\":[\"visual\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"roles\":[\"overview\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"product_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"id\":\"cop-dem-glo-30\",\"type\":\"Collection\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/aggregations\"}],\"title\":\"Copernicus DEM GLO-30\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"DSM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20123/121286/CSCDA_ESA_Mission-specific+Annex_31_Oct_22.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[30],\"platform\":[\"tandem-x\"],\"proj:epsg\":[4326],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[false]},\"description\":\"The Copernicus DEM is a Digital Surface Model (DSM) which represents the surface of the Earth including buildings, infrastructure and vegetation. GLO-30 Public provides limited worldwide coverage at 30 meters because a small subset of tiles covering specific countries are not yet released to the public by the Copernicus Programme.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"raster:bands\":[{\"sampling\":\"point\",\"data_type\":\"float32\",\"spatial_resolution\":30,\"unit\":\"meter\"}]}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"]},{\"id\":\"naip\",\"type\":\"Collection\",\"description\":\"The [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/) (NAIP) provides U.S.-wide, high-resolution aerial imagery, with four spectral bands (R, G, B, IR). NAIP is administered by the [Aerial Field Photography Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/) (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA). \ Data are captured at least once every three years for each state. This dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\n\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip\"},{\"rel\":\"license\",\"href\":\"https://www.fsa.usda.gov/help/policies-and-links/\",\"title\":\"Public Domain\",\"type\":\"text/html\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/F7QN651G\",\"title\":\"NAIP Overview\",\"type\":\"text/html\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.14358/PERS.83.10.737\",\"title\":\"Publication\",\"type\":\"text/html\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/aggregations\"}],\"title\":\"NAIP: National Agriculture Imagery Program\",\"extent\":{\"spatial\":{\"bbox\":[[-160,17,-67,50]]},\"temporal\":{\"interval\":[[\"2010-01-01T00:00:00Z\",\"2022-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"NAIP\",\"Aerial\",\"Imagery\",\"USDA\",\"AFPO\",\"Agriculture\",\"United States\"],\"providers\":[{\"name\":\"USDA Farm Service Agency\",\"url\":\"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/\",\"roles\":[\"producer\",\"licensor\"]},{\"name\":\"Esri\",\"url\":\"https://www.esri.com\",\"roles\":[\"processor\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/naip\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[0.6,1],\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\",\"description\":\"visible red\"},{\"name\":\"Green\",\"common_name\":\"green\",\"description\":\"visible green\"},{\"name\":\"Blue\",\"common_name\":\"blue\",\"description\":\"visible blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"item_assets\":{\"image\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"name\":\"Blue\",\"common_name\":\"blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"metadata\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"FGDC Metdata\"}},\"sci:doi\":\"10.5066/F7QN651G\",\"sci:publications\":[{\"doi\":\"10.14358/PERS.83.10.737\",\"citation\":\"Maxwell, A. E., Warner, T. A., Vanderbilt, B. C., & Ramezan, C. A. (2017). Land cover classification and feature extraction from National Agriculture Imagery Program (NAIP) orthoimagery: A Review. Photogrammetric Engineering & Remote Sensing, 83(11), 737-747. https://doi.org/10.14358/pers.83.10.737\"}],\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"]},{\"id\":\"cop-dem-glo-90\",\"type\":\"Collection\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20123/121286/CSCDA_ESA_Mission-specific+Annex_31_Oct_22.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/aggregations\"}],\"title\":\"Copernicus DEM GLO-90\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[90],\"platform\":[\"tandem-x\"],\"proj:epsg\":[4326],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[false]},\"description\":\"The Copernicus DEM is a Digital Surface Model (DSM) which represents the surface of the Earth including buildings, infrastructure and vegetation. GLO-90 provides worldwide coverage at 90 meters.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"raster:bands\":[{\"sampling\":\"point\",\"data_type\":\"float32\",\"spatial_resolution\":30,\"unit\":\"meter\"}]}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"]},{\"type\":\"Collection\",\"id\":\"landsat-c2-l2\",\"stac_version\":\"1.0.0\",\"description\":\"Atmospherically corrected global Landsat Collection 2 Level-2 data from the Thematic Mapper (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor (TIRS) onboard Landsat 8 and 9.\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9IAXOVV\",\"title\":\"Landsat 4-5 TM Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9C7I13B\",\"title\":\"Landsat 7 ETM+ Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat 8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/core-science-systems/hdds/data-policy\",\"title\":\"Public Domain\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"reduced_resolution_browse\":{\"type\":\"image/jpeg\",\"title\":\"Reduced resolution browse image\",\"roles\":[\"overview\"]},\"mtl.json\":{\"type\":\"application/json\",\"title\":\"Product Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata File (json)\",\"roles\":[\"metadata\"]},\"mtl.txt\":{\"type\":\"text/plain\",\"title\":\"Product Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata File (txt)\",\"roles\":[\"metadata\"]},\"mtl.xml\":{\"type\":\"application/xml\",\"title\":\"Product Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata File (xml)\",\"roles\":[\"metadata\"]},\"ang\":{\"type\":\"text/plain\",\"title\":\"Angle Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients File\",\"roles\":[\"metadata\"]},\"qa_pixel\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality Assessment Band\",\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"]},\"qa_radsat\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"saturation\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\",\"description\":\"Collection 2 Level-2 Coastal/Aerosol Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band\",\"description\":\"Collection 2 Level-2 Blue Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band\",\"description\":\"Collection 2 Level-2 Green Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band\",\"description\":\"Collection 2 Level-2 Red Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band 0.8\",\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared Band 1.6\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 2.2 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"atmos_opacity\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Opacity Band\",\"description\":\"Collection 2 Level-2 Atmospheric Opacity Band Surface Reflectance Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.001}],\"roles\":[\"data\"]},\"cloud_qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Cloud Quality Assessment Band Surface Reflectance Product\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"]},\"qa_aerosol\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Assessment Band Surface Reflectance Product\",\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"data-mask\",\"water-mask\"]},\"lwir11\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band Surface Temperature\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.00341802,\"offset\":149}],\"roles\":[\"temperature\"]},\"lwir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band Surface Temperature\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.00341802,\"offset\":149}],\"roles\":[\"temperature\"]},\"atran\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance Band\",\"description\":\"Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\"]},\"cdist\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"description\":\"Collection 2 Level-2 Cloud Distance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"kilometer\",\"scale\":0.01}],\"roles\":[\"data\"]},\"drad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"urad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"trad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"description\":\"Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"emis\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"description\":\"Collection 2 Level-2 Emissivity Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\",\"emissivity\"]},\"emsd\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard Deviation Band\",\"description\":\"Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\",\"emissivity\"]},\"qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Quality Assessment Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.01}],\"roles\":[\"data\"]}},\"title\":\"Landsat Collection 2 Level-2\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1982-08-22T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Landsat\",\"USGS\",\"NASA\",\"Satellite\",\"Global\",\"Imagery\",\"Reflectance\",\"Temperature\"],\"providers\":[{\"name\":\"NASA\",\"roles\":[\"producer\",\"licensor\"],\"url\":\"https://landsat.gsfc.nasa.gov/\"},{\"name\":\"USGS\",\"roles\":[\"producer\",\"processor\",\"licensor\"],\"url\":\"https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"landsat-4\",\"landsat-5\",\"landsat-7\",\"landsat-8\",\"landsat-9\"],\"instruments\":[\"tm\",\"etm+\",\"oli\",\"tirs\"],\"gsd\":[30,60,100,120],\"sci:doi\":[\"10.5066/P9IAXOVV\",\"10.5066/P9C7I13B\",\"10.5066/P9OGBGM6\"],\"eo:bands\":[{\"name\":\"TM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Thematic Mapper)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.07},{\"name\":\"TM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Thematic Mapper)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"TM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Thematic Mapper)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"TM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Thematic Mapper)\",\"center_wavelength\":0.83,\"full_width_half_max\":0.14},{\"name\":\"TM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"TM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Thematic Mapper)\",\"center_wavelength\":11.45,\"full_width_half_max\":2.1},{\"name\":\"TM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":2.22,\"full_width_half_max\":0.27},{\"name\":\"ETM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.07},{\"name\":\"ETM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"ETM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"ETM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.84,\"full_width_half_max\":0.13},{\"name\":\"ETM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"ETM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":11.34,\"full_width_half_max\":2.05},{\"name\":\"ETM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.28},{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol (Operational Land Imager)\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02},{\"name\":\"OLI_B2\",\"common_name\":\"blue\",\"description\":\"Visible blue (Operational Land Imager)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06},{\"name\":\"OLI_B3\",\"common_name\":\"green\",\"description\":\"Visible green (Operational Land Imager)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06},{\"name\":\"OLI_B4\",\"common_name\":\"red\",\"description\":\"Visible red (Operational Land Imager)\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04},{\"name\":\"OLI_B5\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Operational Land Imager)\",\"center_wavelength\":0.87,\"full_width_half_max\":0.03},{\"name\":\"OLI_B6\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.09},{\"name\":\"OLI_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.19},{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave infrared (Thermal Infrared Sensor)\",\"center_wavelength\":10.9,\"full_width_half_max\":0.59}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-l2a\",\"stac_version\":\"1.0.0\",\"title\":\"Sentinel-2 Level-2A\",\"description\":\"Global Sentinel-2 data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water vapour (WVP)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"aot-jp2\":{\"type\":\"image/jp2\",\"title\":\"Aerosol optical thickness (AOT)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"blue-jp2\":{\"type\":\"image/jp2\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal-jp2\":{\"type\":\"image/jp2\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"green-jp2\":{\"type\":\"image/jp2\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"scl-jp2\":{\"type\":\"image/jp2\",\"title\":\"Scene classification map (SCL)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"reflectance\"]},\"swir16-jp2\":{\"type\":\"image/jp2\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22-jp2\":{\"type\":\"image/jp2\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"visual-jp2\":{\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]},\"wvp-jp2\":{\"type\":\"image/jp2\",\"title\":\"Water vapour (WVP)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-l1c\",\"stac_version\":\"1.0.0\",\"title\":\"Sentinel-2 Level-1C\",\"description\":\"Global Sentinel-2 data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-1C (L1C) Top-of-Atmosphere Reflectance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"blue\":{\"type\":\"image/jp2\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"cirrus\":{\"type\":\"image/jp2\",\"title\":\"Cirrus (band 10) - 60m\",\"eo:bands\":[{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"type\":\"image/jp2\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"type\":\"image/jp2\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"type\":\"image/jp2\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"type\":\"image/jp2\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/jp2\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red\":{\"type\":\"image/jp2\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/jp2\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/jp2\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/jp2\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/jp2\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-c1-l2a\",\"title\":\"Sentinel-2 Collection 1 Level-2A\",\"description\":\"Sentinel-2 Collection 1 Level-2A, data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"stac_version\":\"1.0.0\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"roles\":[\"visual\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"roles\":[\"overview\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"product_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"id\":\"sentinel-1-grd\",\"type\":\"Collection\",\"title\":\"Sentinel-1 Level-1C Ground Range Detected (GRD)\",\"description\":\"Sentinel-1 is a pair of Synthetic Aperture Radar (SAR) imaging satellites launched in 2014 and 2016 by the European Space Agency (ESA). Their 6 day revisit cycle and ability to observe through clouds makes this dataset perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. This dataset represents the global Sentinel-1 GRD archive, from beginning to the present, converted to cloud-optimized GeoTIFF format.\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/technical-guides/sentinel-1-sar/products-algorithms/level-1-algorithms/ground-range-detected\",\"title\":\"Sentinel-1 Ground Range Detected (GRD) Technical Guide\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"Copernicus Sentinel data terms\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/aggregations\"}],\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2014-10-10T00:28:21Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"ESA\",\"Copernicus\",\"Sentinel\",\"C-Band\",\"SAR\",\"GRD\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-1a\",\"sentinel-1b\"],\"constellation\":[\"sentinel-1\"],\"s1:resolution\":[\"full\",\"high\",\"medium\"],\"s1:orbit_source\":[\"DOWNLINK\",\"POEORB\",\"PREORB\",\"RESORB\"],\"sar:looks_range\":[5,6,3,2],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"sar:product_type\":[\"GRD\"],\"sar:looks_azimuth\":[1,6,2],\"sar:polarizations\":[[\"VV\",\"VH\"],[\"HH\",\"HV\"],[\"VV\"],[\"VH\"],[\"HH\"],[\"HV\"]],\"sar:frequency_band\":[\"C\"],\"s1:processing_level\":[\"1\"],\"sar:instrument_mode\":[\"IW\",\"EW\",\"SM\"],\"sar:center_frequency\":[5.405],\"sar:resolution_range\":[20,23,50,93,9],\"s1:product_timeliness\":[\"NRT-10m\",\"NRT-1h\",\"NRT-3h\",\"Fast-24h\",\"Off-line\",\"Reprocessing\"],\"sar:resolution_azimuth\":[22,23,50,87,9],\"sar:pixel_spacing_range\":[10,25,40,3.5],\"sar:observation_direction\":[\"right\"],\"sar:pixel_spacing_azimuth\":[10,25,40,3.5],\"sar:looks_equivalent_number\":[4.4,29.7,2.7,10.7,3.7],\"sat:platform_international_designator\":[\"2014-016A\",\"2016-025A\",\"0000-000A\"],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[true]},\"item_assets\":{\"hh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HH Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"hv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HV Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"vh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VH Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"vv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VV Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail Image\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"SAFE Manifest File\"},\"schema-noise-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Noise Schema\"},\"schema-noise-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Noise Schema\"},\"schema-noise-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Noise Schema\"},\"schema-noise-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Noise Schema\"},\"schema-product-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Product Schema\"},\"schema-product-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Product Schema\"},\"schema-product-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Product Schema\"},\"schema-product-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Product Schema\"},\"schema-calibration-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Calibration Schema\"},\"schema-calibration-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Calibration Schema\"},\"schema-calibration-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Calibration Schema\"},\"schema-calibration-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Calibration Schema\"}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"]}],\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"}],\"context\":{\"page\":1,\"limit\":100,\"matched\":9,\"returned\":9}}" headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '8117' Content-Type: - application/json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:51:14 GMT Via: - 1.1 f923e65cfb5d73f11ea9a89d42fad5fc.cloudfront.net (CloudFront) X-Amz-Cf-Id: - MGyasOPrUO10rMs3hobEBuQofxWyvZgu_CEWsFSjZVBXk9Fr4KSVog== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f1c1-520979bf7dcdef602154fcaf;Parent=2af77a44203a0a17;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"141dd-9fMv6YJnvxPn9adSQK466CnIbE0" x-amz-apigw-id: - N2q2XFvaPHcETCQ= x-amzn-Remapped-content-length: - '82397' x-amzn-RequestId: - 3f51fcb4-ca4c-4d01-ae2b-d0cff0a1bca6 x-powered-by: - Express status: code: 200 message: OK version: 1 TestCollectionSearch.test_client_side_q.yaml000066400000000000000000005702311503646565400347320ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_collection_searchinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v1/collections?limit=10&q=sentinel response: body: string: "{\"collections\":[{\"type\":\"Collection\",\"id\":\"sentinel-2-pre-c1-l2a\",\"title\":\"Sentinel-2 Pre-Collection 1 Level-2A \",\"description\":\"Sentinel-2 Pre-Collection 1 Level-2A (baseline < 05.00), with data and metadata matching collection sentinel-2-c1-l2a\",\"stac_version\":\"1.0.0\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"roles\":[\"visual\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"roles\":[\"overview\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"product_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"id\":\"cop-dem-glo-30\",\"type\":\"Collection\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/aggregations\"}],\"title\":\"Copernicus DEM GLO-30\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"DSM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20123/121286/CSCDA_ESA_Mission-specific+Annex_31_Oct_22.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[30],\"platform\":[\"tandem-x\"],\"proj:epsg\":[4326],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[false]},\"description\":\"The Copernicus DEM is a Digital Surface Model (DSM) which represents the surface of the Earth including buildings, infrastructure and vegetation. GLO-30 Public provides limited worldwide coverage at 30 meters because a small subset of tiles covering specific countries are not yet released to the public by the Copernicus Programme.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"raster:bands\":[{\"sampling\":\"point\",\"data_type\":\"float32\",\"spatial_resolution\":30,\"unit\":\"meter\"}]}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"]},{\"id\":\"naip\",\"type\":\"Collection\",\"description\":\"The [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/) (NAIP) provides U.S.-wide, high-resolution aerial imagery, with four spectral bands (R, G, B, IR). NAIP is administered by the [Aerial Field Photography Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/) (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA). \ Data are captured at least once every three years for each state. This dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\n\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip\"},{\"rel\":\"license\",\"href\":\"https://www.fsa.usda.gov/help/policies-and-links/\",\"title\":\"Public Domain\",\"type\":\"text/html\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/F7QN651G\",\"title\":\"NAIP Overview\",\"type\":\"text/html\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.14358/PERS.83.10.737\",\"title\":\"Publication\",\"type\":\"text/html\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/aggregations\"}],\"title\":\"NAIP: National Agriculture Imagery Program\",\"extent\":{\"spatial\":{\"bbox\":[[-160,17,-67,50]]},\"temporal\":{\"interval\":[[\"2010-01-01T00:00:00Z\",\"2022-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"NAIP\",\"Aerial\",\"Imagery\",\"USDA\",\"AFPO\",\"Agriculture\",\"United States\"],\"providers\":[{\"name\":\"USDA Farm Service Agency\",\"url\":\"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/\",\"roles\":[\"producer\",\"licensor\"]},{\"name\":\"Esri\",\"url\":\"https://www.esri.com\",\"roles\":[\"processor\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/naip\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[0.6,1],\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\",\"description\":\"visible red\"},{\"name\":\"Green\",\"common_name\":\"green\",\"description\":\"visible green\"},{\"name\":\"Blue\",\"common_name\":\"blue\",\"description\":\"visible blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"item_assets\":{\"image\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"name\":\"Blue\",\"common_name\":\"blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"metadata\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"FGDC Metdata\"}},\"sci:doi\":\"10.5066/F7QN651G\",\"sci:publications\":[{\"doi\":\"10.14358/PERS.83.10.737\",\"citation\":\"Maxwell, A. E., Warner, T. A., Vanderbilt, B. C., & Ramezan, C. A. (2017). Land cover classification and feature extraction from National Agriculture Imagery Program (NAIP) orthoimagery: A Review. Photogrammetric Engineering & Remote Sensing, 83(11), 737-747. https://doi.org/10.14358/pers.83.10.737\"}],\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"]},{\"id\":\"cop-dem-glo-90\",\"type\":\"Collection\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20123/121286/CSCDA_ESA_Mission-specific+Annex_31_Oct_22.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/aggregations\"}],\"title\":\"Copernicus DEM GLO-90\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[90],\"platform\":[\"tandem-x\"],\"proj:epsg\":[4326],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[false]},\"description\":\"The Copernicus DEM is a Digital Surface Model (DSM) which represents the surface of the Earth including buildings, infrastructure and vegetation. GLO-90 provides worldwide coverage at 90 meters.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"raster:bands\":[{\"sampling\":\"point\",\"data_type\":\"float32\",\"spatial_resolution\":30,\"unit\":\"meter\"}]}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"]},{\"type\":\"Collection\",\"id\":\"landsat-c2-l2\",\"stac_version\":\"1.0.0\",\"description\":\"Atmospherically corrected global Landsat Collection 2 Level-2 data from the Thematic Mapper (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor (TIRS) onboard Landsat 8 and 9.\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9IAXOVV\",\"title\":\"Landsat 4-5 TM Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9C7I13B\",\"title\":\"Landsat 7 ETM+ Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat 8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/core-science-systems/hdds/data-policy\",\"title\":\"Public Domain\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"reduced_resolution_browse\":{\"type\":\"image/jpeg\",\"title\":\"Reduced resolution browse image\",\"roles\":[\"overview\"]},\"mtl.json\":{\"type\":\"application/json\",\"title\":\"Product Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata File (json)\",\"roles\":[\"metadata\"]},\"mtl.txt\":{\"type\":\"text/plain\",\"title\":\"Product Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata File (txt)\",\"roles\":[\"metadata\"]},\"mtl.xml\":{\"type\":\"application/xml\",\"title\":\"Product Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata File (xml)\",\"roles\":[\"metadata\"]},\"ang\":{\"type\":\"text/plain\",\"title\":\"Angle Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients File\",\"roles\":[\"metadata\"]},\"qa_pixel\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality Assessment Band\",\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"]},\"qa_radsat\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"saturation\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\",\"description\":\"Collection 2 Level-2 Coastal/Aerosol Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band\",\"description\":\"Collection 2 Level-2 Blue Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band\",\"description\":\"Collection 2 Level-2 Green Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band\",\"description\":\"Collection 2 Level-2 Red Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band 0.8\",\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared Band 1.6\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 2.2 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"atmos_opacity\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Opacity Band\",\"description\":\"Collection 2 Level-2 Atmospheric Opacity Band Surface Reflectance Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.001}],\"roles\":[\"data\"]},\"cloud_qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Cloud Quality Assessment Band Surface Reflectance Product\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"]},\"qa_aerosol\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Assessment Band Surface Reflectance Product\",\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"data-mask\",\"water-mask\"]},\"lwir11\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band Surface Temperature\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.00341802,\"offset\":149}],\"roles\":[\"temperature\"]},\"lwir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band Surface Temperature\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.00341802,\"offset\":149}],\"roles\":[\"temperature\"]},\"atran\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance Band\",\"description\":\"Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\"]},\"cdist\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"description\":\"Collection 2 Level-2 Cloud Distance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"kilometer\",\"scale\":0.01}],\"roles\":[\"data\"]},\"drad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"urad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"trad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"description\":\"Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"emis\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"description\":\"Collection 2 Level-2 Emissivity Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\",\"emissivity\"]},\"emsd\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard Deviation Band\",\"description\":\"Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\",\"emissivity\"]},\"qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Quality Assessment Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.01}],\"roles\":[\"data\"]}},\"title\":\"Landsat Collection 2 Level-2\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1982-08-22T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Landsat\",\"USGS\",\"NASA\",\"Satellite\",\"Global\",\"Imagery\",\"Reflectance\",\"Temperature\"],\"providers\":[{\"name\":\"NASA\",\"roles\":[\"producer\",\"licensor\"],\"url\":\"https://landsat.gsfc.nasa.gov/\"},{\"name\":\"USGS\",\"roles\":[\"producer\",\"processor\",\"licensor\"],\"url\":\"https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"landsat-4\",\"landsat-5\",\"landsat-7\",\"landsat-8\",\"landsat-9\"],\"instruments\":[\"tm\",\"etm+\",\"oli\",\"tirs\"],\"gsd\":[30,60,100,120],\"sci:doi\":[\"10.5066/P9IAXOVV\",\"10.5066/P9C7I13B\",\"10.5066/P9OGBGM6\"],\"eo:bands\":[{\"name\":\"TM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Thematic Mapper)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.07},{\"name\":\"TM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Thematic Mapper)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"TM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Thematic Mapper)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"TM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Thematic Mapper)\",\"center_wavelength\":0.83,\"full_width_half_max\":0.14},{\"name\":\"TM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"TM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Thematic Mapper)\",\"center_wavelength\":11.45,\"full_width_half_max\":2.1},{\"name\":\"TM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":2.22,\"full_width_half_max\":0.27},{\"name\":\"ETM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.07},{\"name\":\"ETM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"ETM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"ETM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.84,\"full_width_half_max\":0.13},{\"name\":\"ETM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"ETM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":11.34,\"full_width_half_max\":2.05},{\"name\":\"ETM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.28},{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol (Operational Land Imager)\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02},{\"name\":\"OLI_B2\",\"common_name\":\"blue\",\"description\":\"Visible blue (Operational Land Imager)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06},{\"name\":\"OLI_B3\",\"common_name\":\"green\",\"description\":\"Visible green (Operational Land Imager)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06},{\"name\":\"OLI_B4\",\"common_name\":\"red\",\"description\":\"Visible red (Operational Land Imager)\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04},{\"name\":\"OLI_B5\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Operational Land Imager)\",\"center_wavelength\":0.87,\"full_width_half_max\":0.03},{\"name\":\"OLI_B6\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.09},{\"name\":\"OLI_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.19},{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave infrared (Thermal Infrared Sensor)\",\"center_wavelength\":10.9,\"full_width_half_max\":0.59}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-l2a\",\"stac_version\":\"1.0.0\",\"title\":\"Sentinel-2 Level-2A\",\"description\":\"Global Sentinel-2 data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water vapour (WVP)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"aot-jp2\":{\"type\":\"image/jp2\",\"title\":\"Aerosol optical thickness (AOT)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"blue-jp2\":{\"type\":\"image/jp2\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal-jp2\":{\"type\":\"image/jp2\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"green-jp2\":{\"type\":\"image/jp2\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"scl-jp2\":{\"type\":\"image/jp2\",\"title\":\"Scene classification map (SCL)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"reflectance\"]},\"swir16-jp2\":{\"type\":\"image/jp2\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22-jp2\":{\"type\":\"image/jp2\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"visual-jp2\":{\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]},\"wvp-jp2\":{\"type\":\"image/jp2\",\"title\":\"Water vapour (WVP)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-l1c\",\"stac_version\":\"1.0.0\",\"title\":\"Sentinel-2 Level-1C\",\"description\":\"Global Sentinel-2 data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-1C (L1C) Top-of-Atmosphere Reflectance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"blue\":{\"type\":\"image/jp2\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"cirrus\":{\"type\":\"image/jp2\",\"title\":\"Cirrus (band 10) - 60m\",\"eo:bands\":[{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"type\":\"image/jp2\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"type\":\"image/jp2\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"type\":\"image/jp2\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"type\":\"image/jp2\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/jp2\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red\":{\"type\":\"image/jp2\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/jp2\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/jp2\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/jp2\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/jp2\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-c1-l2a\",\"title\":\"Sentinel-2 Collection 1 Level-2A\",\"description\":\"Sentinel-2 Collection 1 Level-2A, data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"stac_version\":\"1.0.0\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"roles\":[\"visual\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"roles\":[\"overview\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"product_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"id\":\"sentinel-1-grd\",\"type\":\"Collection\",\"title\":\"Sentinel-1 Level-1C Ground Range Detected (GRD)\",\"description\":\"Sentinel-1 is a pair of Synthetic Aperture Radar (SAR) imaging satellites launched in 2014 and 2016 by the European Space Agency (ESA). Their 6 day revisit cycle and ability to observe through clouds makes this dataset perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. This dataset represents the global Sentinel-1 GRD archive, from beginning to the present, converted to cloud-optimized GeoTIFF format.\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/technical-guides/sentinel-1-sar/products-algorithms/level-1-algorithms/ground-range-detected\",\"title\":\"Sentinel-1 Ground Range Detected (GRD) Technical Guide\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"Copernicus Sentinel data terms\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/aggregations\"}],\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2014-10-10T00:28:21Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"ESA\",\"Copernicus\",\"Sentinel\",\"C-Band\",\"SAR\",\"GRD\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-1a\",\"sentinel-1b\"],\"constellation\":[\"sentinel-1\"],\"s1:resolution\":[\"full\",\"high\",\"medium\"],\"s1:orbit_source\":[\"DOWNLINK\",\"POEORB\",\"PREORB\",\"RESORB\"],\"sar:looks_range\":[5,6,3,2],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"sar:product_type\":[\"GRD\"],\"sar:looks_azimuth\":[1,6,2],\"sar:polarizations\":[[\"VV\",\"VH\"],[\"HH\",\"HV\"],[\"VV\"],[\"VH\"],[\"HH\"],[\"HV\"]],\"sar:frequency_band\":[\"C\"],\"s1:processing_level\":[\"1\"],\"sar:instrument_mode\":[\"IW\",\"EW\",\"SM\"],\"sar:center_frequency\":[5.405],\"sar:resolution_range\":[20,23,50,93,9],\"s1:product_timeliness\":[\"NRT-10m\",\"NRT-1h\",\"NRT-3h\",\"Fast-24h\",\"Off-line\",\"Reprocessing\"],\"sar:resolution_azimuth\":[22,23,50,87,9],\"sar:pixel_spacing_range\":[10,25,40,3.5],\"sar:observation_direction\":[\"right\"],\"sar:pixel_spacing_azimuth\":[10,25,40,3.5],\"sar:looks_equivalent_number\":[4.4,29.7,2.7,10.7,3.7],\"sat:platform_international_designator\":[\"2014-016A\",\"2016-025A\",\"0000-000A\"],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[true]},\"item_assets\":{\"hh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HH Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"hv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HV Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"vh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VH Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"vv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VV Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail Image\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"SAFE Manifest File\"},\"schema-noise-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Noise Schema\"},\"schema-noise-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Noise Schema\"},\"schema-noise-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Noise Schema\"},\"schema-noise-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Noise Schema\"},\"schema-product-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Product Schema\"},\"schema-product-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Product Schema\"},\"schema-product-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Product Schema\"},\"schema-product-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Product Schema\"},\"schema-calibration-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Calibration Schema\"},\"schema-calibration-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Calibration Schema\"},\"schema-calibration-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Calibration Schema\"},\"schema-calibration-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Calibration Schema\"}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"]}],\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"}],\"context\":{\"page\":1,\"limit\":100,\"matched\":9,\"returned\":9}}" headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '8117' Content-Type: - application/json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:51:13 GMT Via: - 1.1 12e4fc9256386a4cd8f000b9caa3e012.cloudfront.net (CloudFront) X-Amz-Cf-Id: - Ark5CrnZ5T8jeRCUq12LVkcdODZiyOU6i-2JbvhqrGYlrjNEIGN4Dg== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f1c1-0993ad526047dc4836ca3100;Parent=11dbe962c1f3539b;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"141dd-9fMv6YJnvxPn9adSQK466CnIbE0" x-amz-apigw-id: - N2q2PFsyvHcEm6g= x-amzn-Remapped-content-length: - '82397' x-amzn-RequestId: - d7c980f7-ad5e-4755-9341-b751751d9088 x-powered-by: - Express status: code: 200 message: OK - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v1/collections?limit=10&q=sentinel response: body: string: "{\"collections\":[{\"type\":\"Collection\",\"id\":\"sentinel-2-pre-c1-l2a\",\"title\":\"Sentinel-2 Pre-Collection 1 Level-2A \",\"description\":\"Sentinel-2 Pre-Collection 1 Level-2A (baseline < 05.00), with data and metadata matching collection sentinel-2-c1-l2a\",\"stac_version\":\"1.0.0\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"roles\":[\"visual\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"roles\":[\"overview\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"product_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"id\":\"cop-dem-glo-30\",\"type\":\"Collection\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/aggregations\"}],\"title\":\"Copernicus DEM GLO-30\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"DSM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20123/121286/CSCDA_ESA_Mission-specific+Annex_31_Oct_22.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[30],\"platform\":[\"tandem-x\"],\"proj:epsg\":[4326],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[false]},\"description\":\"The Copernicus DEM is a Digital Surface Model (DSM) which represents the surface of the Earth including buildings, infrastructure and vegetation. GLO-30 Public provides limited worldwide coverage at 30 meters because a small subset of tiles covering specific countries are not yet released to the public by the Copernicus Programme.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"raster:bands\":[{\"sampling\":\"point\",\"data_type\":\"float32\",\"spatial_resolution\":30,\"unit\":\"meter\"}]}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"]},{\"id\":\"naip\",\"type\":\"Collection\",\"description\":\"The [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/) (NAIP) provides U.S.-wide, high-resolution aerial imagery, with four spectral bands (R, G, B, IR). NAIP is administered by the [Aerial Field Photography Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/) (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA). \ Data are captured at least once every three years for each state. This dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\n\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip\"},{\"rel\":\"license\",\"href\":\"https://www.fsa.usda.gov/help/policies-and-links/\",\"title\":\"Public Domain\",\"type\":\"text/html\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/F7QN651G\",\"title\":\"NAIP Overview\",\"type\":\"text/html\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.14358/PERS.83.10.737\",\"title\":\"Publication\",\"type\":\"text/html\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/aggregations\"}],\"title\":\"NAIP: National Agriculture Imagery Program\",\"extent\":{\"spatial\":{\"bbox\":[[-160,17,-67,50]]},\"temporal\":{\"interval\":[[\"2010-01-01T00:00:00Z\",\"2022-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"NAIP\",\"Aerial\",\"Imagery\",\"USDA\",\"AFPO\",\"Agriculture\",\"United States\"],\"providers\":[{\"name\":\"USDA Farm Service Agency\",\"url\":\"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/\",\"roles\":[\"producer\",\"licensor\"]},{\"name\":\"Esri\",\"url\":\"https://www.esri.com\",\"roles\":[\"processor\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/naip\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[0.6,1],\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\",\"description\":\"visible red\"},{\"name\":\"Green\",\"common_name\":\"green\",\"description\":\"visible green\"},{\"name\":\"Blue\",\"common_name\":\"blue\",\"description\":\"visible blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"item_assets\":{\"image\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"name\":\"Blue\",\"common_name\":\"blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"metadata\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"FGDC Metdata\"}},\"sci:doi\":\"10.5066/F7QN651G\",\"sci:publications\":[{\"doi\":\"10.14358/PERS.83.10.737\",\"citation\":\"Maxwell, A. E., Warner, T. A., Vanderbilt, B. C., & Ramezan, C. A. (2017). Land cover classification and feature extraction from National Agriculture Imagery Program (NAIP) orthoimagery: A Review. Photogrammetric Engineering & Remote Sensing, 83(11), 737-747. https://doi.org/10.14358/pers.83.10.737\"}],\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"]},{\"id\":\"cop-dem-glo-90\",\"type\":\"Collection\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20123/121286/CSCDA_ESA_Mission-specific+Annex_31_Oct_22.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/aggregations\"}],\"title\":\"Copernicus DEM GLO-90\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[90],\"platform\":[\"tandem-x\"],\"proj:epsg\":[4326],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[false]},\"description\":\"The Copernicus DEM is a Digital Surface Model (DSM) which represents the surface of the Earth including buildings, infrastructure and vegetation. GLO-90 provides worldwide coverage at 90 meters.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"raster:bands\":[{\"sampling\":\"point\",\"data_type\":\"float32\",\"spatial_resolution\":30,\"unit\":\"meter\"}]}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"]},{\"type\":\"Collection\",\"id\":\"landsat-c2-l2\",\"stac_version\":\"1.0.0\",\"description\":\"Atmospherically corrected global Landsat Collection 2 Level-2 data from the Thematic Mapper (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor (TIRS) onboard Landsat 8 and 9.\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9IAXOVV\",\"title\":\"Landsat 4-5 TM Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9C7I13B\",\"title\":\"Landsat 7 ETM+ Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat 8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/core-science-systems/hdds/data-policy\",\"title\":\"Public Domain\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"reduced_resolution_browse\":{\"type\":\"image/jpeg\",\"title\":\"Reduced resolution browse image\",\"roles\":[\"overview\"]},\"mtl.json\":{\"type\":\"application/json\",\"title\":\"Product Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata File (json)\",\"roles\":[\"metadata\"]},\"mtl.txt\":{\"type\":\"text/plain\",\"title\":\"Product Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata File (txt)\",\"roles\":[\"metadata\"]},\"mtl.xml\":{\"type\":\"application/xml\",\"title\":\"Product Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata File (xml)\",\"roles\":[\"metadata\"]},\"ang\":{\"type\":\"text/plain\",\"title\":\"Angle Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients File\",\"roles\":[\"metadata\"]},\"qa_pixel\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality Assessment Band\",\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"]},\"qa_radsat\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"saturation\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\",\"description\":\"Collection 2 Level-2 Coastal/Aerosol Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band\",\"description\":\"Collection 2 Level-2 Blue Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band\",\"description\":\"Collection 2 Level-2 Green Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band\",\"description\":\"Collection 2 Level-2 Red Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band 0.8\",\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared Band 1.6\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 2.2 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"atmos_opacity\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Opacity Band\",\"description\":\"Collection 2 Level-2 Atmospheric Opacity Band Surface Reflectance Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.001}],\"roles\":[\"data\"]},\"cloud_qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Cloud Quality Assessment Band Surface Reflectance Product\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"]},\"qa_aerosol\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Assessment Band Surface Reflectance Product\",\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"data-mask\",\"water-mask\"]},\"lwir11\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band Surface Temperature\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.00341802,\"offset\":149}],\"roles\":[\"temperature\"]},\"lwir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band Surface Temperature\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.00341802,\"offset\":149}],\"roles\":[\"temperature\"]},\"atran\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance Band\",\"description\":\"Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\"]},\"cdist\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"description\":\"Collection 2 Level-2 Cloud Distance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"kilometer\",\"scale\":0.01}],\"roles\":[\"data\"]},\"drad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"urad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"trad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"description\":\"Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"emis\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"description\":\"Collection 2 Level-2 Emissivity Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\",\"emissivity\"]},\"emsd\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard Deviation Band\",\"description\":\"Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\",\"emissivity\"]},\"qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Quality Assessment Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.01}],\"roles\":[\"data\"]}},\"title\":\"Landsat Collection 2 Level-2\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1982-08-22T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Landsat\",\"USGS\",\"NASA\",\"Satellite\",\"Global\",\"Imagery\",\"Reflectance\",\"Temperature\"],\"providers\":[{\"name\":\"NASA\",\"roles\":[\"producer\",\"licensor\"],\"url\":\"https://landsat.gsfc.nasa.gov/\"},{\"name\":\"USGS\",\"roles\":[\"producer\",\"processor\",\"licensor\"],\"url\":\"https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"landsat-4\",\"landsat-5\",\"landsat-7\",\"landsat-8\",\"landsat-9\"],\"instruments\":[\"tm\",\"etm+\",\"oli\",\"tirs\"],\"gsd\":[30,60,100,120],\"sci:doi\":[\"10.5066/P9IAXOVV\",\"10.5066/P9C7I13B\",\"10.5066/P9OGBGM6\"],\"eo:bands\":[{\"name\":\"TM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Thematic Mapper)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.07},{\"name\":\"TM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Thematic Mapper)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"TM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Thematic Mapper)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"TM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Thematic Mapper)\",\"center_wavelength\":0.83,\"full_width_half_max\":0.14},{\"name\":\"TM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"TM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Thematic Mapper)\",\"center_wavelength\":11.45,\"full_width_half_max\":2.1},{\"name\":\"TM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":2.22,\"full_width_half_max\":0.27},{\"name\":\"ETM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.07},{\"name\":\"ETM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"ETM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"ETM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.84,\"full_width_half_max\":0.13},{\"name\":\"ETM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"ETM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":11.34,\"full_width_half_max\":2.05},{\"name\":\"ETM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.28},{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol (Operational Land Imager)\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02},{\"name\":\"OLI_B2\",\"common_name\":\"blue\",\"description\":\"Visible blue (Operational Land Imager)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06},{\"name\":\"OLI_B3\",\"common_name\":\"green\",\"description\":\"Visible green (Operational Land Imager)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06},{\"name\":\"OLI_B4\",\"common_name\":\"red\",\"description\":\"Visible red (Operational Land Imager)\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04},{\"name\":\"OLI_B5\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Operational Land Imager)\",\"center_wavelength\":0.87,\"full_width_half_max\":0.03},{\"name\":\"OLI_B6\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.09},{\"name\":\"OLI_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.19},{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave infrared (Thermal Infrared Sensor)\",\"center_wavelength\":10.9,\"full_width_half_max\":0.59}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-l2a\",\"stac_version\":\"1.0.0\",\"title\":\"Sentinel-2 Level-2A\",\"description\":\"Global Sentinel-2 data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water vapour (WVP)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"aot-jp2\":{\"type\":\"image/jp2\",\"title\":\"Aerosol optical thickness (AOT)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"blue-jp2\":{\"type\":\"image/jp2\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal-jp2\":{\"type\":\"image/jp2\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"green-jp2\":{\"type\":\"image/jp2\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"scl-jp2\":{\"type\":\"image/jp2\",\"title\":\"Scene classification map (SCL)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"reflectance\"]},\"swir16-jp2\":{\"type\":\"image/jp2\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22-jp2\":{\"type\":\"image/jp2\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"visual-jp2\":{\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]},\"wvp-jp2\":{\"type\":\"image/jp2\",\"title\":\"Water vapour (WVP)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-l1c\",\"stac_version\":\"1.0.0\",\"title\":\"Sentinel-2 Level-1C\",\"description\":\"Global Sentinel-2 data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-1C (L1C) Top-of-Atmosphere Reflectance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"blue\":{\"type\":\"image/jp2\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"cirrus\":{\"type\":\"image/jp2\",\"title\":\"Cirrus (band 10) - 60m\",\"eo:bands\":[{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"type\":\"image/jp2\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"type\":\"image/jp2\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"type\":\"image/jp2\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"type\":\"image/jp2\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/jp2\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red\":{\"type\":\"image/jp2\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/jp2\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/jp2\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/jp2\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/jp2\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-c1-l2a\",\"title\":\"Sentinel-2 Collection 1 Level-2A\",\"description\":\"Sentinel-2 Collection 1 Level-2A, data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"stac_version\":\"1.0.0\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"roles\":[\"visual\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"roles\":[\"overview\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"product_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"id\":\"sentinel-1-grd\",\"type\":\"Collection\",\"title\":\"Sentinel-1 Level-1C Ground Range Detected (GRD)\",\"description\":\"Sentinel-1 is a pair of Synthetic Aperture Radar (SAR) imaging satellites launched in 2014 and 2016 by the European Space Agency (ESA). Their 6 day revisit cycle and ability to observe through clouds makes this dataset perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. This dataset represents the global Sentinel-1 GRD archive, from beginning to the present, converted to cloud-optimized GeoTIFF format.\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/technical-guides/sentinel-1-sar/products-algorithms/level-1-algorithms/ground-range-detected\",\"title\":\"Sentinel-1 Ground Range Detected (GRD) Technical Guide\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"Copernicus Sentinel data terms\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/aggregations\"}],\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2014-10-10T00:28:21Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"ESA\",\"Copernicus\",\"Sentinel\",\"C-Band\",\"SAR\",\"GRD\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-1a\",\"sentinel-1b\"],\"constellation\":[\"sentinel-1\"],\"s1:resolution\":[\"full\",\"high\",\"medium\"],\"s1:orbit_source\":[\"DOWNLINK\",\"POEORB\",\"PREORB\",\"RESORB\"],\"sar:looks_range\":[5,6,3,2],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"sar:product_type\":[\"GRD\"],\"sar:looks_azimuth\":[1,6,2],\"sar:polarizations\":[[\"VV\",\"VH\"],[\"HH\",\"HV\"],[\"VV\"],[\"VH\"],[\"HH\"],[\"HV\"]],\"sar:frequency_band\":[\"C\"],\"s1:processing_level\":[\"1\"],\"sar:instrument_mode\":[\"IW\",\"EW\",\"SM\"],\"sar:center_frequency\":[5.405],\"sar:resolution_range\":[20,23,50,93,9],\"s1:product_timeliness\":[\"NRT-10m\",\"NRT-1h\",\"NRT-3h\",\"Fast-24h\",\"Off-line\",\"Reprocessing\"],\"sar:resolution_azimuth\":[22,23,50,87,9],\"sar:pixel_spacing_range\":[10,25,40,3.5],\"sar:observation_direction\":[\"right\"],\"sar:pixel_spacing_azimuth\":[10,25,40,3.5],\"sar:looks_equivalent_number\":[4.4,29.7,2.7,10.7,3.7],\"sat:platform_international_designator\":[\"2014-016A\",\"2016-025A\",\"0000-000A\"],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[true]},\"item_assets\":{\"hh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HH Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"hv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HV Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"vh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VH Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"vv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VV Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail Image\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"SAFE Manifest File\"},\"schema-noise-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Noise Schema\"},\"schema-noise-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Noise Schema\"},\"schema-noise-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Noise Schema\"},\"schema-noise-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Noise Schema\"},\"schema-product-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Product Schema\"},\"schema-product-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Product Schema\"},\"schema-product-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Product Schema\"},\"schema-product-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Product Schema\"},\"schema-calibration-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Calibration Schema\"},\"schema-calibration-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Calibration Schema\"},\"schema-calibration-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Calibration Schema\"},\"schema-calibration-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Calibration Schema\"}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"]}],\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"}],\"context\":{\"page\":1,\"limit\":100,\"matched\":9,\"returned\":9}}" headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '8117' Content-Type: - application/json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:51:13 GMT Via: - 1.1 f5cdd38f09a779678a15f788f0f3cbe2.cloudfront.net (CloudFront) X-Amz-Cf-Id: - GI-2SdNC1s_e0ucYNk5GHerlD4zyiMz7hrCpDhEIVEdORo7W0muMqw== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f1c1-3fbc407d56ccd45618d8b107;Parent=23e3f82c0fb5ea52;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"141dd-9fMv6YJnvxPn9adSQK466CnIbE0" x-amz-apigw-id: - N2q2RHTCvHcEP2w= x-amzn-Remapped-content-length: - '82397' x-amzn-RequestId: - da8fbc7c-374d-4c45-8f3e-b0963421ba5d x-powered-by: - Express status: code: 200 message: OK version: 1 TestCollectionSearch.test_datetime_results.yaml000066400000000000000000021130111503646565400354740ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_collection_searchinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://emc.spacebel.be/collections?datetime=2024-01-01T00%3A00%3A01Z%2F2024-01-01T00%3A00%3A10Z response: body: string: "{\n \"collections\": [\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"2021-10-09T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"FedEO\",\n \"SCIHUB\",\n \"DIF10\",\n \ \"Sea Surface Topography\",\n \"EARTH SCIENCE > OCEANS > SEA SURFACE TOPOGRAPHY\",\n \"Radar Altimeters\",\n \"Radiometers\",\n \ \"Sentinel-6\",\n \"POSEIDON-4\",\n \"AMR-C\"\n ],\n \ \"created\": \"2024-01-02T00:00:00.00Z\",\n \"description\": \"Copernicus Sentinel-6 Michael Freilich is an Earth Observation satellite mission developed to provide enhanced continuity to the very stable time series of mean sea level measurements and ocean sea state that started in 1992, with the TOPEX/Poseidon mission, then continued by the Jason-1, Jason-2 and Jason-3 satellite missions.\",\n \ \"type\": \"Collection\",\n \"title\": \"Sentinel-6 Products\",\n \ \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=EOP:ESA:SCIHUB:S6\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series EOP:ESA:Sentinel-6\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S6/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for EOP:ESA:SCIHUB:S6\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://dataspace.copernicus.eu\",\n \"title\": \"Copernicus Data Space Ecosystem - Copernicus Data Space Ecosystem\"\n },\n {\n \ \"rel\": \"search\",\n \"href\": \"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S6\",\n \ \"title\": \"FedEO Clearinghouse - FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S6/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinel.esa.int/web/sentinel/missions/sentinel-6\",\n \ \"title\": \"ESA Sentinel-6 Online\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-6\",\n \ \"title\": \"More collections for Sentinel-6 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/700b6e99-a527-5819-b283-4656c8832ea0\",\n \ \"title\": \"More collections for AMR-C instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/5d1512a5-cb97-5e74-8778-35cd65c06936\",\n \ \"title\": \"More collections for POSEIDON-4 instrument\"\n }\n \ ],\n \"id\": \"EOP:ESA:Sentinel-6\",\n \"updated\": \"2020-11-21T00:00:00.00Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\n \"AMR-C\",\n \"POSEIDON-4\"\n \ ],\n \"platform\": [\"Sentinel-6\"]\n }\n },\n {\n \ \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n \ -90,\n 180,\n 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2017-10-13T00:00:00.000Z\",\n null\n \ ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"FedEO\",\n \"SCIHUB\",\n \"DIF10\",\n \"Air Quality\",\n \"EARTH SCIENCE > ATMOSPHERE > AIR QUALITY\",\n \"Sentinel-5P\",\n \ \"TROPOMI\"\n ],\n \"created\": \"2018-10-09T00:00:00.00Z\",\n \ \"description\": \"The Sentinel-5P data offer for the Pre-Operations Open Access Hub consists of Level-1B and Level-2 user products for the TROPOMI instrument.\",\n \"type\": \"Collection\",\n \"title\": \"Sentinel-5P Products\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=EOP:ESA:SCIHUB:S5P\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series EOP:ESA:Sentinel-5P\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S5P/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for EOP:ESA:SCIHUB:S5P\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://dataspace.copernicus.eu\",\n \"title\": \"Copernicus Data Space Ecosystem - Copernicus Data Space Ecosystem\"\n },\n {\n \ \"rel\": \"search\",\n \"href\": \"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S5P\",\n \ \"title\": \"FedEO Clearinghouse - FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S5P/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinel.esa.int/web/sentinel/missions/sentinel-5P\",\n \ \"title\": \"ESA Sentinel-5P Online\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-5p-tropomi\",\n \ \"title\": \"Sentinel-5P TROPOMI User Guide \"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-5P\",\n \ \"title\": \"More collections for Sentinel-5P platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/09f91afd-c0d2-52a9-9b50-b895a60917fa\",\n \ \"title\": \"More collections for TROPOMI instrument\"\n }\n \ ],\n \"id\": \"EOP:ESA:Sentinel-5P\",\n \"updated\": \"2017-04-30T00:00:00.00Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"TROPOMI\"],\n \"processing:lineage\": [\"The Sentinel-5 Precursor objectives are to provide operational space-borne observations in support to the operational monitoring of Air Quality, Climate, Ozone and Surface UV. It will provide measurements of Ozone, NO_2, SO_2, Formaldehyde, Aerosol, Carbonmonoxide, Methane, Clouds.\"],\n \"platform\": [\"Sentinel-5P\"]\n \ }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n ]]},\n \ \"temporal\": {\"interval\": [[\n \"2016-01-01T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"MAJA\",\n \"GeoTiff\",\n \"Forestry\",\n \ \"Forest Conservation/Protection\",\n \"Sentinel-2\",\n \"MSI\"\n \ ],\n \"created\": \"2023-09-05T00:00:00.00Z\",\n \"description\": \"False colour satellite data allows you to upgrade your forest surveys. It provides you with a broader perspective of biotic and abiotic disturbances in real-time. This enables you to make more informed decisions to safeguard the forests. Forestry professionals can utilise false colour imagery to optimise their forestry operations, such as planning and monitoring tree planting, conducting inventory assessments, and identifying areas for habitat restoration.\",\n \ \"type\": \"Collection\",\n \"title\": \"False Colour Composites\",\n \ \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=F-FCC\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n },\n \ \"quicklook\": {\n \"roles\": [\"overview\"],\n \"href\": \"https://eovoc.spacebel.be/images/fcc.png\",\n \"type\": \"image/png\",\n \ \"title\": \"graphic overview\"\n }\n },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series F-FCC\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for F-FCC\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/F-FCC/api\",\n \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"ordering\",\n \ \"href\": \"https://emc.spacebel.be/ordering?collection=F-FCC\",\n \ \"type\": \"text/html\",\n \"title\": \"Order F-FCC Product\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://eovoc.spacebel.be/images/FC_Brochure_final.pdf\",\n \"type\": \"application/pdf\",\n \"title\": \"F-FCC Brochure - F-FCC Product Description\"\n },\n {\n \"rel\": \"alternate\",\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/Spacebel SA\",\n \"title\": \"More collections for Spacebel SA\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-2\",\n \ \"title\": \"More collections for Sentinel-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/s2-msi\",\n \ \"title\": \"More collections for MSI instrument\"\n }\n \ ],\n \"id\": \"F-FCC\",\n \"updated\": \"2023-09-05T00:00:00.00Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"Spacebel SA\",\n \"url\": \"https://www.spacebel.com\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"MSI\"],\n \ \"platform\": [\"Sentinel-2\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2016-06-22T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"World\",\n \"Planet\",\n \"Land Surface\",\n \"Mapping and Cartography\",\n \"Natural Hazards and Disaster Risk\",\n \"EARTH SCIENCE > LAND SURFACE\",\n \"EARTH SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\",\n \"VIS (0.40 - 0.75 \xB5m)\",\n \"NIR (0.75 - 1.30 \xB5m)\",\n \"Sun-synchronous\",\n \ \"Very High Resolution - VHR (0 - 5m)\",\n \"475 km (reference)\",\n \ \"25 km\",\n \"Imaging Spectrometers/Radiometers\",\n \"PlanetScope\",\n \ \"PlanetScope Camera\"\n ],\n \"created\": \"2019-08-09T00:00:00.00Z\",\n \ \"description\": \"The PlanetScope Level 1B Basic Scene and Level 3B Ortho Scene full archive products are available as part of Planet imagery offer. The Unrectified Asset: PlanetScope Basic Analytic Radiance (TOAR) product is a Scaled Top of Atmosphere Radiance (at sensor) and sensor corrected product, without correction for any geometric distortions inherent in the imaging processes and is not mapped to a cartographic projection. The imagery data is accompanied by Rational Polynomial Coefficients (RPCs) to enable orthorectification by the user. This kind of product is designed for users with advanced image processing and geometric correction capabilities. Basic Scene Product Components and Format Product Components:\\t - Image File (GeoTIFF format) - Metadata File (XML format) - Rational Polynomial Coefficients (XML format) - Thumbnail File (GeoTIFF format) - Unusable Data Mask UDM File (GeoTIFF format) - Usable Data Mask UDM2 File (GeoTIFF format) Bands: 4-band multispectral image (blue, green, red, near-infrared) or 8-band (coastal-blue, blue, green I, green, yellow, red, Rededge, near-infrared) Ground Sampling Distance:\\t - Approximate, satellite altitude dependent - Dove-C: 3.0 m-4.1 m - Dove-R: 3.0 m-4.1 m - SuperDove: 3.7 m-4.2 m Accuracy: <10 m RMSE The Rectified assets: The PlanetScope Ortho Scene product is radiometrically-, sensor- and geometrically- corrected and is projected to a UTM/WGS84 cartographic map projection. The geometric correction uses fine Digital Elevation Models (DEMs) with a post spacing of between 30 and 90 metres. Ortho Scene Product Components and Format Product Components:\\t - Image File (GeoTIFF format) - Metadata File (XML format) - Thumbnail File (GeoTIFF format) - Unusable Data Mask UDM File (GeoTIFF format) - Usable Data Mask UDM2 File (GeoTIFF format) Bands: 3-band natural color (red, green, blue) or 4-band multispectral image (blue, green, red, near-infrared) or 8-band (costal-blue, blue, green I, green, yellow, red, RedEdge, near-infrared) Ground Sampling Distance:\\t - Approximate, satellite altitude dependent - Dove-C: 3.0 m-4.1 m - Dove-R: 3.0 m-4.1 m - SuperDove: 3.7 m-4.2 m Projection: UTM WGS84 Accuracy: <10 m RMSE PlanetScope Ortho Scene product is available in the following: PlanetScope Visual Ortho Scene product is orthorectified and color-corrected (using a colour curve) 3-band RGB Imagery. This correction attempts to optimise colours as seen by the human eye providing images as they would look if viewed from the perspective of the satellite PlanetScope Surface Reflectance product is orthorectified, 4-band BGRN or 8-band Coastal Blue, Blue, Green I, Green, Yellow, Red, RedEdge, NIR Imagery with geometric, radiometric and corrected for surface reflection. This data is optimal for value-added image processing such as land cover classifications. \ PlanetScope Analytic Ortho Scene Surface Reflectance product is orthorectified, 4-band BGRN or 8-band Coastal Blue, Blue, Green I, Green, Yellow, Red, RedEdge, NIR Imagery with geometric, radiometric and calibrated to top of atmosphere radiance. _$$Planet Explorer Catalogue$$ https://www.planet.com/explorer/ can be accessed (Planet registration requested) to discover and check the data readiness. It is worth to mention that the data distribution is based on Data Voucher, corresponding to maximum amount of square kilometers can be ordered and downloaded by the project in a maximum period of 15 moths (this duration cannot be extended) starting from the project proposal acceptance date. Each Date Voucher includes PlanetScope tile view streaming access for a total of 20,000 tiles per calendar month during the project period. All details about the data provision, data access conditions and quota assignment procedure are described in the _$$Terms of Applicability$$ https://earth.esa.int/eogateway/documents/20142/37627/Access-to-ESAs-Planet-Missions-Terms-of-Applicability.pdf available in Resources section.\",\n \"type\": \"Collection\",\n \"title\": \"PlanetScope Full Archive\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://www.planet.com/products/#satellite-imagery\",\n \ \"type\": \"text/html\",\n \"title\": \"Planet products - Catalogue\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Planet-combined-imagery-product-specs-2020.pdf?text=Combined-Imagery-Product-Spec.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Imagery Product Specifications - Product Specifications\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://developers.planet.com/docs/apps/explorer/\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Explorer User Guide - User Manual\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://www.planet.com/explorer/\",\n \"type\": \"text/html\",\n \"title\": \"Planet Explorer Catalogue - Catalogue\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Access-to-ESAs-Planet-Missions-Terms-of-Applicability.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Terms of Applicability - Access Guide\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/PlanetScope\",\n \ \"title\": \"More collections for PlanetScope platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/94314806-9c68-521a-87e2-8cd838eb9de0\",\n \ \"title\": \"More collections for PlanetScope Camera instrument\"\n \ }\n ],\n \"id\": \"PlanetScope.Full.Archive\",\n \"updated\": \"2023-06-13T13:23:41Z\",\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"PlanetScope Camera\"],\n \"platform\": [\"PlanetScope\"]\n }\n },\n {\n \ \"extent\": {\n \"spatial\": {\"bbox\": [[\n -10,\n \ 30,\n 50,\n 80\n ]]},\n \"temporal\": {\"interval\": [[\n \"2019-02-01T00:00:00.000Z\",\n null\n \ ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"Europe\",\n \"Zone of Exclusivity\",\n \"Agriculture\",\n \ \"Soil Moisture\",\n \"Energy and Natural Resources\",\n \"Terrestrial Hydrosphere\",\n \"EARTH SCIENCE > AGRICULTURE\",\n \"EARTH SCIENCE > AGRICULTURE > SOILS > SOIL MOISTURE/WATER CONTENT\",\n \"EARTH SCIENCE > HUMAN DIMENSIONS > ECONOMIC RESOURCES\",\n \"EARTH SCIENCE > TERRESTRIAL HYDROSPHERE\",\n \"L-Band (19.4 - 76.9 cm)\",\n \"Sun-synchronous\",\n \ \"High Resolution - HR (5 - 20 m)\",\n \"Medium Resolution - MR (20 - 500 m)\",\n \"620 km\",\n \"14-66 km (beam dependent) for stripmap 108-235 km (beam dependent) for topsar\",\n \"Imaging Radars\",\n \"SAOCOM-1A\",\n \"SAOCOM-1B\",\n \"SAOCOM-SAR\"\n \ ],\n \"created\": \"2021-10-27T00:00:00.00Z\",\n \"description\": \"This collection provides access to the SAOCOM products acquired in the ASI Zone of Exclusivity, that correspond mainly to the European territory plus the international waters in front of North Africa and the Middle East, archived and catalogued in the ASI/CONAE dissemination system.\",\n \"type\": \"Collection\",\n \"title\": \"SAOCOM data products\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \ \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://www.asi.it/en/earth-science/saocom/\",\n \ \"type\": \"text/html\",\n \"title\": \"ASI SAOCOM portal - Web site\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"http://saocom.asi.it:8081/\",\n \"type\": \"text/html\",\n \ \"title\": \"ASI SAOCOM Data Hub - Catalogue\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://www.asi.it/wp-content/uploads/2021/07/SAOCOM-membership-guide-1.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Membership guide - User Guide\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://catalogos.conae.gov.ar/catalogo/docs/SAOCOM/SAOCOM-1_SAR_Level-1_Product-Format_13Jan2020.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Level1 Products Format - Product Specification\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/SAOCOM-1A\",\n \ \"title\": \"More collections for SAOCOM-1A platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/SAOCOM-1B\",\n \ \"title\": \"More collections for SAOCOM-1B platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/a0042d58-dc4b-5cca-ab2a-d849b4db3e73\",\n \ \"title\": \"More collections for SAOCOM-SAR instrument\"\n }\n \ ],\n \"id\": \"SAOCOM.data.products\",\n \"updated\": \"2023-06-13T13:23:42Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"https://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"SAOCOM-SAR\"],\n \ \"platform\": [\n \"SAOCOM-1A\",\n \"SAOCOM-1B\"\n \ ]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"2020-07-09T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"Level 2C assisted wind fields assimilation processing\",\n \"Atmosphere\",\n \"Atmospheric Indicators\",\n \ \"Atmospheric Winds\",\n \"Climate\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\",\n \ \"EARTH SCIENCE > CLIMATE INDICATORS\",\n \"UV (0.01 - 0.4 \xB5m)\",\n \"Sun-synchronous\",\n \"Horizontal resolution at observation scale for Rayleigh/Mie: 87/10 km 250-2000 m vertical resolution\",\n \ \"ALD_U_N_2C\",\n \"320 km\",\n \"Lidar/Laser Sounders\",\n \ \"Aeolus\",\n \"ALADIN\"\n ],\n \"created\": \"2023-02-17T00:00:00.00Z\",\n \ \"description\": \"The Level 2C wind product of the Aeolus mission provides ECMWF analysis horizontal wind vectors at the geolocations of assimilated L2B HLOS wind components. The L2C can therefore be described as an Aeolus-assisted horizontal wind vector product. The L2C is a distinct product, however the L2C and L2B share a common Earth Explorer file template, with the L2C being a superset of the L2B. The L2C consists of extra datasets appended to the L2B product with information which are relevant to the data assimilation of the L2B winds.\",\n \"type\": \"Collection\",\n \"title\": \"Aeolus Level 2C assisted wind fields resulting from NWP Numerical Weather Prediction assimilation processing\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-Level2-Algorithm-Theoretical-Basis-Document.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Aeolus L2B Algorithm Theoretical Baseline Document - Level 2B processor algorithm description\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-L2B-2C-Input-Output-DD-ICD.pdf/2321b6a0-27d0-b628-771e-fcca4928bc32\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Aeolus L2B/2C Processor Input/Output Data Definitions Interface Control Document - Level 2B/2C data definition\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-Sensor-and-Product-Description.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Aeolus Sensor and Product Description - Aeolus Sensor and Product Description\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Aeolus\",\n \ \"title\": \"More collections for Aeolus platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/a032cde6-16e3-5940-988e-f6d79870d14c\",\n \ \"title\": \"More collections for ALADIN instrument\"\n }\n \ ],\n \"id\": \"L2C_Wind_products\",\n \"updated\": \"2023-06-13T13:23:39Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"ALADIN\"],\n \ \"platform\": [\"Aeolus\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -84,\n 180,\n \ 84\n ]]},\n \"temporal\": {\"interval\": [[\n \"2013-11-13T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"World\",\n \"Planet\",\n \"Land Surface\",\n \"Mapping and Cartography\",\n \"Natural Hazards and Disaster Risk\",\n \"EARTH SCIENCE > LAND SURFACE\",\n \"EARTH SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\",\n \"VIS (0.40 - 0.75 \xB5m)\",\n \"NIR (0.75 - 1.30 \xB5m)\",\n \"Sun-synchronous\",\n \ \"Very High Resolution - VHR (0 - 5m)\",\n \"475-575 km\",\n \ \"8 km at nadir for SkySat-1 to -2, 6.6 km at nadir for SkySat-3 to -13\",\n \"Imaging Spectrometers/Radiometers\",\n \"SkySat\",\n \ \"SkySat Camera\"\n ],\n \"created\": \"2019-08-09T00:00:00.00Z\",\n \ \"description\": \"The SkySat Level 2B Basic Scene, Level 3B Ortho Scene and Level 3B Consolidated full archive and new tasking products are available as part of Planet imagery offer. The SkySat Basic Scene product is uncalibrated and in a raw digital number format, not corrected for any geometric distortions inherent in the imaging process. Rational Polynomial Coefficients (RPCs) is provided to enable orthorectification by the user. Basic Scene Product Components and Format Processing levels\\t/\\t- Analytic (unorthorectified, radiometrically corrected, multispectral BGRN); - Analytic DN (unorthorectified, multispectral BGRN); - Panchromatic DN (unorthorectified, panchromatic)\\t// Product Components and Format\\t/\\t- Image File (GeoTIFF format); - Metadata File (JSON format); - Rational Polynomial Coefficients (Text File); - UDM File (GeoTIFF format)\\t// Image configuration\\t/\\t- 4-band Analytic DN Image (Blue, Green, Red, NIR); - 1-band Panchromatic DN Image (Pan)\\t// Ground Sampling Distance\\t/\\t3.7 m at nadir (average at reference altitude 475 km)\\t// Ground Sampling Distance (nadir)\\t/\\t- Panchromatic 0.86m and Multispectral 1.0m for SkySat-1&2; - Panchromatic 0.65m and Multispectral 0.8m for SkySat-3 to 13 (0.72 m and 1.0m for data acquired before 30/06/2020)\\t// Accuracy\\t/\\t<50 m RMSE\\t// \ The SkySat Ortho Scene is sensor- and geometrically-corrected (by using DEMs with a post spacing of between 30 and 90 meters) and is projected to a cartographic map projection; the accuracy of the product will vary from region to region based on available GCPs. Different products are available: \ - The SkySat Visual Ortho Scene product is orthorectified, pansharpened, and color-corrected (using a color curve) 3-band RGB Imagery - The SkySat Pansharpened Multispectral Scene product is orthorectified, pansharpened 4-band BGRN Imagery - The SkySat Analytic DN Ortho Scene product is orthorectified, multispectral BGRN, uncalibrated, digital number imagery product. The product has been processed to remove distortions caused by terrain; It eliminates the perspective effect on the ground (not on buildings), restoring the geometry of a vertical shot. Transformation to at-sensor radiance is not included - The SkySat Panchromatic DN Ortho Scene product is orthorectified, panchromatic, uncalibrated, digital number imagery product. It has a finer GSD than the Analytic Product. Transformation to at-sensor radiance is not included. - The SkySat Analytic Ortho Scene are calibrated multispectral imagery products with radiometric corrections applied to correct for any sensor artifacts and transformation to top-of-atmosphere radiance. - The SkySat Consolidated Product are Ortho Collect product created by composing ~60 SkySat Ortho Scenes (Visual, Pansharpened Multispectral, Analytic DN, Panchromatic DN) along an imaging strip into segments. Ortho Scene Product Components and Format \\t/\\tVisual Ortho\\t/\\tPansharpened Multispectral\\t/\\tAnalytic DN Ortho\\t/\\tPanchromatic DN Ortho\\t/\\tAnalytic Ortho\\t// Product Components and Format\\t/\\tImage File (GeoTIFF format); Metadata File (JSON format); Rational Polynomial Coefficients (Text File); UDM File (GeoTIFF format)\\t/\\tImage File (GeoTIFF); Metadata File (JSON format); Rational Polynomial Coefficients (Text File); UDM File (GeoTIFF format)\\t/\\tImage File (GeoTIFF format); Metadata File (JSON format); Rational Polynomial Coefficients (Text File); UDM File (GeoTIFF format);\\t/\\tImage File (GeoTIFF format); Metadata File (JSON format); Rational Polynomial Coefficients (Text File); UDM File (GeoTIFF format)\\t/\\tImage File (GeoTIFF format); Metadata File (JSON format); Rational Polynomial Coefficients (Text File); UDM File (GeoTIFF format)\\t// Image configuration\\t/\\t3-band Pansharpened Image (PS Red, PS Green, PS Blue)\\t/\\t4-band Pansharpened Image (PS Blue, PS Green, PS Red, PS NIR)\\t/\\t4-band Analytic DN Image (B, G, R, N)\\t/\\t1-band Panchromatic Image\\t/\\t4-band Analytic Image (B, G, R, N)\\t// Ground Sampling Distance\\t/\\t50 cm\\t/\\t50 cm\\t/\\t50 cm\\t/\\t50 cm\\t/\\t50 cm\\t// Projection\\t/\\tUTM WGS84\\t/\\tUTM WGS84\\t/\\tUTM WGS84\\t/\\tUTM WGS84\\t/\\tUTM WGS84\\t// Accuracy\\t/\\t<10 m RMSE\\t/\\t<10 m RMSE\\t/\\t<10 m RMSE\\t/\\t<10 m RMSE\\t/\\tradiometric accuracy: +/- 5% Relative accuracy at < 10 degrees off-nadir angle\\t// The products are available as part of the Planet provision from RapidEye, Skysat and PlanetScope constellations. SkySat collection has worldwide coverage: The Planet Explorer Catalogue can be accessed (Planet registration requested) to discover and check the data readiness. All details about the data provision, data access conditions and quota assignment procedure are described into the Terms of Applicability (https://earth.esa.int/eogateway/documents/20142/37627/Access-to-ESAs-Planet-Missions-Terms-of-Applicability.pdf).\",\n \ \"type\": \"Collection\",\n \"title\": \"SkySat Full Archive and New Tasking\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://www.planet.com/products/#satellite-imagery\",\n \"type\": \"text/html\",\n \"title\": \"Planet products - Web site\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Planet-combined-imagery-product-specs-2020.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Imagery Product Specifications - Product Specifications\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://developers.planet.com/docs/apps/explorer/\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Explorer User Guide - User Manual\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/SkySat-tasking-request-form.pdf/075f845e-13bd-36e2-4743-3aeb2053c61c\",\n \ \"type\": \"application/pdf\",\n \"title\": \"SkySat Tasking Request Form - Access guide\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Access-to-ESAs-Planet-Missions-Terms-of-Applicability.pdf/91fdeed4-2efe-1bed-8058-1dddb6e14fa6\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Terms of Applicability - Access guide\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/SkySat\",\n \ \"title\": \"More collections for SkySat platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/429a0634-46aa-518a-ac92-b5bcec0315d4\",\n \ \"title\": \"More collections for SkySat Camera instrument\"\n }\n \ ],\n \"id\": \"SkySat.Full.Archive.and.New.Tasking\",\n \"updated\": \"2023-06-13T13:23:42Z\",\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \"name\": \"ESA/ESRIN\",\n \"url\": \"https://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"SkySat Camera\"],\n \"platform\": [\"SkySat\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2009-08-01T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"World\",\n \"GEOSAT\",\n \"DIMAP\",\n \ \"TIFF\",\n \"Vegetation\",\n \"Agriculture\",\n \"Forestry\",\n \ \"EARTH SCIENCE > BIOSPHERE > VEGETATION\",\n \"EARTH SCIENCE > AGRICULTURE\",\n \"EARTH SCIENCE > BIOSPHERE > ECOSYSTEMS > TERRESTRIAL ECOSYSTEMS > FORESTS\",\n \"VIS (0.40 - 0.75 \xC2\xB5m)\",\n \"NIR (0.75 - 1.30 \xC2\xB5m)\",\n \"Sun-synchronous\",\n \"Medium Resolution - MR (20 - 500 m)\",\n \"663 km\",\n \"625 km\",\n \ \"Cameras\",\n \"GEOSAT-1\",\n \"SLIM6\"\n ],\n \ \"created\": \"2019-05-22T00:00:00.00Z\",\n \"description\": \"GEOSAT-1 full archive and new tasking products are available at 22 m resolution in two processing levels.\\r\\rL1R (Basic Geopositioned): All 3 spectral channels combined into a band-registered image. Geopositioned product based on sensor model. Coefficients derived from satellite orientation parameters coming from telemetry and appended to metadata\\rL1T (L1R orthorectified): Orthorectified to sub-pixel accuracy (10 metres RMS error approximately) with respect to Landsat ETM+ reference data and hole-filled seamless SRTM DEM data V3, 2006 (90 m)\\rGEOSAT-1 products are provided in DIMAP format. The image products are delivered in the TIFF and GeoTIFF image formats by default. All products can be provided in False Colours (R,G,NIR) or Natural Colours (R, G, Synthetic Blue).\\r\\rAll details about the data provision, data access conditions and quota assignment procedure are described into the Terms of Applicability available in Resources section.\\r\\rThe list of available archived data can be retrieved using the GEOSAT catalogue (https://catalogue.geosat.space/cscda/extcat/)\\rAll details about the data provision, data access conditions and quota assignment procedure are described into the Terms of Applicability available in Resources section. \\r\\rThe list of available archived data can be retrieved using the Deimos catalogue (http://www.deimos-imaging.com/catalogue).\",\n \"type\": \"Collection\",\n \"title\": \"GEOSAT-1 full archive and tasking\",\n \ \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/GEOSAT-1\",\n \ \"title\": \"More collections for GEOSAT-1 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/5cc6eaab-0ddc-572f-a1b7-afa52ea5333d\",\n \ \"title\": \"More collections for SLIM6 instrument\"\n }\n \ ],\n \"id\": \"Geosat-1.Full.archive.and.tasking\",\n \"updated\": \"2023-06-13T13:23:40Z\",\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \"name\": \"ESA/ESRIN\",\n \"url\": \"https://earth.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"SLIM6\"],\n \ \"platform\": [\"GEOSAT-1\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2016-06-01T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"World\",\n \"GNSS\",\n \"AIS\",\n \ \"ADS-B\",\n \"Atmosphere\",\n \"Ionosphere and Magnetosphere Dynamics\",\n \"Weather Events\",\n \"Oceans\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \"EARTH SCIENCE > SUN-EARTH INTERACTIONS > IONOSPHERE/MAGNETOSPHERE DYNAMICS\",\n \"EARTH SCIENCE > ATMOSPHERE > WEATHER EVENTS\",\n \"EARTH SCIENCE > OCEANS\",\n \"Sun-synchronous\",\n \ \"500 km\",\n \"Imaging Spectrometers/Radiometers\",\n \"Spire\",\n \ \"AIRSAFE\",\n \"SENSE\",\n \"STRATOS\"\n ],\n \ \"created\": \"2020-09-04T00:00:00.00Z\",\n \"description\": \"The data collected by Spire from it's 110 satellites launched into Low Earth Orbit (LEO) has a diverse range of applications, from analysis of global trade patterns and commodity flows to aircraft routing to weather forecasting. The data also provides interesting research opportunities on topics as varied as ocean currents and GNSS-based planetary boundary layer height. The following products can be requested: ADS-B Data Stream Global ADS-B satellite data observed by Spire satellites and processed through the ground stations network. Historical ADS-B data older than 6 months can be delivered as data cuts containing CSV file(s) accessible through a Web Service or Cloud storage solutions. Live ADS-B data is available through a streaming API, and recent historical data can be accessed through a REST API. Data is distributed as a monthly subscription: historical data can be requested starting from 3 December 2008, the time period for live data starts from a user-defined date and continues for 30 days. AIS AIS messages include satellite AIS (S-AIS) as observed by Spire satellites and terrestrial AIS (T-AIS) from third party sensor stations (up to 40 million messages per day). Historical AIS data are delivered as a cvs file with availability back to June 2016 or via Historical API from December 2018; live AIS data are pushed to end users via TCP or through Messages API. Data is distributed as a monthly subscription, from a user-defined date and continues for a 30 day period. GNSS-Radio Occultation GNSS Radio Occultation (GNSS-RO) measurements are collected globally on a continuous basis, generating profiles of the Earth\\u2019s atmosphere. Derived Level 1 and Level 2 products include both atmospheric and ionospheric products. Historical data for most of the GNSS-RO products are available from December 2018 to the present. Near real-time (within 90 minutes or less latency from collection to delivery) GNSS-RO profiles are also available upon request. GNSS Reflectometry GNSS Reflectometry (GNSS-R) is a technique to measure Earth\\u2019s surface properties using reflections of GNSS signals in the form of a bistatic radar. Spire collects two types of GNSS-R data: conventional, near-nadir incidence LHCP reflections collected by the Spire GNSS-R satellites (e.g., Spire GNSS-R \\u201cBatch-1\\u201d satellites) and grazing angle (i.e., low elevation angle) RHCP reflections collected by the Spire GNSS-RO satellites. Derived Level 1 and Level 2 products are available, as well as some special Level 0 raw intermediate frequency (IF) data. Historical grazing angle GNSS-R data are available from May 2019 to the present, while conventional GNSS-R data are available from December 2020 to the present. \ Name: Automatic Identification System (AIS) Description: The automatic identification system (AIS) is an automatic tracking system that uses transponders on ships and is used by vessel traffic services. Spire data includes satellite AIS (S-AIS) as observed by Spire satellites and terrestrial AIS (T-AIS) from third party sensor stations. Data format and content: .parquet.gz files The AIS files contain time-series data on received AIS messages, both the raw NMEA message and added post-processing data for each message. Application: Supply chain analysis, commodity trading, identification of illegal fishing or dark targets, ship route and fuel use optimization, analysis of global trade patterns, anti-piracy, autonomous vessel software, ocean currents. Name: Automatic Dependent Surveillance-Broadcast (ADS-B) Description: Spire AirSafe ADS-B products give access to satellite and terrestrial ADS-B data from captured aircrafts. Data format and content: .csv.gz files The decompressed csv file contains a list of hexadecimal representations of ADS-B messages associated with the timestamp they were received on the satellite. Application: Fleet management, ICAO regulatory compliance, route optimization, predictive maintenance, global airspace, domain awareness. Name: Global Navigation Satellite System Radio Occultation (GNSS-RO) Description: GNSS atmospheric radio occultation (GNSS-RO) relies on the detection of a change in a radio signal as it passes through a planet's atmosphere, i.e. as it is refracted by the atmosphere. This data set contains precise orbit determination (POD) solutions, satellite attitude information, high-rate occultation observations, excess phase, and derived atmospheric dry temperature profiles. Data format and content: podObs*.rnx This file contains raw pseudorange, carrier phase, Doppler frequency, and signal-to-noise measurements for each observed GPS signal from a single Spire satellite which allow to estimate the positions and velocities of each Spire satellite and also used to derive ionospheric total electron content data. leoOrb*.sp3 This file contains the estimated position, velocity and receiver clock error of a given Spire satellite after processing of the POD observation file leoAtt*.log It contains 1 Hz rate quaternion information measured from a single Spire satellite describing the satellite orientation. opnGns*ro.bin, opnGns*rst.bin these files contain raw measurements from the occulting GNSS satellite (one for each signal frequency) and raw phase data from one or more reference GNSS satellites. atmPhs* The file contains occultation excess phase delay. Also contains SNR values, ransmitter and receiver positions and open loop model information. atmPrf*.nc The file contains profiles of atmospheric dry pressure, dry temperature and neutral refractivity as a function of altitude produced from full processing of one occultation event. bfrPrf*.bufr The file contains derived profiles of dry pressure, dry temperature, refractivity and bending angle for each occultation. Application:\\tAtmospheric profiles of pressure, dry temperature, bending angle, and refractivity used in numerical weather prediction data assimilation and climate change studies. Name: Raw IF samples from GNSS-RO satellites Description: Raw intermediate frequency (IF) sampled data (I/Q) from the GNSS receiver front-end of GNSS-RO satellites. Data format and content: rocRIF*.zip Binary raw IF data and associated ancillary data (e.g., POD data) in a zip archive per collection event. Application: GNSS-RO studies, GNSS RFI and jamming monitoring, research. Name: Raw IF samples from GNSS-R satellites Description: Raw intermediate frequency (IF) sampled data (I/Q) from the GNSS receiver front-end of conventional GNSS-R satellites. Data format and content: gbrRIF*.zip Binary raw IF data and associated ancillary data (e.g., POD data) in a zip archive per collection event. Application: GNSS-R studies, GNSS RFI and jamming monitoring, research, etc. Name: Grazing angle GNSS-R observations Description: During grazing angle GNSS-R events, signal reflection at two frequencies is observed through the limb-facing antenna and is trackedusing an open-loop tracking technique thatrelies on a model topredict the propagationdelay and Doppler of thereflected signal. Simultaneous open-looptracking of the signaldirectly along theline-of-sight from thetransmitter to thereceiver is alsoperformed to provideadditional data that maybenecessary for signalcalibration. The mainoutput of the open-looptracking are in-phase (I)and quadrature (Q)accumulation samples(nominally at 50 Hz),which represent the residual Doppler (phase) from the model. Data format and content: grzObs*.nc L1A filecontains rawopen loopcarrier phasemeasurementsat 50 Hzsampling forgrazingangleGNSS-Rreflectionscaptured in the GNSS-RO RHC Pantennas, (bothdirect andreflectedsignals) on GNSS-RO satellites. Application: Sea surface and sea ice height extent, and classification. \ Name: Georeferenced grazing angle GNSS-R observations Description: The low-levelobservations of the high-rate grazing angle GNSS-R observationsbut withthegeoreferenced bistatic radar parameters of the satellite receiver,specular reflection, and GNSS transmitter included. Data format and content: grzRfl*.nc L1B file contains the georeferenced grazing angle GNSS-R data collected by Spire GNSS-RO satellites, including the low-level observables and bistatic radar geometries (e.g., receiver, specular reflection, and the transmitter locations). Application: Sea surface and sea ice height extent, and classification Name: GNSS-R calibrated bistatic radar reflectivities Description: Higher level product used to derive land-surface reflectivity. Data format and content: gbrRfl*.nc L1A along-track calibrated relative power between reflected and direct signals (e.g., bistatic radar reflectivities) measured by Spire conventional GNSS-R satellites. Application: GNSS-R studies, soil moisture, ocean wind, and sea ice applications Name: GNSS-R calibrated bistatic radar cross-sections Description: Higher level product used to derive ocean surface roughness products. Data format and content: gbrRCS*.nc L1B along-track calibrated and normalized bistatic radar cross-sections measured by Spire conventional GNSS-R satellites. Application: GNSS-R studies, ocean wind and sea ice applications Name: Combined Surface Soil Moisture Description: Combined CYGNSS and SMAP soil moisture data are provided as a combined surface soil moisture (COMB-SSM) product in two data level formats: L2U1 and L3U1. 6 x 6 km grid cell. L-band measurements of surface soil moisture benefit from better vegetation penetration in comparison to traditional C-band measurements. Data format and content: COMB-SSM.nc This file contains the combined data product containing measurements from both CYGNSS and SMAP reported on a 6 km global Equi7Grid grid. Application: Agriculture, crop insurance, farming solutions, climatology, terrain awareness, peatlands and wetlands monitoring etc. Name: Ionosphere total electron content Description: Spire routinely collects and processes a large volume of total electron content (TEC) data, representing the line-of-sight integration of electron density between a Spire satellite and a GNSS satellite. Each file contains line-of-sight ionospheric total electron content (TEC) estimates derived for a \\u2018single viewing arc\\u2019 contained in the POD observation file. Viewing arcs are at least 10 minutes in duration. Data format and content: podTec*.nc This file contains the line-of-sight total electron content with associated orbital information. Application: Space weather research, tsunamigenic earthquakes, weather applications, space situational awareness (SSA), autonomous vehicles etc Name: Ionosphere scintillation Description: The scintillation index for each GNSS frequency is computed onboard the spacecraft. This index provides a measure of the fluctuations of the GNSS signal over the course of 10 seconds caused by propagation of the radio signals through electron density irregularities in the ionosphere. After the raw indices are downlinked to the ground, they are packaged along with associated metadata such as orbit position to create the final scintillation data product. Data format and content: scnLv1*.nc This file contains on-board computed scintillation data (S4 only) with associated orbital information Application: Space weather research, solar events, TIDs, weather applications positioning and navigation, communications etc. Name: Electron density profile Description: Electron density profiles are retrieved as a function of altitude. Electron density profiles are processed from podTec netcdf files, which span a sufficient elevation angle range. A standard Abel inversion algorithm is applied to retrieve the profiles. Data format and content: ionPrf*.nc This file contains electron density profile retrieved from podTec files spanning appropriate elevation angle range Application: Space weather research, solar events, TIDs, weather applications positioning and navigation, communications. The products are available as part of the Spire provision with worldwide coverage. All details about the data provision, data access conditions and quota assignment procedure are described in the Terms of Applicability (https://earth.esa.int/eogateway/documents/20142/37627/SPIRE-Terms-Of-Applicability.pdf/0dd8b3e8-05fe-3312-6471-a417c6503639).\",\n \ \"type\": \"Collection\",\n \"title\": \"Spire live and historical data\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Spire-Product-Guide.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Spire Product Guide - Product Description\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/SPIRE-Terms-Of-Applicability.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Spire Terms of Applicability - Access Guide\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Spire\",\n \ \"title\": \"More collections for Spire platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/1c3bd49f-bdc9-5c33-a273-2f0f7a5b3f88\",\n \ \"title\": \"More collections for STRATOS instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/e5735a20-bdb8-5cff-b385-c16c84c855f4\",\n \ \"title\": \"More collections for SENSE instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/11f58510-1770-53a7-9b13-5a5564b4e9c2\",\n \ \"title\": \"More collections for AIRSAFE instrument\"\n }\n \ ],\n \"id\": \"Spire.live.and.historical.data\",\n \"updated\": \"2023-06-13T13:23:42Z\",\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\n \ \"STRATOS\",\n \"SENSE\",\n \"AIRSAFE\"\n ],\n \ \"platform\": [\"Spire\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2012-10-01T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"World\",\n \"Multispectral\",\n \"Panchromatic\",\n \ \"Pansharpened\",\n \"Pleiades\",\n \"Agriculture\",\n \ \"Afforestation/Reforestation\",\n \"Crops and Yields\",\n \ \"Forest Fires\",\n \"Landscape\",\n \"Topography\",\n \ \"Weather Events\",\n \"EARTH SCIENCE > AGRICULTURE\",\n \"EARTH SCIENCE > AGRICULTURE > FOREST SCIENCE > AFFORESTATION/REFORESTATION\",\n \ \"EARTH SCIENCE > AGRICULTURE > AGRICULTURAL PLANT SCIENCE > CROP/PLANT YIELDS\",\n \"EARTH SCIENCE > AGRICULTURE > FOREST SCIENCE > FOREST FIRE SCIENCE\",\n \"EARTH SCIENCE > LAND SURFACE > LANDSCAPE\",\n \"EARTH SCIENCE > LAND SURFACE > TOPOGRAPHY\",\n \"EARTH SCIENCE > ATMOSPHERE > WEATHER EVENTS\",\n \"VIS (0.40 - 0.75 \xB5m)\",\n \"NIR (0.75 - 1.30 \xB5m)\",\n \"SWIR (1.3 - 3.0 \xB5m)\",\n \"Sun-synchronous\",\n \ \"Very High Resolution - VHR (0 - 5m)\",\n \"High Resolution - HR (5 - 20 m)\",\n \"832 km for SPOT-1 to 5, 694 km for SPOT-6 and 7\",\n \"60 km\",\n \"Cameras\",\n \"SPOT 6\",\n \"SPOT 7\",\n \"NAOMI\"\n ],\n \"created\": \"2019-07-16T00:00:00.00Z\",\n \ \"description\": \"The SPOT 6 and 7 satellites ensure data continuity with the no longer operational SPOT 5 satellite and provide an archive of very high resolution optical acquisition as well as the possibility to task the satellites for new acquisitions. Following the completion of the SPOT 7 mission in March 2023, new acquisition tasking is only available for the SPOT 6 satellite. The ortho-products are automatically generated by the SPOT 6 and 7 ground segment, based on SRTM database or Reference3D when available. The projection available for SPOT 6 and 7 ortho-products is UTM, datum WGS84. \ Bands combinations: - Pansharpened: colour image at 1.5 m resolution - Bundle: 1.5 m panchromatic image and 6 m multispectral image Geometric processing levels: - Primary: The Primary product is the processing level closest to the natural image acquired by the sensor. This product restores perfect collection conditions: the sensor is placed in rectilinear geometry, and the image is clear of all radiometric distortion. - Standard Ortho: The Ortho product is a georeferenced image in Earth geometry, corrected from acquisition and terrain off-nadir effects. - Tailored ortho: Aside from the Standard Ortho product, when different specifications are needed, a custom orthorectification, with a more precise 3D model provided by the client or acquired for the purpose, can be provided on demand.\",\n \"type\": \"Collection\",\n \"title\": \"SPOT 6 & 7 full archive and tasking\",\n \"license\": \"various\",\n \ \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://www.intelligence-airbusds.com/satellite-data/\",\n \ \"type\": \"text/html\",\n \"title\": \"SPOT-6 to 7 products description - Other\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"http://www.intelligence-airbusds.com/spotmaps/\",\n \ \"type\": \"text/html\",\n \"title\": \"SPOTMaps technical information - Other\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/1586698/SPOTMaps2.5.kmz\",\n \ \"title\": \"SPOTMaps 2.5 geographical coverage - Other\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/SPOT-6-7-imagery-user-guide.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"SPOT 6&7 Imagery User Guide - Product Specification\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://www.intelligence-airbusds.com/imagery/constellation/pleiades-neo/how-to-order/\",\n \ \"type\": \"text/html\",\n \"title\": \"OneAtlas guides - Data Access Information\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://www.intelligence-airbusds.com/en/4871-geostore-ordering\",\n \ \"type\": \"text/html\",\n \"title\": \"GeoStore Catalogue - Catalogue\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://oneatlas.airbus.com/\",\n \"type\": \"text/html\",\n \"title\": \"OneAtlas Living Library - Catalogue\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/SPOT-Pleiades-data-terms-of-applicability.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"SPOT and Pleiades Terms of Applicability - Access Guide\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/SPOT%206\",\n \ \"title\": \"More collections for SPOT 6 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/SPOT%207\",\n \ \"title\": \"More collections for SPOT 7 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/ec73a747-76a7-56f1-a011-0465a3ed4a87\",\n \ \"title\": \"More collections for NAOMI instrument\"\n }\n \ ],\n \"id\": \"SPOT67fullarchiveandtasking1\",\n \"updated\": \"2023-06-13T13:23:42Z\",\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \"name\": \"ESA/ESRIN\",\n \"url\": \"https://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"NAOMI\"],\n \ \"platform\": [\n \"SPOT 6\",\n \"SPOT 7\"\n ]\n \ }\n }\n ],\n \"numberReturned\": 10,\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections?datetime=2024-01-01T00%3A00%3A01Z%2F2024-01-01T00%3A00%3A10Z\",\n \ \"type\": \"application/json\",\n \"title\": \"This document\"\n \ },\n {\n \"rel\": \"next\",\n \"href\": \"https://emc.spacebel.be/collections?datetime=2024-01-01T00%3A00%3A01Z%2F2024-01-01T00%3A00%3A10Z&startRecord=11\",\n \ \"type\": \"application/json\",\n \"title\": \"Next results\"\n \ },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for collection search\"\n }\n ],\n \"numberMatched\": 1025\n}" headers: Access-Control-Allow-Headers: - X-PINGOTHER, Content-Type, Authorization, Accept Access-Control-Allow-Methods: - POST,GET,PUT,HEAD,OPTIONS,DELETE Access-Control-Allow-Origin: - '*' Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Connection: - keep-alive Content-Type: - application/json;charset=UTF-8 Date: - Thu, 17 Jul 2025 12:50:59 GMT Expires: - '0' Pragma: - no-cache Server: - openresty Strict-Transport-Security: - max-age=31536000 ; includeSubDomains Transfer-Encoding: - chunked X-Content-Type-Options: - nosniff X-Frame-Options: - DENY X-Served-By: - emc.spacebel.be X-XSS-Protection: - 1; mode=block status: code: 200 message: '' - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://emc.spacebel.be/collections?datetime=2024-01-01T00%3A00%3A01Z%2F2024-01-01T00%3A00%3A10Z&startRecord=11 response: body: string: "{\n \"collections\": [\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"2020-04-20T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"global\",\n \"tropics\",\n \"polar regions\",\n \"atmospheric winds\",\n \"atmospheric dynamic\",\n \ \"troposphere\",\n \"stratosphere\",\n \"air quality\",\n \ \"mie\",\n \"rayleigh\",\n \"clouds\",\n \"aerosols\",\n \ \"wind profiles\",\n \"weather\",\n \"climate\",\n \"weather forecast\",\n \"Atmospheric Winds\",\n \"Atmospheric Indicators\",\n \ \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\",\n \"UV (0.01 - 0.4 \xB5m)\",\n \"Sun-synchronous\",\n \"Horizontal resolution at measurement scale: 3 km; Horizontal resolution at observation scale for Rayleigh/Mie: 87/10 km\",\n \"250-2000 m vertical resolution\",\n \ \"ALD_U_N_1B\",\n \"320 km\",\n \"Lidar/Laser Sounders\",\n \ \"Aeolus\",\n \"ALADIN\"\n ],\n \"created\": \"2020-04-30T00:00:00.00Z\",\n \ \"description\": \"The Level 1B wind product of the Aeolus mission contains the preliminary HLOS (horizontal line-of-sight) wind observations for Rayleigh and Mie receivers, which are generated in Near Real Time. Standard atmospheric correction (Rayleigh channel), receiver response and bias correction is applied. The product is generated within 3 hours after data acquisition.\",\n \"type\": \"Collection\",\n \"title\": \"Aeolus preliminary HLOS (horizontal line-of-sight) wind observations for Rayleigh and Mie receivers\",\n \"license\": \"various\",\n \ \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-Sensor-and-Product-Description.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Aeolus Sensor and Product Description - Aeolus Sensor and Product Description\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Aeolus\",\n \ \"title\": \"More collections for Aeolus platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/a032cde6-16e3-5940-988e-f6d79870d14c\",\n \ \"title\": \"More collections for ALADIN instrument\"\n }\n \ ],\n \"id\": \"L1B_Wind_Products\",\n \"updated\": \"2023-06-15T11:50:19Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"ALADIN\"],\n \ \"platform\": [\"Aeolus\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2010-04-08T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"sci:doi\": \"10.5270/CR2-120cf4c\",\n \"keywords\": [\n \"World\",\n \ \"DIF10\",\n \"Ice Product\",\n \"ice-sheet elevation\",\n \ \"sea-ice freeboard\",\n \"altimeter\",\n \"Oceans\",\n \ \"EARTH SCIENCE > OCEANS\",\n \"Snow and Ice\",\n \"EARTH SCIENCE > CRYOSPHERE > SNOW/ICE\",\n \"EARTH SCIENCE > TERRESTRIAL HYDROSPHERE > SNOW/ICE\",\n \"Inclined, non-sun-synchronous\",\n \"FDM\",\n \ \"LRM\",\n \"SAR\",\n \"SARIn\",\n \"GRD\",\n \ \"GOP\",\n \"IOP\",\n \"Radar Altimeters\",\n \"CryoSat-2\",\n \ \"SIRAL\"\n ],\n \"created\": \"2019-06-04T00:00:00.000Z\",\n \ \"description\": \"CryoSat's primary payload is the SAR/Interferometric Radar Altimeter (SIRAL) (https://earth.esa.int/eogateway/instruments/siral) which has extended capabilities to meet the measurement requirements for ice-sheet elevation and sea-ice freeboard. CryoSat also carries three star trackers for measuring the orientation of the baseline. In addition, a radio receiver called Doppler Orbit and Radio Positioning Integration by Satellite (DORIS) and a small laser retroreflector ensures that CryoSat's position will be accurately tracked. More detailed information on CryoSat instruments is available on the CryoSat mission page. The following CryoSat datasets are available and distributed to registered users: Level 1B and L2 Ice products: FDM, LRM, SAR and SARIn Consolidated Level 2 (GDR): (LRM+SAR+SARIN) consolidated ice products over an orbit Intermediate Level 2 Ice products: LRM, SAR and SARIn L1b and L2 Ocean Products: GOP and IOP CryoTEMPO EOLIS Point Products CryoTEMPO EOLIS Gridded Products Detailed information concerning each of the above datasets is available in the CryoSat Products Overview (https://earth.esa.int/eogateway/missions/cryosat/products) and in the news item: CryoSat Ocean Products now open to scientific community (https://earth.esa.int/web/guest/missions/esa-operational-eo-missions/cryosat/news/-/asset_publisher/47bD/content/cryosat-ocean-products-now-open-to-scientific-community). \ CryoSat Level 1B altimetric products contain time and geo-location information as well as SIRAL measurements in engineering units. Calibration corrections are included and have been applied to the window delay computations. In Offline products, geophysical corrections are computed from Analysis Auxiliary Data Files (ADFs), whereas in FDM products corrections are computed for Forecast ADFs. All corrections are included in the data products and therefore the range can be calculated by taking into account the surface type. The Offline Level 2 LRM, SAR and SARIn ice altimetric products are generated 30 days after data acquisition and are principally dedicated to glaciologists working on sea-ice and land-ice areas. The Level 2 FDM products are near-real time ocean products, generated 2-3 hours after data acquisition, and fulfill the needs of some ocean operational services. Level 2 products contain the time of measurement, the geo-location and the height of the surface. IOP and GOP are outputs of the CryoSat Ocean Processor. These products are dedicated to the study of ocean surfaces, and provided specifically for the needs of the oceanographic community. IOP are generated 2-3 days after data sensing acquisition and use the DORIS Preliminary Orbit. GOP are typically generated 30 days after data sensing acquisition and use the DORIS Precise Orbit. Geophysical corrections are computed from the Analysis ADFs, however following the oceanographic convention the corrections are available but not directly applied to the range (as for FDM). The CryoSat ThEMatic PrOducts (Cryo-TEMPO) projects aim to deliver a new paradigm of simplified, harmonized, and agile CryoSat-2 products, that are easily accessible to new communities of non-altimeter experts and end users. The Cryo-TEMPO datasets include dedicated products over five thematic areas, covering Sea Ice, Land Ice, Polar Ocean, Coastal Ocean and Inland Water, together with a novel SWATH product (CryoTEMPO-EOLIS) that exploits CryoSat's SARIn mode over ice sheet margins. The standard Cryo-TEMPO products include fully-traceable uncertainties and use rapidly evolving, state-of-the-art processing dedicated to each thematic area. Throughout the project, the products will be constantly evolved, and validated by a group of Thematic Users, thus ensuring optimal relevance and impact for the intended target communities. More information on the Cryo-TEMPO products can be found on the Project Website (http://cryosat.mssl.ucl.ac.uk/tempo/index.html). The CryoTEMPO-EOLIS swath product exploits CryoSat's SARIn mode and the novel Swath processing technique to deliver increased spatial and temporal coverage of time-dependent elevation over land ice, a critical metric for tracking ice mass trends in support to a wide variety of end-users. The CryoTEMPO-EOLIS swath product exploits CryoSat's SARIn mode and the novel Swath processing technique to deliver increased spatial and temporal coverage of time-dependent elevation over land ice, a critical metric for tracking ice mass trends in support to a wide variety of end-users.The dataset consists of systematic reprocessing of the entire CryoSat archive to generate new L2-Swath products, increasing data sampling by 1 to 2 orders of magnitude compared with the operational L2 ESA product. In addition, the EOLIS dataset is joined with the ESA L2 Point-Of-Closest-Approach to generate monthly DEM (Digital Elevation Model) products. This dataset will further the ability of the community to analyse and understand trends across the Greenland Ice Sheet margin, Antarctica and several mountain glaciers and ice caps around the world.\",\n \"type\": \"Collection\",\n \"title\": \"CryoSat products\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=CryoSat.products\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"offering_2\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetMap&layers=Density%3ACryoSat.products&bbox=-180.0,-90.0,180.0,90.0&width=768&height=762&srs=EPSG%3A4326&transparent=true&styles=Magma&format=image%2Fpng\",\n \ \"title\": \"GetMap\",\n \"type\": \"image/png\"\n },\n \ \"offering_1\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\",\n \ \"title\": \"GetCapabilities\",\n \"type\": \"application/xml\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/CryoSat.products\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/10.5270/CR2-120cf4c\",\n \"type\": \"text/html\",\n \"title\": \"Landing page\"\n },\n {\n \ \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series CryoSat.products\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for CryoSat.products\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/CryoSat.products/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"wms:transparent\": true,\n \"rel\": \"wms\",\n \"wms:dimensions\": {\"version\": \"1.1.1\"},\n \"href\": \"https://eovoc.spacebel.be/geoserver/wms\",\n \ \"type\": \"image/png\",\n \"title\": \"CryoSat.products\",\n \ \"wms:layers\": [\"Density:CryoSat.products\"],\n \"wms:styles\": [\"Magma\"]\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/collections/services/items/eoli-cryosat-matlab-routi?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"eoli-cryosat-matlab-routi (service)\"\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/CryoSat-2\",\n \ \"title\": \"More collections for CryoSat-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/ba530a28-c2ba-5a34-b71e-678d316e936f\",\n \ \"title\": \"More collections for SIRAL instrument\"\n }\n \ ],\n \"id\": \"CryoSat.products\",\n \"updated\": \"2023-11-09T11:03:42Z\",\n \ \"stac_extensions\": [\n \"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\n \ \"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\"\n \ ],\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"SIRAL\"],\n \ \"platform\": [\"CryoSat-2\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -84,\n 180,\n \ 84\n ]]},\n \"temporal\": {\"interval\": [[\n \"2016-02-29T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"DIF10\",\n \"Land Surface\",\n \"EARTH SCIENCE > LAND SURFACE\",\n \"Mapping and Cartography\",\n \"Natural Hazards and Disaster Risk\",\n \"EARTH SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\",\n \"Sun-synchronous\",\n \"VIS (0.40 - 0.75 \xB5m)\",\n \"NIR (0.75 - 1.30 \xB5m)\",\n \"Very High Resolution - VHR (0 - 5m)\",\n \"SSC_DEF_SC, SSC_DEF_CO\",\n \"475-575 km\",\n \"8 km at nadir for SkySat-1 to -2, 6.6 km at nadir for SkySat-3 to -13\",\n \"Imaging Spectrometers/Radiometers\",\n \"SkySat\",\n \ \"SkySat Camera\"\n ],\n \"created\": \"2022-06-23T00:00:00.000Z\",\n \ \"description\": \"The SkySat ESA archive collection consists of SkySat products requested by ESA supported projects over their areas of interest around the world and that ESA collected over the years. The dataset regularly grows as ESA collects new SkySat products. Two different product types are offered, Ground Sampling Distance at nadir up to 65 cm for PAN and up to 0.8m for MS EO-SIP Product Type Product description Content SSC_DEF_SC Basic and Ortho scene * Level 1B 4-bands Analytic /DN Basic scene * Level 1B 4-bands Panchromatic /DN Basic scene * Level 1A 1-band Panchromatic DN Pre Sup resolution Basic scene * Level 3B 3-bands Visual Ortho Scene * Level 3B 4-bands Pansharpened Multispectral Ortho Scene * Level 3B 4-bands Analytic/DN/SR Ortho Scene * Level 3B 1-band Panchromatic /DN Ortho Scene SSC_DEF_CO Ortho Collect * Visual 3-band Pansharpened Image * Multispectral 4-band Pansharpened Image * Multispectral 4-band Analytic/DN/SR Image (B, G, R,N) * 1-band Panchromatic Image The Basic Scene product is uncalibrated, not radiometrically corrected for atmosphere or for any geometric distortions inherent in the imaging process \\u2022Analytic - unorthorectified, radiometrically corrected, multispectral BGRN \\u2022Analytic DN - unorthorectified, multispectral BGRN \\u2022Panchromatic - unorthorectified, radiometrically corrected, panchromatic (PAN) \\u2022Panchromatic DN - unorthorectified, panchromatic (PAN) \\u2022L1A Panchromatic DN - unorthorectified, pre-super resolution, panchromatic (PAN) The Ortho Scene product is sensor and geometrically corrected, and is projected to a cartographic map projection. \\u2022Visual - orthorectified, pansharpened, and color-corrected (using a color curve) 3-band RGB Imagery \\u2022Pansharpened Multispectral - orthorectified, pansharpened 4-band BGRN Imagery \\u2022Analytic SR - orthorectified, multispectral BGRN. Atmospherically corrected Surface Reflectance product. \\u2022Analytic - orthorectified, multispectral BGRN. Radiometric corrections applied to correct for any sensor artifacts and transformation to top-of-atmosphere radiance \\u2022Analytic DN - orthorectified, multispectral BGRN, uncalibrated digital number imagery product Radiometric corrections applied to correct for any sensor artifacts \\u2022Panchromatic - orthorectified, radiometrically correct, panchromatic (PAN) \\u2022Panchromatic DN - orthorectified, panchromatic (PAN), uncalibrated digital number imagery product The Ortho Collect product is created by composing SkySat Ortho Scenes along an imaging strip. The product may contain artifacts resulting from the composing process, particular offsets in areas of stitched source scenes. Spatial coverage: Check the spatial coverage of the collection on a _$$map$$ https://tpm-ds.eo.esa.int/smcat/SkySat/ available on the Third Party Missions Dissemination Service.\",\n \"type\": \"Collection\",\n \ \"title\": \"Skysat ESA archive\",\n \"license\": \"various\",\n \ \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \ \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=SkySatESAarchive\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"offering_2\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetMap&layers=Density%3ASkySatESAarchive&bbox=-146.2499999999999,-35.15625,172.96875,80.15625&width=768&height=330&srs=EPSG%3A4326&transparent=true&styles=Turbo&format=image%2Fpng\",\n \ \"title\": \"GetMap\",\n \"type\": \"image/png\"\n },\n \ \"offering_1\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\",\n \ \"title\": \"GetCapabilities\",\n \"type\": \"application/xml\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series SkySatESAarchive\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for SkySatESAarchive\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/SkySatESAarchive/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://www.planet.com/products/#satellite-imagery\",\n \ \"type\": \"text/html\",\n \"title\": \"Planet products - Catalogue\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://assets.planet.com/docs/Planet_Combined_Imagery_Product_Specs_letter_screen.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Imagery Product Specifications - Product Specifications\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"wms:transparent\": true,\n \"rel\": \"wms\",\n \"wms:dimensions\": {\"version\": \"1.1.1\"},\n \"href\": \"https://eovoc.spacebel.be/geoserver/wms\",\n \ \"type\": \"image/png\",\n \"title\": \"SkySatESAarchive\",\n \ \"wms:layers\": [\"Density:SkySatESAarchive\"],\n \"wms:styles\": [\"Turbo\"]\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/SkySat\",\n \ \"title\": \"More collections for SkySat platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/429a0634-46aa-518a-ac92-b5bcec0315d4\",\n \ \"title\": \"More collections for SkySat Camera instrument\"\n }\n \ ],\n \"id\": \"SkySatESAarchive\",\n \"updated\": \"2023-11-09T17:22:55Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"SkySat Camera\"],\n \"platform\": [\"SkySat\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -84,\n 180,\n \ 84\n ]]},\n \"temporal\": {\"interval\": [[\n \"2009-02-22T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"World\",\n \"DIF10\",\n \"Multispectral\",\n \ \"Planet\",\n \"Land Surface\",\n \"EARTH SCIENCE > LAND SURFACE\",\n \"Mapping and Cartography\",\n \"Natural Hazards and Disaster Risk\",\n \"EARTH SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\",\n \"Sun-synchronous\",\n \"VIS (0.40 - 0.75 \xB5m)\",\n \ \"NIR (0.75 - 1.30 \xB5m)\",\n \"High Resolution - HR (5 - 20 m)\",\n \"MSI_IMG_3A\",\n \"MSI_IMG_1B\",\n \"630 km\",\n \"77 km\",\n \"Imaging Spectrometers/Radiometers\",\n \ \"RapidEye\",\n \"MSI\"\n ],\n \"created\": \"2019-05-23T00:00:00.000Z\",\n \ \"description\": \"The RapidEye ESA archive is a subset of the RapidEye Full archive that ESA collected over the years. The dataset regularly grows as ESA collects new RapidEye products. Spatial coverage: Check the spatial coverage of the collection on a _$$map$$ https://tpm-ds.eo.esa.int/socat/RapidEye available on the Third Party Missions Dissemination Service.\",\n \"type\": \"Collection\",\n \"title\": \"RapidEye ESA archive\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=RapidEye.ESA.archive\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"offering_2\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetMap&layers=Density%3ARapidEye.ESA.archive&bbox=-120.9375,-46.40625,180.0,84.375&width=768&height=333&srs=EPSG%3A4326&transparent=true&styles=Magma&format=image%2Fpng\",\n \ \"title\": \"GetMap\",\n \"type\": \"image/png\"\n },\n \ \"offering_1\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\",\n \ \"title\": \"GetCapabilities\",\n \"type\": \"application/xml\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series RapidEye.ESA.archive\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for RapidEye.ESA.archive\"\n },\n {\n \"rel\": \"search\",\n \ \"href\": \"https://emc.spacebel.be/collections/series/items/RapidEye.ESA.archive/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://www.planet.com/products/#satellite-imagery\",\n \ \"type\": \"text/html\",\n \"title\": \"Planet products - Catalogue\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Planet-combined-imagery-product-specs-2020.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"RapidEye Satellite Image Product Specifications - Product Specifications\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help ? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"wms:transparent\": true,\n \"rel\": \"wms\",\n \"wms:dimensions\": {\"version\": \"1.1.1\"},\n \"href\": \"https://eovoc.spacebel.be/geoserver/wms\",\n \ \"type\": \"image/png\",\n \"title\": \"RapidEye.ESA.archive\",\n \ \"wms:layers\": [\"Density:RapidEye.ESA.archive\"],\n \"wms:styles\": [\"Magma\"]\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/RapidEye\",\n \ \"title\": \"More collections for RapidEye platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/4b332a30-7c95-5fb1-bf55-fb4b10c1565f\",\n \ \"title\": \"More collections for MSI instrument\"\n }\n \ ],\n \"id\": \"RapidEye.ESA.archive\",\n \"updated\": \"2023-11-10T08:02:35Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"MSI\"],\n \ \"platform\": [\"RapidEye\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -20,\n -35,\n 35,\n \ 75\n ]]},\n \"temporal\": {\"interval\": [[\n \"2015-01-01T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"Europe\",\n \"DIF10\",\n \"orthorectified\",\n \ \"corrected\",\n \"geometrically corrected\",\n \"USGS\",\n \ \"Surface Radiative Properties\",\n \"EARTH SCIENCE > LAND SURFACE > SURFACE RADIATIVE PROPERTIES\",\n \"Vegetation\",\n \"EARTH SCIENCE > BIOSPHERE > VEGETATION\",\n \"Land Use and Land Cover\",\n \ \"EARTH SCIENCE > LAND SURFACE > LAND USE/LAND COVER\",\n \"Agriculture\",\n \ \"EARTH SCIENCE > AGRICULTURE\",\n \"Forestry\",\n \"EARTH SCIENCE > BIOSPHERE > ECOSYSTEMS > TERRESTRIAL ECOSYSTEMS > FORESTS\",\n \"Sun-synchronous\",\n \ \"VIS (0.40 - 0.75 \xB5m)\",\n \"NIR (0.75 - 1.30 \xB5m)\",\n \ \"SWIR (1.3 - 3.0 \xB5m)\",\n \"TIR (6.0 - 15.0 \xB5nm)\",\n \ \"DPAS 5.0\",\n \"Medium Resolution - MR (20 - 500 m)\",\n \ \"OAT_GEO_1P\",\n \"OAT_GTC_1P\",\n \"OAT_SP__2P\",\n \ \"OAT_SR__2P\",\n \"705 km\",\n \"185 km\",\n \"Imaging Spectrometers/Radiometers\",\n \"Landsat-8\",\n \"OLI\",\n \"TIRS\"\n \ ],\n \"created\": \"2022-01-14T00:00:00.000Z\",\n \"description\": \"This dataset contains the European Coverage of Landsat 8 Collection 2 data, both Level 1 and Level 2, since the beginning of the mission. Landsat 8 Collection 2 is the result of reprocessing effort on the archive and on fresh products with significant improvement with respect to Collection 1 on data quality, obtained by means of advancements in data processing, algorithm development. The primary characteristic is a relevant improvement in the absolute geolocation accuracy (now re-baselined to the European Space Agency Copernicus Sentinel-2 Global Reference Image, GRI) but includes also updated digital elevation modelling sources, improved Radiometric Calibration (even correction for the TIRS striping effect), enhanced Quality Assessment Bands, updated and consistent metadata files, usage of Cloud Optimized Georeferenced (COG) Tagged Image File Format. \ Landsat 8 level 1 products combine data from the 2 Landsat instruments, OLI and TIRS. The level 1 products generated can be either L1TP or L1GT: \\u2022 L1TP - Level 1 Precision Terrain (Corrected) (L1T) products: Radiometrically calibrated and orthorectified using ground control points (GCPs) and digital elevation model (DEM) data to correct for relief displacement. The highest quality Level-1 products suitable for pixel-level time series analysis. GCPs used for L1TP correction are derived from the Global Land Survey 2000 (GLS2000) data set. \\u2022 L1GT - Level 1 Systematic Terrain (Corrected) (L1GT) products: L1GT data products consist of L0 product data with systematic radiometric, geometric and terrain corrections applied and resampled for registration to a cartographic projection, referenced to the WGS84, G873, or current version. The dissemination server contains three different classes of Level1 products \\u2022 Real Time (RT): Newly acquired Landsat 8 OLI/TIRS data are processed upon downlink but use an initial TIRS line-of-sight model parameters; the data is made available in less than 12 hours (4-6 hours typically). Once the data have been reprocessed with the refined TIRS parameters, the products are transitioned to either Tier 1 or Tier 2 and removed from the Real-Time tier (in 14-16 days). \\u2022 Tier 1 (T1): Landsat scenes with the highest available data quality are placed into Tier 1 and are considered suitable for time-series analysis. Tier 1 includes Level-1 Precision and Terrain (L1TP) corrected data that have well-characterized radiometry and are inter-calibrated across the different Landsat instruments. The georegistration of Tier 1 scenes is consistent and within prescribed image-to-image tolerances of \u2266 12-meter radial root mean square error (RMSE). \\u2022 Tier 2 (T2): Landsat scenes not meeting Tier 1 criteria during processing are assigned to Tier 2. Tier 2 scenes adhere to the same radiometric standard as Tier 1 scenes, but do not meet the Tier 1 geometry specification due to less accurate orbital information (specific to older Landsat sensors), significant cloud cover, insufficient ground control, or other factors. This includes Systematic Terrain (L1GT) and Systematic (L1GS) processed data. Landsat 8 level 2 products are generated from L1GT and L1TP Level 1 products that meet the <76 degrees Solar Zenith Angle constraint and include the required auxiliary data inputs to generate a scientifically viable product. The data are available a couple of days after the Level1 T1/T2. The level 2 products generated can be L2SP or L2SR: \\u2022 L2SP - Level 2 Science Products (L2SP) products: include Surface Reflectance (SR), Surface Temperature (ST), ST intermediate bands, an angle coefficients file, and Quality Assessment (QA) Bands. \\u2022 L2SR - Level 2 Surface Reflectance (L2SR) products: include Surface Reflectance (SR), an angle coefficients file, and Quality Assessment (QA) Bands; it is generated if ST could not be generated \ Two different categories of Level 1 products are offered: LC with Optical, Thermal and Quality Map images, LO with Optical and Quality Map images (Thermal not available). For the Level 2 data, only LC combined products are generated\",\n \ \"type\": \"Collection\",\n \"title\": \"Landsat 8 Collection 2 European Coverage\",\n \"license\": \"various\",\n \"assets\": {\n \ \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=Landsat8.Collection2.European.Coverage\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"offering_2\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetMap&layers=Density%3ALandsat8.Collection2.European.Coverage&bbox=-28.125,16.875,59.0625,74.53125&width=768&height=507&srs=EPSG%3A4326&transparent=true&styles=Turbo&format=image%2Fpng\",\n \ \"title\": \"GetMap\",\n \"type\": \"image/png\"\n },\n \ \"offering_1\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\",\n \ \"title\": \"GetCapabilities\",\n \"type\": \"application/xml\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series Landsat8.Collection2.European.Coverage\"\n },\n \ {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for Landsat8.Collection2.European.Coverage\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/Landsat8.Collection2.European.Coverage/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/0/Landsat-Collection-1-vs-Collection-2-Summary.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Landsat Collection1 vs Collection 2 - Product description\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/0/Landsat-8-9-OLI-TIRS-Collection-2-Level-1-Data-Format-Control-Book-DFCB.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Landsat 8-9 OLI-TIRS Collection 2 Level 1 Data Format Control Book (DFCB) - Product specification\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/0/Landsat-8-9-OLI-TIRS-Collection-2-Level-2-Data-Format-Control-Book-DFCB.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Landsat 8-9 OLI-TIRS Collection 2 Level 2 Data Format Control Book (DFCB) - Product specification\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://www.usgs.gov/landsat-missions/landsat-collection-2\",\n \"type\": \"text/html\",\n \"title\": \"USGS Landsat Collection 2 web page - web portal\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"wms:transparent\": true,\n \"rel\": \"wms\",\n \"wms:dimensions\": {\"version\": \"1.1.1\"},\n \"href\": \"https://eovoc.spacebel.be/geoserver/wms\",\n \ \"type\": \"image/png\",\n \"title\": \"Landsat8.Collection2.European.Coverage\",\n \ \"wms:layers\": [\"Density:Landsat8.Collection2.European.Coverage\"],\n \ \"wms:styles\": [\"Turbo\"]\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Landsat-8\",\n \ \"title\": \"More collections for Landsat-8 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/6bfc7afc-547a-57cd-818c-6d90e3e589ab\",\n \ \"title\": \"More collections for OLI instrument\"\n }\n \ ],\n \"id\": \"Landsat8.Collection2.European.Coverage\",\n \"updated\": \"2023-11-10T08:38:42Z\",\n \"stac_extensions\": [\"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"OLI\"],\n \ \"platform\": [\"Landsat-8\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2007-01-23T10:16:34Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"DIF10\",\n \"MetOp-A\",\n \"MetOp-B\",\n \ \"MetOp-C\",\n \"COT\",\n \"Cloud Optical Thickness\",\n \ \"AC-SAF\",\n \"GOME.TC.AGG\",\n \"urn:eop:DLR:EOWEB:GOME.TC.AGG\",\n \ \"FEDEO\",\n \"Atmospheric conditions\",\n \"EARTH SCIENCE>ATMOSPHERE>CLOUDS>CLOUD MICROPHYSICS>CLOUD OPTICAL DEPTH/THICKNESS\",\n \"METOP-A\",\n \"METOP-B\",\n \ \"METOP-C\",\n \"GOME-2\",\n \"Metop-A\",\n \"Metop-B\",\n \ \"Metop-C\"\n ],\n \"description\": \"The Global Ozone Monitoring Experiment-2 (GOME-2) instrument continues the long-term monitoring of atmospheric trace gas constituents started with GOME / ERS-2 and SCIAMACHY / Envisat. Currently, there are three GOME-2 instruments operating on board EUMETSAT's Meteorological Operational satellites MetOp-A, -B and -C, launched in October 2006, September 2012, and November 2018, respectively. GOME-2 can measure a range of atmospheric trace constituents, with the emphasis on global ozone distributions. Furthermore, cloud properties and intensities of ultraviolet radiation are retrieved. These data are crucial for monitoring the atmospheric composition and the detection of pollutants. DLR generates operational GOME-2 / MetOp level 2 products in the framework of EUMETSAT's Satellite Application Facility on Atmospheric Chemistry Monitoring (AC-SAF). GOME-2 near-real-time products are available already two hours after sensing.\\t\\tOCRA (Optical Cloud Recognition Algorithm) and ROCINN (Retrieval of Cloud Information using Neural Networks) are used for retrieving the following geophysical cloud properties from GOME and GOME-2 data: cloud fraction (cloud cover), cloud-top pressure (cloud-top height), and cloud optical thickness (cloud-top albedo). OCRA is an optical sensor cloud detection algorithm that uses the PMD devices on GOME / GOME-2 to deliver cloud fractions for GOME / GOME-2 scenes. ROCINN takes the OCRA cloud fraction as input and uses a neural network training scheme to invert GOME / GOME-2 reflectivities in and around the O2-A band. VLIDORT [Spurr (2006)] templates of reflectances based on full polarization scattering of light are used to train the neural network. ROCINN retrieves cloud-top pressure and cloud-top albedo. The cloud optical thickness is computed using libRadtran [Mayer and Kylling (2005)] radiative transfer simulations taking as input the cloud-top albedo retrieved with ROCINN. For more details please refer to relevant peer-review papers listed on the GOME and GOME-2 documentation pages: https://atmos.eoc.dlr.de/app/docs/\",\n \"type\": \"Collection\",\n \ \"title\": \"METOP GOME-2 - Cloud Optical Thickness (COT) - Global\",\n \ \"license\": \"various\",\n \"assets\": {\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"enclosure_3\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP-C_GOME-2_L2C_P1D_COT - MetOp-C GOME-2 L2C Daily COT\"\n },\n \"enclosure_4\": {\n \ \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"METOP_GOME-2_L2C_P1D_COMB_COT - MetOp GOME-2 L2C Daily COT Combined\"\n },\n \"enclosure_1\": {\n \"roles\": [\"data\"],\n \"href\": \"ftp://acsaf.eoc.dlr.de/\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"DLR-ATMOS FTP-server - For data access via FTP, please register at https://acsaf.org/registration_form.html or contact helpdesk@acsaf.org.\"\n },\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure_2\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP-B_GOME-2_L2C_P1D_COT - MetOp-B GOME-2 L2C Daily COT\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"enclosure_7\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP_GOME-2_L2C_P1D_COMB_COT - MetOp GOME-2 L2C Daily COT Combined\"\n },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n },\n \ \"enclosure_5\": {\n \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?\",\n \"type\": \"application/x-binary\",\n \ \"title\": \"METOP-B_GOME-2_L2C_P1D_COT - MetOp-B GOME-2 L2C Daily COT\"\n },\n \"quicklook\": {\n \"roles\": [\"overview\"],\n \ \"href\": \"https://geoservice.dlr.de/catalogue/srv/api/records/810631f4-c311-44f2-9ced-c2260df2bc06/attachments/metop_gome2_cot_ql.jpg\",\n \ \"type\": \"image/jpeg\",\n \"title\": \"graphic overview\"\n \ },\n \"enclosure_6\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP-C_GOME-2_L2C_P1D_COT - MetOp-C GOME-2 L2C Daily COT\"\n }\n },\n \"links\": [\n \ {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-B_GOME-2_L2C_P1D_COT\",\n \ \"title\": \"METOP-B_GOME-2_L2C_P1D_COT - EGP: MetOp-B GOME-2 L2C Daily COT\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-C_GOME-2_L2C_P1D_COT\",\n \ \"title\": \"METOP-C_GOME-2_L2C_P1D_COT - EGP: MetOp-C GOME-2 L2C Daily COT\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP_GOME-2_L2C_P1D_COMB_COT\",\n \ \"title\": \"METOP_GOME-2_L2C_P1D_COMB_COT - EGP: MetOp GOME-2 L2C Daily COT Combined\"\n },\n {\n \"rel\": \"related\",\n \ \"href\": \"https://eoweb.dlr.de/egp/main?ecswCollection=urn%3Aeop%3ADLR%3AEOWEB%3AGOME.TC.AGG\",\n \ \"title\": \"METOP GOME-2 - Cloud Optical Thickness (COT) - Global - EOWEB GeoPortal Collection\"\n },\n {\n \"rel\": \"icon\",\n \"href\": \"https://geoservice.dlr.de/catalogue/srv/api/records/810631f4-c311-44f2-9ced-c2260df2bc06/attachments/metop_gome2_cot_ql_s.jpg\",\n \ \"type\": \"image/jpeg\",\n \"title\": \"graphic overview\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://geoservice.dlr.de/web/maps/metop:gome2.tc.daily\",\n \"title\": \"EOC Geoservice Map Context - EOC Geoservice Map Context (metop:gome2.tc.daily)\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://atmos.eoc.dlr.de/app/missions/gome2\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?SERVICE=WMS&REQUEST=GetCapabilities\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?SERVICE=WCS&REQUEST=GetCapabilities\"\n \ },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/DE@DLR\",\n \ \"title\": \"More collections for DE/DLR\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Metop-A\",\n \ \"title\": \"More collections for Metop-A platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Metop-B\",\n \ \"title\": \"More collections for Metop-B platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Metop-C\",\n \ \"title\": \"More collections for Metop-C platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/eaa1390e-6453-5b90-9ed2-90c3f5096d83\",\n \ \"title\": \"More collections for GOME-2 instrument\"\n }\n \ ],\n \"id\": \"810631f4-c311-44f2-9ced-c2260df2bc06\",\n \"updated\": \"2024-06-20T13:07:23Z\",\n \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"DE/DLR\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"GOME-2\"],\n \"processing:lineage\": [\"Please refer to relevant peer-review papers listed on the GOME and GOME-2 documentation pages for more details on cloud optical thickness retrieval: https://atmos.eoc.dlr.de/app/docs/\"],\n \"platform\": [\n \"Metop-A\",\n \ \"Metop-B\",\n \"Metop-C\"\n ]\n }\n },\n \ {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n \ -90,\n 180,\n 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2007-01-23T10:16:34Z\",\n null\n ]]}\n \ },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"DIF10\",\n \ \"MetOp-A\",\n \"MetOp-B\",\n \"MetOp-C\",\n \"NO2\",\n \ \"Nitrogen Dioxide\",\n \"AC-SAF\",\n \"GOME.TC.AGG\",\n \ \"urn:eop:DLR:EOWEB:GOME.TC.AGG\",\n \"FEDEO\",\n \"Atmospheric conditions\",\n \"EARTH SCIENCE>ATMOSPHERE>ATMOSPHERIC CHEMISTRY>NITROGEN COMPOUNDS>NITROGEN DIOXIDE\",\n \"METOP-A\",\n \"METOP-B\",\n \ \"METOP-C\",\n \"GOME-2\",\n \"Metop-A\",\n \"Metop-B\",\n \ \"Metop-C\"\n ],\n \"description\": \"The Global Ozone Monitoring Experiment-2 (GOME-2) instrument continues the long-term monitoring of atmospheric trace gas constituents started with GOME / ERS-2 and SCIAMACHY / Envisat. Currently, there are three GOME-2 instruments operating on board EUMETSAT's Meteorological Operational satellites MetOp-A, -B, and -C, launched in October 2006, September 2012, and November 2018, respectively. GOME-2 can measure a range of atmospheric trace constituents, with the emphasis on global ozone distributions. Furthermore, cloud properties and intensities of ultraviolet radiation are retrieved. These data are crucial for monitoring the atmospheric composition and the detection of pollutants. DLR generates operational GOME-2 / MetOp level 2 products in the framework of EUMETSAT's Satellite Application Facility on Atmospheric Chemistry Monitoring (AC-SAF). GOME-2 near-real-time products are available already two hours after sensing.\\t\\t\\tThe operational NO2 total column products are generated using the algorithm GDP (GOME Data Processor) version 4.x integrated into the UPAS (Universal Processor for UV / VIS Atmospheric Spectrometers) processor for generating level 2 trace gas and cloud products.\\t\\t\\tThe total NO2 column is retrieved from GOME solar back-scattered measurements in the visible wavelength region (425-450 nm), using the Differential Optical Absorption Spectroscopy (DOAS) method.\\t\\t\\tFor more details please refer to relevant peer-review papers listed on the GOME and GOME-2 documentation pages: https://atmos.eoc.dlr.de/app/docs/\",\n \"type\": \"Collection\",\n \"title\": \"METOP GOME-2 - Nitrogen Dioxide (NO2) - Global\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"enclosure_3\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP-C_GOME-2_L2C_P1D_NO2 - MetOp-C GOME-2 L2C Daily NO2\"\n },\n \"enclosure_4\": {\n \ \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"METOP_GOME-2_L2C_P1D_COMB_NO2 - MetOp GOME-2 L2C Daily NO2 Combined\"\n },\n \"enclosure_1\": {\n \"roles\": [\"data\"],\n \"href\": \"ftp://acsaf.eoc.dlr.de/\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"DLR-ATMOS FTP-server - For data access via FTP, please register at https://acsaf.org/registration_form.html or contact helpdesk@acsaf.org.\"\n },\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure_2\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP-B_GOME-2_L2C_P1D_NO2 - MetOp-B GOME-2 L2C Daily NO2\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"enclosure_7\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP_GOME-2_L2C_P1D_COMB_NO2 - MetOp GOME-2 L2C Daily NO2 Combined\"\n },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n },\n \ \"enclosure_5\": {\n \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?\",\n \"type\": \"application/x-binary\",\n \ \"title\": \"METOP-B_GOME-2_L2C_P1D_NO2 - MetOp-B GOME-2 L2C Daily NO2\"\n },\n \"quicklook\": {\n \"roles\": [\"overview\"],\n \ \"href\": \"https://geoservice.dlr.de/catalogue/srv/api/records/bf8dbf94-ff16-42bf-a957-0e8f80813aff/attachments/metop_gome2_no2_ql.jpg\",\n \ \"type\": \"image/jpeg\",\n \"title\": \"graphic overview\"\n \ },\n \"enclosure_6\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP-C_GOME-2_L2C_P1D_NO2 - MetOp-C GOME-2 L2C Daily NO2\"\n }\n },\n \"links\": [\n \ {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-B_GOME-2_L2C_P1D_NO2\",\n \ \"title\": \"METOP-B_GOME-2_L2C_P1D_NO2 - EGP: MetOp-B GOME-2 L2C Daily NO2\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-C_GOME-2_L2C_P1D_NO2\",\n \ \"title\": \"METOP-C_GOME-2_L2C_P1D_NO2 - EGP: MetOp-C GOME-2 L2C Daily NO2\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP_GOME-2_L2C_P1D_COMB_NO2\",\n \ \"title\": \"METOP_GOME-2_L2C_P1D_COMB_NO2 - EGP: MetOp GOME-2 L2C Daily NO2 Combined\"\n },\n {\n \"rel\": \"related\",\n \ \"href\": \"https://eoweb.dlr.de/egp/main?ecswCollection=urn%3Aeop%3ADLR%3AEOWEB%3AGOME.TC.AGG\",\n \ \"title\": \"METOP GOME-2 - Nitrogen Dioxide (NO2) - Global - EOWEB GeoPortal Collection\"\n },\n {\n \"rel\": \"icon\",\n \ \"href\": \"https://geoservice.dlr.de/catalogue/srv/api/records/bf8dbf94-ff16-42bf-a957-0e8f80813aff/attachments/metop_gome2_no2_ql_s.jpg\",\n \ \"type\": \"image/jpeg\",\n \"title\": \"graphic overview\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://geoservice.dlr.de/web/maps/metop:gome2.tc.daily\",\n \"title\": \"EOC Geoservice Map Context - EOC Geoservice Map Context (metop:gome2.tc.daily)\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://atmos.eoc.dlr.de/app/missions/gome2\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?SERVICE=WMS&REQUEST=GetCapabilities\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?SERVICE=WCS&REQUEST=GetCapabilities\"\n \ },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/DE@DLR\",\n \ \"title\": \"More collections for DE/DLR\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Metop-A\",\n \ \"title\": \"More collections for Metop-A platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Metop-B\",\n \ \"title\": \"More collections for Metop-B platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Metop-C\",\n \ \"title\": \"More collections for Metop-C platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/eaa1390e-6453-5b90-9ed2-90c3f5096d83\",\n \ \"title\": \"More collections for GOME-2 instrument\"\n }\n \ ],\n \"id\": \"bf8dbf94-ff16-42bf-a957-0e8f80813aff\",\n \"updated\": \"2024-06-20T13:07:52Z\",\n \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"DE/DLR\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"GOME-2\"],\n \"processing:lineage\": [\"Please refer to relevant peer-review papers listed on the GOME and GOME-2 documentation pages for more details on nitrogen dioxide retrieval: https://atmos.eoc.dlr.de/app/docs/\"],\n \ \"platform\": [\n \"Metop-A\",\n \"Metop-B\",\n \ \"Metop-C\"\n ]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2007-01-23T10:16:34Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"DIF10\",\n \"MetOp-A\",\n \"MetOp-B\",\n \ \"MetOp-C\",\n \"HCHO\",\n \"Formaldehyde\",\n \"AC-SAF\",\n \ \"GOME.TC.AGG\",\n \"urn:eop:DLR:EOWEB:GOME.TC.AGG\",\n \"FEDEO\",\n \ \"Atmospheric conditions\",\n \"EARTH SCIENCE>ATMOSPHERE>ATMOSPHERIC CHEMISTRY>CARBON AND HYDROCARBON COMPOUNDS>FORMALDEHYDE\",\n \"METOP-A\",\n \ \"METOP-B\",\n \"METOP-C\",\n \"GOME-2\",\n \"Metop-A\",\n \ \"Metop-B\",\n \"Metop-C\"\n ],\n \"description\": \"The Global Ozone Monitoring Experiment-2 (GOME-2) instrument continues the long-term monitoring of atmospheric trace gas constituents started with GOME / ERS-2 and SCIAMACHY / Envisat. Currently, there are three GOME-2 instruments operating on board EUMETSAT's Meteorological Operational satellites MetOp-A, -B, and -C, launched in October 2006, September 2012, and November 2018, respectively. GOME-2 can measure a range of atmospheric trace constituents, with the emphasis on global ozone distributions. Furthermore, cloud properties and intensities of ultraviolet radiation are retrieved. These data are crucial for monitoring the atmospheric composition and the detection of pollutants. DLR generates operational GOME-2 / MetOp level 2 products in the framework of EUMETSAT's Satellite Application Facility on Atmospheric Chemistry Monitoring (AC-SAF). GOME-2 near-real-time products are available already two hours after sensing.\\t\\t\\tThe operational HCHO total column products are generated using the algorithm GDP (GOME Data Processor) version 4.x integrated into the UPAS (Universal Processor for UV / VIS Atmospheric Spectrometers) processor for generating level 2 trace gas and cloud products.\\t\\t\\tFor more details please refer to relevant peer-review papers listed on the GOME and GOME-2 documentation pages: https://atmos.eoc.dlr.de/app/docs/\",\n \ \"type\": \"Collection\",\n \"title\": \"METOP GOME-2 - Formaldehyde (HCHO) - Global\",\n \"license\": \"various\",\n \"assets\": {\n \ \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"enclosure_3\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP-C_GOME-2_L2C_P1D_HCHO - MetOp-C GOME-2 L2C Daily HCHO\"\n },\n \"enclosure_4\": {\n \ \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"METOP_GOME-2_L2C_P1D_COMB_HCHO - MetOp GOME-2 L2C Daily HCHO Combined\"\n },\n \"enclosure_1\": {\n \"roles\": [\"data\"],\n \"href\": \"ftp://acsaf.eoc.dlr.de/\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"DLR-ATMOS FTP-server - For data access via FTP, please register at https://acsaf.org/registration_form.html or contact helpdesk@acsaf.org.\"\n },\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure_2\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP-B_GOME-2_L2C_P1D_HCHO - MetOp-B GOME-2 L2C Daily HCHO\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"enclosure_7\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP_GOME-2_L2C_P1D_COMB_HCHO - MetOp GOME-2 L2C Daily HCHO Combined\"\n },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n },\n \ \"enclosure_5\": {\n \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?\",\n \"type\": \"application/x-binary\",\n \ \"title\": \"METOP-B_GOME-2_L2C_P1D_HCHO - MetOp-B GOME-2 L2C Daily HCHO\"\n },\n \"quicklook\": {\n \"roles\": [\"overview\"],\n \ \"href\": \"https://geoservice.dlr.de/catalogue/srv/api/records/3dd6bbdd-5dca-411e-b251-cdc325d703c4/attachments/metop_gome2_hcho_ql.jpg\",\n \ \"type\": \"image/jpeg\",\n \"title\": \"graphic overview\"\n \ },\n \"enclosure_6\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP-C_GOME-2_L2C_P1D_HCHO - MetOp-C GOME-2 L2C Daily HCHO\"\n }\n },\n \"links\": [\n \ {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-B_GOME-2_L2C_P1D_HCHO\",\n \ \"title\": \"METOP-B_GOME-2_L2C_P1D_HCHO - EGP: MetOp-B GOME-2 L2C Daily HCHO\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-C_GOME-2_L2C_P1D_HCHO\",\n \ \"title\": \"METOP-C_GOME-2_L2C_P1D_HCHO - EGP: MetOp-C GOME-2 L2C Daily HCHO\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP_GOME-2_L2C_P1D_COMB_HCHO\",\n \ \"title\": \"METOP_GOME-2_L2C_P1D_COMB_HCHO - EGP: MetOp GOME-2 L2C Daily HCHO Combined\"\n },\n {\n \"rel\": \"related\",\n \ \"href\": \"https://eoweb.dlr.de/egp/main?ecswCollection=urn%3Aeop%3ADLR%3AEOWEB%3AGOME.TC.AGG\",\n \ \"title\": \"METOP GOME-2 - Formaldehyde (HCHO) - Global - EOWEB GeoPortal Collection\"\n },\n {\n \"rel\": \"icon\",\n \ \"href\": \"https://geoservice.dlr.de/catalogue/srv/api/records/3dd6bbdd-5dca-411e-b251-cdc325d703c4/attachments/metop_gome2_hcho_ql_s.jpg\",\n \ \"type\": \"image/jpeg\",\n \"title\": \"graphic overview\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://geoservice.dlr.de/web/maps/metop:gome2.tc.daily\",\n \"title\": \"EOC Geoservice Map Context - EOC Geoservice Map Context (metop:gome2.tc.daily)\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://atmos.eoc.dlr.de/app/missions/gome2\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?SERVICE=WMS&REQUEST=GetCapabilities\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?SERVICE=WCS&REQUEST=GetCapabilities\"\n \ },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/DE@DLR\",\n \ \"title\": \"More collections for DE/DLR\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Metop-A\",\n \ \"title\": \"More collections for Metop-A platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Metop-B\",\n \ \"title\": \"More collections for Metop-B platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Metop-C\",\n \ \"title\": \"More collections for Metop-C platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/eaa1390e-6453-5b90-9ed2-90c3f5096d83\",\n \ \"title\": \"More collections for GOME-2 instrument\"\n }\n \ ],\n \"id\": \"3dd6bbdd-5dca-411e-b251-cdc325d703c4\",\n \"updated\": \"2024-06-20T13:07:47Z\",\n \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"DE/DLR\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"GOME-2\"],\n \"processing:lineage\": [\"Please refer to relevant peer-review papers listed on the GOME and GOME-2 documentation pages for more details on formaldehyde retrieval: https://atmos.eoc.dlr.de/app/docs/\"],\n \ \"platform\": [\n \"Metop-A\",\n \"Metop-B\",\n \ \"Metop-C\"\n ]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2022-04-27T00:00:00Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"DIF10\",\n \"Orthoimagery\",\n \"DLR\",\n \ \"EOC\",\n \"hyperspectral sensing\",\n \"quicklooks\",\n \ \"Level 0\",\n \"FEDEO\",\n \"urn:eop:DLR:EOWEB:ENMAP.HSI.L0\",\n \ \"visible wavelengths\",\n \"infrared wavelengths\",\n \"EARTH SCIENCE>SPECTRAL/ENGINEERING>VISIBLE WAVELENGTHS\",\n \"EARTH SCIENCE>SPECTRAL/ENGINEERING>INFRARED WAVELENGTHS\",\n \"EnMAP\",\n \"HSI\",\n \"Global\"\n \ ],\n \"description\": \"The EnMAP HSI L0 Quicklooks collection contains the VNIR and SWIR quicklook images as well as the quality masks for haze, cloud, or snow; based on the latest atmospheric correction methodology of the land processor. It allows users to get an overview which L0 data has been acquired and archived since the operational start of the EnMAP mission and which data is potentially available for on-demand processing into higher level products with specific processing parameters via the EOWEB-GeoPortal. The database is constantly updated with newly acquired L0 data. The Environmental Mapping and Analysis Program (EnMAP) is a German hyperspectral satellite mission that monitors and characterizes Earth\\u2019s environment on a global scale. EnMAP delivers accurate data that provides information on the status and evolution of terrestrial and aquatic ecosystems, supporting environmental monitoring, management, and decision-making. For more information, please see the mission website: https://www.enmap.org/mission/\",\n \ \"sci:citation\": \"DOI: 10.15489/rlyibn8gjc58\",\n \"type\": \"Collection\",\n \ \"title\": \"EnMAP HSI - Level 0 / Quicklook Images - Global\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"enclosure_3\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/imagery/wms?\",\n \"type\": \"application/x-binary\",\n \"title\": \"ENMAP_HSI_L0_QL_QUALITY_SNOW - EnMAP HSI L0 Quicklooks Quality Snow\"\n },\n \"enclosure_4\": {\n \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/imagery/wms?\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"ENMAP_HSI_L0_QL_QUALITY_HAZE - EnMAP HSI L0 Quicklooks Quality Haze\"\n },\n \"enclosure_1\": {\n \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/imagery/wms?\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"ENMAP_HSI_L0_QL_VNIR - EnMAP HSI L0 Quicklooks VNIR\"\n },\n \"enclosure_2\": {\n \ \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/imagery/wms?\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"ENMAP_HSI_L0_QL_SWIR - EnMAP HSI L0 Quicklooks SWIR\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"enclosure_9\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://download.geoservice.dlr.de/ENMAP/files/\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"HTTP download EnMAP HSI - Level 0 Quicklook Images - Global\"\n },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"enclosure_7\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/imagery/wms?\",\n \"type\": \"application/x-binary\",\n \"title\": \"ENMAP_HSI_L0_QL_QUALITY_CLASSES - EnMAP HSI L0 Quicklooks Quality Classes\"\n },\n \"enclosure_8\": {\n \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/imagery/wms?\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"ENMAP_HSI_L0_QL_QUALITY_CIRRUS - EnMAP HSI L0 Quicklooks Quality Cirrus\"\n },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n },\n \ \"enclosure_5\": {\n \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/imagery/wms?\",\n \"type\": \"application/x-binary\",\n \ \"title\": \"ENMAP_HSI_L0_QL_QUALITY_CLOUDSHADOW - EnMAP HSI L0 Quicklooks Quality Cloudshadow\"\n },\n \"quicklook\": {\n \"roles\": [\"overview\"],\n \"href\": \"https://geoservice.dlr.de/catalogue/srv/api/records/a13994c5-8d10-4627-90b8-60077ab5de40/attachments/ENMAP_HSI_L0_ql.jpg\",\n \ \"type\": \"image/jpeg\",\n \"title\": \"graphic overview\"\n \ },\n \"enclosure_6\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/imagery/wms?\",\n \"type\": \"application/x-binary\",\n \"title\": \"ENMAP_HSI_L0_QL_QUALITY_CLOUD - EnMAP HSI L0 Quicklooks Quality Cloud\"\n }\n },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"icon\",\n \"href\": \"https://geoservice.dlr.de/catalogue/srv/api/records/a13994c5-8d10-4627-90b8-60077ab5de40/attachments/ENMAP_HSI_L0_ql_s.jpg\",\n \ \"type\": \"image/jpeg\",\n \"title\": \"graphic overview\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://geoservice.dlr.de/eoc/imagery/wms?SERVICE=WMS%26REQUEST=GetCapabilities\"\n \ },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/DE@DLR\",\n \ \"title\": \"More collections for DE/DLR\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/EnMAP\",\n \ \"title\": \"More collections for EnMAP platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/249b8467-308b-55f9-8b74-198a335780e0\",\n \ \"title\": \"More collections for HSI instrument\"\n }\n \ ],\n \"id\": \"a13994c5-8d10-4627-90b8-60077ab5de40\",\n \"updated\": \"2024-08-12T07:07:07Z\",\n \"stac_extensions\": [\n \"https://stac-extensions.github.io/processing/v1.2.0/schema.json\",\n \ \"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"\n \ ],\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"DE/DLR\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"HSI\"],\n \"processing:lineage\": [\"Input data: Raw EnMAP HSI satellite data\"],\n \"platform\": [\"EnMAP\"]\n \ }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n ]]},\n \ \"temporal\": {\"interval\": [[\n \"2018-05-01T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"Oceans\",\n \"EARTH SCIENCE > OCEANS\",\n \ \"Marine Environment Monitoring\",\n \"EARTH SCIENCE > OCEANS > MARINE ENVIRONMENT MONITORING\",\n \"Ocean Circulation\",\n \"EARTH SCIENCE > OCEANS > OCEAN CIRCULATION\",\n \"Sun-synchronous\",\n \"L-Band (19.4 - 76.9 cm)\",\n \"305\",\n \"758 km\",\n \"1000 km\",\n \"Interferometric Radiometers\",\n \"SMOS\",\n \"MIRAS\"\n \ ],\n \"created\": \"2019-05-31T00:00:00.000Z\",\n \"description\": \"SMOS L3WS products are daily composite maps of the collected SMOS L2 swath wind products for a specific day, provided with the same grid than the Level 2 wind data (SMOS L2WS NRT) but separated into ascending and descending passes.\\r\\n\\r\\nThis product is available the day after sensing from Ifremer, in NetCDF format.\\r\\n\\r\\nBefore using this dataset, please check the read-me-first note available in the Resources section below.\",\n \"type\": \"Collection\",\n \"title\": \"SMOS L3 Daily Wind Speed\",\n \"version\": \"4.0\",\n \"license\": \"various\",\n \ \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \ \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=L3SW_Open\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure\": {\n \"roles\": [\"data\"],\n \"href\": \"https://smos-diss.eo.esa.int/oads/meta/L2_SWS_Open/index/\",\n \"type\": \"text/html\",\n \"title\": \"OADS repository - OADS repository\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L3SW_Open\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/L3SW_Open\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n \ },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"search\",\n \ \"href\": \"https://eocat.esa.int/eo-catalogue/collections/series/items/L3SW_Open/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/SMOS-Wind-Products-Description.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"SMOS Wind Products Description Document (PDD) - Product Specifications\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/SMOS-WIND-DS-ATBD.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"SMOS Wind Products\_ATBD - Algorithm Theoretical Basis Document (ATBD)\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/documents/d/guest/smos-wind-data-service-read-me-first-note-pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Read-me-first note for the release of SMOS Wind\_data\_products - Release Note\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"http://www.smosstorm.org/\",\n \ \"type\": \"text/html\",\n \"title\": \"SMOS Wind Data Service at Ifremer - External resources\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?category=tools+and+toolboxes&mission=smos&tools_type=analysis%2Cprocessing%2Cvisualisation\",\n \ \"type\": \"text/html\",\n \"title\": \"SMOS Software Tools - Software Tools\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/SMOS\",\n \ \"title\": \"More collections for SMOS platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/5cda1e1d-7fb8-59c0-8a37-eaceff0ce027\",\n \ \"title\": \"More collections for MIRAS instrument\"\n }\n \ ],\n \"id\": \"L3SW_Open\",\n \"updated\": \"2024-07-24T12:23:19Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/version/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"https://earth.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"MIRAS\"],\n \ \"platform\": [\"SMOS\"]\n }\n }\n ],\n \"numberReturned\": 10,\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections?datetime=2024-01-01T00%3A00%3A01Z%2F2024-01-01T00%3A00%3A10Z\",\n \ \"type\": \"application/json\",\n \"title\": \"This document\"\n \ },\n {\n \"rel\": \"next\",\n \"href\": \"https://emc.spacebel.be/collections?datetime=2024-01-01T00%3A00%3A01Z%2F2024-01-01T00%3A00%3A10Z&startRecord=21\",\n \ \"type\": \"application/json\",\n \"title\": \"Next results\"\n \ },\n {\n \"rel\": \"previous\",\n \"href\": \"https://emc.spacebel.be/collections?datetime=2024-01-01T00%3A00%3A01Z%2F2024-01-01T00%3A00%3A10Z&startRecord=1\",\n \ \"type\": \"application/json\",\n \"title\": \"Previous results\"\n \ },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for collection search\"\n }\n ],\n \"numberMatched\": 1025\n}" headers: Access-Control-Allow-Headers: - X-PINGOTHER, Content-Type, Authorization, Accept Access-Control-Allow-Methods: - POST,GET,PUT,HEAD,OPTIONS,DELETE Access-Control-Allow-Origin: - '*' Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Connection: - keep-alive Content-Type: - application/json;charset=UTF-8 Date: - Thu, 17 Jul 2025 12:51:00 GMT Expires: - '0' Pragma: - no-cache Server: - openresty Strict-Transport-Security: - max-age=31536000 ; includeSubDomains Transfer-Encoding: - chunked X-Content-Type-Options: - nosniff X-Frame-Options: - DENY X-Served-By: - emc.spacebel.be X-XSS-Protection: - 1; mode=block status: code: 200 message: '' - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://emc.spacebel.be/collections?datetime=2024-01-01T00%3A00%3A01Z%2F2024-01-01T00%3A00%3A10Z response: body: string: "{\n \"collections\": [\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"2021-10-09T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"FedEO\",\n \"SCIHUB\",\n \"DIF10\",\n \ \"Sea Surface Topography\",\n \"EARTH SCIENCE > OCEANS > SEA SURFACE TOPOGRAPHY\",\n \"Radar Altimeters\",\n \"Radiometers\",\n \ \"Sentinel-6\",\n \"POSEIDON-4\",\n \"AMR-C\"\n ],\n \ \"created\": \"2024-01-02T00:00:00.00Z\",\n \"description\": \"Copernicus Sentinel-6 Michael Freilich is an Earth Observation satellite mission developed to provide enhanced continuity to the very stable time series of mean sea level measurements and ocean sea state that started in 1992, with the TOPEX/Poseidon mission, then continued by the Jason-1, Jason-2 and Jason-3 satellite missions.\",\n \ \"type\": \"Collection\",\n \"title\": \"Sentinel-6 Products\",\n \ \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=EOP:ESA:SCIHUB:S6\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series EOP:ESA:Sentinel-6\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S6/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for EOP:ESA:SCIHUB:S6\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://dataspace.copernicus.eu\",\n \"title\": \"Copernicus Data Space Ecosystem - Copernicus Data Space Ecosystem\"\n },\n {\n \ \"rel\": \"search\",\n \"href\": \"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S6\",\n \ \"title\": \"FedEO Clearinghouse - FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S6/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinel.esa.int/web/sentinel/missions/sentinel-6\",\n \ \"title\": \"ESA Sentinel-6 Online\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-6\",\n \ \"title\": \"More collections for Sentinel-6 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/700b6e99-a527-5819-b283-4656c8832ea0\",\n \ \"title\": \"More collections for AMR-C instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/5d1512a5-cb97-5e74-8778-35cd65c06936\",\n \ \"title\": \"More collections for POSEIDON-4 instrument\"\n }\n \ ],\n \"id\": \"EOP:ESA:Sentinel-6\",\n \"updated\": \"2020-11-21T00:00:00.00Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\n \"AMR-C\",\n \"POSEIDON-4\"\n \ ],\n \"platform\": [\"Sentinel-6\"]\n }\n },\n {\n \ \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n \ -90,\n 180,\n 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2017-10-13T00:00:00.000Z\",\n null\n \ ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"FedEO\",\n \"SCIHUB\",\n \"DIF10\",\n \"Air Quality\",\n \"EARTH SCIENCE > ATMOSPHERE > AIR QUALITY\",\n \"Sentinel-5P\",\n \ \"TROPOMI\"\n ],\n \"created\": \"2018-10-09T00:00:00.00Z\",\n \ \"description\": \"The Sentinel-5P data offer for the Pre-Operations Open Access Hub consists of Level-1B and Level-2 user products for the TROPOMI instrument.\",\n \"type\": \"Collection\",\n \"title\": \"Sentinel-5P Products\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=EOP:ESA:SCIHUB:S5P\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series EOP:ESA:Sentinel-5P\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S5P/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for EOP:ESA:SCIHUB:S5P\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://dataspace.copernicus.eu\",\n \"title\": \"Copernicus Data Space Ecosystem - Copernicus Data Space Ecosystem\"\n },\n {\n \ \"rel\": \"search\",\n \"href\": \"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S5P\",\n \ \"title\": \"FedEO Clearinghouse - FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S5P/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinel.esa.int/web/sentinel/missions/sentinel-5P\",\n \ \"title\": \"ESA Sentinel-5P Online\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-5p-tropomi\",\n \ \"title\": \"Sentinel-5P TROPOMI User Guide \"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-5P\",\n \ \"title\": \"More collections for Sentinel-5P platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/09f91afd-c0d2-52a9-9b50-b895a60917fa\",\n \ \"title\": \"More collections for TROPOMI instrument\"\n }\n \ ],\n \"id\": \"EOP:ESA:Sentinel-5P\",\n \"updated\": \"2017-04-30T00:00:00.00Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"TROPOMI\"],\n \"processing:lineage\": [\"The Sentinel-5 Precursor objectives are to provide operational space-borne observations in support to the operational monitoring of Air Quality, Climate, Ozone and Surface UV. It will provide measurements of Ozone, NO_2, SO_2, Formaldehyde, Aerosol, Carbonmonoxide, Methane, Clouds.\"],\n \"platform\": [\"Sentinel-5P\"]\n \ }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n ]]},\n \ \"temporal\": {\"interval\": [[\n \"2016-01-01T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"MAJA\",\n \"GeoTiff\",\n \"Forestry\",\n \ \"Forest Conservation/Protection\",\n \"Sentinel-2\",\n \"MSI\"\n \ ],\n \"created\": \"2023-09-05T00:00:00.00Z\",\n \"description\": \"False colour satellite data allows you to upgrade your forest surveys. It provides you with a broader perspective of biotic and abiotic disturbances in real-time. This enables you to make more informed decisions to safeguard the forests. Forestry professionals can utilise false colour imagery to optimise their forestry operations, such as planning and monitoring tree planting, conducting inventory assessments, and identifying areas for habitat restoration.\",\n \ \"type\": \"Collection\",\n \"title\": \"False Colour Composites\",\n \ \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=F-FCC\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n },\n \ \"quicklook\": {\n \"roles\": [\"overview\"],\n \"href\": \"https://eovoc.spacebel.be/images/fcc.png\",\n \"type\": \"image/png\",\n \ \"title\": \"graphic overview\"\n }\n },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series F-FCC\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for F-FCC\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/F-FCC/api\",\n \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"ordering\",\n \ \"href\": \"https://emc.spacebel.be/ordering?collection=F-FCC\",\n \ \"type\": \"text/html\",\n \"title\": \"Order F-FCC Product\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://eovoc.spacebel.be/images/FC_Brochure_final.pdf\",\n \"type\": \"application/pdf\",\n \"title\": \"F-FCC Brochure - F-FCC Product Description\"\n },\n {\n \"rel\": \"alternate\",\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/Spacebel SA\",\n \"title\": \"More collections for Spacebel SA\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-2\",\n \ \"title\": \"More collections for Sentinel-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/s2-msi\",\n \ \"title\": \"More collections for MSI instrument\"\n }\n \ ],\n \"id\": \"F-FCC\",\n \"updated\": \"2023-09-05T00:00:00.00Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"Spacebel SA\",\n \"url\": \"https://www.spacebel.com\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"MSI\"],\n \ \"platform\": [\"Sentinel-2\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2016-06-22T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"World\",\n \"Planet\",\n \"Land Surface\",\n \"Mapping and Cartography\",\n \"Natural Hazards and Disaster Risk\",\n \"EARTH SCIENCE > LAND SURFACE\",\n \"EARTH SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\",\n \"VIS (0.40 - 0.75 \xB5m)\",\n \"NIR (0.75 - 1.30 \xB5m)\",\n \"Sun-synchronous\",\n \ \"Very High Resolution - VHR (0 - 5m)\",\n \"475 km (reference)\",\n \ \"25 km\",\n \"Imaging Spectrometers/Radiometers\",\n \"PlanetScope\",\n \ \"PlanetScope Camera\"\n ],\n \"created\": \"2019-08-09T00:00:00.00Z\",\n \ \"description\": \"The PlanetScope Level 1B Basic Scene and Level 3B Ortho Scene full archive products are available as part of Planet imagery offer. The Unrectified Asset: PlanetScope Basic Analytic Radiance (TOAR) product is a Scaled Top of Atmosphere Radiance (at sensor) and sensor corrected product, without correction for any geometric distortions inherent in the imaging processes and is not mapped to a cartographic projection. The imagery data is accompanied by Rational Polynomial Coefficients (RPCs) to enable orthorectification by the user. This kind of product is designed for users with advanced image processing and geometric correction capabilities. Basic Scene Product Components and Format Product Components:\\t - Image File (GeoTIFF format) - Metadata File (XML format) - Rational Polynomial Coefficients (XML format) - Thumbnail File (GeoTIFF format) - Unusable Data Mask UDM File (GeoTIFF format) - Usable Data Mask UDM2 File (GeoTIFF format) Bands: 4-band multispectral image (blue, green, red, near-infrared) or 8-band (coastal-blue, blue, green I, green, yellow, red, Rededge, near-infrared) Ground Sampling Distance:\\t - Approximate, satellite altitude dependent - Dove-C: 3.0 m-4.1 m - Dove-R: 3.0 m-4.1 m - SuperDove: 3.7 m-4.2 m Accuracy: <10 m RMSE The Rectified assets: The PlanetScope Ortho Scene product is radiometrically-, sensor- and geometrically- corrected and is projected to a UTM/WGS84 cartographic map projection. The geometric correction uses fine Digital Elevation Models (DEMs) with a post spacing of between 30 and 90 metres. Ortho Scene Product Components and Format Product Components:\\t - Image File (GeoTIFF format) - Metadata File (XML format) - Thumbnail File (GeoTIFF format) - Unusable Data Mask UDM File (GeoTIFF format) - Usable Data Mask UDM2 File (GeoTIFF format) Bands: 3-band natural color (red, green, blue) or 4-band multispectral image (blue, green, red, near-infrared) or 8-band (costal-blue, blue, green I, green, yellow, red, RedEdge, near-infrared) Ground Sampling Distance:\\t - Approximate, satellite altitude dependent - Dove-C: 3.0 m-4.1 m - Dove-R: 3.0 m-4.1 m - SuperDove: 3.7 m-4.2 m Projection: UTM WGS84 Accuracy: <10 m RMSE PlanetScope Ortho Scene product is available in the following: PlanetScope Visual Ortho Scene product is orthorectified and color-corrected (using a colour curve) 3-band RGB Imagery. This correction attempts to optimise colours as seen by the human eye providing images as they would look if viewed from the perspective of the satellite PlanetScope Surface Reflectance product is orthorectified, 4-band BGRN or 8-band Coastal Blue, Blue, Green I, Green, Yellow, Red, RedEdge, NIR Imagery with geometric, radiometric and corrected for surface reflection. This data is optimal for value-added image processing such as land cover classifications. \ PlanetScope Analytic Ortho Scene Surface Reflectance product is orthorectified, 4-band BGRN or 8-band Coastal Blue, Blue, Green I, Green, Yellow, Red, RedEdge, NIR Imagery with geometric, radiometric and calibrated to top of atmosphere radiance. _$$Planet Explorer Catalogue$$ https://www.planet.com/explorer/ can be accessed (Planet registration requested) to discover and check the data readiness. It is worth to mention that the data distribution is based on Data Voucher, corresponding to maximum amount of square kilometers can be ordered and downloaded by the project in a maximum period of 15 moths (this duration cannot be extended) starting from the project proposal acceptance date. Each Date Voucher includes PlanetScope tile view streaming access for a total of 20,000 tiles per calendar month during the project period. All details about the data provision, data access conditions and quota assignment procedure are described in the _$$Terms of Applicability$$ https://earth.esa.int/eogateway/documents/20142/37627/Access-to-ESAs-Planet-Missions-Terms-of-Applicability.pdf available in Resources section.\",\n \"type\": \"Collection\",\n \"title\": \"PlanetScope Full Archive\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://www.planet.com/products/#satellite-imagery\",\n \ \"type\": \"text/html\",\n \"title\": \"Planet products - Catalogue\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Planet-combined-imagery-product-specs-2020.pdf?text=Combined-Imagery-Product-Spec.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Imagery Product Specifications - Product Specifications\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://developers.planet.com/docs/apps/explorer/\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Explorer User Guide - User Manual\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://www.planet.com/explorer/\",\n \"type\": \"text/html\",\n \"title\": \"Planet Explorer Catalogue - Catalogue\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Access-to-ESAs-Planet-Missions-Terms-of-Applicability.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Terms of Applicability - Access Guide\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/PlanetScope\",\n \ \"title\": \"More collections for PlanetScope platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/94314806-9c68-521a-87e2-8cd838eb9de0\",\n \ \"title\": \"More collections for PlanetScope Camera instrument\"\n \ }\n ],\n \"id\": \"PlanetScope.Full.Archive\",\n \"updated\": \"2023-06-13T13:23:41Z\",\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"PlanetScope Camera\"],\n \"platform\": [\"PlanetScope\"]\n }\n },\n {\n \ \"extent\": {\n \"spatial\": {\"bbox\": [[\n -10,\n \ 30,\n 50,\n 80\n ]]},\n \"temporal\": {\"interval\": [[\n \"2019-02-01T00:00:00.000Z\",\n null\n \ ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"Europe\",\n \"Zone of Exclusivity\",\n \"Agriculture\",\n \ \"Soil Moisture\",\n \"Energy and Natural Resources\",\n \"Terrestrial Hydrosphere\",\n \"EARTH SCIENCE > AGRICULTURE\",\n \"EARTH SCIENCE > AGRICULTURE > SOILS > SOIL MOISTURE/WATER CONTENT\",\n \"EARTH SCIENCE > HUMAN DIMENSIONS > ECONOMIC RESOURCES\",\n \"EARTH SCIENCE > TERRESTRIAL HYDROSPHERE\",\n \"L-Band (19.4 - 76.9 cm)\",\n \"Sun-synchronous\",\n \ \"High Resolution - HR (5 - 20 m)\",\n \"Medium Resolution - MR (20 - 500 m)\",\n \"620 km\",\n \"14-66 km (beam dependent) for stripmap 108-235 km (beam dependent) for topsar\",\n \"Imaging Radars\",\n \"SAOCOM-1A\",\n \"SAOCOM-1B\",\n \"SAOCOM-SAR\"\n \ ],\n \"created\": \"2021-10-27T00:00:00.00Z\",\n \"description\": \"This collection provides access to the SAOCOM products acquired in the ASI Zone of Exclusivity, that correspond mainly to the European territory plus the international waters in front of North Africa and the Middle East, archived and catalogued in the ASI/CONAE dissemination system.\",\n \"type\": \"Collection\",\n \"title\": \"SAOCOM data products\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \ \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://www.asi.it/en/earth-science/saocom/\",\n \ \"type\": \"text/html\",\n \"title\": \"ASI SAOCOM portal - Web site\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"http://saocom.asi.it:8081/\",\n \"type\": \"text/html\",\n \ \"title\": \"ASI SAOCOM Data Hub - Catalogue\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://www.asi.it/wp-content/uploads/2021/07/SAOCOM-membership-guide-1.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Membership guide - User Guide\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://catalogos.conae.gov.ar/catalogo/docs/SAOCOM/SAOCOM-1_SAR_Level-1_Product-Format_13Jan2020.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Level1 Products Format - Product Specification\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SAOCOM.data.products?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/SAOCOM-1A\",\n \ \"title\": \"More collections for SAOCOM-1A platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/SAOCOM-1B\",\n \ \"title\": \"More collections for SAOCOM-1B platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/a0042d58-dc4b-5cca-ab2a-d849b4db3e73\",\n \ \"title\": \"More collections for SAOCOM-SAR instrument\"\n }\n \ ],\n \"id\": \"SAOCOM.data.products\",\n \"updated\": \"2023-06-13T13:23:42Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"https://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"SAOCOM-SAR\"],\n \ \"platform\": [\n \"SAOCOM-1A\",\n \"SAOCOM-1B\"\n \ ]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"2020-07-09T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"Level 2C assisted wind fields assimilation processing\",\n \"Atmosphere\",\n \"Atmospheric Indicators\",\n \ \"Atmospheric Winds\",\n \"Climate\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\",\n \ \"EARTH SCIENCE > CLIMATE INDICATORS\",\n \"UV (0.01 - 0.4 \xB5m)\",\n \"Sun-synchronous\",\n \"Horizontal resolution at observation scale for Rayleigh/Mie: 87/10 km 250-2000 m vertical resolution\",\n \ \"ALD_U_N_2C\",\n \"320 km\",\n \"Lidar/Laser Sounders\",\n \ \"Aeolus\",\n \"ALADIN\"\n ],\n \"created\": \"2023-02-17T00:00:00.00Z\",\n \ \"description\": \"The Level 2C wind product of the Aeolus mission provides ECMWF analysis horizontal wind vectors at the geolocations of assimilated L2B HLOS wind components. The L2C can therefore be described as an Aeolus-assisted horizontal wind vector product. The L2C is a distinct product, however the L2C and L2B share a common Earth Explorer file template, with the L2C being a superset of the L2B. The L2C consists of extra datasets appended to the L2B product with information which are relevant to the data assimilation of the L2B winds.\",\n \"type\": \"Collection\",\n \"title\": \"Aeolus Level 2C assisted wind fields resulting from NWP Numerical Weather Prediction assimilation processing\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-Level2-Algorithm-Theoretical-Basis-Document.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Aeolus L2B Algorithm Theoretical Baseline Document - Level 2B processor algorithm description\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-L2B-2C-Input-Output-DD-ICD.pdf/2321b6a0-27d0-b628-771e-fcca4928bc32\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Aeolus L2B/2C Processor Input/Output Data Definitions Interface Control Document - Level 2B/2C data definition\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-Sensor-and-Product-Description.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Aeolus Sensor and Product Description - Aeolus Sensor and Product Description\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Aeolus\",\n \ \"title\": \"More collections for Aeolus platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/a032cde6-16e3-5940-988e-f6d79870d14c\",\n \ \"title\": \"More collections for ALADIN instrument\"\n }\n \ ],\n \"id\": \"L2C_Wind_products\",\n \"updated\": \"2023-06-13T13:23:39Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"ALADIN\"],\n \ \"platform\": [\"Aeolus\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -84,\n 180,\n \ 84\n ]]},\n \"temporal\": {\"interval\": [[\n \"2013-11-13T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"World\",\n \"Planet\",\n \"Land Surface\",\n \"Mapping and Cartography\",\n \"Natural Hazards and Disaster Risk\",\n \"EARTH SCIENCE > LAND SURFACE\",\n \"EARTH SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\",\n \"VIS (0.40 - 0.75 \xB5m)\",\n \"NIR (0.75 - 1.30 \xB5m)\",\n \"Sun-synchronous\",\n \ \"Very High Resolution - VHR (0 - 5m)\",\n \"475-575 km\",\n \ \"8 km at nadir for SkySat-1 to -2, 6.6 km at nadir for SkySat-3 to -13\",\n \"Imaging Spectrometers/Radiometers\",\n \"SkySat\",\n \ \"SkySat Camera\"\n ],\n \"created\": \"2019-08-09T00:00:00.00Z\",\n \ \"description\": \"The SkySat Level 2B Basic Scene, Level 3B Ortho Scene and Level 3B Consolidated full archive and new tasking products are available as part of Planet imagery offer. The SkySat Basic Scene product is uncalibrated and in a raw digital number format, not corrected for any geometric distortions inherent in the imaging process. Rational Polynomial Coefficients (RPCs) is provided to enable orthorectification by the user. Basic Scene Product Components and Format Processing levels\\t/\\t- Analytic (unorthorectified, radiometrically corrected, multispectral BGRN); - Analytic DN (unorthorectified, multispectral BGRN); - Panchromatic DN (unorthorectified, panchromatic)\\t// Product Components and Format\\t/\\t- Image File (GeoTIFF format); - Metadata File (JSON format); - Rational Polynomial Coefficients (Text File); - UDM File (GeoTIFF format)\\t// Image configuration\\t/\\t- 4-band Analytic DN Image (Blue, Green, Red, NIR); - 1-band Panchromatic DN Image (Pan)\\t// Ground Sampling Distance\\t/\\t3.7 m at nadir (average at reference altitude 475 km)\\t// Ground Sampling Distance (nadir)\\t/\\t- Panchromatic 0.86m and Multispectral 1.0m for SkySat-1&2; - Panchromatic 0.65m and Multispectral 0.8m for SkySat-3 to 13 (0.72 m and 1.0m for data acquired before 30/06/2020)\\t// Accuracy\\t/\\t<50 m RMSE\\t// \ The SkySat Ortho Scene is sensor- and geometrically-corrected (by using DEMs with a post spacing of between 30 and 90 meters) and is projected to a cartographic map projection; the accuracy of the product will vary from region to region based on available GCPs. Different products are available: \ - The SkySat Visual Ortho Scene product is orthorectified, pansharpened, and color-corrected (using a color curve) 3-band RGB Imagery - The SkySat Pansharpened Multispectral Scene product is orthorectified, pansharpened 4-band BGRN Imagery - The SkySat Analytic DN Ortho Scene product is orthorectified, multispectral BGRN, uncalibrated, digital number imagery product. The product has been processed to remove distortions caused by terrain; It eliminates the perspective effect on the ground (not on buildings), restoring the geometry of a vertical shot. Transformation to at-sensor radiance is not included - The SkySat Panchromatic DN Ortho Scene product is orthorectified, panchromatic, uncalibrated, digital number imagery product. It has a finer GSD than the Analytic Product. Transformation to at-sensor radiance is not included. - The SkySat Analytic Ortho Scene are calibrated multispectral imagery products with radiometric corrections applied to correct for any sensor artifacts and transformation to top-of-atmosphere radiance. - The SkySat Consolidated Product are Ortho Collect product created by composing ~60 SkySat Ortho Scenes (Visual, Pansharpened Multispectral, Analytic DN, Panchromatic DN) along an imaging strip into segments. Ortho Scene Product Components and Format \\t/\\tVisual Ortho\\t/\\tPansharpened Multispectral\\t/\\tAnalytic DN Ortho\\t/\\tPanchromatic DN Ortho\\t/\\tAnalytic Ortho\\t// Product Components and Format\\t/\\tImage File (GeoTIFF format); Metadata File (JSON format); Rational Polynomial Coefficients (Text File); UDM File (GeoTIFF format)\\t/\\tImage File (GeoTIFF); Metadata File (JSON format); Rational Polynomial Coefficients (Text File); UDM File (GeoTIFF format)\\t/\\tImage File (GeoTIFF format); Metadata File (JSON format); Rational Polynomial Coefficients (Text File); UDM File (GeoTIFF format);\\t/\\tImage File (GeoTIFF format); Metadata File (JSON format); Rational Polynomial Coefficients (Text File); UDM File (GeoTIFF format)\\t/\\tImage File (GeoTIFF format); Metadata File (JSON format); Rational Polynomial Coefficients (Text File); UDM File (GeoTIFF format)\\t// Image configuration\\t/\\t3-band Pansharpened Image (PS Red, PS Green, PS Blue)\\t/\\t4-band Pansharpened Image (PS Blue, PS Green, PS Red, PS NIR)\\t/\\t4-band Analytic DN Image (B, G, R, N)\\t/\\t1-band Panchromatic Image\\t/\\t4-band Analytic Image (B, G, R, N)\\t// Ground Sampling Distance\\t/\\t50 cm\\t/\\t50 cm\\t/\\t50 cm\\t/\\t50 cm\\t/\\t50 cm\\t// Projection\\t/\\tUTM WGS84\\t/\\tUTM WGS84\\t/\\tUTM WGS84\\t/\\tUTM WGS84\\t/\\tUTM WGS84\\t// Accuracy\\t/\\t<10 m RMSE\\t/\\t<10 m RMSE\\t/\\t<10 m RMSE\\t/\\t<10 m RMSE\\t/\\tradiometric accuracy: +/- 5% Relative accuracy at < 10 degrees off-nadir angle\\t// The products are available as part of the Planet provision from RapidEye, Skysat and PlanetScope constellations. SkySat collection has worldwide coverage: The Planet Explorer Catalogue can be accessed (Planet registration requested) to discover and check the data readiness. All details about the data provision, data access conditions and quota assignment procedure are described into the Terms of Applicability (https://earth.esa.int/eogateway/documents/20142/37627/Access-to-ESAs-Planet-Missions-Terms-of-Applicability.pdf).\",\n \ \"type\": \"Collection\",\n \"title\": \"SkySat Full Archive and New Tasking\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://www.planet.com/products/#satellite-imagery\",\n \"type\": \"text/html\",\n \"title\": \"Planet products - Web site\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Planet-combined-imagery-product-specs-2020.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Imagery Product Specifications - Product Specifications\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://developers.planet.com/docs/apps/explorer/\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Explorer User Guide - User Manual\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/SkySat-tasking-request-form.pdf/075f845e-13bd-36e2-4743-3aeb2053c61c\",\n \ \"type\": \"application/pdf\",\n \"title\": \"SkySat Tasking Request Form - Access guide\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Access-to-ESAs-Planet-Missions-Terms-of-Applicability.pdf/91fdeed4-2efe-1bed-8058-1dddb6e14fa6\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Terms of Applicability - Access guide\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/SkySat\",\n \ \"title\": \"More collections for SkySat platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/429a0634-46aa-518a-ac92-b5bcec0315d4\",\n \ \"title\": \"More collections for SkySat Camera instrument\"\n }\n \ ],\n \"id\": \"SkySat.Full.Archive.and.New.Tasking\",\n \"updated\": \"2023-06-13T13:23:42Z\",\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \"name\": \"ESA/ESRIN\",\n \"url\": \"https://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"SkySat Camera\"],\n \"platform\": [\"SkySat\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2009-08-01T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"World\",\n \"GEOSAT\",\n \"DIMAP\",\n \ \"TIFF\",\n \"Vegetation\",\n \"Agriculture\",\n \"Forestry\",\n \ \"EARTH SCIENCE > BIOSPHERE > VEGETATION\",\n \"EARTH SCIENCE > AGRICULTURE\",\n \"EARTH SCIENCE > BIOSPHERE > ECOSYSTEMS > TERRESTRIAL ECOSYSTEMS > FORESTS\",\n \"VIS (0.40 - 0.75 \xC2\xB5m)\",\n \"NIR (0.75 - 1.30 \xC2\xB5m)\",\n \"Sun-synchronous\",\n \"Medium Resolution - MR (20 - 500 m)\",\n \"663 km\",\n \"625 km\",\n \ \"Cameras\",\n \"GEOSAT-1\",\n \"SLIM6\"\n ],\n \ \"created\": \"2019-05-22T00:00:00.00Z\",\n \"description\": \"GEOSAT-1 full archive and new tasking products are available at 22 m resolution in two processing levels.\\r\\rL1R (Basic Geopositioned): All 3 spectral channels combined into a band-registered image. Geopositioned product based on sensor model. Coefficients derived from satellite orientation parameters coming from telemetry and appended to metadata\\rL1T (L1R orthorectified): Orthorectified to sub-pixel accuracy (10 metres RMS error approximately) with respect to Landsat ETM+ reference data and hole-filled seamless SRTM DEM data V3, 2006 (90 m)\\rGEOSAT-1 products are provided in DIMAP format. The image products are delivered in the TIFF and GeoTIFF image formats by default. All products can be provided in False Colours (R,G,NIR) or Natural Colours (R, G, Synthetic Blue).\\r\\rAll details about the data provision, data access conditions and quota assignment procedure are described into the Terms of Applicability available in Resources section.\\r\\rThe list of available archived data can be retrieved using the GEOSAT catalogue (https://catalogue.geosat.space/cscda/extcat/)\\rAll details about the data provision, data access conditions and quota assignment procedure are described into the Terms of Applicability available in Resources section. \\r\\rThe list of available archived data can be retrieved using the Deimos catalogue (http://www.deimos-imaging.com/catalogue).\",\n \"type\": \"Collection\",\n \"title\": \"GEOSAT-1 full archive and tasking\",\n \ \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/GEOSAT-1\",\n \ \"title\": \"More collections for GEOSAT-1 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/5cc6eaab-0ddc-572f-a1b7-afa52ea5333d\",\n \ \"title\": \"More collections for SLIM6 instrument\"\n }\n \ ],\n \"id\": \"Geosat-1.Full.archive.and.tasking\",\n \"updated\": \"2023-06-13T13:23:40Z\",\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \"name\": \"ESA/ESRIN\",\n \"url\": \"https://earth.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"SLIM6\"],\n \ \"platform\": [\"GEOSAT-1\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2016-06-01T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"World\",\n \"GNSS\",\n \"AIS\",\n \ \"ADS-B\",\n \"Atmosphere\",\n \"Ionosphere and Magnetosphere Dynamics\",\n \"Weather Events\",\n \"Oceans\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \"EARTH SCIENCE > SUN-EARTH INTERACTIONS > IONOSPHERE/MAGNETOSPHERE DYNAMICS\",\n \"EARTH SCIENCE > ATMOSPHERE > WEATHER EVENTS\",\n \"EARTH SCIENCE > OCEANS\",\n \"Sun-synchronous\",\n \ \"500 km\",\n \"Imaging Spectrometers/Radiometers\",\n \"Spire\",\n \ \"AIRSAFE\",\n \"SENSE\",\n \"STRATOS\"\n ],\n \ \"created\": \"2020-09-04T00:00:00.00Z\",\n \"description\": \"The data collected by Spire from it's 110 satellites launched into Low Earth Orbit (LEO) has a diverse range of applications, from analysis of global trade patterns and commodity flows to aircraft routing to weather forecasting. The data also provides interesting research opportunities on topics as varied as ocean currents and GNSS-based planetary boundary layer height. The following products can be requested: ADS-B Data Stream Global ADS-B satellite data observed by Spire satellites and processed through the ground stations network. Historical ADS-B data older than 6 months can be delivered as data cuts containing CSV file(s) accessible through a Web Service or Cloud storage solutions. Live ADS-B data is available through a streaming API, and recent historical data can be accessed through a REST API. Data is distributed as a monthly subscription: historical data can be requested starting from 3 December 2008, the time period for live data starts from a user-defined date and continues for 30 days. AIS AIS messages include satellite AIS (S-AIS) as observed by Spire satellites and terrestrial AIS (T-AIS) from third party sensor stations (up to 40 million messages per day). Historical AIS data are delivered as a cvs file with availability back to June 2016 or via Historical API from December 2018; live AIS data are pushed to end users via TCP or through Messages API. Data is distributed as a monthly subscription, from a user-defined date and continues for a 30 day period. GNSS-Radio Occultation GNSS Radio Occultation (GNSS-RO) measurements are collected globally on a continuous basis, generating profiles of the Earth\\u2019s atmosphere. Derived Level 1 and Level 2 products include both atmospheric and ionospheric products. Historical data for most of the GNSS-RO products are available from December 2018 to the present. Near real-time (within 90 minutes or less latency from collection to delivery) GNSS-RO profiles are also available upon request. GNSS Reflectometry GNSS Reflectometry (GNSS-R) is a technique to measure Earth\\u2019s surface properties using reflections of GNSS signals in the form of a bistatic radar. Spire collects two types of GNSS-R data: conventional, near-nadir incidence LHCP reflections collected by the Spire GNSS-R satellites (e.g., Spire GNSS-R \\u201cBatch-1\\u201d satellites) and grazing angle (i.e., low elevation angle) RHCP reflections collected by the Spire GNSS-RO satellites. Derived Level 1 and Level 2 products are available, as well as some special Level 0 raw intermediate frequency (IF) data. Historical grazing angle GNSS-R data are available from May 2019 to the present, while conventional GNSS-R data are available from December 2020 to the present. \ Name: Automatic Identification System (AIS) Description: The automatic identification system (AIS) is an automatic tracking system that uses transponders on ships and is used by vessel traffic services. Spire data includes satellite AIS (S-AIS) as observed by Spire satellites and terrestrial AIS (T-AIS) from third party sensor stations. Data format and content: .parquet.gz files The AIS files contain time-series data on received AIS messages, both the raw NMEA message and added post-processing data for each message. Application: Supply chain analysis, commodity trading, identification of illegal fishing or dark targets, ship route and fuel use optimization, analysis of global trade patterns, anti-piracy, autonomous vessel software, ocean currents. Name: Automatic Dependent Surveillance-Broadcast (ADS-B) Description: Spire AirSafe ADS-B products give access to satellite and terrestrial ADS-B data from captured aircrafts. Data format and content: .csv.gz files The decompressed csv file contains a list of hexadecimal representations of ADS-B messages associated with the timestamp they were received on the satellite. Application: Fleet management, ICAO regulatory compliance, route optimization, predictive maintenance, global airspace, domain awareness. Name: Global Navigation Satellite System Radio Occultation (GNSS-RO) Description: GNSS atmospheric radio occultation (GNSS-RO) relies on the detection of a change in a radio signal as it passes through a planet's atmosphere, i.e. as it is refracted by the atmosphere. This data set contains precise orbit determination (POD) solutions, satellite attitude information, high-rate occultation observations, excess phase, and derived atmospheric dry temperature profiles. Data format and content: podObs*.rnx This file contains raw pseudorange, carrier phase, Doppler frequency, and signal-to-noise measurements for each observed GPS signal from a single Spire satellite which allow to estimate the positions and velocities of each Spire satellite and also used to derive ionospheric total electron content data. leoOrb*.sp3 This file contains the estimated position, velocity and receiver clock error of a given Spire satellite after processing of the POD observation file leoAtt*.log It contains 1 Hz rate quaternion information measured from a single Spire satellite describing the satellite orientation. opnGns*ro.bin, opnGns*rst.bin these files contain raw measurements from the occulting GNSS satellite (one for each signal frequency) and raw phase data from one or more reference GNSS satellites. atmPhs* The file contains occultation excess phase delay. Also contains SNR values, ransmitter and receiver positions and open loop model information. atmPrf*.nc The file contains profiles of atmospheric dry pressure, dry temperature and neutral refractivity as a function of altitude produced from full processing of one occultation event. bfrPrf*.bufr The file contains derived profiles of dry pressure, dry temperature, refractivity and bending angle for each occultation. Application:\\tAtmospheric profiles of pressure, dry temperature, bending angle, and refractivity used in numerical weather prediction data assimilation and climate change studies. Name: Raw IF samples from GNSS-RO satellites Description: Raw intermediate frequency (IF) sampled data (I/Q) from the GNSS receiver front-end of GNSS-RO satellites. Data format and content: rocRIF*.zip Binary raw IF data and associated ancillary data (e.g., POD data) in a zip archive per collection event. Application: GNSS-RO studies, GNSS RFI and jamming monitoring, research. Name: Raw IF samples from GNSS-R satellites Description: Raw intermediate frequency (IF) sampled data (I/Q) from the GNSS receiver front-end of conventional GNSS-R satellites. Data format and content: gbrRIF*.zip Binary raw IF data and associated ancillary data (e.g., POD data) in a zip archive per collection event. Application: GNSS-R studies, GNSS RFI and jamming monitoring, research, etc. Name: Grazing angle GNSS-R observations Description: During grazing angle GNSS-R events, signal reflection at two frequencies is observed through the limb-facing antenna and is trackedusing an open-loop tracking technique thatrelies on a model topredict the propagationdelay and Doppler of thereflected signal. Simultaneous open-looptracking of the signaldirectly along theline-of-sight from thetransmitter to thereceiver is alsoperformed to provideadditional data that maybenecessary for signalcalibration. The mainoutput of the open-looptracking are in-phase (I)and quadrature (Q)accumulation samples(nominally at 50 Hz),which represent the residual Doppler (phase) from the model. Data format and content: grzObs*.nc L1A filecontains rawopen loopcarrier phasemeasurementsat 50 Hzsampling forgrazingangleGNSS-Rreflectionscaptured in the GNSS-RO RHC Pantennas, (bothdirect andreflectedsignals) on GNSS-RO satellites. Application: Sea surface and sea ice height extent, and classification. \ Name: Georeferenced grazing angle GNSS-R observations Description: The low-levelobservations of the high-rate grazing angle GNSS-R observationsbut withthegeoreferenced bistatic radar parameters of the satellite receiver,specular reflection, and GNSS transmitter included. Data format and content: grzRfl*.nc L1B file contains the georeferenced grazing angle GNSS-R data collected by Spire GNSS-RO satellites, including the low-level observables and bistatic radar geometries (e.g., receiver, specular reflection, and the transmitter locations). Application: Sea surface and sea ice height extent, and classification Name: GNSS-R calibrated bistatic radar reflectivities Description: Higher level product used to derive land-surface reflectivity. Data format and content: gbrRfl*.nc L1A along-track calibrated relative power between reflected and direct signals (e.g., bistatic radar reflectivities) measured by Spire conventional GNSS-R satellites. Application: GNSS-R studies, soil moisture, ocean wind, and sea ice applications Name: GNSS-R calibrated bistatic radar cross-sections Description: Higher level product used to derive ocean surface roughness products. Data format and content: gbrRCS*.nc L1B along-track calibrated and normalized bistatic radar cross-sections measured by Spire conventional GNSS-R satellites. Application: GNSS-R studies, ocean wind and sea ice applications Name: Combined Surface Soil Moisture Description: Combined CYGNSS and SMAP soil moisture data are provided as a combined surface soil moisture (COMB-SSM) product in two data level formats: L2U1 and L3U1. 6 x 6 km grid cell. L-band measurements of surface soil moisture benefit from better vegetation penetration in comparison to traditional C-band measurements. Data format and content: COMB-SSM.nc This file contains the combined data product containing measurements from both CYGNSS and SMAP reported on a 6 km global Equi7Grid grid. Application: Agriculture, crop insurance, farming solutions, climatology, terrain awareness, peatlands and wetlands monitoring etc. Name: Ionosphere total electron content Description: Spire routinely collects and processes a large volume of total electron content (TEC) data, representing the line-of-sight integration of electron density between a Spire satellite and a GNSS satellite. Each file contains line-of-sight ionospheric total electron content (TEC) estimates derived for a \\u2018single viewing arc\\u2019 contained in the POD observation file. Viewing arcs are at least 10 minutes in duration. Data format and content: podTec*.nc This file contains the line-of-sight total electron content with associated orbital information. Application: Space weather research, tsunamigenic earthquakes, weather applications, space situational awareness (SSA), autonomous vehicles etc Name: Ionosphere scintillation Description: The scintillation index for each GNSS frequency is computed onboard the spacecraft. This index provides a measure of the fluctuations of the GNSS signal over the course of 10 seconds caused by propagation of the radio signals through electron density irregularities in the ionosphere. After the raw indices are downlinked to the ground, they are packaged along with associated metadata such as orbit position to create the final scintillation data product. Data format and content: scnLv1*.nc This file contains on-board computed scintillation data (S4 only) with associated orbital information Application: Space weather research, solar events, TIDs, weather applications positioning and navigation, communications etc. Name: Electron density profile Description: Electron density profiles are retrieved as a function of altitude. Electron density profiles are processed from podTec netcdf files, which span a sufficient elevation angle range. A standard Abel inversion algorithm is applied to retrieve the profiles. Data format and content: ionPrf*.nc This file contains electron density profile retrieved from podTec files spanning appropriate elevation angle range Application: Space weather research, solar events, TIDs, weather applications positioning and navigation, communications. The products are available as part of the Spire provision with worldwide coverage. All details about the data provision, data access conditions and quota assignment procedure are described in the Terms of Applicability (https://earth.esa.int/eogateway/documents/20142/37627/SPIRE-Terms-Of-Applicability.pdf/0dd8b3e8-05fe-3312-6471-a417c6503639).\",\n \ \"type\": \"Collection\",\n \"title\": \"Spire live and historical data\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Spire-Product-Guide.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Spire Product Guide - Product Description\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/SPIRE-Terms-Of-Applicability.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Spire Terms of Applicability - Access Guide\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Spire\",\n \ \"title\": \"More collections for Spire platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/1c3bd49f-bdc9-5c33-a273-2f0f7a5b3f88\",\n \ \"title\": \"More collections for STRATOS instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/e5735a20-bdb8-5cff-b385-c16c84c855f4\",\n \ \"title\": \"More collections for SENSE instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/11f58510-1770-53a7-9b13-5a5564b4e9c2\",\n \ \"title\": \"More collections for AIRSAFE instrument\"\n }\n \ ],\n \"id\": \"Spire.live.and.historical.data\",\n \"updated\": \"2023-06-13T13:23:42Z\",\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\n \ \"STRATOS\",\n \"SENSE\",\n \"AIRSAFE\"\n ],\n \ \"platform\": [\"Spire\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2012-10-01T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"World\",\n \"Multispectral\",\n \"Panchromatic\",\n \ \"Pansharpened\",\n \"Pleiades\",\n \"Agriculture\",\n \ \"Afforestation/Reforestation\",\n \"Crops and Yields\",\n \ \"Forest Fires\",\n \"Landscape\",\n \"Topography\",\n \ \"Weather Events\",\n \"EARTH SCIENCE > AGRICULTURE\",\n \"EARTH SCIENCE > AGRICULTURE > FOREST SCIENCE > AFFORESTATION/REFORESTATION\",\n \ \"EARTH SCIENCE > AGRICULTURE > AGRICULTURAL PLANT SCIENCE > CROP/PLANT YIELDS\",\n \"EARTH SCIENCE > AGRICULTURE > FOREST SCIENCE > FOREST FIRE SCIENCE\",\n \"EARTH SCIENCE > LAND SURFACE > LANDSCAPE\",\n \"EARTH SCIENCE > LAND SURFACE > TOPOGRAPHY\",\n \"EARTH SCIENCE > ATMOSPHERE > WEATHER EVENTS\",\n \"VIS (0.40 - 0.75 \xB5m)\",\n \"NIR (0.75 - 1.30 \xB5m)\",\n \"SWIR (1.3 - 3.0 \xB5m)\",\n \"Sun-synchronous\",\n \ \"Very High Resolution - VHR (0 - 5m)\",\n \"High Resolution - HR (5 - 20 m)\",\n \"832 km for SPOT-1 to 5, 694 km for SPOT-6 and 7\",\n \"60 km\",\n \"Cameras\",\n \"SPOT 6\",\n \"SPOT 7\",\n \"NAOMI\"\n ],\n \"created\": \"2019-07-16T00:00:00.00Z\",\n \ \"description\": \"The SPOT 6 and 7 satellites ensure data continuity with the no longer operational SPOT 5 satellite and provide an archive of very high resolution optical acquisition as well as the possibility to task the satellites for new acquisitions. Following the completion of the SPOT 7 mission in March 2023, new acquisition tasking is only available for the SPOT 6 satellite. The ortho-products are automatically generated by the SPOT 6 and 7 ground segment, based on SRTM database or Reference3D when available. The projection available for SPOT 6 and 7 ortho-products is UTM, datum WGS84. \ Bands combinations: - Pansharpened: colour image at 1.5 m resolution - Bundle: 1.5 m panchromatic image and 6 m multispectral image Geometric processing levels: - Primary: The Primary product is the processing level closest to the natural image acquired by the sensor. This product restores perfect collection conditions: the sensor is placed in rectilinear geometry, and the image is clear of all radiometric distortion. - Standard Ortho: The Ortho product is a georeferenced image in Earth geometry, corrected from acquisition and terrain off-nadir effects. - Tailored ortho: Aside from the Standard Ortho product, when different specifications are needed, a custom orthorectification, with a more precise 3D model provided by the client or acquired for the purpose, can be provided on demand.\",\n \"type\": \"Collection\",\n \"title\": \"SPOT 6 & 7 full archive and tasking\",\n \"license\": \"various\",\n \ \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://www.intelligence-airbusds.com/satellite-data/\",\n \ \"type\": \"text/html\",\n \"title\": \"SPOT-6 to 7 products description - Other\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"http://www.intelligence-airbusds.com/spotmaps/\",\n \ \"type\": \"text/html\",\n \"title\": \"SPOTMaps technical information - Other\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/1586698/SPOTMaps2.5.kmz\",\n \ \"title\": \"SPOTMaps 2.5 geographical coverage - Other\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/SPOT-6-7-imagery-user-guide.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"SPOT 6&7 Imagery User Guide - Product Specification\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://www.intelligence-airbusds.com/imagery/constellation/pleiades-neo/how-to-order/\",\n \ \"type\": \"text/html\",\n \"title\": \"OneAtlas guides - Data Access Information\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://www.intelligence-airbusds.com/en/4871-geostore-ordering\",\n \ \"type\": \"text/html\",\n \"title\": \"GeoStore Catalogue - Catalogue\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://oneatlas.airbus.com/\",\n \"type\": \"text/html\",\n \"title\": \"OneAtlas Living Library - Catalogue\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/SPOT-Pleiades-data-terms-of-applicability.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"SPOT and Pleiades Terms of Applicability - Access Guide\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/SPOT%206\",\n \ \"title\": \"More collections for SPOT 6 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/SPOT%207\",\n \ \"title\": \"More collections for SPOT 7 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/ec73a747-76a7-56f1-a011-0465a3ed4a87\",\n \ \"title\": \"More collections for NAOMI instrument\"\n }\n \ ],\n \"id\": \"SPOT67fullarchiveandtasking1\",\n \"updated\": \"2023-06-13T13:23:42Z\",\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \"name\": \"ESA/ESRIN\",\n \"url\": \"https://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"NAOMI\"],\n \ \"platform\": [\n \"SPOT 6\",\n \"SPOT 7\"\n ]\n \ }\n }\n ],\n \"numberReturned\": 10,\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections?datetime=2024-01-01T00%3A00%3A01Z%2F2024-01-01T00%3A00%3A10Z\",\n \ \"type\": \"application/json\",\n \"title\": \"This document\"\n \ },\n {\n \"rel\": \"next\",\n \"href\": \"https://emc.spacebel.be/collections?datetime=2024-01-01T00%3A00%3A01Z%2F2024-01-01T00%3A00%3A10Z&startRecord=11\",\n \ \"type\": \"application/json\",\n \"title\": \"Next results\"\n \ },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for collection search\"\n }\n ],\n \"numberMatched\": 1025\n}" headers: Access-Control-Allow-Headers: - X-PINGOTHER, Content-Type, Authorization, Accept Access-Control-Allow-Methods: - POST,GET,PUT,HEAD,OPTIONS,DELETE Access-Control-Allow-Origin: - '*' Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Connection: - keep-alive Content-Type: - application/json;charset=UTF-8 Date: - Thu, 17 Jul 2025 12:51:02 GMT Expires: - '0' Pragma: - no-cache Server: - openresty Strict-Transport-Security: - max-age=31536000 ; includeSubDomains Transfer-Encoding: - chunked X-Content-Type-Options: - nosniff X-Frame-Options: - DENY X-Served-By: - emc.spacebel.be X-XSS-Protection: - 1; mode=block status: code: 200 message: '' - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://emc.spacebel.be/collections?datetime=2024-01-01T00%3A00%3A01Z%2F2024-01-01T00%3A00%3A10Z&startRecord=11 response: body: string: "{\n \"collections\": [\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"2020-04-20T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"global\",\n \"tropics\",\n \"polar regions\",\n \"atmospheric winds\",\n \"atmospheric dynamic\",\n \ \"troposphere\",\n \"stratosphere\",\n \"air quality\",\n \ \"mie\",\n \"rayleigh\",\n \"clouds\",\n \"aerosols\",\n \ \"wind profiles\",\n \"weather\",\n \"climate\",\n \"weather forecast\",\n \"Atmospheric Winds\",\n \"Atmospheric Indicators\",\n \ \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\",\n \"UV (0.01 - 0.4 \xB5m)\",\n \"Sun-synchronous\",\n \"Horizontal resolution at measurement scale: 3 km; Horizontal resolution at observation scale for Rayleigh/Mie: 87/10 km\",\n \"250-2000 m vertical resolution\",\n \ \"ALD_U_N_1B\",\n \"320 km\",\n \"Lidar/Laser Sounders\",\n \ \"Aeolus\",\n \"ALADIN\"\n ],\n \"created\": \"2020-04-30T00:00:00.00Z\",\n \ \"description\": \"The Level 1B wind product of the Aeolus mission contains the preliminary HLOS (horizontal line-of-sight) wind observations for Rayleigh and Mie receivers, which are generated in Near Real Time. Standard atmospheric correction (Rayleigh channel), receiver response and bias correction is applied. The product is generated within 3 hours after data acquisition.\",\n \"type\": \"Collection\",\n \"title\": \"Aeolus preliminary HLOS (horizontal line-of-sight) wind observations for Rayleigh and Mie receivers\",\n \"license\": \"various\",\n \ \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-Sensor-and-Product-Description.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Aeolus Sensor and Product Description - Aeolus Sensor and Product Description\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Aeolus\",\n \ \"title\": \"More collections for Aeolus platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/a032cde6-16e3-5940-988e-f6d79870d14c\",\n \ \"title\": \"More collections for ALADIN instrument\"\n }\n \ ],\n \"id\": \"L1B_Wind_Products\",\n \"updated\": \"2023-06-15T11:50:19Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"ALADIN\"],\n \ \"platform\": [\"Aeolus\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2010-04-08T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"sci:doi\": \"10.5270/CR2-120cf4c\",\n \"keywords\": [\n \"World\",\n \ \"DIF10\",\n \"Ice Product\",\n \"ice-sheet elevation\",\n \ \"sea-ice freeboard\",\n \"altimeter\",\n \"Oceans\",\n \ \"EARTH SCIENCE > OCEANS\",\n \"Snow and Ice\",\n \"EARTH SCIENCE > CRYOSPHERE > SNOW/ICE\",\n \"EARTH SCIENCE > TERRESTRIAL HYDROSPHERE > SNOW/ICE\",\n \"Inclined, non-sun-synchronous\",\n \"FDM\",\n \ \"LRM\",\n \"SAR\",\n \"SARIn\",\n \"GRD\",\n \ \"GOP\",\n \"IOP\",\n \"Radar Altimeters\",\n \"CryoSat-2\",\n \ \"SIRAL\"\n ],\n \"created\": \"2019-06-04T00:00:00.000Z\",\n \ \"description\": \"CryoSat's primary payload is the SAR/Interferometric Radar Altimeter (SIRAL) (https://earth.esa.int/eogateway/instruments/siral) which has extended capabilities to meet the measurement requirements for ice-sheet elevation and sea-ice freeboard. CryoSat also carries three star trackers for measuring the orientation of the baseline. In addition, a radio receiver called Doppler Orbit and Radio Positioning Integration by Satellite (DORIS) and a small laser retroreflector ensures that CryoSat's position will be accurately tracked. More detailed information on CryoSat instruments is available on the CryoSat mission page. The following CryoSat datasets are available and distributed to registered users: Level 1B and L2 Ice products: FDM, LRM, SAR and SARIn Consolidated Level 2 (GDR): (LRM+SAR+SARIN) consolidated ice products over an orbit Intermediate Level 2 Ice products: LRM, SAR and SARIn L1b and L2 Ocean Products: GOP and IOP CryoTEMPO EOLIS Point Products CryoTEMPO EOLIS Gridded Products Detailed information concerning each of the above datasets is available in the CryoSat Products Overview (https://earth.esa.int/eogateway/missions/cryosat/products) and in the news item: CryoSat Ocean Products now open to scientific community (https://earth.esa.int/web/guest/missions/esa-operational-eo-missions/cryosat/news/-/asset_publisher/47bD/content/cryosat-ocean-products-now-open-to-scientific-community). \ CryoSat Level 1B altimetric products contain time and geo-location information as well as SIRAL measurements in engineering units. Calibration corrections are included and have been applied to the window delay computations. In Offline products, geophysical corrections are computed from Analysis Auxiliary Data Files (ADFs), whereas in FDM products corrections are computed for Forecast ADFs. All corrections are included in the data products and therefore the range can be calculated by taking into account the surface type. The Offline Level 2 LRM, SAR and SARIn ice altimetric products are generated 30 days after data acquisition and are principally dedicated to glaciologists working on sea-ice and land-ice areas. The Level 2 FDM products are near-real time ocean products, generated 2-3 hours after data acquisition, and fulfill the needs of some ocean operational services. Level 2 products contain the time of measurement, the geo-location and the height of the surface. IOP and GOP are outputs of the CryoSat Ocean Processor. These products are dedicated to the study of ocean surfaces, and provided specifically for the needs of the oceanographic community. IOP are generated 2-3 days after data sensing acquisition and use the DORIS Preliminary Orbit. GOP are typically generated 30 days after data sensing acquisition and use the DORIS Precise Orbit. Geophysical corrections are computed from the Analysis ADFs, however following the oceanographic convention the corrections are available but not directly applied to the range (as for FDM). The CryoSat ThEMatic PrOducts (Cryo-TEMPO) projects aim to deliver a new paradigm of simplified, harmonized, and agile CryoSat-2 products, that are easily accessible to new communities of non-altimeter experts and end users. The Cryo-TEMPO datasets include dedicated products over five thematic areas, covering Sea Ice, Land Ice, Polar Ocean, Coastal Ocean and Inland Water, together with a novel SWATH product (CryoTEMPO-EOLIS) that exploits CryoSat's SARIn mode over ice sheet margins. The standard Cryo-TEMPO products include fully-traceable uncertainties and use rapidly evolving, state-of-the-art processing dedicated to each thematic area. Throughout the project, the products will be constantly evolved, and validated by a group of Thematic Users, thus ensuring optimal relevance and impact for the intended target communities. More information on the Cryo-TEMPO products can be found on the Project Website (http://cryosat.mssl.ucl.ac.uk/tempo/index.html). The CryoTEMPO-EOLIS swath product exploits CryoSat's SARIn mode and the novel Swath processing technique to deliver increased spatial and temporal coverage of time-dependent elevation over land ice, a critical metric for tracking ice mass trends in support to a wide variety of end-users. The CryoTEMPO-EOLIS swath product exploits CryoSat's SARIn mode and the novel Swath processing technique to deliver increased spatial and temporal coverage of time-dependent elevation over land ice, a critical metric for tracking ice mass trends in support to a wide variety of end-users.The dataset consists of systematic reprocessing of the entire CryoSat archive to generate new L2-Swath products, increasing data sampling by 1 to 2 orders of magnitude compared with the operational L2 ESA product. In addition, the EOLIS dataset is joined with the ESA L2 Point-Of-Closest-Approach to generate monthly DEM (Digital Elevation Model) products. This dataset will further the ability of the community to analyse and understand trends across the Greenland Ice Sheet margin, Antarctica and several mountain glaciers and ice caps around the world.\",\n \"type\": \"Collection\",\n \"title\": \"CryoSat products\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=CryoSat.products\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"offering_2\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetMap&layers=Density%3ACryoSat.products&bbox=-180.0,-90.0,180.0,90.0&width=768&height=762&srs=EPSG%3A4326&transparent=true&styles=Magma&format=image%2Fpng\",\n \ \"title\": \"GetMap\",\n \"type\": \"image/png\"\n },\n \ \"offering_1\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\",\n \ \"title\": \"GetCapabilities\",\n \"type\": \"application/xml\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/CryoSat.products\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/10.5270/CR2-120cf4c\",\n \"type\": \"text/html\",\n \"title\": \"Landing page\"\n },\n {\n \ \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series CryoSat.products\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for CryoSat.products\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/CryoSat.products/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/CryoSat.products?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"wms:transparent\": true,\n \"rel\": \"wms\",\n \"wms:dimensions\": {\"version\": \"1.1.1\"},\n \"href\": \"https://eovoc.spacebel.be/geoserver/wms\",\n \ \"type\": \"image/png\",\n \"title\": \"CryoSat.products\",\n \ \"wms:layers\": [\"Density:CryoSat.products\"],\n \"wms:styles\": [\"Magma\"]\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/collections/services/items/eoli-cryosat-matlab-routi?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"eoli-cryosat-matlab-routi (service)\"\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/CryoSat-2\",\n \ \"title\": \"More collections for CryoSat-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/ba530a28-c2ba-5a34-b71e-678d316e936f\",\n \ \"title\": \"More collections for SIRAL instrument\"\n }\n \ ],\n \"id\": \"CryoSat.products\",\n \"updated\": \"2023-11-09T11:03:42Z\",\n \ \"stac_extensions\": [\n \"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\n \ \"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\"\n \ ],\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"SIRAL\"],\n \ \"platform\": [\"CryoSat-2\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -84,\n 180,\n \ 84\n ]]},\n \"temporal\": {\"interval\": [[\n \"2016-02-29T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"DIF10\",\n \"Land Surface\",\n \"EARTH SCIENCE > LAND SURFACE\",\n \"Mapping and Cartography\",\n \"Natural Hazards and Disaster Risk\",\n \"EARTH SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\",\n \"Sun-synchronous\",\n \"VIS (0.40 - 0.75 \xB5m)\",\n \"NIR (0.75 - 1.30 \xB5m)\",\n \"Very High Resolution - VHR (0 - 5m)\",\n \"SSC_DEF_SC, SSC_DEF_CO\",\n \"475-575 km\",\n \"8 km at nadir for SkySat-1 to -2, 6.6 km at nadir for SkySat-3 to -13\",\n \"Imaging Spectrometers/Radiometers\",\n \"SkySat\",\n \ \"SkySat Camera\"\n ],\n \"created\": \"2022-06-23T00:00:00.000Z\",\n \ \"description\": \"The SkySat ESA archive collection consists of SkySat products requested by ESA supported projects over their areas of interest around the world and that ESA collected over the years. The dataset regularly grows as ESA collects new SkySat products. Two different product types are offered, Ground Sampling Distance at nadir up to 65 cm for PAN and up to 0.8m for MS EO-SIP Product Type Product description Content SSC_DEF_SC Basic and Ortho scene * Level 1B 4-bands Analytic /DN Basic scene * Level 1B 4-bands Panchromatic /DN Basic scene * Level 1A 1-band Panchromatic DN Pre Sup resolution Basic scene * Level 3B 3-bands Visual Ortho Scene * Level 3B 4-bands Pansharpened Multispectral Ortho Scene * Level 3B 4-bands Analytic/DN/SR Ortho Scene * Level 3B 1-band Panchromatic /DN Ortho Scene SSC_DEF_CO Ortho Collect * Visual 3-band Pansharpened Image * Multispectral 4-band Pansharpened Image * Multispectral 4-band Analytic/DN/SR Image (B, G, R,N) * 1-band Panchromatic Image The Basic Scene product is uncalibrated, not radiometrically corrected for atmosphere or for any geometric distortions inherent in the imaging process \\u2022Analytic - unorthorectified, radiometrically corrected, multispectral BGRN \\u2022Analytic DN - unorthorectified, multispectral BGRN \\u2022Panchromatic - unorthorectified, radiometrically corrected, panchromatic (PAN) \\u2022Panchromatic DN - unorthorectified, panchromatic (PAN) \\u2022L1A Panchromatic DN - unorthorectified, pre-super resolution, panchromatic (PAN) The Ortho Scene product is sensor and geometrically corrected, and is projected to a cartographic map projection. \\u2022Visual - orthorectified, pansharpened, and color-corrected (using a color curve) 3-band RGB Imagery \\u2022Pansharpened Multispectral - orthorectified, pansharpened 4-band BGRN Imagery \\u2022Analytic SR - orthorectified, multispectral BGRN. Atmospherically corrected Surface Reflectance product. \\u2022Analytic - orthorectified, multispectral BGRN. Radiometric corrections applied to correct for any sensor artifacts and transformation to top-of-atmosphere radiance \\u2022Analytic DN - orthorectified, multispectral BGRN, uncalibrated digital number imagery product Radiometric corrections applied to correct for any sensor artifacts \\u2022Panchromatic - orthorectified, radiometrically correct, panchromatic (PAN) \\u2022Panchromatic DN - orthorectified, panchromatic (PAN), uncalibrated digital number imagery product The Ortho Collect product is created by composing SkySat Ortho Scenes along an imaging strip. The product may contain artifacts resulting from the composing process, particular offsets in areas of stitched source scenes. Spatial coverage: Check the spatial coverage of the collection on a _$$map$$ https://tpm-ds.eo.esa.int/smcat/SkySat/ available on the Third Party Missions Dissemination Service.\",\n \"type\": \"Collection\",\n \ \"title\": \"Skysat ESA archive\",\n \"license\": \"various\",\n \ \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \ \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=SkySatESAarchive\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"offering_2\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetMap&layers=Density%3ASkySatESAarchive&bbox=-146.2499999999999,-35.15625,172.96875,80.15625&width=768&height=330&srs=EPSG%3A4326&transparent=true&styles=Turbo&format=image%2Fpng\",\n \ \"title\": \"GetMap\",\n \"type\": \"image/png\"\n },\n \ \"offering_1\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\",\n \ \"title\": \"GetCapabilities\",\n \"type\": \"application/xml\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series SkySatESAarchive\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for SkySatESAarchive\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/SkySatESAarchive/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://www.planet.com/products/#satellite-imagery\",\n \ \"type\": \"text/html\",\n \"title\": \"Planet products - Catalogue\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://assets.planet.com/docs/Planet_Combined_Imagery_Product_Specs_letter_screen.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Imagery Product Specifications - Product Specifications\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySatESAarchive?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"wms:transparent\": true,\n \"rel\": \"wms\",\n \"wms:dimensions\": {\"version\": \"1.1.1\"},\n \"href\": \"https://eovoc.spacebel.be/geoserver/wms\",\n \ \"type\": \"image/png\",\n \"title\": \"SkySatESAarchive\",\n \ \"wms:layers\": [\"Density:SkySatESAarchive\"],\n \"wms:styles\": [\"Turbo\"]\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/SkySat\",\n \ \"title\": \"More collections for SkySat platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/429a0634-46aa-518a-ac92-b5bcec0315d4\",\n \ \"title\": \"More collections for SkySat Camera instrument\"\n }\n \ ],\n \"id\": \"SkySatESAarchive\",\n \"updated\": \"2023-11-09T17:22:55Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"SkySat Camera\"],\n \"platform\": [\"SkySat\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -84,\n 180,\n \ 84\n ]]},\n \"temporal\": {\"interval\": [[\n \"2009-02-22T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"World\",\n \"DIF10\",\n \"Multispectral\",\n \ \"Planet\",\n \"Land Surface\",\n \"EARTH SCIENCE > LAND SURFACE\",\n \"Mapping and Cartography\",\n \"Natural Hazards and Disaster Risk\",\n \"EARTH SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\",\n \"Sun-synchronous\",\n \"VIS (0.40 - 0.75 \xB5m)\",\n \ \"NIR (0.75 - 1.30 \xB5m)\",\n \"High Resolution - HR (5 - 20 m)\",\n \"MSI_IMG_3A\",\n \"MSI_IMG_1B\",\n \"630 km\",\n \"77 km\",\n \"Imaging Spectrometers/Radiometers\",\n \ \"RapidEye\",\n \"MSI\"\n ],\n \"created\": \"2019-05-23T00:00:00.000Z\",\n \ \"description\": \"The RapidEye ESA archive is a subset of the RapidEye Full archive that ESA collected over the years. The dataset regularly grows as ESA collects new RapidEye products. Spatial coverage: Check the spatial coverage of the collection on a _$$map$$ https://tpm-ds.eo.esa.int/socat/RapidEye available on the Third Party Missions Dissemination Service.\",\n \"type\": \"Collection\",\n \"title\": \"RapidEye ESA archive\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=RapidEye.ESA.archive\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"offering_2\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetMap&layers=Density%3ARapidEye.ESA.archive&bbox=-120.9375,-46.40625,180.0,84.375&width=768&height=333&srs=EPSG%3A4326&transparent=true&styles=Magma&format=image%2Fpng\",\n \ \"title\": \"GetMap\",\n \"type\": \"image/png\"\n },\n \ \"offering_1\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\",\n \ \"title\": \"GetCapabilities\",\n \"type\": \"application/xml\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series RapidEye.ESA.archive\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for RapidEye.ESA.archive\"\n },\n {\n \"rel\": \"search\",\n \ \"href\": \"https://emc.spacebel.be/collections/series/items/RapidEye.ESA.archive/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://www.planet.com/products/#satellite-imagery\",\n \ \"type\": \"text/html\",\n \"title\": \"Planet products - Catalogue\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Planet-combined-imagery-product-specs-2020.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"RapidEye Satellite Image Product Specifications - Product Specifications\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help ? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/RapidEye.ESA.archive?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"wms:transparent\": true,\n \"rel\": \"wms\",\n \"wms:dimensions\": {\"version\": \"1.1.1\"},\n \"href\": \"https://eovoc.spacebel.be/geoserver/wms\",\n \ \"type\": \"image/png\",\n \"title\": \"RapidEye.ESA.archive\",\n \ \"wms:layers\": [\"Density:RapidEye.ESA.archive\"],\n \"wms:styles\": [\"Magma\"]\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/RapidEye\",\n \ \"title\": \"More collections for RapidEye platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/4b332a30-7c95-5fb1-bf55-fb4b10c1565f\",\n \ \"title\": \"More collections for MSI instrument\"\n }\n \ ],\n \"id\": \"RapidEye.ESA.archive\",\n \"updated\": \"2023-11-10T08:02:35Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"MSI\"],\n \ \"platform\": [\"RapidEye\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -20,\n -35,\n 35,\n \ 75\n ]]},\n \"temporal\": {\"interval\": [[\n \"2015-01-01T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"Europe\",\n \"DIF10\",\n \"orthorectified\",\n \ \"corrected\",\n \"geometrically corrected\",\n \"USGS\",\n \ \"Surface Radiative Properties\",\n \"EARTH SCIENCE > LAND SURFACE > SURFACE RADIATIVE PROPERTIES\",\n \"Vegetation\",\n \"EARTH SCIENCE > BIOSPHERE > VEGETATION\",\n \"Land Use and Land Cover\",\n \ \"EARTH SCIENCE > LAND SURFACE > LAND USE/LAND COVER\",\n \"Agriculture\",\n \ \"EARTH SCIENCE > AGRICULTURE\",\n \"Forestry\",\n \"EARTH SCIENCE > BIOSPHERE > ECOSYSTEMS > TERRESTRIAL ECOSYSTEMS > FORESTS\",\n \"Sun-synchronous\",\n \ \"VIS (0.40 - 0.75 \xB5m)\",\n \"NIR (0.75 - 1.30 \xB5m)\",\n \ \"SWIR (1.3 - 3.0 \xB5m)\",\n \"TIR (6.0 - 15.0 \xB5nm)\",\n \ \"DPAS 5.0\",\n \"Medium Resolution - MR (20 - 500 m)\",\n \ \"OAT_GEO_1P\",\n \"OAT_GTC_1P\",\n \"OAT_SP__2P\",\n \ \"OAT_SR__2P\",\n \"705 km\",\n \"185 km\",\n \"Imaging Spectrometers/Radiometers\",\n \"Landsat-8\",\n \"OLI\",\n \"TIRS\"\n \ ],\n \"created\": \"2022-01-14T00:00:00.000Z\",\n \"description\": \"This dataset contains the European Coverage of Landsat 8 Collection 2 data, both Level 1 and Level 2, since the beginning of the mission. Landsat 8 Collection 2 is the result of reprocessing effort on the archive and on fresh products with significant improvement with respect to Collection 1 on data quality, obtained by means of advancements in data processing, algorithm development. The primary characteristic is a relevant improvement in the absolute geolocation accuracy (now re-baselined to the European Space Agency Copernicus Sentinel-2 Global Reference Image, GRI) but includes also updated digital elevation modelling sources, improved Radiometric Calibration (even correction for the TIRS striping effect), enhanced Quality Assessment Bands, updated and consistent metadata files, usage of Cloud Optimized Georeferenced (COG) Tagged Image File Format. \ Landsat 8 level 1 products combine data from the 2 Landsat instruments, OLI and TIRS. The level 1 products generated can be either L1TP or L1GT: \\u2022 L1TP - Level 1 Precision Terrain (Corrected) (L1T) products: Radiometrically calibrated and orthorectified using ground control points (GCPs) and digital elevation model (DEM) data to correct for relief displacement. The highest quality Level-1 products suitable for pixel-level time series analysis. GCPs used for L1TP correction are derived from the Global Land Survey 2000 (GLS2000) data set. \\u2022 L1GT - Level 1 Systematic Terrain (Corrected) (L1GT) products: L1GT data products consist of L0 product data with systematic radiometric, geometric and terrain corrections applied and resampled for registration to a cartographic projection, referenced to the WGS84, G873, or current version. The dissemination server contains three different classes of Level1 products \\u2022 Real Time (RT): Newly acquired Landsat 8 OLI/TIRS data are processed upon downlink but use an initial TIRS line-of-sight model parameters; the data is made available in less than 12 hours (4-6 hours typically). Once the data have been reprocessed with the refined TIRS parameters, the products are transitioned to either Tier 1 or Tier 2 and removed from the Real-Time tier (in 14-16 days). \\u2022 Tier 1 (T1): Landsat scenes with the highest available data quality are placed into Tier 1 and are considered suitable for time-series analysis. Tier 1 includes Level-1 Precision and Terrain (L1TP) corrected data that have well-characterized radiometry and are inter-calibrated across the different Landsat instruments. The georegistration of Tier 1 scenes is consistent and within prescribed image-to-image tolerances of \u2266 12-meter radial root mean square error (RMSE). \\u2022 Tier 2 (T2): Landsat scenes not meeting Tier 1 criteria during processing are assigned to Tier 2. Tier 2 scenes adhere to the same radiometric standard as Tier 1 scenes, but do not meet the Tier 1 geometry specification due to less accurate orbital information (specific to older Landsat sensors), significant cloud cover, insufficient ground control, or other factors. This includes Systematic Terrain (L1GT) and Systematic (L1GS) processed data. Landsat 8 level 2 products are generated from L1GT and L1TP Level 1 products that meet the <76 degrees Solar Zenith Angle constraint and include the required auxiliary data inputs to generate a scientifically viable product. The data are available a couple of days after the Level1 T1/T2. The level 2 products generated can be L2SP or L2SR: \\u2022 L2SP - Level 2 Science Products (L2SP) products: include Surface Reflectance (SR), Surface Temperature (ST), ST intermediate bands, an angle coefficients file, and Quality Assessment (QA) Bands. \\u2022 L2SR - Level 2 Surface Reflectance (L2SR) products: include Surface Reflectance (SR), an angle coefficients file, and Quality Assessment (QA) Bands; it is generated if ST could not be generated \ Two different categories of Level 1 products are offered: LC with Optical, Thermal and Quality Map images, LO with Optical and Quality Map images (Thermal not available). For the Level 2 data, only LC combined products are generated\",\n \ \"type\": \"Collection\",\n \"title\": \"Landsat 8 Collection 2 European Coverage\",\n \"license\": \"various\",\n \"assets\": {\n \ \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=Landsat8.Collection2.European.Coverage\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"offering_2\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetMap&layers=Density%3ALandsat8.Collection2.European.Coverage&bbox=-28.125,16.875,59.0625,74.53125&width=768&height=507&srs=EPSG%3A4326&transparent=true&styles=Turbo&format=image%2Fpng\",\n \ \"title\": \"GetMap\",\n \"type\": \"image/png\"\n },\n \ \"offering_1\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\",\n \ \"title\": \"GetCapabilities\",\n \"type\": \"application/xml\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series Landsat8.Collection2.European.Coverage\"\n },\n \ {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for Landsat8.Collection2.European.Coverage\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/Landsat8.Collection2.European.Coverage/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/0/Landsat-Collection-1-vs-Collection-2-Summary.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Landsat Collection1 vs Collection 2 - Product description\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/0/Landsat-8-9-OLI-TIRS-Collection-2-Level-1-Data-Format-Control-Book-DFCB.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Landsat 8-9 OLI-TIRS Collection 2 Level 1 Data Format Control Book (DFCB) - Product specification\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/0/Landsat-8-9-OLI-TIRS-Collection-2-Level-2-Data-Format-Control-Book-DFCB.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Landsat 8-9 OLI-TIRS Collection 2 Level 2 Data Format Control Book (DFCB) - Product specification\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://www.usgs.gov/landsat-missions/landsat-collection-2\",\n \"type\": \"text/html\",\n \"title\": \"USGS Landsat Collection 2 web page - web portal\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"wms:transparent\": true,\n \"rel\": \"wms\",\n \"wms:dimensions\": {\"version\": \"1.1.1\"},\n \"href\": \"https://eovoc.spacebel.be/geoserver/wms\",\n \ \"type\": \"image/png\",\n \"title\": \"Landsat8.Collection2.European.Coverage\",\n \ \"wms:layers\": [\"Density:Landsat8.Collection2.European.Coverage\"],\n \ \"wms:styles\": [\"Turbo\"]\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Landsat-8\",\n \ \"title\": \"More collections for Landsat-8 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/6bfc7afc-547a-57cd-818c-6d90e3e589ab\",\n \ \"title\": \"More collections for OLI instrument\"\n }\n \ ],\n \"id\": \"Landsat8.Collection2.European.Coverage\",\n \"updated\": \"2023-11-10T08:38:42Z\",\n \"stac_extensions\": [\"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"OLI\"],\n \ \"platform\": [\"Landsat-8\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2007-01-23T10:16:34Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"DIF10\",\n \"MetOp-A\",\n \"MetOp-B\",\n \ \"MetOp-C\",\n \"COT\",\n \"Cloud Optical Thickness\",\n \ \"AC-SAF\",\n \"GOME.TC.AGG\",\n \"urn:eop:DLR:EOWEB:GOME.TC.AGG\",\n \ \"FEDEO\",\n \"Atmospheric conditions\",\n \"EARTH SCIENCE>ATMOSPHERE>CLOUDS>CLOUD MICROPHYSICS>CLOUD OPTICAL DEPTH/THICKNESS\",\n \"METOP-A\",\n \"METOP-B\",\n \ \"METOP-C\",\n \"GOME-2\",\n \"Metop-A\",\n \"Metop-B\",\n \ \"Metop-C\"\n ],\n \"description\": \"The Global Ozone Monitoring Experiment-2 (GOME-2) instrument continues the long-term monitoring of atmospheric trace gas constituents started with GOME / ERS-2 and SCIAMACHY / Envisat. Currently, there are three GOME-2 instruments operating on board EUMETSAT's Meteorological Operational satellites MetOp-A, -B and -C, launched in October 2006, September 2012, and November 2018, respectively. GOME-2 can measure a range of atmospheric trace constituents, with the emphasis on global ozone distributions. Furthermore, cloud properties and intensities of ultraviolet radiation are retrieved. These data are crucial for monitoring the atmospheric composition and the detection of pollutants. DLR generates operational GOME-2 / MetOp level 2 products in the framework of EUMETSAT's Satellite Application Facility on Atmospheric Chemistry Monitoring (AC-SAF). GOME-2 near-real-time products are available already two hours after sensing.\\t\\tOCRA (Optical Cloud Recognition Algorithm) and ROCINN (Retrieval of Cloud Information using Neural Networks) are used for retrieving the following geophysical cloud properties from GOME and GOME-2 data: cloud fraction (cloud cover), cloud-top pressure (cloud-top height), and cloud optical thickness (cloud-top albedo). OCRA is an optical sensor cloud detection algorithm that uses the PMD devices on GOME / GOME-2 to deliver cloud fractions for GOME / GOME-2 scenes. ROCINN takes the OCRA cloud fraction as input and uses a neural network training scheme to invert GOME / GOME-2 reflectivities in and around the O2-A band. VLIDORT [Spurr (2006)] templates of reflectances based on full polarization scattering of light are used to train the neural network. ROCINN retrieves cloud-top pressure and cloud-top albedo. The cloud optical thickness is computed using libRadtran [Mayer and Kylling (2005)] radiative transfer simulations taking as input the cloud-top albedo retrieved with ROCINN. For more details please refer to relevant peer-review papers listed on the GOME and GOME-2 documentation pages: https://atmos.eoc.dlr.de/app/docs/\",\n \"type\": \"Collection\",\n \ \"title\": \"METOP GOME-2 - Cloud Optical Thickness (COT) - Global\",\n \ \"license\": \"various\",\n \"assets\": {\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"enclosure_3\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP-C_GOME-2_L2C_P1D_COT - MetOp-C GOME-2 L2C Daily COT\"\n },\n \"enclosure_4\": {\n \ \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"METOP_GOME-2_L2C_P1D_COMB_COT - MetOp GOME-2 L2C Daily COT Combined\"\n },\n \"enclosure_1\": {\n \"roles\": [\"data\"],\n \"href\": \"ftp://acsaf.eoc.dlr.de/\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"DLR-ATMOS FTP-server - For data access via FTP, please register at https://acsaf.org/registration_form.html or contact helpdesk@acsaf.org.\"\n },\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure_2\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP-B_GOME-2_L2C_P1D_COT - MetOp-B GOME-2 L2C Daily COT\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"enclosure_7\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP_GOME-2_L2C_P1D_COMB_COT - MetOp GOME-2 L2C Daily COT Combined\"\n },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n },\n \ \"enclosure_5\": {\n \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?\",\n \"type\": \"application/x-binary\",\n \ \"title\": \"METOP-B_GOME-2_L2C_P1D_COT - MetOp-B GOME-2 L2C Daily COT\"\n },\n \"quicklook\": {\n \"roles\": [\"overview\"],\n \ \"href\": \"https://geoservice.dlr.de/catalogue/srv/api/records/810631f4-c311-44f2-9ced-c2260df2bc06/attachments/metop_gome2_cot_ql.jpg\",\n \ \"type\": \"image/jpeg\",\n \"title\": \"graphic overview\"\n \ },\n \"enclosure_6\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP-C_GOME-2_L2C_P1D_COT - MetOp-C GOME-2 L2C Daily COT\"\n }\n },\n \"links\": [\n \ {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-B_GOME-2_L2C_P1D_COT\",\n \ \"title\": \"METOP-B_GOME-2_L2C_P1D_COT - EGP: MetOp-B GOME-2 L2C Daily COT\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-C_GOME-2_L2C_P1D_COT\",\n \ \"title\": \"METOP-C_GOME-2_L2C_P1D_COT - EGP: MetOp-C GOME-2 L2C Daily COT\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP_GOME-2_L2C_P1D_COMB_COT\",\n \ \"title\": \"METOP_GOME-2_L2C_P1D_COMB_COT - EGP: MetOp GOME-2 L2C Daily COT Combined\"\n },\n {\n \"rel\": \"related\",\n \ \"href\": \"https://eoweb.dlr.de/egp/main?ecswCollection=urn%3Aeop%3ADLR%3AEOWEB%3AGOME.TC.AGG\",\n \ \"title\": \"METOP GOME-2 - Cloud Optical Thickness (COT) - Global - EOWEB GeoPortal Collection\"\n },\n {\n \"rel\": \"icon\",\n \"href\": \"https://geoservice.dlr.de/catalogue/srv/api/records/810631f4-c311-44f2-9ced-c2260df2bc06/attachments/metop_gome2_cot_ql_s.jpg\",\n \ \"type\": \"image/jpeg\",\n \"title\": \"graphic overview\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://geoservice.dlr.de/web/maps/metop:gome2.tc.daily\",\n \"title\": \"EOC Geoservice Map Context - EOC Geoservice Map Context (metop:gome2.tc.daily)\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://atmos.eoc.dlr.de/app/missions/gome2\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?SERVICE=WMS&REQUEST=GetCapabilities\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?SERVICE=WCS&REQUEST=GetCapabilities\"\n \ },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/810631f4-c311-44f2-9ced-c2260df2bc06?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/DE@DLR\",\n \ \"title\": \"More collections for DE/DLR\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Metop-A\",\n \ \"title\": \"More collections for Metop-A platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Metop-B\",\n \ \"title\": \"More collections for Metop-B platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Metop-C\",\n \ \"title\": \"More collections for Metop-C platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/eaa1390e-6453-5b90-9ed2-90c3f5096d83\",\n \ \"title\": \"More collections for GOME-2 instrument\"\n }\n \ ],\n \"id\": \"810631f4-c311-44f2-9ced-c2260df2bc06\",\n \"updated\": \"2024-06-20T13:07:23Z\",\n \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"DE/DLR\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"GOME-2\"],\n \"processing:lineage\": [\"Please refer to relevant peer-review papers listed on the GOME and GOME-2 documentation pages for more details on cloud optical thickness retrieval: https://atmos.eoc.dlr.de/app/docs/\"],\n \"platform\": [\n \"Metop-A\",\n \ \"Metop-B\",\n \"Metop-C\"\n ]\n }\n },\n \ {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n \ -90,\n 180,\n 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2007-01-23T10:16:34Z\",\n null\n ]]}\n \ },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"DIF10\",\n \ \"MetOp-A\",\n \"MetOp-B\",\n \"MetOp-C\",\n \"NO2\",\n \ \"Nitrogen Dioxide\",\n \"AC-SAF\",\n \"GOME.TC.AGG\",\n \ \"urn:eop:DLR:EOWEB:GOME.TC.AGG\",\n \"FEDEO\",\n \"Atmospheric conditions\",\n \"EARTH SCIENCE>ATMOSPHERE>ATMOSPHERIC CHEMISTRY>NITROGEN COMPOUNDS>NITROGEN DIOXIDE\",\n \"METOP-A\",\n \"METOP-B\",\n \ \"METOP-C\",\n \"GOME-2\",\n \"Metop-A\",\n \"Metop-B\",\n \ \"Metop-C\"\n ],\n \"description\": \"The Global Ozone Monitoring Experiment-2 (GOME-2) instrument continues the long-term monitoring of atmospheric trace gas constituents started with GOME / ERS-2 and SCIAMACHY / Envisat. Currently, there are three GOME-2 instruments operating on board EUMETSAT's Meteorological Operational satellites MetOp-A, -B, and -C, launched in October 2006, September 2012, and November 2018, respectively. GOME-2 can measure a range of atmospheric trace constituents, with the emphasis on global ozone distributions. Furthermore, cloud properties and intensities of ultraviolet radiation are retrieved. These data are crucial for monitoring the atmospheric composition and the detection of pollutants. DLR generates operational GOME-2 / MetOp level 2 products in the framework of EUMETSAT's Satellite Application Facility on Atmospheric Chemistry Monitoring (AC-SAF). GOME-2 near-real-time products are available already two hours after sensing.\\t\\t\\tThe operational NO2 total column products are generated using the algorithm GDP (GOME Data Processor) version 4.x integrated into the UPAS (Universal Processor for UV / VIS Atmospheric Spectrometers) processor for generating level 2 trace gas and cloud products.\\t\\t\\tThe total NO2 column is retrieved from GOME solar back-scattered measurements in the visible wavelength region (425-450 nm), using the Differential Optical Absorption Spectroscopy (DOAS) method.\\t\\t\\tFor more details please refer to relevant peer-review papers listed on the GOME and GOME-2 documentation pages: https://atmos.eoc.dlr.de/app/docs/\",\n \"type\": \"Collection\",\n \"title\": \"METOP GOME-2 - Nitrogen Dioxide (NO2) - Global\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"enclosure_3\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP-C_GOME-2_L2C_P1D_NO2 - MetOp-C GOME-2 L2C Daily NO2\"\n },\n \"enclosure_4\": {\n \ \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"METOP_GOME-2_L2C_P1D_COMB_NO2 - MetOp GOME-2 L2C Daily NO2 Combined\"\n },\n \"enclosure_1\": {\n \"roles\": [\"data\"],\n \"href\": \"ftp://acsaf.eoc.dlr.de/\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"DLR-ATMOS FTP-server - For data access via FTP, please register at https://acsaf.org/registration_form.html or contact helpdesk@acsaf.org.\"\n },\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure_2\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP-B_GOME-2_L2C_P1D_NO2 - MetOp-B GOME-2 L2C Daily NO2\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"enclosure_7\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP_GOME-2_L2C_P1D_COMB_NO2 - MetOp GOME-2 L2C Daily NO2 Combined\"\n },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n },\n \ \"enclosure_5\": {\n \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?\",\n \"type\": \"application/x-binary\",\n \ \"title\": \"METOP-B_GOME-2_L2C_P1D_NO2 - MetOp-B GOME-2 L2C Daily NO2\"\n },\n \"quicklook\": {\n \"roles\": [\"overview\"],\n \ \"href\": \"https://geoservice.dlr.de/catalogue/srv/api/records/bf8dbf94-ff16-42bf-a957-0e8f80813aff/attachments/metop_gome2_no2_ql.jpg\",\n \ \"type\": \"image/jpeg\",\n \"title\": \"graphic overview\"\n \ },\n \"enclosure_6\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP-C_GOME-2_L2C_P1D_NO2 - MetOp-C GOME-2 L2C Daily NO2\"\n }\n },\n \"links\": [\n \ {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-B_GOME-2_L2C_P1D_NO2\",\n \ \"title\": \"METOP-B_GOME-2_L2C_P1D_NO2 - EGP: MetOp-B GOME-2 L2C Daily NO2\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-C_GOME-2_L2C_P1D_NO2\",\n \ \"title\": \"METOP-C_GOME-2_L2C_P1D_NO2 - EGP: MetOp-C GOME-2 L2C Daily NO2\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP_GOME-2_L2C_P1D_COMB_NO2\",\n \ \"title\": \"METOP_GOME-2_L2C_P1D_COMB_NO2 - EGP: MetOp GOME-2 L2C Daily NO2 Combined\"\n },\n {\n \"rel\": \"related\",\n \ \"href\": \"https://eoweb.dlr.de/egp/main?ecswCollection=urn%3Aeop%3ADLR%3AEOWEB%3AGOME.TC.AGG\",\n \ \"title\": \"METOP GOME-2 - Nitrogen Dioxide (NO2) - Global - EOWEB GeoPortal Collection\"\n },\n {\n \"rel\": \"icon\",\n \ \"href\": \"https://geoservice.dlr.de/catalogue/srv/api/records/bf8dbf94-ff16-42bf-a957-0e8f80813aff/attachments/metop_gome2_no2_ql_s.jpg\",\n \ \"type\": \"image/jpeg\",\n \"title\": \"graphic overview\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://geoservice.dlr.de/web/maps/metop:gome2.tc.daily\",\n \"title\": \"EOC Geoservice Map Context - EOC Geoservice Map Context (metop:gome2.tc.daily)\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://atmos.eoc.dlr.de/app/missions/gome2\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?SERVICE=WMS&REQUEST=GetCapabilities\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?SERVICE=WCS&REQUEST=GetCapabilities\"\n \ },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/bf8dbf94-ff16-42bf-a957-0e8f80813aff?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/DE@DLR\",\n \ \"title\": \"More collections for DE/DLR\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Metop-A\",\n \ \"title\": \"More collections for Metop-A platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Metop-B\",\n \ \"title\": \"More collections for Metop-B platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Metop-C\",\n \ \"title\": \"More collections for Metop-C platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/eaa1390e-6453-5b90-9ed2-90c3f5096d83\",\n \ \"title\": \"More collections for GOME-2 instrument\"\n }\n \ ],\n \"id\": \"bf8dbf94-ff16-42bf-a957-0e8f80813aff\",\n \"updated\": \"2024-06-20T13:07:52Z\",\n \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"DE/DLR\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"GOME-2\"],\n \"processing:lineage\": [\"Please refer to relevant peer-review papers listed on the GOME and GOME-2 documentation pages for more details on nitrogen dioxide retrieval: https://atmos.eoc.dlr.de/app/docs/\"],\n \ \"platform\": [\n \"Metop-A\",\n \"Metop-B\",\n \ \"Metop-C\"\n ]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2007-01-23T10:16:34Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"DIF10\",\n \"MetOp-A\",\n \"MetOp-B\",\n \ \"MetOp-C\",\n \"HCHO\",\n \"Formaldehyde\",\n \"AC-SAF\",\n \ \"GOME.TC.AGG\",\n \"urn:eop:DLR:EOWEB:GOME.TC.AGG\",\n \"FEDEO\",\n \ \"Atmospheric conditions\",\n \"EARTH SCIENCE>ATMOSPHERE>ATMOSPHERIC CHEMISTRY>CARBON AND HYDROCARBON COMPOUNDS>FORMALDEHYDE\",\n \"METOP-A\",\n \ \"METOP-B\",\n \"METOP-C\",\n \"GOME-2\",\n \"Metop-A\",\n \ \"Metop-B\",\n \"Metop-C\"\n ],\n \"description\": \"The Global Ozone Monitoring Experiment-2 (GOME-2) instrument continues the long-term monitoring of atmospheric trace gas constituents started with GOME / ERS-2 and SCIAMACHY / Envisat. Currently, there are three GOME-2 instruments operating on board EUMETSAT's Meteorological Operational satellites MetOp-A, -B, and -C, launched in October 2006, September 2012, and November 2018, respectively. GOME-2 can measure a range of atmospheric trace constituents, with the emphasis on global ozone distributions. Furthermore, cloud properties and intensities of ultraviolet radiation are retrieved. These data are crucial for monitoring the atmospheric composition and the detection of pollutants. DLR generates operational GOME-2 / MetOp level 2 products in the framework of EUMETSAT's Satellite Application Facility on Atmospheric Chemistry Monitoring (AC-SAF). GOME-2 near-real-time products are available already two hours after sensing.\\t\\t\\tThe operational HCHO total column products are generated using the algorithm GDP (GOME Data Processor) version 4.x integrated into the UPAS (Universal Processor for UV / VIS Atmospheric Spectrometers) processor for generating level 2 trace gas and cloud products.\\t\\t\\tFor more details please refer to relevant peer-review papers listed on the GOME and GOME-2 documentation pages: https://atmos.eoc.dlr.de/app/docs/\",\n \ \"type\": \"Collection\",\n \"title\": \"METOP GOME-2 - Formaldehyde (HCHO) - Global\",\n \"license\": \"various\",\n \"assets\": {\n \ \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"enclosure_3\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP-C_GOME-2_L2C_P1D_HCHO - MetOp-C GOME-2 L2C Daily HCHO\"\n },\n \"enclosure_4\": {\n \ \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"METOP_GOME-2_L2C_P1D_COMB_HCHO - MetOp GOME-2 L2C Daily HCHO Combined\"\n },\n \"enclosure_1\": {\n \"roles\": [\"data\"],\n \"href\": \"ftp://acsaf.eoc.dlr.de/\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"DLR-ATMOS FTP-server - For data access via FTP, please register at https://acsaf.org/registration_form.html or contact helpdesk@acsaf.org.\"\n },\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure_2\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP-B_GOME-2_L2C_P1D_HCHO - MetOp-B GOME-2 L2C Daily HCHO\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"enclosure_7\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP_GOME-2_L2C_P1D_COMB_HCHO - MetOp GOME-2 L2C Daily HCHO Combined\"\n },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n },\n \ \"enclosure_5\": {\n \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?\",\n \"type\": \"application/x-binary\",\n \ \"title\": \"METOP-B_GOME-2_L2C_P1D_HCHO - MetOp-B GOME-2 L2C Daily HCHO\"\n },\n \"quicklook\": {\n \"roles\": [\"overview\"],\n \ \"href\": \"https://geoservice.dlr.de/catalogue/srv/api/records/3dd6bbdd-5dca-411e-b251-cdc325d703c4/attachments/metop_gome2_hcho_ql.jpg\",\n \ \"type\": \"image/jpeg\",\n \"title\": \"graphic overview\"\n \ },\n \"enclosure_6\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?\",\n \"type\": \"application/x-binary\",\n \"title\": \"METOP-C_GOME-2_L2C_P1D_HCHO - MetOp-C GOME-2 L2C Daily HCHO\"\n }\n },\n \"links\": [\n \ {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-B_GOME-2_L2C_P1D_HCHO\",\n \ \"title\": \"METOP-B_GOME-2_L2C_P1D_HCHO - EGP: MetOp-B GOME-2 L2C Daily HCHO\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP-C_GOME-2_L2C_P1D_HCHO\",\n \ \"title\": \"METOP-C_GOME-2_L2C_P1D_HCHO - EGP: MetOp-C GOME-2 L2C Daily HCHO\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://eoweb.dlr.de/egp/main?service=geoservice.dlr.de%2Feoc%2Fatmosphere%2Fwms%26type=wms%26layer=METOP_GOME-2_L2C_P1D_COMB_HCHO\",\n \ \"title\": \"METOP_GOME-2_L2C_P1D_COMB_HCHO - EGP: MetOp GOME-2 L2C Daily HCHO Combined\"\n },\n {\n \"rel\": \"related\",\n \ \"href\": \"https://eoweb.dlr.de/egp/main?ecswCollection=urn%3Aeop%3ADLR%3AEOWEB%3AGOME.TC.AGG\",\n \ \"title\": \"METOP GOME-2 - Formaldehyde (HCHO) - Global - EOWEB GeoPortal Collection\"\n },\n {\n \"rel\": \"icon\",\n \ \"href\": \"https://geoservice.dlr.de/catalogue/srv/api/records/3dd6bbdd-5dca-411e-b251-cdc325d703c4/attachments/metop_gome2_hcho_ql_s.jpg\",\n \ \"type\": \"image/jpeg\",\n \"title\": \"graphic overview\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://geoservice.dlr.de/web/maps/metop:gome2.tc.daily\",\n \"title\": \"EOC Geoservice Map Context - EOC Geoservice Map Context (metop:gome2.tc.daily)\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://atmos.eoc.dlr.de/app/missions/gome2\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wms?SERVICE=WMS&REQUEST=GetCapabilities\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://geoservice.dlr.de/eoc/atmosphere/wcs?SERVICE=WCS&REQUEST=GetCapabilities\"\n \ },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/3dd6bbdd-5dca-411e-b251-cdc325d703c4?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/DE@DLR\",\n \ \"title\": \"More collections for DE/DLR\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Metop-A\",\n \ \"title\": \"More collections for Metop-A platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Metop-B\",\n \ \"title\": \"More collections for Metop-B platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Metop-C\",\n \ \"title\": \"More collections for Metop-C platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/eaa1390e-6453-5b90-9ed2-90c3f5096d83\",\n \ \"title\": \"More collections for GOME-2 instrument\"\n }\n \ ],\n \"id\": \"3dd6bbdd-5dca-411e-b251-cdc325d703c4\",\n \"updated\": \"2024-06-20T13:07:47Z\",\n \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"DE/DLR\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"GOME-2\"],\n \"processing:lineage\": [\"Please refer to relevant peer-review papers listed on the GOME and GOME-2 documentation pages for more details on formaldehyde retrieval: https://atmos.eoc.dlr.de/app/docs/\"],\n \ \"platform\": [\n \"Metop-A\",\n \"Metop-B\",\n \ \"Metop-C\"\n ]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2022-04-27T00:00:00Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"DIF10\",\n \"Orthoimagery\",\n \"DLR\",\n \ \"EOC\",\n \"hyperspectral sensing\",\n \"quicklooks\",\n \ \"Level 0\",\n \"FEDEO\",\n \"urn:eop:DLR:EOWEB:ENMAP.HSI.L0\",\n \ \"visible wavelengths\",\n \"infrared wavelengths\",\n \"EARTH SCIENCE>SPECTRAL/ENGINEERING>VISIBLE WAVELENGTHS\",\n \"EARTH SCIENCE>SPECTRAL/ENGINEERING>INFRARED WAVELENGTHS\",\n \"EnMAP\",\n \"HSI\",\n \"Global\"\n \ ],\n \"description\": \"The EnMAP HSI L0 Quicklooks collection contains the VNIR and SWIR quicklook images as well as the quality masks for haze, cloud, or snow; based on the latest atmospheric correction methodology of the land processor. It allows users to get an overview which L0 data has been acquired and archived since the operational start of the EnMAP mission and which data is potentially available for on-demand processing into higher level products with specific processing parameters via the EOWEB-GeoPortal. The database is constantly updated with newly acquired L0 data. The Environmental Mapping and Analysis Program (EnMAP) is a German hyperspectral satellite mission that monitors and characterizes Earth\\u2019s environment on a global scale. EnMAP delivers accurate data that provides information on the status and evolution of terrestrial and aquatic ecosystems, supporting environmental monitoring, management, and decision-making. For more information, please see the mission website: https://www.enmap.org/mission/\",\n \ \"sci:citation\": \"DOI: 10.15489/rlyibn8gjc58\",\n \"type\": \"Collection\",\n \ \"title\": \"EnMAP HSI - Level 0 / Quicklook Images - Global\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"enclosure_3\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/imagery/wms?\",\n \"type\": \"application/x-binary\",\n \"title\": \"ENMAP_HSI_L0_QL_QUALITY_SNOW - EnMAP HSI L0 Quicklooks Quality Snow\"\n },\n \"enclosure_4\": {\n \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/imagery/wms?\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"ENMAP_HSI_L0_QL_QUALITY_HAZE - EnMAP HSI L0 Quicklooks Quality Haze\"\n },\n \"enclosure_1\": {\n \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/imagery/wms?\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"ENMAP_HSI_L0_QL_VNIR - EnMAP HSI L0 Quicklooks VNIR\"\n },\n \"enclosure_2\": {\n \ \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/imagery/wms?\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"ENMAP_HSI_L0_QL_SWIR - EnMAP HSI L0 Quicklooks SWIR\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"enclosure_9\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://download.geoservice.dlr.de/ENMAP/files/\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"HTTP download EnMAP HSI - Level 0 Quicklook Images - Global\"\n },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"enclosure_7\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/imagery/wms?\",\n \"type\": \"application/x-binary\",\n \"title\": \"ENMAP_HSI_L0_QL_QUALITY_CLASSES - EnMAP HSI L0 Quicklooks Quality Classes\"\n },\n \"enclosure_8\": {\n \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/imagery/wms?\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"ENMAP_HSI_L0_QL_QUALITY_CIRRUS - EnMAP HSI L0 Quicklooks Quality Cirrus\"\n },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n },\n \ \"enclosure_5\": {\n \"roles\": [\"data\"],\n \"href\": \"https://geoservice.dlr.de/eoc/imagery/wms?\",\n \"type\": \"application/x-binary\",\n \ \"title\": \"ENMAP_HSI_L0_QL_QUALITY_CLOUDSHADOW - EnMAP HSI L0 Quicklooks Quality Cloudshadow\"\n },\n \"quicklook\": {\n \"roles\": [\"overview\"],\n \"href\": \"https://geoservice.dlr.de/catalogue/srv/api/records/a13994c5-8d10-4627-90b8-60077ab5de40/attachments/ENMAP_HSI_L0_ql.jpg\",\n \ \"type\": \"image/jpeg\",\n \"title\": \"graphic overview\"\n \ },\n \"enclosure_6\": {\n \"roles\": [\"data\"],\n \ \"href\": \"https://geoservice.dlr.de/eoc/imagery/wms?\",\n \"type\": \"application/x-binary\",\n \"title\": \"ENMAP_HSI_L0_QL_QUALITY_CLOUD - EnMAP HSI L0 Quicklooks Quality Cloud\"\n }\n },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"icon\",\n \"href\": \"https://geoservice.dlr.de/catalogue/srv/api/records/a13994c5-8d10-4627-90b8-60077ab5de40/attachments/ENMAP_HSI_L0_ql_s.jpg\",\n \ \"type\": \"image/jpeg\",\n \"title\": \"graphic overview\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://geoservice.dlr.de/eoc/imagery/wms?SERVICE=WMS%26REQUEST=GetCapabilities\"\n \ },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a13994c5-8d10-4627-90b8-60077ab5de40?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/DE@DLR\",\n \ \"title\": \"More collections for DE/DLR\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/EnMAP\",\n \ \"title\": \"More collections for EnMAP platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/249b8467-308b-55f9-8b74-198a335780e0\",\n \ \"title\": \"More collections for HSI instrument\"\n }\n \ ],\n \"id\": \"a13994c5-8d10-4627-90b8-60077ab5de40\",\n \"updated\": \"2024-08-12T07:07:07Z\",\n \"stac_extensions\": [\n \"https://stac-extensions.github.io/processing/v1.2.0/schema.json\",\n \ \"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"\n \ ],\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"DE/DLR\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"HSI\"],\n \"processing:lineage\": [\"Input data: Raw EnMAP HSI satellite data\"],\n \"platform\": [\"EnMAP\"]\n \ }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n ]]},\n \ \"temporal\": {\"interval\": [[\n \"2018-05-01T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"Oceans\",\n \"EARTH SCIENCE > OCEANS\",\n \ \"Marine Environment Monitoring\",\n \"EARTH SCIENCE > OCEANS > MARINE ENVIRONMENT MONITORING\",\n \"Ocean Circulation\",\n \"EARTH SCIENCE > OCEANS > OCEAN CIRCULATION\",\n \"Sun-synchronous\",\n \"L-Band (19.4 - 76.9 cm)\",\n \"305\",\n \"758 km\",\n \"1000 km\",\n \"Interferometric Radiometers\",\n \"SMOS\",\n \"MIRAS\"\n \ ],\n \"created\": \"2019-05-31T00:00:00.000Z\",\n \"description\": \"SMOS L3WS products are daily composite maps of the collected SMOS L2 swath wind products for a specific day, provided with the same grid than the Level 2 wind data (SMOS L2WS NRT) but separated into ascending and descending passes.\\r\\n\\r\\nThis product is available the day after sensing from Ifremer, in NetCDF format.\\r\\n\\r\\nBefore using this dataset, please check the read-me-first note available in the Resources section below.\",\n \"type\": \"Collection\",\n \"title\": \"SMOS L3 Daily Wind Speed\",\n \"version\": \"4.0\",\n \"license\": \"various\",\n \ \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \ \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=L3SW_Open\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure\": {\n \"roles\": [\"data\"],\n \"href\": \"https://smos-diss.eo.esa.int/oads/meta/L2_SWS_Open/index/\",\n \"type\": \"text/html\",\n \"title\": \"OADS repository - OADS repository\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L3SW_Open\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/L3SW_Open\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n \ },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"search\",\n \ \"href\": \"https://eocat.esa.int/eo-catalogue/collections/series/items/L3SW_Open/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/SMOS-Wind-Products-Description.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"SMOS Wind Products Description Document (PDD) - Product Specifications\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/SMOS-WIND-DS-ATBD.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"SMOS Wind Products\_ATBD - Algorithm Theoretical Basis Document (ATBD)\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/documents/d/guest/smos-wind-data-service-read-me-first-note-pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Read-me-first note for the release of SMOS Wind\_data\_products - Release Note\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"http://www.smosstorm.org/\",\n \ \"type\": \"text/html\",\n \"title\": \"SMOS Wind Data Service at Ifremer - External resources\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?category=tools+and+toolboxes&mission=smos&tools_type=analysis%2Cprocessing%2Cvisualisation\",\n \ \"type\": \"text/html\",\n \"title\": \"SMOS Software Tools - Software Tools\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L3SW_Open?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/SMOS\",\n \ \"title\": \"More collections for SMOS platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/5cda1e1d-7fb8-59c0-8a37-eaceff0ce027\",\n \ \"title\": \"More collections for MIRAS instrument\"\n }\n \ ],\n \"id\": \"L3SW_Open\",\n \"updated\": \"2024-07-24T12:23:19Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/version/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"https://earth.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"MIRAS\"],\n \ \"platform\": [\"SMOS\"]\n }\n }\n ],\n \"numberReturned\": 10,\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections?datetime=2024-01-01T00%3A00%3A01Z%2F2024-01-01T00%3A00%3A10Z\",\n \ \"type\": \"application/json\",\n \"title\": \"This document\"\n \ },\n {\n \"rel\": \"next\",\n \"href\": \"https://emc.spacebel.be/collections?datetime=2024-01-01T00%3A00%3A01Z%2F2024-01-01T00%3A00%3A10Z&startRecord=21\",\n \ \"type\": \"application/json\",\n \"title\": \"Next results\"\n \ },\n {\n \"rel\": \"previous\",\n \"href\": \"https://emc.spacebel.be/collections?datetime=2024-01-01T00%3A00%3A01Z%2F2024-01-01T00%3A00%3A10Z&startRecord=1\",\n \ \"type\": \"application/json\",\n \"title\": \"Previous results\"\n \ },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for collection search\"\n }\n ],\n \"numberMatched\": 1025\n}" headers: Access-Control-Allow-Headers: - X-PINGOTHER, Content-Type, Authorization, Accept Access-Control-Allow-Methods: - POST,GET,PUT,HEAD,OPTIONS,DELETE Access-Control-Allow-Origin: - '*' Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Connection: - keep-alive Content-Type: - application/json;charset=UTF-8 Date: - Thu, 17 Jul 2025 12:51:03 GMT Expires: - '0' Pragma: - no-cache Server: - openresty Strict-Transport-Security: - max-age=31536000 ; includeSubDomains Transfer-Encoding: - chunked X-Content-Type-Options: - nosniff X-Frame-Options: - DENY X-Served-By: - emc.spacebel.be X-XSS-Protection: - 1; mode=block status: code: 200 message: '' version: 1 TestCollectionSearch.test_enabled_but_client_side_q.yaml000066400000000000000000005474101503646565400372610ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_collection_searchinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://emc.spacebel.be/collections?limit=5&q=sentinel response: body: string: "{\n \"collections\": [\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"2021-10-09T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"FedEO\",\n \"SCIHUB\",\n \"DIF10\",\n \ \"Sea Surface Topography\",\n \"EARTH SCIENCE > OCEANS > SEA SURFACE TOPOGRAPHY\",\n \"Radar Altimeters\",\n \"Radiometers\",\n \ \"Sentinel-6\",\n \"POSEIDON-4\",\n \"AMR-C\"\n ],\n \ \"created\": \"2024-01-02T00:00:00.00Z\",\n \"description\": \"Copernicus Sentinel-6 Michael Freilich is an Earth Observation satellite mission developed to provide enhanced continuity to the very stable time series of mean sea level measurements and ocean sea state that started in 1992, with the TOPEX/Poseidon mission, then continued by the Jason-1, Jason-2 and Jason-3 satellite missions.\",\n \ \"type\": \"Collection\",\n \"title\": \"Sentinel-6 Products\",\n \ \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=EOP:ESA:SCIHUB:S6\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series EOP:ESA:Sentinel-6\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S6/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for EOP:ESA:SCIHUB:S6\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://dataspace.copernicus.eu\",\n \"title\": \"Copernicus Data Space Ecosystem - Copernicus Data Space Ecosystem\"\n },\n {\n \ \"rel\": \"search\",\n \"href\": \"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S6\",\n \ \"title\": \"FedEO Clearinghouse - FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S6/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinel.esa.int/web/sentinel/missions/sentinel-6\",\n \ \"title\": \"ESA Sentinel-6 Online\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-6\",\n \ \"title\": \"More collections for Sentinel-6 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/700b6e99-a527-5819-b283-4656c8832ea0\",\n \ \"title\": \"More collections for AMR-C instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/5d1512a5-cb97-5e74-8778-35cd65c06936\",\n \ \"title\": \"More collections for POSEIDON-4 instrument\"\n }\n \ ],\n \"id\": \"EOP:ESA:Sentinel-6\",\n \"updated\": \"2020-11-21T00:00:00.00Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\n \"AMR-C\",\n \"POSEIDON-4\"\n \ ],\n \"platform\": [\"Sentinel-6\"]\n }\n },\n {\n \ \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n \ -90,\n 180,\n 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2017-10-13T00:00:00.000Z\",\n null\n \ ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"FedEO\",\n \"SCIHUB\",\n \"DIF10\",\n \"Air Quality\",\n \"EARTH SCIENCE > ATMOSPHERE > AIR QUALITY\",\n \"Sentinel-5P\",\n \ \"TROPOMI\"\n ],\n \"created\": \"2018-10-09T00:00:00.00Z\",\n \ \"description\": \"The Sentinel-5P data offer for the Pre-Operations Open Access Hub consists of Level-1B and Level-2 user products for the TROPOMI instrument.\",\n \"type\": \"Collection\",\n \"title\": \"Sentinel-5P Products\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=EOP:ESA:SCIHUB:S5P\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series EOP:ESA:Sentinel-5P\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S5P/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for EOP:ESA:SCIHUB:S5P\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://dataspace.copernicus.eu\",\n \"title\": \"Copernicus Data Space Ecosystem - Copernicus Data Space Ecosystem\"\n },\n {\n \ \"rel\": \"search\",\n \"href\": \"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S5P\",\n \ \"title\": \"FedEO Clearinghouse - FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S5P/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinel.esa.int/web/sentinel/missions/sentinel-5P\",\n \ \"title\": \"ESA Sentinel-5P Online\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-5p-tropomi\",\n \ \"title\": \"Sentinel-5P TROPOMI User Guide \"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-5P\",\n \ \"title\": \"More collections for Sentinel-5P platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/09f91afd-c0d2-52a9-9b50-b895a60917fa\",\n \ \"title\": \"More collections for TROPOMI instrument\"\n }\n \ ],\n \"id\": \"EOP:ESA:Sentinel-5P\",\n \"updated\": \"2017-04-30T00:00:00.00Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"TROPOMI\"],\n \"processing:lineage\": [\"The Sentinel-5 Precursor objectives are to provide operational space-borne observations in support to the operational monitoring of Air Quality, Climate, Ozone and Surface UV. It will provide measurements of Ozone, NO_2, SO_2, Formaldehyde, Aerosol, Carbonmonoxide, Methane, Clouds.\"],\n \"platform\": [\"Sentinel-5P\"]\n \ }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n ]]},\n \ \"temporal\": {\"interval\": [[\n \"2016-01-01T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"MAJA\",\n \"GeoTiff\",\n \"Forestry\",\n \ \"Forest Conservation/Protection\",\n \"Sentinel-2\",\n \"MSI\"\n \ ],\n \"created\": \"2023-09-05T00:00:00.00Z\",\n \"description\": \"False colour satellite data allows you to upgrade your forest surveys. It provides you with a broader perspective of biotic and abiotic disturbances in real-time. This enables you to make more informed decisions to safeguard the forests. Forestry professionals can utilise false colour imagery to optimise their forestry operations, such as planning and monitoring tree planting, conducting inventory assessments, and identifying areas for habitat restoration.\",\n \ \"type\": \"Collection\",\n \"title\": \"False Colour Composites\",\n \ \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=F-FCC\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n },\n \ \"quicklook\": {\n \"roles\": [\"overview\"],\n \"href\": \"https://eovoc.spacebel.be/images/fcc.png\",\n \"type\": \"image/png\",\n \ \"title\": \"graphic overview\"\n }\n },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series F-FCC\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for F-FCC\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/F-FCC/api\",\n \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"ordering\",\n \ \"href\": \"https://emc.spacebel.be/ordering?collection=F-FCC\",\n \ \"type\": \"text/html\",\n \"title\": \"Order F-FCC Product\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://eovoc.spacebel.be/images/FC_Brochure_final.pdf\",\n \"type\": \"application/pdf\",\n \"title\": \"F-FCC Brochure - F-FCC Product Description\"\n },\n {\n \"rel\": \"alternate\",\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/Spacebel SA\",\n \"title\": \"More collections for Spacebel SA\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-2\",\n \ \"title\": \"More collections for Sentinel-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/s2-msi\",\n \ \"title\": \"More collections for MSI instrument\"\n }\n \ ],\n \"id\": \"F-FCC\",\n \"updated\": \"2023-09-05T00:00:00.00Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"Spacebel SA\",\n \"url\": \"https://www.spacebel.com\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"MSI\"],\n \ \"platform\": [\"Sentinel-2\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2002-05-14T00:00:00.000Z\",\n \ \"2012-04-08T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"sci:doi\": \"10.5270/EN1-85m0a7b\",\n \"keywords\": [\n \"World\",\n \"Land Surface\",\n \"Topography\",\n \ \"Cryosphere\",\n \"Snow and Ice\",\n \"Oceans\",\n \ \"Ocean Waves\",\n \"Sea Surface Topography\",\n \"Atmosphere\",\n \ \"Atmospheric Winds\",\n \"EARTH SCIENCE > LAND SURFACE\",\n \ \"EARTH SCIENCE > LAND SURFACE > TOPOGRAPHY\",\n \"EARTH SCIENCE > CRYOSPHERE\",\n \"EARTH SCIENCE > CRYOSPHERE > SNOW/ICE\",\n \"EARTH SCIENCE > TERRESTRIAL HYDROSPHERE > SNOW/ICE\",\n \"EARTH SCIENCE > OCEANS\",\n \"EARTH SCIENCE > OCEANS > OCEAN WAVES\",\n \"EARTH SCIENCE > OCEANS > SEA SURFACE TOPOGRAPHY\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \ \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\",\n \"Sun-synchronous\",\n \ \"800 km\",\n \"5 - 1150 km\",\n \"Radar Altimeters\",\n \ \"Envisat\",\n \"RA-2\"\n ],\n \"created\": \"2019-05-29T00:00:00.00Z\",\n \ \"description\": \"This is a RA-2 Sensor and Geophysical Data Record (SGDR) Full Mission Reprocessing (FMR) v3 product. This FMR follows the first Envisat Altimetry reprocessing Version (V2.1) completed in 2012. The GDR and S-GDR data products were reprocessed for all cycles from 6 to 113 (May 2002 to April 2012) into a homogeneous standard in NetCDF format (close to Sentinel-3). The Sensor Data Record (SGDR) Product from RA-2/MWR includes the data in the GDR product (https://earth.esa.int/eogateway/catalog/envisat-ra-2-geophysical-data-record-gdr-ra2_gdr__2p-) (RA-2 geophysical data, MWR data) and also RA-2 averaged waveforms (18Hz) and RA-2 individual waveforms (1800Hz). This product is a continuation of ERS RA data. This data product has a coverage of 1 pass, pole-pole, a spatial sampling of about 390 m along track and a size of 31 to 40 MB, depending on presence of individual waveforms. The radiometric accuracy is 0.2 dB and auxiliary data include: Orbit state vectors (DORIS, FOS), RA2 and MWR characterisation data, Platform attitude, Gain calibration, USO frequency, ECMWF data, time relation, leap second, Ionospheric corrections, geoid, mean sea surface, slope data, and tide model (ocean, earth, loading, pole). Please consult the Envisat RA-2/MWR Product Quality Readme file before using the data.\",\n \"type\": \"Collection\",\n \"title\": \"Envisat RA-2 Sensor and Geophysical Data Record - SGDR\_[RA2_MWS__2P]\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/10.5270/EN1-85m0a7b\",\n \"type\": \"text/html\",\n \"title\": \"Landing page\"\n },\n {\n \ \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/web/sppa/mission-performance/esa-missions/envisat/ra2/products-and-algorithms/products-information/aux\",\n \ \"type\": \"text/html\",\n \"title\": \"RA2-MWR Auxiliary Data - Auxiliary Data\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/instruments/ra2/products-information\",\n \ \"type\": \"text/html\",\n \"title\": \"Envisat RA-2 MWR Sensor Performance, Products and Algorithms - Product Information\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-Level-2-Product-Handbook.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"RA-2 Product Handbook - User Manual\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-product-specifications.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"RA-2 Product Specifications - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-MWR-Level-2-Product-Readme-3.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"ReadMe file - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Error-Budget-Envisat-Altimetry-Mission.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Envisat Altimetry Error Budget - Technical Note\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?text=&category=Tools%20and%20toolboxes&filter=ra2-mwr\",\n \ \"type\": \"text/html\",\n \"title\": \"RA-2 Software Tools - Tools\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Envisat\",\n \ \"title\": \"More collections for Envisat platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/2ebd3948-3f88-5944-8e3c-7e60099ec941\",\n \ \"title\": \"More collections for RA-2 instrument\"\n }\n \ ],\n \"id\": \"ENVISAT.RA2.MWS_2P\",\n \"updated\": \"2023-06-13T13:23:41Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"RA-2\"],\n \ \"platform\": [\"Envisat\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2002-04-29T00:00:00.000Z\",\n \ \"2012-04-08T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"sci:doi\": \"10.5270/EN1-opsw96m\",\n \"keywords\": [\n \"World\",\n \"DIF10\",\n \"Atmosphere\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \"Atmospheric Winds\",\n \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\",\n \"Sun-synchronous\",\n \"MERIS RR - 1040 m across track / 1160 m along track\",\n \"800 km\",\n \"5 - 1150 km\",\n \"Imaging Spectrometers/Radiometers\",\n \"Envisat\",\n \ \"MERIS\"\n ],\n \"created\": \"2019-05-28T00:00:00.000Z\",\n \ \"description\": \"The MERIS Level 1 Reduced Resolution (RR) product contains the Top of Atmosphere (TOA) upwelling spectral radiance measures at reduced resolution. The in-band reference irradiances for the 15 MERIS bands are computed by averaging the in-band solar irradiance of each pixel. The in-band solar irradiance of each pixel is computed by integrating the reference solar spectrum with the band-pass of each pixel. The MERIS RR Level 1 product has Sentinel 3-like format starting from the 4th reprocessing data released to users in July 2020. Each measurement and annotation data file is in NetCDF 4. The Level 1 product is composed of 22 measurements data files: 15 files containing radiances at each band (one band per file), accompanied by the associated error estimates, and 7 annotation data files. The band-pass of each pixel is derived from on-ground and in-flight characterisation via an instrument model. The values \\\"Band wavelength\\\" and \\\"Bandwidth\\\" provided in the Manifest file of the Level 1 products are the averaged band-pass of each pixel over the instrument field of view. The Auxiliary data used are listed in the Manifest file associated to each product. MERIS was operating continuously on the day side of the Envisat orbit (descending track). RR data was acquired over 43.5 minutes in each orbit, i.e. 80% of the descending track.\",\n \ \"type\": \"Collection\",\n \"title\": \"Envisat MERIS Reduced Resolution - Level 1 [MER_RR__1P/ME_1_RRG]\",\n \"license\": \"various\",\n \ \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \ \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=MER.RR__1P\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"offering_2\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetMap&layers=Density%3AMER.RR__1P&bbox=-180.0,-90.0,180.0,90.0&width=768&height=384&srs=EPSG%3A4326&transparent=true&styles=Turbo&format=image%2Fpng\",\n \ \"title\": \"GetMap\",\n \"type\": \"image/png\"\n },\n \ \"offering_1\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\",\n \ \"title\": \"GetCapabilities\",\n \"type\": \"application/xml\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/10.5270/EN1-opsw96m\",\n \"type\": \"text/html\",\n \"title\": \"Landing page\"\n },\n {\n \ \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series MER.RR__1P\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for MER.RR__1P\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/MER.RR__1P/api\",\n \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/instruments/meris/auxiliary-data\",\n \ \"type\": \"text/html\",\n \"title\": \"MERIS auxiliary data - Auxiliary Data\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/MERIS-Sentinel-3-Like-L1-andL2-PFS.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"MERIS Sentinel3-like L1/L2 Product Format Specification - Product Specifications\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/instruments/meris/products-information\",\n \ \"type\": \"text/html\",\n \"title\": \"MERIS 4th data reprocessing documentation - Product Specifications\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?text=&category=Document%20library&filter=Envisat,MERIS&subFilter=&sortby=NEWEST_FIRST\",\n \ \"type\": \"text/html\",\n \"title\": \"More MERIS Documents - Other\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?text=MERIS&category=Tools%20and%20toolboxes&filter=Envisat,MERIS&subFilter=&sortby=ZA\",\n \ \"type\": \"text/html\",\n \"title\": \"MERIS Software and Tools - Tools\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/missions/envisat\",\n \ \"type\": \"text/html\",\n \"title\": \"Envisat mission - Description of Envisat mission\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/instruments/meris\",\n \ \"type\": \"text/html\",\n \"title\": \"MERIS instrument - Description of MERIS instrument\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"wms:transparent\": true,\n \"rel\": \"wms\",\n \"wms:dimensions\": {\"version\": \"1.1.1\"},\n \"href\": \"https://eovoc.spacebel.be/geoserver/wms\",\n \ \"type\": \"image/png\",\n \"title\": \"MER.RR__1P\",\n \ \"wms:layers\": [\"Density:MER.RR__1P\"],\n \"wms:styles\": [\"Turbo\"]\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Envisat\",\n \ \"title\": \"More collections for Envisat platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/003ed1d0-9f6c-59cb-a427-1fa4c4a92107\",\n \ \"title\": \"More collections for MERIS instrument\"\n }\n \ ],\n \"id\": \"MER.RR__1P\",\n \"updated\": \"2023-11-10T08:30:10Z\",\n \ \"stac_extensions\": [\n \"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\n \ \"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\"\n \ ],\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"MERIS\"],\n \ \"platform\": [\"Envisat\"]\n }\n }\n ],\n \"numberReturned\": 5,\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections?limit=5&q=sentinel\",\n \ \"type\": \"application/json\",\n \"title\": \"This document\"\n \ },\n {\n \"rel\": \"next\",\n \"href\": \"https://emc.spacebel.be/collections?limit=5&q=sentinel&startRecord=6\",\n \ \"type\": \"application/json\",\n \"title\": \"Next results\"\n \ },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for collection search\"\n }\n ],\n \"numberMatched\": 216\n}" headers: Access-Control-Allow-Headers: - X-PINGOTHER, Content-Type, Authorization, Accept Access-Control-Allow-Methods: - POST,GET,PUT,HEAD,OPTIONS,DELETE Access-Control-Allow-Origin: - '*' Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Connection: - keep-alive Content-Type: - application/json;charset=UTF-8 Date: - Thu, 17 Jul 2025 12:51:10 GMT Expires: - '0' Pragma: - no-cache Server: - openresty Strict-Transport-Security: - max-age=31536000 ; includeSubDomains Transfer-Encoding: - chunked X-Content-Type-Options: - nosniff X-Frame-Options: - DENY X-Served-By: - emc.spacebel.be X-XSS-Protection: - 1; mode=block status: code: 200 message: '' - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://emc.spacebel.be/collections?limit=5&q=sentinel response: body: string: "{\n \"collections\": [\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"2021-10-09T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"FedEO\",\n \"SCIHUB\",\n \"DIF10\",\n \ \"Sea Surface Topography\",\n \"EARTH SCIENCE > OCEANS > SEA SURFACE TOPOGRAPHY\",\n \"Radar Altimeters\",\n \"Radiometers\",\n \ \"Sentinel-6\",\n \"POSEIDON-4\",\n \"AMR-C\"\n ],\n \ \"created\": \"2024-01-02T00:00:00.00Z\",\n \"description\": \"Copernicus Sentinel-6 Michael Freilich is an Earth Observation satellite mission developed to provide enhanced continuity to the very stable time series of mean sea level measurements and ocean sea state that started in 1992, with the TOPEX/Poseidon mission, then continued by the Jason-1, Jason-2 and Jason-3 satellite missions.\",\n \ \"type\": \"Collection\",\n \"title\": \"Sentinel-6 Products\",\n \ \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=EOP:ESA:SCIHUB:S6\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series EOP:ESA:Sentinel-6\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S6/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for EOP:ESA:SCIHUB:S6\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://dataspace.copernicus.eu\",\n \"title\": \"Copernicus Data Space Ecosystem - Copernicus Data Space Ecosystem\"\n },\n {\n \ \"rel\": \"search\",\n \"href\": \"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S6\",\n \ \"title\": \"FedEO Clearinghouse - FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S6/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinel.esa.int/web/sentinel/missions/sentinel-6\",\n \ \"title\": \"ESA Sentinel-6 Online\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-6\",\n \ \"title\": \"More collections for Sentinel-6 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/700b6e99-a527-5819-b283-4656c8832ea0\",\n \ \"title\": \"More collections for AMR-C instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/5d1512a5-cb97-5e74-8778-35cd65c06936\",\n \ \"title\": \"More collections for POSEIDON-4 instrument\"\n }\n \ ],\n \"id\": \"EOP:ESA:Sentinel-6\",\n \"updated\": \"2020-11-21T00:00:00.00Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\n \"AMR-C\",\n \"POSEIDON-4\"\n \ ],\n \"platform\": [\"Sentinel-6\"]\n }\n },\n {\n \ \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n \ -90,\n 180,\n 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2017-10-13T00:00:00.000Z\",\n null\n \ ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"FedEO\",\n \"SCIHUB\",\n \"DIF10\",\n \"Air Quality\",\n \"EARTH SCIENCE > ATMOSPHERE > AIR QUALITY\",\n \"Sentinel-5P\",\n \ \"TROPOMI\"\n ],\n \"created\": \"2018-10-09T00:00:00.00Z\",\n \ \"description\": \"The Sentinel-5P data offer for the Pre-Operations Open Access Hub consists of Level-1B and Level-2 user products for the TROPOMI instrument.\",\n \"type\": \"Collection\",\n \"title\": \"Sentinel-5P Products\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=EOP:ESA:SCIHUB:S5P\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series EOP:ESA:Sentinel-5P\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S5P/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for EOP:ESA:SCIHUB:S5P\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://dataspace.copernicus.eu\",\n \"title\": \"Copernicus Data Space Ecosystem - Copernicus Data Space Ecosystem\"\n },\n {\n \ \"rel\": \"search\",\n \"href\": \"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S5P\",\n \ \"title\": \"FedEO Clearinghouse - FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S5P/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinel.esa.int/web/sentinel/missions/sentinel-5P\",\n \ \"title\": \"ESA Sentinel-5P Online\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-5p-tropomi\",\n \ \"title\": \"Sentinel-5P TROPOMI User Guide \"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-5P\",\n \ \"title\": \"More collections for Sentinel-5P platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/09f91afd-c0d2-52a9-9b50-b895a60917fa\",\n \ \"title\": \"More collections for TROPOMI instrument\"\n }\n \ ],\n \"id\": \"EOP:ESA:Sentinel-5P\",\n \"updated\": \"2017-04-30T00:00:00.00Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"TROPOMI\"],\n \"processing:lineage\": [\"The Sentinel-5 Precursor objectives are to provide operational space-borne observations in support to the operational monitoring of Air Quality, Climate, Ozone and Surface UV. It will provide measurements of Ozone, NO_2, SO_2, Formaldehyde, Aerosol, Carbonmonoxide, Methane, Clouds.\"],\n \"platform\": [\"Sentinel-5P\"]\n \ }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n ]]},\n \ \"temporal\": {\"interval\": [[\n \"2016-01-01T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"MAJA\",\n \"GeoTiff\",\n \"Forestry\",\n \ \"Forest Conservation/Protection\",\n \"Sentinel-2\",\n \"MSI\"\n \ ],\n \"created\": \"2023-09-05T00:00:00.00Z\",\n \"description\": \"False colour satellite data allows you to upgrade your forest surveys. It provides you with a broader perspective of biotic and abiotic disturbances in real-time. This enables you to make more informed decisions to safeguard the forests. Forestry professionals can utilise false colour imagery to optimise their forestry operations, such as planning and monitoring tree planting, conducting inventory assessments, and identifying areas for habitat restoration.\",\n \ \"type\": \"Collection\",\n \"title\": \"False Colour Composites\",\n \ \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=F-FCC\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n },\n \ \"quicklook\": {\n \"roles\": [\"overview\"],\n \"href\": \"https://eovoc.spacebel.be/images/fcc.png\",\n \"type\": \"image/png\",\n \ \"title\": \"graphic overview\"\n }\n },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series F-FCC\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for F-FCC\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/F-FCC/api\",\n \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"ordering\",\n \ \"href\": \"https://emc.spacebel.be/ordering?collection=F-FCC\",\n \ \"type\": \"text/html\",\n \"title\": \"Order F-FCC Product\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://eovoc.spacebel.be/images/FC_Brochure_final.pdf\",\n \"type\": \"application/pdf\",\n \"title\": \"F-FCC Brochure - F-FCC Product Description\"\n },\n {\n \"rel\": \"alternate\",\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/Spacebel SA\",\n \"title\": \"More collections for Spacebel SA\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-2\",\n \ \"title\": \"More collections for Sentinel-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/s2-msi\",\n \ \"title\": \"More collections for MSI instrument\"\n }\n \ ],\n \"id\": \"F-FCC\",\n \"updated\": \"2023-09-05T00:00:00.00Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"Spacebel SA\",\n \"url\": \"https://www.spacebel.com\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"MSI\"],\n \ \"platform\": [\"Sentinel-2\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2002-05-14T00:00:00.000Z\",\n \ \"2012-04-08T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"sci:doi\": \"10.5270/EN1-85m0a7b\",\n \"keywords\": [\n \"World\",\n \"Land Surface\",\n \"Topography\",\n \ \"Cryosphere\",\n \"Snow and Ice\",\n \"Oceans\",\n \ \"Ocean Waves\",\n \"Sea Surface Topography\",\n \"Atmosphere\",\n \ \"Atmospheric Winds\",\n \"EARTH SCIENCE > LAND SURFACE\",\n \ \"EARTH SCIENCE > LAND SURFACE > TOPOGRAPHY\",\n \"EARTH SCIENCE > CRYOSPHERE\",\n \"EARTH SCIENCE > CRYOSPHERE > SNOW/ICE\",\n \"EARTH SCIENCE > TERRESTRIAL HYDROSPHERE > SNOW/ICE\",\n \"EARTH SCIENCE > OCEANS\",\n \"EARTH SCIENCE > OCEANS > OCEAN WAVES\",\n \"EARTH SCIENCE > OCEANS > SEA SURFACE TOPOGRAPHY\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \ \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\",\n \"Sun-synchronous\",\n \ \"800 km\",\n \"5 - 1150 km\",\n \"Radar Altimeters\",\n \ \"Envisat\",\n \"RA-2\"\n ],\n \"created\": \"2019-05-29T00:00:00.00Z\",\n \ \"description\": \"This is a RA-2 Sensor and Geophysical Data Record (SGDR) Full Mission Reprocessing (FMR) v3 product. This FMR follows the first Envisat Altimetry reprocessing Version (V2.1) completed in 2012. The GDR and S-GDR data products were reprocessed for all cycles from 6 to 113 (May 2002 to April 2012) into a homogeneous standard in NetCDF format (close to Sentinel-3). The Sensor Data Record (SGDR) Product from RA-2/MWR includes the data in the GDR product (https://earth.esa.int/eogateway/catalog/envisat-ra-2-geophysical-data-record-gdr-ra2_gdr__2p-) (RA-2 geophysical data, MWR data) and also RA-2 averaged waveforms (18Hz) and RA-2 individual waveforms (1800Hz). This product is a continuation of ERS RA data. This data product has a coverage of 1 pass, pole-pole, a spatial sampling of about 390 m along track and a size of 31 to 40 MB, depending on presence of individual waveforms. The radiometric accuracy is 0.2 dB and auxiliary data include: Orbit state vectors (DORIS, FOS), RA2 and MWR characterisation data, Platform attitude, Gain calibration, USO frequency, ECMWF data, time relation, leap second, Ionospheric corrections, geoid, mean sea surface, slope data, and tide model (ocean, earth, loading, pole). Please consult the Envisat RA-2/MWR Product Quality Readme file before using the data.\",\n \"type\": \"Collection\",\n \"title\": \"Envisat RA-2 Sensor and Geophysical Data Record - SGDR\_[RA2_MWS__2P]\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/10.5270/EN1-85m0a7b\",\n \"type\": \"text/html\",\n \"title\": \"Landing page\"\n },\n {\n \ \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/web/sppa/mission-performance/esa-missions/envisat/ra2/products-and-algorithms/products-information/aux\",\n \ \"type\": \"text/html\",\n \"title\": \"RA2-MWR Auxiliary Data - Auxiliary Data\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/instruments/ra2/products-information\",\n \ \"type\": \"text/html\",\n \"title\": \"Envisat RA-2 MWR Sensor Performance, Products and Algorithms - Product Information\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-Level-2-Product-Handbook.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"RA-2 Product Handbook - User Manual\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-product-specifications.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"RA-2 Product Specifications - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-MWR-Level-2-Product-Readme-3.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"ReadMe file - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Error-Budget-Envisat-Altimetry-Mission.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Envisat Altimetry Error Budget - Technical Note\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?text=&category=Tools%20and%20toolboxes&filter=ra2-mwr\",\n \ \"type\": \"text/html\",\n \"title\": \"RA-2 Software Tools - Tools\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Envisat\",\n \ \"title\": \"More collections for Envisat platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/2ebd3948-3f88-5944-8e3c-7e60099ec941\",\n \ \"title\": \"More collections for RA-2 instrument\"\n }\n \ ],\n \"id\": \"ENVISAT.RA2.MWS_2P\",\n \"updated\": \"2023-06-13T13:23:41Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"RA-2\"],\n \ \"platform\": [\"Envisat\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2002-04-29T00:00:00.000Z\",\n \ \"2012-04-08T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"sci:doi\": \"10.5270/EN1-opsw96m\",\n \"keywords\": [\n \"World\",\n \"DIF10\",\n \"Atmosphere\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \"Atmospheric Winds\",\n \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\",\n \"Sun-synchronous\",\n \"MERIS RR - 1040 m across track / 1160 m along track\",\n \"800 km\",\n \"5 - 1150 km\",\n \"Imaging Spectrometers/Radiometers\",\n \"Envisat\",\n \ \"MERIS\"\n ],\n \"created\": \"2019-05-28T00:00:00.000Z\",\n \ \"description\": \"The MERIS Level 1 Reduced Resolution (RR) product contains the Top of Atmosphere (TOA) upwelling spectral radiance measures at reduced resolution. The in-band reference irradiances for the 15 MERIS bands are computed by averaging the in-band solar irradiance of each pixel. The in-band solar irradiance of each pixel is computed by integrating the reference solar spectrum with the band-pass of each pixel. The MERIS RR Level 1 product has Sentinel 3-like format starting from the 4th reprocessing data released to users in July 2020. Each measurement and annotation data file is in NetCDF 4. The Level 1 product is composed of 22 measurements data files: 15 files containing radiances at each band (one band per file), accompanied by the associated error estimates, and 7 annotation data files. The band-pass of each pixel is derived from on-ground and in-flight characterisation via an instrument model. The values \\\"Band wavelength\\\" and \\\"Bandwidth\\\" provided in the Manifest file of the Level 1 products are the averaged band-pass of each pixel over the instrument field of view. The Auxiliary data used are listed in the Manifest file associated to each product. MERIS was operating continuously on the day side of the Envisat orbit (descending track). RR data was acquired over 43.5 minutes in each orbit, i.e. 80% of the descending track.\",\n \ \"type\": \"Collection\",\n \"title\": \"Envisat MERIS Reduced Resolution - Level 1 [MER_RR__1P/ME_1_RRG]\",\n \"license\": \"various\",\n \ \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \ \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=MER.RR__1P\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"offering_2\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetMap&layers=Density%3AMER.RR__1P&bbox=-180.0,-90.0,180.0,90.0&width=768&height=384&srs=EPSG%3A4326&transparent=true&styles=Turbo&format=image%2Fpng\",\n \ \"title\": \"GetMap\",\n \"type\": \"image/png\"\n },\n \ \"offering_1\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\",\n \ \"title\": \"GetCapabilities\",\n \"type\": \"application/xml\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/10.5270/EN1-opsw96m\",\n \"type\": \"text/html\",\n \"title\": \"Landing page\"\n },\n {\n \ \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series MER.RR__1P\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for MER.RR__1P\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/MER.RR__1P/api\",\n \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/instruments/meris/auxiliary-data\",\n \ \"type\": \"text/html\",\n \"title\": \"MERIS auxiliary data - Auxiliary Data\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/MERIS-Sentinel-3-Like-L1-andL2-PFS.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"MERIS Sentinel3-like L1/L2 Product Format Specification - Product Specifications\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/instruments/meris/products-information\",\n \ \"type\": \"text/html\",\n \"title\": \"MERIS 4th data reprocessing documentation - Product Specifications\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?text=&category=Document%20library&filter=Envisat,MERIS&subFilter=&sortby=NEWEST_FIRST\",\n \ \"type\": \"text/html\",\n \"title\": \"More MERIS Documents - Other\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?text=MERIS&category=Tools%20and%20toolboxes&filter=Envisat,MERIS&subFilter=&sortby=ZA\",\n \ \"type\": \"text/html\",\n \"title\": \"MERIS Software and Tools - Tools\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/missions/envisat\",\n \ \"type\": \"text/html\",\n \"title\": \"Envisat mission - Description of Envisat mission\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/instruments/meris\",\n \ \"type\": \"text/html\",\n \"title\": \"MERIS instrument - Description of MERIS instrument\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"wms:transparent\": true,\n \"rel\": \"wms\",\n \"wms:dimensions\": {\"version\": \"1.1.1\"},\n \"href\": \"https://eovoc.spacebel.be/geoserver/wms\",\n \ \"type\": \"image/png\",\n \"title\": \"MER.RR__1P\",\n \ \"wms:layers\": [\"Density:MER.RR__1P\"],\n \"wms:styles\": [\"Turbo\"]\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Envisat\",\n \ \"title\": \"More collections for Envisat platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/003ed1d0-9f6c-59cb-a427-1fa4c4a92107\",\n \ \"title\": \"More collections for MERIS instrument\"\n }\n \ ],\n \"id\": \"MER.RR__1P\",\n \"updated\": \"2023-11-10T08:30:10Z\",\n \ \"stac_extensions\": [\n \"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\n \ \"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\"\n \ ],\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"MERIS\"],\n \ \"platform\": [\"Envisat\"]\n }\n }\n ],\n \"numberReturned\": 5,\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections?limit=5&q=sentinel\",\n \ \"type\": \"application/json\",\n \"title\": \"This document\"\n \ },\n {\n \"rel\": \"next\",\n \"href\": \"https://emc.spacebel.be/collections?limit=5&q=sentinel&startRecord=6\",\n \ \"type\": \"application/json\",\n \"title\": \"Next results\"\n \ },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for collection search\"\n }\n ],\n \"numberMatched\": 216\n}" headers: Access-Control-Allow-Headers: - X-PINGOTHER, Content-Type, Authorization, Accept Access-Control-Allow-Methods: - POST,GET,PUT,HEAD,OPTIONS,DELETE Access-Control-Allow-Origin: - '*' Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Connection: - keep-alive Content-Type: - application/json;charset=UTF-8 Date: - Thu, 17 Jul 2025 12:51:11 GMT Expires: - '0' Pragma: - no-cache Server: - openresty Strict-Transport-Security: - max-age=31536000 ; includeSubDomains Transfer-Encoding: - chunked X-Content-Type-Options: - nosniff X-Frame-Options: - DENY X-Served-By: - emc.spacebel.be X-XSS-Protection: - 1; mode=block status: code: 200 message: '' - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://emc.spacebel.be/collections?limit=5&q=sentinel response: body: string: "{\n \"collections\": [\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"2021-10-09T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"FedEO\",\n \"SCIHUB\",\n \"DIF10\",\n \ \"Sea Surface Topography\",\n \"EARTH SCIENCE > OCEANS > SEA SURFACE TOPOGRAPHY\",\n \"Radar Altimeters\",\n \"Radiometers\",\n \ \"Sentinel-6\",\n \"POSEIDON-4\",\n \"AMR-C\"\n ],\n \ \"created\": \"2024-01-02T00:00:00.00Z\",\n \"description\": \"Copernicus Sentinel-6 Michael Freilich is an Earth Observation satellite mission developed to provide enhanced continuity to the very stable time series of mean sea level measurements and ocean sea state that started in 1992, with the TOPEX/Poseidon mission, then continued by the Jason-1, Jason-2 and Jason-3 satellite missions.\",\n \ \"type\": \"Collection\",\n \"title\": \"Sentinel-6 Products\",\n \ \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=EOP:ESA:SCIHUB:S6\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series EOP:ESA:Sentinel-6\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S6/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for EOP:ESA:SCIHUB:S6\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://dataspace.copernicus.eu\",\n \"title\": \"Copernicus Data Space Ecosystem - Copernicus Data Space Ecosystem\"\n },\n {\n \ \"rel\": \"search\",\n \"href\": \"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S6\",\n \ \"title\": \"FedEO Clearinghouse - FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S6/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinel.esa.int/web/sentinel/missions/sentinel-6\",\n \ \"title\": \"ESA Sentinel-6 Online\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-6\",\n \ \"title\": \"More collections for Sentinel-6 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/700b6e99-a527-5819-b283-4656c8832ea0\",\n \ \"title\": \"More collections for AMR-C instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/5d1512a5-cb97-5e74-8778-35cd65c06936\",\n \ \"title\": \"More collections for POSEIDON-4 instrument\"\n }\n \ ],\n \"id\": \"EOP:ESA:Sentinel-6\",\n \"updated\": \"2020-11-21T00:00:00.00Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\n \"AMR-C\",\n \"POSEIDON-4\"\n \ ],\n \"platform\": [\"Sentinel-6\"]\n }\n },\n {\n \ \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n \ -90,\n 180,\n 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2017-10-13T00:00:00.000Z\",\n null\n \ ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"FedEO\",\n \"SCIHUB\",\n \"DIF10\",\n \"Air Quality\",\n \"EARTH SCIENCE > ATMOSPHERE > AIR QUALITY\",\n \"Sentinel-5P\",\n \ \"TROPOMI\"\n ],\n \"created\": \"2018-10-09T00:00:00.00Z\",\n \ \"description\": \"The Sentinel-5P data offer for the Pre-Operations Open Access Hub consists of Level-1B and Level-2 user products for the TROPOMI instrument.\",\n \"type\": \"Collection\",\n \"title\": \"Sentinel-5P Products\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=EOP:ESA:SCIHUB:S5P\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series EOP:ESA:Sentinel-5P\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S5P/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for EOP:ESA:SCIHUB:S5P\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://dataspace.copernicus.eu\",\n \"title\": \"Copernicus Data Space Ecosystem - Copernicus Data Space Ecosystem\"\n },\n {\n \ \"rel\": \"search\",\n \"href\": \"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S5P\",\n \ \"title\": \"FedEO Clearinghouse - FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S5P/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinel.esa.int/web/sentinel/missions/sentinel-5P\",\n \ \"title\": \"ESA Sentinel-5P Online\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-5p-tropomi\",\n \ \"title\": \"Sentinel-5P TROPOMI User Guide \"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-5P\",\n \ \"title\": \"More collections for Sentinel-5P platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/09f91afd-c0d2-52a9-9b50-b895a60917fa\",\n \ \"title\": \"More collections for TROPOMI instrument\"\n }\n \ ],\n \"id\": \"EOP:ESA:Sentinel-5P\",\n \"updated\": \"2017-04-30T00:00:00.00Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"TROPOMI\"],\n \"processing:lineage\": [\"The Sentinel-5 Precursor objectives are to provide operational space-borne observations in support to the operational monitoring of Air Quality, Climate, Ozone and Surface UV. It will provide measurements of Ozone, NO_2, SO_2, Formaldehyde, Aerosol, Carbonmonoxide, Methane, Clouds.\"],\n \"platform\": [\"Sentinel-5P\"]\n \ }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n ]]},\n \ \"temporal\": {\"interval\": [[\n \"2016-01-01T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"MAJA\",\n \"GeoTiff\",\n \"Forestry\",\n \ \"Forest Conservation/Protection\",\n \"Sentinel-2\",\n \"MSI\"\n \ ],\n \"created\": \"2023-09-05T00:00:00.00Z\",\n \"description\": \"False colour satellite data allows you to upgrade your forest surveys. It provides you with a broader perspective of biotic and abiotic disturbances in real-time. This enables you to make more informed decisions to safeguard the forests. Forestry professionals can utilise false colour imagery to optimise their forestry operations, such as planning and monitoring tree planting, conducting inventory assessments, and identifying areas for habitat restoration.\",\n \ \"type\": \"Collection\",\n \"title\": \"False Colour Composites\",\n \ \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=F-FCC\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n },\n \ \"quicklook\": {\n \"roles\": [\"overview\"],\n \"href\": \"https://eovoc.spacebel.be/images/fcc.png\",\n \"type\": \"image/png\",\n \ \"title\": \"graphic overview\"\n }\n },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series F-FCC\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for F-FCC\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/F-FCC/api\",\n \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"ordering\",\n \ \"href\": \"https://emc.spacebel.be/ordering?collection=F-FCC\",\n \ \"type\": \"text/html\",\n \"title\": \"Order F-FCC Product\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://eovoc.spacebel.be/images/FC_Brochure_final.pdf\",\n \"type\": \"application/pdf\",\n \"title\": \"F-FCC Brochure - F-FCC Product Description\"\n },\n {\n \"rel\": \"alternate\",\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/Spacebel SA\",\n \"title\": \"More collections for Spacebel SA\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-2\",\n \ \"title\": \"More collections for Sentinel-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/s2-msi\",\n \ \"title\": \"More collections for MSI instrument\"\n }\n \ ],\n \"id\": \"F-FCC\",\n \"updated\": \"2023-09-05T00:00:00.00Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"Spacebel SA\",\n \"url\": \"https://www.spacebel.com\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"MSI\"],\n \ \"platform\": [\"Sentinel-2\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2002-05-14T00:00:00.000Z\",\n \ \"2012-04-08T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"sci:doi\": \"10.5270/EN1-85m0a7b\",\n \"keywords\": [\n \"World\",\n \"Land Surface\",\n \"Topography\",\n \ \"Cryosphere\",\n \"Snow and Ice\",\n \"Oceans\",\n \ \"Ocean Waves\",\n \"Sea Surface Topography\",\n \"Atmosphere\",\n \ \"Atmospheric Winds\",\n \"EARTH SCIENCE > LAND SURFACE\",\n \ \"EARTH SCIENCE > LAND SURFACE > TOPOGRAPHY\",\n \"EARTH SCIENCE > CRYOSPHERE\",\n \"EARTH SCIENCE > CRYOSPHERE > SNOW/ICE\",\n \"EARTH SCIENCE > TERRESTRIAL HYDROSPHERE > SNOW/ICE\",\n \"EARTH SCIENCE > OCEANS\",\n \"EARTH SCIENCE > OCEANS > OCEAN WAVES\",\n \"EARTH SCIENCE > OCEANS > SEA SURFACE TOPOGRAPHY\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \ \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\",\n \"Sun-synchronous\",\n \ \"800 km\",\n \"5 - 1150 km\",\n \"Radar Altimeters\",\n \ \"Envisat\",\n \"RA-2\"\n ],\n \"created\": \"2019-05-29T00:00:00.00Z\",\n \ \"description\": \"This is a RA-2 Sensor and Geophysical Data Record (SGDR) Full Mission Reprocessing (FMR) v3 product. This FMR follows the first Envisat Altimetry reprocessing Version (V2.1) completed in 2012. The GDR and S-GDR data products were reprocessed for all cycles from 6 to 113 (May 2002 to April 2012) into a homogeneous standard in NetCDF format (close to Sentinel-3). The Sensor Data Record (SGDR) Product from RA-2/MWR includes the data in the GDR product (https://earth.esa.int/eogateway/catalog/envisat-ra-2-geophysical-data-record-gdr-ra2_gdr__2p-) (RA-2 geophysical data, MWR data) and also RA-2 averaged waveforms (18Hz) and RA-2 individual waveforms (1800Hz). This product is a continuation of ERS RA data. This data product has a coverage of 1 pass, pole-pole, a spatial sampling of about 390 m along track and a size of 31 to 40 MB, depending on presence of individual waveforms. The radiometric accuracy is 0.2 dB and auxiliary data include: Orbit state vectors (DORIS, FOS), RA2 and MWR characterisation data, Platform attitude, Gain calibration, USO frequency, ECMWF data, time relation, leap second, Ionospheric corrections, geoid, mean sea surface, slope data, and tide model (ocean, earth, loading, pole). Please consult the Envisat RA-2/MWR Product Quality Readme file before using the data.\",\n \"type\": \"Collection\",\n \"title\": \"Envisat RA-2 Sensor and Geophysical Data Record - SGDR\_[RA2_MWS__2P]\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/10.5270/EN1-85m0a7b\",\n \"type\": \"text/html\",\n \"title\": \"Landing page\"\n },\n {\n \ \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/web/sppa/mission-performance/esa-missions/envisat/ra2/products-and-algorithms/products-information/aux\",\n \ \"type\": \"text/html\",\n \"title\": \"RA2-MWR Auxiliary Data - Auxiliary Data\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/instruments/ra2/products-information\",\n \ \"type\": \"text/html\",\n \"title\": \"Envisat RA-2 MWR Sensor Performance, Products and Algorithms - Product Information\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-Level-2-Product-Handbook.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"RA-2 Product Handbook - User Manual\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-product-specifications.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"RA-2 Product Specifications - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-MWR-Level-2-Product-Readme-3.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"ReadMe file - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Error-Budget-Envisat-Altimetry-Mission.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Envisat Altimetry Error Budget - Technical Note\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?text=&category=Tools%20and%20toolboxes&filter=ra2-mwr\",\n \ \"type\": \"text/html\",\n \"title\": \"RA-2 Software Tools - Tools\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Envisat\",\n \ \"title\": \"More collections for Envisat platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/2ebd3948-3f88-5944-8e3c-7e60099ec941\",\n \ \"title\": \"More collections for RA-2 instrument\"\n }\n \ ],\n \"id\": \"ENVISAT.RA2.MWS_2P\",\n \"updated\": \"2023-06-13T13:23:41Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"RA-2\"],\n \ \"platform\": [\"Envisat\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2002-04-29T00:00:00.000Z\",\n \ \"2012-04-08T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"sci:doi\": \"10.5270/EN1-opsw96m\",\n \"keywords\": [\n \"World\",\n \"DIF10\",\n \"Atmosphere\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \"Atmospheric Winds\",\n \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\",\n \"Sun-synchronous\",\n \"MERIS RR - 1040 m across track / 1160 m along track\",\n \"800 km\",\n \"5 - 1150 km\",\n \"Imaging Spectrometers/Radiometers\",\n \"Envisat\",\n \ \"MERIS\"\n ],\n \"created\": \"2019-05-28T00:00:00.000Z\",\n \ \"description\": \"The MERIS Level 1 Reduced Resolution (RR) product contains the Top of Atmosphere (TOA) upwelling spectral radiance measures at reduced resolution. The in-band reference irradiances for the 15 MERIS bands are computed by averaging the in-band solar irradiance of each pixel. The in-band solar irradiance of each pixel is computed by integrating the reference solar spectrum with the band-pass of each pixel. The MERIS RR Level 1 product has Sentinel 3-like format starting from the 4th reprocessing data released to users in July 2020. Each measurement and annotation data file is in NetCDF 4. The Level 1 product is composed of 22 measurements data files: 15 files containing radiances at each band (one band per file), accompanied by the associated error estimates, and 7 annotation data files. The band-pass of each pixel is derived from on-ground and in-flight characterisation via an instrument model. The values \\\"Band wavelength\\\" and \\\"Bandwidth\\\" provided in the Manifest file of the Level 1 products are the averaged band-pass of each pixel over the instrument field of view. The Auxiliary data used are listed in the Manifest file associated to each product. MERIS was operating continuously on the day side of the Envisat orbit (descending track). RR data was acquired over 43.5 minutes in each orbit, i.e. 80% of the descending track.\",\n \ \"type\": \"Collection\",\n \"title\": \"Envisat MERIS Reduced Resolution - Level 1 [MER_RR__1P/ME_1_RRG]\",\n \"license\": \"various\",\n \ \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \ \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=MER.RR__1P\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"offering_2\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetMap&layers=Density%3AMER.RR__1P&bbox=-180.0,-90.0,180.0,90.0&width=768&height=384&srs=EPSG%3A4326&transparent=true&styles=Turbo&format=image%2Fpng\",\n \ \"title\": \"GetMap\",\n \"type\": \"image/png\"\n },\n \ \"offering_1\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\",\n \ \"title\": \"GetCapabilities\",\n \"type\": \"application/xml\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/10.5270/EN1-opsw96m\",\n \"type\": \"text/html\",\n \"title\": \"Landing page\"\n },\n {\n \ \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series MER.RR__1P\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for MER.RR__1P\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/MER.RR__1P/api\",\n \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/instruments/meris/auxiliary-data\",\n \ \"type\": \"text/html\",\n \"title\": \"MERIS auxiliary data - Auxiliary Data\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/MERIS-Sentinel-3-Like-L1-andL2-PFS.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"MERIS Sentinel3-like L1/L2 Product Format Specification - Product Specifications\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/instruments/meris/products-information\",\n \ \"type\": \"text/html\",\n \"title\": \"MERIS 4th data reprocessing documentation - Product Specifications\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?text=&category=Document%20library&filter=Envisat,MERIS&subFilter=&sortby=NEWEST_FIRST\",\n \ \"type\": \"text/html\",\n \"title\": \"More MERIS Documents - Other\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?text=MERIS&category=Tools%20and%20toolboxes&filter=Envisat,MERIS&subFilter=&sortby=ZA\",\n \ \"type\": \"text/html\",\n \"title\": \"MERIS Software and Tools - Tools\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/missions/envisat\",\n \ \"type\": \"text/html\",\n \"title\": \"Envisat mission - Description of Envisat mission\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/instruments/meris\",\n \ \"type\": \"text/html\",\n \"title\": \"MERIS instrument - Description of MERIS instrument\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"wms:transparent\": true,\n \"rel\": \"wms\",\n \"wms:dimensions\": {\"version\": \"1.1.1\"},\n \"href\": \"https://eovoc.spacebel.be/geoserver/wms\",\n \ \"type\": \"image/png\",\n \"title\": \"MER.RR__1P\",\n \ \"wms:layers\": [\"Density:MER.RR__1P\"],\n \"wms:styles\": [\"Turbo\"]\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Envisat\",\n \ \"title\": \"More collections for Envisat platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/003ed1d0-9f6c-59cb-a427-1fa4c4a92107\",\n \ \"title\": \"More collections for MERIS instrument\"\n }\n \ ],\n \"id\": \"MER.RR__1P\",\n \"updated\": \"2023-11-10T08:30:10Z\",\n \ \"stac_extensions\": [\n \"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\n \ \"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\"\n \ ],\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"MERIS\"],\n \ \"platform\": [\"Envisat\"]\n }\n }\n ],\n \"numberReturned\": 5,\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections?limit=5&q=sentinel\",\n \ \"type\": \"application/json\",\n \"title\": \"This document\"\n \ },\n {\n \"rel\": \"next\",\n \"href\": \"https://emc.spacebel.be/collections?limit=5&q=sentinel&startRecord=6\",\n \ \"type\": \"application/json\",\n \"title\": \"Next results\"\n \ },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for collection search\"\n }\n ],\n \"numberMatched\": 216\n}" headers: Access-Control-Allow-Headers: - X-PINGOTHER, Content-Type, Authorization, Accept Access-Control-Allow-Methods: - POST,GET,PUT,HEAD,OPTIONS,DELETE Access-Control-Allow-Origin: - '*' Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Connection: - keep-alive Content-Type: - application/json;charset=UTF-8 Date: - Thu, 17 Jul 2025 12:51:12 GMT Expires: - '0' Pragma: - no-cache Server: - openresty Strict-Transport-Security: - max-age=31536000 ; includeSubDomains Transfer-Encoding: - chunked X-Content-Type-Options: - nosniff X-Frame-Options: - DENY X-Served-By: - emc.spacebel.be X-XSS-Protection: - 1; mode=block status: code: 200 message: '' version: 1 pystac-client-0.9.0/tests/cassettes/test_collection_search/TestCollectionSearch.test_matched.yaml000066400000000000000000002741301503646565400336130ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://earth-search.aws.element84.com/v1/collections?limit=4&q=sentinel response: body: string: "{\"collections\":[{\"type\":\"Collection\",\"id\":\"sentinel-2-pre-c1-l2a\",\"title\":\"Sentinel-2 Pre-Collection 1 Level-2A \",\"description\":\"Sentinel-2 Pre-Collection 1 Level-2A (baseline < 05.00), with data and metadata matching collection sentinel-2-c1-l2a\",\"stac_version\":\"1.0.0\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-pre-c1-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"roles\":[\"visual\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"roles\":[\"overview\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"product_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"id\":\"cop-dem-glo-30\",\"type\":\"Collection\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-30/aggregations\"}],\"title\":\"Copernicus DEM GLO-30\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"DSM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20123/121286/CSCDA_ESA_Mission-specific+Annex_31_Oct_22.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[30],\"platform\":[\"tandem-x\"],\"proj:epsg\":[4326],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[false]},\"description\":\"The Copernicus DEM is a Digital Surface Model (DSM) which represents the surface of the Earth including buildings, infrastructure and vegetation. GLO-30 Public provides limited worldwide coverage at 30 meters because a small subset of tiles covering specific countries are not yet released to the public by the Copernicus Programme.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"raster:bands\":[{\"sampling\":\"point\",\"data_type\":\"float32\",\"spatial_resolution\":30,\"unit\":\"meter\"}]}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"]},{\"id\":\"naip\",\"type\":\"Collection\",\"description\":\"The [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/) (NAIP) provides U.S.-wide, high-resolution aerial imagery, with four spectral bands (R, G, B, IR). NAIP is administered by the [Aerial Field Photography Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/) (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA). \ Data are captured at least once every three years for each state. This dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\n\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip\"},{\"rel\":\"license\",\"href\":\"https://www.fsa.usda.gov/help/policies-and-links/\",\"title\":\"Public Domain\",\"type\":\"text/html\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/F7QN651G\",\"title\":\"NAIP Overview\",\"type\":\"text/html\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.14358/PERS.83.10.737\",\"title\":\"Publication\",\"type\":\"text/html\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/naip/aggregations\"}],\"title\":\"NAIP: National Agriculture Imagery Program\",\"extent\":{\"spatial\":{\"bbox\":[[-160,17,-67,50]]},\"temporal\":{\"interval\":[[\"2010-01-01T00:00:00Z\",\"2022-12-31T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"NAIP\",\"Aerial\",\"Imagery\",\"USDA\",\"AFPO\",\"Agriculture\",\"United States\"],\"providers\":[{\"name\":\"USDA Farm Service Agency\",\"url\":\"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/\",\"roles\":[\"producer\",\"licensor\"]},{\"name\":\"Esri\",\"url\":\"https://www.esri.com\",\"roles\":[\"processor\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/naip\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[0.6,1],\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\",\"description\":\"visible red\"},{\"name\":\"Green\",\"common_name\":\"green\",\"description\":\"visible green\"},{\"name\":\"Blue\",\"common_name\":\"blue\",\"description\":\"visible blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"item_assets\":{\"image\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"RGBIR COG tile\",\"eo:bands\":[{\"name\":\"Red\",\"common_name\":\"red\"},{\"name\":\"Green\",\"common_name\":\"green\"},{\"name\":\"Blue\",\"common_name\":\"blue\"},{\"name\":\"NIR\",\"common_name\":\"nir\",\"description\":\"near-infrared\"}]},\"metadata\":{\"type\":\"text/plain\",\"roles\":[\"metadata\"],\"title\":\"FGDC Metdata\"}},\"sci:doi\":\"10.5066/F7QN651G\",\"sci:publications\":[{\"doi\":\"10.14358/PERS.83.10.737\",\"citation\":\"Maxwell, A. E., Warner, T. A., Vanderbilt, B. C., & Ramezan, C. A. (2017). Land cover classification and feature extraction from National Agriculture Imagery Program (NAIP) orthoimagery: A Review. Photogrammetric Engineering & Remote Sensing, 83(11), 737-747. https://doi.org/10.14358/pers.83.10.737\"}],\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"]},{\"id\":\"cop-dem-glo-90\",\"type\":\"Collection\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90\"},{\"rel\":\"license\",\"href\":\"https://spacedata.copernicus.eu/documents/20123/121286/CSCDA_ESA_Mission-specific+Annex_31_Oct_22.pdf\",\"title\":\"Copernicus DEM License\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/cop-dem-glo-90/aggregations\"}],\"title\":\"Copernicus DEM GLO-90\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2021-04-22T00:00:00Z\",\"2021-04-22T00:00:00Z\"]]}},\"license\":\"proprietary\",\"keywords\":[\"Copernicus\",\"DEM\",\"Elevation\"],\"providers\":[{\"url\":\"https://spacedata.copernicus.eu/documents/20126/0/CSCDA_ESA_Mission-specific+Annex.pdf\",\"name\":\"European Space Agency\",\"roles\":[\"licensor\"]},{\"url\":\"https://registry.opendata.aws/copernicus-dem/\",\"name\":\"Sinergise\",\"roles\":[\"producer\",\"processor\"]},{\"url\":\"https://doi.org/10.5069/G9028PQB\",\"name\":\"OpenTopography\",\"roles\":[\"host\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"gsd\":[90],\"platform\":[\"tandem-x\"],\"proj:epsg\":[4326],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[false]},\"description\":\"The Copernicus DEM is a Digital Surface Model (DSM) which represents the surface of the Earth including buildings, infrastructure and vegetation. GLO-90 provides worldwide coverage at 90 meters.\",\"item_assets\":{\"data\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"Data\",\"raster:bands\":[{\"sampling\":\"point\",\"data_type\":\"float32\",\"spatial_resolution\":30,\"unit\":\"meter\"}]}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\"]},{\"type\":\"Collection\",\"id\":\"landsat-c2-l2\",\"stac_version\":\"1.0.0\",\"description\":\"Atmospherically corrected global Landsat Collection 2 Level-2 data from the Thematic Mapper (TM) onboard Landsat 4 and 5, the Enhanced Thematic Mapper Plus (ETM+) onboard Landsat 7, and the Operational Land Imager (OLI) and Thermal Infrared Sensor (TIRS) onboard Landsat 8 and 9.\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9IAXOVV\",\"title\":\"Landsat 4-5 TM Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9C7I13B\",\"title\":\"Landsat 7 ETM+ Collection 2 Level-2\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5066/P9OGBGM6\",\"title\":\"Landsat 8-9 OLI/TIRS Collection 2 Level-2\"},{\"rel\":\"license\",\"href\":\"https://www.usgs.gov/core-science-systems/hdds/data-policy\",\"title\":\"Public Domain\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"reduced_resolution_browse\":{\"type\":\"image/jpeg\",\"title\":\"Reduced resolution browse image\",\"roles\":[\"overview\"]},\"mtl.json\":{\"type\":\"application/json\",\"title\":\"Product Metadata File (json)\",\"description\":\"Collection 2 Level-2 Product Metadata File (json)\",\"roles\":[\"metadata\"]},\"mtl.txt\":{\"type\":\"text/plain\",\"title\":\"Product Metadata File (txt)\",\"description\":\"Collection 2 Level-2 Product Metadata File (txt)\",\"roles\":[\"metadata\"]},\"mtl.xml\":{\"type\":\"application/xml\",\"title\":\"Product Metadata File (xml)\",\"description\":\"Collection 2 Level-2 Product Metadata File (xml)\",\"roles\":[\"metadata\"]},\"ang\":{\"type\":\"text/plain\",\"title\":\"Angle Coefficients File\",\"description\":\"Collection 2 Level-1 Angle Coefficients File\",\"roles\":[\"metadata\"]},\"qa_pixel\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Pixel Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Pixel Quality Assessment Band\",\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"]},\"qa_radsat\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Radiometric Saturation Quality Assessment Band\",\"description\":\"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band\",\"raster:bands\":[{\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"saturation\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal/Aerosol Band\",\"description\":\"Collection 2 Level-2 Coastal/Aerosol Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue Band\",\"description\":\"Collection 2 Level-2 Blue Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green Band\",\"description\":\"Collection 2 Level-2 Green Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Band\",\"description\":\"Collection 2 Level-2 Red Band Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Near Infrared Band 0.8\",\"description\":\"Collection 2 Level-2 Near Infrared Band 0.8 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared Band 1.6\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 1.6 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Short-wave Infrared Band 2.2\",\"description\":\"Collection 2 Level-2 Short-wave Infrared Band 2.2 Surface Reflectance\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"scale\":0.0000275,\"offset\":-0.2}],\"roles\":[\"reflectance\"]},\"atmos_opacity\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Opacity Band\",\"description\":\"Collection 2 Level-2 Atmospheric Opacity Band Surface Reflectance Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.001}],\"roles\":[\"data\"]},\"cloud_qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Cloud Quality Assessment Band Surface Reflectance Product\",\"raster:bands\":[{\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"cloud\",\"cloud-shadow\",\"snow-ice\",\"water-mask\"]},\"qa_aerosol\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Aerosol Quality Assessment Band Surface Reflectance Product\",\"raster:bands\":[{\"nodata\":1,\"data_type\":\"uint8\",\"spatial_resolution\":30,\"unit\":\"bit index\"}],\"roles\":[\"data-mask\",\"water-mask\"]},\"lwir11\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band Surface Temperature\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.00341802,\"offset\":149}],\"roles\":[\"temperature\"]},\"lwir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Band\",\"description\":\"Collection 2 Level-2 Thermal Infrared Band Surface Temperature\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.00341802,\"offset\":149}],\"roles\":[\"temperature\"]},\"atran\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Atmospheric Transmittance Band\",\"description\":\"Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\"]},\"cdist\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Distance Band\",\"description\":\"Collection 2 Level-2 Cloud Distance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"kilometer\",\"scale\":0.01}],\"roles\":[\"data\"]},\"drad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Downwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"urad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Upwelled Radiance Band\",\"description\":\"Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"trad\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Thermal Radiance Band\",\"description\":\"Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"watt/steradian/square_meter/micrometer\",\"scale\":0.001}],\"roles\":[\"data\"]},\"emis\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Band\",\"description\":\"Collection 2 Level-2 Emissivity Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\",\"emissivity\"]},\"emsd\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Emissivity Standard Deviation Band\",\"description\":\"Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"scale\":0.0001}],\"roles\":[\"data\",\"emissivity\"]},\"qa\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Surface Temperature Quality Assessment Band\",\"description\":\"Collection 2 Level-2 Quality Assessment Band Surface Temperature Product\",\"raster:bands\":[{\"nodata\":-9999,\"data_type\":\"int16\",\"spatial_resolution\":30,\"unit\":\"kelvin\",\"scale\":0.01}],\"roles\":[\"data\"]}},\"title\":\"Landsat Collection 2 Level-2\",\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"1982-08-22T00:00:00Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"Landsat\",\"USGS\",\"NASA\",\"Satellite\",\"Global\",\"Imagery\",\"Reflectance\",\"Temperature\"],\"providers\":[{\"name\":\"NASA\",\"roles\":[\"producer\",\"licensor\"],\"url\":\"https://landsat.gsfc.nasa.gov/\"},{\"name\":\"USGS\",\"roles\":[\"producer\",\"processor\",\"licensor\"],\"url\":\"https://www.usgs.gov/landsat-missions/landsat-collection-2-level-2-science-products\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"landsat-4\",\"landsat-5\",\"landsat-7\",\"landsat-8\",\"landsat-9\"],\"instruments\":[\"tm\",\"etm+\",\"oli\",\"tirs\"],\"gsd\":[30,60,100,120],\"sci:doi\":[\"10.5066/P9IAXOVV\",\"10.5066/P9C7I13B\",\"10.5066/P9OGBGM6\"],\"eo:bands\":[{\"name\":\"TM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Thematic Mapper)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.07},{\"name\":\"TM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Thematic Mapper)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"TM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Thematic Mapper)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"TM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Thematic Mapper)\",\"center_wavelength\":0.83,\"full_width_half_max\":0.14},{\"name\":\"TM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"TM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Thematic Mapper)\",\"center_wavelength\":11.45,\"full_width_half_max\":2.1},{\"name\":\"TM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Thematic Mapper)\",\"center_wavelength\":2.22,\"full_width_half_max\":0.27},{\"name\":\"ETM_B1\",\"common_name\":\"blue\",\"description\":\"Visible blue (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.07},{\"name\":\"ETM_B2\",\"common_name\":\"green\",\"description\":\"Visible green (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.08},{\"name\":\"ETM_B3\",\"common_name\":\"red\",\"description\":\"Visible red (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.66,\"full_width_half_max\":0.06},{\"name\":\"ETM_B4\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":0.84,\"full_width_half_max\":0.13},{\"name\":\"ETM_B5\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":1.65,\"full_width_half_max\":0.2},{\"name\":\"ETM_B6\",\"common_name\":\"lwir\",\"description\":\"Long-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":11.34,\"full_width_half_max\":2.05},{\"name\":\"ETM_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Enhanced Thematic Mapper Plus)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.28},{\"name\":\"OLI_B1\",\"common_name\":\"coastal\",\"description\":\"Coastal/Aerosol (Operational Land Imager)\",\"center_wavelength\":0.44,\"full_width_half_max\":0.02},{\"name\":\"OLI_B2\",\"common_name\":\"blue\",\"description\":\"Visible blue (Operational Land Imager)\",\"center_wavelength\":0.48,\"full_width_half_max\":0.06},{\"name\":\"OLI_B3\",\"common_name\":\"green\",\"description\":\"Visible green (Operational Land Imager)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.06},{\"name\":\"OLI_B4\",\"common_name\":\"red\",\"description\":\"Visible red (Operational Land Imager)\",\"center_wavelength\":0.65,\"full_width_half_max\":0.04},{\"name\":\"OLI_B5\",\"common_name\":\"nir08\",\"description\":\"Near infrared (Operational Land Imager)\",\"center_wavelength\":0.87,\"full_width_half_max\":0.03},{\"name\":\"OLI_B6\",\"common_name\":\"swir16\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.09},{\"name\":\"OLI_B7\",\"common_name\":\"swir22\",\"description\":\"Short-wave infrared (Operational Land Imager)\",\"center_wavelength\":2.2,\"full_width_half_max\":0.19},{\"name\":\"TIRS_B10\",\"common_name\":\"lwir11\",\"description\":\"Long-wave infrared (Thermal Infrared Sensor)\",\"center_wavelength\":10.9,\"full_width_half_max\":0.59}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-l2a\",\"stac_version\":\"1.0.0\",\"title\":\"Sentinel-2 Level-2A\",\"description\":\"Global Sentinel-2 data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water vapour (WVP)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"aot-jp2\":{\"type\":\"image/jp2\",\"title\":\"Aerosol optical thickness (AOT)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"blue-jp2\":{\"type\":\"image/jp2\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal-jp2\":{\"type\":\"image/jp2\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"green-jp2\":{\"type\":\"image/jp2\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09-jp2\":{\"type\":\"image/jp2\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3-jp2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"scl-jp2\":{\"type\":\"image/jp2\",\"title\":\"Scene classification map (SCL)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"reflectance\"]},\"swir16-jp2\":{\"type\":\"image/jp2\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22-jp2\":{\"type\":\"image/jp2\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"visual-jp2\":{\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]},\"wvp-jp2\":{\"type\":\"image/jp2\",\"title\":\"Water vapour (WVP)\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-l1c\",\"stac_version\":\"1.0.0\",\"title\":\"Sentinel-2 Level-1C\",\"description\":\"Global Sentinel-2 data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-1C (L1C) Top-of-Atmosphere Reflectance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"blue\":{\"type\":\"image/jp2\",\"title\":\"Blue (band 2) - 10m\",\"eo:bands\":[{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"cirrus\":{\"type\":\"image/jp2\",\"title\":\"Cirrus (band 10) - 60m\",\"eo:bands\":[{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"coastal\":{\"type\":\"image/jp2\",\"title\":\"Coastal aerosol (band 1) - 60m\",\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"green\":{\"type\":\"image/jp2\",\"title\":\"Green (band 3) - 10m\",\"eo:bands\":[{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir\":{\"type\":\"image/jp2\",\"title\":\"NIR 1 (band 8) - 10m\",\"eo:bands\":[{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir08\":{\"type\":\"image/jp2\",\"title\":\"NIR 2 (band 8A) - 20m\",\"eo:bands\":[{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/jp2\",\"title\":\"NIR 3 (band 9) - 60m\",\"eo:bands\":[{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,399960,0,-60,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"red\":{\"type\":\"image/jp2\",\"title\":\"Red (band 4) - 10m\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/jp2\",\"title\":\"Red edge 1 (band 5) - 20m\",\"eo:bands\":[{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/jp2\",\"title\":\"Red edge 2 (band 6) - 20m\",\"eo:bands\":[{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/jp2\",\"title\":\"Red edge 3 (band 7) - 20m\",\"eo:bands\":[{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/jp2\",\"title\":\"SWIR 1 (band 11) - 20m\",\"eo:bands\":[{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/jp2\",\"title\":\"SWIR 2 (band 12) - 20m\",\"eo:bands\":[{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,399960,0,-20,4900020],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"bits_per_sample\":15,\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":0}],\"roles\":[\"data\",\"reflectance\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail image\",\"roles\":[\"thumbnail\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"visual\":{\"type\":\"image/jp2\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,399960,0,-10,4900020],\"roles\":[\"visual\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"type\":\"Collection\",\"id\":\"sentinel-2-c1-l2a\",\"title\":\"Sentinel-2 Collection 1 Level-2A\",\"description\":\"Sentinel-2 Collection 1 Level-2A, data from the Multispectral Instrument (MSI) onboard Sentinel-2\",\"stac_version\":\"1.0.0\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a\"},{\"rel\":\"cite-as\",\"href\":\"https://doi.org/10.5270/S2_-742ikth\",\"title\":\"Copernicus Sentinel-2 MSI Level-2A (L2A) Bottom-of-Atmosphere Radiance\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"proprietary\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-2-c1-l2a/aggregations\"}],\"stac_extensions\":[\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/view/v1.0.0/schema.json\",\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\",\"https://stac-extensions.github.io/eo/v1.0.0/schema.json\"],\"item_assets\":{\"red\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red - 10m\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"green\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Green - 10m\",\"eo:bands\":[{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"blue\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Blue - 10m\",\"eo:bands\":[{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"visual\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color image\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10},{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":10}],\"roles\":[\"visual\"]},\"nir\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 1 - 10m\",\"eo:bands\":[{\"name\":\"B08\",\"common_name\":\"nir\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145}],\"gsd\":10,\"proj:shape\":[10980,10980],\"proj:transform\":[10,0,600000,0,-10,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":10,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir22\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 2.2\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B12\",\"common_name\":\"swir22\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge2\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 2 - 20m\",\"eo:bands\":[{\"name\":\"B06\",\"common_name\":\"rededge\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge3\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 3 - 20m\",\"eo:bands\":[{\"name\":\"B07\",\"common_name\":\"rededge\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"rededge1\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Red Edge 1 - 20m\",\"eo:bands\":[{\"name\":\"B05\",\"common_name\":\"rededge\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"swir16\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"SWIR 1.6\u03BCm - 20m\",\"eo:bands\":[{\"name\":\"B11\",\"common_name\":\"swir16\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"wvp\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Water Vapour (WVP)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"unit\":\"cm\",\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"nir08\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 2 - 20m\",\"eo:bands\":[{\"name\":\"B8A\",\"common_name\":\"nir08\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033}],\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"scl\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Scene classification map (SCL)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\"]},\"aot\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Aerosol optical thickness (AOT)\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":20,\"scale\":0.001,\"offset\":0}],\"roles\":[\"data\"]},\"coastal\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Coastal - 60m\",\"eo:bands\":[{\"name\":\"B01\",\"common_name\":\"coastal\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"nir09\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"NIR 3 - 60m\",\"eo:bands\":[{\"name\":\"B09\",\"common_name\":\"nir09\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026}],\"gsd\":60,\"proj:shape\":[1830,1830],\"proj:transform\":[60,0,600000,0,-60,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\",\"spatial_resolution\":60,\"scale\":0.0001,\"offset\":-0.1}],\"roles\":[\"data\",\"reflectance\"]},\"cloud\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Cloud Probabilities\",\"gsd\":20,\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"cloud\"]},\"snow\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"Snow Probabilities\",\"proj:shape\":[5490,5490],\"proj:transform\":[20,0,600000,0,-20,4000000],\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint8\",\"spatial_resolution\":20}],\"roles\":[\"data\",\"snow-ice\"]},\"preview\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"title\":\"True color preview\",\"eo:bands\":[{\"name\":\"B04\",\"common_name\":\"red\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"B03\",\"common_name\":\"green\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"B02\",\"common_name\":\"blue\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098}],\"roles\":[\"overview\"]},\"granule_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"tileinfo_metadata\":{\"type\":\"application/json\",\"roles\":[\"metadata\"]},\"product_metadata\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"]},\"thumbnail\":{\"type\":\"image/jpeg\",\"title\":\"Thumbnail of preview image\",\"roles\":[\"thumbnail\"]}},\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2015-06-27T10:25:31.456000Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"sentinel\",\"earth observation\",\"esa\"],\"providers\":[{\"name\":\"ESA\",\"roles\":[\"producer\"],\"url\":\"https://earth.esa.int/web/guest/home\"},{\"name\":\"Sinergise\",\"roles\":[\"processor\"],\"url\":\"https://registry.opendata.aws/sentinel-2/\"},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"http://sentinel-pds.s3-website.eu-central-1.amazonaws.com/\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-2a\",\"sentinel-2b\"],\"constellation\":[\"sentinel-2\"],\"instruments\":[\"msi\"],\"gsd\":[10,20,60],\"view:off_nadir\":[0],\"sci:doi\":[\"10.5270/s2_-znk9xsj\"],\"eo:bands\":[{\"name\":\"coastal\",\"common_name\":\"coastal\",\"description\":\"Coastal aerosol (band 1)\",\"center_wavelength\":0.443,\"full_width_half_max\":0.027},{\"name\":\"blue\",\"common_name\":\"blue\",\"description\":\"Blue (band 2)\",\"center_wavelength\":0.49,\"full_width_half_max\":0.098},{\"name\":\"green\",\"common_name\":\"green\",\"description\":\"Green (band 3)\",\"center_wavelength\":0.56,\"full_width_half_max\":0.045},{\"name\":\"red\",\"common_name\":\"red\",\"description\":\"Red (band 4)\",\"center_wavelength\":0.665,\"full_width_half_max\":0.038},{\"name\":\"rededge1\",\"common_name\":\"rededge\",\"description\":\"Red edge 1 (band 5)\",\"center_wavelength\":0.704,\"full_width_half_max\":0.019},{\"name\":\"rededge2\",\"common_name\":\"rededge\",\"description\":\"Red edge 2 (band 6)\",\"center_wavelength\":0.74,\"full_width_half_max\":0.018},{\"name\":\"rededge3\",\"common_name\":\"rededge\",\"description\":\"Red edge 3 (band 7)\",\"center_wavelength\":0.783,\"full_width_half_max\":0.028},{\"name\":\"nir\",\"common_name\":\"nir\",\"description\":\"NIR 1 (band 8)\",\"center_wavelength\":0.842,\"full_width_half_max\":0.145},{\"name\":\"nir08\",\"common_name\":\"nir08\",\"description\":\"NIR 2 (band 8A)\",\"center_wavelength\":0.865,\"full_width_half_max\":0.033},{\"name\":\"nir09\",\"common_name\":\"nir09\",\"description\":\"NIR 3 (band 9)\",\"center_wavelength\":0.945,\"full_width_half_max\":0.026},{\"name\":\"cirrus\",\"common_name\":\"cirrus\",\"description\":\"Cirrus (band 10)\",\"center_wavelength\":1.3735,\"full_width_half_max\":0.075},{\"name\":\"swir16\",\"common_name\":\"swir16\",\"description\":\"SWIR 1 (band 11)\",\"center_wavelength\":1.61,\"full_width_half_max\":0.143},{\"name\":\"swir22\",\"common_name\":\"swir22\",\"description\":\"SWIR 2 (band 12)\",\"center_wavelength\":2.19,\"full_width_half_max\":0.242}]}},{\"id\":\"sentinel-1-grd\",\"type\":\"Collection\",\"title\":\"Sentinel-1 Level-1C Ground Range Detected (GRD)\",\"description\":\"Sentinel-1 is a pair of Synthetic Aperture Radar (SAR) imaging satellites launched in 2014 and 2016 by the European Space Agency (ESA). Their 6 day revisit cycle and ability to observe through clouds makes this dataset perfect for sea and land monitoring, emergency response due to environmental disasters, and economic applications. This dataset represents the global Sentinel-1 GRD archive, from beginning to the present, converted to cloud-optimized GeoTIFF format.\",\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd\"},{\"rel\":\"about\",\"href\":\"https://sentinels.copernicus.eu/web/sentinel/technical-guides/sentinel-1-sar/products-algorithms/level-1-algorithms/ground-range-detected\",\"title\":\"Sentinel-1 Ground Range Detected (GRD) Technical Guide\"},{\"rel\":\"license\",\"href\":\"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice\",\"title\":\"Copernicus Sentinel data terms\"},{\"rel\":\"parent\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"},{\"rel\":\"items\",\"type\":\"application/geo+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/items\"},{\"rel\":\"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\"type\":\"application/schema+json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/queryables\"},{\"rel\":\"aggregate\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/aggregate\",\"method\":\"GET\"},{\"rel\":\"aggregations\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections/sentinel-1-grd/aggregations\"}],\"extent\":{\"spatial\":{\"bbox\":[[-180,-90,180,90]]},\"temporal\":{\"interval\":[[\"2014-10-10T00:28:21Z\",null]]}},\"license\":\"proprietary\",\"keywords\":[\"ESA\",\"Copernicus\",\"Sentinel\",\"C-Band\",\"SAR\",\"GRD\"],\"providers\":[{\"url\":\"https://earth.esa.int/web/guest/home\",\"name\":\"ESA\",\"roles\":[\"producer\",\"processor\",\"licensor\"]},{\"name\":\"AWS\",\"roles\":[\"host\"],\"url\":\"https://registry.opendata.aws/sentinel-1\"},{\"name\":\"Element 84\",\"roles\":[\"processor\"],\"url\":\"https://element84.com\"}],\"summaries\":{\"platform\":[\"sentinel-1a\",\"sentinel-1b\"],\"constellation\":[\"sentinel-1\"],\"s1:resolution\":[\"full\",\"high\",\"medium\"],\"s1:orbit_source\":[\"DOWNLINK\",\"POEORB\",\"PREORB\",\"RESORB\"],\"sar:looks_range\":[5,6,3,2],\"sat:orbit_state\":[\"ascending\",\"descending\"],\"sar:product_type\":[\"GRD\"],\"sar:looks_azimuth\":[1,6,2],\"sar:polarizations\":[[\"VV\",\"VH\"],[\"HH\",\"HV\"],[\"VV\"],[\"VH\"],[\"HH\"],[\"HV\"]],\"sar:frequency_band\":[\"C\"],\"s1:processing_level\":[\"1\"],\"sar:instrument_mode\":[\"IW\",\"EW\",\"SM\"],\"sar:center_frequency\":[5.405],\"sar:resolution_range\":[20,23,50,93,9],\"s1:product_timeliness\":[\"NRT-10m\",\"NRT-1h\",\"NRT-3h\",\"Fast-24h\",\"Off-line\",\"Reprocessing\"],\"sar:resolution_azimuth\":[22,23,50,87,9],\"sar:pixel_spacing_range\":[10,25,40,3.5],\"sar:observation_direction\":[\"right\"],\"sar:pixel_spacing_azimuth\":[10,25,40,3.5],\"sar:looks_equivalent_number\":[4.4,29.7,2.7,10.7,3.7],\"sat:platform_international_designator\":[\"2014-016A\",\"2016-025A\",\"0000-000A\"],\"storage:platform\":[\"AWS\"],\"storage:region\":[\"eu-central-1\"],\"storage:requester_pays\":[true]},\"item_assets\":{\"hh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HH Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"hv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"HV Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"vh\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VH Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"vv\":{\"type\":\"image/tiff; application=geotiff; profile=cloud-optimized\",\"roles\":[\"data\"],\"title\":\"VV Data\",\"raster:bands\":[{\"nodata\":0,\"data_type\":\"uint16\"}]},\"thumbnail\":{\"type\":\"image/png\",\"roles\":[\"thumbnail\"],\"title\":\"Thumbnail Image\"},\"safe-manifest\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"SAFE Manifest File\"},\"schema-noise-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Noise Schema\"},\"schema-noise-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Noise Schema\"},\"schema-noise-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Noise Schema\"},\"schema-noise-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Noise Schema\"},\"schema-product-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Product Schema\"},\"schema-product-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Product Schema\"},\"schema-product-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Product Schema\"},\"schema-product-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Product Schema\"},\"schema-calibration-hh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HH Calibration Schema\"},\"schema-calibration-hv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"HV Calibration Schema\"},\"schema-calibration-vh\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VH Calibration Schema\"},\"schema-calibration-vv\":{\"type\":\"application/xml\",\"roles\":[\"metadata\"],\"title\":\"VV Calibration Schema\"}},\"stac_version\":\"1.0.0\",\"stac_extensions\":[\"https://stac-extensions.github.io/storage/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sar/v1.0.0/schema.json\",\"https://stac-extensions.github.io/sat/v1.0.0/schema.json\",\"https://stac-extensions.github.io/item-assets/v1.0.0/schema.json\",\"https://stac-extensions.github.io/raster/v1.1.0/schema.json\"]}],\"links\":[{\"rel\":\"self\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1/collections\"},{\"rel\":\"root\",\"type\":\"application/json\",\"href\":\"https://earth-search.aws.element84.com/v1\"}],\"context\":{\"page\":1,\"limit\":100,\"matched\":9,\"returned\":9}}" headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '8117' Content-Type: - application/json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:51:09 GMT Via: - 1.1 402032e48d13c4b7217c7a59235bf8cc.cloudfront.net (CloudFront) X-Amz-Cf-Id: - yYJXJc-FTrT4sLVxOFHQks5IgAp-XGN3P_V_dpM3V7_sgGyHfaRRaw== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f1bd-5b0518172527d36e398bf27f;Parent=5cae679d2fd3371f;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"141dd-9fMv6YJnvxPn9adSQK466CnIbE0" x-amz-apigw-id: - N2q1uGJLPHcEFAw= x-amzn-Remapped-content-length: - '82397' x-amzn-RequestId: - 5ca67365-3f61-4163-a2a6-aca045fa7a52 x-powered-by: - Express status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_collection_search/TestCollectionSearch.test_q_results.yaml000066400000000000000000000527611503646565400342330ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://emc.spacebel.be/collections?limit=10&q=%22monthly+cloudless+mosaics%22 response: body: string: "{\n \"collections\": [{\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n ]]},\n \"temporal\": {\"interval\": [[\n null,\n null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"Forestry\",\n \"Forest Management\"\n \ ],\n \"created\": \"2023-09-05T00:00:00.00Z\",\n \"description\": \"Creating monthly cloudless mosaics of images is invaluable for forest management as they provide a consistent and clear view of the forest canopy throughout the year. These mosaics enable forest managers to track seasonal changes, identify potential threats like pest infestations or wildfires, and make informed decisions regarding tree health and growth. Additionally, by having a reliable historical record of forest conditions, these mosaics assist in long-term planning and sustainable resource management. Furthermore, the accessibility and accuracy of monthly cloudless mosaics enhance collaboration among stakeholders, allowing suitable policy development.\",\n \"type\": \"Collection\",\n \ \"title\": \"Cloudless True Color Data\",\n \"license\": \"various\",\n \ \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \ \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=F-TCC\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n },\n \ \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/F-TCC\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-TCC?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n },\n \ \"quicklook\": {\n \"roles\": [\"overview\"],\n \"href\": \"https://eovoc.spacebel.be/images/tcc.png\",\n \"type\": \"image/png\",\n \ \"title\": \"graphic overview\"\n }\n },\n \"links\": [\n \ {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/F-TCC\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/F-TCC/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series F-TCC\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/F-TCC/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for F-TCC\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/F-TCC/api\",\n \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"ordering\",\n \ \"href\": \"https://emc.spacebel.be/ordering?collection=F-TCC\",\n \ \"type\": \"text/html\",\n \"title\": \"Order F-TCC Product\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://eovoc.spacebel.be/images/F-TCC_Brochure_vs3.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"F-TCC Brochure - F-TCC Product Description\"\n },\n {\n \"rel\": \"alternate\",\n \ \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n \ },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n \ },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \"rel\": \"alternate\",\n \ \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/Spacebel SA\",\n \"title\": \"More collections for Spacebel SA\"\n }\n \ ],\n \"id\": \"F-TCC\",\n \"updated\": \"2023-09-05T00:00:00.00Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \"name\": \"Spacebel SA\",\n \"url\": \"http://www.spacebel.com\"\n },\n \ {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \ \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ]\n \ }],\n \"numberReturned\": 1,\n \"links\": [\n {\n \"rel\": \"self\",\n \ \"href\": \"https://emc.spacebel.be/collections?limit=10&q=%22monthly+cloudless+mosaics%22\",\n \ \"type\": \"application/json\",\n \"title\": \"This document\"\n \ },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for collection search\"\n }\n ],\n \"numberMatched\": 1\n}" headers: Access-Control-Allow-Headers: - X-PINGOTHER, Content-Type, Authorization, Accept Access-Control-Allow-Methods: - POST,GET,PUT,HEAD,OPTIONS,DELETE Access-Control-Allow-Origin: - '*' Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Connection: - keep-alive Content-Length: - '8149' Content-Type: - application/json;charset=UTF-8 Date: - Thu, 17 Jul 2025 12:50:57 GMT Expires: - '0' Pragma: - no-cache Server: - openresty Strict-Transport-Security: - max-age=31536000 ; includeSubDomains X-Content-Type-Options: - nosniff X-Frame-Options: - DENY X-Served-By: - emc.spacebel.be X-XSS-Protection: - 1; mode=block status: code: 200 message: '' - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://emc.spacebel.be/collections?limit=10&q=%22monthly+cloudless+mosaics%22 response: body: string: "{\n \"collections\": [{\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n ]]},\n \"temporal\": {\"interval\": [[\n null,\n null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"Forestry\",\n \"Forest Management\"\n \ ],\n \"created\": \"2023-09-05T00:00:00.00Z\",\n \"description\": \"Creating monthly cloudless mosaics of images is invaluable for forest management as they provide a consistent and clear view of the forest canopy throughout the year. These mosaics enable forest managers to track seasonal changes, identify potential threats like pest infestations or wildfires, and make informed decisions regarding tree health and growth. Additionally, by having a reliable historical record of forest conditions, these mosaics assist in long-term planning and sustainable resource management. Furthermore, the accessibility and accuracy of monthly cloudless mosaics enhance collaboration among stakeholders, allowing suitable policy development.\",\n \"type\": \"Collection\",\n \ \"title\": \"Cloudless True Color Data\",\n \"license\": \"various\",\n \ \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \ \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=F-TCC\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n },\n \ \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/F-TCC\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-TCC?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n },\n \ \"quicklook\": {\n \"roles\": [\"overview\"],\n \"href\": \"https://eovoc.spacebel.be/images/tcc.png\",\n \"type\": \"image/png\",\n \ \"title\": \"graphic overview\"\n }\n },\n \"links\": [\n \ {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/F-TCC\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/F-TCC/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series F-TCC\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/F-TCC/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for F-TCC\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/F-TCC/api\",\n \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"ordering\",\n \ \"href\": \"https://emc.spacebel.be/ordering?collection=F-TCC\",\n \ \"type\": \"text/html\",\n \"title\": \"Order F-TCC Product\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://eovoc.spacebel.be/images/F-TCC_Brochure_vs3.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"F-TCC Brochure - F-TCC Product Description\"\n },\n {\n \"rel\": \"alternate\",\n \ \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n \ },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n \ },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \"rel\": \"alternate\",\n \ \"href\": \"https://emc.spacebel.be/collections/F-TCC?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/Spacebel SA\",\n \"title\": \"More collections for Spacebel SA\"\n }\n \ ],\n \"id\": \"F-TCC\",\n \"updated\": \"2023-09-05T00:00:00.00Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \"name\": \"Spacebel SA\",\n \"url\": \"http://www.spacebel.com\"\n },\n \ {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \ \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ]\n \ }],\n \"numberReturned\": 1,\n \"links\": [\n {\n \"rel\": \"self\",\n \ \"href\": \"https://emc.spacebel.be/collections?limit=10&q=%22monthly+cloudless+mosaics%22\",\n \ \"type\": \"application/json\",\n \"title\": \"This document\"\n \ },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for collection search\"\n }\n ],\n \"numberMatched\": 1\n}" headers: Access-Control-Allow-Headers: - X-PINGOTHER, Content-Type, Authorization, Accept Access-Control-Allow-Methods: - POST,GET,PUT,HEAD,OPTIONS,DELETE Access-Control-Allow-Origin: - '*' Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Connection: - keep-alive Content-Length: - '8149' Content-Type: - application/json;charset=UTF-8 Date: - Thu, 17 Jul 2025 12:50:57 GMT Expires: - '0' Pragma: - no-cache Server: - openresty Strict-Transport-Security: - max-age=31536000 ; includeSubDomains X-Content-Type-Options: - nosniff X-Frame-Options: - DENY X-Served-By: - emc.spacebel.be X-XSS-Protection: - 1; mode=block status: code: 200 message: '' version: 1 TestCollectionSearch.test_result_paging.yaml000066400000000000000000010371701503646565400347740ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_collection_searchinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://emc.spacebel.be/collections?limit=10&q=sentinel response: body: string: "{\n \"collections\": [\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"2021-10-09T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"FedEO\",\n \"SCIHUB\",\n \"DIF10\",\n \ \"Sea Surface Topography\",\n \"EARTH SCIENCE > OCEANS > SEA SURFACE TOPOGRAPHY\",\n \"Radar Altimeters\",\n \"Radiometers\",\n \ \"Sentinel-6\",\n \"POSEIDON-4\",\n \"AMR-C\"\n ],\n \ \"created\": \"2024-01-02T00:00:00.00Z\",\n \"description\": \"Copernicus Sentinel-6 Michael Freilich is an Earth Observation satellite mission developed to provide enhanced continuity to the very stable time series of mean sea level measurements and ocean sea state that started in 1992, with the TOPEX/Poseidon mission, then continued by the Jason-1, Jason-2 and Jason-3 satellite missions.\",\n \ \"type\": \"Collection\",\n \"title\": \"Sentinel-6 Products\",\n \ \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=EOP:ESA:SCIHUB:S6\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series EOP:ESA:Sentinel-6\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S6/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for EOP:ESA:SCIHUB:S6\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://dataspace.copernicus.eu\",\n \"title\": \"Copernicus Data Space Ecosystem - Copernicus Data Space Ecosystem\"\n },\n {\n \ \"rel\": \"search\",\n \"href\": \"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S6\",\n \ \"title\": \"FedEO Clearinghouse - FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S6/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinel.esa.int/web/sentinel/missions/sentinel-6\",\n \ \"title\": \"ESA Sentinel-6 Online\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-6\",\n \ \"title\": \"More collections for Sentinel-6 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/700b6e99-a527-5819-b283-4656c8832ea0\",\n \ \"title\": \"More collections for AMR-C instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/5d1512a5-cb97-5e74-8778-35cd65c06936\",\n \ \"title\": \"More collections for POSEIDON-4 instrument\"\n }\n \ ],\n \"id\": \"EOP:ESA:Sentinel-6\",\n \"updated\": \"2020-11-21T00:00:00.00Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\n \"AMR-C\",\n \"POSEIDON-4\"\n \ ],\n \"platform\": [\"Sentinel-6\"]\n }\n },\n {\n \ \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n \ -90,\n 180,\n 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2017-10-13T00:00:00.000Z\",\n null\n \ ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"FedEO\",\n \"SCIHUB\",\n \"DIF10\",\n \"Air Quality\",\n \"EARTH SCIENCE > ATMOSPHERE > AIR QUALITY\",\n \"Sentinel-5P\",\n \ \"TROPOMI\"\n ],\n \"created\": \"2018-10-09T00:00:00.00Z\",\n \ \"description\": \"The Sentinel-5P data offer for the Pre-Operations Open Access Hub consists of Level-1B and Level-2 user products for the TROPOMI instrument.\",\n \"type\": \"Collection\",\n \"title\": \"Sentinel-5P Products\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=EOP:ESA:SCIHUB:S5P\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series EOP:ESA:Sentinel-5P\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S5P/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for EOP:ESA:SCIHUB:S5P\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://dataspace.copernicus.eu\",\n \"title\": \"Copernicus Data Space Ecosystem - Copernicus Data Space Ecosystem\"\n },\n {\n \ \"rel\": \"search\",\n \"href\": \"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S5P\",\n \ \"title\": \"FedEO Clearinghouse - FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S5P/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinel.esa.int/web/sentinel/missions/sentinel-5P\",\n \ \"title\": \"ESA Sentinel-5P Online\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-5p-tropomi\",\n \ \"title\": \"Sentinel-5P TROPOMI User Guide \"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-5P\",\n \ \"title\": \"More collections for Sentinel-5P platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/09f91afd-c0d2-52a9-9b50-b895a60917fa\",\n \ \"title\": \"More collections for TROPOMI instrument\"\n }\n \ ],\n \"id\": \"EOP:ESA:Sentinel-5P\",\n \"updated\": \"2017-04-30T00:00:00.00Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"TROPOMI\"],\n \"processing:lineage\": [\"The Sentinel-5 Precursor objectives are to provide operational space-borne observations in support to the operational monitoring of Air Quality, Climate, Ozone and Surface UV. It will provide measurements of Ozone, NO_2, SO_2, Formaldehyde, Aerosol, Carbonmonoxide, Methane, Clouds.\"],\n \"platform\": [\"Sentinel-5P\"]\n \ }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n ]]},\n \ \"temporal\": {\"interval\": [[\n \"2016-01-01T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"MAJA\",\n \"GeoTiff\",\n \"Forestry\",\n \ \"Forest Conservation/Protection\",\n \"Sentinel-2\",\n \"MSI\"\n \ ],\n \"created\": \"2023-09-05T00:00:00.00Z\",\n \"description\": \"False colour satellite data allows you to upgrade your forest surveys. It provides you with a broader perspective of biotic and abiotic disturbances in real-time. This enables you to make more informed decisions to safeguard the forests. Forestry professionals can utilise false colour imagery to optimise their forestry operations, such as planning and monitoring tree planting, conducting inventory assessments, and identifying areas for habitat restoration.\",\n \ \"type\": \"Collection\",\n \"title\": \"False Colour Composites\",\n \ \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=F-FCC\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n },\n \ \"quicklook\": {\n \"roles\": [\"overview\"],\n \"href\": \"https://eovoc.spacebel.be/images/fcc.png\",\n \"type\": \"image/png\",\n \ \"title\": \"graphic overview\"\n }\n },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series F-FCC\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for F-FCC\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/F-FCC/api\",\n \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"ordering\",\n \ \"href\": \"https://emc.spacebel.be/ordering?collection=F-FCC\",\n \ \"type\": \"text/html\",\n \"title\": \"Order F-FCC Product\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://eovoc.spacebel.be/images/FC_Brochure_final.pdf\",\n \"type\": \"application/pdf\",\n \"title\": \"F-FCC Brochure - F-FCC Product Description\"\n },\n {\n \"rel\": \"alternate\",\n \ \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/F-FCC?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/Spacebel SA\",\n \"title\": \"More collections for Spacebel SA\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-2\",\n \ \"title\": \"More collections for Sentinel-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/s2-msi\",\n \ \"title\": \"More collections for MSI instrument\"\n }\n \ ],\n \"id\": \"F-FCC\",\n \"updated\": \"2023-09-05T00:00:00.00Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"Spacebel SA\",\n \"url\": \"https://www.spacebel.com\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"MSI\"],\n \ \"platform\": [\"Sentinel-2\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2002-05-14T00:00:00.000Z\",\n \ \"2012-04-08T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"sci:doi\": \"10.5270/EN1-85m0a7b\",\n \"keywords\": [\n \"World\",\n \"Land Surface\",\n \"Topography\",\n \ \"Cryosphere\",\n \"Snow and Ice\",\n \"Oceans\",\n \ \"Ocean Waves\",\n \"Sea Surface Topography\",\n \"Atmosphere\",\n \ \"Atmospheric Winds\",\n \"EARTH SCIENCE > LAND SURFACE\",\n \ \"EARTH SCIENCE > LAND SURFACE > TOPOGRAPHY\",\n \"EARTH SCIENCE > CRYOSPHERE\",\n \"EARTH SCIENCE > CRYOSPHERE > SNOW/ICE\",\n \"EARTH SCIENCE > TERRESTRIAL HYDROSPHERE > SNOW/ICE\",\n \"EARTH SCIENCE > OCEANS\",\n \"EARTH SCIENCE > OCEANS > OCEAN WAVES\",\n \"EARTH SCIENCE > OCEANS > SEA SURFACE TOPOGRAPHY\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \ \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\",\n \"Sun-synchronous\",\n \ \"800 km\",\n \"5 - 1150 km\",\n \"Radar Altimeters\",\n \ \"Envisat\",\n \"RA-2\"\n ],\n \"created\": \"2019-05-29T00:00:00.00Z\",\n \ \"description\": \"This is a RA-2 Sensor and Geophysical Data Record (SGDR) Full Mission Reprocessing (FMR) v3 product. This FMR follows the first Envisat Altimetry reprocessing Version (V2.1) completed in 2012. The GDR and S-GDR data products were reprocessed for all cycles from 6 to 113 (May 2002 to April 2012) into a homogeneous standard in NetCDF format (close to Sentinel-3). The Sensor Data Record (SGDR) Product from RA-2/MWR includes the data in the GDR product (https://earth.esa.int/eogateway/catalog/envisat-ra-2-geophysical-data-record-gdr-ra2_gdr__2p-) (RA-2 geophysical data, MWR data) and also RA-2 averaged waveforms (18Hz) and RA-2 individual waveforms (1800Hz). This product is a continuation of ERS RA data. This data product has a coverage of 1 pass, pole-pole, a spatial sampling of about 390 m along track and a size of 31 to 40 MB, depending on presence of individual waveforms. The radiometric accuracy is 0.2 dB and auxiliary data include: Orbit state vectors (DORIS, FOS), RA2 and MWR characterisation data, Platform attitude, Gain calibration, USO frequency, ECMWF data, time relation, leap second, Ionospheric corrections, geoid, mean sea surface, slope data, and tide model (ocean, earth, loading, pole). Please consult the Envisat RA-2/MWR Product Quality Readme file before using the data.\",\n \"type\": \"Collection\",\n \"title\": \"Envisat RA-2 Sensor and Geophysical Data Record - SGDR\_[RA2_MWS__2P]\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/10.5270/EN1-85m0a7b\",\n \"type\": \"text/html\",\n \"title\": \"Landing page\"\n },\n {\n \ \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/web/sppa/mission-performance/esa-missions/envisat/ra2/products-and-algorithms/products-information/aux\",\n \ \"type\": \"text/html\",\n \"title\": \"RA2-MWR Auxiliary Data - Auxiliary Data\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/instruments/ra2/products-information\",\n \ \"type\": \"text/html\",\n \"title\": \"Envisat RA-2 MWR Sensor Performance, Products and Algorithms - Product Information\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-Level-2-Product-Handbook.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"RA-2 Product Handbook - User Manual\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-product-specifications.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"RA-2 Product Specifications - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-MWR-Level-2-Product-Readme-3.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"ReadMe file - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Error-Budget-Envisat-Altimetry-Mission.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Envisat Altimetry Error Budget - Technical Note\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?text=&category=Tools%20and%20toolboxes&filter=ra2-mwr\",\n \ \"type\": \"text/html\",\n \"title\": \"RA-2 Software Tools - Tools\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Envisat\",\n \ \"title\": \"More collections for Envisat platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/2ebd3948-3f88-5944-8e3c-7e60099ec941\",\n \ \"title\": \"More collections for RA-2 instrument\"\n }\n \ ],\n \"id\": \"ENVISAT.RA2.MWS_2P\",\n \"updated\": \"2023-06-13T13:23:41Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"RA-2\"],\n \ \"platform\": [\"Envisat\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2002-04-29T00:00:00.000Z\",\n \ \"2012-04-08T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"sci:doi\": \"10.5270/EN1-opsw96m\",\n \"keywords\": [\n \"World\",\n \"DIF10\",\n \"Atmosphere\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \"Atmospheric Winds\",\n \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\",\n \"Sun-synchronous\",\n \"MERIS RR - 1040 m across track / 1160 m along track\",\n \"800 km\",\n \"5 - 1150 km\",\n \"Imaging Spectrometers/Radiometers\",\n \"Envisat\",\n \ \"MERIS\"\n ],\n \"created\": \"2019-05-28T00:00:00.000Z\",\n \ \"description\": \"The MERIS Level 1 Reduced Resolution (RR) product contains the Top of Atmosphere (TOA) upwelling spectral radiance measures at reduced resolution. The in-band reference irradiances for the 15 MERIS bands are computed by averaging the in-band solar irradiance of each pixel. The in-band solar irradiance of each pixel is computed by integrating the reference solar spectrum with the band-pass of each pixel. The MERIS RR Level 1 product has Sentinel 3-like format starting from the 4th reprocessing data released to users in July 2020. Each measurement and annotation data file is in NetCDF 4. The Level 1 product is composed of 22 measurements data files: 15 files containing radiances at each band (one band per file), accompanied by the associated error estimates, and 7 annotation data files. The band-pass of each pixel is derived from on-ground and in-flight characterisation via an instrument model. The values \\\"Band wavelength\\\" and \\\"Bandwidth\\\" provided in the Manifest file of the Level 1 products are the averaged band-pass of each pixel over the instrument field of view. The Auxiliary data used are listed in the Manifest file associated to each product. MERIS was operating continuously on the day side of the Envisat orbit (descending track). RR data was acquired over 43.5 minutes in each orbit, i.e. 80% of the descending track.\",\n \ \"type\": \"Collection\",\n \"title\": \"Envisat MERIS Reduced Resolution - Level 1 [MER_RR__1P/ME_1_RRG]\",\n \"license\": \"various\",\n \ \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \ \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=MER.RR__1P\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"offering_2\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetMap&layers=Density%3AMER.RR__1P&bbox=-180.0,-90.0,180.0,90.0&width=768&height=384&srs=EPSG%3A4326&transparent=true&styles=Turbo&format=image%2Fpng\",\n \ \"title\": \"GetMap\",\n \"type\": \"image/png\"\n },\n \ \"offering_1\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\",\n \ \"title\": \"GetCapabilities\",\n \"type\": \"application/xml\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/10.5270/EN1-opsw96m\",\n \"type\": \"text/html\",\n \"title\": \"Landing page\"\n },\n {\n \ \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series MER.RR__1P\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for MER.RR__1P\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/MER.RR__1P/api\",\n \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/instruments/meris/auxiliary-data\",\n \ \"type\": \"text/html\",\n \"title\": \"MERIS auxiliary data - Auxiliary Data\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/MERIS-Sentinel-3-Like-L1-andL2-PFS.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"MERIS Sentinel3-like L1/L2 Product Format Specification - Product Specifications\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/instruments/meris/products-information\",\n \ \"type\": \"text/html\",\n \"title\": \"MERIS 4th data reprocessing documentation - Product Specifications\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?text=&category=Document%20library&filter=Envisat,MERIS&subFilter=&sortby=NEWEST_FIRST\",\n \ \"type\": \"text/html\",\n \"title\": \"More MERIS Documents - Other\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?text=MERIS&category=Tools%20and%20toolboxes&filter=Envisat,MERIS&subFilter=&sortby=ZA\",\n \ \"type\": \"text/html\",\n \"title\": \"MERIS Software and Tools - Tools\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/missions/envisat\",\n \ \"type\": \"text/html\",\n \"title\": \"Envisat mission - Description of Envisat mission\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/instruments/meris\",\n \ \"type\": \"text/html\",\n \"title\": \"MERIS instrument - Description of MERIS instrument\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/MER.RR__1P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"wms:transparent\": true,\n \"rel\": \"wms\",\n \"wms:dimensions\": {\"version\": \"1.1.1\"},\n \"href\": \"https://eovoc.spacebel.be/geoserver/wms\",\n \ \"type\": \"image/png\",\n \"title\": \"MER.RR__1P\",\n \ \"wms:layers\": [\"Density:MER.RR__1P\"],\n \"wms:styles\": [\"Turbo\"]\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Envisat\",\n \ \"title\": \"More collections for Envisat platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/003ed1d0-9f6c-59cb-a427-1fa4c4a92107\",\n \ \"title\": \"More collections for MERIS instrument\"\n }\n \ ],\n \"id\": \"MER.RR__1P\",\n \"updated\": \"2023-11-10T08:30:10Z\",\n \ \"stac_extensions\": [\n \"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\",\n \ \"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\"\n \ ],\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"MERIS\"],\n \ \"platform\": [\"Envisat\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -20,\n -35,\n 35,\n \ 75\n ]]},\n \"temporal\": {\"interval\": [[\n \"2015-01-01T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"Europe\",\n \"DIF10\",\n \"orthorectified\",\n \ \"corrected\",\n \"geometrically corrected\",\n \"USGS\",\n \ \"Surface Radiative Properties\",\n \"EARTH SCIENCE > LAND SURFACE > SURFACE RADIATIVE PROPERTIES\",\n \"Vegetation\",\n \"EARTH SCIENCE > BIOSPHERE > VEGETATION\",\n \"Land Use and Land Cover\",\n \ \"EARTH SCIENCE > LAND SURFACE > LAND USE/LAND COVER\",\n \"Agriculture\",\n \ \"EARTH SCIENCE > AGRICULTURE\",\n \"Forestry\",\n \"EARTH SCIENCE > BIOSPHERE > ECOSYSTEMS > TERRESTRIAL ECOSYSTEMS > FORESTS\",\n \"Sun-synchronous\",\n \ \"VIS (0.40 - 0.75 \xB5m)\",\n \"NIR (0.75 - 1.30 \xB5m)\",\n \ \"SWIR (1.3 - 3.0 \xB5m)\",\n \"TIR (6.0 - 15.0 \xB5nm)\",\n \ \"DPAS 5.0\",\n \"Medium Resolution - MR (20 - 500 m)\",\n \ \"OAT_GEO_1P\",\n \"OAT_GTC_1P\",\n \"OAT_SP__2P\",\n \ \"OAT_SR__2P\",\n \"705 km\",\n \"185 km\",\n \"Imaging Spectrometers/Radiometers\",\n \"Landsat-8\",\n \"OLI\",\n \"TIRS\"\n \ ],\n \"created\": \"2022-01-14T00:00:00.000Z\",\n \"description\": \"This dataset contains the European Coverage of Landsat 8 Collection 2 data, both Level 1 and Level 2, since the beginning of the mission. Landsat 8 Collection 2 is the result of reprocessing effort on the archive and on fresh products with significant improvement with respect to Collection 1 on data quality, obtained by means of advancements in data processing, algorithm development. The primary characteristic is a relevant improvement in the absolute geolocation accuracy (now re-baselined to the European Space Agency Copernicus Sentinel-2 Global Reference Image, GRI) but includes also updated digital elevation modelling sources, improved Radiometric Calibration (even correction for the TIRS striping effect), enhanced Quality Assessment Bands, updated and consistent metadata files, usage of Cloud Optimized Georeferenced (COG) Tagged Image File Format. \ Landsat 8 level 1 products combine data from the 2 Landsat instruments, OLI and TIRS. The level 1 products generated can be either L1TP or L1GT: \\u2022 L1TP - Level 1 Precision Terrain (Corrected) (L1T) products: Radiometrically calibrated and orthorectified using ground control points (GCPs) and digital elevation model (DEM) data to correct for relief displacement. The highest quality Level-1 products suitable for pixel-level time series analysis. GCPs used for L1TP correction are derived from the Global Land Survey 2000 (GLS2000) data set. \\u2022 L1GT - Level 1 Systematic Terrain (Corrected) (L1GT) products: L1GT data products consist of L0 product data with systematic radiometric, geometric and terrain corrections applied and resampled for registration to a cartographic projection, referenced to the WGS84, G873, or current version. The dissemination server contains three different classes of Level1 products \\u2022 Real Time (RT): Newly acquired Landsat 8 OLI/TIRS data are processed upon downlink but use an initial TIRS line-of-sight model parameters; the data is made available in less than 12 hours (4-6 hours typically). Once the data have been reprocessed with the refined TIRS parameters, the products are transitioned to either Tier 1 or Tier 2 and removed from the Real-Time tier (in 14-16 days). \\u2022 Tier 1 (T1): Landsat scenes with the highest available data quality are placed into Tier 1 and are considered suitable for time-series analysis. Tier 1 includes Level-1 Precision and Terrain (L1TP) corrected data that have well-characterized radiometry and are inter-calibrated across the different Landsat instruments. The georegistration of Tier 1 scenes is consistent and within prescribed image-to-image tolerances of \u2266 12-meter radial root mean square error (RMSE). \\u2022 Tier 2 (T2): Landsat scenes not meeting Tier 1 criteria during processing are assigned to Tier 2. Tier 2 scenes adhere to the same radiometric standard as Tier 1 scenes, but do not meet the Tier 1 geometry specification due to less accurate orbital information (specific to older Landsat sensors), significant cloud cover, insufficient ground control, or other factors. This includes Systematic Terrain (L1GT) and Systematic (L1GS) processed data. Landsat 8 level 2 products are generated from L1GT and L1TP Level 1 products that meet the <76 degrees Solar Zenith Angle constraint and include the required auxiliary data inputs to generate a scientifically viable product. The data are available a couple of days after the Level1 T1/T2. The level 2 products generated can be L2SP or L2SR: \\u2022 L2SP - Level 2 Science Products (L2SP) products: include Surface Reflectance (SR), Surface Temperature (ST), ST intermediate bands, an angle coefficients file, and Quality Assessment (QA) Bands. \\u2022 L2SR - Level 2 Surface Reflectance (L2SR) products: include Surface Reflectance (SR), an angle coefficients file, and Quality Assessment (QA) Bands; it is generated if ST could not be generated \ Two different categories of Level 1 products are offered: LC with Optical, Thermal and Quality Map images, LO with Optical and Quality Map images (Thermal not available). For the Level 2 data, only LC combined products are generated\",\n \ \"type\": \"Collection\",\n \"title\": \"Landsat 8 Collection 2 European Coverage\",\n \"license\": \"various\",\n \"assets\": {\n \ \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=Landsat8.Collection2.European.Coverage\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"offering_2\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetMap\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetMap&layers=Density%3ALandsat8.Collection2.European.Coverage&bbox=-28.125,16.875,59.0625,74.53125&width=768&height=507&srs=EPSG%3A4326&transparent=true&styles=Turbo&format=image%2Fpng\",\n \ \"title\": \"GetMap\",\n \"type\": \"image/png\"\n },\n \ \"offering_1\": {\n \"roles\": [\"http://www.opengis.net/spec/owc-geojson/1.0/req/wms#GetCapabilities\"],\n \ \"href\": \"https://eovoc.spacebel.be/geoserver/wms?service=WMS&version=1.1.1&request=GetCapabilities\",\n \ \"title\": \"GetCapabilities\",\n \"type\": \"application/xml\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series Landsat8.Collection2.European.Coverage\"\n },\n \ {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for Landsat8.Collection2.European.Coverage\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/Landsat8.Collection2.European.Coverage/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/0/Landsat-Collection-1-vs-Collection-2-Summary.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Landsat Collection1 vs Collection 2 - Product description\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/0/Landsat-8-9-OLI-TIRS-Collection-2-Level-1-Data-Format-Control-Book-DFCB.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Landsat 8-9 OLI-TIRS Collection 2 Level 1 Data Format Control Book (DFCB) - Product specification\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/0/Landsat-8-9-OLI-TIRS-Collection-2-Level-2-Data-Format-Control-Book-DFCB.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Landsat 8-9 OLI-TIRS Collection 2 Level 2 Data Format Control Book (DFCB) - Product specification\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://www.usgs.gov/landsat-missions/landsat-collection-2\",\n \"type\": \"text/html\",\n \"title\": \"USGS Landsat Collection 2 web page - web portal\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Landsat8.Collection2.European.Coverage?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"wms:transparent\": true,\n \"rel\": \"wms\",\n \"wms:dimensions\": {\"version\": \"1.1.1\"},\n \"href\": \"https://eovoc.spacebel.be/geoserver/wms\",\n \ \"type\": \"image/png\",\n \"title\": \"Landsat8.Collection2.European.Coverage\",\n \ \"wms:layers\": [\"Density:Landsat8.Collection2.European.Coverage\"],\n \ \"wms:styles\": [\"Turbo\"]\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Landsat-8\",\n \ \"title\": \"More collections for Landsat-8 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/6bfc7afc-547a-57cd-818c-6d90e3e589ab\",\n \ \"title\": \"More collections for OLI instrument\"\n }\n \ ],\n \"id\": \"Landsat8.Collection2.European.Coverage\",\n \"updated\": \"2023-11-10T08:38:42Z\",\n \"stac_extensions\": [\"https://stac-extensions.github.io/web-map-links/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"OLI\"],\n \ \"platform\": [\"Landsat-8\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -20,\n -35,\n 55,\n \ 25\n ]]},\n \"temporal\": {\"interval\": [[\n \"2019-01-01T00:00:00Z\",\n \ \"2019-12-31T23:59:59Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"ESA\",\n \"CCI\",\n \"Pixel\",\n \ \"Burned Area\",\n \"Fire Disturbance\",\n \"Climate Change\",\n \"GCOS Essential Climate Variable\",\n \"orthoimagery\",\n \ \"EARTH SCIENCE>HUMAN DIMENSIONS>NATURAL HAZARDS>WILDFIRES>BURNED AREA\",\n \"EARTH SCIENCE>BIOSPHERE>ECOLOGICAL DYNAMICS>FIRE ECOLOGY>FIRE DISTURBANCE\"\n ],\n \"description\": \"The ESA Fire Disturbance Climate Change Initiative (Fire_cci) project has produced maps of global burned area developed from satellite observations. The Small Fire Dataset (SFD) pixel products have been obtained by combining spectral information from Sentinel-2 MSI data and thermal information from VIIRS VNP14IMGML active fire products.This dataset is part of v2.0 of the Small Fire Dataset (also known as FireCCISFD11), which covers Sub-Saharan Africa for the year 2019. Data is available here at pixel resolution (0.00017966259 degrees, corresponding to approximately 20m at the Equator). Gridded data products are also available in a separate dataset.\",\n \"type\": \"Collection\",\n \"title\": \"ESA Fire Climate Change Initiative (Fire_cci): Small Fire Dataset (SFD) Burned Area pixel product for Sub-Saharan Africa, version 2.0\",\n \"license\": \"various\",\n \ \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \ \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=4c5feb539f1f44308ca7ec26e0bb7316\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure\": {\n \"roles\": [\"data\"],\n \"href\": \"http://data.ceda.ac.uk/neodc/esacci/fire/data/burned_area/SFD/Africa/Sentinel2/pixel/v2.0/\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"DOWNLOAD - Download Data\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series 4c5feb539f1f44308ca7ec26e0bb7316\"\n },\n {\n \ \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for 4c5feb539f1f44308ca7ec26e0bb7316\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/4c5feb539f1f44308ca7ec26e0bb7316/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://catalogue.ceda.ac.uk/uuid/4c5feb539f1f44308ca7ec26e0bb7316\",\n \ \"title\": \"CEDA Data Catalogue Page - Detail and access information for the resource\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://climate.esa.int/projects/fire/\",\n \"title\": \"ESA CCI Fire project website - No further details.\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://climate.esa.int/\",\n \ \"title\": \"ESA Climate Change Initiative website - No further details.\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"http://data.ceda.ac.uk/neodc/esacci/fire/docs/SFD_v2.0/Fire_cci_D2.4.4_PUG-SFD_v2.0.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Product User Guide - No further details.\"\n },\n {\n \"rel\": \"alternate\",\n \ \"href\": \"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/4c5feb539f1f44308ca7ec26e0bb7316?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/CEDA\",\n \ \"title\": \"More collections for CEDA\"\n }\n ],\n \ \"id\": \"4c5feb539f1f44308ca7ec26e0bb7316\",\n \"updated\": \"2025-04-07T23:42:44Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"CEDA\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\"processing:lineage\": [\"Data was produced by the ESA Fire CCI team as part of the ESA Climate Change Initiative (CCI) and is being held on the CEDA (Centre for Environmental Data Analysis) archive as part of the ESA CCI Open Data Portal project.\"]}\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"2017-10-31T00:00:00Z\",\n \ \"2024-06-30T23:59:59Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"sci:doi\": \"https://doi.org/10.5194/amt-16-669-2023\",\n \ \"keywords\": [\n \"ESA\",\n \"CCI\",\n \"satellite\",\n \ \"Sentinel-5 Precursor\",\n \"TROPOMI\",\n \"atmosphere\",\n \ \"methane\",\n \"carbon monoxide\",\n \"orthoimagery\",\n \ \"EARTH SCIENCE>ATMOSPHERE\",\n \"EARTH SCIENCE>ATMOSPHERE>ATMOSPHERIC CHEMISTRY>CARBON AND HYDROCARBON COMPOUNDS>METHANE\",\n \"EARTH SCIENCE>ATMOSPHERE>AIR QUALITY>CARBON MONOXIDE\"\n ],\n \"description\": \"This product is the column-average dry-air mole fraction of atmospheric methane, denoted XCH4. It has been retrieved from radiance measurements from the TROPOspheric Monitoring Instrument (TROPOMI) on the Sentinel-5 Precursor satellite in the 2.3 \xC2\xB5m spectral range of the solar spectral range, using the Weighting Function Modified Differential Optical Absorption Spectroscopy (WFM-DOAS or WFMD) retrieval algorithm. This dataset is also referred to as CH4_S5P_WFMD. This version of the product is version 1.8, and covers the period from November 2017 - June 2024. The WFMD algorithm is based on iteratively fitting a simulated radiance spectrum to the measured spectrum using a least-squares method. The algorithm is very fast as it is based on a radiative transfer model based look-up table scheme. The product is limited to cloud-free scenes on the Earth's day side.These data were produced as part of the European Space Agency's (ESA) Greenhouse Gases (GHG) Climate Change Initiative (CCI) project.When citing this dataset, please also cite the following peer-reviewed publication: Schneising, O., Buchwitz, M., Hachmeister, J., Vanselow, S., Reuter, M., Buschmann, M., Bovensmann, H., and Burrows, J. P.: Advances in retrieving XCH4 and XCO from Sentinel-5 Precursor: improvements in the scientific TROPOMI/WFMD algorithm, Atmos. Meas. Tech., 16, 669\xE2\\u0080\\u0093694, https://doi.org/10.5194/amt-16-669-2023, 2023.\",\n \"type\": \"Collection\",\n \"title\": \"ESA Greenhouse Gases Climate Change Initiative (GHG_cci): Column-averaged methane from Sentinel-5P, generated with the WFM-DOAS algorithm, version 1.8, November 2017 - June 2024\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=2b8c6a8f1abd40a6b0ce07c40b1c57ff\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure\": {\n \"roles\": [\"data\"],\n \"href\": \"http://data.ceda.ac.uk/neodc/esacci/ghg/data/cci_plus/CH4_S5P_WFMD/v1.8_extended_june2024\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"DOWNLOAD - Download Data\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/https://doi.org/10.5194/amt-16-669-2023\",\n \ \"type\": \"text/html\",\n \"title\": \"Landing page\"\n \ },\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series 2b8c6a8f1abd40a6b0ce07c40b1c57ff\"\n },\n {\n \ \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for 2b8c6a8f1abd40a6b0ce07c40b1c57ff\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/2b8c6a8f1abd40a6b0ce07c40b1c57ff/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://catalogue.ceda.ac.uk/uuid/2b8c6a8f1abd40a6b0ce07c40b1c57ff\",\n \ \"title\": \"CEDA Data Catalogue Page - Detail and access information for the resource\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://www.atmos-meas-tech.net/12/6771/2019/\",\n \"title\": \"A scientific algorithm to simultaneously retrieve carbon monoxide and methane from TROPOMI onboard Sentinel-5 Precursor - No further details.\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://doi.org/10.5194/amt-16-669-2023\",\n \ \"title\": \"Schneising, O., Buchwitz, M., Hachmeister, J., Vanselow, S., Reuter, M., Buschmann, M., Bovensmann, H., and Burrows, J. P.: Advances in retrieving XCH4 and XCO from Sentinel-5 Precursor: improvements in the scientific TROPOMI/WFMD algorithm, Atmos. Meas. Tech., 16, 669\xE2\\u0080\\u0093694, https://doi.org/10.5194/amt-16-669-2023, 2023. - No further details.\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://climate.esa.int\",\n \ \"title\": \"ESA Climate Change Initiative website - No further details.\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://climate.esa.int/projects/ghgs\",\n \"title\": \"Greenhouse Gases CCI project - No further details.\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://www.iup.uni-bremen.de/carbon_ghg/docs/GHG-CCIplus/CRDP9/PUGs/PUG_CRDP9_v2_GHG-CCI_CH4_S5P_WFMD_v1.8.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"CRDP9: Product User Guide (PUG) Version 5 - No further details.\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://www.iup.uni-bremen.de/carbon_ghg/docs/GHG-CCIplus/CRDP9/ATBDs/ATBD_CRDP9_v2_GHG-CCI_CH4_S5P_WFMD_v1.8.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"CRDP9: Algorithm Theoretical Basis Document (ATBD) Version 3 - No further details.\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://www.iup.uni-bremen.de/carbon_ghg/docs/GHG-CCIplus/CRDP9/E3UBs/E3UB_CRDP9_v2_GHG-CCI_CH4_S5P_WFMD_v1.8.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"CRDP9: End-to-End ECV Uncertainty Budget (E3UB) Version 7 - No further details.\"\n },\n \ {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/2b8c6a8f1abd40a6b0ce07c40b1c57ff?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/CEDA\",\n \ \"title\": \"More collections for CEDA\"\n }\n ],\n \ \"id\": \"2b8c6a8f1abd40a6b0ce07c40b1c57ff\",\n \"updated\": \"2025-04-07T23:43:09Z\",\n \ \"stac_extensions\": [\n \"https://stac-extensions.github.io/processing/v1.2.0/schema.json\",\n \ \"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"\n \ ],\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"CEDA\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\"processing:lineage\": [\"Data were processed by the ESA Climate Change Initiative (CCI) Greenhouse Gas project team and supplied to CEDA as part of the ESA CCI Open Data Portal.\"]}\n },\n {\n \"extent\": {\n \ \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2019-01-01T00:00:00Z\",\n \ \"2022-12-31T23:59:59Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"sci:doi\": \"https://doi.org/10.5281/zenodo.10721951\",\n \ \"keywords\": [\n \"ESA\",\n \"CCI\",\n \"Pixel\",\n \ \"Burned Area\",\n \"Fire Disturbance\",\n \"Climate Change\",\n \"GCOS\",\n \"orthoimagery\",\n \"EARTH SCIENCE>HUMAN DIMENSIONS>NATURAL HAZARDS>WILDFIRES>BURNED AREA\",\n \"EARTH SCIENCE>BIOSPHERE>ECOLOGICAL DYNAMICS>FIRE ECOLOGY>FIRE DISTURBANCE\"\n ],\n \"description\": \"The ESA Fire Disturbance Climate Change Initiative (CCI) project has produced maps of global burned area derived from satellite observations. The Sentinel-3 SYN Fire_cci v1.1 pixel product is distributed as 6 continental tiles and is based upon surface reflectance data from the OLCI and SLSTR instruments (combined as the Synergy (SYN) product) onboard the Sentinel-3 A&B satellites. This information is complemented by VIIRS thermal information. This product, called FireCCIS311 for short, is available for the years 2019 to 2022.The FireCCIS311 Pixel product described here includes maps at 0.002777-degree (approx. 300m) resolution. Burned area (BA) information includes 3 individual files, packed in a compressed tar.gz file: date of BA detection (labelled JD), the confidence level (CL, a probability value estimating the confidence that a pixel is actually burned), and the land cover (LC) information as defined in the Copernicus Climate Change Service (C3S) Land Cover v2.1.1 product. An unpacked version of the data is also available. For further information on the product and its format see the Product User Guide in the linked documentation.\",\n \ \"type\": \"Collection\",\n \"title\": \"ESA Fire Climate Change Initiative (Fire_cci): Sentinel-3 SYN Burned Area Pixel product, version 1.1\",\n \ \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=d441079fc77f49fabeb41330612b252f\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure\": {\n \"roles\": [\"data\"],\n \"href\": \"http://data.ceda.ac.uk/neodc/esacci/fire/data/burned_area/Sentinel3_SYN/pixel/v1.1\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"DOWNLOAD - Download Data\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/https://doi.org/10.5281/zenodo.10721951\",\n \ \"type\": \"text/html\",\n \"title\": \"Landing page\"\n \ },\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series d441079fc77f49fabeb41330612b252f\"\n },\n {\n \ \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for d441079fc77f49fabeb41330612b252f\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/d441079fc77f49fabeb41330612b252f/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://catalogue.ceda.ac.uk/uuid/d441079fc77f49fabeb41330612b252f\",\n \ \"title\": \"CEDA Data Catalogue Page - Detail and access information for the resource\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://climate.esa.int/projects/fire\",\n \"title\": \"ESA Fire CCI project webpages - No further details.\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://climate.esa.int\",\n \ \"title\": \"ESA Climate Change Initiative website - No further details.\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://doi.org/10.5281/zenodo.10721951\",\n \"title\": \"Product User Guide - No further details.\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://climate.esa.int/media/documents/Fire_cci_D2.2_ATBD-SYN_v1.1.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Algorithm Theoretical Basis Document (ATBD) - Version 1.1 - No further details.\"\n \ },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/d441079fc77f49fabeb41330612b252f?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/CEDA\",\n \ \"title\": \"More collections for CEDA\"\n }\n ],\n \ \"id\": \"d441079fc77f49fabeb41330612b252f\",\n \"updated\": \"2025-04-07T23:42:44Z\",\n \ \"stac_extensions\": [\n \"https://stac-extensions.github.io/processing/v1.2.0/schema.json\",\n \ \"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"\n \ ],\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"CEDA\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\"processing:lineage\": [\"Data was produced by the ESA Fire CCI team as part of the ESA Climate Change Initiative (CCI) and is being held on the CEDA (Centre for Environmental Data Analysis) archive as part of the ESA CCI Open Data Portal.\"]}\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n 64.8,\n 59.4,\n 87.3,\n 73.9\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"1990-01-01T00:00:00Z\",\n \ \"2019-12-31T23:59:59Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"Land Cover\",\n \"CCI\",\n \ \"High Resolution\",\n \"orthoimagery\",\n \"EARTH SCIENCE>LAND SURFACE>LAND USE/LAND COVER\"\n ],\n \"description\": \"This dataset contains high resolution (HR) land cover (LC) and land cover change (LCC) maps of a subregion of Siberia, produced by the ESA High Resolution Land Cover (HRLC) Climate Change Initiative (CCI) project. It consists of the following products:1) HRLC30: High Resolution Land Cover Maps at 30m spatial resolution for years 1990, 1995, 2000, 2005, 2010, 2015, 2019.2) HRLCC30: High Resolution Land Cover Change Maps at 30m spatial resolution of yearly changes. A map every 5 years (1990-1995, 1995-2000, 2000-2005, 2005-2010, 2010-2015,2015-2019) is provided which reports (high priority) changed pixels and their year within the 5-years temporal interval.3) Associated uncertainty productsThey cover the geographic range (59.4\xC2\xB0N \xE2\\u0080\\u0093 73.9\xC2\xB0N, 64.8\xC2\xB0E \xE2\\u0080\\u0093 87.4\xC2\xB0E).The data are provided as both GeoTIFF tiles following the Sentinel 2 MGRS tiling scheme and as a GeoTiff format mosaic. \ These maps are also referred to as historical maps.\",\n \"type\": \"Collection\",\n \"title\": \"ESA High Resolution Land Cover Climate Change Initiative (High_Resolution_Land_Cover_cci): High Resolution Land Cover and Land Cover Change Maps in Siberia (Norther Siberia region) at 30m spatial resolution in GeoTiff format, 1990-2019, v1.2\",\n \"license\": \"various\",\n \ \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \ \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=854cc98dbc634cdb8afa8835994428f5\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure\": {\n \"roles\": [\"data\"],\n \"href\": \"http://data.ceda.ac.uk/neodc/esacci/high_resolution_land_cover/data/land_cover_maps/A03_Siberia/historical/v1.2/geotiff/\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"DOWNLOAD - Download Data\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series 854cc98dbc634cdb8afa8835994428f5\"\n },\n {\n \ \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for 854cc98dbc634cdb8afa8835994428f5\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/854cc98dbc634cdb8afa8835994428f5/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://catalogue.ceda.ac.uk/uuid/854cc98dbc634cdb8afa8835994428f5\",\n \ \"title\": \"CEDA Data Catalogue Page - Detail and access information for the resource\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://climate.esa.int/\",\n \"title\": \"ESA Climate Change Initiative website - No further details.\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://climate.esa.int/projects/high-resolution-land-cover/\",\n \ \"title\": \"ESA CCI High Resolution Land Cover project website - No further details.\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://climate.esa.int/documents/2514/CCI_HRLC_Ph1-D4.3_PUG_v2.2.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Product User Guide - No further details.\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://data.ceda.ac.uk/neodc/esacci/high_resolution_land_cover/metadata/land_cover_maps/qgis_legends\",\n \ \"title\": \"QGIS legends - No further details.\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://artefacts.ceda.ac.uk/badc_datadocs/esacci_portal/high_resolution_land_cover/Quick_User_Guide_v1.0.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Quick User Guide v1.0 - No further details.\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/854cc98dbc634cdb8afa8835994428f5?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/CEDA\",\n \ \"title\": \"More collections for CEDA\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/Unavailable\",\n \ \"title\": \"More collections for Unavailable\"\n }\n ],\n \ \"id\": \"854cc98dbc634cdb8afa8835994428f5\",\n \"updated\": \"2025-04-07T23:43:10Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"CEDA\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\"processing:lineage\": [\"Data were processed by the ESA CCI High Resolution Land Cover project and catalogued here as part of the CCI Open Data Portal Project\"]}\n }\n ],\n \"numberReturned\": 10,\n \"links\": [\n {\n \ \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections?limit=10&q=sentinel\",\n \ \"type\": \"application/json\",\n \"title\": \"This document\"\n \ },\n {\n \"rel\": \"next\",\n \"href\": \"https://emc.spacebel.be/collections?limit=10&q=sentinel&startRecord=11\",\n \ \"type\": \"application/json\",\n \"title\": \"Next results\"\n \ },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for collection search\"\n }\n ],\n \"numberMatched\": 216\n}" headers: Access-Control-Allow-Headers: - X-PINGOTHER, Content-Type, Authorization, Accept Access-Control-Allow-Methods: - POST,GET,PUT,HEAD,OPTIONS,DELETE Access-Control-Allow-Origin: - '*' Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Connection: - keep-alive Content-Type: - application/json;charset=UTF-8 Date: - Thu, 17 Jul 2025 12:51:07 GMT Expires: - '0' Pragma: - no-cache Server: - openresty Strict-Transport-Security: - max-age=31536000 ; includeSubDomains Transfer-Encoding: - chunked X-Content-Type-Options: - nosniff X-Frame-Options: - DENY X-Served-By: - emc.spacebel.be X-XSS-Protection: - 1; mode=block status: code: 200 message: '' - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://emc.spacebel.be/collections?limit=10&q=sentinel&startRecord=11 response: body: string: "{\n \"collections\": [\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -80,\n 60,\n -10,\n 90\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"1995-08-27T23:00:00Z\",\n \ \"2017-03-16T23:59:59Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"DIF10\",\n \"Greenland\",\n \ \"Ice Sheet\",\n \"CCI\",\n \"ESA\",\n \"orthoimagery\",\n \ \"EARTH SCIENCE>CRYOSPHERE>GLACIERS/ICE SHEETS>ICE SHEETS\",\n \"ERS-1\",\n \ \"ERS-2\",\n \"Sentinel-1A\",\n \"Sentinel-1B\",\n \"AMI\",\n \ \"C-SAR\",\n \"ice sheets\",\n \"AMI-SAR\",\n \"SAR-C (Sentinel-1)\",\n \"AMI/SAR\"\n ],\n \"description\": \"This dataset contains grounding lines for 5 North Greenland glaciers, derived from generated from ERS -1/-2 and Sentinel-1 SAR (Synthetic Aperture Radar) interferometry. \ This version of the dataset (v1.3) has been extended with grounding lines for 2017. Data was produced as part of the ESA Greenland Ice Sheets Climate Change Initiative (CCI) project by ENVEO, Austria. The grounding line is the separation point between the floating and grounded parts of the glacier. Processes at the grounding lines of floating marine termini of glaciers and ice streams are important for understanding the response of the ice masses to changing boundary conditions and for establishing realistic scenarios for the response to climate change. The grounding line location product is derived from InSAR data by mapping the tidal flexure and is generated for a selection of the few glaciers in Greenland, which have a floating tongue. In general, the true location of the grounding line is unknown, and therefore validation is difficult for this product.Remote sensing observations do not provide direct measurement on the transition from floating to grounding ice (the grounding line). The satellite data deliver observations on ice surface features (e.g. tidal deformation by InSAR, spatial changes in texture and shading in optical images) that are indirect indicators for estimating the position of the grounding line. Due to the plasticity of ice these indicators spread out over a zone upstream and downstream of the grounding line, the tidal flexure zone (also called grounding zone).\",\n \"type\": \"Collection\",\n \"title\": \"ESA Greenland Ice Sheet Climate Change Initiative (Greenland_Ice_Sheet_cci): Grounding Line Locations from SAR Interferometry, v1.3\",\n \"license\": \"various\",\n \ \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \ \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=ea7a4cbe7b83450bb7a00bf3761c40d7\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure\": {\n \"roles\": [\"data\"],\n \"href\": \"http://data.ceda.ac.uk/neodc/esacci/ice_sheets_greenland/data/greenland_grounding_line_locations/v1.3/\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"DOWNLOAD - Download Data\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series ea7a4cbe7b83450bb7a00bf3761c40d7\"\n },\n {\n \ \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for ea7a4cbe7b83450bb7a00bf3761c40d7\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/ea7a4cbe7b83450bb7a00bf3761c40d7/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://catalogue.ceda.ac.uk/uuid/ea7a4cbe7b83450bb7a00bf3761c40d7\",\n \ \"title\": \"CEDA Data Catalogue Page - Detail and access information for the resource\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"http://www.esa-icesheets-greenland-cci.org/index.php?q=webfm_send/165\",\n \ \"title\": \"Product User Guide - No further details.\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"http://www.esa-icesheets-cci.org/\",\n \ \"title\": \"The ESA Greenland Ice Sheet CCI Project - No further details.\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://climate.esa.int/\",\n \"title\": \"ESA Climate Change Initiative website - No further details.\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"http://data.ceda.ac.uk/neodc/esacci/ice_sheets_greenland/metadata/sample_images/gll_v1.3_quicklook.jpg\",\n \ \"title\": \"Sample Image - No further details.\"\n },\n \ {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ea7a4cbe7b83450bb7a00bf3761c40d7?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/CEDA\",\n \ \"title\": \"More collections for CEDA\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/ERS-1\",\n \ \"title\": \"More collections for ERS-1 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/ERS-2\",\n \ \"title\": \"More collections for ERS-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-1A\",\n \ \"title\": \"More collections for Sentinel-1A platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-1B\",\n \ \"title\": \"More collections for Sentinel-1B platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/a2cb7dbe-6433-5737-9d3c-b974e6f643b2\",\n \ \"title\": \"More collections for C-SAR instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/72aad1c4-ff46-535c-9256-cc0bf9d004f1\",\n \ \"title\": \"More collections for AMI/SAR instrument\"\n }\n \ ],\n \"id\": \"ea7a4cbe7b83450bb7a00bf3761c40d7\",\n \"updated\": \"2025-04-07T23:43:35Z\",\n \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"CEDA\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\n \"C-SAR\",\n \"AMI/SAR\"\n \ ],\n \"processing:lineage\": [\"Data were processed by the ESA CCI Greenland Ice Sheet project team and supplied to CEDA in the context of the ESA CCI Open Data Portal Project.\"],\n \"platform\": [\n \"ERS-1\",\n \ \"ERS-2\",\n \"Sentinel-1A\",\n \"Sentinel-1B\"\n \ ]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"1992-09-26T00:00:00Z\",\n \ \"2022-12-31T23:59:59Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"ESA\",\n \"CCI\",\n \"Lakes\",\n \ \"ECV\",\n \"orthoimagery\",\n \"EARTH SCIENCE>BIOSPHERE>ECOSYSTEMS>FRESHWATER ECOSYSTEMS>LAKE/POND>MONTANE LAKE\",\n \"Jason-2\",\n \"Envisat\",\n \ \"Jason-1\",\n \"Topex/Poseidon\",\n \"MODIS_AQUA\",\n \ \"MODIS_TERRA\",\n \"ERS\",\n \"Landsat-8\",\n \"Landsat-5\",\n \ \"Jason-3\",\n \"Landsat-7\",\n \"Metop\",\n \"Landsat-4\",\n \ \"SARAL\",\n \"Sentinel-3A\",\n \"Sentinel-3B\",\n \"Sentinel-1\",\n \ \"Sentinel-2\"\n ],\n \"description\": \"This dataset contains the Lakes Essential Climate Variable, which is comprised of processed satellite observations at the global scale, over the period 1992-2022, for over 2000 inland water bodies. This dataset was produced by the European Space Agency (ESA) Lakes Climate Change Initiative (Lakes_cci) project. For more information about the Lakes_cci please visit the project website. This is version 2.1.0 of the dataset.The six thematic climate variables included in this dataset are:\xE2\\u0080\xA2 Lake Water Level (LWL), derived from satellite altimetry, is fundamental to understand the balance between water inputs and water loss and their connection with regional and global climate change.\xE2\\u0080\xA2 Lake Water Extent (LWE), modelled from the relation between LWL and high-resolution spatial extent observed at set time-points, describes the areal extent of the water body. This allows the observation of drought in arid environments, expansion in high Asia, or impact of large-scale atmospheric oscillations on lakes in tropical regions for example. .\xE2\\u0080\xA2 Lake Surface Water temperature (LSWT), derived from optical and thermal satellite observations, is correlated with regional air temperatures and is informative about vertical mixing regimes, driving biogeochemical cycling and seasonality.\xE2\\u0080\xA2 Lake Ice Cover (LIC), determined from optical observations, describes the freeze-up in autumn and break-up of ice in spring, which are proxies for gradually changing climate patterns and seasonality.\xE2\\u0080\xA2 Lake Water-Leaving Reflectance (LWLR), derived from optical satellite observations, is a direct indicator of biogeochemical processes and habitats in the visible part of the water column (e.g. seasonal phytoplankton biomass fluctuations), and an indicator of the frequency of extreme events (peak terrestrial run-off, changing mixing conditions).\xE2\\u0080\xA2 Lake Ice Thickness (LIT), containing LIT information over Great Slave lake from 2002-2022.Data generated in the Lakes_cci are derived from multiple satellite sensors including: TOPEX/Poseidon, Jason, ENVISAT, SARAL, Sentinel 2-3, Landsat 4, 5, 7 and 8, ERS-1, ERS-2, Terra/Aqua and Metop-A/B.Satellite sensors associated with the thematic climate variables are as follows:LWL: TOPEX/Poseidon, Jason-1, Jason-2, Jason-3, Sentinel-6A, Envisat RA/RA-2, SARAL AltiKa, GFO, Sentinel-3A SRAL, Sentinel-3B SRAL, ERS-1 RA, ERS-2; LWE: Landsat 4 TM, 5 TM, 7 ETM+, 8 OLI, Sentinel-1 C-band SAR, Sentinel-2 MSI, Sentinel-3A SRAL, Sentinel-3B SRAL, ERS-1 AMI, ERS-2 AMI;LSWT: Envisat AATSR, Terra/Aqua MODIS, Sentinel-3A ATTSR-2, Sentinel-3B, ERS-2 AVHRR, Metop-A/B; LIC: Terra/Aqua MODIS; LWLR: Envisat MERIS, Sentinel-3A OLCI A/B, Aqua MODIS;LIT: Jason1, Jason2, Jason3, POSEIDON-2, POSEIDON-3 and POSEIDON-3B.Detailed information about the generation and validation of this dataset is available from the Lakes_cci documentation available on the project website and in Carrea, L., Cr\xC3\xA9taux, JF., Liu, X. et al. Satellite-derived multivariate world-wide lake physical variable timeseries for climate studies. Sci Data 10, 30 (2023). https://doi.org/10.1038/s41597-022-01889-z\",\n \"type\": \"Collection\",\n \"title\": \"ESA Lakes Climate Change Initiative (Lakes_cci): \ Lake products, Version 2.1\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=7fc9df8070d34cacab8092e45ef276f1\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure\": {\n \"roles\": [\"data\"],\n \"href\": \"http://data.ceda.ac.uk/neodc/esacci/lakes/data/lake_products/L3S/v2.1/\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"DOWNLOAD - Download Data\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series 7fc9df8070d34cacab8092e45ef276f1\"\n },\n {\n \ \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for 7fc9df8070d34cacab8092e45ef276f1\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/7fc9df8070d34cacab8092e45ef276f1/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://catalogue.ceda.ac.uk/uuid/7fc9df8070d34cacab8092e45ef276f1\",\n \ \"title\": \"CEDA Data Catalogue Page - Detail and access information for the resource\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://climate.esa.int/en/projects/lakes/key-documents-lakes/\",\n \ \"title\": \"Documentation for ESA CCI Lakes project - No further details.\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://climate.esa.int\",\n \"title\": \"ESA Climate Change Initiative website - No further details.\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://climate.esa.int/projects/lakes/\",\n \ \"title\": \"ESA CCI Lakes project website - No further details.\"\n \ },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/7fc9df8070d34cacab8092e45ef276f1?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/CEDA\",\n \ \"title\": \"More collections for CEDA\"\n }\n ],\n \ \"id\": \"7fc9df8070d34cacab8092e45ef276f1\",\n \"updated\": \"2025-04-07T23:44:42Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"CEDA\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\"processing:lineage\": [\"This dataset was generated in the framework of the Lakes CCI+ project, funded by ESA. Data were produced by the project team and supplied for archiving at the Centre for Environmental Data Analysis (CEDA).\"]}\n \ },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -80,\n \ 60,\n -10,\n 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2017-06-02T23:00:00Z\",\n \"2017-09-08T22:59:59Z\"\n \ ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"DIF10\",\n \"Greenland\",\n \"Ice sheet\",\n \"CCI\",\n \ \"ESA\",\n \"orthoimagery\",\n \"EARTH SCIENCE>CRYOSPHERE>GLACIERS/ICE SHEETS>ICE SHEETS\",\n \"Sentinel-2\",\n \"Sentinel-2B\",\n \ \"Sentinel-2 MSI\",\n \"ice sheets\",\n \"Sentinel-2A\",\n \ \"MSI (Sentinel-2)\",\n \"MSI\"\n ],\n \"description\": \"This dataset contains optical ice velocity time series and seasonal product of the Jakobshavn Glacier in Greenland, derived from intensity-tracking of Sentinel-2 data acquired between 2017-06-03 and 2017-09-08. It has been produced as part of the ESA Greenland Ice sheet CCI project. The data are provided on a polar stereographic grid (EPSG 3413:Latitude of true scale 70N, Reference Longitude 45E) with 50m grid spacing. The horizontal velocity is provided in true meters per day, towards EASTING (x) and NORTHING (y) direction of the grid.The data have been produced by S[&]T Norway.\",\n \"type\": \"Collection\",\n \"title\": \"ESA Greenland Ice Sheet Climate Change Initiative (Greenland_Ice_Sheet_cci): Optical ice velocity of the Jakobshavn Glacier between 2017-06-03 and 2017-09-08, generated using Sentinel-2 data, v1.1\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=cfe3102659f34d33b123b2a0043e4068\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure\": {\n \"roles\": [\"data\"],\n \"href\": \"http://data.ceda.ac.uk/neodc/esacci/ice_sheets_greenland/data/greenland_ice_velocity/greenland_iv_50m_s2_jakobshavn/v1.1/\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"DOWNLOAD - Download Data\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series cfe3102659f34d33b123b2a0043e4068\"\n },\n {\n \ \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for cfe3102659f34d33b123b2a0043e4068\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/cfe3102659f34d33b123b2a0043e4068/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://catalogue.ceda.ac.uk/uuid/cfe3102659f34d33b123b2a0043e4068\",\n \ \"title\": \"CEDA Data Catalogue Page - Detail and access information for the resource\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"http://www.esa-icesheets-greenland-cci.org/index.php?q=webfm_send/165\",\n \ \"title\": \"Product User Guide - No further details.\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"http://esa-icesheets-greenland-cci.org/index.php?q=webfm_send/168\",\n \ \"title\": \"Product Specification Document - No further details.\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://climate.esa.int/\",\n \"title\": \"ESA Climate Change Initiative website - No further details.\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"http://data.ceda.ac.uk/neodc/esacci/ice_sheets_greenland/metadata/sample_images/iv_50m_s2_jakobshavn_v1_1_offsets_quicklook.png\",\n \ \"title\": \"Sample Image - No further details.\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://climate.esa.int/projects/ice-sheets-greenland/\",\n \ \"title\": \"ESA CCI Greenland Ice Sheet project website - No further details.\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/cfe3102659f34d33b123b2a0043e4068?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/CEDA\",\n \ \"title\": \"More collections for CEDA\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-2\",\n \ \"title\": \"More collections for Sentinel-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-2B\",\n \ \"title\": \"More collections for Sentinel-2B platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/b9e0c526-c992-55e2-af93-4dc67aa71774\",\n \ \"title\": \"More collections for MSI instrument\"\n }\n \ ],\n \"id\": \"cfe3102659f34d33b123b2a0043e4068\",\n \"updated\": \"2025-04-07T23:44:19Z\",\n \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"CEDA\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"MSI\"],\n \"processing:lineage\": [\"Data were produced by S[&]T Norway as part of the ESA CCI Greenland Ice Sheet project and supplied to CEDA in the context of the ESA CCI Open Data Portal Project.\"],\n \ \"platform\": [\n \"Sentinel-2\",\n \"Sentinel-2B\"\n \ ]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -80,\n 60,\n -10,\n 90\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"2017-04-30T23:00:00Z\",\n \ \"2017-08-29T22:59:59Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"DIF10\",\n \"Greenland\",\n \ \"Ice sheet\",\n \"CCI\",\n \"ESA\",\n \"orthoimagery\",\n \ \"EARTH SCIENCE>CRYOSPHERE>GLACIERS/ICE SHEETS>ICE SHEETS\",\n \"Sentinel-2\",\n \ \"Sentinel-2B\",\n \"Sentinel-2 MSI\",\n \"ice sheets\",\n \ \"Sentinel-2A\",\n \"MSI (Sentinel-2)\",\n \"MSI\"\n \ ],\n \"description\": \"This dataset contains optical ice velocity time series and seasonal product of the Helheim Glacier in Greenland, derived from intensity-tracking of Sentinel-2 data acquired between 2017-05-01 and 2017-08-29. It has been produced as part of the ESA Greenland Ice sheet CCI project. The data are provided on a polar stereographic grid (EPSG 3413:Latitude of true scale 70N, Reference Longitude 45E) with 50m grid spacing. The horizontal velocity is provided in true meters per day, towards EASTING (x) and NORTHING (y) direction of the grid.The data have been produced by S[&]T Norway.\",\n \ \"type\": \"Collection\",\n \"title\": \"ESA Greenland Ice Sheet Climate Change Initiative (Greenland_Ice_Sheet_cci): Optical ice velocity of the Helheim Glacier between 2017-05-01 and 2017-08-29, generated using Sentinel-2 data, v1.1\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=1e3fcdc14e2246c69fc54f0e1fe7a6ca\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure\": {\n \"roles\": [\"data\"],\n \"href\": \"http://data.ceda.ac.uk/neodc/esacci/ice_sheets_greenland/data/greenland_ice_velocity/greenland_iv_50m_s2_helheim/v1.1/\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"DOWNLOAD - Download Data\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series 1e3fcdc14e2246c69fc54f0e1fe7a6ca\"\n },\n {\n \ \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for 1e3fcdc14e2246c69fc54f0e1fe7a6ca\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/1e3fcdc14e2246c69fc54f0e1fe7a6ca/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://catalogue.ceda.ac.uk/uuid/1e3fcdc14e2246c69fc54f0e1fe7a6ca\",\n \ \"title\": \"CEDA Data Catalogue Page - Detail and access information for the resource\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"http://esa-icesheets-greenland-cci.org/index.php?q=webfm_send/168\",\n \ \"title\": \"Product Specification Document - No further details.\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://climate.esa.int/\",\n \"title\": \"ESA Climate Change Initiative website - No further details.\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"http://www.esa-icesheets-greenland-cci.org/index.php?q=webfm_send/165\",\n \ \"title\": \"Product User Guide - No further details.\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"http://data.ceda.ac.uk/neodc/esacci/ice_sheets_greenland/metadata/sample_images/iv_50m_s2_helheim_v1_1_offsets_quicklook.png\",\n \ \"title\": \"Sample Image - No further details.\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://climate.esa.int/projects/ice-sheets-greenland/\",\n \ \"title\": \"ESA CCI Greenland Ice Sheet project website - No further details.\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/1e3fcdc14e2246c69fc54f0e1fe7a6ca?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/CEDA\",\n \ \"title\": \"More collections for CEDA\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-2\",\n \ \"title\": \"More collections for Sentinel-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-2B\",\n \ \"title\": \"More collections for Sentinel-2B platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/b9e0c526-c992-55e2-af93-4dc67aa71774\",\n \ \"title\": \"More collections for MSI instrument\"\n }\n \ ],\n \"id\": \"1e3fcdc14e2246c69fc54f0e1fe7a6ca\",\n \"updated\": \"2025-04-07T23:44:19Z\",\n \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"CEDA\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"MSI\"],\n \"processing:lineage\": [\"Data were produced by S[&]T Norway as part of the ESA CCI Greenland Ice Sheet project and were supplied to CEDA in the context of the ESA CCI Open Data Portal Project.\"],\n \ \"platform\": [\n \"Sentinel-2\",\n \"Sentinel-2B\"\n \ ]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -80,\n 60,\n -10,\n 90\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"2015-01-22T00:00:00Z\",\n \ \"2017-03-22T23:59:59Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"DIF10\",\n \"Greenland\",\n \ \"Ice sheet\",\n \"CCI\",\n \"ESA\",\n \"orthoimagery\",\n \ \"EARTH SCIENCE>CRYOSPHERE>GLACIERS/ICE SHEETS>ICE SHEETS\",\n \"Sentinel-1A\",\n \ \"Sentinel-1B\",\n \"C-SAR\",\n \"ice sheets\",\n \"SAR-C (Sentinel-1)\"\n ],\n \"description\": \"This dataset contains a time series of ice velocities for the 79-Fjord Glacier in Greenland, derived from Sentinel-1 SAR (Synthetic Aperture Radar) data acquired between January 2015 and March 2017. It has been produced by the ESA Greenland Ice Sheet Climate Change Initiative (CCI) project.Data files are delivered in NetCDF format at 250m grid spacing in North Polar Stereographic projection (EPSG: 3413). The horizontal velocity components are provided in true meters per day, towards the EASTING(x) and NORTHING(y) directions of the grid.\",\n \"type\": \"Collection\",\n \"title\": \"ESA Greenland Ice Sheet Climate Change Initiative (Greenland_Ice_Sheet_cci): Ice Velocity time series for the 79-Fjord Glacier for 2015-2017 from Sentinel-1 data, v1.1\",\n \"license\": \"various\",\n \ \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \ \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=41e2300068b44fa190f24272dc08dcd0\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure\": {\n \"roles\": [\"data\"],\n \"href\": \"http://data.ceda.ac.uk/neodc/esacci/ice_sheets_greenland/data/greenland_ice_velocity/greenland_iv_250m_s1_79fjord/v1.1/\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"DOWNLOAD - Download Data\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series 41e2300068b44fa190f24272dc08dcd0\"\n },\n {\n \ \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for 41e2300068b44fa190f24272dc08dcd0\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/41e2300068b44fa190f24272dc08dcd0/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://catalogue.ceda.ac.uk/uuid/41e2300068b44fa190f24272dc08dcd0\",\n \ \"title\": \"CEDA Data Catalogue Page - Detail and access information for the resource\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://climate.esa.int/\",\n \"title\": \"ESA Climate Change Initiative website - No further details.\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"http://www.esa-icesheets-greenland-cci.org/index.php?q=webfm_send/165\",\n \ \"title\": \"Product User Guide - No further details.\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"http://esa-icesheets-greenland-cci.org/index.php?q=webfm_send/168\",\n \ \"title\": \"Product Specification Document - No further details.\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://climate.esa.int/projects/ice-sheets-greenland/\",\n \"title\": \"ESA CCI Greenland Ice Sheet project website - No further details.\"\n },\n \ {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/41e2300068b44fa190f24272dc08dcd0?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/CEDA\",\n \ \"title\": \"More collections for CEDA\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-1A\",\n \ \"title\": \"More collections for Sentinel-1A platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-1B\",\n \ \"title\": \"More collections for Sentinel-1B platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/a2cb7dbe-6433-5737-9d3c-b974e6f643b2\",\n \ \"title\": \"More collections for C-SAR instrument\"\n }\n \ ],\n \"id\": \"41e2300068b44fa190f24272dc08dcd0\",\n \"updated\": \"2025-04-07T23:43:57Z\",\n \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"CEDA\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"C-SAR\"],\n \"processing:lineage\": [\"Data were processed by the ESA CCI Greenland Ice Sheet project team and supplied to CEDA in the context of the ESA CCI Open Data Portal Project.\"],\n \ \"platform\": [\n \"Sentinel-1A\",\n \"Sentinel-1B\"\n \ ]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -80,\n 60,\n -10,\n 90\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"2014-11-01T00:00:00Z\",\n \ \"2015-12-01T23:59:59Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"DIF10\",\n \"greenland\",\n \ \"ice velocity\",\n \"orthoimagery\",\n \"EARTH SCIENCE>CRYOSPHERE>GLACIERS/ICE SHEETS>ICE SHEETS\",\n \"EARTH SCIENCE>TERRESTRIAL HYDROSPHERE>SNOW/ICE>ICE VELOCITY\",\n \"Sentinel-1A\",\n \"C-SAR\",\n \"ice sheets\",\n \ \"SAR-C (Sentinel-1)\"\n ],\n \"description\": \"This dataset provides an ice velocity map for the whole Greenland ice-sheet for the winter of 2014-2015, derived from Sentinel-1 SAR data, as part of the ESA Greenland Ice Sheet Climate Change Initiative (CCI) project.The data are provided on a polar stereographic grid (EPSG3413: Latitude of true scale 70N, Reference Longitude 45E). The horizontal velocity is provided in true meters per day, towards the EASTING(x) and NORTHING(y) directions of the grid; the vertical displacement (z), derived from a digital elevation model, is also provided. Please note that previous versions of this product provided the horizontal velocities as true East and North velocities.\",\n \"type\": \"Collection\",\n \ \"title\": \"ESA Greenland Ice Sheet Climate Change Initiative (Greenland_Ice_Sheet_cci): Greenland Ice Velocity Map Winter 2014-2015, v1.0\",\n \"license\": \"various\",\n \ \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \ \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=82e4ede59fe746ba810009d9a30e0153\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure\": {\n \"roles\": [\"data\"],\n \"href\": \"http://data.ceda.ac.uk/neodc/esacci/ice_sheets_greenland/data/greenland_ice_velocity/greenland_ice_velocity_map_winter_2014_2015/v1.0\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"DOWNLOAD - Download Data\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series 82e4ede59fe746ba810009d9a30e0153\"\n },\n {\n \ \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for 82e4ede59fe746ba810009d9a30e0153\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/82e4ede59fe746ba810009d9a30e0153/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://catalogue.ceda.ac.uk/uuid/82e4ede59fe746ba810009d9a30e0153\",\n \ \"title\": \"CEDA Data Catalogue Page - Detail and access information for the resource\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"http://www.esa-icesheets-cci.org/\",\n \"title\": \"ESA Greenland Ice Sheet CCI Project - No further details.\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://climate.esa.int/en/projects/ice-sheets-greenland/key-documents/\",\n \ \"title\": \"Product User Guide - No further details.\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"http://data.ceda.ac.uk/neodc/esacci/ice_sheets_greenland/metadata/sample_images/greenland_iv_500m_20141101_20151201_v1_0_vv_quicklook.png\",\n \ \"title\": \"Sample Image - No further details.\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://climate.esa.int/\",\n \ \"title\": \"ESA Climate Change Initiative website - No further details.\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/82e4ede59fe746ba810009d9a30e0153?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/CEDA\",\n \ \"title\": \"More collections for CEDA\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-1A\",\n \ \"title\": \"More collections for Sentinel-1A platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/a2cb7dbe-6433-5737-9d3c-b974e6f643b2\",\n \ \"title\": \"More collections for C-SAR instrument\"\n }\n \ ],\n \"id\": \"82e4ede59fe746ba810009d9a30e0153\",\n \"updated\": \"2025-04-07T23:44:21Z\",\n \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"CEDA\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"C-SAR\"],\n \"processing:lineage\": [\"Data were processed by the ESA CCI Greenland Ice Sheet project team and supplied to CEDA in the context of the ESA CCI Open Data Portal Project\"],\n \ \"platform\": [\"Sentinel-1A\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"1992-09-15T00:00:00Z\",\n \ \"2019-12-31T23:59:59Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"DIF10\",\n \"ESA\",\n \ \"CCI\",\n \"Lakes\",\n \"ECV\",\n \"orthoimagery\",\n \ \"EARTH SCIENCE>SPECTRAL/ENGINEERING>INFRARED WAVELENGTHS\",\n \"EARTH SCIENCE>BIOSPHERE>ECOSYSTEMS>FRESHWATER ECOSYSTEMS>LAKE/POND>MONTANE LAKE\",\n \ \"EARTH SCIENCE>SPECTRAL/ENGINEERING>RADAR\",\n \"Aqua\",\n \ \"ENVISAT\",\n \"ERS-2\",\n \"JASON-1\",\n \"LANDSAT-4\",\n \ \"LANDSAT-5\",\n \"LANDSAT-8\",\n \"METOP-A\",\n \"METOP-B\",\n \ \"OrbView-2\",\n \"Sentinel-3A\",\n \"Sentinel-3B\",\n \ \"Terra\",\n \"TOPEX/POSEIDON\",\n \"AATSR\",\n \"ATSR-2\",\n \ \"AVHRR-3\",\n \"MERIS\",\n \"MODIS\",\n \"MSS\",\n \ \"OLI\",\n \"POSEIDON-2\",\n \"RA\",\n \"RA-2\",\n \ \"SeaWiFS\",\n \"SSALT\",\n \"TM\",\n \"OLCI\",\n \ \"day\",\n \"Collecte Localisation Satellites\",\n \"Laboratoire d'Etudes en Geodesie et Oceanographie Spatiales\",\n \"Plymouth Marine Laboratory\",\n \"Envisat\",\n \"GFO\",\n \"Jason-1\",\n \ \"Jason-2\",\n \"Jason-3\",\n \"Landsat-4\",\n \"Landsat-5\",\n \ \"Landsat-7\",\n \"Landsat-8\",\n \"Metop-A\",\n \"Metop-B\",\n \ \"Orbview-2\",\n \"SARAL\",\n \"Sentinel-1A\",\n \"SNPP\",\n \ \"Topex/Poseidon\",\n \"Level 3\",\n \"Level 3S\",\n \ \"MERGED\",\n \"AltiKa\",\n \"VIIRS\",\n \"lakes\",\n \ \"multiple lake products\",\n \"Poseidon-2\",\n \"Poseidon-3\",\n \ \"SRAL\",\n \"University of Reading\",\n \"H2O Geomatics\",\n \ \"AQUA\",\n \"TERRA\"\n ],\n \"description\": \"This dataset contains various global lake products (1992-2019) produced by the European Space Agency (ESA) Lakes Climate Change Initiative (Lakes_cci) project. This is version 1.1 of the dataset.Lakes are of significant interest to the scientific community, local to national governments, industries and the wider public. A range of scientific disciplines including hydrology, limnology, climatology, biogeochemistry and geodesy are interested in distribution and \ functioning of the millions of lakes (from small ponds to inland seas), from the local to the global scale. Remote sensing provides an opportunity to extend the spatio-temporal scale of lake observation. The five thematic climate variables included in this dataset are:\xE2\\u0080\xA2\\tLake Water Level (LWL): a proxy fundamental to understand the balance between water inputs and water loss and their connection with regional and global climate changes.\xE2\\u0080\xA2\\tLake Water Extent (LWE): a proxy for change in glacial regions (lake expansion) and drought in many arid environments, water extent relates to local climate for the cooling effect that water bodies provide.\xE2\\u0080\xA2\\tLake Surface Water temperature (LSWT): correlated with regional air temperatures and a proxy for mixing regimes, driving biogeochemical cycling and seasonality. \xE2\\u0080\xA2\\tLake Ice Cover (LIC): freeze-up in autumn and advancing break-up in spring are proxies for gradually changing climate patterns and seasonality. \xE2\\u0080\xA2\\tLake Water-Leaving Reflectance (LWLR): a direct indicator of biogeochemical processes and habitats in the visible part of the water column (e.g. seasonal phytoplankton biomass fluctuations), and an indicator of the frequency of extreme events (peak terrestrial run-off, changing mixing conditions).Data generated in the Lakes_cci project are derived from data from multiple instruments and multiple satellites including; TOPEX/Poseidon, Jason, ENVISAT, SARAL, Sentinel, Landsat, ERS, Terra/Aqua, Suomi NPP, Metop and Orbview. For more information please see the product user guide in the documents.\",\n \"type\": \"Collection\",\n \"title\": \"ESA Lakes Climate Change Initiative (Lakes_cci): Lake products, Version 1.1\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=ef1627f523764eae8bbb6b81bf1f7a0a\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure\": {\n \"roles\": [\"data\"],\n \"href\": \"http://data.ceda.ac.uk/neodc/esacci/lakes/data/lake_products/L3S/v1.1/\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"DOWNLOAD - Download Data\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series ef1627f523764eae8bbb6b81bf1f7a0a\"\n },\n {\n \ \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for ef1627f523764eae8bbb6b81bf1f7a0a\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/ef1627f523764eae8bbb6b81bf1f7a0a/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://catalogue.ceda.ac.uk/uuid/ef1627f523764eae8bbb6b81bf1f7a0a\",\n \ \"title\": \"CEDA Data Catalogue Page - Detail and access information for the resource\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://climate.esa.int/projects/lakes/\",\n \"title\": \"ESA CCI Lakes project website - No further details.\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://climate.esa.int\",\n \ \"title\": \"ESA Climate Change Initiative website - No further details.\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://climate.esa.int/documents/1155/CCI-LAKES-0029-PUG-v1.2.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Product User Guide - No further details.\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://climate.esa.int/en/projects/lakes/key-documents-lakes/#milestone-4\",\n \ \"title\": \"Documentation for ESA CCI Lakes project - No further details.\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ef1627f523764eae8bbb6b81bf1f7a0a?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/CEDA\",\n \ \"title\": \"More collections for CEDA\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/AQUA\",\n \ \"title\": \"More collections for AQUA platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Envisat\",\n \ \"title\": \"More collections for Envisat platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/ERS-2\",\n \ \"title\": \"More collections for ERS-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Jason-1\",\n \ \"title\": \"More collections for Jason-1 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/JASON-3\",\n \ \"title\": \"More collections for JASON-3 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Landsat-4\",\n \ \"title\": \"More collections for Landsat-4 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Landsat-5\",\n \ \"title\": \"More collections for Landsat-5 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Landsat-7\",\n \ \"title\": \"More collections for Landsat-7 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Landsat-8\",\n \ \"title\": \"More collections for Landsat-8 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Metop-A\",\n \ \"title\": \"More collections for Metop-A platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Metop-B\",\n \ \"title\": \"More collections for Metop-B platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/OrbView-2\",\n \ \"title\": \"More collections for OrbView-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/SARAL\",\n \ \"title\": \"More collections for SARAL platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-1A\",\n \ \"title\": \"More collections for Sentinel-1A platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-3A\",\n \ \"title\": \"More collections for Sentinel-3A platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-3B\",\n \ \"title\": \"More collections for Sentinel-3B platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/TERRA\",\n \ \"title\": \"More collections for TERRA platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/TOPEX%2FPOSEIDON\",\n \ \"title\": \"More collections for TOPEX/POSEIDON platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/08071848-9a68-5a42-887d-235260cadbf3\",\n \ \"title\": \"More collections for OLCI instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/6bfc7afc-547a-57cd-818c-6d90e3e589ab\",\n \ \"title\": \"More collections for OLI instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/003ed1d0-9f6c-59cb-a427-1fa4c4a92107\",\n \ \"title\": \"More collections for MERIS instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/27547a00-7d37-5113-b10f-666ccbfd86d4\",\n \ \"title\": \"More collections for RA instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/f3ef7078-65ef-5dee-8c5c-61f9706a34ad\",\n \ \"title\": \"More collections for ATSR-2 instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/450624e5-a0b1-5f27-ac6b-74a1aea8cb9e\",\n \ \"title\": \"More collections for AVHRR-3 instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/2ebd3948-3f88-5944-8e3c-7e60099ec941\",\n \ \"title\": \"More collections for RA-2 instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/57b7f820-6ba2-5076-b015-39ad3fb32c55\",\n \ \"title\": \"More collections for TM instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/2df2947d-cb3f-54e7-8f8b-352422892db9\",\n \ \"title\": \"More collections for POSEIDON-2 instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/552b5118-99d2-5861-b6ed-7e81cabc983c\",\n \ \"title\": \"More collections for MSS instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/7917f326-4734-5836-8709-c172236d36a9\",\n \ \"title\": \"More collections for SSALT instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/702277a0-8a84-5af3-a8f4-31d712ff17c3\",\n \ \"title\": \"More collections for AATSR instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/482c462e-543c-5b17-9c69-ef7327e950a9\",\n \ \"title\": \"More collections for SeaWiFS instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/ada8f84c-48ef-50a6-b2ba-635a1bdb7d14\",\n \ \"title\": \"More collections for MODIS instrument\"\n }\n \ ],\n \"id\": \"ef1627f523764eae8bbb6b81bf1f7a0a\",\n \"updated\": \"2025-04-07T23:44:43Z\",\n \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"CEDA\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\n \"OLCI\",\n \"OLI\",\n \"MERIS\",\n \ \"RA\",\n \"ATSR-2\",\n \"AVHRR-3\",\n \"RA-2\",\n \ \"TM\",\n \"POSEIDON-2\",\n \"MSS\",\n \"SSALT\",\n \ \"AATSR\",\n \"SeaWiFS\",\n \"MODIS\"\n ],\n \ \"processing:lineage\": [\"This dataset was generate in the framework of the Lakes CCI+ project, funded by ESA. Data were produced by the project team and supplied for archiving at the Centre for Environmental Data Analysis (CEDA).\"],\n \"platform\": [\n \"AQUA\",\n \"Envisat\",\n \ \"ERS-2\",\n \"Jason-1\",\n \"JASON-3\",\n \"Landsat-4\",\n \ \"Landsat-5\",\n \"Landsat-7\",\n \"Landsat-8\",\n \ \"Metop-A\",\n \"Metop-B\",\n \"OrbView-2\",\n \ \"SARAL\",\n \"Sentinel-1A\",\n \"Sentinel-3A\",\n \ \"Sentinel-3B\",\n \"TERRA\",\n \"TOPEX/POSEIDON\"\n \ ]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"1992-09-26T00:00:00Z\",\n \ \"2020-12-31T23:59:59Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"ESA\",\n \"CCI\",\n \"Lakes\",\n \ \"ECV\",\n \"orthoimagery\",\n \"EARTH SCIENCE>BIOSPHERE>ECOSYSTEMS>FRESHWATER ECOSYSTEMS>LAKE/POND>MONTANE LAKE\"\n ],\n \"description\": \"This dataset contains the Lakes Essential Climate Variable, which is comprised of processed satellite observations at the global scale, over the period 1992-2020, for over 2000 inland water bodies. This dataset was produced by the European Space Agency (ESA) Lakes Climate Change Initiative (Lakes_cci) project. For more information about the Lakes_cci please visit the project website. This is version 2.0.2 of the dataset. The five thematic climate variables included in this dataset are:\xE2\\u0080\xA2 Lake Water Level (LWL), derived from satellite altimetry, is fundamental to understand the balance between water inputs and water loss and their connection with regional and global climate change.\xE2\\u0080\xA2 Lake Water Extent (LWE), modelled from the relation between LWL and high-resolution spatial extent observed at set time-points, describes the areal extent of the water body. This allows the observation of drought in arid environments, expansion in high Asia, or impact of large-scale atmospheric oscillations on lakes in tropical regions for example. .\xE2\\u0080\xA2 Lake Surface Water temperature (LSWT), derived from optical and thermal satellite observations, is correlated with regional air temperatures and is informative about vertical mixing regimes, driving biogeochemical cycling and seasonality.\xE2\\u0080\xA2 Lake Ice Cover (LIC), determined from optical observations, describes the freeze-up in autumn and break-up of ice in spring, which are proxies for gradually changing climate patterns and seasonality.\xE2\\u0080\xA2 Lake Water-Leaving Reflectance (LWLR), derived from optical satellite observations, is a direct indicator of biogeochemical processes and habitats in the visible part of the water column (e.g. seasonal phytoplankton biomass fluctuations), and an indicator of the frequency of extreme events (peak terrestrial run-off, changing mixing conditions).Data generated in the Lakes_cci are derived from multiple satellite sensors including: TOPEX/Poseidon, Jason, ENVISAT, SARAL, Sentinel 2-3, Landsat OLI, ERS, MODIS Terra/Aqua and Metop.Detailed information about the generation and validation of this dataset is available from the Lakes_cci documentation available on the project website and in Carrea, L., Cr\xC3\xA9taux, JF., Liu, X. et al. Satellite-derived multivariate world-wide lake physical variable timeseries for climate studies. Sci Data 10, 30 (2023). https://doi.org/10.1038/s41597-022-01889-z\",\n \ \"type\": \"Collection\",\n \"title\": \"ESA Lakes Climate Change Initiative (Lakes_cci): Lake products, Version 2.0.2\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=a07deacaffb8453e93d57ee214676304\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure\": {\n \"roles\": [\"data\"],\n \"href\": \"http://data.ceda.ac.uk/neodc/esacci/lakes/data/lake_products/L3S/v2.0.2/\",\n \ \"type\": \"application/x-binary\",\n \"title\": \"DOWNLOAD - Download Data\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series a07deacaffb8453e93d57ee214676304\"\n },\n {\n \ \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for a07deacaffb8453e93d57ee214676304\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/a07deacaffb8453e93d57ee214676304/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://catalogue.ceda.ac.uk/uuid/a07deacaffb8453e93d57ee214676304\",\n \ \"title\": \"CEDA Data Catalogue Page - Detail and access information for the resource\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://climate.esa.int/projects/lakes/\",\n \"title\": \"ESA CCI Lakes project website - No further details.\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://climate.esa.int\",\n \ \"title\": \"ESA Climate Change Initiative website - No further details.\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://climate.esa.int/documents/1155/CCI-LAKES-0029-PUG-v1.2.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Product User Guide - No further details.\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://climate.esa.int/en/projects/lakes/key-documents-lakes/\",\n \ \"title\": \"Documentation for ESA CCI Lakes project - No further details.\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/a07deacaffb8453e93d57ee214676304?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/CEDA\",\n \ \"title\": \"More collections for CEDA\"\n }\n ],\n \ \"id\": \"a07deacaffb8453e93d57ee214676304\",\n \"updated\": \"2025-04-07T23:44:43Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"CEDA\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\"processing:lineage\": [\"This dataset was generated in the framework of the Lakes CCI+ project, funded by ESA. Data were produced by the project team and supplied for archiving at the Centre for Environmental Data Analysis (CEDA).V2.0.2 of the data provides a minor update to v2.0.1, which fixes an issue with missing data.\"]}\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -1.0589250737672506,\n 47.66030548053927,\n 11.678098693553778,\n \ 53.67487358198095\n ]]},\n \"temporal\": {\"interval\": [[\n \"2014-10-03T00:00:00Z\",\n \"2029-10-03T23:59:00Z\"\n \ ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"DIF10\",\n \"processing\",\n \"RADAR BACKSCATTER\",\n \ \"RADAR\",\n \"EARTH SCIENCE>SPECTRAL/ENGINEERING>RADAR>RADAR BACKSCATTER\",\n \"EARTH SCIENCE>SPECTRAL/ENGINEERING>RADAR\",\n \"Sentinel-1A\",\n \ \"Sentinel-1B\",\n \"Sentinel-1\",\n \"C-SAR\"\n ],\n \ \"created\": \"2018-10-10T00:00:00.00Z\",\n \"description\": \"The Sigma0 product describes how much of the radar signal that was sent out by Sentinel-1 is reflected back to the sensor, and depends on the characteristics of the surface. This product is derived from the L1-GRD product. Typical SAR data processing, which produces level 1 images such as L1-GRD product, does not include radiometric corrections and significant radiometric bias remains. Therefore, it is necessary to apply the radiometric correction to SAR images so that the pixel values of the SAR images truly represent the radar backscatter of the reflecting surface. The radiometric correction is also necessary for the comparison of SAR images acquired with different sensors, or acquired from the same sensor but at different times, in different modes, or processed by different processors. For this Sigma0 product, radiometric calibration was performed using a specific Look Up Table (LUT) that is provided with each original GRD product. This LUT applies a range-dependent gain including the absolute calibration constant, in addition to a constant offset. Next to calibration, also orbit correction, border noise removal, thermal noise removal, and range doppler terrain correction steps were applied during production of Sigma0. The terrain correction step is intended to compensate for distortions due to topographical variations of the scene and the tilt of the satellite sensor, so that the geometric representation of the image will be as close as possible to the real world.\",\n \"sci:citation\": \"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-1-sar/product-types-processing-levels/level-1\",\n \ \"type\": \"Collection\",\n \"title\": \"Sentinel-1 Level-1 Ground Range Detected (GRD) SIGMA0 products.\",\n \"version\": \"V001\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure\": {\n \"roles\": [\"data\"],\n \"href\": \"https://services.terrascope.be/catalogue/description\",\n \"type\": \"application/x-binary\",\n \"title\": \"TERRASCOPE Catalogue - Search and download datasets using the VITO TERRASCOPE OpenSearch CAtalogue for Remote Sensing\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n },\n \ \"quicklook\": {\n \"roles\": [\"overview\"],\n \"href\": \"https://services.terrascope.be/collectioncatalogue/images/quicklooks/SENTINEL1_GRD_QL.JPG\",\n \ \"type\": \"image/jpeg\",\n \"title\": \"graphic overview\"\n \ }\n },\n \"links\": [\n {\n \"rel\": \"self\",\n \ \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1\"\n },\n {\n \ \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/VITO\",\n \ \"title\": \"More collections for VITO\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/Flemish Institute of Technological Research (VITO) - Belgium\",\n \"title\": \"More collections for Flemish Institute of Technological Research (VITO) - Belgium\"\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-1A\",\n \"title\": \"More collections for Sentinel-1A platform\"\n },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-1B\",\n \ \"title\": \"More collections for Sentinel-1B platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-1\",\n \ \"title\": \"More collections for Sentinel-1 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/a2cb7dbe-6433-5737-9d3c-b974e6f643b2\",\n \ \"title\": \"More collections for C-SAR instrument\"\n }\n \ ],\n \"id\": \"urn:eop:VITO:CGS_S1_GRD_SIGMA0_L1\",\n \"updated\": \"2019-08-27T11:14:44Z\",\n \"stac_extensions\": [\n \"https://stac-extensions.github.io/version/v1.2.0/schema.json\",\n \ \"https://stac-extensions.github.io/processing/v1.2.0/schema.json\",\n \ \"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"\n \ ],\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"Flemish Institute of Technological Research (VITO) - Belgium\",\n \"url\": \"https://www.vito-eodata.be/\"\n },\n \ {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \ \"url\": \"https://emc.spacebel.be/readme.html\"\n },\n {\n \ \"roles\": [\"producer\"],\n \"name\": \"VITO\",\n \"uri\": \"https://www.vito-eodata.be/\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"C-SAR\"],\n \"processing:lineage\": [\"The Sigma0 product describes how much of the radar signal that was sent out by Sentinel-1 is reflected back to the sensor, and depends on the characteristics of the surface. This product is derived from the L1-GRD product. Typical SAR data processing, which produces level 1 images such as L1-GRD product, does not include radiometric corrections and significant radiometric bias remains. Therefore, it is necessary to apply the radiometric correction to SAR images so that the pixel values of the SAR images truly represent the radar backscatter of the reflecting surface. The radiometric correction is also necessary for the comparison of SAR images acquired with different sensors, or acquired from the same sensor but at different times, in different modes, or processed by different processors. For this Sigma0 product, radiometric calibration was performed using a specific Look Up Table (LUT) that is provided with each original GRD product. This LUT applies a range-dependent gain including the absolute calibration constant, in addition to a constant offset. Next to calibration, also orbit correction, border noise removal, thermal noise removal, and range doppler terrain correction steps were applied during production of Sigma0. The terrain correction step is intended to compensate for distortions due to topographical variations of the scene and the tilt of the satellite sensor, so that the geometric representation of the image will be as close as possible to the real world.\"],\n \"platform\": [\n \"Sentinel-1A\",\n \ \"Sentinel-1B\",\n \"Sentinel-1\"\n ]\n }\n \ },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n \ -90,\n 180,\n 90\n ]]},\n \"temporal\": {\"interval\": [[\n null,\n null\n ]]}\n },\n \ \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"Land Cover\",\n \"Sentinel-1\",\n \"Sentinel-2\",\n \"Land Cover\",\n \"Space\",\n \"Remote Sensing\",\n \"ESA Worldcover\",\n \ \"Environment\",\n \"WorldCoverMap\",\n \"EARTH SCIENCE>LAND SURFACE>LAND USE/LAND COVER\"\n ],\n \"created\": \"2021-07-01T00:00:00.00Z\",\n \ \"description\": \"The ESA WorldCover product is a global land cover map with 11 land cover classes. WorldCover provides worldwide coverage at 10 meters and is provided per 3 x 3 degree tile. Note that ocean areas and inner ice sheets do not have tiles. Data is provided as Cloud Optimized GeoTIFFs. The ESA WorldCover product has been produced by a consortium lead by VITO (Belgium) together with Brockmann Consult (Germany), CS SI (France), Gamma Remote Sensing AG (Switzerland), International Institute for Applied Systems Analysis (Austria) and Wageningen University (The Netherlands).\\t\\t\\t\\tNaming convention: ESA_WorldCover_10m_[YEAR]_[VERSION]_[TILE]_[LAYER].tif/ \\t\\t\\t\\t* [YEAR] indicates the reference year (observation period) in four digits.\\t\\t\\t\\t* [VERSION] shows the product version. The version denoted as vMmr (e.g. v201), with \xE2\\u0080\\u0098M\xE2\\u0080\\u0099 representing the major version (e.g. v2), \xE2\\u0080\\u0098m\xE2\\u0080\\u0099 the minor version (starting from 0) and \xE2\\u0080\\u0098r\xE2\\u0080\\u0099 the production run number (starting from 1) \\t\\t\\t\\t* [TILE] the designation of the 3 x 3 degree tile, composed of the 2-digit latitude and 3-digit longitude of the lower-left corner. Example: N19W100 for the tile covering the area from 100W to 99W and 19N to 20N.\\t\\t\\t\\tFor example: ESA_WorldCover_10m_2020_v100_N19W100_Map.tif/\",\n \ \"sci:citation\": \"https://esa-worldcover.org/en/data\",\n \"type\": \"Collection\",\n \"title\": \"ESA WorldCover 10 meter Land Cover Map 2020\",\n \"version\": \"V1\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=urn:eop:VITO:ESA_WorldCover_10m_2020_V1\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure\": {\n \"roles\": [\"data\"],\n \"href\": \"https://services.terrascope.be/catalogue/description\",\n \"type\": \"application/x-binary\",\n \"title\": \"VITO EO Catalogue - Search and download datasets using the VITO OpenSearch CAtalogue for Remote Sensing. Provides interoperable access, following ISO/OGC interface guidelines, to Earth Observation metadata.\"\n },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n },\n \ \"quicklook\": {\n \"roles\": [\"overview\"],\n \"href\": \"https://services.terrascope.be/collectioncatalogue/images/quicklooks/ESA_Worldcover_10m_QL.png\",\n \ \"type\": \"image/png\",\n \"title\": \"graphic overview\"\n \ }\n },\n \"links\": [\n {\n \"rel\": \"self\",\n \ \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series urn:eop:VITO:ESA_WorldCover_10m_2020_V1\"\n },\n \ {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for urn:eop:VITO:ESA_WorldCover_10m_2020_V1\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/urn:eop:VITO:ESA_WorldCover_10m_2020_V1/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:eop:VITO:ESA_WorldCover_10m_2020_V1?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/VITO\",\n \ \"title\": \"More collections for VITO\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/Flemish Institute of Technological Research (VITO) - Belgium\",\n \"title\": \"More collections for Flemish Institute of Technological Research (VITO) - Belgium\"\n }\n ],\n \"id\": \"urn:eop:VITO:ESA_WorldCover_10m_2020_V1\",\n \ \"updated\": \"2021-03-01T10:57:31Z\",\n \"stac_extensions\": [\n \ \"https://stac-extensions.github.io/version/v1.2.0/schema.json\",\n \ \"https://stac-extensions.github.io/processing/v1.2.0/schema.json\",\n \ \"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"\n \ ],\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"Flemish Institute of Technological Research (VITO) - Belgium\",\n \"url\": \"https://services.terrascope.be/catalogue/description\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ },\n {\n \"roles\": [\"producer\"],\n \"name\": \"VITO\",\n \"uri\": \"https://services.terrascope.be/catalogue/description\"\n \ }\n ],\n \"summaries\": {\"processing:lineage\": [\"Produced by VITO using Sentinel-1 and Sentinel-2 data obtained from AWS. For more info please contact VITO.\"]}\n }\n ],\n \"numberReturned\": 10,\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections?limit=10&q=sentinel\",\n \ \"type\": \"application/json\",\n \"title\": \"This document\"\n \ },\n {\n \"rel\": \"next\",\n \"href\": \"https://emc.spacebel.be/collections?limit=10&q=sentinel&startRecord=21\",\n \ \"type\": \"application/json\",\n \"title\": \"Next results\"\n \ },\n {\n \"rel\": \"previous\",\n \"href\": \"https://emc.spacebel.be/collections?limit=10&q=sentinel&startRecord=1\",\n \ \"type\": \"application/json\",\n \"title\": \"Previous results\"\n \ },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for collection search\"\n }\n ],\n \"numberMatched\": 216\n}" headers: Access-Control-Allow-Headers: - X-PINGOTHER, Content-Type, Authorization, Accept Access-Control-Allow-Methods: - POST,GET,PUT,HEAD,OPTIONS,DELETE Access-Control-Allow-Origin: - '*' Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Connection: - keep-alive Content-Type: - application/json;charset=UTF-8 Date: - Thu, 17 Jul 2025 12:51:08 GMT Expires: - '0' Pragma: - no-cache Server: - openresty Strict-Transport-Security: - max-age=31536000 ; includeSubDomains Transfer-Encoding: - chunked X-Content-Type-Options: - nosniff X-Frame-Options: - DENY X-Served-By: - emc.spacebel.be X-XSS-Protection: - 1; mode=block status: code: 200 message: '' version: 1 TestCollectionSearch.test_result_paging_max_collections.yaml000066400000000000000000007700011503646565400402330ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_collection_searchinteractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://emc.spacebel.be/collections?limit=10&bbox=-92.379%2C46.662%2C-91.788%2C46.919 response: body: string: "{\n \"collections\": [\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"2002-05-20T00:00:00.000Z\",\n \ \"2012-04-08T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"World\",\n \"800 km\",\n \ \"5 - 1150 km\",\n \"Sun-synchronous\",\n \"Very High Resolution - VHR (0 - 5m)\",\n \"Medium Resolution - MR (20 - 500 m)\",\n \ \"EARTH SCIENCE > BIOSPHERE > VEGETATION\",\n \"EARTH SCIENCE > OCEANS\",\n \"EARTH SCIENCE > OCEANS > OCEAN TEMPERATURE\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \"EARTH SCIENCE > ATMOSPHERE > CLOUDS\",\n \ \"EARTH SCIENCE > ATMOSPHERE > PRECIPITATION\",\n \"Vegetation\",\n \ \"Oceans\",\n \"Ocean Temperature\",\n \"Atmosphere\",\n \ \"Clouds\",\n \"Precipitation\",\n \"Imaging Spectrometers/Radiometers\",\n \ \"Envisat\",\n \"AATSR\"\n ],\n \"created\": \"2019-05-21T00:00:00.00Z\",\n \ \"description\": \"The Averaged Surface Temperature (AST) Product contains averaged geophysical data at two different resolutions, and with respect to two different averaging schemes. Measurement data sets at resolutions of 0.5 by 0.5 degrees and 10 by 10 arcmin with respect to a latitude/longitude grid provide continuity with existing ATSR products. Other data sets contain data averaged over equal area cells of 50 by 50 km and 17 by 17 km aligned with the satellite ground track. Both top-of-atmosphere and surface data sets are provided. The surface temperature data sets provide, for sea cells, nadir and dual view sea surface temperatures, and for land cells, land surface temperature and NDVI. Cloud data is also included. No ADS are included in the AST product; auxiliary data is contained within the MDS. The data sets of the AST product are arranged by surface type and resolution. This product is a continuation of ERS ATSR data. The 3rd reprocessing of AATSR data was performed in 2013; the processing updates that have been put in place and the scientific improvements are outlined in full in the User Summary Note for the Third Envisat AATSR Reprocessing https://earth.esa.int/eogateway/documents/20142/37627/IDEAS-VEG-OQC-REP-2148-%28A%29ATSR-Third+Reprocessing-Dataset-User-Summary-v1-0.pdf\",\n \ \"type\": \"Collection\",\n \"title\": \"Envisat AATSR Averaged Surface Temperature (AST) Product [ATS_AR__2P]\",\n \"license\": \"various\",\n \ \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/ENVISAT-1%20PRODUCTS%20SPECIFICATIONS%20-%20VOLUME%207-%20AATSR%20PRODUCTS%20SPECIFICATIONS\",\n \ \"type\": \"application/pdf\",\n \"title\": \"AATSR Product Specification - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/instruments/aatsr/auxiliary-data\",\n \ \"type\": \"text/html\",\n \"title\": \"AATSR auxiliary data - Auxiliary Data\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/instruments/aatsr/products-information\",\n \ \"type\": \"text/html\",\n \"title\": \"AATSR Product Information - Product Information\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/AATSR-product-handbook.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"AATSR Product Handbook - User Manual\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/AATSR-Level-2-ATS_AR__2P-Product-Quality-Readme-Information.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"ATS_AR__2P Product Quality Readme Information - Product Specifications\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?text=&category=Document%20library&filter=envisat,aatsr\",\n \ \"type\": \"text/html\",\n \"title\": \"More AATSR Documents - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/search?text=&category=Tools%20and%20toolboxes&filter=aatsr\",\n \ \"type\": \"text/html\",\n \"title\": \"(A)ATSR Software Tools - Tools\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.ATS.AR__2P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Envisat\",\n \ \"title\": \"More collections for Envisat platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/702277a0-8a84-5af3-a8f4-31d712ff17c3\",\n \ \"title\": \"More collections for AATSR instrument\"\n }\n \ ],\n \"id\": \"ENVISAT.ATS.AR__2P\",\n \"updated\": \"2022-11-11T00:00:00.00Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"AATSR\"],\n \ \"platform\": [\"Envisat\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2002-05-20T00:00:00.000Z\",\n \ \"2012-04-08T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"World\",\n \"800 km\",\n \ \"5 - 1150 km\",\n \"Sun-synchronous\",\n \"EARTH SCIENCE > OCEANS\",\n \"EARTH SCIENCE > OCEANS > OCEAN TEMPERATURE\",\n \"Oceans\",\n \ \"Ocean Temperature\",\n \"Imaging Spectrometers/Radiometers\",\n \ \"Envisat\",\n \"AATSR\"\n ],\n \"created\": \"2019-05-29T00:00:00.00Z\",\n \ \"description\": \"The L2P product contains full resolution dual-view Sea Surface Temperature (SST) values. These SST use the ARC SST retrieval and cloud screening which differ from the methods used to produce the Gridded Surface Temperature (ATS_NR__2P) products. In addition to SST, the L2P products contain the ATSR Saharan Dust Index (ASDI) and the clear-sky probability estimated by the ARC cloud detection algorithm. The L2P processor also generates L3U products; these are the L2P products averaged onto a regular grid at 0.1 degree resolution (they are therefore similar to the AR / Meteo Envisat-format products). \ The L2P and L3U products are provided in NetCDF-4 format following GHRSST Data Specifications (GDS) v2. The L2P/L3U archive was reprocessed in 2013 with a new processor based upon the ARC SST; the changes are outlined in full in the L2P Reprocessing User Notehttps://earth.esa.int/eogateway/documents/20142/37627/User%20Note%20for%20%28A%29ATSR%20L2P%20Reprocessing\",\n \ \"type\": \"Collection\",\n \"title\": \"Envisat AATSR ARC L2P/L3U \ [UPA-L2P_GHRSST/UPA-L3U_GHRSST]\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/instruments/aatsr/auxiliary-data\",\n \ \"type\": \"text/html\",\n \"title\": \"AATSR auxiliary data - Auxiliary Data\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/ENVISAT-1%20PRODUCTS%20SPECIFICATIONS%20-%20VOLUME%207-%20AATSR%20PRODUCTS%20SPECIFICATIONS\",\n \ \"type\": \"application/pdf\",\n \"title\": \"AATSR Products Specifications - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/AATSR-product-handbook.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"AATSR Product Handbook - User Manual\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/instruments/aatsr/products-information\",\n \ \"type\": \"text/html\",\n \"title\": \"AATSR Product Information - Product Information\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/L2P-Product-Description.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"(A)ATSR SST L2P/L3U Product User Guide - Product Specifications\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://www.ghrsst.org/about-ghrsst/governance-documents/\",\n \ \"type\": \"text/html\",\n \"title\": \"GHRSST data specifications - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/search?text=&category=Document%20library&filter=envisat,aatsr\",\n \ \"type\": \"text/html\",\n \"title\": \"More AATSR Documents - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/search?text=&category=Tools%20and%20toolboxes&filter=aatsr\",\n \ \"type\": \"text/html\",\n \"title\": \"(A)ATSR Software Tools - Tools\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.UPA-L2P-L3U?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Envisat\",\n \ \"title\": \"More collections for Envisat platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/702277a0-8a84-5af3-a8f4-31d712ff17c3\",\n \ \"title\": \"More collections for AATSR instrument\"\n }\n \ ],\n \"id\": \"ENVISAT.UPA-L2P-L3U\",\n \"updated\": \"2022-11-11T00:00:00.00Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"AATSR\"],\n \ \"platform\": [\"Envisat\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2021-10-09T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"FedEO\",\n \"SCIHUB\",\n \"DIF10\",\n \ \"Sea Surface Topography\",\n \"EARTH SCIENCE > OCEANS > SEA SURFACE TOPOGRAPHY\",\n \"Radar Altimeters\",\n \"Radiometers\",\n \ \"Sentinel-6\",\n \"POSEIDON-4\",\n \"AMR-C\"\n ],\n \ \"created\": \"2024-01-02T00:00:00.00Z\",\n \"description\": \"Copernicus Sentinel-6 Michael Freilich is an Earth Observation satellite mission developed to provide enhanced continuity to the very stable time series of mean sea level measurements and ocean sea state that started in 1992, with the TOPEX/Poseidon mission, then continued by the Jason-1, Jason-2 and Jason-3 satellite missions.\",\n \ \"type\": \"Collection\",\n \"title\": \"Sentinel-6 Products\",\n \ \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=EOP:ESA:SCIHUB:S6\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series EOP:ESA:Sentinel-6\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S6/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for EOP:ESA:SCIHUB:S6\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://dataspace.copernicus.eu\",\n \"title\": \"Copernicus Data Space Ecosystem - Copernicus Data Space Ecosystem\"\n },\n {\n \ \"rel\": \"search\",\n \"href\": \"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S6\",\n \ \"title\": \"FedEO Clearinghouse - FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S6/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinel.esa.int/web/sentinel/missions/sentinel-6\",\n \ \"title\": \"ESA Sentinel-6 Online\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-6?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-6\",\n \ \"title\": \"More collections for Sentinel-6 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/700b6e99-a527-5819-b283-4656c8832ea0\",\n \ \"title\": \"More collections for AMR-C instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/5d1512a5-cb97-5e74-8778-35cd65c06936\",\n \ \"title\": \"More collections for POSEIDON-4 instrument\"\n }\n \ ],\n \"id\": \"EOP:ESA:Sentinel-6\",\n \"updated\": \"2020-11-21T00:00:00.00Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\n \"AMR-C\",\n \"POSEIDON-4\"\n \ ],\n \"platform\": [\"Sentinel-6\"]\n }\n },\n {\n \ \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n \ -90,\n 180,\n 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2017-10-13T00:00:00.000Z\",\n null\n \ ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"FedEO\",\n \"SCIHUB\",\n \"DIF10\",\n \"Air Quality\",\n \"EARTH SCIENCE > ATMOSPHERE > AIR QUALITY\",\n \"Sentinel-5P\",\n \ \"TROPOMI\"\n ],\n \"created\": \"2018-10-09T00:00:00.00Z\",\n \ \"description\": \"The Sentinel-5P data offer for the Pre-Operations Open Access Hub consists of Level-1B and Level-2 user products for the TROPOMI instrument.\",\n \"type\": \"Collection\",\n \"title\": \"Sentinel-5P Products\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=EOP:ESA:SCIHUB:S5P\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series EOP:ESA:Sentinel-5P\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:SCIHUB:S5P/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for EOP:ESA:SCIHUB:S5P\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://dataspace.copernicus.eu\",\n \"title\": \"Copernicus Data Space Ecosystem - Copernicus Data Space Ecosystem\"\n },\n {\n \ \"rel\": \"search\",\n \"href\": \"https://fedeo.ceos.org/opensearch/description.xml?parentIdentifier=EOP:ESA:SCIHUB:S5P\",\n \ \"title\": \"FedEO Clearinghouse - FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/EOP:ESA:SCIHUB:S5P/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinel.esa.int/web/sentinel/missions/sentinel-5P\",\n \ \"title\": \"ESA Sentinel-5P Online\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://sentinels.copernicus.eu/web/sentinel/user-guides/sentinel-5p-tropomi\",\n \ \"title\": \"Sentinel-5P TROPOMI User Guide \"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/EOP:ESA:Sentinel-5P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Sentinel-5P\",\n \ \"title\": \"More collections for Sentinel-5P platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/09f91afd-c0d2-52a9-9b50-b895a60917fa\",\n \ \"title\": \"More collections for TROPOMI instrument\"\n }\n \ ],\n \"id\": \"EOP:ESA:Sentinel-5P\",\n \"updated\": \"2017-04-30T00:00:00.00Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/processing/v1.2.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\"\n },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n }\n ],\n \"summaries\": {\n \"instruments\": [\"TROPOMI\"],\n \"processing:lineage\": [\"The Sentinel-5 Precursor objectives are to provide operational space-borne observations in support to the operational monitoring of Air Quality, Climate, Ozone and Surface UV. It will provide measurements of Ozone, NO_2, SO_2, Formaldehyde, Aerosol, Carbonmonoxide, Methane, Clouds.\"],\n \"platform\": [\"Sentinel-5P\"]\n \ }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n ]]},\n \ \"temporal\": {\"interval\": [[\n \"2016-06-22T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"World\",\n \"Planet\",\n \"Land Surface\",\n \"Mapping and Cartography\",\n \"Natural Hazards and Disaster Risk\",\n \"EARTH SCIENCE > LAND SURFACE\",\n \"EARTH SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\",\n \"VIS (0.40 - 0.75 \xB5m)\",\n \"NIR (0.75 - 1.30 \xB5m)\",\n \"Sun-synchronous\",\n \ \"Very High Resolution - VHR (0 - 5m)\",\n \"475 km (reference)\",\n \ \"25 km\",\n \"Imaging Spectrometers/Radiometers\",\n \"PlanetScope\",\n \ \"PlanetScope Camera\"\n ],\n \"created\": \"2019-08-09T00:00:00.00Z\",\n \ \"description\": \"The PlanetScope Level 1B Basic Scene and Level 3B Ortho Scene full archive products are available as part of Planet imagery offer. The Unrectified Asset: PlanetScope Basic Analytic Radiance (TOAR) product is a Scaled Top of Atmosphere Radiance (at sensor) and sensor corrected product, without correction for any geometric distortions inherent in the imaging processes and is not mapped to a cartographic projection. The imagery data is accompanied by Rational Polynomial Coefficients (RPCs) to enable orthorectification by the user. This kind of product is designed for users with advanced image processing and geometric correction capabilities. Basic Scene Product Components and Format Product Components:\\t - Image File (GeoTIFF format) - Metadata File (XML format) - Rational Polynomial Coefficients (XML format) - Thumbnail File (GeoTIFF format) - Unusable Data Mask UDM File (GeoTIFF format) - Usable Data Mask UDM2 File (GeoTIFF format) Bands: 4-band multispectral image (blue, green, red, near-infrared) or 8-band (coastal-blue, blue, green I, green, yellow, red, Rededge, near-infrared) Ground Sampling Distance:\\t - Approximate, satellite altitude dependent - Dove-C: 3.0 m-4.1 m - Dove-R: 3.0 m-4.1 m - SuperDove: 3.7 m-4.2 m Accuracy: <10 m RMSE The Rectified assets: The PlanetScope Ortho Scene product is radiometrically-, sensor- and geometrically- corrected and is projected to a UTM/WGS84 cartographic map projection. The geometric correction uses fine Digital Elevation Models (DEMs) with a post spacing of between 30 and 90 metres. Ortho Scene Product Components and Format Product Components:\\t - Image File (GeoTIFF format) - Metadata File (XML format) - Thumbnail File (GeoTIFF format) - Unusable Data Mask UDM File (GeoTIFF format) - Usable Data Mask UDM2 File (GeoTIFF format) Bands: 3-band natural color (red, green, blue) or 4-band multispectral image (blue, green, red, near-infrared) or 8-band (costal-blue, blue, green I, green, yellow, red, RedEdge, near-infrared) Ground Sampling Distance:\\t - Approximate, satellite altitude dependent - Dove-C: 3.0 m-4.1 m - Dove-R: 3.0 m-4.1 m - SuperDove: 3.7 m-4.2 m Projection: UTM WGS84 Accuracy: <10 m RMSE PlanetScope Ortho Scene product is available in the following: PlanetScope Visual Ortho Scene product is orthorectified and color-corrected (using a colour curve) 3-band RGB Imagery. This correction attempts to optimise colours as seen by the human eye providing images as they would look if viewed from the perspective of the satellite PlanetScope Surface Reflectance product is orthorectified, 4-band BGRN or 8-band Coastal Blue, Blue, Green I, Green, Yellow, Red, RedEdge, NIR Imagery with geometric, radiometric and corrected for surface reflection. This data is optimal for value-added image processing such as land cover classifications. \ PlanetScope Analytic Ortho Scene Surface Reflectance product is orthorectified, 4-band BGRN or 8-band Coastal Blue, Blue, Green I, Green, Yellow, Red, RedEdge, NIR Imagery with geometric, radiometric and calibrated to top of atmosphere radiance. _$$Planet Explorer Catalogue$$ https://www.planet.com/explorer/ can be accessed (Planet registration requested) to discover and check the data readiness. It is worth to mention that the data distribution is based on Data Voucher, corresponding to maximum amount of square kilometers can be ordered and downloaded by the project in a maximum period of 15 moths (this duration cannot be extended) starting from the project proposal acceptance date. Each Date Voucher includes PlanetScope tile view streaming access for a total of 20,000 tiles per calendar month during the project period. All details about the data provision, data access conditions and quota assignment procedure are described in the _$$Terms of Applicability$$ https://earth.esa.int/eogateway/documents/20142/37627/Access-to-ESAs-Planet-Missions-Terms-of-Applicability.pdf available in Resources section.\",\n \"type\": \"Collection\",\n \"title\": \"PlanetScope Full Archive\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://www.planet.com/products/#satellite-imagery\",\n \ \"type\": \"text/html\",\n \"title\": \"Planet products - Catalogue\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Planet-combined-imagery-product-specs-2020.pdf?text=Combined-Imagery-Product-Spec.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Imagery Product Specifications - Product Specifications\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://developers.planet.com/docs/apps/explorer/\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Explorer User Guide - User Manual\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://www.planet.com/explorer/\",\n \"type\": \"text/html\",\n \"title\": \"Planet Explorer Catalogue - Catalogue\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Access-to-ESAs-Planet-Missions-Terms-of-Applicability.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Terms of Applicability - Access Guide\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/PlanetScope.Full.Archive?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/PlanetScope\",\n \ \"title\": \"More collections for PlanetScope platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/94314806-9c68-521a-87e2-8cd838eb9de0\",\n \ \"title\": \"More collections for PlanetScope Camera instrument\"\n \ }\n ],\n \"id\": \"PlanetScope.Full.Archive\",\n \"updated\": \"2023-06-13T13:23:41Z\",\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"PlanetScope Camera\"],\n \"platform\": [\"PlanetScope\"]\n }\n },\n {\n \ \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n \ -82,\n 180,\n 82\n ]]},\n \"temporal\": {\"interval\": [[\n \"1991-08-01T00:00:00.000Z\",\n \"2003-06-22T23:59:59.999Z\"\n \ ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"World\",\n \"Agriculture\",\n \"Forestry\",\n \"Oceans\",\n \ \"Ocean Temperature\",\n \"Natural Hazards and Disaster Risk\",\n \ \"Atmosphere\",\n \"Clouds\",\n \"Precipitation\",\n \ \"EARTH SCIENCE > AGRICULTURE\",\n \"EARTH SCIENCE > BIOSPHERE > ECOSYSTEMS > TERRESTRIAL ECOSYSTEMS > FORESTS\",\n \"EARTH SCIENCE > OCEANS\",\n \"EARTH SCIENCE > OCEANS > OCEAN TEMPERATURE\",\n \"EARTH SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \"EARTH SCIENCE > ATMOSPHERE > CLOUDS\",\n \"EARTH SCIENCE > ATMOSPHERE > PRECIPITATION\",\n \"Sun-synchronous\",\n \"782 to 785 km\",\n \"5 km\",\n \"Imaging Spectrometers/Radiometers\",\n \ \"ERS-1\",\n \"ERS-2\",\n \"ATSR-1\",\n \"ATSR-2\"\n \ ],\n \"created\": \"2019-05-29T00:00:00.00Z\",\n \"description\": \"The Gridded Surface Temperature (GST) Product is the Level 2 full resolution geophysical product. The product contains gridded sea-surface temperature images using both nadir and dual view retrieval algorithms. The product includes pixel latitude/longitude positions, X/Y offset and the results of the cloud-clearing/land-flagging. \ It contains a single measurement data set the content of which is switchable, that is to say, the content of each pixel field will depend on the surface type. Specifically, the contents of the data fields will depend on the setting of the forward and nadir cloud flags and the land flag. The 3rd reprocessing of ATSR data was performed in 2013; the processing updates that have been put in place and the scientific improvements are outlined in full in the User Summary Note for the Third ERS ATSR Reprocessing (https://earth.esa.int/eogateway/documents/20142/37627/IDEAS-VEG-OQC-REP-2148-%28A%29ATSR-Third+Reprocessing-Dataset-User-Summary-v1-0.pdf).\",\n \ \"type\": \"Collection\",\n \"title\": \"ERS-1/2 ATSR Gridded Surface Temperature [AT1/AT2_NR__2P]\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-style%20products%20for%20ATSR-1%20and%20ATSR-2%20data\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Envisat-style products for ATSR-1 and ATSR-2 data - Products Specification\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/ENVISAT-1%20PRODUCTS%20SPECIFICATIONS%20-%20VOLUME%207-%20AATSR%20PRODUCTS%20SPECIFICATIONS\",\n \ \"type\": \"application/pdf\",\n \"title\": \"AATSR Product Specifications - Products Specification\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/instruments/atsr/products-information\",\n \ \"type\": \"text/html\",\n \"title\": \"ATSR Product Information - Product Information\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/search?text=&category=Document%20library&filter=atsr-1,atsr-2\",\n \ \"type\": \"text/html\",\n \"title\": \"More ATSR Documents - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/search?skipDetection=true&text=&category=Tools%20and%20toolboxes&filter=atsr-1,atsr-2\",\n \ \"type\": \"text/html\",\n \"title\": \"(A)ATSR Software Tools - Tools\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.AT_NR__2P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/ERS-1\",\n \ \"title\": \"More collections for ERS-1 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/ERS-2\",\n \ \"title\": \"More collections for ERS-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/93343b90-3e9f-5830-abe7-151cc69401c1\",\n \ \"title\": \"More collections for ATSR-1 instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/f3ef7078-65ef-5dee-8c5c-61f9706a34ad\",\n \ \"title\": \"More collections for ATSR-2 instrument\"\n }\n \ ],\n \"id\": \"ERS.AT_NR__2P\",\n \"updated\": \"2023-06-13T13:23:39Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\n \ \"ATSR-1\",\n \"ATSR-2\"\n ],\n \"platform\": [\n \"ERS-1\",\n \"ERS-2\"\n ]\n }\n },\n \ {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n \ -90,\n 180,\n 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"1995-07-01T00:00:00.000Z\",\n \"2015-12-31T23:59:59.999Z\"\n \ ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"sci:doi\": \"10.57780/esa-1268efe\",\n \"keywords\": [\n \"World\",\n \"Atmosphere\",\n \ \"Atmospheric Chemistry\",\n \"Atmospheric Radiation\",\n \"Atmospheric Temperature\",\n \"Climate\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \ \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC CHEMISTRY\",\n \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC RADIATION\",\n \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC TEMPERATURE\",\n \"EARTH SCIENCE > CLIMATE INDICATORS\",\n \"Sun-synchronous\",\n \"GDP 5.0\",\n \"782 to 785 km\",\n \"5 km\",\n \"Spectrometers\",\n \"ERS-2\",\n \ \"GOME\"\n ],\n \"created\": \"2019-05-29T00:00:00.00Z\",\n \ \"description\": \"The GOME Total Column Water Vapour (TCWV) Climate product was generated by the Max Planck Institute for Chemistry (MPIC), and the German Aerospace Center (DLR) within the ESA GOME-Evolution project. It is a Level 3 type product containing homogenized time-series of the global distribution of TCWV spanning over more than two decades (1995-2015). The data is provided as single netCDF file, containing monthly mean TCWV (units kg/m2) with 1-degree resolution, and is based on measurements from the satellite instruments ERS-2 GOME, Envisat SCIAMACHY, and MetOp-A GOME-2. Details are available in the paper by Beirle et al, 2018,. Please also consult the GOME TCWV Product Quality Readme file before using the data. (https://earth.esa.int/eogateway/documents/20142/37627/GOME-TCWV-Product-sQuality-Readme-File.pdf)\",\n \ \"type\": \"Collection\",\n \"title\": \"GOME Total Column Water Vapour Climate product\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/10.57780/esa-1268efe\",\n \"type\": \"text/html\",\n \"title\": \"Landing page\"\n },\n {\n \ \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/GOME-Data-Processor-DLFE-638-PSD-4B.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"GOME TCWV Climate product Technical Documents - Product Specifications\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/GOME-Level1-to-2-Algorithms-Description-DLFE-841-GDP-L12.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"GOME Level 1 to 2 Algorithms Description - Technical Note\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Algorithm-Theoretical-Basis-Document-for_GOME-Total-Column-Densities-of-Ozone-And-Nitrogen-Dioxid.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Algorithm Theoretical Basis Document for GOME Total Column Densities of Ozone and Nitrogen Dioxide - Technical Note\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/GOME-Disclaimer-2004-DLFE-640.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Disclaimer for GOME Level-1 and Level-2 Data Products - Technical Note\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/GOME-Software-Databases-For-Level1-to-2-Processing-DLFE-843-GDP-DB.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"GOME Software Databases for Level 1 to 2 Processing - Technical Note\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Data-Validation-Report-for-ERS-2-GOME-Data-Processor-upgrade-to-version4.0-DLFE-641.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Delta Validation Report for ERS-2 GOME Data Processor upgrade toversion 4.0 - Technical Note\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/GOME-Data-Processor-DLFE-656-DLR-GOME-SUM-gdp01-ex-4.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"GOME Data Processor Extraction Software - User Manual\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?category=Document+library&filter=gome\",\n \ \"type\": \"text/html\",\n \"title\": \"More GOME Documents - Other\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/instruments/gome/products-information\",\n \ \"type\": \"text/html\",\n \"title\": \"Documentation related to GOME data quality - Other\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOME_Evl_ClimateProd_TCWV?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/ERS-2\",\n \ \"title\": \"More collections for ERS-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/a58b108b-492f-54a5-b807-cb97306b6aad\",\n \ \"title\": \"More collections for GOME instrument\"\n }\n \ ],\n \"id\": \"GOME_Evl_ClimateProd_TCWV\",\n \"updated\": \"2023-06-13T13:23:39Z\",\n \"stac_extensions\": [\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"GOME\"],\n \ \"platform\": [\"ERS-2\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2001-11-01T00:00:00.000Z\",\n \ \"2015-03-31T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"World\",\n \"Multispectral\",\n \ \"Panchromatic\",\n \"Pan-sharpened\",\n \"EUSI\",\n \ \"Maxar\",\n \"GeoEye\",\n \"WorldView\",\n \"Cartosat\",\n \ \"Vegetation\",\n \"EARTH SCIENCE > BIOSPHERE > VEGETATION\",\n \ \"VIS (0.40 - 0.75 \xB5m)\",\n \"NIR (0.75 - 1.30 \xB5m)\",\n \ \"Sun-synchronous\",\n \"Very High Resolution - VHR (0 - 5m)\",\n \ \"High Resolution - HR (5 - 20 m)\",\n \"450 km\",\n \"16.5 km\",\n \"Cameras\",\n \"QuickBird-2\",\n \"BGI\"\n ],\n \ \"created\": \"2019-05-22T00:00:00.00Z\",\n \"description\": \"QuickBird high resolution optical products are available as part of the Maxar Standard Satellite Imagery products from the QuickBird, WorldView-1/-2/-3/-4, and GeoEye-1 satellites. All details about the data provision, data access conditions and quota assignment procedure are described into the Terms of Applicability available in Resources section. In particular, QuickBird offers archive panchromatic products up to 0.60m GSD resolution and 4-Bands Multispectral products up to 2.4m GSD resolution \\u2022 Panchromatic and 4-bands - Levels: STANDARD (2A) / VIEW READY STANDARD (OR2A), VIEW READY STEREO, MAP-READY (ORTHO) 1:12.000 Orthorectified, MAP-READY (ORTHO) 1:50.000 Orthorectified - Resolutions: 0.30 m, 0.40 m, 0.50 m. 0.60 m \\u2022 8-Bands - Levels: STANDARD (2A) / VIEW READY STANDARD (OR2A), VIEW READY STEREO, MAP-READY (ORTHO) 1:12.000 Orthorectified - Resolutions: 0.30 m, 0.40 m, 0.50 m. 0.60 m 4-Bands being an optional from: \\u2022\\u2022 4-Band Multispectral (BLUE, GREEN, RED, NIR1) \\u2022 4-Band Pan-sharpened (BLUE, GREEN, RED, NIR1) \\u2022 4-Band Bundle (PAN, BLUE, GREEN, RED, NIR1) \\u2022 3-Bands Natural Colour (pan-sharpened BLUE, GREEN, RED) \\u2022 3-Band Colored Infrared (pan-sharpened GREEN, RED, NIR1) \\u2022 Natural Colour / Coloured Infrared (3-Band pan-sharpened) The list of available archived data can be retrieved using the Image Library (https://www.euspaceimaging.com/image-library/) catalogue.\",\n \"type\": \"Collection\",\n \"title\": \"QuickBird full archive\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Map-Ready-imagery-data-sheet.pdf/83b9a034-5548-1fc7-4744-8d0fdb922f52\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Map Ready data imagery sheet - Product Sepcification\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/DigitalGlobe-GeoStereo.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"GeoStereo product details - Product Sepcification\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/DigitalGlobe-Stereo-Imagery.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Stereo product details - Product Sepcification\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/view-ready-imagery-data-sheet.pdf/e1476ac6-51cc-6052-c138-844dcc0200b8\",\n \ \"type\": \"application/pdf\",\n \"title\": \"View Ready imagery data sheet - Product Sepcification\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/WorldView-GeoEye-QuickBird-Terms-Of-Applicability.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Indian Data Terms of Applicability - Access guide\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request&sys_id=f27b38f9dbdffe40e3cedb11ce961958\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/QuickBird.full.archive?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/QuickBird-2\",\n \ \"title\": \"More collections for QuickBird-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/aee4648e-d5cc-5e77-8354-87f45367f1a9\",\n \ \"title\": \"More collections for BGI instrument\"\n }\n \ ],\n \"id\": \"QuickBird.full.archive\",\n \"updated\": \"2023-06-13T13:23:41Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"BGI\"],\n \ \"platform\": [\"QuickBird-2\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2005-01-01T00:00:00.000Z\",\n \ \"2005-12-31T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"sci:doi\": \"10.5270/esa-6riial9\",\n \"keywords\": [\n \"World\",\n \"Surface Radiative Properties\",\n \"EARTH SCIENCE > LAND SURFACE > SURFACE RADIATIVE PROPERTIES\",\n \"UV (0.01 - 0.4 \xB5m)\",\n \"VIS (0.40 - 0.75 \xB5m)\",\n \"NIR (0.75 - 1.30 \xB5m)\",\n \"SWIR (1.3 - 3.0 \xB5m)\",\n \"MWIR (3.0 - 6.0 \xB5m)\",\n \"4.0\",\n \"Very Low Resolution - VLR (> 1200 m)\",\n \"Imaging Spectrometers/Radiometers\",\n \"Scatterometers\",\n \ \"TERRA\",\n \"AQUA\",\n \"QuikSCAT\",\n \"OrbView-2\",\n \ \"MODIS\",\n \"SeaWinds\",\n \"SeaWiFS\"\n ],\n \ \"created\": \"2019-11-21T00:00:00.00Z\",\n \"description\": \"ADAM enables generating typical monthly variations of the global Earth surface reflectance at 0.1\xB0 spatial resolution (Plate Carree projection) and over the spectral range 240-4000nm. The ADAM product is made of gridded monthly mean climatologies over land and ocean surfaces, and of a companion API toolkit that enables the calculation of hyperspectral (at 1 nm resolution over the whole 240-4000 nm spectral range) and multidirectional reflectances (i.e. in any illumination/viewing geometry) depending on user choices. The ADAM climatologies that feed the ADAM calculation tools are: For ocean: monthly chlorophyll concentration derived from SeaWiFS-OrbView-2 (1999-2009); it is used to compute the water column reflectance (which shows large spectral variations in the visible, but is insignificant in the near and mid infrared). monthly wind speed derived from SeaWinds-QuikSCAT-(1999-2009); it is used to calculate the ocean glint reflectance. For land: monthly normalized surface reflectances in the 7 MODIS narrow spectral bands derived from FondsdeSol processing chain of MOD09A1 products (derived from Aqua and Terra observations), on which relies the modelling of the hyperspectral/multidirectional surface (soil/vegetation/snow) reflectance. uncertainty variance-covariance matrix for the 7 spectral bands associated to the normalized surface reflectance. For sea-ice: Sea ice pixels (masked in the original MOD09A1 products) have been accounted for by a gap-filling approach relying on the spatial-temporal distribution of sea ice coverage provided by the CryoClim climatology for year 2005.\",\n \"type\": \"Collection\",\n \ \"title\": \"ADAM Surface Reflectance Database v4.0\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \ \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/10.5270/esa-6riial9\",\n \"type\": \"text/html\",\n \"title\": \"Landing page\"\n },\n {\n \ \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://adam.noveltis.fr/\",\n \"type\": \"text/html\",\n \"title\": \"ADAM Database - Software Tool\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://adam.noveltis.fr/pdfs/NOV-FE-0724-NT-007-v4.2.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"ADAM Algorithm Theoretical Basis Document - Technical Note\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://adam.noveltis.fr/pdfs/NOV-FE-0724-NT-008-v4.0.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"ADAM, description of the web interface. Structure of the ADAM input surface database and output products - Technical Note\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://adam.noveltis.fr/pdfs/NOV-FE-0724-NT-006_v2.1.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"ADAM Final Report, Contract Change request 6 - Technical Note\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ADAM.Surface.Reflectance.Database?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/TERRA\",\n \ \"title\": \"More collections for TERRA platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/AQUA\",\n \ \"title\": \"More collections for AQUA platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/QuikSCAT\",\n \ \"title\": \"More collections for QuikSCAT platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/OrbView-2\",\n \ \"title\": \"More collections for OrbView-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/482c462e-543c-5b17-9c69-ef7327e950a9\",\n \ \"title\": \"More collections for SeaWiFS instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/ada8f84c-48ef-50a6-b2ba-635a1bdb7d14\",\n \ \"title\": \"More collections for MODIS instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/3a0e9379-9541-569c-8492-3636d0ef2a27\",\n \ \"title\": \"More collections for SeaWinds instrument\"\n }\n \ ],\n \"id\": \"ADAM.Surface.Reflectance.Database\",\n \"updated\": \"2023-06-13T13:23:39Z\",\n \"stac_extensions\": [\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\n \ \"SeaWiFS\",\n \"MODIS\",\n \"SeaWinds\"\n ],\n \ \"platform\": [\n \"TERRA\",\n \"AQUA\",\n \"QuikSCAT\",\n \ \"OrbView-2\"\n ]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -82,\n 180,\n \ 82\n ]]},\n \"temporal\": {\"interval\": [[\n \"1991-08-01T00:00:00.000Z\",\n \ \"2011-07-04T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"sci:doi\": \"10.57780/ers-af99f2b\",\n \"keywords\": [\n \"World\",\n \"Natural Hazards and Disaster Risk\",\n \"Atmosphere\",\n \ \"Atmospheric Winds\",\n \"EARTH SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\",\n \"Sun-synchronous\",\n \ \"ASPS 10.04\",\n \"Very Low Resolution - VLR (> 1200 m)\",\n \ \"782 to 785 km\",\n \"5 km\",\n \"Scatterometers\",\n \ \"ERS-1\",\n \"ERS-2\",\n \"AMI/Scatterometer\"\n ],\n \ \"created\": \"2019-05-29T00:00:00.00Z\",\n \"description\": \"The ERS data reprocessed with the ASPS facility is also available in the UWI format to maintain the compatibility with the FD (Fast Delivery) products. The ASPS UWI product is organised in frames of 500 x 500 km providing the radar backscattering sigma nought for the three beams of the instrument plus the wind speed and direction. The wind retrieval is performed with the CMOD5N geophysical model function derived by ECMWF to compute the neutral winds rather than 10m winds. \ ASPS UWI products are provided with a spatial resolution of 50x50km and a grid spacing of 25 km. One product covers one orbit from ascending node crossing. Please consult the Product Quality Readme file (https://earth.esa.int/eogateway/documents/20142/37627/ERS-WS-Product-Quality-Readmefile-ENVI-GSOP-EOGD-QD-15-0130-issue1.2.pdf) before using the ERS ASPS data.\",\n \"type\": \"Collection\",\n \"title\": \"ERS-1/2 SCATTEROMETER Nominal Resolution back-scattering measurements, Ocean Wind field [UWI]\",\n \"license\": \"various\",\n \"assets\": {\n \ \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.UWI\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/10.57780/ers-af99f2b\",\n \"type\": \"text/html\",\n \"title\": \"Landing page\"\n },\n {\n \ \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.UWI\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/instruments/ws/products-information\",\n \ \"type\": \"text/html\",\n \"title\": \"Documentation related to SCATTEROMETER data - Product Specifications\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/web/sppa/mission-performance/esa-missions/ers-2/scatterometer/quality-control-reports\",\n \ \"type\": \"text/html\",\n \"title\": \"SCATTEROMETER Quality Information - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?skipDetection=true&text=&category=Document%20library&filter=ami-scatterometer\",\n \ \"type\": \"text/html\",\n \"title\": \"All SCATTEROMETER documents - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ERS.UWI?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/ERS-1\",\n \ \"title\": \"More collections for ERS-1 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/ERS-2\",\n \ \"title\": \"More collections for ERS-2 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/2659e931-c15f-5b28-82e4-36c69ee2f848\",\n \ \"title\": \"More collections for AMI/Scatterometer instrument\"\n \ }\n ],\n \"id\": \"ERS.UWI\",\n \"updated\": \"2023-06-23T09:01:27Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"AMI/Scatterometer\"],\n \ \"platform\": [\n \"ERS-1\",\n \"ERS-2\"\n ]\n \ }\n }\n ],\n \"numberReturned\": 10,\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections?limit=10&bbox=-92.379%2C46.662%2C-91.788%2C46.919\",\n \ \"type\": \"application/json\",\n \"title\": \"This document\"\n \ },\n {\n \"rel\": \"next\",\n \"href\": \"https://emc.spacebel.be/collections?limit=10&bbox=-92.379%2C46.662%2C-91.788%2C46.919&startRecord=11\",\n \ \"type\": \"application/json\",\n \"title\": \"Next results\"\n \ },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for collection search\"\n }\n ],\n \"numberMatched\": 2357\n}" headers: Access-Control-Allow-Headers: - X-PINGOTHER, Content-Type, Authorization, Accept Access-Control-Allow-Methods: - POST,GET,PUT,HEAD,OPTIONS,DELETE Access-Control-Allow-Origin: - '*' Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Connection: - keep-alive Content-Type: - application/json;charset=UTF-8 Date: - Thu, 17 Jul 2025 12:51:15 GMT Expires: - '0' Pragma: - no-cache Server: - openresty Strict-Transport-Security: - max-age=31536000 ; includeSubDomains Transfer-Encoding: - chunked X-Content-Type-Options: - nosniff X-Frame-Options: - DENY X-Served-By: - emc.spacebel.be X-XSS-Protection: - 1; mode=block status: code: 200 message: '' - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://emc.spacebel.be/collections?limit=10&bbox=-92.379%2C46.662%2C-91.788%2C46.919&startRecord=11 response: body: string: "{\n \"collections\": [\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -120,\n 19,\n 95,\n 87\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"1987-09-08T00:00:00.000Z\",\n \ \"1993-08-20T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"sci:doi\": \"10.5270/ESA-a36265c\",\n \"keywords\": [\n \"Cryosphere\",\n \"Oceans\",\n \"Sea Ice\",\n \"Sea Surface Topography\",\n \"EARTH SCIENCE > CRYOSPHERE\",\n \"EARTH SCIENCE > OCEANS\",\n \"EARTH SCIENCE > CRYOSPHERE > SEA ICE\",\n \"EARTH SCIENCE > OCEANS > SEA ICE\",\n \"EARTH SCIENCE > OCEANS > SEA SURFACE TOPOGRAPHY\",\n \"VIS (0.40 - 0.75 \xC2\xB5m)\",\n \"NIR (0.75 - 1.30 \xC2\xB5m)\",\n \"Sun-synchronous\",\n \"Medium Resolution - MR (20 - 500 m)\",\n \"MES_GEC_1P\",\n \"909 km\",\n \"100 km\",\n \"Imaging Spectrometers/Radiometers\",\n \"MOS-1\",\n \ \"MOS-1B\",\n \"MESSR\"\n ],\n \"created\": \"2002-11-15T00:00:00.00Z\",\n \ \"description\": \"The ESA Orthorectified Map-oriented (Level 1) Products collection is composed of MOS-1/1B MESSR (Multi-spectral Electronic Self-Scanning Radiometer) data products generated as part of the MOS Bulk Processing Campaign using the MOS Processor v3.02.\\r\\rThe products are available in GeoTIFF format and disseminated within EO-SIP packaging. Please refer to the _$$MOS Product Format Specification$$ https://earth.esa.int/eogateway/documents/d/earth-online/mos-product-format-specification for further details. \\rThe collection consists of data products of the following type: \\r\\rMES_GEC_1P: Geocoded Ellipsoid GCP Corrected Level 1 MOS-1/1B MESSR products which are the default products generated by the MOS MESSR processor in all cases (where possible), with usage of the latest set of LANDSAT improved GCP (Ground Control Points). These are orthorectified map-oriented products, corresponding to the old MOS-1/1B MES_ORT_1P products with geolocation improvements. \\r \\r\\rMESSR Instrument Characteristics\\rBand\\tWavelength Range (nm)\\tSpatial Resolution (m)\\tSwath Width (km)\\r1 (VIS)\\t510 \\u2013 690\\t50\\t100\\r2 (VIS)\\t610 \\u2013 690\\t50\\t100\\r3 (NIR)\\t720 \\u2013 800\\t50\\t100\\r4 (NIR)\\t800 \\u2013 1100\\t50\\t100\",\n \"type\": \"Collection\",\n \ \"title\": \"MOS-1/1B ESA Orthorectified Map-oriented Products [MES_GEC_1P]\",\n \ \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/10.5270/ESA-a36265c\",\n \"type\": \"text/html\",\n \"title\": \"Landing page\"\n },\n {\n \ \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ESA_Orthorectified_Map_oriented_Level1_products?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/MOS-1\",\n \ \"title\": \"More collections for MOS-1 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/MOS-1B\",\n \ \"title\": \"More collections for MOS-1B platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/512f0f9f-5eff-5a9b-bc5f-2616eb03d875\",\n \ \"title\": \"More collections for MESSR instrument\"\n }\n \ ],\n \"id\": \"ESA_Orthorectified_Map_oriented_Level1_products\",\n \ \"updated\": \"2024-01-11T15:24:06Z\",\n \"stac_extensions\": [\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"https://earth.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"MESSR\"],\n \ \"platform\": [\n \"MOS-1\",\n \"MOS-1B\"\n ]\n \ }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n ]]},\n \ \"temporal\": {\"interval\": [[\n \"2020-07-09T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"Level 2C assisted wind fields assimilation processing\",\n \"Atmosphere\",\n \"Atmospheric Indicators\",\n \ \"Atmospheric Winds\",\n \"Climate\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\",\n \ \"EARTH SCIENCE > CLIMATE INDICATORS\",\n \"UV (0.01 - 0.4 \xB5m)\",\n \"Sun-synchronous\",\n \"Horizontal resolution at observation scale for Rayleigh/Mie: 87/10 km 250-2000 m vertical resolution\",\n \ \"ALD_U_N_2C\",\n \"320 km\",\n \"Lidar/Laser Sounders\",\n \ \"Aeolus\",\n \"ALADIN\"\n ],\n \"created\": \"2023-02-17T00:00:00.00Z\",\n \ \"description\": \"The Level 2C wind product of the Aeolus mission provides ECMWF analysis horizontal wind vectors at the geolocations of assimilated L2B HLOS wind components. The L2C can therefore be described as an Aeolus-assisted horizontal wind vector product. The L2C is a distinct product, however the L2C and L2B share a common Earth Explorer file template, with the L2C being a superset of the L2B. The L2C consists of extra datasets appended to the L2B product with information which are relevant to the data assimilation of the L2B winds.\",\n \"type\": \"Collection\",\n \"title\": \"Aeolus Level 2C assisted wind fields resulting from NWP Numerical Weather Prediction assimilation processing\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-Level2-Algorithm-Theoretical-Basis-Document.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Aeolus L2B Algorithm Theoretical Baseline Document - Level 2B processor algorithm description\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-L2B-2C-Input-Output-DD-ICD.pdf/2321b6a0-27d0-b628-771e-fcca4928bc32\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Aeolus L2B/2C Processor Input/Output Data Definitions Interface Control Document - Level 2B/2C data definition\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-Sensor-and-Product-Description.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Aeolus Sensor and Product Description - Aeolus Sensor and Product Description\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L2C_Wind_products?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Aeolus\",\n \ \"title\": \"More collections for Aeolus platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/a032cde6-16e3-5940-988e-f6d79870d14c\",\n \ \"title\": \"More collections for ALADIN instrument\"\n }\n \ ],\n \"id\": \"L2C_Wind_products\",\n \"updated\": \"2023-06-13T13:23:39Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"ALADIN\"],\n \ \"platform\": [\"Aeolus\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2009-09-01T00:00:00.000Z\",\n \ \"2012-07-31T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"sci:doi\": \"10.5270/esa-jfhe2um\",\n \"keywords\": [\n \"World\",\n \"Solid Earth\",\n \"Geodetics\",\n \ \"EARTH SCIENCE > SOLID EARTH\",\n \"EARTH SCIENCE > SOLID EARTH > GEODETICS\",\n \"Sun-synchronous\",\n \"250 km\",\n \ \"Accelerometers\",\n \"GPS\",\n \"Radar Altimeters\",\n \ \"GOCE\",\n \"EGG\",\n \"SSTI\",\n \"STR\"\n \ ],\n \"created\": \"2019-12-13T00:00:00.00Z\",\n \"description\": \"This collection contains GOCE level 2 data: Gravity Gradients in the gradiometer reference frame (EGG_NOM_2), in the terrestrial reference frame (EGG_TRF_2), GPS receiver derived precise science orbits (SST_PSO_2) and the non-tidal time variable gravity field potential with respect to a mean value in terms of a spherical harmonic series determined from atmospheric and oceanic mass variations as well as from a GRACE monthly gravity field time series (SST_AUX_2). EGG_NOM_2_: latest baseline: _0203 EGG_TRF_2_: latest baseline _0101 SST_AUX_2_: latest baseline _0001 SST_PSO_2_: latest baseline _0201\",\n \"type\": \"Collection\",\n \"title\": \"GOCE Level 2\",\n \"license\": \"various\",\n \ \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \ \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=GOCE_Level_2\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/GOCE_Level_2\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/GOCE_Level_2?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/10.5270/esa-jfhe2um\",\n \"type\": \"text/html\",\n \"title\": \"Landing page\"\n },\n {\n \ \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/GOCE_Level_2\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/GOCE_Level_2/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series GOCE_Level_2\"\n },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \"href\": \"https://emc.spacebel.be/collections/GOCE_Level_2/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for GOCE_Level_2\"\n \ },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/GOCE_Level_2/api\",\n \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/GOCE-Level-2-Product-Data-Handbook.pdf/ea815111-61ac-7cda-ec3a-31f026493ebd\",\n \ \"type\": \"application/pdf\",\n \"title\": \"GOCE Level 2 Products User Handbook - User Manual\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/GOCE_Level_2?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/GOCE\",\n \ \"title\": \"More collections for GOCE platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/d199ff14-9d4f-50eb-909e-98d020e9cf9b\",\n \ \"title\": \"More collections for STR instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/bc5654d6-8472-5509-8aa8-550a078dadd6\",\n \ \"title\": \"More collections for EGG instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/03a1a96e-daa1-52e4-ab3f-508cbe9b5cf9\",\n \ \"title\": \"More collections for SSTI instrument\"\n }\n \ ],\n \"id\": \"GOCE_Level_2\",\n \"updated\": \"2023-06-13T13:23:40Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\n \ \"STR\",\n \"EGG\",\n \"SSTI\"\n ],\n \"platform\": [\"GOCE\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -84,\n 180,\n 84\n \ ]]},\n \"temporal\": {\"interval\": [[\n \"2013-11-13T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"World\",\n \"Planet\",\n \"Land Surface\",\n \"Mapping and Cartography\",\n \"Natural Hazards and Disaster Risk\",\n \"EARTH SCIENCE > LAND SURFACE\",\n \"EARTH SCIENCE > HUMAN DIMENSIONS > NATURAL HAZARDS\",\n \"VIS (0.40 - 0.75 \xB5m)\",\n \"NIR (0.75 - 1.30 \xB5m)\",\n \"Sun-synchronous\",\n \ \"Very High Resolution - VHR (0 - 5m)\",\n \"475-575 km\",\n \ \"8 km at nadir for SkySat-1 to -2, 6.6 km at nadir for SkySat-3 to -13\",\n \"Imaging Spectrometers/Radiometers\",\n \"SkySat\",\n \ \"SkySat Camera\"\n ],\n \"created\": \"2019-08-09T00:00:00.00Z\",\n \ \"description\": \"The SkySat Level 2B Basic Scene, Level 3B Ortho Scene and Level 3B Consolidated full archive and new tasking products are available as part of Planet imagery offer. The SkySat Basic Scene product is uncalibrated and in a raw digital number format, not corrected for any geometric distortions inherent in the imaging process. Rational Polynomial Coefficients (RPCs) is provided to enable orthorectification by the user. Basic Scene Product Components and Format Processing levels\\t/\\t- Analytic (unorthorectified, radiometrically corrected, multispectral BGRN); - Analytic DN (unorthorectified, multispectral BGRN); - Panchromatic DN (unorthorectified, panchromatic)\\t// Product Components and Format\\t/\\t- Image File (GeoTIFF format); - Metadata File (JSON format); - Rational Polynomial Coefficients (Text File); - UDM File (GeoTIFF format)\\t// Image configuration\\t/\\t- 4-band Analytic DN Image (Blue, Green, Red, NIR); - 1-band Panchromatic DN Image (Pan)\\t// Ground Sampling Distance\\t/\\t3.7 m at nadir (average at reference altitude 475 km)\\t// Ground Sampling Distance (nadir)\\t/\\t- Panchromatic 0.86m and Multispectral 1.0m for SkySat-1&2; - Panchromatic 0.65m and Multispectral 0.8m for SkySat-3 to 13 (0.72 m and 1.0m for data acquired before 30/06/2020)\\t// Accuracy\\t/\\t<50 m RMSE\\t// \ The SkySat Ortho Scene is sensor- and geometrically-corrected (by using DEMs with a post spacing of between 30 and 90 meters) and is projected to a cartographic map projection; the accuracy of the product will vary from region to region based on available GCPs. Different products are available: \ - The SkySat Visual Ortho Scene product is orthorectified, pansharpened, and color-corrected (using a color curve) 3-band RGB Imagery - The SkySat Pansharpened Multispectral Scene product is orthorectified, pansharpened 4-band BGRN Imagery - The SkySat Analytic DN Ortho Scene product is orthorectified, multispectral BGRN, uncalibrated, digital number imagery product. The product has been processed to remove distortions caused by terrain; It eliminates the perspective effect on the ground (not on buildings), restoring the geometry of a vertical shot. Transformation to at-sensor radiance is not included - The SkySat Panchromatic DN Ortho Scene product is orthorectified, panchromatic, uncalibrated, digital number imagery product. It has a finer GSD than the Analytic Product. Transformation to at-sensor radiance is not included. - The SkySat Analytic Ortho Scene are calibrated multispectral imagery products with radiometric corrections applied to correct for any sensor artifacts and transformation to top-of-atmosphere radiance. - The SkySat Consolidated Product are Ortho Collect product created by composing ~60 SkySat Ortho Scenes (Visual, Pansharpened Multispectral, Analytic DN, Panchromatic DN) along an imaging strip into segments. Ortho Scene Product Components and Format \\t/\\tVisual Ortho\\t/\\tPansharpened Multispectral\\t/\\tAnalytic DN Ortho\\t/\\tPanchromatic DN Ortho\\t/\\tAnalytic Ortho\\t// Product Components and Format\\t/\\tImage File (GeoTIFF format); Metadata File (JSON format); Rational Polynomial Coefficients (Text File); UDM File (GeoTIFF format)\\t/\\tImage File (GeoTIFF); Metadata File (JSON format); Rational Polynomial Coefficients (Text File); UDM File (GeoTIFF format)\\t/\\tImage File (GeoTIFF format); Metadata File (JSON format); Rational Polynomial Coefficients (Text File); UDM File (GeoTIFF format);\\t/\\tImage File (GeoTIFF format); Metadata File (JSON format); Rational Polynomial Coefficients (Text File); UDM File (GeoTIFF format)\\t/\\tImage File (GeoTIFF format); Metadata File (JSON format); Rational Polynomial Coefficients (Text File); UDM File (GeoTIFF format)\\t// Image configuration\\t/\\t3-band Pansharpened Image (PS Red, PS Green, PS Blue)\\t/\\t4-band Pansharpened Image (PS Blue, PS Green, PS Red, PS NIR)\\t/\\t4-band Analytic DN Image (B, G, R, N)\\t/\\t1-band Panchromatic Image\\t/\\t4-band Analytic Image (B, G, R, N)\\t// Ground Sampling Distance\\t/\\t50 cm\\t/\\t50 cm\\t/\\t50 cm\\t/\\t50 cm\\t/\\t50 cm\\t// Projection\\t/\\tUTM WGS84\\t/\\tUTM WGS84\\t/\\tUTM WGS84\\t/\\tUTM WGS84\\t/\\tUTM WGS84\\t// Accuracy\\t/\\t<10 m RMSE\\t/\\t<10 m RMSE\\t/\\t<10 m RMSE\\t/\\t<10 m RMSE\\t/\\tradiometric accuracy: +/- 5% Relative accuracy at < 10 degrees off-nadir angle\\t// The products are available as part of the Planet provision from RapidEye, Skysat and PlanetScope constellations. SkySat collection has worldwide coverage: The Planet Explorer Catalogue can be accessed (Planet registration requested) to discover and check the data readiness. All details about the data provision, data access conditions and quota assignment procedure are described into the Terms of Applicability (https://earth.esa.int/eogateway/documents/20142/37627/Access-to-ESAs-Planet-Missions-Terms-of-Applicability.pdf).\",\n \ \"type\": \"Collection\",\n \"title\": \"SkySat Full Archive and New Tasking\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://www.planet.com/products/#satellite-imagery\",\n \"type\": \"text/html\",\n \"title\": \"Planet products - Web site\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Planet-combined-imagery-product-specs-2020.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Imagery Product Specifications - Product Specifications\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://developers.planet.com/docs/apps/explorer/\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Explorer User Guide - User Manual\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/SkySat-tasking-request-form.pdf/075f845e-13bd-36e2-4743-3aeb2053c61c\",\n \ \"type\": \"application/pdf\",\n \"title\": \"SkySat Tasking Request Form - Access guide\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Access-to-ESAs-Planet-Missions-Terms-of-Applicability.pdf/91fdeed4-2efe-1bed-8058-1dddb6e14fa6\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Planet Terms of Applicability - Access guide\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SkySat.Full.Archive.and.New.Tasking?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/SkySat\",\n \ \"title\": \"More collections for SkySat platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/429a0634-46aa-518a-ac92-b5bcec0315d4\",\n \ \"title\": \"More collections for SkySat Camera instrument\"\n }\n \ ],\n \"id\": \"SkySat.Full.Archive.and.New.Tasking\",\n \"updated\": \"2023-06-13T13:23:42Z\",\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \"name\": \"ESA/ESRIN\",\n \"url\": \"https://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"SkySat Camera\"],\n \"platform\": [\"SkySat\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2002-05-14T00:00:00.000Z\",\n \ \"2012-04-08T23:59:59.999Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"sci:doi\": \"10.5270/EN1-85m0a7b\",\n \"keywords\": [\n \"World\",\n \"Land Surface\",\n \"Topography\",\n \ \"Cryosphere\",\n \"Snow and Ice\",\n \"Oceans\",\n \ \"Ocean Waves\",\n \"Sea Surface Topography\",\n \"Atmosphere\",\n \ \"Atmospheric Winds\",\n \"EARTH SCIENCE > LAND SURFACE\",\n \ \"EARTH SCIENCE > LAND SURFACE > TOPOGRAPHY\",\n \"EARTH SCIENCE > CRYOSPHERE\",\n \"EARTH SCIENCE > CRYOSPHERE > SNOW/ICE\",\n \"EARTH SCIENCE > TERRESTRIAL HYDROSPHERE > SNOW/ICE\",\n \"EARTH SCIENCE > OCEANS\",\n \"EARTH SCIENCE > OCEANS > OCEAN WAVES\",\n \"EARTH SCIENCE > OCEANS > SEA SURFACE TOPOGRAPHY\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \ \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\",\n \"Sun-synchronous\",\n \ \"800 km\",\n \"5 - 1150 km\",\n \"Radar Altimeters\",\n \ \"Envisat\",\n \"RA-2\"\n ],\n \"created\": \"2019-05-29T00:00:00.00Z\",\n \ \"description\": \"This is a RA-2 Sensor and Geophysical Data Record (SGDR) Full Mission Reprocessing (FMR) v3 product. This FMR follows the first Envisat Altimetry reprocessing Version (V2.1) completed in 2012. The GDR and S-GDR data products were reprocessed for all cycles from 6 to 113 (May 2002 to April 2012) into a homogeneous standard in NetCDF format (close to Sentinel-3). The Sensor Data Record (SGDR) Product from RA-2/MWR includes the data in the GDR product (https://earth.esa.int/eogateway/catalog/envisat-ra-2-geophysical-data-record-gdr-ra2_gdr__2p-) (RA-2 geophysical data, MWR data) and also RA-2 averaged waveforms (18Hz) and RA-2 individual waveforms (1800Hz). This product is a continuation of ERS RA data. This data product has a coverage of 1 pass, pole-pole, a spatial sampling of about 390 m along track and a size of 31 to 40 MB, depending on presence of individual waveforms. The radiometric accuracy is 0.2 dB and auxiliary data include: Orbit state vectors (DORIS, FOS), RA2 and MWR characterisation data, Platform attitude, Gain calibration, USO frequency, ECMWF data, time relation, leap second, Ionospheric corrections, geoid, mean sea surface, slope data, and tide model (ocean, earth, loading, pole). Please consult the Envisat RA-2/MWR Product Quality Readme file before using the data.\",\n \"type\": \"Collection\",\n \"title\": \"Envisat RA-2 Sensor and Geophysical Data Record - SGDR\_[RA2_MWS__2P]\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"cite-as\",\n \ \"href\": \"https://doi.org/10.5270/EN1-85m0a7b\",\n \"type\": \"text/html\",\n \"title\": \"Landing page\"\n },\n {\n \ \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/web/sppa/mission-performance/esa-missions/envisat/ra2/products-and-algorithms/products-information/aux\",\n \ \"type\": \"text/html\",\n \"title\": \"RA2-MWR Auxiliary Data - Auxiliary Data\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/instruments/ra2/products-information\",\n \ \"type\": \"text/html\",\n \"title\": \"Envisat RA-2 MWR Sensor Performance, Products and Algorithms - Product Information\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-Level-2-Product-Handbook.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"RA-2 Product Handbook - User Manual\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-product-specifications.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"RA-2 Product Specifications - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Envisat-RA-2-MWR-Level-2-Product-Readme-3.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"ReadMe file - Product Specifications\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Error-Budget-Envisat-Altimetry-Mission.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Envisat Altimetry Error Budget - Technical Note\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/search?text=&category=Tools%20and%20toolboxes&filter=ra2-mwr\",\n \ \"type\": \"text/html\",\n \"title\": \"RA-2 Software Tools - Tools\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \ \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/ENVISAT.RA2.MWS_2P?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Envisat\",\n \ \"title\": \"More collections for Envisat platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/2ebd3948-3f88-5944-8e3c-7e60099ec941\",\n \ \"title\": \"More collections for RA-2 instrument\"\n }\n \ ],\n \"id\": \"ENVISAT.RA2.MWS_2P\",\n \"updated\": \"2023-06-13T13:23:41Z\",\n \ \"stac_extensions\": [\"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"],\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"RA-2\"],\n \ \"platform\": [\"Envisat\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2009-08-01T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"World\",\n \"GEOSAT\",\n \"DIMAP\",\n \ \"TIFF\",\n \"Vegetation\",\n \"Agriculture\",\n \"Forestry\",\n \ \"EARTH SCIENCE > BIOSPHERE > VEGETATION\",\n \"EARTH SCIENCE > AGRICULTURE\",\n \"EARTH SCIENCE > BIOSPHERE > ECOSYSTEMS > TERRESTRIAL ECOSYSTEMS > FORESTS\",\n \"VIS (0.40 - 0.75 \xC2\xB5m)\",\n \"NIR (0.75 - 1.30 \xC2\xB5m)\",\n \"Sun-synchronous\",\n \"Medium Resolution - MR (20 - 500 m)\",\n \"663 km\",\n \"625 km\",\n \ \"Cameras\",\n \"GEOSAT-1\",\n \"SLIM6\"\n ],\n \ \"created\": \"2019-05-22T00:00:00.00Z\",\n \"description\": \"GEOSAT-1 full archive and new tasking products are available at 22 m resolution in two processing levels.\\r\\rL1R (Basic Geopositioned): All 3 spectral channels combined into a band-registered image. Geopositioned product based on sensor model. Coefficients derived from satellite orientation parameters coming from telemetry and appended to metadata\\rL1T (L1R orthorectified): Orthorectified to sub-pixel accuracy (10 metres RMS error approximately) with respect to Landsat ETM+ reference data and hole-filled seamless SRTM DEM data V3, 2006 (90 m)\\rGEOSAT-1 products are provided in DIMAP format. The image products are delivered in the TIFF and GeoTIFF image formats by default. All products can be provided in False Colours (R,G,NIR) or Natural Colours (R, G, Synthetic Blue).\\r\\rAll details about the data provision, data access conditions and quota assignment procedure are described into the Terms of Applicability available in Resources section.\\r\\rThe list of available archived data can be retrieved using the GEOSAT catalogue (https://catalogue.geosat.space/cscda/extcat/)\\rAll details about the data provision, data access conditions and quota assignment procedure are described into the Terms of Applicability available in Resources section. \\r\\rThe list of available archived data can be retrieved using the Deimos catalogue (http://www.deimos-imaging.com/catalogue).\",\n \"type\": \"Collection\",\n \"title\": \"GEOSAT-1 full archive and tasking\",\n \ \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Geosat-1.Full.archive.and.tasking?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/GEOSAT-1\",\n \ \"title\": \"More collections for GEOSAT-1 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/5cc6eaab-0ddc-572f-a1b7-afa52ea5333d\",\n \ \"title\": \"More collections for SLIM6 instrument\"\n }\n \ ],\n \"id\": \"Geosat-1.Full.archive.and.tasking\",\n \"updated\": \"2023-06-13T13:23:40Z\",\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \"name\": \"ESA/ESRIN\",\n \"url\": \"https://earth.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"SLIM6\"],\n \ \"platform\": [\"GEOSAT-1\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2016-06-01T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"World\",\n \"GNSS\",\n \"AIS\",\n \ \"ADS-B\",\n \"Atmosphere\",\n \"Ionosphere and Magnetosphere Dynamics\",\n \"Weather Events\",\n \"Oceans\",\n \"EARTH SCIENCE > ATMOSPHERE\",\n \"EARTH SCIENCE > SUN-EARTH INTERACTIONS > IONOSPHERE/MAGNETOSPHERE DYNAMICS\",\n \"EARTH SCIENCE > ATMOSPHERE > WEATHER EVENTS\",\n \"EARTH SCIENCE > OCEANS\",\n \"Sun-synchronous\",\n \ \"500 km\",\n \"Imaging Spectrometers/Radiometers\",\n \"Spire\",\n \ \"AIRSAFE\",\n \"SENSE\",\n \"STRATOS\"\n ],\n \ \"created\": \"2020-09-04T00:00:00.00Z\",\n \"description\": \"The data collected by Spire from it's 110 satellites launched into Low Earth Orbit (LEO) has a diverse range of applications, from analysis of global trade patterns and commodity flows to aircraft routing to weather forecasting. The data also provides interesting research opportunities on topics as varied as ocean currents and GNSS-based planetary boundary layer height. The following products can be requested: ADS-B Data Stream Global ADS-B satellite data observed by Spire satellites and processed through the ground stations network. Historical ADS-B data older than 6 months can be delivered as data cuts containing CSV file(s) accessible through a Web Service or Cloud storage solutions. Live ADS-B data is available through a streaming API, and recent historical data can be accessed through a REST API. Data is distributed as a monthly subscription: historical data can be requested starting from 3 December 2008, the time period for live data starts from a user-defined date and continues for 30 days. AIS AIS messages include satellite AIS (S-AIS) as observed by Spire satellites and terrestrial AIS (T-AIS) from third party sensor stations (up to 40 million messages per day). Historical AIS data are delivered as a cvs file with availability back to June 2016 or via Historical API from December 2018; live AIS data are pushed to end users via TCP or through Messages API. Data is distributed as a monthly subscription, from a user-defined date and continues for a 30 day period. GNSS-Radio Occultation GNSS Radio Occultation (GNSS-RO) measurements are collected globally on a continuous basis, generating profiles of the Earth\\u2019s atmosphere. Derived Level 1 and Level 2 products include both atmospheric and ionospheric products. Historical data for most of the GNSS-RO products are available from December 2018 to the present. Near real-time (within 90 minutes or less latency from collection to delivery) GNSS-RO profiles are also available upon request. GNSS Reflectometry GNSS Reflectometry (GNSS-R) is a technique to measure Earth\\u2019s surface properties using reflections of GNSS signals in the form of a bistatic radar. Spire collects two types of GNSS-R data: conventional, near-nadir incidence LHCP reflections collected by the Spire GNSS-R satellites (e.g., Spire GNSS-R \\u201cBatch-1\\u201d satellites) and grazing angle (i.e., low elevation angle) RHCP reflections collected by the Spire GNSS-RO satellites. Derived Level 1 and Level 2 products are available, as well as some special Level 0 raw intermediate frequency (IF) data. Historical grazing angle GNSS-R data are available from May 2019 to the present, while conventional GNSS-R data are available from December 2020 to the present. \ Name: Automatic Identification System (AIS) Description: The automatic identification system (AIS) is an automatic tracking system that uses transponders on ships and is used by vessel traffic services. Spire data includes satellite AIS (S-AIS) as observed by Spire satellites and terrestrial AIS (T-AIS) from third party sensor stations. Data format and content: .parquet.gz files The AIS files contain time-series data on received AIS messages, both the raw NMEA message and added post-processing data for each message. Application: Supply chain analysis, commodity trading, identification of illegal fishing or dark targets, ship route and fuel use optimization, analysis of global trade patterns, anti-piracy, autonomous vessel software, ocean currents. Name: Automatic Dependent Surveillance-Broadcast (ADS-B) Description: Spire AirSafe ADS-B products give access to satellite and terrestrial ADS-B data from captured aircrafts. Data format and content: .csv.gz files The decompressed csv file contains a list of hexadecimal representations of ADS-B messages associated with the timestamp they were received on the satellite. Application: Fleet management, ICAO regulatory compliance, route optimization, predictive maintenance, global airspace, domain awareness. Name: Global Navigation Satellite System Radio Occultation (GNSS-RO) Description: GNSS atmospheric radio occultation (GNSS-RO) relies on the detection of a change in a radio signal as it passes through a planet's atmosphere, i.e. as it is refracted by the atmosphere. This data set contains precise orbit determination (POD) solutions, satellite attitude information, high-rate occultation observations, excess phase, and derived atmospheric dry temperature profiles. Data format and content: podObs*.rnx This file contains raw pseudorange, carrier phase, Doppler frequency, and signal-to-noise measurements for each observed GPS signal from a single Spire satellite which allow to estimate the positions and velocities of each Spire satellite and also used to derive ionospheric total electron content data. leoOrb*.sp3 This file contains the estimated position, velocity and receiver clock error of a given Spire satellite after processing of the POD observation file leoAtt*.log It contains 1 Hz rate quaternion information measured from a single Spire satellite describing the satellite orientation. opnGns*ro.bin, opnGns*rst.bin these files contain raw measurements from the occulting GNSS satellite (one for each signal frequency) and raw phase data from one or more reference GNSS satellites. atmPhs* The file contains occultation excess phase delay. Also contains SNR values, ransmitter and receiver positions and open loop model information. atmPrf*.nc The file contains profiles of atmospheric dry pressure, dry temperature and neutral refractivity as a function of altitude produced from full processing of one occultation event. bfrPrf*.bufr The file contains derived profiles of dry pressure, dry temperature, refractivity and bending angle for each occultation. Application:\\tAtmospheric profiles of pressure, dry temperature, bending angle, and refractivity used in numerical weather prediction data assimilation and climate change studies. Name: Raw IF samples from GNSS-RO satellites Description: Raw intermediate frequency (IF) sampled data (I/Q) from the GNSS receiver front-end of GNSS-RO satellites. Data format and content: rocRIF*.zip Binary raw IF data and associated ancillary data (e.g., POD data) in a zip archive per collection event. Application: GNSS-RO studies, GNSS RFI and jamming monitoring, research. Name: Raw IF samples from GNSS-R satellites Description: Raw intermediate frequency (IF) sampled data (I/Q) from the GNSS receiver front-end of conventional GNSS-R satellites. Data format and content: gbrRIF*.zip Binary raw IF data and associated ancillary data (e.g., POD data) in a zip archive per collection event. Application: GNSS-R studies, GNSS RFI and jamming monitoring, research, etc. Name: Grazing angle GNSS-R observations Description: During grazing angle GNSS-R events, signal reflection at two frequencies is observed through the limb-facing antenna and is trackedusing an open-loop tracking technique thatrelies on a model topredict the propagationdelay and Doppler of thereflected signal. Simultaneous open-looptracking of the signaldirectly along theline-of-sight from thetransmitter to thereceiver is alsoperformed to provideadditional data that maybenecessary for signalcalibration. The mainoutput of the open-looptracking are in-phase (I)and quadrature (Q)accumulation samples(nominally at 50 Hz),which represent the residual Doppler (phase) from the model. Data format and content: grzObs*.nc L1A filecontains rawopen loopcarrier phasemeasurementsat 50 Hzsampling forgrazingangleGNSS-Rreflectionscaptured in the GNSS-RO RHC Pantennas, (bothdirect andreflectedsignals) on GNSS-RO satellites. Application: Sea surface and sea ice height extent, and classification. \ Name: Georeferenced grazing angle GNSS-R observations Description: The low-levelobservations of the high-rate grazing angle GNSS-R observationsbut withthegeoreferenced bistatic radar parameters of the satellite receiver,specular reflection, and GNSS transmitter included. Data format and content: grzRfl*.nc L1B file contains the georeferenced grazing angle GNSS-R data collected by Spire GNSS-RO satellites, including the low-level observables and bistatic radar geometries (e.g., receiver, specular reflection, and the transmitter locations). Application: Sea surface and sea ice height extent, and classification Name: GNSS-R calibrated bistatic radar reflectivities Description: Higher level product used to derive land-surface reflectivity. Data format and content: gbrRfl*.nc L1A along-track calibrated relative power between reflected and direct signals (e.g., bistatic radar reflectivities) measured by Spire conventional GNSS-R satellites. Application: GNSS-R studies, soil moisture, ocean wind, and sea ice applications Name: GNSS-R calibrated bistatic radar cross-sections Description: Higher level product used to derive ocean surface roughness products. Data format and content: gbrRCS*.nc L1B along-track calibrated and normalized bistatic radar cross-sections measured by Spire conventional GNSS-R satellites. Application: GNSS-R studies, ocean wind and sea ice applications Name: Combined Surface Soil Moisture Description: Combined CYGNSS and SMAP soil moisture data are provided as a combined surface soil moisture (COMB-SSM) product in two data level formats: L2U1 and L3U1. 6 x 6 km grid cell. L-band measurements of surface soil moisture benefit from better vegetation penetration in comparison to traditional C-band measurements. Data format and content: COMB-SSM.nc This file contains the combined data product containing measurements from both CYGNSS and SMAP reported on a 6 km global Equi7Grid grid. Application: Agriculture, crop insurance, farming solutions, climatology, terrain awareness, peatlands and wetlands monitoring etc. Name: Ionosphere total electron content Description: Spire routinely collects and processes a large volume of total electron content (TEC) data, representing the line-of-sight integration of electron density between a Spire satellite and a GNSS satellite. Each file contains line-of-sight ionospheric total electron content (TEC) estimates derived for a \\u2018single viewing arc\\u2019 contained in the POD observation file. Viewing arcs are at least 10 minutes in duration. Data format and content: podTec*.nc This file contains the line-of-sight total electron content with associated orbital information. Application: Space weather research, tsunamigenic earthquakes, weather applications, space situational awareness (SSA), autonomous vehicles etc Name: Ionosphere scintillation Description: The scintillation index for each GNSS frequency is computed onboard the spacecraft. This index provides a measure of the fluctuations of the GNSS signal over the course of 10 seconds caused by propagation of the radio signals through electron density irregularities in the ionosphere. After the raw indices are downlinked to the ground, they are packaged along with associated metadata such as orbit position to create the final scintillation data product. Data format and content: scnLv1*.nc This file contains on-board computed scintillation data (S4 only) with associated orbital information Application: Space weather research, solar events, TIDs, weather applications positioning and navigation, communications etc. Name: Electron density profile Description: Electron density profiles are retrieved as a function of altitude. Electron density profiles are processed from podTec netcdf files, which span a sufficient elevation angle range. A standard Abel inversion algorithm is applied to retrieve the profiles. Data format and content: ionPrf*.nc This file contains electron density profile retrieved from podTec files spanning appropriate elevation angle range Application: Space weather research, solar events, TIDs, weather applications positioning and navigation, communications. The products are available as part of the Spire provision with worldwide coverage. All details about the data provision, data access conditions and quota assignment procedure are described in the Terms of Applicability (https://earth.esa.int/eogateway/documents/20142/37627/SPIRE-Terms-Of-Applicability.pdf/0dd8b3e8-05fe-3312-6471-a417c6503639).\",\n \ \"type\": \"Collection\",\n \"title\": \"Spire live and historical data\",\n \"license\": \"various\",\n \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Spire-Product-Guide.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Spire Product Guide - Product Description\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/SPIRE-Terms-Of-Applicability.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Spire Terms of Applicability - Access Guide\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/Spire.live.and.historical.data?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Spire\",\n \ \"title\": \"More collections for Spire platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/1c3bd49f-bdc9-5c33-a273-2f0f7a5b3f88\",\n \ \"title\": \"More collections for STRATOS instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/e5735a20-bdb8-5cff-b385-c16c84c855f4\",\n \ \"title\": \"More collections for SENSE instrument\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/11f58510-1770-53a7-9b13-5a5564b4e9c2\",\n \ \"title\": \"More collections for AIRSAFE instrument\"\n }\n \ ],\n \"id\": \"Spire.live.and.historical.data\",\n \"updated\": \"2023-06-13T13:23:42Z\",\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\n \ \"STRATOS\",\n \"SENSE\",\n \"AIRSAFE\"\n ],\n \ \"platform\": [\"Spire\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n \ 90\n ]]},\n \"temporal\": {\"interval\": [[\n \"2012-10-01T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"World\",\n \"Multispectral\",\n \"Panchromatic\",\n \ \"Pansharpened\",\n \"Pleiades\",\n \"Agriculture\",\n \ \"Afforestation/Reforestation\",\n \"Crops and Yields\",\n \ \"Forest Fires\",\n \"Landscape\",\n \"Topography\",\n \ \"Weather Events\",\n \"EARTH SCIENCE > AGRICULTURE\",\n \"EARTH SCIENCE > AGRICULTURE > FOREST SCIENCE > AFFORESTATION/REFORESTATION\",\n \ \"EARTH SCIENCE > AGRICULTURE > AGRICULTURAL PLANT SCIENCE > CROP/PLANT YIELDS\",\n \"EARTH SCIENCE > AGRICULTURE > FOREST SCIENCE > FOREST FIRE SCIENCE\",\n \"EARTH SCIENCE > LAND SURFACE > LANDSCAPE\",\n \"EARTH SCIENCE > LAND SURFACE > TOPOGRAPHY\",\n \"EARTH SCIENCE > ATMOSPHERE > WEATHER EVENTS\",\n \"VIS (0.40 - 0.75 \xB5m)\",\n \"NIR (0.75 - 1.30 \xB5m)\",\n \"SWIR (1.3 - 3.0 \xB5m)\",\n \"Sun-synchronous\",\n \ \"Very High Resolution - VHR (0 - 5m)\",\n \"High Resolution - HR (5 - 20 m)\",\n \"832 km for SPOT-1 to 5, 694 km for SPOT-6 and 7\",\n \"60 km\",\n \"Cameras\",\n \"SPOT 6\",\n \"SPOT 7\",\n \"NAOMI\"\n ],\n \"created\": \"2019-07-16T00:00:00.00Z\",\n \ \"description\": \"The SPOT 6 and 7 satellites ensure data continuity with the no longer operational SPOT 5 satellite and provide an archive of very high resolution optical acquisition as well as the possibility to task the satellites for new acquisitions. Following the completion of the SPOT 7 mission in March 2023, new acquisition tasking is only available for the SPOT 6 satellite. The ortho-products are automatically generated by the SPOT 6 and 7 ground segment, based on SRTM database or Reference3D when available. The projection available for SPOT 6 and 7 ortho-products is UTM, datum WGS84. \ Bands combinations: - Pansharpened: colour image at 1.5 m resolution - Bundle: 1.5 m panchromatic image and 6 m multispectral image Geometric processing levels: - Primary: The Primary product is the processing level closest to the natural image acquired by the sensor. This product restores perfect collection conditions: the sensor is placed in rectilinear geometry, and the image is clear of all radiometric distortion. - Standard Ortho: The Ortho product is a georeferenced image in Earth geometry, corrected from acquisition and terrain off-nadir effects. - Tailored ortho: Aside from the Standard Ortho product, when different specifications are needed, a custom orthorectification, with a more precise 3D model provided by the client or acquired for the purpose, can be provided on demand.\",\n \"type\": \"Collection\",\n \"title\": \"SPOT 6 & 7 full archive and tasking\",\n \"license\": \"various\",\n \ \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://www.intelligence-airbusds.com/satellite-data/\",\n \ \"type\": \"text/html\",\n \"title\": \"SPOT-6 to 7 products description - Other\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"http://www.intelligence-airbusds.com/spotmaps/\",\n \ \"type\": \"text/html\",\n \"title\": \"SPOTMaps technical information - Other\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://earth.esa.int/eogateway/documents/20142/1586698/SPOTMaps2.5.kmz\",\n \ \"title\": \"SPOTMaps 2.5 geographical coverage - Other\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/SPOT-6-7-imagery-user-guide.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"SPOT 6&7 Imagery User Guide - Product Specification\"\n },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://www.intelligence-airbusds.com/imagery/constellation/pleiades-neo/how-to-order/\",\n \ \"type\": \"text/html\",\n \"title\": \"OneAtlas guides - Data Access Information\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://www.intelligence-airbusds.com/en/4871-geostore-ordering\",\n \ \"type\": \"text/html\",\n \"title\": \"GeoStore Catalogue - Catalogue\"\n },\n {\n \"rel\": \"describedby\",\n \ \"href\": \"https://oneatlas.airbus.com/\",\n \"type\": \"text/html\",\n \"title\": \"OneAtlas Living Library - Catalogue\"\n \ },\n {\n \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/SPOT-Pleiades-data-terms-of-applicability.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"SPOT and Pleiades Terms of Applicability - Access Guide\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/SPOT67fullarchiveandtasking1?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/SPOT%206\",\n \ \"title\": \"More collections for SPOT 6 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/SPOT%207\",\n \ \"title\": \"More collections for SPOT 7 platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/ec73a747-76a7-56f1-a011-0465a3ed4a87\",\n \ \"title\": \"More collections for NAOMI instrument\"\n }\n \ ],\n \"id\": \"SPOT67fullarchiveandtasking1\",\n \"updated\": \"2023-06-13T13:23:42Z\",\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \"name\": \"ESA/ESRIN\",\n \"url\": \"https://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"NAOMI\"],\n \ \"platform\": [\n \"SPOT 6\",\n \"SPOT 7\"\n ]\n \ }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -90,\n 180,\n 90\n ]]},\n \ \"temporal\": {\"interval\": [[\n \"2020-04-20T00:00:00.000Z\",\n \ null\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \ \"keywords\": [\n \"global\",\n \"tropics\",\n \"polar regions\",\n \"atmospheric winds\",\n \"atmospheric dynamic\",\n \ \"troposphere\",\n \"stratosphere\",\n \"air quality\",\n \ \"mie\",\n \"rayleigh\",\n \"clouds\",\n \"aerosols\",\n \ \"wind profiles\",\n \"weather\",\n \"climate\",\n \"weather forecast\",\n \"Atmospheric Winds\",\n \"Atmospheric Indicators\",\n \ \"EARTH SCIENCE > ATMOSPHERE > ATMOSPHERIC WINDS\",\n \"UV (0.01 - 0.4 \xB5m)\",\n \"Sun-synchronous\",\n \"Horizontal resolution at measurement scale: 3 km; Horizontal resolution at observation scale for Rayleigh/Mie: 87/10 km\",\n \"250-2000 m vertical resolution\",\n \ \"ALD_U_N_1B\",\n \"320 km\",\n \"Lidar/Laser Sounders\",\n \ \"Aeolus\",\n \"ALADIN\"\n ],\n \"created\": \"2020-04-30T00:00:00.00Z\",\n \ \"description\": \"The Level 1B wind product of the Aeolus mission contains the preliminary HLOS (horizontal line-of-sight) wind observations for Rayleigh and Mie receivers, which are generated in Near Real Time. Standard atmospheric correction (Rayleigh channel), receiver response and bias correction is applied. The product is generated within 3 hours after data acquisition.\",\n \"type\": \"Collection\",\n \"title\": \"Aeolus preliminary HLOS (horizontal line-of-sight) wind observations for Rayleigh and Mie receivers\",\n \"license\": \"various\",\n \ \"assets\": {\n \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n }\n \ },\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products\",\n \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \ \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \ \"title\": \"FedEO Clearinghouse\"\n },\n {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \"title\": \"collections\",\n \"type\": \"application/json\"\n },\n {\n \ \"rel\": \"describedby\",\n \"href\": \"https://earth.esa.int/eogateway/documents/20142/37627/Aeolus-Sensor-and-Product-Description.pdf\",\n \ \"type\": \"application/pdf\",\n \"title\": \"Aeolus Sensor and Product Description - Aeolus Sensor and Product Description\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://esatellus.service-now.com/csp?id=esa_simple_request\",\n \ \"type\": \"text/html\",\n \"title\": \"Get Help? - ESA Earth Observation User Services Portal\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/L1B_Wind_Products?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/ESA@ESRIN\",\n \ \"title\": \"More collections for ESA/ESRIN\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:platform/Aeolus\",\n \ \"title\": \"More collections for Aeolus platform\"\n },\n \ {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/concepts/instruments/a032cde6-16e3-5940-988e-f6d79870d14c\",\n \ \"title\": \"More collections for ALADIN instrument\"\n }\n \ ],\n \"id\": \"L1B_Wind_Products\",\n \"updated\": \"2023-06-15T11:50:19Z\",\n \ \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"ESA/ESRIN\",\n \"url\": \"http://www.esa.int\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\n \"instruments\": [\"ALADIN\"],\n \ \"platform\": [\"Aeolus\"]\n }\n },\n {\n \"extent\": {\n \"spatial\": {\"bbox\": [[\n -180,\n -60,\n 180,\n \ 80\n ]]},\n \"temporal\": {\"interval\": [[\n \"1999-01-01T00:00:00Z\",\n \ \"2019-12-31T23:59:59Z\"\n ]]}\n },\n \"stac_version\": \"1.0.0\",\n \"keywords\": [\n \"Orthoimagery\",\n \"vegetation\",\n \ \"density\",\n \"cover\",\n \"growth\",\n \"ndvi\",\n \ \"GLOBAL\",\n \"Dekad\",\n \"10-daily\",\n \"EARTH SCIENCE>BIOSPHERE>VEGETATION\",\n \"EARTH SCIENCE>OCEANS>SALINITY/DENSITY>DENSITY\",\n \ \"EARTH SCIENCE>LAND SURFACE>LAND USE/LAND COVER>LAND USE/LAND COVER CLASSIFICATION>VEGETATION INDEX\"\n ],\n \"created\": \"2019-12-31T00:00:00.00Z\",\n \ \"description\": \"The Normalised Difference Vegetation Index (NDVI) is a widely used, dimensionless index that is indicative for vegetation density and is defined as NDVI=(NIR-Red)/(NIR+Red) where NIR corresponds to the reflectance in the near infrared bands, and Red to the reflectance in the red bands. The time series of 10-daily NDVI 1km version 3 observations is used to calculate Long Term Statistics (LTS), over the 20-year period 1999-2019, and Short Term Statistics (STS), over the 5-year period (2015-2019), for each of the 36 10-daily periods (dekads) of the year. The calculated statistics include the minimum, median, maximum, mean, standard deviation and the number of observations in the covered time series period. These statistics can be used as a reference for actual NDVI observations, which allows monitoring of anomalous vegetation conditions.\",\n \"sci:citation\": \"https://land.copernicus.eu/global/documents/ndvi/v3/pum\",\n \ \"type\": \"Collection\",\n \"title\": \"Normalised Difference Vegetation Index Statistics 1999-2019 (raster 1 km), global, 10-daily - version 3\",\n \"version\": \"V3.0\",\n \"license\": \"various\",\n \"assets\": {\n \"search\": {\n \"roles\": [\"search\"],\n \"href\": \"https://fedeo-client.ceos.org?url=https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%252Bxml&uid=urn:cgls:global:ndvi_stats_all\",\n \ \"type\": \"text/html\",\n \"title\": \"Search client\"\n \ },\n \"enclosure\": {\n \"roles\": [\"data\"],\n \"href\": \"https://land.copernicus.eu/global/access\",\n \"type\": \"application/x-binary\",\n \ \"title\": \"Copernicus Global Land Service - Information on how to search, download, order products or subscribe to future products\"\n },\n \ \"metadata_ogc_17_069r3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all\",\n \ \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/ogcapi-features-1/1.0\\\"\",\n \ \"title\": \"OGC 17-069r3 metadata\"\n },\n \"metadata_iso_19139\": {\n \"roles\": [\"metadata\"],\n \"href\": \"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=application/vnd.iso.19139%2Bxml\",\n \ \"title\": \"ISO 19139 metadata\",\n \"type\": \"application/vnd.iso.19139+xml\"\n \ },\n \"metadata_iso_19139_2\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=application/vnd.iso.19139-2%2Bxml\",\n \ \"title\": \"ISO 19139-2 metadata\",\n \"type\": \"application/vnd.iso.19139-2+xml\"\n \ },\n \"metadata_dif_10\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=application/dif10%2Bxml\",\n \ \"title\": \"DIF-10 metadata\",\n \"type\": \"application/dif10+xml\"\n \ },\n \"metadata_iso_19115_3\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=application/vnd.iso.19115-3%2Bxml\",\n \ \"title\": \"ISO 19115-3 metadata\",\n \"type\": \"application/vnd.iso.19115-3+xml\"\n \ },\n \"metadata_ogc_17_084r1\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?mode=owc\",\n \ \"title\": \"OGC 17-084r1 metadata\",\n \"type\": \"application/geo+json;profile=\\\"http://www.opengis.net/spec/eoc-geojson/1.0\\\"\"\n \ },\n \"metadata_html\": {\n \"roles\": [\"metadata\"],\n \ \"href\": \"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=text/html\",\n \ \"title\": \"HTML\",\n \"type\": \"text/html\"\n },\n \ \"quicklook\": {\n \"roles\": [\"overview\"],\n \"href\": \"https://land.copernicus.vgt.vito.be/geonetwork/srv/api/records/urn:cgls:global:ndvi_v2_1km/attachments/ndvi300_v1_333m_with-legend.png\",\n \ \"type\": \"image/png\",\n \"title\": \"graphic overview\"\n \ }\n },\n \"links\": [\n {\n \"rel\": \"self\",\n \ \"href\": \"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all\",\n \ \"type\": \"application/json\"\n },\n {\n \"rel\": \"root\",\n \"href\": \"https://emc.spacebel.be\",\n \"type\": \"application/json\",\n \"title\": \"FedEO Clearinghouse\"\n },\n \ {\n \"rel\": \"parent\",\n \"href\": \"https://emc.spacebel.be\",\n \ \"title\": \"collections\",\n \"type\": \"application/json\"\n \ },\n {\n \"rel\": \"items\",\n \"href\": \"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all/items?httpAccept=application/geo%2Bjson;profile=https://stacspec.org\",\n \ \"type\": \"application/geo+json\",\n \"title\": \"Datasets search for the series urn:cgls:global:ndvi_stats_all\"\n },\n {\n \ \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all/queryables\",\n \ \"type\": \"application/schema+json\",\n \"title\": \"Queryables for urn:cgls:global:ndvi_stats_all\"\n },\n {\n \"rel\": \"search\",\n \"href\": \"https://emc.spacebel.be/collections/series/items/urn:cgls:global:ndvi_stats_all/api\",\n \ \"type\": \"application/opensearchdescription+xml\",\n \"title\": \"OpenSearch Description Document\"\n },\n {\n \"rel\": \"related\",\n \"href\": \"http://eoportal.eumetsat.int\",\n \"title\": \"gc - Register to receive products via EUMETCast telecom satellite\"\n },\n \ {\n \"rel\": \"describedby\",\n \"href\": \"https://land.copernicus.eu/global/products/ndvi\",\n \ \"title\": \"Copernicus Global Land Service - Product information and documentation\"\n },\n {\n \"rel\": \"alternate\",\n \ \"href\": \"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=application/atom%2Bxml\",\n \ \"type\": \"application/atom+xml\",\n \"title\": \"Atom format\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=application/xml\",\n \ \"type\": \"application/xml\",\n \"title\": \"Dublin Core metadata\"\n },\n {\n \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=application/ld%2Bjson;profile=https://schema.org\",\n \ \"type\": \"application/ld+json;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"JSON-LD (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=application/ld%2Bjson;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/ld+json;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"JSON-LD (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=application/rdf%2Bxml;profile=https://schema.org\",\n \ \"type\": \"application/rdf+xml;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"RDF/XML (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=application/rdf%2Bxml;profile=http://data.europa.eu/930/\",\n \ \"type\": \"application/rdf+xml;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"RDF/XML (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=text/turtle;profile=https://schema.org\",\n \ \"type\": \"text/turtle;profile=\\\"https://schema.org\\\"\",\n \ \"title\": \"Turtle (schema.org) metadata\"\n },\n {\n \ \"rel\": \"alternate\",\n \"href\": \"https://emc.spacebel.be/collections/urn:cgls:global:ndvi_stats_all?httpAccept=text/turtle;profile=http://data.europa.eu/930/\",\n \ \"type\": \"text/turtle;profile=\\\"http://data.europa.eu/930/\\\"\",\n \ \"title\": \"Turtle (GeoDCAT-AP) metadata\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/VITO\",\n \ \"title\": \"More collections for VITO\"\n },\n {\n \ \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/European Commission Directorate-General for Internal Market, Industry, Entrepreneurship and SMEs\",\n \"title\": \"More collections for European Commission Directorate-General for Internal Market, Industry, Entrepreneurship and SMEs\"\n \ },\n {\n \"rel\": \"related\",\n \"href\": \"https://emc.spacebel.be/series/eo:organisationName/European Commission Directorate-General Joint Research Centre\",\n \"title\": \"More collections for European Commission Directorate-General Joint Research Centre\"\n }\n ],\n \ \"id\": \"urn:cgls:global:ndvi_stats_all\",\n \"updated\": \"2023-09-22T19:28:10Z\",\n \ \"stac_extensions\": [\n \"https://stac-extensions.github.io/version/v1.2.0/schema.json\",\n \ \"https://stac-extensions.github.io/processing/v1.2.0/schema.json\",\n \ \"https://stac-extensions.github.io/scientific/v1.0.0/schema.json\"\n \ ],\n \"providers\": [\n {\n \"roles\": [\"producer\"],\n \ \"name\": \"VITO\",\n \"url\": \"https://land.copernicus.eu/global/\"\n \ },\n {\n \"roles\": [\"host\"],\n \"name\": \"FedEO Clearinghouse\",\n \"url\": \"https://emc.spacebel.be/readme.html\"\n \ }\n ],\n \"summaries\": {\"processing:lineage\": [\"The input data are the 10-daily NDVI products, at 1km resolution, measured by the SPOT-VEGETATION and PROBA-V sensors, for the reference period 1999-2019. From the time series of valid NDVI observations, a set of Long Term Statistics are calculated, one per dekad (10-daily period) of the year. Sea pixels are specifically masked.\"]}\n }\n ],\n \"numberReturned\": 10,\n \"links\": [\n {\n \"rel\": \"self\",\n \"href\": \"https://emc.spacebel.be/collections?limit=10&bbox=-92.379%2C46.662%2C-91.788%2C46.919\",\n \ \"type\": \"application/json\",\n \"title\": \"This document\"\n \ },\n {\n \"rel\": \"next\",\n \"href\": \"https://emc.spacebel.be/collections?limit=10&bbox=-92.379%2C46.662%2C-91.788%2C46.919&startRecord=21\",\n \ \"type\": \"application/json\",\n \"title\": \"Next results\"\n \ },\n {\n \"rel\": \"previous\",\n \"href\": \"https://emc.spacebel.be/collections?limit=10&bbox=-92.379%2C46.662%2C-91.788%2C46.919&startRecord=1\",\n \ \"type\": \"application/json\",\n \"title\": \"Previous results\"\n \ },\n {\n \"rel\": \"http://www.opengis.net/def/rel/ogc/1.0/queryables\",\n \ \"href\": \"https://emc.spacebel.be/collections/queryables\",\n \"type\": \"application/schema+json\",\n \"title\": \"Queryables for collection search\"\n }\n ],\n \"numberMatched\": 2357\n}" headers: Access-Control-Allow-Headers: - X-PINGOTHER, Content-Type, Authorization, Accept Access-Control-Allow-Methods: - POST,GET,PUT,HEAD,OPTIONS,DELETE Access-Control-Allow-Origin: - '*' Cache-Control: - no-cache, no-store, max-age=0, must-revalidate Connection: - keep-alive Content-Type: - application/json;charset=UTF-8 Date: - Thu, 17 Jul 2025 12:51:17 GMT Expires: - '0' Pragma: - no-cache Server: - openresty Strict-Transport-Security: - max-age=31536000 ; includeSubDomains Transfer-Encoding: - chunked X-Content-Type-Options: - nosniff X-Frame-Options: - DENY X-Served-By: - emc.spacebel.be X-XSS-Protection: - 1; mode=block status: code: 200 message: '' version: 1 pystac-client-0.9.0/tests/cassettes/test_item_search/000077500000000000000000000000001503646565400227775ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_item_search/TestItemSearch.test_datetime_results.yaml000066400000000000000000040565651503646565400332070ustar00rootroot00000000000000interactions: - request: body: '{"datetime": "2019-01-01T00:00:01Z/2019-01-01T00:00:10Z", "collections": ["sentinel-2-l2a"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '92' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"S2A_MSIL2A_20190101T000001_R116_T60VUK_20201007T214652","bbox":[173.57964734454623,57.61010611826214,174.14549370977366,58.36983552363622],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T60VUK_20201007T214652"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T60VUK_20201007T214652","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R10m/T60VUK_20190101T000001_AOT_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R60m/T60VUK_20190101T000001_B01_60m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R10m/T60VUK_20190101T000001_B02_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R10m/T60VUK_20190101T000001_B03_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R10m/T60VUK_20190101T000001_B04_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R20m/T60VUK_20190101T000001_B05_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R20m/T60VUK_20190101T000001_B06_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R20m/T60VUK_20190101T000001_B07_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R10m/T60VUK_20190101T000001_B08_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R60m/T60VUK_20190101T000001_B09_60m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R20m/T60VUK_20190101T000001_B11_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R20m/T60VUK_20190101T000001_B12_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R20m/T60VUK_20190101T000001_B8A_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R20m/T60VUK_20190101T000001_SCL_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R10m/T60VUK_20190101T000001_WVP_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R10m/T60VUK_20190101T000001_TCI_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/QI_DATA/T60VUK_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/DATASTRIP/DS_ESRI_20201007T214653_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T60VUK_20201007T214652&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T60VUK_20201007T214652&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[173.57964734,58.36983552],[173.74200172,58.33549604],[173.74156018,58.33486558],[173.74585109,58.33388251],[173.74562704,58.33356289],[173.89398827,58.29994353],[174.14549371,58.24232236],[174.04607417,58.1026172],[173.9463487,57.96108179],[173.84707369,57.81948251],[173.74837088,57.6777999],[173.70218084,57.61107233],[173.65192537,57.61010612],[173.57964734,58.36983552]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32660,"instruments":["msi"],"s2:mgrs_tile":"60VUK","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214653_A018417_T60VUK_N02.12","eo:cloud_cover":56.297088,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214653_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:52.987Z","sat:relative_orbit":116,"s2:water_percentage":43.694827,"s2:mean_solar_zenith":81.3310068623942,"s2:mean_solar_azimuth":174.189052091779,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000216,"s2:thin_cirrus_percentage":6.031071,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":87.684971,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.007867,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":27.443218,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":22.822799,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T60VUJ_20201007T214652","bbox":[173.6438298900325,57.54638536228822,173.76391737983067,57.700116068258254],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T60VUJ_20201007T214652"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T60VUJ_20201007T214652","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R10m/T60VUJ_20190101T000001_AOT_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R60m/T60VUJ_20190101T000001_B01_60m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R10m/T60VUJ_20190101T000001_B02_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R10m/T60VUJ_20190101T000001_B03_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R10m/T60VUJ_20190101T000001_B04_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R20m/T60VUJ_20190101T000001_B05_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R20m/T60VUJ_20190101T000001_B06_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R20m/T60VUJ_20190101T000001_B07_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R10m/T60VUJ_20190101T000001_B08_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R60m/T60VUJ_20190101T000001_B09_60m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R20m/T60VUJ_20190101T000001_B11_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R20m/T60VUJ_20190101T000001_B12_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R20m/T60VUJ_20190101T000001_B8A_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R20m/T60VUJ_20190101T000001_SCL_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R10m/T60VUJ_20190101T000001_WVP_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R10m/T60VUJ_20190101T000001_TCI_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/QI_DATA/T60VUJ_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/DATASTRIP/DS_ESRI_20201007T214653_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T60VUJ_20201007T214652&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T60VUJ_20201007T214652&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[173.76391738,57.70011607],[173.74837088,57.6777999],[173.65740333,57.54638536],[173.64382989,57.69780505],[173.76391738,57.70011607]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32660,"instruments":["msi"],"s2:mgrs_tile":"60VUJ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214653_A018417_T60VUJ_N02.12","eo:cloud_cover":36.231313,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214653_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:52.713Z","sat:relative_orbit":116,"s2:water_percentage":63.742381,"s2:mean_solar_zenith":80.4315685350907,"s2:mean_solar_azimuth":174.284559724811,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":9.083315,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.495572,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.026309,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":12.797543,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":14.350455,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VPE_20201007T214658","bbox":[172.675263,57.6221198,174.1454937,58.5473321],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VPE_20201007T214658"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VPE_20201007T214658","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R10m/T59VPE_20190101T000001_AOT_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R60m/T59VPE_20190101T000001_B01_60m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R10m/T59VPE_20190101T000001_B02_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R10m/T59VPE_20190101T000001_B03_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R10m/T59VPE_20190101T000001_B04_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R20m/T59VPE_20190101T000001_B05_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R20m/T59VPE_20190101T000001_B06_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R20m/T59VPE_20190101T000001_B07_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R10m/T59VPE_20190101T000001_B08_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R60m/T59VPE_20190101T000001_B09_60m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R20m/T59VPE_20190101T000001_B11_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R20m/T59VPE_20190101T000001_B12_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R20m/T59VPE_20190101T000001_B8A_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R20m/T59VPE_20190101T000001_SCL_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R10m/T59VPE_20190101T000001_WVP_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R10m/T59VPE_20190101T000001_TCI_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/QI_DATA/T59VPE_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/DATASTRIP/DS_ESRI_20201007T214659_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VPE_20201007T214658&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VPE_20201007T214658&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[172.7183153,58.5473321],[172.9561343,58.5009701],[172.955734,58.5003797],[172.9568763,58.5001415],[172.9568697,58.5001319],[172.9595828,58.4995672],[172.9595738,58.499554],[172.9731756,58.4967383],[172.9823619,58.4948264],[173.3230933,58.4237662],[173.323182,58.4238949],[173.3233466,58.4238607],[173.3234145,58.4239592],[173.3269709,58.4232191],[173.3270069,58.4232714],[173.7420017,58.335496],[173.7415602,58.3348656],[173.7458511,58.3338825],[173.745627,58.3335629],[173.8939883,58.2999435],[174.1454937,58.2423224],[174.0460742,58.1026172],[173.9463487,57.9610818],[173.8470737,57.8194825],[173.7483709,57.6777999],[173.7098281,57.6221198],[172.675263,57.6433552],[172.7183153,58.5473321]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VPE","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214659_A018417_T59VPE_N02.12","eo:cloud_cover":60.399535,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214659_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:58.397Z","sat:relative_orbit":116,"s2:water_percentage":39.598268,"s2:mean_solar_zenith":81.3789747974823,"s2:mean_solar_azimuth":173.356424452691,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000074,"s2:thin_cirrus_percentage":5.321218,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":46.473998,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.00212,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":32.092345,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":22.985972,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VPD_20201007T214657","bbox":[172.6350802,56.7355347,173.7699385,57.7311664],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VPD_20201007T214657"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VPD_20201007T214657","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R10m/T59VPD_20190101T000001_AOT_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R60m/T59VPD_20190101T000001_B01_60m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R10m/T59VPD_20190101T000001_B02_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R10m/T59VPD_20190101T000001_B03_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R10m/T59VPD_20190101T000001_B04_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R20m/T59VPD_20190101T000001_B05_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R20m/T59VPD_20190101T000001_B06_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R20m/T59VPD_20190101T000001_B07_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R10m/T59VPD_20190101T000001_B08_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R60m/T59VPD_20190101T000001_B09_60m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R20m/T59VPD_20190101T000001_B11_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R20m/T59VPD_20190101T000001_B12_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R20m/T59VPD_20190101T000001_B8A_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R20m/T59VPD_20190101T000001_SCL_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R10m/T59VPD_20190101T000001_WVP_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R10m/T59VPD_20190101T000001_TCI_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/QI_DATA/T59VPD_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/DATASTRIP/DS_ESRI_20201007T214657_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VPD_20201007T214657&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VPD_20201007T214657&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[173.7699385,57.708759],[173.7483709,57.6777999],[173.6502383,57.5360346],[173.5528162,57.3942062],[173.4563756,57.2522968],[173.3611881,57.1103666],[173.2669319,56.9683895],[173.171904,56.8262444],[173.11216,56.7355347],[172.6350802,56.7452297],[172.6793207,57.7311664],[173.7699385,57.708759]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VPD","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214657_A018417_T59VPD_N02.12","eo:cloud_cover":46.546018,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214657_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:57.231Z","sat:relative_orbit":116,"s2:water_percentage":53.450274,"s2:mean_solar_zenith":80.4877811832994,"s2:mean_solar_azimuth":173.335687820276,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.00037,"s2:thin_cirrus_percentage":5.510974,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":56.98083,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.003339,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":23.610283,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":17.424761,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VPC_20201007T214653","bbox":[172.6013447,55.9457623,173.169284,56.8330553],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VPC_20201007T214653"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VPC_20201007T214653","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R10m/T59VPC_20190101T000001_AOT_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R60m/T59VPC_20190101T000001_B01_60m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R10m/T59VPC_20190101T000001_B02_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R10m/T59VPC_20190101T000001_B03_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R10m/T59VPC_20190101T000001_B04_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R20m/T59VPC_20190101T000001_B05_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R20m/T59VPC_20190101T000001_B06_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R20m/T59VPC_20190101T000001_B07_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R10m/T59VPC_20190101T000001_B08_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R60m/T59VPC_20190101T000001_B09_60m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R20m/T59VPC_20190101T000001_B11_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R20m/T59VPC_20190101T000001_B12_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R20m/T59VPC_20190101T000001_B8A_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R20m/T59VPC_20190101T000001_SCL_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R10m/T59VPC_20190101T000001_WVP_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R10m/T59VPC_20190101T000001_TCI_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/QI_DATA/T59VPC_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/DATASTRIP/DS_ESRI_20201007T214654_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VPC_20201007T214653&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VPC_20201007T214653&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[173.169284,56.8222665],[173.0782905,56.6841105],[172.9854285,56.5419404],[172.8932282,56.3996866],[172.801363,56.2573925],[172.7096682,56.115044],[172.6184059,55.9726011],[172.6013447,55.9457623],[172.6389064,56.8330553],[173.169284,56.8222665]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VPC","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214654_A018417_T59VPC_N02.12","eo:cloud_cover":58.106013,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214654_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:53.584Z","sat:relative_orbit":116,"s2:water_percentage":41.884977,"s2:mean_solar_zenith":79.5962293015734,"s2:mean_solar_azimuth":173.316583674405,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000521,"s2:thin_cirrus_percentage":4.548805,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":86.635083,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.00849,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":37.046662,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":16.510546,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VNF_20201007T214654","bbox":[170.9996533,58.5393681,172.7591678,58.8524471],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VNF_20201007T214654"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VNF_20201007T214654","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R10m/T59VNF_20190101T000001_AOT_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R60m/T59VNF_20190101T000001_B01_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R10m/T59VNF_20190101T000001_B02_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R10m/T59VNF_20190101T000001_B03_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R10m/T59VNF_20190101T000001_B04_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R20m/T59VNF_20190101T000001_B05_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R20m/T59VNF_20190101T000001_B06_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R20m/T59VNF_20190101T000001_B07_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R10m/T59VNF_20190101T000001_B08_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R60m/T59VNF_20190101T000001_B09_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R20m/T59VNF_20190101T000001_B11_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R20m/T59VNF_20190101T000001_B12_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R20m/T59VNF_20190101T000001_B8A_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R20m/T59VNF_20190101T000001_SCL_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R10m/T59VNF_20190101T000001_WVP_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R10m/T59VNF_20190101T000001_TCI_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/QI_DATA/T59VNF_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/DATASTRIP/DS_ESRI_20201007T214655_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VNF_20201007T214654&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VNF_20201007T214654&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[170.9996533,58.8524471],[171.3926345,58.7881754],[171.3922111,58.787507],[171.3922615,58.7874984],[171.3922436,58.7874701],[171.5708719,58.7570986],[171.7184636,58.7319832],[171.766334,58.7238265],[171.7663402,58.7238361],[171.7663575,58.7238332],[171.7666249,58.724248],[172.1767251,58.6508165],[172.1763959,58.6503148],[172.5425498,58.5811748],[172.5425704,58.5812056],[172.5426065,58.5811987],[172.5426243,58.5812254],[172.5427372,58.5812041],[172.542808,58.5813102],[172.5462703,58.5806565],[172.5462919,58.5806889],[172.5465638,58.5806377],[172.5466682,58.5807942],[172.7591678,58.5393681],[170.9996563,58.5522811],[170.9996533,58.8524471]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VNF","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214655_A018417_T59VNF_N02.12","eo:cloud_cover":57.558212,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214655_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:54.683Z","sat:relative_orbit":116,"s2:water_percentage":42.439997,"s2:mean_solar_zenith":82.4082720609248,"s2:mean_solar_azimuth":171.781945107179,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000619,"s2:thin_cirrus_percentage":3.132979,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":85.539186,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.00117,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":35.962248,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":18.462986,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VNE_20201007T214705","bbox":[170.9996555,57.6410797,172.8846938,58.6406562],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VNE_20201007T214705"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VNE_20201007T214705","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R10m/T59VNE_20190101T000001_AOT_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R60m/T59VNE_20190101T000001_B01_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R10m/T59VNE_20190101T000001_B02_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R10m/T59VNE_20190101T000001_B03_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R10m/T59VNE_20190101T000001_B04_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R20m/T59VNE_20190101T000001_B05_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R20m/T59VNE_20190101T000001_B06_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R20m/T59VNE_20190101T000001_B07_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R10m/T59VNE_20190101T000001_B08_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R60m/T59VNE_20190101T000001_B09_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R20m/T59VNE_20190101T000001_B11_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R20m/T59VNE_20190101T000001_B12_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R20m/T59VNE_20190101T000001_B8A_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R20m/T59VNE_20190101T000001_SCL_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R10m/T59VNE_20190101T000001_WVP_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R10m/T59VNE_20190101T000001_TCI_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/QI_DATA/T59VNE_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/DATASTRIP/DS_ESRI_20201007T214710_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VNE_20201007T214705&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VNE_20201007T214705&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[172.2772472,58.6312713],[172.5425498,58.5811748],[172.5425704,58.5812056],[172.5426065,58.5811987],[172.5426243,58.5812254],[172.5427372,58.5812041],[172.542808,58.5813102],[172.5462703,58.5806565],[172.5462919,58.5806889],[172.5465638,58.5806377],[172.5466682,58.5807942],[172.8846938,58.5148972],[172.8390116,57.6410797],[170.9996649,57.6544495],[170.9996555,58.6406562],[172.2772472,58.6312713]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VNE","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214710_A018417_T59VNE_N02.12","eo:cloud_cover":47.773062,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214710_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:05.331Z","sat:relative_orbit":116,"s2:water_percentage":52.224708,"s2:mean_solar_zenith":81.5171695990905,"s2:mean_solar_azimuth":171.796902885201,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000436,"s2:thin_cirrus_percentage":4.00351,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":1.868036,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.001792,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":27.993247,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":15.776305,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VND_20201007T214702","bbox":[170.9996641,56.7430308,172.8434653,57.7422982],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VND_20201007T214702"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VND_20201007T214702","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R10m/T59VND_20190101T000001_AOT_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R60m/T59VND_20190101T000001_B01_60m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R10m/T59VND_20190101T000001_B02_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R10m/T59VND_20190101T000001_B03_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R10m/T59VND_20190101T000001_B04_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R20m/T59VND_20190101T000001_B05_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R20m/T59VND_20190101T000001_B06_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R20m/T59VND_20190101T000001_B07_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R10m/T59VND_20190101T000001_B08_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R60m/T59VND_20190101T000001_B09_60m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R20m/T59VND_20190101T000001_B11_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R20m/T59VND_20190101T000001_B12_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R20m/T59VND_20190101T000001_B8A_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R20m/T59VND_20190101T000001_SCL_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R10m/T59VND_20190101T000001_WVP_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R10m/T59VND_20190101T000001_TCI_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/QI_DATA/T59VND_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/DATASTRIP/DS_ESRI_20201007T214702_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VND_20201007T214702&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VND_20201007T214702&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[170.9996641,57.7422982],[172.8434653,57.7288832],[172.794906,56.7430308],[170.9996729,56.7559505],[170.9996641,57.7422982]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VND","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214702_A018417_T59VND_N02.12","eo:cloud_cover":52.550044,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214702_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:02.380Z","sat:relative_orbit":116,"s2:water_percentage":47.448298,"s2:mean_solar_zenith":80.6252004012103,"s2:mean_solar_azimuth":171.811195296255,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000378,"s2:thin_cirrus_percentage":5.859159,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.000013,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.001277,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":29.690114,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":17.000772,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VNC_20201007T214703","bbox":[170.9996721,55.8463628,172.7991059,56.8438118],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VNC_20201007T214703"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VNC_20201007T214703","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R10m/T59VNC_20190101T000001_AOT_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R60m/T59VNC_20190101T000001_B01_60m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R10m/T59VNC_20190101T000001_B02_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R10m/T59VNC_20190101T000001_B03_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R10m/T59VNC_20190101T000001_B04_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R20m/T59VNC_20190101T000001_B05_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R20m/T59VNC_20190101T000001_B06_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R20m/T59VNC_20190101T000001_B07_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R10m/T59VNC_20190101T000001_B08_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R60m/T59VNC_20190101T000001_B09_60m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R20m/T59VNC_20190101T000001_B11_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R20m/T59VNC_20190101T000001_B12_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R20m/T59VNC_20190101T000001_B8A_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R20m/T59VNC_20190101T000001_SCL_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R10m/T59VNC_20190101T000001_WVP_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R10m/T59VNC_20190101T000001_TCI_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/QI_DATA/T59VNC_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/DATASTRIP/DS_ESRI_20201007T214703_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VNC_20201007T214703&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VNC_20201007T214703&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[172.7702101,56.2090302],[172.7096682,56.115044],[172.6184059,55.9726011],[172.5381572,55.8463628],[170.9996805,55.8573211],[170.9996721,56.8438118],[172.7991059,56.8308491],[172.7702101,56.2090302]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VNC","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214703_A018417_T59VNC_N02.12","eo:cloud_cover":52.350712,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214703_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:03.167Z","sat:relative_orbit":116,"s2:water_percentage":47.645527,"s2:mean_solar_zenith":79.732905333389,"s2:mean_solar_azimuth":171.824703347372,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000984,"s2:thin_cirrus_percentage":4.100037,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":2.249412,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.00278,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":33.140349,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":15.110326,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VMF_20201007T214657","bbox":[169.2583006,58.5407855,171.1690548,59.0913939],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VMF_20201007T214657"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VMF_20201007T214657","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R10m/T59VMF_20190101T000001_AOT_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R60m/T59VMF_20190101T000001_B01_60m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R10m/T59VMF_20190101T000001_B02_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R10m/T59VMF_20190101T000001_B03_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R10m/T59VMF_20190101T000001_B04_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R20m/T59VMF_20190101T000001_B05_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R20m/T59VMF_20190101T000001_B06_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R20m/T59VMF_20190101T000001_B07_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R10m/T59VMF_20190101T000001_B08_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R60m/T59VMF_20190101T000001_B09_60m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R20m/T59VMF_20190101T000001_B11_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R20m/T59VMF_20190101T000001_B12_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R20m/T59VMF_20190101T000001_B8A_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R20m/T59VMF_20190101T000001_SCL_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R10m/T59VMF_20190101T000001_WVP_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R10m/T59VMF_20190101T000001_TCI_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/QI_DATA/T59VMF_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/DATASTRIP/DS_ESRI_20201007T214657_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VMF_20201007T214657&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VMF_20201007T214657&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[169.2583006,58.9976925],[169.3119823,59.0913939],[169.401659,59.0797518],[169.4768996,59.0699352],[169.7624546,59.031948],[169.7619651,59.0311122],[170.1241421,58.9827752],[170.1614688,58.9777343],[170.1617164,58.9781483],[170.1623494,58.9780637],[170.162537,58.9783775],[170.3137893,58.9561822],[170.3708469,58.9477615],[170.5922631,58.9149351],[170.5917112,58.9140307],[170.5917726,58.9140214],[170.5917192,58.9139338],[170.9714113,58.8564547],[170.9714839,58.8565716],[170.9754692,58.8559631],[170.9755048,58.8560204],[170.9758459,58.8559686],[170.9760559,58.8563064],[171.1690548,58.8247416],[171.1677077,58.5521716],[169.2814375,58.5407855],[169.2583006,58.9976925]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VMF","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214657_A018417_T59VMF_N02.12","eo:cloud_cover":52.0557,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214657_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:57.114Z","sat:relative_orbit":116,"s2:water_percentage":47.941265,"s2:mean_solar_zenith":82.5485984225128,"s2:mean_solar_azimuth":170.185565958994,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001372,"s2:thin_cirrus_percentage":4.325228,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":57.6913,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.001662,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":26.005188,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":21.725285,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VME_20201007T214706","bbox":[169.2771006,57.6433463,171.1681312,58.6405464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VME_20201007T214706"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VME_20201007T214706","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R10m/T59VME_20190101T000001_AOT_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R60m/T59VME_20190101T000001_B01_60m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R10m/T59VME_20190101T000001_B02_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R10m/T59VME_20190101T000001_B03_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R10m/T59VME_20190101T000001_B04_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R20m/T59VME_20190101T000001_B05_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R20m/T59VME_20190101T000001_B06_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R20m/T59VME_20190101T000001_B07_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R10m/T59VME_20190101T000001_B08_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R60m/T59VME_20190101T000001_B09_60m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R20m/T59VME_20190101T000001_B11_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R20m/T59VME_20190101T000001_B12_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R20m/T59VME_20190101T000001_B8A_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R20m/T59VME_20190101T000001_SCL_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R10m/T59VME_20190101T000001_WVP_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R10m/T59VME_20190101T000001_TCI_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/QI_DATA/T59VME_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/DATASTRIP/DS_ESRI_20201007T214707_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VME_20201007T214706&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VME_20201007T214706&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[169.2771006,58.6291209],[171.1681312,58.6405464],[171.1635452,57.6543437],[169.3240672,57.6433463],[169.2771006,58.6291209]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VME","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214707_A018417_T59VME_N02.12","eo:cloud_cover":55.188623,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214707_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:06.807Z","sat:relative_orbit":116,"s2:water_percentage":44.809514,"s2:mean_solar_zenith":81.6569028597521,"s2:mean_solar_azimuth":170.238253592829,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000488,"s2:thin_cirrus_percentage":4.299827,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.001377,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":32.88081,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":18.007986,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VMD_20201007T214704","bbox":[169.3200079,56.7452211,171.1639416,57.7421921],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VMD_20201007T214704"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VMD_20201007T214704","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R10m/T59VMD_20190101T000001_AOT_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R60m/T59VMD_20190101T000001_B01_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R10m/T59VMD_20190101T000001_B02_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R10m/T59VMD_20190101T000001_B03_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R10m/T59VMD_20190101T000001_B04_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R20m/T59VMD_20190101T000001_B05_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R20m/T59VMD_20190101T000001_B06_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R20m/T59VMD_20190101T000001_B07_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R10m/T59VMD_20190101T000001_B08_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R60m/T59VMD_20190101T000001_B09_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R20m/T59VMD_20190101T000001_B11_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R20m/T59VMD_20190101T000001_B12_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R20m/T59VMD_20190101T000001_B8A_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R20m/T59VMD_20190101T000001_SCL_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R10m/T59VMD_20190101T000001_WVP_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R10m/T59VMD_20190101T000001_TCI_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/QI_DATA/T59VMD_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/DATASTRIP/DS_ESRI_20201007T214705_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VMD_20201007T214704&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VMD_20201007T214704&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[169.3200079,57.7311575],[171.1639416,57.7421921],[171.1596203,56.7558483],[169.3642661,56.7452211],[169.3200079,57.7311575]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VMD","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214705_A018417_T59VMD_N02.12","eo:cloud_cover":38.1191,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214705_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:04.608Z","sat:relative_orbit":116,"s2:water_percentage":61.879635,"s2:mean_solar_zenith":80.7643729533303,"s2:mean_solar_azimuth":170.287689492138,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000275,"s2:thin_cirrus_percentage":5.062063,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.000992,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":20.352238,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":12.704799,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VMC_20201007T214703","bbox":[169.3604383,55.8469481,171.159994,56.8437093],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VMC_20201007T214703"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VMC_20201007T214703","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R10m/T59VMC_20190101T000001_AOT_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R60m/T59VMC_20190101T000001_B01_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R10m/T59VMC_20190101T000001_B02_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R10m/T59VMC_20190101T000001_B03_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R10m/T59VMC_20190101T000001_B04_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R20m/T59VMC_20190101T000001_B05_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R20m/T59VMC_20190101T000001_B06_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R20m/T59VMC_20190101T000001_B07_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R10m/T59VMC_20190101T000001_B08_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R60m/T59VMC_20190101T000001_B09_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R20m/T59VMC_20190101T000001_B11_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R20m/T59VMC_20190101T000001_B12_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R20m/T59VMC_20190101T000001_B8A_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R20m/T59VMC_20190101T000001_SCL_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R10m/T59VMC_20190101T000001_WVP_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R10m/T59VMC_20190101T000001_TCI_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/QI_DATA/T59VMC_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/DATASTRIP/DS_ESRI_20201007T214704_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VMC_20201007T214703&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VMC_20201007T214703&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[169.3604383,56.8330467],[171.159994,56.8437093],[171.1559167,55.8572224],[169.4021995,55.8469481],[169.3604383,56.8330467]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VMC","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214704_A018417_T59VMC_N02.12","eo:cloud_cover":36.339903,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214704_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:03.938Z","sat:relative_orbit":116,"s2:water_percentage":63.65732,"s2:mean_solar_zenith":79.8715506443941,"s2:mean_solar_azimuth":170.333921936488,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000747,"s2:thin_cirrus_percentage":4.814443,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.002027,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":21.130528,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":10.394932,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VLF_20201007T214653","bbox":[168.9956904,58.5341082,169.4504014,59.0913939],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VLF_20201007T214653"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLF_20201007T214653","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R10m/T59VLF_20190101T000001_AOT_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R60m/T59VLF_20190101T000001_B01_60m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R10m/T59VLF_20190101T000001_B02_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R10m/T59VLF_20190101T000001_B03_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R10m/T59VLF_20190101T000001_B04_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R20m/T59VLF_20190101T000001_B05_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R20m/T59VLF_20190101T000001_B06_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R20m/T59VLF_20190101T000001_B07_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R10m/T59VLF_20190101T000001_B08_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R60m/T59VLF_20190101T000001_B09_60m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R20m/T59VLF_20190101T000001_B11_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R20m/T59VLF_20190101T000001_B12_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R20m/T59VLF_20190101T000001_B8A_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R20m/T59VLF_20190101T000001_SCL_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R10m/T59VLF_20190101T000001_WVP_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R10m/T59VLF_20190101T000001_TCI_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/QI_DATA/T59VLF_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/DATASTRIP/DS_ESRI_20201007T214653_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLF_20201007T214653&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLF_20201007T214653&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[168.9956904,58.5341082],[169.0660941,58.6593652],[169.1477791,58.8036279],[169.2297458,58.94785],[169.3119823,59.0913939],[169.401659,59.0797518],[169.426035,59.0765715],[169.4504014,58.5429352],[168.9956904,58.5341082]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VLF","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214653_A018417_T59VLF_N02.12","eo:cloud_cover":41.188782,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214653_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:53.462Z","sat:relative_orbit":116,"s2:water_percentage":58.807105,"s2:mean_solar_zenith":82.6900927621903,"s2:mean_solar_azimuth":168.593693129984,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001796,"s2:thin_cirrus_percentage":5.384756,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":91.686916,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.002315,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":15.62884,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":20.175186,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VLE_20201007T214654","bbox":[168.5012186,57.6264346,169.488844,58.6312781],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VLE_20201007T214654"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLE_20201007T214654","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R10m/T59VLE_20190101T000001_AOT_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R60m/T59VLE_20190101T000001_B01_60m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R10m/T59VLE_20190101T000001_B02_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R10m/T59VLE_20190101T000001_B03_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R10m/T59VLE_20190101T000001_B04_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R20m/T59VLE_20190101T000001_B05_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R20m/T59VLE_20190101T000001_B06_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R20m/T59VLE_20190101T000001_B07_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R10m/T59VLE_20190101T000001_B08_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R60m/T59VLE_20190101T000001_B09_60m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R20m/T59VLE_20190101T000001_B11_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R20m/T59VLE_20190101T000001_B12_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R20m/T59VLE_20190101T000001_B8A_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R20m/T59VLE_20190101T000001_SCL_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R10m/T59VLE_20190101T000001_WVP_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R10m/T59VLE_20190101T000001_TCI_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/QI_DATA/T59VLE_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/DATASTRIP/DS_ESRI_20201007T214655_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLE_20201007T214654&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLE_20201007T214654&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[168.5012186,57.6264346],[168.512931,57.6484409],[168.5899513,57.7929741],[168.6683269,57.9374718],[168.7470544,58.081962],[168.825266,58.2263233],[168.9045662,58.3706866],[168.9849785,58.5150504],[169.0459324,58.623495],[169.4464903,58.6312781],[169.488844,57.6454227],[168.5012186,57.6264346]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VLE","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214655_A018417_T59VLE_N02.12","eo:cloud_cover":56.700165,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214655_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:54.570Z","sat:relative_orbit":116,"s2:water_percentage":43.298116,"s2:mean_solar_zenith":81.7980175696982,"s2:mean_solar_azimuth":168.683994113272,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001092,"s2:thin_cirrus_percentage":3.135758,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":62.614936,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.00063,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":36.451,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":17.113407,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VLD_20201007T214659","bbox":[168.0248299,56.7186706,169.5250943,57.7332409],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VLD_20201007T214659"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLD_20201007T214659","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R10m/T59VLD_20190101T000001_AOT_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R60m/T59VLD_20190101T000001_B01_60m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R10m/T59VLD_20190101T000001_B02_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R10m/T59VLD_20190101T000001_B03_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R10m/T59VLD_20190101T000001_B04_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R20m/T59VLD_20190101T000001_B05_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R20m/T59VLD_20190101T000001_B06_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R20m/T59VLD_20190101T000001_B07_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R10m/T59VLD_20190101T000001_B08_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R60m/T59VLD_20190101T000001_B09_60m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R20m/T59VLD_20190101T000001_B11_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R20m/T59VLD_20190101T000001_B12_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R20m/T59VLD_20190101T000001_B8A_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R20m/T59VLD_20190101T000001_SCL_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R10m/T59VLD_20190101T000001_WVP_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R10m/T59VLD_20190101T000001_TCI_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/QI_DATA/T59VLD_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/DATASTRIP/DS_ESRI_20201007T214700_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLD_20201007T214659&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLD_20201007T214659&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[168.0248299,56.7186706],[168.0566339,56.7805585],[168.1316558,56.9253382],[168.2073044,57.0700763],[168.2833419,57.2147439],[168.3593607,57.3593779],[168.4360153,57.503925],[168.512931,57.6484409],[168.5485144,57.7152152],[169.4851834,57.7332409],[169.5250943,56.7472276],[168.0248299,56.7186706]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VLD","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214700_A018417_T59VLD_N02.12","eo:cloud_cover":55.594647,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214700_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:59.470Z","sat:relative_orbit":116,"s2:water_percentage":44.404691,"s2:mean_solar_zenith":80.9051419404905,"s2:mean_solar_azimuth":168.768469936127,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000321,"s2:thin_cirrus_percentage":5.910252,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":32.861981,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.000341,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":36.735585,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":12.94881,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VLC_20201007T214705","bbox":[167.7735556,55.8158913,169.5593013,56.8350599],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VLC_20201007T214705"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLC_20201007T214705","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R10m/T59VLC_20190101T000001_AOT_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R60m/T59VLC_20190101T000001_B01_60m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R10m/T59VLC_20190101T000001_B02_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R10m/T59VLC_20190101T000001_B03_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R10m/T59VLC_20190101T000001_B04_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R20m/T59VLC_20190101T000001_B05_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R20m/T59VLC_20190101T000001_B06_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R20m/T59VLC_20190101T000001_B07_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R10m/T59VLC_20190101T000001_B08_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R60m/T59VLC_20190101T000001_B09_60m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R20m/T59VLC_20190101T000001_B11_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R20m/T59VLC_20190101T000001_B12_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R20m/T59VLC_20190101T000001_B8A_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R20m/T59VLC_20190101T000001_SCL_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R10m/T59VLC_20190101T000001_WVP_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R10m/T59VLC_20190101T000001_TCI_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/QI_DATA/T59VLC_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/DATASTRIP/DS_ESRI_20201007T214706_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLC_20201007T214705&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLC_20201007T214705&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[167.7735556,56.2203813],[167.8363648,56.346253],[167.9090417,56.4910297],[167.9822386,56.6357914],[168.0566339,56.7805585],[168.0705485,56.8074113],[169.5216425,56.8350599],[169.5593013,55.848888],[167.8077653,55.8158913],[167.7735556,56.2203813]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VLC","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214706_A018417_T59VLC_N02.12","eo:cloud_cover":63.922611,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214706_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:05.475Z","sat:relative_orbit":116,"s2:water_percentage":36.076203,"s2:mean_solar_zenith":80.012007691967,"s2:mean_solar_azimuth":168.847346978917,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000345,"s2:thin_cirrus_percentage":7.904284,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":5.672317,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.000841,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":43.581641,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":12.436686,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59UNV_20201007T214655","bbox":[170.9996938,53.2511067,171.5081055,54.1481041],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59UNV_20201007T214655"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UNV_20201007T214655","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R10m/T59UNV_20190101T000001_AOT_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R60m/T59UNV_20190101T000001_B01_60m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R10m/T59UNV_20190101T000001_B02_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R10m/T59UNV_20190101T000001_B03_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R10m/T59UNV_20190101T000001_B04_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R20m/T59UNV_20190101T000001_B05_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R20m/T59UNV_20190101T000001_B06_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R20m/T59UNV_20190101T000001_B07_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R10m/T59UNV_20190101T000001_B08_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R60m/T59UNV_20190101T000001_B09_60m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R20m/T59UNV_20190101T000001_B11_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R20m/T59UNV_20190101T000001_B12_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R20m/T59UNV_20190101T000001_B8A_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R20m/T59UNV_20190101T000001_SCL_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R10m/T59UNV_20190101T000001_WVP_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R10m/T59UNV_20190101T000001_TCI_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/QI_DATA/T59UNV_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/DATASTRIP/DS_ESRI_20201007T214656_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UNV_20201007T214655&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UNV_20201007T214655&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[171.5081055,54.1445567],[171.4914934,54.1161307],[171.4081617,53.9728945],[171.3253666,53.8295761],[171.2432229,53.6862701],[171.1625342,53.542953],[171.0822745,53.3996],[171.002554,53.256233],[170.9997002,53.2511067],[170.9996938,54.1481041],[171.5081055,54.1445567]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59UNV","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214656_A018417_T59UNV_N02.12","eo:cloud_cover":77.817121,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214656_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:55.472Z","sat:relative_orbit":116,"s2:water_percentage":22.181191,"s2:mean_solar_zenith":77.0546404778745,"s2:mean_solar_azimuth":171.859785963883,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":14.038783,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":86.240458,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.001688,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":46.108884,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":17.669454,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59UNB_20201007T214702","bbox":[170.9996798,54.9521344,172.5941001,55.9457344],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59UNB_20201007T214702"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UNB_20201007T214702","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R10m/T59UNB_20190101T000001_AOT_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R60m/T59UNB_20190101T000001_B01_60m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R10m/T59UNB_20190101T000001_B02_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R10m/T59UNB_20190101T000001_B03_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R10m/T59UNB_20190101T000001_B04_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R20m/T59UNB_20190101T000001_B05_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R20m/T59UNB_20190101T000001_B06_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R20m/T59UNB_20190101T000001_B07_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R10m/T59UNB_20190101T000001_B08_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R60m/T59UNB_20190101T000001_B09_60m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R20m/T59UNB_20190101T000001_B11_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R20m/T59UNB_20190101T000001_B12_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R20m/T59UNB_20190101T000001_B8A_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R20m/T59UNB_20190101T000001_SCL_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R10m/T59UNB_20190101T000001_WVP_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R10m/T59UNB_20190101T000001_TCI_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/QI_DATA/T59UNB_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/DATASTRIP/DS_ESRI_20201007T214702_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UNB_20201007T214702&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UNB_20201007T214702&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[172.5941001,55.9343659],[172.5277954,55.8300628],[172.4378543,55.6874761],[172.3489833,55.5448928],[172.2611007,55.4022816],[172.173941,55.2596104],[172.0872938,55.1169237],[172.0011954,54.9741752],[171.9879443,54.9521344],[170.9996877,54.9590989],[170.9996798,55.9457344],[172.5941001,55.9343659]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59UNB","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214702_A018417_T59UNB_N02.12","eo:cloud_cover":49.164228,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214702_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:02.155Z","sat:relative_orbit":116,"s2:water_percentage":50.833344,"s2:mean_solar_zenith":78.8408222905407,"s2:mean_solar_azimuth":171.837361671113,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000737,"s2:thin_cirrus_percentage":6.896076,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":25.769216,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.001694,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":27.537099,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":14.731054,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59UNA_20201007T214658","bbox":[170.999687,54.0570157,172.0406816,55.046986],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59UNA_20201007T214658"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UNA_20201007T214658","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R10m/T59UNA_20190101T000001_AOT_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R60m/T59UNA_20190101T000001_B01_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R10m/T59UNA_20190101T000001_B02_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R10m/T59UNA_20190101T000001_B03_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R10m/T59UNA_20190101T000001_B04_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R20m/T59UNA_20190101T000001_B05_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R20m/T59UNA_20190101T000001_B06_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R20m/T59UNA_20190101T000001_B07_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R10m/T59UNA_20190101T000001_B08_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R60m/T59UNA_20190101T000001_B09_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R20m/T59UNA_20190101T000001_B11_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R20m/T59UNA_20190101T000001_B12_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R20m/T59UNA_20190101T000001_B8A_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R20m/T59UNA_20190101T000001_SCL_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R10m/T59UNA_20190101T000001_WVP_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R10m/T59UNA_20190101T000001_TCI_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/QI_DATA/T59UNA_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/DATASTRIP/DS_ESRI_20201007T214659_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UNA_20201007T214658&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UNA_20201007T214658&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[172.0406816,55.0396421],[172.0011954,54.9741752],[171.9153067,54.8313144],[171.8296036,54.6884415],[171.7443221,54.5454719],[171.6596327,54.4024083],[171.5751736,54.259321],[171.4914934,54.1161307],[171.4571016,54.0570157],[170.9996944,54.0602038],[170.999687,55.046986],[172.0406816,55.0396421]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59UNA","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214659_A018417_T59UNA_N02.12","eo:cloud_cover":51.156402,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214659_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:58.849Z","sat:relative_orbit":116,"s2:water_percentage":48.842266,"s2:mean_solar_zenith":77.947887124516,"s2:mean_solar_azimuth":171.849084916801,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000105,"s2:thin_cirrus_percentage":8.473764,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":55.938154,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.001227,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":28.170443,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":14.512196,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59UMV_20201007T214700","bbox":[169.4686867,53.1598035,171.1494256,54.1480114],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59UMV_20201007T214700"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMV_20201007T214700","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R10m/T59UMV_20190101T000001_AOT_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R60m/T59UMV_20190101T000001_B01_60m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R10m/T59UMV_20190101T000001_B02_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R10m/T59UMV_20190101T000001_B03_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R10m/T59UMV_20190101T000001_B04_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R20m/T59UMV_20190101T000001_B05_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R20m/T59UMV_20190101T000001_B06_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R20m/T59UMV_20190101T000001_B07_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R10m/T59UMV_20190101T000001_B08_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R60m/T59UMV_20190101T000001_B09_60m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R20m/T59UMV_20190101T000001_B11_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R20m/T59UMV_20190101T000001_B12_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R20m/T59UMV_20190101T000001_B8A_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R20m/T59UMV_20190101T000001_SCL_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R10m/T59UMV_20190101T000001_WVP_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R10m/T59UMV_20190101T000001_TCI_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/QI_DATA/T59UMV_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/DATASTRIP/DS_ESRI_20201007T214700_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMV_20201007T214700&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMV_20201007T214700&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[170.920023,53.1598035],[170.5859106,53.2382524],[170.5858481,53.2381389],[170.5818417,53.2390065],[170.5715059,53.2414377],[170.5715544,53.2415269],[170.4881199,53.2595707],[170.241725,53.3134623],[170.2414849,53.3130153],[170.2140742,53.3188367],[170.2142223,53.3191101],[169.888316,53.3887888],[169.888287,53.3887344],[169.8882022,53.3887514],[169.8761292,53.3913363],[169.8245933,53.4016224],[169.547882,53.4571199],[169.5477555,53.456877],[169.5223322,53.4619513],[169.5223865,53.4620546],[169.5223445,53.4620627],[169.5223728,53.4621167],[169.4927014,53.4678671],[169.4686867,54.1383655],[171.1494256,54.1480114],[171.1472151,53.5155914],[171.0822745,53.3996],[171.002554,53.256233],[170.9489634,53.1599675],[170.920023,53.1598035]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59UMV","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214700_A018417_T59UMV_N02.12","eo:cloud_cover":57.216261,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214700_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:00.481Z","sat:relative_orbit":116,"s2:water_percentage":42.782381,"s2:mean_solar_zenith":77.1918970992433,"s2:mean_solar_azimuth":170.454376844871,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000316,"s2:thin_cirrus_percentage":15.719998,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":16.059691,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.001043,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":27.611098,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":13.885166,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59UMU_20201007T214652","bbox":[170.5501576,53.1538128,170.998359,53.2486974],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59UMU_20201007T214652"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMU_20201007T214652","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R10m/T59UMU_20190101T000001_AOT_10m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R60m/T59UMU_20190101T000001_B01_60m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R10m/T59UMU_20190101T000001_B02_10m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R10m/T59UMU_20190101T000001_B03_10m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R10m/T59UMU_20190101T000001_B04_10m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R20m/T59UMU_20190101T000001_B05_20m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R20m/T59UMU_20190101T000001_B06_20m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R20m/T59UMU_20190101T000001_B07_20m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R10m/T59UMU_20190101T000001_B08_10m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R60m/T59UMU_20190101T000001_B09_60m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R20m/T59UMU_20190101T000001_B11_20m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R20m/T59UMU_20190101T000001_B12_20m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R20m/T59UMU_20190101T000001_B8A_20m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R20m/T59UMU_20190101T000001_SCL_20m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R10m/T59UMU_20190101T000001_WVP_10m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R10m/T59UMU_20190101T000001_TCI_10m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/QI_DATA/T59UMU_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/DATASTRIP/DS_ESRI_20201007T214653_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMU_20201007T214652&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMU_20201007T214652&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[170.9455371,53.1538128],[170.5859106,53.2382524],[170.5858481,53.2381389],[170.5818417,53.2390065],[170.5715059,53.2414377],[170.5715544,53.2415269],[170.5501576,53.2461543],[170.998359,53.2486974],[170.9455371,53.1538128]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59UMU","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214653_A018417_T59UMU_N02.12","eo:cloud_cover":48.505437,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214653_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:52.456Z","sat:relative_orbit":116,"s2:water_percentage":51.483786,"s2:mean_solar_zenith":76.2984803519533,"s2:mean_solar_azimuth":170.488657346167,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.002395,"s2:thin_cirrus_percentage":7.239571,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.614538,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.008382,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":27.906749,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":13.359118,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59UMB_20201007T214700","bbox":[169.3985631,54.949066,171.1562717,55.9456353],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59UMB_20201007T214700"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMB_20201007T214700","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R10m/T59UMB_20190101T000001_AOT_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R60m/T59UMB_20190101T000001_B01_60m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R10m/T59UMB_20190101T000001_B02_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R10m/T59UMB_20190101T000001_B03_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R10m/T59UMB_20190101T000001_B04_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R20m/T59UMB_20190101T000001_B05_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R20m/T59UMB_20190101T000001_B06_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R20m/T59UMB_20190101T000001_B07_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R10m/T59UMB_20190101T000001_B08_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R60m/T59UMB_20190101T000001_B09_60m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R20m/T59UMB_20190101T000001_B11_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R20m/T59UMB_20190101T000001_B12_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R20m/T59UMB_20190101T000001_B8A_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R20m/T59UMB_20190101T000001_SCL_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R10m/T59UMB_20190101T000001_WVP_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R10m/T59UMB_20190101T000001_TCI_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/QI_DATA/T59UMB_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/DATASTRIP/DS_ESRI_20201007T214700_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMB_20201007T214700&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMB_20201007T214700&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[169.3985631,55.9353271],[171.1562717,55.9456353],[171.1524197,54.9590034],[169.4380183,54.949066],[169.3985631,55.9353271]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59UMB","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214700_A018417_T59UMB_N02.12","eo:cloud_cover":36.532733,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214700_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:00.237Z","sat:relative_orbit":116,"s2:water_percentage":63.463205,"s2:mean_solar_zenith":78.9789714784931,"s2:mean_solar_azimuth":170.377065505293,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000919,"s2:thin_cirrus_percentage":5.055375,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":3e-6,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.003139,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":21.019831,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":10.457527,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59UMA_20201007T214658","bbox":[169.4346016,54.0504964,171.1527533,55.0468902],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59UMA_20201007T214658"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMA_20201007T214658","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R10m/T59UMA_20190101T000001_AOT_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R60m/T59UMA_20190101T000001_B01_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R10m/T59UMA_20190101T000001_B02_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R10m/T59UMA_20190101T000001_B03_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R10m/T59UMA_20190101T000001_B04_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R20m/T59UMA_20190101T000001_B05_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R20m/T59UMA_20190101T000001_B06_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R20m/T59UMA_20190101T000001_B07_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R10m/T59UMA_20190101T000001_B08_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R60m/T59UMA_20190101T000001_B09_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R20m/T59UMA_20190101T000001_B11_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R20m/T59UMA_20190101T000001_B12_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R20m/T59UMA_20190101T000001_B8A_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R20m/T59UMA_20190101T000001_SCL_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R10m/T59UMA_20190101T000001_WVP_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R10m/T59UMA_20190101T000001_TCI_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/QI_DATA/T59UMA_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/DATASTRIP/DS_ESRI_20201007T214659_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMA_20201007T214658&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMA_20201007T214658&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[169.4346016,55.0369205],[171.1527533,55.0468902],[171.14911,54.0601114],[169.4719201,54.0504964],[169.4346016,55.0369205]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59UMA","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214659_A018417_T59UMA_N02.12","eo:cloud_cover":29.928113,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214659_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:58.961Z","sat:relative_orbit":116,"s2:water_percentage":70.06951,"s2:mean_solar_zenith":78.0855753443794,"s2:mean_solar_azimuth":170.417185320069,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000909,"s2:thin_cirrus_percentage":6.127219,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.001466,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":15.109012,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":8.691882,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59ULV_20201007T214655","bbox":[167.9404063,53.4382584,169.6419256,54.1401868],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59ULV_20201007T214655"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59ULV_20201007T214655","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R10m/T59ULV_20190101T000001_AOT_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R60m/T59ULV_20190101T000001_B01_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R10m/T59ULV_20190101T000001_B02_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R10m/T59ULV_20190101T000001_B03_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R10m/T59ULV_20190101T000001_B04_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R20m/T59ULV_20190101T000001_B05_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R20m/T59ULV_20190101T000001_B06_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R20m/T59ULV_20190101T000001_B07_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R10m/T59ULV_20190101T000001_B08_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R60m/T59ULV_20190101T000001_B09_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R20m/T59ULV_20190101T000001_B11_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R20m/T59ULV_20190101T000001_B12_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R20m/T59ULV_20190101T000001_B8A_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R20m/T59ULV_20190101T000001_SCL_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R10m/T59ULV_20190101T000001_WVP_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R10m/T59ULV_20190101T000001_TCI_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/QI_DATA/T59ULV_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/DATASTRIP/DS_ESRI_20201007T214655_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59ULV_20201007T214655&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59ULV_20201007T214655&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[169.6419256,53.4382584],[169.547882,53.4571199],[169.5477555,53.456877],[169.5223322,53.4619513],[169.5223865,53.4620546],[169.5223445,53.4620627],[169.5223728,53.4621167],[169.1985493,53.5248748],[169.1985077,53.5247943],[169.1823189,53.5279303],[169.1825844,53.5284486],[168.8572435,53.5881909],[168.8571054,53.5879172],[168.8533253,53.588611],[168.8532532,53.5884686],[168.8328761,53.5920195],[168.8328831,53.5920333],[168.52898,53.644976],[168.4982958,53.650323],[168.4980643,53.6503618],[168.4886014,53.6520103],[168.4887086,53.6522266],[168.4842743,53.6529682],[168.4844276,53.6532775],[168.1541032,53.7086836],[168.1539694,53.7084089],[168.1356681,53.7112412],[168.1356686,53.7112423],[167.9670061,53.7373763],[167.9404063,54.1092064],[169.6192567,54.1401868],[169.6419256,53.4382584]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59ULV","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214655_A018417_T59ULV_N02.12","eo:cloud_cover":30.278842,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214655_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:55.205Z","sat:relative_orbit":116,"s2:water_percentage":69.717115,"s2:mean_solar_zenith":77.3316232152988,"s2:mean_solar_azimuth":169.052973251802,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001415,"s2:thin_cirrus_percentage":4.778481,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":45.827666,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.002627,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":17.832062,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":7.6683,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59ULB_20201007T214700","bbox":[167.8005114,54.9190265,169.5916013,55.9372733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59ULB_20201007T214700"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59ULB_20201007T214700","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R10m/T59ULB_20190101T000001_AOT_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R60m/T59ULB_20190101T000001_B01_60m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R10m/T59ULB_20190101T000001_B02_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R10m/T59ULB_20190101T000001_B03_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R10m/T59ULB_20190101T000001_B04_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R20m/T59ULB_20190101T000001_B05_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R20m/T59ULB_20190101T000001_B06_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R20m/T59ULB_20190101T000001_B07_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R10m/T59ULB_20190101T000001_B08_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R60m/T59ULB_20190101T000001_B09_60m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R20m/T59ULB_20190101T000001_B11_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R20m/T59ULB_20190101T000001_B12_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R20m/T59ULB_20190101T000001_B8A_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R20m/T59ULB_20190101T000001_SCL_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R10m/T59ULB_20190101T000001_WVP_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R10m/T59ULB_20190101T000001_TCI_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/QI_DATA/T59ULB_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/DATASTRIP/DS_ESRI_20201007T214704_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59ULB_20201007T214700&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59ULB_20201007T214700&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[167.8005114,55.9041676],[169.5560221,55.9372733],[169.5916013,54.9509423],[167.8792201,54.9190265],[167.8005114,55.9041676]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59ULB","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214704_A018417_T59ULB_N02.12","eo:cloud_cover":54.928702,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214704_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:00.207Z","sat:relative_orbit":116,"s2:water_percentage":45.068285,"s2:mean_solar_zenith":79.1191506436369,"s2:mean_solar_azimuth":168.920890123023,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.00069,"s2:thin_cirrus_percentage":5.835296,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.002322,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":36.353824,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":12.739582,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59ULA_20201007T214701","bbox":[167.872404,54.0214307,169.6221725,55.0388029],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59ULA_20201007T214701"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59ULA_20201007T214701","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R10m/T59ULA_20190101T000001_AOT_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R60m/T59ULA_20190101T000001_B01_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R10m/T59ULA_20190101T000001_B02_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R10m/T59ULA_20190101T000001_B03_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R10m/T59ULA_20190101T000001_B04_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R20m/T59ULA_20190101T000001_B05_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R20m/T59ULA_20190101T000001_B06_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R20m/T59ULA_20190101T000001_B07_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R10m/T59ULA_20190101T000001_B08_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R60m/T59ULA_20190101T000001_B09_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R20m/T59ULA_20190101T000001_B11_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R20m/T59ULA_20190101T000001_B12_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R20m/T59ULA_20190101T000001_B8A_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R20m/T59ULA_20190101T000001_SCL_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R10m/T59ULA_20190101T000001_WVP_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R10m/T59ULA_20190101T000001_TCI_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/QI_DATA/T59ULA_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/DATASTRIP/DS_ESRI_20201007T214706_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59ULA_20201007T214701&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59ULA_20201007T214701&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[167.872404,55.0067836],[169.5885203,55.0388029],[169.6221725,54.0523118],[167.9468576,54.0214307],[167.872404,55.0067836]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59ULA","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214706_A018417_T59ULA_N02.12","eo:cloud_cover":39.081608,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214706_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:01.899Z","sat:relative_orbit":116,"s2:water_percentage":60.785997,"s2:mean_solar_zenith":78.2255120530201,"s2:mean_solar_azimuth":168.989351229258,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001204,"s2:thin_cirrus_percentage":4.874559,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.054399,"s2:dark_features_percentage":0.074701,"s2:not_vegetated_percentage":0.002087,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":24.299634,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":9.907416,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T58VFJ_20201007T214649","bbox":[168.02397413580755,56.708800777329145,168.51672339800558,57.65555748058229],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T58VFJ_20201007T214649"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58VFJ_20201007T214649","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R10m/T58VFJ_20190101T000001_AOT_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R60m/T58VFJ_20190101T000001_B01_60m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R10m/T58VFJ_20190101T000001_B02_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R10m/T58VFJ_20190101T000001_B03_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R10m/T58VFJ_20190101T000001_B04_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R20m/T58VFJ_20190101T000001_B05_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R20m/T58VFJ_20190101T000001_B06_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R20m/T58VFJ_20190101T000001_B07_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R10m/T58VFJ_20190101T000001_B08_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R60m/T58VFJ_20190101T000001_B09_60m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R20m/T58VFJ_20190101T000001_B11_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R20m/T58VFJ_20190101T000001_B12_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R20m/T58VFJ_20190101T000001_B8A_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R20m/T58VFJ_20190101T000001_SCL_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R10m/T58VFJ_20190101T000001_WVP_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R10m/T58VFJ_20190101T000001_TCI_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/QI_DATA/T58VFJ_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/DATASTRIP/DS_ESRI_20201007T214650_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58VFJ_20201007T214649&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58VFJ_20201007T214649&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[168.02397414,56.71700529],[168.05663389,56.78055847],[168.13165579,56.92533825],[168.2073044,57.07007627],[168.28334192,57.21474394],[168.35936067,57.3593779],[168.43601534,57.50392495],[168.51293105,57.64844091],[168.5167234,57.65555748],[168.42770995,56.70880078],[168.02397414,56.71700529]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32658,"instruments":["msi"],"s2:mgrs_tile":"58VFJ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214650_A018417_T58VFJ_N02.12","eo:cloud_cover":59.202906,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214650_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:49.743Z","sat:relative_orbit":116,"s2:water_percentage":40.797034,"s2:mean_solar_zenith":81.0141636351399,"s2:mean_solar_azimuth":167.82290118242,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000062,"s2:thin_cirrus_percentage":6.221464,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":89.22708,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":41.186196,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":11.795247,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T58VFH_20201007T214652","bbox":[167.57911051323615,55.81173603255935,168.43571634947202,56.80396955834615],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T58VFH_20201007T214652"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58VFH_20201007T214652","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R10m/T58VFH_20190101T000001_AOT_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R60m/T58VFH_20190101T000001_B01_60m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R10m/T58VFH_20190101T000001_B02_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R10m/T58VFH_20190101T000001_B03_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R10m/T58VFH_20190101T000001_B04_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R20m/T58VFH_20190101T000001_B05_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R20m/T58VFH_20190101T000001_B06_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R20m/T58VFH_20190101T000001_B07_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R10m/T58VFH_20190101T000001_B08_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R60m/T58VFH_20190101T000001_B09_60m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R20m/T58VFH_20190101T000001_B11_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R20m/T58VFH_20190101T000001_B12_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R20m/T58VFH_20190101T000001_B8A_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R20m/T58VFH_20190101T000001_SCL_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R10m/T58VFH_20190101T000001_WVP_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R10m/T58VFH_20190101T000001_TCI_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/QI_DATA/T58VFH_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/DATASTRIP/DS_ESRI_20201007T214656_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58VFH_20201007T214652&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58VFH_20201007T214652&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[167.57911051,55.82720731],[167.62082547,55.91178636],[167.69261595,56.05665564],[167.76412102,56.20147411],[167.83636482,56.34625304],[167.90904175,56.49102966],[167.98223861,56.63579142],[168.05663389,56.78055847],[168.06876504,56.80396956],[168.43571635,56.79650515],[168.34836129,55.81173603],[167.57911051,55.82720731]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32658,"instruments":["msi"],"s2:mgrs_tile":"58VFH","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214656_A018417_T58VFH_N02.12","eo:cloud_cover":93.616579,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214656_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:52.128Z","sat:relative_orbit":116,"s2:water_percentage":6.383418,"s2:mean_solar_zenith":80.1366374152144,"s2:mean_solar_azimuth":167.792107169834,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":3.150427,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":67.879987,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":79.232234,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":11.233918,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T58UGE_20201007T214656","bbox":[168.03167054149293,53.43367516404931,169.73349037163308,54.10922199205192],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T58UGE_20201007T214656"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UGE_20201007T214656","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R10m/T58UGE_20190101T000001_AOT_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R60m/T58UGE_20190101T000001_B01_60m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R10m/T58UGE_20190101T000001_B02_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R10m/T58UGE_20190101T000001_B03_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R10m/T58UGE_20190101T000001_B04_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R20m/T58UGE_20190101T000001_B05_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R20m/T58UGE_20190101T000001_B06_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R20m/T58UGE_20190101T000001_B07_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R10m/T58UGE_20190101T000001_B08_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R60m/T58UGE_20190101T000001_B09_60m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R20m/T58UGE_20190101T000001_B11_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R20m/T58UGE_20190101T000001_B12_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R20m/T58UGE_20190101T000001_B8A_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R20m/T58UGE_20190101T000001_SCL_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R10m/T58UGE_20190101T000001_WVP_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R10m/T58UGE_20190101T000001_TCI_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/QI_DATA/T58UGE_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/DATASTRIP/DS_ESRI_20201007T214700_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UGE_20201007T214656&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UGE_20201007T214656&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[169.66477789,53.43367516],[169.547882,53.45711992],[169.5477555,53.45687704],[169.5223322,53.46195133],[169.52238647,53.46205455],[169.52234448,53.46206269],[169.52237281,53.46211668],[169.19854928,53.52487482],[169.19850765,53.52479431],[169.1823189,53.52793029],[169.18258437,53.52844861],[168.85724347,53.58819089],[168.85710541,53.58791718],[168.85332533,53.58861101],[168.85325319,53.58846858],[168.83287609,53.59201946],[168.8328831,53.59203326],[168.52898003,53.64497597],[168.49829583,53.65032295],[168.4980643,53.65036177],[168.48860141,53.65201029],[168.48870858,53.65222656],[168.4842743,53.65296821],[168.4844276,53.65327751],[168.15410324,53.70868356],[168.15396936,53.70840887],[168.13566809,53.71124124],[168.13566862,53.71124232],[168.03167054,53.72735667],[168.05898273,54.10922199],[169.73349037,54.05491086],[169.66477789,53.43367516]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32658,"instruments":["msi"],"s2:mgrs_tile":"58UGE","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214700_A018417_T58UGE_N02.12","eo:cloud_cover":28.829971,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214700_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:56.817Z","sat:relative_orbit":116,"s2:water_percentage":71.166301,"s2:mean_solar_zenith":77.2849995859816,"s2:mean_solar_azimuth":169.096315723147,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001315,"s2:thin_cirrus_percentage":4.753962,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":49.301356,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.002415,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":16.797614,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":7.278395,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T58UFG_20201007T214655","bbox":[167.14767598501928,54.915007227282395,168.35596828769133,55.914769428138115],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T58UFG_20201007T214655"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UFG_20201007T214655","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R10m/T58UFG_20190101T000001_AOT_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R60m/T58UFG_20190101T000001_B01_60m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R10m/T58UFG_20190101T000001_B02_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R10m/T58UFG_20190101T000001_B03_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R10m/T58UFG_20190101T000001_B04_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R20m/T58UFG_20190101T000001_B05_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R20m/T58UFG_20190101T000001_B06_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R20m/T58UFG_20190101T000001_B07_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R10m/T58UFG_20190101T000001_B08_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R60m/T58UFG_20190101T000001_B09_60m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R20m/T58UFG_20190101T000001_B11_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R20m/T58UFG_20190101T000001_B12_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R20m/T58UFG_20190101T000001_B8A_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R20m/T58UFG_20190101T000001_SCL_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R10m/T58UFG_20190101T000001_WVP_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R10m/T58UFG_20190101T000001_TCI_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/QI_DATA/T58UFG_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/DATASTRIP/DS_ESRI_20201007T214659_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UFG_20201007T214655&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UFG_20201007T214655&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[167.14767599,54.93740743],[167.1972976,55.04142453],[167.2669293,55.1866026],[167.33699485,55.33174649],[167.40751043,55.47681996],[167.47830065,55.62186754],[167.54934675,55.76685988],[167.62082547,55.91178636],[167.62230373,55.91476943],[168.35596829,55.89999859],[168.27342673,54.91500723],[167.14767599,54.93740743]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32658,"instruments":["msi"],"s2:mgrs_tile":"58UFG","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214659_A018417_T58UFG_N02.12","eo:cloud_cover":91.766967,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214659_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:55.291Z","sat:relative_orbit":116,"s2:water_percentage":8.232935,"s2:mean_solar_zenith":79.2591738489365,"s2:mean_solar_azimuth":167.761341202946,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000025,"s2:thin_cirrus_percentage":1.596935,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":46.30366,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.000074,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":73.709834,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":16.460198,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T58UFF_20201007T214659","bbox":[166.73488088257838,54.017541579537756,168.28057485944203,55.02449012823225],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T58UFF_20201007T214659"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UFF_20201007T214659","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R10m/T58UFF_20190101T000001_AOT_10m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R60m/T58UFF_20190101T000001_B01_60m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R10m/T58UFF_20190101T000001_B02_10m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R10m/T58UFF_20190101T000001_B03_10m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R10m/T58UFF_20190101T000001_B04_10m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R20m/T58UFF_20190101T000001_B05_20m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R20m/T58UFF_20190101T000001_B06_20m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R20m/T58UFF_20190101T000001_B07_20m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R10m/T58UFF_20190101T000001_B08_10m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R60m/T58UFF_20190101T000001_B09_60m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R20m/T58UFF_20190101T000001_B11_20m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R20m/T58UFF_20190101T000001_B12_20m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R20m/T58UFF_20190101T000001_B8A_20m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R20m/T58UFF_20190101T000001_SCL_20m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R10m/T58UFF_20190101T000001_WVP_10m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R10m/T58UFF_20190101T000001_TCI_10m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/QI_DATA/T58UFF_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/DATASTRIP/DS_ESRI_20201007T214700_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UFF_20201007T214659&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UFF_20201007T214659&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[166.73488088,54.04642257],[166.79130902,54.1700534],[166.85782436,54.31532116],[166.92458743,54.46051249],[166.99145156,54.60574237],[167.05906459,54.75095048],[167.12801571,54.89619546],[167.18921901,55.02449013],[168.28057486,55.00275121],[168.20249454,54.01754158],[166.73488088,54.04642257]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32658,"instruments":["msi"],"s2:mgrs_tile":"58UFF","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214700_A018417_T58UFF_N02.12","eo:cloud_cover":54.05283,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214700_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:59.112Z","sat:relative_orbit":116,"s2:water_percentage":35.912052,"s2:mean_solar_zenith":78.3807395454408,"s2:mean_solar_azimuth":167.730255931645,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":10.000008,"s2:vegetation_percentage":0.00029,"s2:thin_cirrus_percentage":8.186978,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":24.412885,"s2:unclassified_percentage":0.0009,"s2:dark_features_percentage":0.032886,"s2:not_vegetated_percentage":0.001036,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":27.231073,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":18.634778,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T58UFE_20201007T214651","bbox":[166.67812756492967,53.70447660646306,168.20926008487336,54.133567285555],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T58UFE_20201007T214651"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UFE_20201007T214651","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R10m/T58UFE_20190101T000001_AOT_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R60m/T58UFE_20190101T000001_B01_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R10m/T58UFE_20190101T000001_B02_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R10m/T58UFE_20190101T000001_B03_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R10m/T58UFE_20190101T000001_B04_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R20m/T58UFE_20190101T000001_B05_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R20m/T58UFE_20190101T000001_B06_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R20m/T58UFE_20190101T000001_B07_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R10m/T58UFE_20190101T000001_B08_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R60m/T58UFE_20190101T000001_B09_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R20m/T58UFE_20190101T000001_B11_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R20m/T58UFE_20190101T000001_B12_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R20m/T58UFE_20190101T000001_B8A_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R20m/T58UFE_20190101T000001_SCL_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R10m/T58UFE_20190101T000001_WVP_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R10m/T58UFE_20190101T000001_TCI_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/QI_DATA/T58UFE_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/DATASTRIP/DS_ESRI_20201007T214651_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UFE_20201007T214651&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UFE_20201007T214651&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[168.17918459,53.70447661],[168.15410324,53.70868356],[168.15396936,53.70840887],[168.13566809,53.71124124],[168.13566862,53.71124232],[167.7818615,53.76606423],[167.78213055,53.76662638],[167.70973419,53.7775365],[167.43621299,53.81916294],[167.4362027,53.81914102],[167.07304035,53.86842047],[167.07297417,53.86827829],[167.0507299,53.87130988],[167.05114642,53.87221361],[166.67812756,53.92219682],[166.72496754,54.02470301],[166.77465586,54.13356729],[168.20926008,54.10530484],[168.17918459,53.70447661]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32658,"instruments":["msi"],"s2:mgrs_tile":"58UFE","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214651_A018417_T58UFE_N02.12","eo:cloud_cover":46.556288,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214651_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:51.833Z","sat:relative_orbit":116,"s2:water_percentage":53.441292,"s2:mean_solar_zenith":77.5018652279848,"s2:mean_solar_azimuth":167.69870255737,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.00078,"s2:thin_cirrus_percentage":3.832854,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":72.345239,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.001644,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":29.095054,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":13.62838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '20547' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:55:45 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125544Z-167d46d96d896m2xhC1DENauaw0000000780000000000wzf status: code: 200 message: OK - request: body: '{"datetime": "2019-01-01T00:00:01Z/2019-01-01T00:00:10Z", "collections": ["sentinel-2-l2a"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '92' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"S2A_MSIL2A_20190101T000001_R116_T60VUK_20201007T214652","bbox":[173.57964734454623,57.61010611826214,174.14549370977366,58.36983552363622],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T60VUK_20201007T214652"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T60VUK_20201007T214652","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R10m/T60VUK_20190101T000001_AOT_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R60m/T60VUK_20190101T000001_B01_60m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R10m/T60VUK_20190101T000001_B02_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R10m/T60VUK_20190101T000001_B03_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R10m/T60VUK_20190101T000001_B04_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R20m/T60VUK_20190101T000001_B05_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R20m/T60VUK_20190101T000001_B06_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R20m/T60VUK_20190101T000001_B07_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R10m/T60VUK_20190101T000001_B08_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R60m/T60VUK_20190101T000001_B09_60m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R20m/T60VUK_20190101T000001_B11_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R20m/T60VUK_20190101T000001_B12_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R20m/T60VUK_20190101T000001_B8A_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R20m/T60VUK_20190101T000001_SCL_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R10m/T60VUK_20190101T000001_WVP_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/IMG_DATA/R10m/T60VUK_20190101T000001_TCI_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/QI_DATA/T60VUK_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/GRANULE/L2A_T60VUK_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UK/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE/DATASTRIP/DS_ESRI_20201007T214653_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T60VUK_20201007T214652&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T60VUK_20201007T214652&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[173.57964734,58.36983552],[173.74200172,58.33549604],[173.74156018,58.33486558],[173.74585109,58.33388251],[173.74562704,58.33356289],[173.89398827,58.29994353],[174.14549371,58.24232236],[174.04607417,58.1026172],[173.9463487,57.96108179],[173.84707369,57.81948251],[173.74837088,57.6777999],[173.70218084,57.61107233],[173.65192537,57.61010612],[173.57964734,58.36983552]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32660,"instruments":["msi"],"s2:mgrs_tile":"60VUK","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214653_A018417_T60VUK_N02.12","eo:cloud_cover":56.297088,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T60VUK_20201007T214652.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214653_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:52.987Z","sat:relative_orbit":116,"s2:water_percentage":43.694827,"s2:mean_solar_zenith":81.3310068623942,"s2:mean_solar_azimuth":174.189052091779,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000216,"s2:thin_cirrus_percentage":6.031071,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":87.684971,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.007867,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":27.443218,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":22.822799,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T60VUJ_20201007T214652","bbox":[173.6438298900325,57.54638536228822,173.76391737983067,57.700116068258254],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T60VUJ_20201007T214652"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T60VUJ_20201007T214652","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R10m/T60VUJ_20190101T000001_AOT_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R60m/T60VUJ_20190101T000001_B01_60m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R10m/T60VUJ_20190101T000001_B02_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R10m/T60VUJ_20190101T000001_B03_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R10m/T60VUJ_20190101T000001_B04_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R20m/T60VUJ_20190101T000001_B05_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R20m/T60VUJ_20190101T000001_B06_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R20m/T60VUJ_20190101T000001_B07_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R10m/T60VUJ_20190101T000001_B08_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R60m/T60VUJ_20190101T000001_B09_60m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R20m/T60VUJ_20190101T000001_B11_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R20m/T60VUJ_20190101T000001_B12_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R20m/T60VUJ_20190101T000001_B8A_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R20m/T60VUJ_20190101T000001_SCL_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R10m/T60VUJ_20190101T000001_WVP_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/IMG_DATA/R10m/T60VUJ_20190101T000001_TCI_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/QI_DATA/T60VUJ_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/GRANULE/L2A_T60VUJ_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/60/V/UJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE/DATASTRIP/DS_ESRI_20201007T214653_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T60VUJ_20201007T214652&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T60VUJ_20201007T214652&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[173.76391738,57.70011607],[173.74837088,57.6777999],[173.65740333,57.54638536],[173.64382989,57.69780505],[173.76391738,57.70011607]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32660,"instruments":["msi"],"s2:mgrs_tile":"60VUJ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214653_A018417_T60VUJ_N02.12","eo:cloud_cover":36.231313,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T60VUJ_20201007T214652.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214653_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:52.713Z","sat:relative_orbit":116,"s2:water_percentage":63.742381,"s2:mean_solar_zenith":80.4315685350907,"s2:mean_solar_azimuth":174.284559724811,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":9.083315,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":99.495572,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.026309,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":12.797543,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":14.350455,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VPE_20201007T214658","bbox":[172.675263,57.6221198,174.1454937,58.5473321],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VPE_20201007T214658"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VPE_20201007T214658","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R10m/T59VPE_20190101T000001_AOT_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R60m/T59VPE_20190101T000001_B01_60m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R10m/T59VPE_20190101T000001_B02_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R10m/T59VPE_20190101T000001_B03_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R10m/T59VPE_20190101T000001_B04_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R20m/T59VPE_20190101T000001_B05_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R20m/T59VPE_20190101T000001_B06_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R20m/T59VPE_20190101T000001_B07_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R10m/T59VPE_20190101T000001_B08_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R60m/T59VPE_20190101T000001_B09_60m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R20m/T59VPE_20190101T000001_B11_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R20m/T59VPE_20190101T000001_B12_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R20m/T59VPE_20190101T000001_B8A_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R20m/T59VPE_20190101T000001_SCL_20m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R10m/T59VPE_20190101T000001_WVP_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/IMG_DATA/R10m/T59VPE_20190101T000001_TCI_10m.tif","proj:bbox":[600000.0,6390240.0,709800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/QI_DATA/T59VPE_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/GRANULE/L2A_T59VPE_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE/DATASTRIP/DS_ESRI_20201007T214659_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VPE_20201007T214658&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VPE_20201007T214658&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[172.7183153,58.5473321],[172.9561343,58.5009701],[172.955734,58.5003797],[172.9568763,58.5001415],[172.9568697,58.5001319],[172.9595828,58.4995672],[172.9595738,58.499554],[172.9731756,58.4967383],[172.9823619,58.4948264],[173.3230933,58.4237662],[173.323182,58.4238949],[173.3233466,58.4238607],[173.3234145,58.4239592],[173.3269709,58.4232191],[173.3270069,58.4232714],[173.7420017,58.335496],[173.7415602,58.3348656],[173.7458511,58.3338825],[173.745627,58.3335629],[173.8939883,58.2999435],[174.1454937,58.2423224],[174.0460742,58.1026172],[173.9463487,57.9610818],[173.8470737,57.8194825],[173.7483709,57.6777999],[173.7098281,57.6221198],[172.675263,57.6433552],[172.7183153,58.5473321]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VPE","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214659_A018417_T59VPE_N02.12","eo:cloud_cover":60.399535,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VPE_20201007T214658.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214659_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:58.397Z","sat:relative_orbit":116,"s2:water_percentage":39.598268,"s2:mean_solar_zenith":81.3789747974823,"s2:mean_solar_azimuth":173.356424452691,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000074,"s2:thin_cirrus_percentage":5.321218,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":46.473998,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.00212,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":32.092345,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":22.985972,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VPD_20201007T214657","bbox":[172.6350802,56.7355347,173.7699385,57.7311664],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VPD_20201007T214657"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VPD_20201007T214657","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R10m/T59VPD_20190101T000001_AOT_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R60m/T59VPD_20190101T000001_B01_60m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R10m/T59VPD_20190101T000001_B02_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R10m/T59VPD_20190101T000001_B03_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R10m/T59VPD_20190101T000001_B04_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R20m/T59VPD_20190101T000001_B05_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R20m/T59VPD_20190101T000001_B06_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R20m/T59VPD_20190101T000001_B07_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R10m/T59VPD_20190101T000001_B08_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R60m/T59VPD_20190101T000001_B09_60m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R20m/T59VPD_20190101T000001_B11_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R20m/T59VPD_20190101T000001_B12_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R20m/T59VPD_20190101T000001_B8A_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R20m/T59VPD_20190101T000001_SCL_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R10m/T59VPD_20190101T000001_WVP_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/IMG_DATA/R10m/T59VPD_20190101T000001_TCI_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/QI_DATA/T59VPD_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/GRANULE/L2A_T59VPD_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE/DATASTRIP/DS_ESRI_20201007T214657_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VPD_20201007T214657&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VPD_20201007T214657&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[173.7699385,57.708759],[173.7483709,57.6777999],[173.6502383,57.5360346],[173.5528162,57.3942062],[173.4563756,57.2522968],[173.3611881,57.1103666],[173.2669319,56.9683895],[173.171904,56.8262444],[173.11216,56.7355347],[172.6350802,56.7452297],[172.6793207,57.7311664],[173.7699385,57.708759]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VPD","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214657_A018417_T59VPD_N02.12","eo:cloud_cover":46.546018,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VPD_20201007T214657.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214657_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:57.231Z","sat:relative_orbit":116,"s2:water_percentage":53.450274,"s2:mean_solar_zenith":80.4877811832994,"s2:mean_solar_azimuth":173.335687820276,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.00037,"s2:thin_cirrus_percentage":5.510974,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":56.98083,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.003339,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":23.610283,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":17.424761,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VPC_20201007T214653","bbox":[172.6013447,55.9457623,173.169284,56.8330553],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VPC_20201007T214653"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VPC_20201007T214653","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R10m/T59VPC_20190101T000001_AOT_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R60m/T59VPC_20190101T000001_B01_60m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R10m/T59VPC_20190101T000001_B02_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R10m/T59VPC_20190101T000001_B03_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R10m/T59VPC_20190101T000001_B04_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R20m/T59VPC_20190101T000001_B05_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R20m/T59VPC_20190101T000001_B06_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R20m/T59VPC_20190101T000001_B07_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R10m/T59VPC_20190101T000001_B08_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R60m/T59VPC_20190101T000001_B09_60m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R20m/T59VPC_20190101T000001_B11_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R20m/T59VPC_20190101T000001_B12_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R20m/T59VPC_20190101T000001_B8A_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R20m/T59VPC_20190101T000001_SCL_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R10m/T59VPC_20190101T000001_WVP_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/IMG_DATA/R10m/T59VPC_20190101T000001_TCI_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/QI_DATA/T59VPC_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/GRANULE/L2A_T59VPC_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/PC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE/DATASTRIP/DS_ESRI_20201007T214654_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VPC_20201007T214653&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VPC_20201007T214653&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[173.169284,56.8222665],[173.0782905,56.6841105],[172.9854285,56.5419404],[172.8932282,56.3996866],[172.801363,56.2573925],[172.7096682,56.115044],[172.6184059,55.9726011],[172.6013447,55.9457623],[172.6389064,56.8330553],[173.169284,56.8222665]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VPC","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214654_A018417_T59VPC_N02.12","eo:cloud_cover":58.106013,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VPC_20201007T214653.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214654_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:53.584Z","sat:relative_orbit":116,"s2:water_percentage":41.884977,"s2:mean_solar_zenith":79.5962293015734,"s2:mean_solar_azimuth":173.316583674405,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000521,"s2:thin_cirrus_percentage":4.548805,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":86.635083,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.00849,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":37.046662,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":16.510546,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VNF_20201007T214654","bbox":[170.9996533,58.5393681,172.7591678,58.8524471],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VNF_20201007T214654"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VNF_20201007T214654","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R10m/T59VNF_20190101T000001_AOT_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R60m/T59VNF_20190101T000001_B01_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R10m/T59VNF_20190101T000001_B02_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R10m/T59VNF_20190101T000001_B03_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R10m/T59VNF_20190101T000001_B04_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R20m/T59VNF_20190101T000001_B05_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R20m/T59VNF_20190101T000001_B06_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R20m/T59VNF_20190101T000001_B07_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R10m/T59VNF_20190101T000001_B08_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R60m/T59VNF_20190101T000001_B09_60m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R20m/T59VNF_20190101T000001_B11_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R20m/T59VNF_20190101T000001_B12_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R20m/T59VNF_20190101T000001_B8A_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R20m/T59VNF_20190101T000001_SCL_20m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R10m/T59VNF_20190101T000001_WVP_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/IMG_DATA/R10m/T59VNF_20190101T000001_TCI_10m.tif","proj:bbox":[499980.0,6490200.0,609780.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/QI_DATA/T59VNF_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/GRANULE/L2A_T59VNF_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE/DATASTRIP/DS_ESRI_20201007T214655_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VNF_20201007T214654&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VNF_20201007T214654&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[170.9996533,58.8524471],[171.3926345,58.7881754],[171.3922111,58.787507],[171.3922615,58.7874984],[171.3922436,58.7874701],[171.5708719,58.7570986],[171.7184636,58.7319832],[171.766334,58.7238265],[171.7663402,58.7238361],[171.7663575,58.7238332],[171.7666249,58.724248],[172.1767251,58.6508165],[172.1763959,58.6503148],[172.5425498,58.5811748],[172.5425704,58.5812056],[172.5426065,58.5811987],[172.5426243,58.5812254],[172.5427372,58.5812041],[172.542808,58.5813102],[172.5462703,58.5806565],[172.5462919,58.5806889],[172.5465638,58.5806377],[172.5466682,58.5807942],[172.7591678,58.5393681],[170.9996563,58.5522811],[170.9996533,58.8524471]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VNF","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214655_A018417_T59VNF_N02.12","eo:cloud_cover":57.558212,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VNF_20201007T214654.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214655_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:54.683Z","sat:relative_orbit":116,"s2:water_percentage":42.439997,"s2:mean_solar_zenith":82.4082720609248,"s2:mean_solar_azimuth":171.781945107179,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000619,"s2:thin_cirrus_percentage":3.132979,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":85.539186,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.00117,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":35.962248,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":18.462986,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VNE_20201007T214705","bbox":[170.9996555,57.6410797,172.8846938,58.6406562],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VNE_20201007T214705"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VNE_20201007T214705","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R10m/T59VNE_20190101T000001_AOT_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R60m/T59VNE_20190101T000001_B01_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R10m/T59VNE_20190101T000001_B02_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R10m/T59VNE_20190101T000001_B03_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R10m/T59VNE_20190101T000001_B04_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R20m/T59VNE_20190101T000001_B05_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R20m/T59VNE_20190101T000001_B06_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R20m/T59VNE_20190101T000001_B07_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R10m/T59VNE_20190101T000001_B08_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R60m/T59VNE_20190101T000001_B09_60m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R20m/T59VNE_20190101T000001_B11_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R20m/T59VNE_20190101T000001_B12_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R20m/T59VNE_20190101T000001_B8A_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R20m/T59VNE_20190101T000001_SCL_20m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R10m/T59VNE_20190101T000001_WVP_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/IMG_DATA/R10m/T59VNE_20190101T000001_TCI_10m.tif","proj:bbox":[499980.0,6390240.0,609780.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/QI_DATA/T59VNE_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/GRANULE/L2A_T59VNE_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE/DATASTRIP/DS_ESRI_20201007T214710_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VNE_20201007T214705&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VNE_20201007T214705&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[172.2772472,58.6312713],[172.5425498,58.5811748],[172.5425704,58.5812056],[172.5426065,58.5811987],[172.5426243,58.5812254],[172.5427372,58.5812041],[172.542808,58.5813102],[172.5462703,58.5806565],[172.5462919,58.5806889],[172.5465638,58.5806377],[172.5466682,58.5807942],[172.8846938,58.5148972],[172.8390116,57.6410797],[170.9996649,57.6544495],[170.9996555,58.6406562],[172.2772472,58.6312713]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VNE","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214710_A018417_T59VNE_N02.12","eo:cloud_cover":47.773062,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VNE_20201007T214705.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214710_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:05.331Z","sat:relative_orbit":116,"s2:water_percentage":52.224708,"s2:mean_solar_zenith":81.5171695990905,"s2:mean_solar_azimuth":171.796902885201,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000436,"s2:thin_cirrus_percentage":4.00351,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":1.868036,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.001792,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":27.993247,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":15.776305,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VND_20201007T214702","bbox":[170.9996641,56.7430308,172.8434653,57.7422982],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VND_20201007T214702"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VND_20201007T214702","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R10m/T59VND_20190101T000001_AOT_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R60m/T59VND_20190101T000001_B01_60m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R10m/T59VND_20190101T000001_B02_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R10m/T59VND_20190101T000001_B03_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R10m/T59VND_20190101T000001_B04_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R20m/T59VND_20190101T000001_B05_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R20m/T59VND_20190101T000001_B06_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R20m/T59VND_20190101T000001_B07_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R10m/T59VND_20190101T000001_B08_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R60m/T59VND_20190101T000001_B09_60m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R20m/T59VND_20190101T000001_B11_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R20m/T59VND_20190101T000001_B12_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R20m/T59VND_20190101T000001_B8A_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R20m/T59VND_20190101T000001_SCL_20m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R10m/T59VND_20190101T000001_WVP_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/IMG_DATA/R10m/T59VND_20190101T000001_TCI_10m.tif","proj:bbox":[499980.0,6290220.0,609780.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/QI_DATA/T59VND_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/GRANULE/L2A_T59VND_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ND/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE/DATASTRIP/DS_ESRI_20201007T214702_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VND_20201007T214702&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VND_20201007T214702&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[170.9996641,57.7422982],[172.8434653,57.7288832],[172.794906,56.7430308],[170.9996729,56.7559505],[170.9996641,57.7422982]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VND","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214702_A018417_T59VND_N02.12","eo:cloud_cover":52.550044,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VND_20201007T214702.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214702_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:02.380Z","sat:relative_orbit":116,"s2:water_percentage":47.448298,"s2:mean_solar_zenith":80.6252004012103,"s2:mean_solar_azimuth":171.811195296255,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000378,"s2:thin_cirrus_percentage":5.859159,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.000013,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.001277,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":29.690114,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":17.000772,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VNC_20201007T214703","bbox":[170.9996721,55.8463628,172.7991059,56.8438118],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VNC_20201007T214703"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VNC_20201007T214703","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R10m/T59VNC_20190101T000001_AOT_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R60m/T59VNC_20190101T000001_B01_60m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R10m/T59VNC_20190101T000001_B02_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R10m/T59VNC_20190101T000001_B03_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R10m/T59VNC_20190101T000001_B04_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R20m/T59VNC_20190101T000001_B05_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R20m/T59VNC_20190101T000001_B06_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R20m/T59VNC_20190101T000001_B07_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R10m/T59VNC_20190101T000001_B08_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R60m/T59VNC_20190101T000001_B09_60m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R20m/T59VNC_20190101T000001_B11_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R20m/T59VNC_20190101T000001_B12_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R20m/T59VNC_20190101T000001_B8A_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R20m/T59VNC_20190101T000001_SCL_20m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R10m/T59VNC_20190101T000001_WVP_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/IMG_DATA/R10m/T59VNC_20190101T000001_TCI_10m.tif","proj:bbox":[499980.0,6190200.0,609780.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/QI_DATA/T59VNC_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/GRANULE/L2A_T59VNC_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/NC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE/DATASTRIP/DS_ESRI_20201007T214703_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VNC_20201007T214703&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VNC_20201007T214703&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[172.7702101,56.2090302],[172.7096682,56.115044],[172.6184059,55.9726011],[172.5381572,55.8463628],[170.9996805,55.8573211],[170.9996721,56.8438118],[172.7991059,56.8308491],[172.7702101,56.2090302]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VNC","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214703_A018417_T59VNC_N02.12","eo:cloud_cover":52.350712,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VNC_20201007T214703.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214703_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:03.167Z","sat:relative_orbit":116,"s2:water_percentage":47.645527,"s2:mean_solar_zenith":79.732905333389,"s2:mean_solar_azimuth":171.824703347372,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000984,"s2:thin_cirrus_percentage":4.100037,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":2.249412,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.00278,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":33.140349,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":15.110326,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VMF_20201007T214657","bbox":[169.2583006,58.5407855,171.1690548,59.0913939],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VMF_20201007T214657"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VMF_20201007T214657","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R10m/T59VMF_20190101T000001_AOT_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R60m/T59VMF_20190101T000001_B01_60m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R10m/T59VMF_20190101T000001_B02_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R10m/T59VMF_20190101T000001_B03_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R10m/T59VMF_20190101T000001_B04_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R20m/T59VMF_20190101T000001_B05_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R20m/T59VMF_20190101T000001_B06_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R20m/T59VMF_20190101T000001_B07_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R10m/T59VMF_20190101T000001_B08_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R60m/T59VMF_20190101T000001_B09_60m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R20m/T59VMF_20190101T000001_B11_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R20m/T59VMF_20190101T000001_B12_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R20m/T59VMF_20190101T000001_B8A_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R20m/T59VMF_20190101T000001_SCL_20m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R10m/T59VMF_20190101T000001_WVP_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/IMG_DATA/R10m/T59VMF_20190101T000001_TCI_10m.tif","proj:bbox":[399960.0,6490200.0,509760.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/QI_DATA/T59VMF_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/GRANULE/L2A_T59VMF_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE/DATASTRIP/DS_ESRI_20201007T214657_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VMF_20201007T214657&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VMF_20201007T214657&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[169.2583006,58.9976925],[169.3119823,59.0913939],[169.401659,59.0797518],[169.4768996,59.0699352],[169.7624546,59.031948],[169.7619651,59.0311122],[170.1241421,58.9827752],[170.1614688,58.9777343],[170.1617164,58.9781483],[170.1623494,58.9780637],[170.162537,58.9783775],[170.3137893,58.9561822],[170.3708469,58.9477615],[170.5922631,58.9149351],[170.5917112,58.9140307],[170.5917726,58.9140214],[170.5917192,58.9139338],[170.9714113,58.8564547],[170.9714839,58.8565716],[170.9754692,58.8559631],[170.9755048,58.8560204],[170.9758459,58.8559686],[170.9760559,58.8563064],[171.1690548,58.8247416],[171.1677077,58.5521716],[169.2814375,58.5407855],[169.2583006,58.9976925]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VMF","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214657_A018417_T59VMF_N02.12","eo:cloud_cover":52.0557,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VMF_20201007T214657.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214657_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:57.114Z","sat:relative_orbit":116,"s2:water_percentage":47.941265,"s2:mean_solar_zenith":82.5485984225128,"s2:mean_solar_azimuth":170.185565958994,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001372,"s2:thin_cirrus_percentage":4.325228,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":57.6913,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.001662,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":26.005188,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":21.725285,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VME_20201007T214706","bbox":[169.2771006,57.6433463,171.1681312,58.6405464],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VME_20201007T214706"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VME_20201007T214706","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R10m/T59VME_20190101T000001_AOT_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R60m/T59VME_20190101T000001_B01_60m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R10m/T59VME_20190101T000001_B02_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R10m/T59VME_20190101T000001_B03_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R10m/T59VME_20190101T000001_B04_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R20m/T59VME_20190101T000001_B05_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R20m/T59VME_20190101T000001_B06_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R20m/T59VME_20190101T000001_B07_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R10m/T59VME_20190101T000001_B08_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R60m/T59VME_20190101T000001_B09_60m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R20m/T59VME_20190101T000001_B11_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R20m/T59VME_20190101T000001_B12_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R20m/T59VME_20190101T000001_B8A_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R20m/T59VME_20190101T000001_SCL_20m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R10m/T59VME_20190101T000001_WVP_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/IMG_DATA/R10m/T59VME_20190101T000001_TCI_10m.tif","proj:bbox":[399960.0,6390240.0,509760.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/QI_DATA/T59VME_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/GRANULE/L2A_T59VME_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/ME/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE/DATASTRIP/DS_ESRI_20201007T214707_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VME_20201007T214706&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VME_20201007T214706&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[169.2771006,58.6291209],[171.1681312,58.6405464],[171.1635452,57.6543437],[169.3240672,57.6433463],[169.2771006,58.6291209]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VME","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214707_A018417_T59VME_N02.12","eo:cloud_cover":55.188623,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VME_20201007T214706.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214707_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:06.807Z","sat:relative_orbit":116,"s2:water_percentage":44.809514,"s2:mean_solar_zenith":81.6569028597521,"s2:mean_solar_azimuth":170.238253592829,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000488,"s2:thin_cirrus_percentage":4.299827,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.001377,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":32.88081,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":18.007986,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VMD_20201007T214704","bbox":[169.3200079,56.7452211,171.1639416,57.7421921],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VMD_20201007T214704"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VMD_20201007T214704","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R10m/T59VMD_20190101T000001_AOT_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R60m/T59VMD_20190101T000001_B01_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R10m/T59VMD_20190101T000001_B02_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R10m/T59VMD_20190101T000001_B03_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R10m/T59VMD_20190101T000001_B04_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R20m/T59VMD_20190101T000001_B05_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R20m/T59VMD_20190101T000001_B06_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R20m/T59VMD_20190101T000001_B07_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R10m/T59VMD_20190101T000001_B08_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R60m/T59VMD_20190101T000001_B09_60m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R20m/T59VMD_20190101T000001_B11_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R20m/T59VMD_20190101T000001_B12_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R20m/T59VMD_20190101T000001_B8A_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R20m/T59VMD_20190101T000001_SCL_20m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R10m/T59VMD_20190101T000001_WVP_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/IMG_DATA/R10m/T59VMD_20190101T000001_TCI_10m.tif","proj:bbox":[399960.0,6290220.0,509760.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/QI_DATA/T59VMD_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/GRANULE/L2A_T59VMD_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE/DATASTRIP/DS_ESRI_20201007T214705_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VMD_20201007T214704&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VMD_20201007T214704&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[169.3200079,57.7311575],[171.1639416,57.7421921],[171.1596203,56.7558483],[169.3642661,56.7452211],[169.3200079,57.7311575]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VMD","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214705_A018417_T59VMD_N02.12","eo:cloud_cover":38.1191,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VMD_20201007T214704.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214705_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:04.608Z","sat:relative_orbit":116,"s2:water_percentage":61.879635,"s2:mean_solar_zenith":80.7643729533303,"s2:mean_solar_azimuth":170.287689492138,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000275,"s2:thin_cirrus_percentage":5.062063,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.000992,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":20.352238,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":12.704799,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VMC_20201007T214703","bbox":[169.3604383,55.8469481,171.159994,56.8437093],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VMC_20201007T214703"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VMC_20201007T214703","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R10m/T59VMC_20190101T000001_AOT_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R60m/T59VMC_20190101T000001_B01_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R10m/T59VMC_20190101T000001_B02_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R10m/T59VMC_20190101T000001_B03_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R10m/T59VMC_20190101T000001_B04_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R20m/T59VMC_20190101T000001_B05_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R20m/T59VMC_20190101T000001_B06_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R20m/T59VMC_20190101T000001_B07_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R10m/T59VMC_20190101T000001_B08_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R60m/T59VMC_20190101T000001_B09_60m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R20m/T59VMC_20190101T000001_B11_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R20m/T59VMC_20190101T000001_B12_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R20m/T59VMC_20190101T000001_B8A_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R20m/T59VMC_20190101T000001_SCL_20m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R10m/T59VMC_20190101T000001_WVP_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/IMG_DATA/R10m/T59VMC_20190101T000001_TCI_10m.tif","proj:bbox":[399960.0,6190200.0,509760.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/QI_DATA/T59VMC_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/GRANULE/L2A_T59VMC_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/MC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE/DATASTRIP/DS_ESRI_20201007T214704_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VMC_20201007T214703&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VMC_20201007T214703&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[169.3604383,56.8330467],[171.159994,56.8437093],[171.1559167,55.8572224],[169.4021995,55.8469481],[169.3604383,56.8330467]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VMC","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214704_A018417_T59VMC_N02.12","eo:cloud_cover":36.339903,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VMC_20201007T214703.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214704_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:03.938Z","sat:relative_orbit":116,"s2:water_percentage":63.65732,"s2:mean_solar_zenith":79.8715506443941,"s2:mean_solar_azimuth":170.333921936488,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000747,"s2:thin_cirrus_percentage":4.814443,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.002027,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":21.130528,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":10.394932,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VLF_20201007T214653","bbox":[168.9956904,58.5341082,169.4504014,59.0913939],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VLF_20201007T214653"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLF_20201007T214653","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R10m/T59VLF_20190101T000001_AOT_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R60m/T59VLF_20190101T000001_B01_60m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R10m/T59VLF_20190101T000001_B02_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R10m/T59VLF_20190101T000001_B03_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R10m/T59VLF_20190101T000001_B04_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R20m/T59VLF_20190101T000001_B05_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R20m/T59VLF_20190101T000001_B06_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R20m/T59VLF_20190101T000001_B07_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R10m/T59VLF_20190101T000001_B08_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R60m/T59VLF_20190101T000001_B09_60m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6600000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R20m/T59VLF_20190101T000001_B11_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R20m/T59VLF_20190101T000001_B12_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R20m/T59VLF_20190101T000001_B8A_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R20m/T59VLF_20190101T000001_SCL_20m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6600000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R10m/T59VLF_20190101T000001_WVP_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/IMG_DATA/R10m/T59VLF_20190101T000001_TCI_10m.tif","proj:bbox":[300000.0,6490200.0,409800.0,6600000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6600000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/QI_DATA/T59VLF_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/GRANULE/L2A_T59VLF_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE/DATASTRIP/DS_ESRI_20201007T214653_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLF_20201007T214653&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLF_20201007T214653&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[168.9956904,58.5341082],[169.0660941,58.6593652],[169.1477791,58.8036279],[169.2297458,58.94785],[169.3119823,59.0913939],[169.401659,59.0797518],[169.426035,59.0765715],[169.4504014,58.5429352],[168.9956904,58.5341082]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VLF","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214653_A018417_T59VLF_N02.12","eo:cloud_cover":41.188782,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VLF_20201007T214653.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214653_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:53.462Z","sat:relative_orbit":116,"s2:water_percentage":58.807105,"s2:mean_solar_zenith":82.6900927621903,"s2:mean_solar_azimuth":168.593693129984,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001796,"s2:thin_cirrus_percentage":5.384756,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":91.686916,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.002315,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":15.62884,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":20.175186,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VLE_20201007T214654","bbox":[168.5012186,57.6264346,169.488844,58.6312781],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VLE_20201007T214654"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLE_20201007T214654","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R10m/T59VLE_20190101T000001_AOT_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R60m/T59VLE_20190101T000001_B01_60m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R10m/T59VLE_20190101T000001_B02_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R10m/T59VLE_20190101T000001_B03_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R10m/T59VLE_20190101T000001_B04_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R20m/T59VLE_20190101T000001_B05_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R20m/T59VLE_20190101T000001_B06_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R20m/T59VLE_20190101T000001_B07_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R10m/T59VLE_20190101T000001_B08_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R60m/T59VLE_20190101T000001_B09_60m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6500040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R20m/T59VLE_20190101T000001_B11_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R20m/T59VLE_20190101T000001_B12_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R20m/T59VLE_20190101T000001_B8A_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R20m/T59VLE_20190101T000001_SCL_20m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6500040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R10m/T59VLE_20190101T000001_WVP_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/IMG_DATA/R10m/T59VLE_20190101T000001_TCI_10m.tif","proj:bbox":[300000.0,6390240.0,409800.0,6500040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6500040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/QI_DATA/T59VLE_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/GRANULE/L2A_T59VLE_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE/DATASTRIP/DS_ESRI_20201007T214655_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLE_20201007T214654&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLE_20201007T214654&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[168.5012186,57.6264346],[168.512931,57.6484409],[168.5899513,57.7929741],[168.6683269,57.9374718],[168.7470544,58.081962],[168.825266,58.2263233],[168.9045662,58.3706866],[168.9849785,58.5150504],[169.0459324,58.623495],[169.4464903,58.6312781],[169.488844,57.6454227],[168.5012186,57.6264346]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VLE","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214655_A018417_T59VLE_N02.12","eo:cloud_cover":56.700165,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VLE_20201007T214654.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214655_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:54.570Z","sat:relative_orbit":116,"s2:water_percentage":43.298116,"s2:mean_solar_zenith":81.7980175696982,"s2:mean_solar_azimuth":168.683994113272,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001092,"s2:thin_cirrus_percentage":3.135758,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":62.614936,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.00063,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":36.451,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":17.113407,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VLD_20201007T214659","bbox":[168.0248299,56.7186706,169.5250943,57.7332409],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VLD_20201007T214659"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLD_20201007T214659","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R10m/T59VLD_20190101T000001_AOT_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R60m/T59VLD_20190101T000001_B01_60m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R10m/T59VLD_20190101T000001_B02_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R10m/T59VLD_20190101T000001_B03_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R10m/T59VLD_20190101T000001_B04_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R20m/T59VLD_20190101T000001_B05_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R20m/T59VLD_20190101T000001_B06_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R20m/T59VLD_20190101T000001_B07_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R10m/T59VLD_20190101T000001_B08_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R60m/T59VLD_20190101T000001_B09_60m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R20m/T59VLD_20190101T000001_B11_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R20m/T59VLD_20190101T000001_B12_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R20m/T59VLD_20190101T000001_B8A_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R20m/T59VLD_20190101T000001_SCL_20m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R10m/T59VLD_20190101T000001_WVP_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/IMG_DATA/R10m/T59VLD_20190101T000001_TCI_10m.tif","proj:bbox":[300000.0,6290220.0,409800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/QI_DATA/T59VLD_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/GRANULE/L2A_T59VLD_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LD/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE/DATASTRIP/DS_ESRI_20201007T214700_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLD_20201007T214659&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLD_20201007T214659&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[168.0248299,56.7186706],[168.0566339,56.7805585],[168.1316558,56.9253382],[168.2073044,57.0700763],[168.2833419,57.2147439],[168.3593607,57.3593779],[168.4360153,57.503925],[168.512931,57.6484409],[168.5485144,57.7152152],[169.4851834,57.7332409],[169.5250943,56.7472276],[168.0248299,56.7186706]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VLD","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214700_A018417_T59VLD_N02.12","eo:cloud_cover":55.594647,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VLD_20201007T214659.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214700_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:59.470Z","sat:relative_orbit":116,"s2:water_percentage":44.404691,"s2:mean_solar_zenith":80.9051419404905,"s2:mean_solar_azimuth":168.768469936127,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000321,"s2:thin_cirrus_percentage":5.910252,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":32.861981,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.000341,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":36.735585,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":12.94881,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59VLC_20201007T214705","bbox":[167.7735556,55.8158913,169.5593013,56.8350599],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59VLC_20201007T214705"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLC_20201007T214705","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R10m/T59VLC_20190101T000001_AOT_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R60m/T59VLC_20190101T000001_B01_60m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R10m/T59VLC_20190101T000001_B02_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R10m/T59VLC_20190101T000001_B03_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R10m/T59VLC_20190101T000001_B04_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R20m/T59VLC_20190101T000001_B05_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R20m/T59VLC_20190101T000001_B06_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R20m/T59VLC_20190101T000001_B07_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R10m/T59VLC_20190101T000001_B08_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R60m/T59VLC_20190101T000001_B09_60m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R20m/T59VLC_20190101T000001_B11_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R20m/T59VLC_20190101T000001_B12_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R20m/T59VLC_20190101T000001_B8A_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R20m/T59VLC_20190101T000001_SCL_20m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R10m/T59VLC_20190101T000001_WVP_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/IMG_DATA/R10m/T59VLC_20190101T000001_TCI_10m.tif","proj:bbox":[300000.0,6190200.0,409800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/QI_DATA/T59VLC_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/GRANULE/L2A_T59VLC_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/V/LC/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE/DATASTRIP/DS_ESRI_20201007T214706_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLC_20201007T214705&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59VLC_20201007T214705&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[167.7735556,56.2203813],[167.8363648,56.346253],[167.9090417,56.4910297],[167.9822386,56.6357914],[168.0566339,56.7805585],[168.0705485,56.8074113],[169.5216425,56.8350599],[169.5593013,55.848888],[167.8077653,55.8158913],[167.7735556,56.2203813]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59VLC","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214706_A018417_T59VLC_N02.12","eo:cloud_cover":63.922611,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59VLC_20201007T214705.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214706_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:05.475Z","sat:relative_orbit":116,"s2:water_percentage":36.076203,"s2:mean_solar_zenith":80.012007691967,"s2:mean_solar_azimuth":168.847346978917,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000345,"s2:thin_cirrus_percentage":7.904284,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":5.672317,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.000841,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":43.581641,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":12.436686,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59UNV_20201007T214655","bbox":[170.9996938,53.2511067,171.5081055,54.1481041],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59UNV_20201007T214655"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UNV_20201007T214655","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R10m/T59UNV_20190101T000001_AOT_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R60m/T59UNV_20190101T000001_B01_60m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R10m/T59UNV_20190101T000001_B02_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R10m/T59UNV_20190101T000001_B03_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R10m/T59UNV_20190101T000001_B04_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R20m/T59UNV_20190101T000001_B05_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R20m/T59UNV_20190101T000001_B06_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R20m/T59UNV_20190101T000001_B07_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R10m/T59UNV_20190101T000001_B08_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R60m/T59UNV_20190101T000001_B09_60m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R20m/T59UNV_20190101T000001_B11_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R20m/T59UNV_20190101T000001_B12_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R20m/T59UNV_20190101T000001_B8A_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R20m/T59UNV_20190101T000001_SCL_20m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R10m/T59UNV_20190101T000001_WVP_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/IMG_DATA/R10m/T59UNV_20190101T000001_TCI_10m.tif","proj:bbox":[499980.0,5890200.0,609780.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/QI_DATA/T59UNV_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/GRANULE/L2A_T59UNV_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE/DATASTRIP/DS_ESRI_20201007T214656_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UNV_20201007T214655&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UNV_20201007T214655&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[171.5081055,54.1445567],[171.4914934,54.1161307],[171.4081617,53.9728945],[171.3253666,53.8295761],[171.2432229,53.6862701],[171.1625342,53.542953],[171.0822745,53.3996],[171.002554,53.256233],[170.9997002,53.2511067],[170.9996938,54.1481041],[171.5081055,54.1445567]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59UNV","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214656_A018417_T59UNV_N02.12","eo:cloud_cover":77.817121,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59UNV_20201007T214655.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214656_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:55.472Z","sat:relative_orbit":116,"s2:water_percentage":22.181191,"s2:mean_solar_zenith":77.0546404778745,"s2:mean_solar_azimuth":171.859785963883,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":14.038783,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":86.240458,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.001688,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":46.108884,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":17.669454,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59UNB_20201007T214702","bbox":[170.9996798,54.9521344,172.5941001,55.9457344],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59UNB_20201007T214702"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UNB_20201007T214702","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R10m/T59UNB_20190101T000001_AOT_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R60m/T59UNB_20190101T000001_B01_60m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R10m/T59UNB_20190101T000001_B02_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R10m/T59UNB_20190101T000001_B03_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R10m/T59UNB_20190101T000001_B04_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R20m/T59UNB_20190101T000001_B05_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R20m/T59UNB_20190101T000001_B06_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R20m/T59UNB_20190101T000001_B07_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R10m/T59UNB_20190101T000001_B08_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R60m/T59UNB_20190101T000001_B09_60m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R20m/T59UNB_20190101T000001_B11_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R20m/T59UNB_20190101T000001_B12_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R20m/T59UNB_20190101T000001_B8A_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R20m/T59UNB_20190101T000001_SCL_20m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R10m/T59UNB_20190101T000001_WVP_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/IMG_DATA/R10m/T59UNB_20190101T000001_TCI_10m.tif","proj:bbox":[499980.0,6090240.0,609780.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/QI_DATA/T59UNB_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/GRANULE/L2A_T59UNB_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE/DATASTRIP/DS_ESRI_20201007T214702_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UNB_20201007T214702&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UNB_20201007T214702&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[172.5941001,55.9343659],[172.5277954,55.8300628],[172.4378543,55.6874761],[172.3489833,55.5448928],[172.2611007,55.4022816],[172.173941,55.2596104],[172.0872938,55.1169237],[172.0011954,54.9741752],[171.9879443,54.9521344],[170.9996877,54.9590989],[170.9996798,55.9457344],[172.5941001,55.9343659]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59UNB","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214702_A018417_T59UNB_N02.12","eo:cloud_cover":49.164228,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59UNB_20201007T214702.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214702_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:02.155Z","sat:relative_orbit":116,"s2:water_percentage":50.833344,"s2:mean_solar_zenith":78.8408222905407,"s2:mean_solar_azimuth":171.837361671113,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000737,"s2:thin_cirrus_percentage":6.896076,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":25.769216,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.001694,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":27.537099,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":14.731054,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59UNA_20201007T214658","bbox":[170.999687,54.0570157,172.0406816,55.046986],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59UNA_20201007T214658"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UNA_20201007T214658","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R10m/T59UNA_20190101T000001_AOT_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R60m/T59UNA_20190101T000001_B01_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R10m/T59UNA_20190101T000001_B02_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R10m/T59UNA_20190101T000001_B03_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R10m/T59UNA_20190101T000001_B04_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R20m/T59UNA_20190101T000001_B05_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R20m/T59UNA_20190101T000001_B06_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R20m/T59UNA_20190101T000001_B07_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R10m/T59UNA_20190101T000001_B08_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R60m/T59UNA_20190101T000001_B09_60m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,499980.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R20m/T59UNA_20190101T000001_B11_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R20m/T59UNA_20190101T000001_B12_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R20m/T59UNA_20190101T000001_B8A_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R20m/T59UNA_20190101T000001_SCL_20m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,499980.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R10m/T59UNA_20190101T000001_WVP_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/IMG_DATA/R10m/T59UNA_20190101T000001_TCI_10m.tif","proj:bbox":[499980.0,5990220.0,609780.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,499980.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/QI_DATA/T59UNA_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/GRANULE/L2A_T59UNA_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/NA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE/DATASTRIP/DS_ESRI_20201007T214659_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UNA_20201007T214658&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UNA_20201007T214658&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[172.0406816,55.0396421],[172.0011954,54.9741752],[171.9153067,54.8313144],[171.8296036,54.6884415],[171.7443221,54.5454719],[171.6596327,54.4024083],[171.5751736,54.259321],[171.4914934,54.1161307],[171.4571016,54.0570157],[170.9996944,54.0602038],[170.999687,55.046986],[172.0406816,55.0396421]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59UNA","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214659_A018417_T59UNA_N02.12","eo:cloud_cover":51.156402,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59UNA_20201007T214658.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214659_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:58.849Z","sat:relative_orbit":116,"s2:water_percentage":48.842266,"s2:mean_solar_zenith":77.947887124516,"s2:mean_solar_azimuth":171.849084916801,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000105,"s2:thin_cirrus_percentage":8.473764,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":55.938154,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.001227,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":28.170443,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":14.512196,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59UMV_20201007T214700","bbox":[169.4686867,53.1598035,171.1494256,54.1480114],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59UMV_20201007T214700"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMV_20201007T214700","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R10m/T59UMV_20190101T000001_AOT_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R60m/T59UMV_20190101T000001_B01_60m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R10m/T59UMV_20190101T000001_B02_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R10m/T59UMV_20190101T000001_B03_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R10m/T59UMV_20190101T000001_B04_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R20m/T59UMV_20190101T000001_B05_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R20m/T59UMV_20190101T000001_B06_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R20m/T59UMV_20190101T000001_B07_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R10m/T59UMV_20190101T000001_B08_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R60m/T59UMV_20190101T000001_B09_60m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R20m/T59UMV_20190101T000001_B11_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R20m/T59UMV_20190101T000001_B12_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R20m/T59UMV_20190101T000001_B8A_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R20m/T59UMV_20190101T000001_SCL_20m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R10m/T59UMV_20190101T000001_WVP_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/IMG_DATA/R10m/T59UMV_20190101T000001_TCI_10m.tif","proj:bbox":[399960.0,5890200.0,509760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/QI_DATA/T59UMV_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/GRANULE/L2A_T59UMV_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE/DATASTRIP/DS_ESRI_20201007T214700_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMV_20201007T214700&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMV_20201007T214700&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[170.920023,53.1598035],[170.5859106,53.2382524],[170.5858481,53.2381389],[170.5818417,53.2390065],[170.5715059,53.2414377],[170.5715544,53.2415269],[170.4881199,53.2595707],[170.241725,53.3134623],[170.2414849,53.3130153],[170.2140742,53.3188367],[170.2142223,53.3191101],[169.888316,53.3887888],[169.888287,53.3887344],[169.8882022,53.3887514],[169.8761292,53.3913363],[169.8245933,53.4016224],[169.547882,53.4571199],[169.5477555,53.456877],[169.5223322,53.4619513],[169.5223865,53.4620546],[169.5223445,53.4620627],[169.5223728,53.4621167],[169.4927014,53.4678671],[169.4686867,54.1383655],[171.1494256,54.1480114],[171.1472151,53.5155914],[171.0822745,53.3996],[171.002554,53.256233],[170.9489634,53.1599675],[170.920023,53.1598035]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59UMV","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214700_A018417_T59UMV_N02.12","eo:cloud_cover":57.216261,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59UMV_20201007T214700.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214700_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:00.481Z","sat:relative_orbit":116,"s2:water_percentage":42.782381,"s2:mean_solar_zenith":77.1918970992433,"s2:mean_solar_azimuth":170.454376844871,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000316,"s2:thin_cirrus_percentage":15.719998,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":16.059691,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.001043,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":27.611098,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":13.885166,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59UMU_20201007T214652","bbox":[170.5501576,53.1538128,170.998359,53.2486974],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59UMU_20201007T214652"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMU_20201007T214652","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R10m/T59UMU_20190101T000001_AOT_10m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R60m/T59UMU_20190101T000001_B01_60m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R10m/T59UMU_20190101T000001_B02_10m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R10m/T59UMU_20190101T000001_B03_10m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R10m/T59UMU_20190101T000001_B04_10m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R20m/T59UMU_20190101T000001_B05_20m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R20m/T59UMU_20190101T000001_B06_20m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R20m/T59UMU_20190101T000001_B07_20m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R10m/T59UMU_20190101T000001_B08_10m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R60m/T59UMU_20190101T000001_B09_60m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,5900040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R20m/T59UMU_20190101T000001_B11_20m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R20m/T59UMU_20190101T000001_B12_20m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R20m/T59UMU_20190101T000001_B8A_20m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R20m/T59UMU_20190101T000001_SCL_20m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,5900040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R10m/T59UMU_20190101T000001_WVP_10m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/IMG_DATA/R10m/T59UMU_20190101T000001_TCI_10m.tif","proj:bbox":[399960.0,5790240.0,509760.0,5900040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,5900040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/QI_DATA/T59UMU_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/GRANULE/L2A_T59UMU_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MU/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE/DATASTRIP/DS_ESRI_20201007T214653_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMU_20201007T214652&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMU_20201007T214652&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[170.9455371,53.1538128],[170.5859106,53.2382524],[170.5858481,53.2381389],[170.5818417,53.2390065],[170.5715059,53.2414377],[170.5715544,53.2415269],[170.5501576,53.2461543],[170.998359,53.2486974],[170.9455371,53.1538128]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59UMU","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214653_A018417_T59UMU_N02.12","eo:cloud_cover":48.505437,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59UMU_20201007T214652.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214653_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:52.456Z","sat:relative_orbit":116,"s2:water_percentage":51.483786,"s2:mean_solar_zenith":76.2984803519533,"s2:mean_solar_azimuth":170.488657346167,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.002395,"s2:thin_cirrus_percentage":7.239571,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":98.614538,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.008382,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":27.906749,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":13.359118,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59UMB_20201007T214700","bbox":[169.3985631,54.949066,171.1562717,55.9456353],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59UMB_20201007T214700"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMB_20201007T214700","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R10m/T59UMB_20190101T000001_AOT_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R60m/T59UMB_20190101T000001_B01_60m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R10m/T59UMB_20190101T000001_B02_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R10m/T59UMB_20190101T000001_B03_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R10m/T59UMB_20190101T000001_B04_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R20m/T59UMB_20190101T000001_B05_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R20m/T59UMB_20190101T000001_B06_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R20m/T59UMB_20190101T000001_B07_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R10m/T59UMB_20190101T000001_B08_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R60m/T59UMB_20190101T000001_B09_60m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R20m/T59UMB_20190101T000001_B11_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R20m/T59UMB_20190101T000001_B12_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R20m/T59UMB_20190101T000001_B8A_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R20m/T59UMB_20190101T000001_SCL_20m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R10m/T59UMB_20190101T000001_WVP_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/IMG_DATA/R10m/T59UMB_20190101T000001_TCI_10m.tif","proj:bbox":[399960.0,6090240.0,509760.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/QI_DATA/T59UMB_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/GRANULE/L2A_T59UMB_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE/DATASTRIP/DS_ESRI_20201007T214700_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMB_20201007T214700&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMB_20201007T214700&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[169.3985631,55.9353271],[171.1562717,55.9456353],[171.1524197,54.9590034],[169.4380183,54.949066],[169.3985631,55.9353271]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59UMB","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214700_A018417_T59UMB_N02.12","eo:cloud_cover":36.532733,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59UMB_20201007T214700.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214700_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:00.237Z","sat:relative_orbit":116,"s2:water_percentage":63.463205,"s2:mean_solar_zenith":78.9789714784931,"s2:mean_solar_azimuth":170.377065505293,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000919,"s2:thin_cirrus_percentage":5.055375,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":3e-6,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.003139,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":21.019831,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":10.457527,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59UMA_20201007T214658","bbox":[169.4346016,54.0504964,171.1527533,55.0468902],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59UMA_20201007T214658"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMA_20201007T214658","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R10m/T59UMA_20190101T000001_AOT_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R60m/T59UMA_20190101T000001_B01_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R10m/T59UMA_20190101T000001_B02_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R10m/T59UMA_20190101T000001_B03_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R10m/T59UMA_20190101T000001_B04_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R20m/T59UMA_20190101T000001_B05_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R20m/T59UMA_20190101T000001_B06_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R20m/T59UMA_20190101T000001_B07_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R10m/T59UMA_20190101T000001_B08_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R60m/T59UMA_20190101T000001_B09_60m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,399960.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R20m/T59UMA_20190101T000001_B11_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R20m/T59UMA_20190101T000001_B12_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R20m/T59UMA_20190101T000001_B8A_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R20m/T59UMA_20190101T000001_SCL_20m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,399960.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R10m/T59UMA_20190101T000001_WVP_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/IMG_DATA/R10m/T59UMA_20190101T000001_TCI_10m.tif","proj:bbox":[399960.0,5990220.0,509760.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,399960.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/QI_DATA/T59UMA_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/GRANULE/L2A_T59UMA_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/MA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE/DATASTRIP/DS_ESRI_20201007T214659_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMA_20201007T214658&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59UMA_20201007T214658&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[169.4346016,55.0369205],[171.1527533,55.0468902],[171.14911,54.0601114],[169.4719201,54.0504964],[169.4346016,55.0369205]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59UMA","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214659_A018417_T59UMA_N02.12","eo:cloud_cover":29.928113,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59UMA_20201007T214658.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214659_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:58.961Z","sat:relative_orbit":116,"s2:water_percentage":70.06951,"s2:mean_solar_zenith":78.0855753443794,"s2:mean_solar_azimuth":170.417185320069,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000909,"s2:thin_cirrus_percentage":6.127219,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.001466,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":15.109012,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":8.691882,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59ULV_20201007T214655","bbox":[167.9404063,53.4382584,169.6419256,54.1401868],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59ULV_20201007T214655"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59ULV_20201007T214655","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R10m/T59ULV_20190101T000001_AOT_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R60m/T59ULV_20190101T000001_B01_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R10m/T59ULV_20190101T000001_B02_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R10m/T59ULV_20190101T000001_B03_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R10m/T59ULV_20190101T000001_B04_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R20m/T59ULV_20190101T000001_B05_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R20m/T59ULV_20190101T000001_B06_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R20m/T59ULV_20190101T000001_B07_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R10m/T59ULV_20190101T000001_B08_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R60m/T59ULV_20190101T000001_B09_60m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R20m/T59ULV_20190101T000001_B11_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R20m/T59ULV_20190101T000001_B12_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R20m/T59ULV_20190101T000001_B8A_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R20m/T59ULV_20190101T000001_SCL_20m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R10m/T59ULV_20190101T000001_WVP_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/IMG_DATA/R10m/T59ULV_20190101T000001_TCI_10m.tif","proj:bbox":[300000.0,5890200.0,409800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/QI_DATA/T59ULV_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/GRANULE/L2A_T59ULV_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LV/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE/DATASTRIP/DS_ESRI_20201007T214655_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59ULV_20201007T214655&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59ULV_20201007T214655&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[169.6419256,53.4382584],[169.547882,53.4571199],[169.5477555,53.456877],[169.5223322,53.4619513],[169.5223865,53.4620546],[169.5223445,53.4620627],[169.5223728,53.4621167],[169.1985493,53.5248748],[169.1985077,53.5247943],[169.1823189,53.5279303],[169.1825844,53.5284486],[168.8572435,53.5881909],[168.8571054,53.5879172],[168.8533253,53.588611],[168.8532532,53.5884686],[168.8328761,53.5920195],[168.8328831,53.5920333],[168.52898,53.644976],[168.4982958,53.650323],[168.4980643,53.6503618],[168.4886014,53.6520103],[168.4887086,53.6522266],[168.4842743,53.6529682],[168.4844276,53.6532775],[168.1541032,53.7086836],[168.1539694,53.7084089],[168.1356681,53.7112412],[168.1356686,53.7112423],[167.9670061,53.7373763],[167.9404063,54.1092064],[169.6192567,54.1401868],[169.6419256,53.4382584]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59ULV","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214655_A018417_T59ULV_N02.12","eo:cloud_cover":30.278842,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59ULV_20201007T214655.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214655_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:55.205Z","sat:relative_orbit":116,"s2:water_percentage":69.717115,"s2:mean_solar_zenith":77.3316232152988,"s2:mean_solar_azimuth":169.052973251802,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001415,"s2:thin_cirrus_percentage":4.778481,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":45.827666,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.002627,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":17.832062,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":7.6683,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59ULB_20201007T214700","bbox":[167.8005114,54.9190265,169.5916013,55.9372733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59ULB_20201007T214700"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59ULB_20201007T214700","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R10m/T59ULB_20190101T000001_AOT_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R60m/T59ULB_20190101T000001_B01_60m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R10m/T59ULB_20190101T000001_B02_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R10m/T59ULB_20190101T000001_B03_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R10m/T59ULB_20190101T000001_B04_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R20m/T59ULB_20190101T000001_B05_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R20m/T59ULB_20190101T000001_B06_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R20m/T59ULB_20190101T000001_B07_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R10m/T59ULB_20190101T000001_B08_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R60m/T59ULB_20190101T000001_B09_60m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R20m/T59ULB_20190101T000001_B11_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R20m/T59ULB_20190101T000001_B12_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R20m/T59ULB_20190101T000001_B8A_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R20m/T59ULB_20190101T000001_SCL_20m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R10m/T59ULB_20190101T000001_WVP_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/IMG_DATA/R10m/T59ULB_20190101T000001_TCI_10m.tif","proj:bbox":[300000.0,6090240.0,409800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/QI_DATA/T59ULB_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/GRANULE/L2A_T59ULB_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LB/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE/DATASTRIP/DS_ESRI_20201007T214704_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59ULB_20201007T214700&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59ULB_20201007T214700&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[167.8005114,55.9041676],[169.5560221,55.9372733],[169.5916013,54.9509423],[167.8792201,54.9190265],[167.8005114,55.9041676]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59ULB","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214704_A018417_T59ULB_N02.12","eo:cloud_cover":54.928702,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59ULB_20201007T214700.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214704_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:00.207Z","sat:relative_orbit":116,"s2:water_percentage":45.068285,"s2:mean_solar_zenith":79.1191506436369,"s2:mean_solar_azimuth":168.920890123023,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.00069,"s2:thin_cirrus_percentage":5.835296,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.002322,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":36.353824,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":12.739582,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T59ULA_20201007T214701","bbox":[167.872404,54.0214307,169.6221725,55.0388029],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T59ULA_20201007T214701"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59ULA_20201007T214701","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R10m/T59ULA_20190101T000001_AOT_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R60m/T59ULA_20190101T000001_B01_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R10m/T59ULA_20190101T000001_B02_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R10m/T59ULA_20190101T000001_B03_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R10m/T59ULA_20190101T000001_B04_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R20m/T59ULA_20190101T000001_B05_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R20m/T59ULA_20190101T000001_B06_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R20m/T59ULA_20190101T000001_B07_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R10m/T59ULA_20190101T000001_B08_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R60m/T59ULA_20190101T000001_B09_60m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,300000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R20m/T59ULA_20190101T000001_B11_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R20m/T59ULA_20190101T000001_B12_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R20m/T59ULA_20190101T000001_B8A_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R20m/T59ULA_20190101T000001_SCL_20m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,300000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R10m/T59ULA_20190101T000001_WVP_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/IMG_DATA/R10m/T59ULA_20190101T000001_TCI_10m.tif","proj:bbox":[300000.0,5990220.0,409800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,300000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/QI_DATA/T59ULA_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/GRANULE/L2A_T59ULA_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/59/U/LA/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE/DATASTRIP/DS_ESRI_20201007T214706_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59ULA_20201007T214701&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T59ULA_20201007T214701&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[167.872404,55.0067836],[169.5885203,55.0388029],[169.6221725,54.0523118],[167.9468576,54.0214307],[167.872404,55.0067836]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32659,"instruments":["msi"],"s2:mgrs_tile":"59ULA","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214706_A018417_T59ULA_N02.12","eo:cloud_cover":39.081608,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T59ULA_20201007T214701.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214706_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:47:01.899Z","sat:relative_orbit":116,"s2:water_percentage":60.785997,"s2:mean_solar_zenith":78.2255120530201,"s2:mean_solar_azimuth":168.989351229258,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001204,"s2:thin_cirrus_percentage":4.874559,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":0.0,"s2:unclassified_percentage":0.054399,"s2:dark_features_percentage":0.074701,"s2:not_vegetated_percentage":0.002087,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":24.299634,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":9.907416,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T58VFJ_20201007T214649","bbox":[168.02397413580755,56.708800777329145,168.51672339800558,57.65555748058229],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T58VFJ_20201007T214649"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58VFJ_20201007T214649","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R10m/T58VFJ_20190101T000001_AOT_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R60m/T58VFJ_20190101T000001_B01_60m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R10m/T58VFJ_20190101T000001_B02_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R10m/T58VFJ_20190101T000001_B03_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R10m/T58VFJ_20190101T000001_B04_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R20m/T58VFJ_20190101T000001_B05_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R20m/T58VFJ_20190101T000001_B06_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R20m/T58VFJ_20190101T000001_B07_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R10m/T58VFJ_20190101T000001_B08_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R60m/T58VFJ_20190101T000001_B09_60m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6400020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R20m/T58VFJ_20190101T000001_B11_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R20m/T58VFJ_20190101T000001_B12_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R20m/T58VFJ_20190101T000001_B8A_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R20m/T58VFJ_20190101T000001_SCL_20m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6400020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R10m/T58VFJ_20190101T000001_WVP_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/IMG_DATA/R10m/T58VFJ_20190101T000001_TCI_10m.tif","proj:bbox":[600000.0,6290220.0,709800.0,6400020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6400020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/QI_DATA/T58VFJ_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/GRANULE/L2A_T58VFJ_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FJ/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE/DATASTRIP/DS_ESRI_20201007T214650_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58VFJ_20201007T214649&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58VFJ_20201007T214649&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[168.02397414,56.71700529],[168.05663389,56.78055847],[168.13165579,56.92533825],[168.2073044,57.07007627],[168.28334192,57.21474394],[168.35936067,57.3593779],[168.43601534,57.50392495],[168.51293105,57.64844091],[168.5167234,57.65555748],[168.42770995,56.70880078],[168.02397414,56.71700529]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32658,"instruments":["msi"],"s2:mgrs_tile":"58VFJ","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214650_A018417_T58VFJ_N02.12","eo:cloud_cover":59.202906,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T58VFJ_20201007T214649.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214650_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:49.743Z","sat:relative_orbit":116,"s2:water_percentage":40.797034,"s2:mean_solar_zenith":81.0141636351399,"s2:mean_solar_azimuth":167.82290118242,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000062,"s2:thin_cirrus_percentage":6.221464,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":89.22708,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":41.186196,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":11.795247,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T58VFH_20201007T214652","bbox":[167.57911051323615,55.81173603255935,168.43571634947202,56.80396955834615],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T58VFH_20201007T214652"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58VFH_20201007T214652","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R10m/T58VFH_20190101T000001_AOT_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R60m/T58VFH_20190101T000001_B01_60m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R10m/T58VFH_20190101T000001_B02_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R10m/T58VFH_20190101T000001_B03_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R10m/T58VFH_20190101T000001_B04_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R20m/T58VFH_20190101T000001_B05_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R20m/T58VFH_20190101T000001_B06_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R20m/T58VFH_20190101T000001_B07_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R10m/T58VFH_20190101T000001_B08_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R60m/T58VFH_20190101T000001_B09_60m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6300000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R20m/T58VFH_20190101T000001_B11_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R20m/T58VFH_20190101T000001_B12_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R20m/T58VFH_20190101T000001_B8A_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R20m/T58VFH_20190101T000001_SCL_20m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6300000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R10m/T58VFH_20190101T000001_WVP_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/IMG_DATA/R10m/T58VFH_20190101T000001_TCI_10m.tif","proj:bbox":[600000.0,6190200.0,709800.0,6300000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6300000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/QI_DATA/T58VFH_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/GRANULE/L2A_T58VFH_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/V/FH/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE/DATASTRIP/DS_ESRI_20201007T214656_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58VFH_20201007T214652&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58VFH_20201007T214652&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[167.57911051,55.82720731],[167.62082547,55.91178636],[167.69261595,56.05665564],[167.76412102,56.20147411],[167.83636482,56.34625304],[167.90904175,56.49102966],[167.98223861,56.63579142],[168.05663389,56.78055847],[168.06876504,56.80396956],[168.43571635,56.79650515],[168.34836129,55.81173603],[167.57911051,55.82720731]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32658,"instruments":["msi"],"s2:mgrs_tile":"58VFH","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214656_A018417_T58VFH_N02.12","eo:cloud_cover":93.616579,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T58VFH_20201007T214652.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214656_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:52.128Z","sat:relative_orbit":116,"s2:water_percentage":6.383418,"s2:mean_solar_zenith":80.1366374152144,"s2:mean_solar_azimuth":167.792107169834,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.0,"s2:thin_cirrus_percentage":3.150427,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":67.879987,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.0,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":79.232234,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":11.233918,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T58UGE_20201007T214656","bbox":[168.03167054149293,53.43367516404931,169.73349037163308,54.10922199205192],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T58UGE_20201007T214656"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UGE_20201007T214656","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R10m/T58UGE_20190101T000001_AOT_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R60m/T58UGE_20190101T000001_B01_60m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R10m/T58UGE_20190101T000001_B02_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R10m/T58UGE_20190101T000001_B03_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R10m/T58UGE_20190101T000001_B04_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R20m/T58UGE_20190101T000001_B05_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R20m/T58UGE_20190101T000001_B06_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R20m/T58UGE_20190101T000001_B07_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R10m/T58UGE_20190101T000001_B08_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R60m/T58UGE_20190101T000001_B09_60m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,699960.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R20m/T58UGE_20190101T000001_B11_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R20m/T58UGE_20190101T000001_B12_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R20m/T58UGE_20190101T000001_B8A_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R20m/T58UGE_20190101T000001_SCL_20m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,699960.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R10m/T58UGE_20190101T000001_WVP_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/IMG_DATA/R10m/T58UGE_20190101T000001_TCI_10m.tif","proj:bbox":[699960.0,5890200.0,809760.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,699960.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/QI_DATA/T58UGE_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/GRANULE/L2A_T58UGE_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/GE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE/DATASTRIP/DS_ESRI_20201007T214700_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UGE_20201007T214656&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UGE_20201007T214656&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[169.66477789,53.43367516],[169.547882,53.45711992],[169.5477555,53.45687704],[169.5223322,53.46195133],[169.52238647,53.46205455],[169.52234448,53.46206269],[169.52237281,53.46211668],[169.19854928,53.52487482],[169.19850765,53.52479431],[169.1823189,53.52793029],[169.18258437,53.52844861],[168.85724347,53.58819089],[168.85710541,53.58791718],[168.85332533,53.58861101],[168.85325319,53.58846858],[168.83287609,53.59201946],[168.8328831,53.59203326],[168.52898003,53.64497597],[168.49829583,53.65032295],[168.4980643,53.65036177],[168.48860141,53.65201029],[168.48870858,53.65222656],[168.4842743,53.65296821],[168.4844276,53.65327751],[168.15410324,53.70868356],[168.15396936,53.70840887],[168.13566809,53.71124124],[168.13566862,53.71124232],[168.03167054,53.72735667],[168.05898273,54.10922199],[169.73349037,54.05491086],[169.66477789,53.43367516]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32658,"instruments":["msi"],"s2:mgrs_tile":"58UGE","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214700_A018417_T58UGE_N02.12","eo:cloud_cover":28.829971,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T58UGE_20201007T214656.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214700_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:56.817Z","sat:relative_orbit":116,"s2:water_percentage":71.166301,"s2:mean_solar_zenith":77.2849995859816,"s2:mean_solar_azimuth":169.096315723147,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.001315,"s2:thin_cirrus_percentage":4.753962,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":49.301356,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.002415,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":16.797614,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":7.278395,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T58UFG_20201007T214655","bbox":[167.14767598501928,54.915007227282395,168.35596828769133,55.914769428138115],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T58UFG_20201007T214655"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UFG_20201007T214655","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R10m/T58UFG_20190101T000001_AOT_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R60m/T58UFG_20190101T000001_B01_60m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R10m/T58UFG_20190101T000001_B02_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R10m/T58UFG_20190101T000001_B03_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R10m/T58UFG_20190101T000001_B04_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R20m/T58UFG_20190101T000001_B05_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R20m/T58UFG_20190101T000001_B06_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R20m/T58UFG_20190101T000001_B07_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R10m/T58UFG_20190101T000001_B08_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R60m/T58UFG_20190101T000001_B09_60m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6200040.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R20m/T58UFG_20190101T000001_B11_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R20m/T58UFG_20190101T000001_B12_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R20m/T58UFG_20190101T000001_B8A_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R20m/T58UFG_20190101T000001_SCL_20m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6200040.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R10m/T58UFG_20190101T000001_WVP_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/IMG_DATA/R10m/T58UFG_20190101T000001_TCI_10m.tif","proj:bbox":[600000.0,6090240.0,709800.0,6200040.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6200040.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/QI_DATA/T58UFG_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/GRANULE/L2A_T58UFG_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FG/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE/DATASTRIP/DS_ESRI_20201007T214659_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UFG_20201007T214655&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UFG_20201007T214655&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[167.14767599,54.93740743],[167.1972976,55.04142453],[167.2669293,55.1866026],[167.33699485,55.33174649],[167.40751043,55.47681996],[167.47830065,55.62186754],[167.54934675,55.76685988],[167.62082547,55.91178636],[167.62230373,55.91476943],[168.35596829,55.89999859],[168.27342673,54.91500723],[167.14767599,54.93740743]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32658,"instruments":["msi"],"s2:mgrs_tile":"58UFG","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214659_A018417_T58UFG_N02.12","eo:cloud_cover":91.766967,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T58UFG_20201007T214655.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214659_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:55.291Z","sat:relative_orbit":116,"s2:water_percentage":8.232935,"s2:mean_solar_zenith":79.2591738489365,"s2:mean_solar_azimuth":167.761341202946,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.000025,"s2:thin_cirrus_percentage":1.596935,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":46.30366,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.000074,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":73.709834,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":16.460198,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T58UFF_20201007T214659","bbox":[166.73488088257838,54.017541579537756,168.28057485944203,55.02449012823225],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T58UFF_20201007T214659"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UFF_20201007T214659","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R10m/T58UFF_20190101T000001_AOT_10m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R60m/T58UFF_20190101T000001_B01_60m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R10m/T58UFF_20190101T000001_B02_10m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R10m/T58UFF_20190101T000001_B03_10m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R10m/T58UFF_20190101T000001_B04_10m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R20m/T58UFF_20190101T000001_B05_20m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R20m/T58UFF_20190101T000001_B06_20m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R20m/T58UFF_20190101T000001_B07_20m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R10m/T58UFF_20190101T000001_B08_10m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R60m/T58UFF_20190101T000001_B09_60m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6100020.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R20m/T58UFF_20190101T000001_B11_20m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R20m/T58UFF_20190101T000001_B12_20m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R20m/T58UFF_20190101T000001_B8A_20m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R20m/T58UFF_20190101T000001_SCL_20m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6100020.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R10m/T58UFF_20190101T000001_WVP_10m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/IMG_DATA/R10m/T58UFF_20190101T000001_TCI_10m.tif","proj:bbox":[600000.0,5990220.0,709800.0,6100020.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6100020.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/QI_DATA/T58UFF_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/GRANULE/L2A_T58UFF_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FF/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE/DATASTRIP/DS_ESRI_20201007T214700_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UFF_20201007T214659&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UFF_20201007T214659&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[166.73488088,54.04642257],[166.79130902,54.1700534],[166.85782436,54.31532116],[166.92458743,54.46051249],[166.99145156,54.60574237],[167.05906459,54.75095048],[167.12801571,54.89619546],[167.18921901,55.02449013],[168.28057486,55.00275121],[168.20249454,54.01754158],[166.73488088,54.04642257]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32658,"instruments":["msi"],"s2:mgrs_tile":"58UFF","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214700_A018417_T58UFF_N02.12","eo:cloud_cover":54.05283,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T58UFF_20201007T214659.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214700_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:59.112Z","sat:relative_orbit":116,"s2:water_percentage":35.912052,"s2:mean_solar_zenith":78.3807395454408,"s2:mean_solar_azimuth":167.730255931645,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":10.000008,"s2:vegetation_percentage":0.00029,"s2:thin_cirrus_percentage":8.186978,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":24.412885,"s2:unclassified_percentage":0.0009,"s2:dark_features_percentage":0.032886,"s2:not_vegetated_percentage":0.001036,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":27.231073,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":18.634778,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"S2A_MSIL2A_20190101T000001_R116_T58UFE_20201007T214651","bbox":[166.67812756492967,53.70447660646306,168.20926008487336,54.133567285555],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items/S2A_MSIL2A_20190101T000001_R116_T58UFE_20201007T214651"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UFE_20201007T214651","title":"Map of item","type":"text/html"}],"assets":{"AOT":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R10m/T58UFE_20190101T000001_AOT_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Aerosol optical thickness (AOT)"},"B01":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R60m/T58UFE_20190101T000001_B01_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 1 - Coastal aerosol - 60m","eo:bands":[{"name":"B01","common_name":"coastal","description":"Band 1 - Coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027}]},"B02":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R10m/T58UFE_20190101T000001_B02_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 2 - Blue - 10m","eo:bands":[{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"B03":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R10m/T58UFE_20190101T000001_B03_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 3 - Green - 10m","eo:bands":[{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045}]},"B04":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R10m/T58UFE_20190101T000001_B04_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 4 - Red - 10m","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038}]},"B05":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R20m/T58UFE_20190101T000001_B05_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 5 - Vegetation red edge 1 - 20m","eo:bands":[{"name":"B05","common_name":"rededge","description":"Band 5 - Vegetation red edge 1","center_wavelength":0.704,"full_width_half_max":0.019}]},"B06":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R20m/T58UFE_20190101T000001_B06_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 6 - Vegetation red edge 2 - 20m","eo:bands":[{"name":"B06","common_name":"rededge","description":"Band 6 - Vegetation red edge 2","center_wavelength":0.74,"full_width_half_max":0.018}]},"B07":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R20m/T58UFE_20190101T000001_B07_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 7 - Vegetation red edge 3 - 20m","eo:bands":[{"name":"B07","common_name":"rededge","description":"Band 7 - Vegetation red edge 3","center_wavelength":0.783,"full_width_half_max":0.028}]},"B08":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R10m/T58UFE_20190101T000001_B08_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8 - NIR - 10m","eo:bands":[{"name":"B08","common_name":"nir","description":"Band 8 - NIR","center_wavelength":0.842,"full_width_half_max":0.145}]},"B09":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R60m/T58UFE_20190101T000001_B09_60m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[1830,1830],"proj:transform":[60.0,0.0,600000.0,0.0,-60.0,6000000.0],"gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 9 - Water vapor - 60m","eo:bands":[{"name":"B09","description":"Band 9 - Water vapor","center_wavelength":0.945,"full_width_half_max":0.026}]},"B11":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R20m/T58UFE_20190101T000001_B11_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 11 - SWIR (1.6) - 20m","eo:bands":[{"name":"B11","common_name":"swir16","description":"Band 11 - SWIR (1.6)","center_wavelength":1.61,"full_width_half_max":0.143}]},"B12":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R20m/T58UFE_20190101T000001_B12_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 12 - SWIR (2.2) - 20m","eo:bands":[{"name":"B12","common_name":"swir22","description":"Band 12 - SWIR (2.2)","center_wavelength":2.19,"full_width_half_max":0.242}]},"B8A":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R20m/T58UFE_20190101T000001_B8A_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Band 8A - Vegetation red edge 4 - 20m","eo:bands":[{"name":"B8A","common_name":"rededge","description":"Band 8A - Vegetation red edge 4","center_wavelength":0.865,"full_width_half_max":0.033}]},"SCL":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R20m/T58UFE_20190101T000001_SCL_20m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[5490,5490],"proj:transform":[20.0,0.0,600000.0,0.0,-20.0,6000000.0],"gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Scene classfication map (SCL)"},"WVP":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R10m/T58UFE_20190101T000001_WVP_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"Water vapour (WVP)"},"visual":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/IMG_DATA/R10m/T58UFE_20190101T000001_TCI_10m.tif","proj:bbox":[600000.0,5890200.0,709800.0,6000000.0],"proj:shape":[10980,10980],"proj:transform":[10.0,0.0,600000.0,0.0,-10.0,6000000.0],"gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"True color image","eo:bands":[{"name":"B04","common_name":"red","description":"Band 4 - Red","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"B03","common_name":"green","description":"Band 3 - Green","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"B02","common_name":"blue","description":"Band 2 - Blue","center_wavelength":0.49,"full_width_half_max":0.098}]},"preview":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/QI_DATA/T58UFE_20190101T000001_PVI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"],"title":"Thumbnail"},"safe-manifest":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/manifest.safe","type":"application/xml","roles":["metadata"],"title":"SAFE manifest"},"granule-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/GRANULE/L2A_T58UFE_A018417_20181231T235957/MTD_TL.xml","type":"application/xml","roles":["metadata"],"title":"Granule metadata"},"inspire-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/INSPIRE.xml","type":"application/xml","roles":["metadata"],"title":"INSPIRE metadata"},"product-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/MTD_MSIL2A.xml","type":"application/xml","roles":["metadata"],"title":"Product metadata"},"datastrip-metadata":{"href":"https://sentinel2l2a01.blob.core.windows.net/sentinel2-l2/58/U/FE/2019/01/01/S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE/DATASTRIP/DS_ESRI_20201007T214651_S20181231T235957/MTD_DS.xml","type":"application/xml","roles":["metadata"],"title":"Datastrip metadata"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UFE_20201007T214651&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=sentinel-2-l2a&item=S2A_MSIL2A_20190101T000001_R116_T58UFE_20201007T214651&assets=visual&asset_bidx=visual%7C1%2C2%2C3&nodata=0&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[168.17918459,53.70447661],[168.15410324,53.70868356],[168.15396936,53.70840887],[168.13566809,53.71124124],[168.13566862,53.71124232],[167.7818615,53.76606423],[167.78213055,53.76662638],[167.70973419,53.7775365],[167.43621299,53.81916294],[167.4362027,53.81914102],[167.07304035,53.86842047],[167.07297417,53.86827829],[167.0507299,53.87130988],[167.05114642,53.87221361],[166.67812756,53.92219682],[166.72496754,54.02470301],[166.77465586,54.13356729],[168.20926008,54.10530484],[168.17918459,53.70447661]]]},"collection":"sentinel-2-l2a","properties":{"datetime":"2019-01-01T00:00:01.024000Z","platform":"Sentinel-2A","proj:epsg":32658,"instruments":["msi"],"s2:mgrs_tile":"58UFE","constellation":"Sentinel 2","s2:granule_id":"S2A_OPER_MSI_L2A_TL_ESRI_20201007T214651_A018417_T58UFE_N02.12","eo:cloud_cover":46.556288,"s2:datatake_id":"GS2A_20190101T000001_018417_N02.12","s2:product_uri":"S2A_MSIL2A_20190101T000001_N0212_R116_T58UFE_20201007T214651.SAFE","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_ESRI_20201007T214651_S20181231T235957_N02.12","s2:product_type":"S2MSI2A","sat:orbit_state":"descending","s2:datatake_type":"INS-NOBS","s2:generation_time":"2020-10-07T21:46:51.833Z","sat:relative_orbit":116,"s2:water_percentage":53.441292,"s2:mean_solar_zenith":77.5018652279848,"s2:mean_solar_azimuth":167.69870255737,"s2:processing_baseline":"02.12","s2:snow_ice_percentage":0.0,"s2:vegetation_percentage":0.00078,"s2:thin_cirrus_percentage":3.832854,"s2:cloud_shadow_percentage":0.0,"s2:nodata_pixel_percentage":72.345239,"s2:unclassified_percentage":0.0,"s2:dark_features_percentage":0.0,"s2:not_vegetated_percentage":0.001644,"s2:degraded_msi_data_percentage":0.0,"s2:high_proba_clouds_percentage":29.095054,"s2:reflectance_conversion_factor":1.03411230239037,"s2:medium_proba_clouds_percentage":13.62838,"s2:saturated_defective_pixel_percentage":0.0},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/sat/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '20547' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:55:46 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125545Z-167d46d96d8468jqhC1DENbu080000000s9g0000000024x3 status: code: 200 message: OK version: 1 TestItemSearch.test_deprecations[get_all_items-item_collection-False-True].yaml000066400000000000000000001723721503646565400423570ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_item_searchinteractions: - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '78' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307308_nw_18_030_20230622_20231113","bbox":[-73.130782,43.933691,-73.056636,44.003801],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056636,44.002599],[-73.128619,44.003801],[-73.130782,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[650027.7,4866339.600000001,655801.7999999999,4873997.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19247],"proj:centroid":{"lat":43.96875,"lon":-73.09373},"proj:transform":[0.3,0.0,650027.7,0.0,-0.3,4873997.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_030_20230622_20231113","bbox":[-73.255644,43.933764,-73.181774,44.003728],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181774,44.002607],[-73.253627,44.003728],[-73.255644,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[640005.9,4866119.4,645769.2000000001,4873769.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25500,19211],"proj:centroid":{"lat":43.96875,"lon":-73.21873},"proj:transform":[0.3,0.0,640005.9,0.0,-0.3,4873769.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_030_20230622_20231113","bbox":[-73.193213,43.933726,-73.119205,44.003763],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121377,43.933726],[-73.119205,44.002601],[-73.191123,44.003763],[-73.193213,43.934885],[-73.121377,43.933726]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[645016.8,4866227.399999999,650785.5,4873881.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19229],"proj:centroid":{"lat":43.96875,"lon":-73.15623},"proj:transform":[0.3,0.0,645016.8,0.0,-0.3,4873881.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_030_20230621_20231113","bbox":[-73.130789,43.99619,-73.056629,44.066299],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.99619],[-73.056629,44.065097],[-73.128621,44.066299],[-73.130789,43.997389],[-73.05888,43.99619]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[649869.9,4873281.3,655638.6,4880939.1],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19229],"proj:centroid":{"lat":44.03125,"lon":-73.09373},"proj:transform":[0.3,0.0,649869.9,0.0,-0.3,4880939.1,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_030_20230621_20231113","bbox":[-73.193221,43.996227,-73.119196,44.066264],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.996227],[-73.119196,44.065102],[-73.191127,44.066264],[-73.193221,43.997386],[-73.121374,43.996227]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[644864.1,4873169.399999999,650627.7,4880823.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19212],"proj:centroid":{"lat":44.03125,"lon":-73.15623},"proj:transform":[0.3,0.0,644864.1,0.0,-0.3,4880823.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_030_20230620_20231113","bbox":[-73.255654,43.996263,-73.181764,44.066229],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_030_20230620_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996263],[-73.181764,44.065107],[-73.253633,44.066229],[-73.255654,43.997382],[-73.183868,43.996263]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-20T16:00:00Z","naip:year":"2023","proj:bbox":[639858.3,4873061.100000001,645616.8,4880711.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25501,19195],"proj:centroid":{"lat":44.03125,"lon":-73.21873},"proj:transform":[0.3,0.0,639858.3,0.0,-0.3,4880711.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20211029","bbox":[-73.130807,43.996179,-73.056111,44.06681],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058379,43.996179],[-73.056111,44.065598],[-73.128623,44.06681],[-73.130807,43.997387],[-73.058379,43.996179]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[649868.4,4873281.0,655678.8,4880995.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12858,9684],"proj:transform":[0.6,0.0,649868.4,0.0,-0.6,4880995.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20211029","bbox":[-73.255666,43.996252,-73.181247,44.066737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183367,43.996252],[-73.181247,44.065607],[-73.25363,44.066737],[-73.255666,43.997379],[-73.183367,43.996252]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[639857.4,4873060.8,645657.0,4880767.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12845,9666],"proj:transform":[0.6,0.0,639857.4,0.0,-0.6,4880767.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20211029","bbox":[-73.192739,43.996233,-73.119177,44.066755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996233],[-73.119177,44.065601],[-73.190629,44.066755],[-73.192739,43.997384],[-73.12137,43.996233]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[644902.8,4873170.0,650628.0,4880878.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12848,9542],"proj:transform":[0.6,0.0,644902.8,0.0,-0.6,4880878.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20211029","bbox":[-73.255626,43.934253,-73.181287,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183372,43.934253],[-73.181287,44.002604],[-73.253623,44.003733],[-73.255626,43.935379],[-73.183372,43.934253]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[640006.2,4866174.6,645808.2,4873770.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12659,9670],"proj:transform":[0.6,0.0,640006.2,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_nw_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2443' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:52:00 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125159Z-167d46d96d8x72gqhC1DENywxw00000006f0000000000035 status: code: 200 message: OK - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"], "token": "next:naip:vt_m_4307307_nw_18_060_20211029"}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '132' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307307_ne_18_060_20211029","bbox":[-73.192697,43.934234,-73.119216,44.003752],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121373,43.934234],[-73.119216,44.002598],[-73.190622,44.003752],[-73.192697,43.935384],[-73.121373,43.934234]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[645057.0,4866283.8,650784.6,4873881.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12662,9546],"proj:transform":[0.6,0.0,645057.0,0.0,-0.6,4873881.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20210920","bbox":[-73.130763,43.93418,-73.056149,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20210920"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20210920","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05838,43.93418],[-73.056149,44.002596],[-73.128615,44.003806],[-73.130763,43.935387],[-73.05838,43.93418]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-09-20T16:00:00Z","naip:year":"2021","proj:bbox":[650028.0,4866394.8,655840.8,4873998.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12672,9688],"proj:transform":[0.6,0.0,650028.0,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20181019_20190225","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407364_sw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.6,0.0,649869.0,0.0,-0.6,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20181019_20190225","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307308_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[650027.3999999999,4866339.6,655801.7999999999,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6,0.0,650027.3999999999,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20180923_20190225","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20180923_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_nw_18_060_20180923.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-23T00:00:00Z","naip:year":"2018","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.6,0.0,640005.0,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20180914_20190225","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6,0.0,639858.0,0.0,-0.6,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20180914_20190225","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_se_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6,0.0,644863.2,0.0,-0.6,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20180823_20190225","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20180823_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_ne_18_060_20180823.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-08-23T00:00:00Z","naip:year":"2018","proj:bbox":[645016.2,4866227.4,650785.7999999999,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6,0.0,645016.2,0.0,-0.6,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_h_20160805","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307308_nw_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[650027.4,4866339.6,655801.8,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6000000000000024,0.0,650027.4,0.0,-0.6000000000000292,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_h_20160805","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_ne_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6000000000000096,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[645016.2,4866227.4,650785.8,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6000000000000096,0.0,645016.2,0.0,-0.5999999999999854,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_ne_18_h_20160805"}},{"rel":"previous","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"prev:naip:vt_m_4307307_ne_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2423' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:52:00 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125200Z-167d46d96d84sncshC1DENcfm00000000sd000000000442g status: code: 200 message: OK version: 1 TestItemSearch.test_deprecations[get_all_items_as_dict-item_collection_as_dict-False-False].yaml000066400000000000000000001723721503646565400456460ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_item_searchinteractions: - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '78' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307308_nw_18_030_20230622_20231113","bbox":[-73.130782,43.933691,-73.056636,44.003801],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056636,44.002599],[-73.128619,44.003801],[-73.130782,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[650027.7,4866339.600000001,655801.7999999999,4873997.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19247],"proj:centroid":{"lat":43.96875,"lon":-73.09373},"proj:transform":[0.3,0.0,650027.7,0.0,-0.3,4873997.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_030_20230622_20231113","bbox":[-73.255644,43.933764,-73.181774,44.003728],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181774,44.002607],[-73.253627,44.003728],[-73.255644,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[640005.9,4866119.4,645769.2000000001,4873769.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25500,19211],"proj:centroid":{"lat":43.96875,"lon":-73.21873},"proj:transform":[0.3,0.0,640005.9,0.0,-0.3,4873769.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_030_20230622_20231113","bbox":[-73.193213,43.933726,-73.119205,44.003763],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121377,43.933726],[-73.119205,44.002601],[-73.191123,44.003763],[-73.193213,43.934885],[-73.121377,43.933726]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[645016.8,4866227.399999999,650785.5,4873881.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19229],"proj:centroid":{"lat":43.96875,"lon":-73.15623},"proj:transform":[0.3,0.0,645016.8,0.0,-0.3,4873881.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_030_20230621_20231113","bbox":[-73.130789,43.99619,-73.056629,44.066299],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.99619],[-73.056629,44.065097],[-73.128621,44.066299],[-73.130789,43.997389],[-73.05888,43.99619]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[649869.9,4873281.3,655638.6,4880939.1],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19229],"proj:centroid":{"lat":44.03125,"lon":-73.09373},"proj:transform":[0.3,0.0,649869.9,0.0,-0.3,4880939.1,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_030_20230621_20231113","bbox":[-73.193221,43.996227,-73.119196,44.066264],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.996227],[-73.119196,44.065102],[-73.191127,44.066264],[-73.193221,43.997386],[-73.121374,43.996227]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[644864.1,4873169.399999999,650627.7,4880823.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19212],"proj:centroid":{"lat":44.03125,"lon":-73.15623},"proj:transform":[0.3,0.0,644864.1,0.0,-0.3,4880823.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_030_20230620_20231113","bbox":[-73.255654,43.996263,-73.181764,44.066229],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_030_20230620_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996263],[-73.181764,44.065107],[-73.253633,44.066229],[-73.255654,43.997382],[-73.183868,43.996263]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-20T16:00:00Z","naip:year":"2023","proj:bbox":[639858.3,4873061.100000001,645616.8,4880711.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25501,19195],"proj:centroid":{"lat":44.03125,"lon":-73.21873},"proj:transform":[0.3,0.0,639858.3,0.0,-0.3,4880711.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20211029","bbox":[-73.130807,43.996179,-73.056111,44.06681],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058379,43.996179],[-73.056111,44.065598],[-73.128623,44.06681],[-73.130807,43.997387],[-73.058379,43.996179]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[649868.4,4873281.0,655678.8,4880995.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12858,9684],"proj:transform":[0.6,0.0,649868.4,0.0,-0.6,4880995.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20211029","bbox":[-73.255666,43.996252,-73.181247,44.066737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183367,43.996252],[-73.181247,44.065607],[-73.25363,44.066737],[-73.255666,43.997379],[-73.183367,43.996252]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[639857.4,4873060.8,645657.0,4880767.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12845,9666],"proj:transform":[0.6,0.0,639857.4,0.0,-0.6,4880767.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20211029","bbox":[-73.192739,43.996233,-73.119177,44.066755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996233],[-73.119177,44.065601],[-73.190629,44.066755],[-73.192739,43.997384],[-73.12137,43.996233]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[644902.8,4873170.0,650628.0,4880878.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12848,9542],"proj:transform":[0.6,0.0,644902.8,0.0,-0.6,4880878.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20211029","bbox":[-73.255626,43.934253,-73.181287,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183372,43.934253],[-73.181287,44.002604],[-73.253623,44.003733],[-73.255626,43.935379],[-73.183372,43.934253]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[640006.2,4866174.6,645808.2,4873770.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12659,9670],"proj:transform":[0.6,0.0,640006.2,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_nw_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2443' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:52:01 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125200Z-167d46d96d8chv8thC1DENzves0000000stg000000000khm status: code: 200 message: OK - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"], "token": "next:naip:vt_m_4307307_nw_18_060_20211029"}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '132' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307307_ne_18_060_20211029","bbox":[-73.192697,43.934234,-73.119216,44.003752],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121373,43.934234],[-73.119216,44.002598],[-73.190622,44.003752],[-73.192697,43.935384],[-73.121373,43.934234]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[645057.0,4866283.8,650784.6,4873881.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12662,9546],"proj:transform":[0.6,0.0,645057.0,0.0,-0.6,4873881.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20210920","bbox":[-73.130763,43.93418,-73.056149,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20210920"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20210920","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05838,43.93418],[-73.056149,44.002596],[-73.128615,44.003806],[-73.130763,43.935387],[-73.05838,43.93418]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-09-20T16:00:00Z","naip:year":"2021","proj:bbox":[650028.0,4866394.8,655840.8,4873998.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12672,9688],"proj:transform":[0.6,0.0,650028.0,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20181019_20190225","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407364_sw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.6,0.0,649869.0,0.0,-0.6,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20181019_20190225","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307308_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[650027.3999999999,4866339.6,655801.7999999999,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6,0.0,650027.3999999999,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20180923_20190225","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20180923_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_nw_18_060_20180923.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-23T00:00:00Z","naip:year":"2018","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.6,0.0,640005.0,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20180914_20190225","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6,0.0,639858.0,0.0,-0.6,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20180914_20190225","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_se_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6,0.0,644863.2,0.0,-0.6,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20180823_20190225","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20180823_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_ne_18_060_20180823.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-08-23T00:00:00Z","naip:year":"2018","proj:bbox":[645016.2,4866227.4,650785.7999999999,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6,0.0,645016.2,0.0,-0.6,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_h_20160805","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307308_nw_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[650027.4,4866339.6,655801.8,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6000000000000024,0.0,650027.4,0.0,-0.6000000000000292,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_h_20160805","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_ne_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6000000000000096,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[645016.2,4866227.4,650785.8,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6000000000000096,0.0,645016.2,0.0,-0.5999999999999854,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_ne_18_h_20160805"}},{"rel":"previous","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"prev:naip:vt_m_4307307_ne_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2423' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:52:01 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125201Z-167d46d96d8h7x2fhC1DENd7yn0000000sq00000000039wp status: code: 200 message: OK version: 1 TestItemSearch.test_deprecations[get_item_collections-pages-True-True].yaml000066400000000000000000003647331503646565400415610ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_item_searchinteractions: - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '78' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307308_nw_18_030_20230622_20231113","bbox":[-73.130782,43.933691,-73.056636,44.003801],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056636,44.002599],[-73.128619,44.003801],[-73.130782,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[650027.7,4866339.600000001,655801.7999999999,4873997.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19247],"proj:centroid":{"lat":43.96875,"lon":-73.09373},"proj:transform":[0.3,0.0,650027.7,0.0,-0.3,4873997.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_030_20230622_20231113","bbox":[-73.255644,43.933764,-73.181774,44.003728],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181774,44.002607],[-73.253627,44.003728],[-73.255644,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[640005.9,4866119.4,645769.2000000001,4873769.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25500,19211],"proj:centroid":{"lat":43.96875,"lon":-73.21873},"proj:transform":[0.3,0.0,640005.9,0.0,-0.3,4873769.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_030_20230622_20231113","bbox":[-73.193213,43.933726,-73.119205,44.003763],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121377,43.933726],[-73.119205,44.002601],[-73.191123,44.003763],[-73.193213,43.934885],[-73.121377,43.933726]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[645016.8,4866227.399999999,650785.5,4873881.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19229],"proj:centroid":{"lat":43.96875,"lon":-73.15623},"proj:transform":[0.3,0.0,645016.8,0.0,-0.3,4873881.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_030_20230621_20231113","bbox":[-73.130789,43.99619,-73.056629,44.066299],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.99619],[-73.056629,44.065097],[-73.128621,44.066299],[-73.130789,43.997389],[-73.05888,43.99619]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[649869.9,4873281.3,655638.6,4880939.1],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19229],"proj:centroid":{"lat":44.03125,"lon":-73.09373},"proj:transform":[0.3,0.0,649869.9,0.0,-0.3,4880939.1,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_030_20230621_20231113","bbox":[-73.193221,43.996227,-73.119196,44.066264],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.996227],[-73.119196,44.065102],[-73.191127,44.066264],[-73.193221,43.997386],[-73.121374,43.996227]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[644864.1,4873169.399999999,650627.7,4880823.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19212],"proj:centroid":{"lat":44.03125,"lon":-73.15623},"proj:transform":[0.3,0.0,644864.1,0.0,-0.3,4880823.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_030_20230620_20231113","bbox":[-73.255654,43.996263,-73.181764,44.066229],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_030_20230620_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996263],[-73.181764,44.065107],[-73.253633,44.066229],[-73.255654,43.997382],[-73.183868,43.996263]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-20T16:00:00Z","naip:year":"2023","proj:bbox":[639858.3,4873061.100000001,645616.8,4880711.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25501,19195],"proj:centroid":{"lat":44.03125,"lon":-73.21873},"proj:transform":[0.3,0.0,639858.3,0.0,-0.3,4880711.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20211029","bbox":[-73.130807,43.996179,-73.056111,44.06681],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058379,43.996179],[-73.056111,44.065598],[-73.128623,44.06681],[-73.130807,43.997387],[-73.058379,43.996179]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[649868.4,4873281.0,655678.8,4880995.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12858,9684],"proj:transform":[0.6,0.0,649868.4,0.0,-0.6,4880995.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20211029","bbox":[-73.255666,43.996252,-73.181247,44.066737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183367,43.996252],[-73.181247,44.065607],[-73.25363,44.066737],[-73.255666,43.997379],[-73.183367,43.996252]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[639857.4,4873060.8,645657.0,4880767.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12845,9666],"proj:transform":[0.6,0.0,639857.4,0.0,-0.6,4880767.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20211029","bbox":[-73.192739,43.996233,-73.119177,44.066755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996233],[-73.119177,44.065601],[-73.190629,44.066755],[-73.192739,43.997384],[-73.12137,43.996233]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[644902.8,4873170.0,650628.0,4880878.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12848,9542],"proj:transform":[0.6,0.0,644902.8,0.0,-0.6,4880878.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20211029","bbox":[-73.255626,43.934253,-73.181287,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183372,43.934253],[-73.181287,44.002604],[-73.253623,44.003733],[-73.255626,43.935379],[-73.183372,43.934253]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[640006.2,4866174.6,645808.2,4873770.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12659,9670],"proj:transform":[0.6,0.0,640006.2,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_nw_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2443' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:26 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125126Z-167d46d96d8dtcxmhC1DEN584s0000000s2g000000000337 status: code: 200 message: OK - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"], "token": "next:naip:vt_m_4307307_nw_18_060_20211029"}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '132' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307307_ne_18_060_20211029","bbox":[-73.192697,43.934234,-73.119216,44.003752],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121373,43.934234],[-73.119216,44.002598],[-73.190622,44.003752],[-73.192697,43.935384],[-73.121373,43.934234]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[645057.0,4866283.8,650784.6,4873881.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12662,9546],"proj:transform":[0.6,0.0,645057.0,0.0,-0.6,4873881.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20210920","bbox":[-73.130763,43.93418,-73.056149,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20210920"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20210920","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05838,43.93418],[-73.056149,44.002596],[-73.128615,44.003806],[-73.130763,43.935387],[-73.05838,43.93418]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-09-20T16:00:00Z","naip:year":"2021","proj:bbox":[650028.0,4866394.8,655840.8,4873998.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12672,9688],"proj:transform":[0.6,0.0,650028.0,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20181019_20190225","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407364_sw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.6,0.0,649869.0,0.0,-0.6,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20181019_20190225","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307308_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[650027.3999999999,4866339.6,655801.7999999999,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6,0.0,650027.3999999999,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20180923_20190225","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20180923_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_nw_18_060_20180923.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-23T00:00:00Z","naip:year":"2018","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.6,0.0,640005.0,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20180914_20190225","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6,0.0,639858.0,0.0,-0.6,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20180914_20190225","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_se_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6,0.0,644863.2,0.0,-0.6,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20180823_20190225","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20180823_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_ne_18_060_20180823.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-08-23T00:00:00Z","naip:year":"2018","proj:bbox":[645016.2,4866227.4,650785.7999999999,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6,0.0,645016.2,0.0,-0.6,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_h_20160805","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307308_nw_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[650027.4,4866339.6,655801.8,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6000000000000024,0.0,650027.4,0.0,-0.6000000000000292,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_h_20160805","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_ne_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6000000000000096,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[645016.2,4866227.4,650785.8,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6000000000000096,0.0,645016.2,0.0,-0.5999999999999854,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_ne_18_h_20160805"}},{"rel":"previous","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"prev:naip:vt_m_4307307_ne_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2423' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:27 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125126Z-167d46d96d8x72gqhC1DENywxw000000068g000000004hha status: code: 200 message: OK - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '78' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307308_nw_18_030_20230622_20231113","bbox":[-73.130782,43.933691,-73.056636,44.003801],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056636,44.002599],[-73.128619,44.003801],[-73.130782,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[650027.7,4866339.600000001,655801.7999999999,4873997.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19247],"proj:centroid":{"lat":43.96875,"lon":-73.09373},"proj:transform":[0.3,0.0,650027.7,0.0,-0.3,4873997.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_030_20230622_20231113","bbox":[-73.255644,43.933764,-73.181774,44.003728],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181774,44.002607],[-73.253627,44.003728],[-73.255644,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[640005.9,4866119.4,645769.2000000001,4873769.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25500,19211],"proj:centroid":{"lat":43.96875,"lon":-73.21873},"proj:transform":[0.3,0.0,640005.9,0.0,-0.3,4873769.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_030_20230622_20231113","bbox":[-73.193213,43.933726,-73.119205,44.003763],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121377,43.933726],[-73.119205,44.002601],[-73.191123,44.003763],[-73.193213,43.934885],[-73.121377,43.933726]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[645016.8,4866227.399999999,650785.5,4873881.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19229],"proj:centroid":{"lat":43.96875,"lon":-73.15623},"proj:transform":[0.3,0.0,645016.8,0.0,-0.3,4873881.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_030_20230621_20231113","bbox":[-73.130789,43.99619,-73.056629,44.066299],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.99619],[-73.056629,44.065097],[-73.128621,44.066299],[-73.130789,43.997389],[-73.05888,43.99619]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[649869.9,4873281.3,655638.6,4880939.1],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19229],"proj:centroid":{"lat":44.03125,"lon":-73.09373},"proj:transform":[0.3,0.0,649869.9,0.0,-0.3,4880939.1,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_030_20230621_20231113","bbox":[-73.193221,43.996227,-73.119196,44.066264],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.996227],[-73.119196,44.065102],[-73.191127,44.066264],[-73.193221,43.997386],[-73.121374,43.996227]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[644864.1,4873169.399999999,650627.7,4880823.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19212],"proj:centroid":{"lat":44.03125,"lon":-73.15623},"proj:transform":[0.3,0.0,644864.1,0.0,-0.3,4880823.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_030_20230620_20231113","bbox":[-73.255654,43.996263,-73.181764,44.066229],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_030_20230620_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996263],[-73.181764,44.065107],[-73.253633,44.066229],[-73.255654,43.997382],[-73.183868,43.996263]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-20T16:00:00Z","naip:year":"2023","proj:bbox":[639858.3,4873061.100000001,645616.8,4880711.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25501,19195],"proj:centroid":{"lat":44.03125,"lon":-73.21873},"proj:transform":[0.3,0.0,639858.3,0.0,-0.3,4880711.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20211029","bbox":[-73.130807,43.996179,-73.056111,44.06681],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058379,43.996179],[-73.056111,44.065598],[-73.128623,44.06681],[-73.130807,43.997387],[-73.058379,43.996179]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[649868.4,4873281.0,655678.8,4880995.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12858,9684],"proj:transform":[0.6,0.0,649868.4,0.0,-0.6,4880995.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20211029","bbox":[-73.255666,43.996252,-73.181247,44.066737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183367,43.996252],[-73.181247,44.065607],[-73.25363,44.066737],[-73.255666,43.997379],[-73.183367,43.996252]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[639857.4,4873060.8,645657.0,4880767.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12845,9666],"proj:transform":[0.6,0.0,639857.4,0.0,-0.6,4880767.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20211029","bbox":[-73.192739,43.996233,-73.119177,44.066755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996233],[-73.119177,44.065601],[-73.190629,44.066755],[-73.192739,43.997384],[-73.12137,43.996233]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[644902.8,4873170.0,650628.0,4880878.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12848,9542],"proj:transform":[0.6,0.0,644902.8,0.0,-0.6,4880878.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20211029","bbox":[-73.255626,43.934253,-73.181287,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183372,43.934253],[-73.181287,44.002604],[-73.253623,44.003733],[-73.255626,43.935379],[-73.183372,43.934253]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[640006.2,4866174.6,645808.2,4873770.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12659,9670],"proj:transform":[0.6,0.0,640006.2,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_nw_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2443' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:27 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125127Z-167d46d96d8bpl7whC1DENxmuw0000000s00000000003asx status: code: 200 message: OK - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"], "token": "next:naip:vt_m_4307307_nw_18_060_20211029"}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '132' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307307_ne_18_060_20211029","bbox":[-73.192697,43.934234,-73.119216,44.003752],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121373,43.934234],[-73.119216,44.002598],[-73.190622,44.003752],[-73.192697,43.935384],[-73.121373,43.934234]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[645057.0,4866283.8,650784.6,4873881.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12662,9546],"proj:transform":[0.6,0.0,645057.0,0.0,-0.6,4873881.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20210920","bbox":[-73.130763,43.93418,-73.056149,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20210920"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20210920","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05838,43.93418],[-73.056149,44.002596],[-73.128615,44.003806],[-73.130763,43.935387],[-73.05838,43.93418]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-09-20T16:00:00Z","naip:year":"2021","proj:bbox":[650028.0,4866394.8,655840.8,4873998.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12672,9688],"proj:transform":[0.6,0.0,650028.0,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20181019_20190225","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407364_sw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.6,0.0,649869.0,0.0,-0.6,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20181019_20190225","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307308_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[650027.3999999999,4866339.6,655801.7999999999,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6,0.0,650027.3999999999,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20180923_20190225","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20180923_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_nw_18_060_20180923.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-23T00:00:00Z","naip:year":"2018","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.6,0.0,640005.0,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20180914_20190225","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6,0.0,639858.0,0.0,-0.6,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20180914_20190225","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_se_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6,0.0,644863.2,0.0,-0.6,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20180823_20190225","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20180823_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_ne_18_060_20180823.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-08-23T00:00:00Z","naip:year":"2018","proj:bbox":[645016.2,4866227.4,650785.7999999999,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6,0.0,645016.2,0.0,-0.6,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_h_20160805","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307308_nw_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[650027.4,4866339.6,655801.8,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6000000000000024,0.0,650027.4,0.0,-0.6000000000000292,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_h_20160805","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_ne_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6000000000000096,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[645016.2,4866227.4,650785.8,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6000000000000096,0.0,645016.2,0.0,-0.5999999999999854,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_ne_18_h_20160805"}},{"rel":"previous","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"prev:naip:vt_m_4307307_ne_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2423' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:28 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125128Z-167d46d96d844wzkhC1DEN8g9s0000000s4g000000002ugf status: code: 200 message: OK version: 1 TestItemSearch.test_deprecations[get_items-items-True-True].yaml000066400000000000000000044660331503646565400373700ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_item_searchinteractions: - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '78' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307308_nw_18_030_20230622_20231113","bbox":[-73.130782,43.933691,-73.056636,44.003801],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056636,44.002599],[-73.128619,44.003801],[-73.130782,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[650027.7,4866339.600000001,655801.7999999999,4873997.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19247],"proj:centroid":{"lat":43.96875,"lon":-73.09373},"proj:transform":[0.3,0.0,650027.7,0.0,-0.3,4873997.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_030_20230622_20231113","bbox":[-73.255644,43.933764,-73.181774,44.003728],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181774,44.002607],[-73.253627,44.003728],[-73.255644,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[640005.9,4866119.4,645769.2000000001,4873769.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25500,19211],"proj:centroid":{"lat":43.96875,"lon":-73.21873},"proj:transform":[0.3,0.0,640005.9,0.0,-0.3,4873769.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_030_20230622_20231113","bbox":[-73.193213,43.933726,-73.119205,44.003763],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121377,43.933726],[-73.119205,44.002601],[-73.191123,44.003763],[-73.193213,43.934885],[-73.121377,43.933726]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[645016.8,4866227.399999999,650785.5,4873881.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19229],"proj:centroid":{"lat":43.96875,"lon":-73.15623},"proj:transform":[0.3,0.0,645016.8,0.0,-0.3,4873881.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_030_20230621_20231113","bbox":[-73.130789,43.99619,-73.056629,44.066299],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.99619],[-73.056629,44.065097],[-73.128621,44.066299],[-73.130789,43.997389],[-73.05888,43.99619]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[649869.9,4873281.3,655638.6,4880939.1],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19229],"proj:centroid":{"lat":44.03125,"lon":-73.09373},"proj:transform":[0.3,0.0,649869.9,0.0,-0.3,4880939.1,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_030_20230621_20231113","bbox":[-73.193221,43.996227,-73.119196,44.066264],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.996227],[-73.119196,44.065102],[-73.191127,44.066264],[-73.193221,43.997386],[-73.121374,43.996227]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[644864.1,4873169.399999999,650627.7,4880823.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19212],"proj:centroid":{"lat":44.03125,"lon":-73.15623},"proj:transform":[0.3,0.0,644864.1,0.0,-0.3,4880823.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_030_20230620_20231113","bbox":[-73.255654,43.996263,-73.181764,44.066229],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_030_20230620_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996263],[-73.181764,44.065107],[-73.253633,44.066229],[-73.255654,43.997382],[-73.183868,43.996263]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-20T16:00:00Z","naip:year":"2023","proj:bbox":[639858.3,4873061.100000001,645616.8,4880711.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25501,19195],"proj:centroid":{"lat":44.03125,"lon":-73.21873},"proj:transform":[0.3,0.0,639858.3,0.0,-0.3,4880711.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20211029","bbox":[-73.130807,43.996179,-73.056111,44.06681],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058379,43.996179],[-73.056111,44.065598],[-73.128623,44.06681],[-73.130807,43.997387],[-73.058379,43.996179]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[649868.4,4873281.0,655678.8,4880995.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12858,9684],"proj:transform":[0.6,0.0,649868.4,0.0,-0.6,4880995.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20211029","bbox":[-73.255666,43.996252,-73.181247,44.066737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183367,43.996252],[-73.181247,44.065607],[-73.25363,44.066737],[-73.255666,43.997379],[-73.183367,43.996252]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[639857.4,4873060.8,645657.0,4880767.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12845,9666],"proj:transform":[0.6,0.0,639857.4,0.0,-0.6,4880767.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20211029","bbox":[-73.192739,43.996233,-73.119177,44.066755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996233],[-73.119177,44.065601],[-73.190629,44.066755],[-73.192739,43.997384],[-73.12137,43.996233]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[644902.8,4873170.0,650628.0,4880878.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12848,9542],"proj:transform":[0.6,0.0,644902.8,0.0,-0.6,4880878.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20211029","bbox":[-73.255626,43.934253,-73.181287,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183372,43.934253],[-73.181287,44.002604],[-73.253623,44.003733],[-73.255626,43.935379],[-73.183372,43.934253]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[640006.2,4866174.6,645808.2,4873770.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12659,9670],"proj:transform":[0.6,0.0,640006.2,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_nw_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2443' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:32 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125131Z-167d46d96d89wd6bhC1DEN9n1n0000000skg0000000061zq status: code: 200 message: OK - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"], "token": "next:naip:vt_m_4307307_nw_18_060_20211029"}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '132' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307307_ne_18_060_20211029","bbox":[-73.192697,43.934234,-73.119216,44.003752],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121373,43.934234],[-73.119216,44.002598],[-73.190622,44.003752],[-73.192697,43.935384],[-73.121373,43.934234]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[645057.0,4866283.8,650784.6,4873881.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12662,9546],"proj:transform":[0.6,0.0,645057.0,0.0,-0.6,4873881.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20210920","bbox":[-73.130763,43.93418,-73.056149,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20210920"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20210920","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05838,43.93418],[-73.056149,44.002596],[-73.128615,44.003806],[-73.130763,43.935387],[-73.05838,43.93418]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-09-20T16:00:00Z","naip:year":"2021","proj:bbox":[650028.0,4866394.8,655840.8,4873998.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12672,9688],"proj:transform":[0.6,0.0,650028.0,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20181019_20190225","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407364_sw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.6,0.0,649869.0,0.0,-0.6,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20181019_20190225","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307308_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[650027.3999999999,4866339.6,655801.7999999999,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6,0.0,650027.3999999999,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20180923_20190225","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20180923_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_nw_18_060_20180923.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-23T00:00:00Z","naip:year":"2018","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.6,0.0,640005.0,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20180914_20190225","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6,0.0,639858.0,0.0,-0.6,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20180914_20190225","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_se_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6,0.0,644863.2,0.0,-0.6,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20180823_20190225","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20180823_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_ne_18_060_20180823.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-08-23T00:00:00Z","naip:year":"2018","proj:bbox":[645016.2,4866227.4,650785.7999999999,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6,0.0,645016.2,0.0,-0.6,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_h_20160805","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307308_nw_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[650027.4,4866339.6,655801.8,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6000000000000024,0.0,650027.4,0.0,-0.6000000000000292,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_h_20160805","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_ne_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6000000000000096,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[645016.2,4866227.4,650785.8,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6000000000000096,0.0,645016.2,0.0,-0.5999999999999854,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_ne_18_h_20160805"}},{"rel":"previous","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"prev:naip:vt_m_4307307_ne_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2423' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:33 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125132Z-167d46d96d8x72gqhC1DENywxw00000006eg000000000cc8 status: code: 200 message: OK - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '78' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307308_nw_18_030_20230622_20231113","bbox":[-73.130782,43.933691,-73.056636,44.003801],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056636,44.002599],[-73.128619,44.003801],[-73.130782,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[650027.7,4866339.600000001,655801.7999999999,4873997.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19247],"proj:centroid":{"lat":43.96875,"lon":-73.09373},"proj:transform":[0.3,0.0,650027.7,0.0,-0.3,4873997.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_030_20230622_20231113","bbox":[-73.255644,43.933764,-73.181774,44.003728],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181774,44.002607],[-73.253627,44.003728],[-73.255644,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[640005.9,4866119.4,645769.2000000001,4873769.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25500,19211],"proj:centroid":{"lat":43.96875,"lon":-73.21873},"proj:transform":[0.3,0.0,640005.9,0.0,-0.3,4873769.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_030_20230622_20231113","bbox":[-73.193213,43.933726,-73.119205,44.003763],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121377,43.933726],[-73.119205,44.002601],[-73.191123,44.003763],[-73.193213,43.934885],[-73.121377,43.933726]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[645016.8,4866227.399999999,650785.5,4873881.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19229],"proj:centroid":{"lat":43.96875,"lon":-73.15623},"proj:transform":[0.3,0.0,645016.8,0.0,-0.3,4873881.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_030_20230621_20231113","bbox":[-73.130789,43.99619,-73.056629,44.066299],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.99619],[-73.056629,44.065097],[-73.128621,44.066299],[-73.130789,43.997389],[-73.05888,43.99619]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[649869.9,4873281.3,655638.6,4880939.1],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19229],"proj:centroid":{"lat":44.03125,"lon":-73.09373},"proj:transform":[0.3,0.0,649869.9,0.0,-0.3,4880939.1,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_030_20230621_20231113","bbox":[-73.193221,43.996227,-73.119196,44.066264],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.996227],[-73.119196,44.065102],[-73.191127,44.066264],[-73.193221,43.997386],[-73.121374,43.996227]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[644864.1,4873169.399999999,650627.7,4880823.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19212],"proj:centroid":{"lat":44.03125,"lon":-73.15623},"proj:transform":[0.3,0.0,644864.1,0.0,-0.3,4880823.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_030_20230620_20231113","bbox":[-73.255654,43.996263,-73.181764,44.066229],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_030_20230620_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996263],[-73.181764,44.065107],[-73.253633,44.066229],[-73.255654,43.997382],[-73.183868,43.996263]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-20T16:00:00Z","naip:year":"2023","proj:bbox":[639858.3,4873061.100000001,645616.8,4880711.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25501,19195],"proj:centroid":{"lat":44.03125,"lon":-73.21873},"proj:transform":[0.3,0.0,639858.3,0.0,-0.3,4880711.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20211029","bbox":[-73.130807,43.996179,-73.056111,44.06681],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058379,43.996179],[-73.056111,44.065598],[-73.128623,44.06681],[-73.130807,43.997387],[-73.058379,43.996179]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[649868.4,4873281.0,655678.8,4880995.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12858,9684],"proj:transform":[0.6,0.0,649868.4,0.0,-0.6,4880995.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20211029","bbox":[-73.255666,43.996252,-73.181247,44.066737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183367,43.996252],[-73.181247,44.065607],[-73.25363,44.066737],[-73.255666,43.997379],[-73.183367,43.996252]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[639857.4,4873060.8,645657.0,4880767.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12845,9666],"proj:transform":[0.6,0.0,639857.4,0.0,-0.6,4880767.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20211029","bbox":[-73.192739,43.996233,-73.119177,44.066755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996233],[-73.119177,44.065601],[-73.190629,44.066755],[-73.192739,43.997384],[-73.12137,43.996233]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[644902.8,4873170.0,650628.0,4880878.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12848,9542],"proj:transform":[0.6,0.0,644902.8,0.0,-0.6,4880878.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20211029","bbox":[-73.255626,43.934253,-73.181287,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183372,43.934253],[-73.181287,44.002604],[-73.253623,44.003733],[-73.255626,43.935379],[-73.183372,43.934253]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[640006.2,4866174.6,645808.2,4873770.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12659,9670],"proj:transform":[0.6,0.0,640006.2,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_nw_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2443' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:33 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125133Z-167d46d96d8jltsrhC1DENhdnn00000005tg000000003qdv status: code: 200 message: OK - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"], "token": "next:naip:vt_m_4307307_nw_18_060_20211029"}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '132' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307307_ne_18_060_20211029","bbox":[-73.192697,43.934234,-73.119216,44.003752],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121373,43.934234],[-73.119216,44.002598],[-73.190622,44.003752],[-73.192697,43.935384],[-73.121373,43.934234]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[645057.0,4866283.8,650784.6,4873881.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12662,9546],"proj:transform":[0.6,0.0,645057.0,0.0,-0.6,4873881.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20210920","bbox":[-73.130763,43.93418,-73.056149,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20210920"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20210920","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05838,43.93418],[-73.056149,44.002596],[-73.128615,44.003806],[-73.130763,43.935387],[-73.05838,43.93418]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-09-20T16:00:00Z","naip:year":"2021","proj:bbox":[650028.0,4866394.8,655840.8,4873998.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12672,9688],"proj:transform":[0.6,0.0,650028.0,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20181019_20190225","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407364_sw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.6,0.0,649869.0,0.0,-0.6,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20181019_20190225","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307308_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[650027.3999999999,4866339.6,655801.7999999999,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6,0.0,650027.3999999999,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20180923_20190225","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20180923_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_nw_18_060_20180923.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-23T00:00:00Z","naip:year":"2018","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.6,0.0,640005.0,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20180914_20190225","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6,0.0,639858.0,0.0,-0.6,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20180914_20190225","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_se_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6,0.0,644863.2,0.0,-0.6,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20180823_20190225","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20180823_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_ne_18_060_20180823.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-08-23T00:00:00Z","naip:year":"2018","proj:bbox":[645016.2,4866227.4,650785.7999999999,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6,0.0,645016.2,0.0,-0.6,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_h_20160805","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307308_nw_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[650027.4,4866339.6,655801.8,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6000000000000024,0.0,650027.4,0.0,-0.6000000000000292,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_h_20160805","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_ne_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6000000000000096,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[645016.2,4866227.4,650785.8,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6000000000000096,0.0,645016.2,0.0,-0.5999999999999854,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_ne_18_h_20160805"}},{"rel":"previous","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"prev:naip:vt_m_4307307_ne_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2423' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:34 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125133Z-167d46d96d8n45rlhC1DENu33s0000000sq0000000003ev6 status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:34 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125134Z-167d46d96d88hw2shC1DENzkdg0000000kx0000000005k06 status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:35 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125135Z-167d46d96d88hw2shC1DENzkdg0000000m0g0000000032r6 status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:36 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125135Z-167d46d96d8pgxfphC1DENg83w0000000s600000000036r0 status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:37 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125136Z-167d46d96d8rlb5rhC1DENq6gn0000000sa0000000000xc0 status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:37 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125137Z-167d46d96d8472cmhC1DENpsfg0000000s3g000000004x84 status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:38 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125137Z-167d46d96d8mdxvvhC1DENbv1s00000003wg000000002dp1 status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:39 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125138Z-167d46d96d8dtcxmhC1DEN584s0000000ryg000000003a7r status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:39 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125139Z-167d46d96d8rf89khC1DENsp080000000s8g000000001820 status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:40 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125139Z-167d46d96d8chv8thC1DENzves0000000sqg000000003bxw status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:40 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125140Z-167d46d96d8rlb5rhC1DENq6gn0000000s60000000004dv0 status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:41 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125141Z-167d46d96d844wzkhC1DEN8g9s0000000s80000000000c6u status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:41 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125141Z-167d46d96d844wzkhC1DEN8g9s0000000s6g000000001abe status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:42 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125142Z-167d46d96d89wd6bhC1DEN9n1n0000000sqg000000002ukb status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:43 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125142Z-167d46d96d8x72gqhC1DENywxw0000000680000000004ew9 status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:43 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125143Z-167d46d96d8rlpdvhC1DEN32q80000000540000000002vh3 status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["https://api.stacspec.org/v1.0.0/item-search#sort","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","https://api.stacspec.org/v1.0.0/ogcapi-features","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:44 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125144Z-167d46d96d8kf92xhC1DEN2fsg0000000shg000000000g99 status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:45 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125144Z-167d46d96d8tpvbjhC1DENh2zs0000000s6000000000404y status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:45 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125145Z-167d46d96d84sncshC1DENcfm00000000se0000000003rbm status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:46 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125145Z-167d46d96d8rf89khC1DENsp080000000s3g0000000052p6 status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:46 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125146Z-167d46d96d8rlb5rhC1DENq6gn0000000s5g00000000430r status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:47 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125147Z-167d46d96d8bvmllhC1DENt02w0000000rx0000000005a7n status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:48 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125147Z-167d46d96d844wzkhC1DEN8g9s0000000s10000000006e9a status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:48 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125148Z-167d46d96d8kf92xhC1DEN2fsg0000000sg0000000001x5d status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:49 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125149Z-167d46d96d8dtcxmhC1DEN584s0000000rv000000000554h status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:50 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125149Z-167d46d96d85clfkhC1DEN7rkg0000000srg0000000022cx status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:50 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125150Z-167d46d96d8rlb5rhC1DENq6gn0000000s500000000057sh status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:51 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125151Z-167d46d96d8h7x2fhC1DENd7yn0000000spg000000003fmz status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:52 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125151Z-167d46d96d8rwmk4hC1DEN36180000000sn0000000004d3w status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:52 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125152Z-167d46d96d896m2xhC1DENauaw0000000760000000002922 status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:53 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125152Z-167d46d96d8472cmhC1DENpsfg0000000s9g000000000ssg status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:53 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125153Z-167d46d96d8jltsrhC1DENhdnn00000005v0000000002ywe status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:54 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125154Z-167d46d96d8x72gqhC1DENywxw000000068g000000004kgq status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:54 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125154Z-167d46d96d8rf89khC1DENsp080000000s8g0000000018na status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:55 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125154Z-167d46d96d8cbgwghC1DENbc4g0000000sgg000000000ydh status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:55 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125155Z-167d46d96d89wd6bhC1DEN9n1n0000000spg0000000042pz status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:56 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125156Z-167d46d96d844wzkhC1DEN8g9s0000000s1g000000004xvh status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:57 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125156Z-167d46d96d8cbgwghC1DENbc4g0000000sf0000000001xvn status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:57 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125157Z-167d46d96d8468jqhC1DENbu080000000s7g000000003g1k status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:58 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125158Z-167d46d96d8rwmk4hC1DEN36180000000smg000000004smy status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.12 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - close Content-Length: - '24872' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:51:59 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE x-azure-ref: - 20250717T125158Z-167d46d96d89qkmjhC1DENzae80000000sag0000000043h4 status: code: 200 message: OK version: 1 TestItemSearch.test_deprecations[item_collections-pages-True-True].yaml000066400000000000000000003647331503646565400407220ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_item_searchinteractions: - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '78' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307308_nw_18_030_20230622_20231113","bbox":[-73.130782,43.933691,-73.056636,44.003801],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056636,44.002599],[-73.128619,44.003801],[-73.130782,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[650027.7,4866339.600000001,655801.7999999999,4873997.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19247],"proj:centroid":{"lat":43.96875,"lon":-73.09373},"proj:transform":[0.3,0.0,650027.7,0.0,-0.3,4873997.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_030_20230622_20231113","bbox":[-73.255644,43.933764,-73.181774,44.003728],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181774,44.002607],[-73.253627,44.003728],[-73.255644,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[640005.9,4866119.4,645769.2000000001,4873769.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25500,19211],"proj:centroid":{"lat":43.96875,"lon":-73.21873},"proj:transform":[0.3,0.0,640005.9,0.0,-0.3,4873769.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_030_20230622_20231113","bbox":[-73.193213,43.933726,-73.119205,44.003763],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121377,43.933726],[-73.119205,44.002601],[-73.191123,44.003763],[-73.193213,43.934885],[-73.121377,43.933726]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[645016.8,4866227.399999999,650785.5,4873881.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19229],"proj:centroid":{"lat":43.96875,"lon":-73.15623},"proj:transform":[0.3,0.0,645016.8,0.0,-0.3,4873881.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_030_20230621_20231113","bbox":[-73.130789,43.99619,-73.056629,44.066299],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.99619],[-73.056629,44.065097],[-73.128621,44.066299],[-73.130789,43.997389],[-73.05888,43.99619]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[649869.9,4873281.3,655638.6,4880939.1],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19229],"proj:centroid":{"lat":44.03125,"lon":-73.09373},"proj:transform":[0.3,0.0,649869.9,0.0,-0.3,4880939.1,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_030_20230621_20231113","bbox":[-73.193221,43.996227,-73.119196,44.066264],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.996227],[-73.119196,44.065102],[-73.191127,44.066264],[-73.193221,43.997386],[-73.121374,43.996227]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[644864.1,4873169.399999999,650627.7,4880823.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19212],"proj:centroid":{"lat":44.03125,"lon":-73.15623},"proj:transform":[0.3,0.0,644864.1,0.0,-0.3,4880823.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_030_20230620_20231113","bbox":[-73.255654,43.996263,-73.181764,44.066229],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_030_20230620_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996263],[-73.181764,44.065107],[-73.253633,44.066229],[-73.255654,43.997382],[-73.183868,43.996263]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-20T16:00:00Z","naip:year":"2023","proj:bbox":[639858.3,4873061.100000001,645616.8,4880711.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25501,19195],"proj:centroid":{"lat":44.03125,"lon":-73.21873},"proj:transform":[0.3,0.0,639858.3,0.0,-0.3,4880711.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20211029","bbox":[-73.130807,43.996179,-73.056111,44.06681],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058379,43.996179],[-73.056111,44.065598],[-73.128623,44.06681],[-73.130807,43.997387],[-73.058379,43.996179]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[649868.4,4873281.0,655678.8,4880995.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12858,9684],"proj:transform":[0.6,0.0,649868.4,0.0,-0.6,4880995.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20211029","bbox":[-73.255666,43.996252,-73.181247,44.066737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183367,43.996252],[-73.181247,44.065607],[-73.25363,44.066737],[-73.255666,43.997379],[-73.183367,43.996252]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[639857.4,4873060.8,645657.0,4880767.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12845,9666],"proj:transform":[0.6,0.0,639857.4,0.0,-0.6,4880767.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20211029","bbox":[-73.192739,43.996233,-73.119177,44.066755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996233],[-73.119177,44.065601],[-73.190629,44.066755],[-73.192739,43.997384],[-73.12137,43.996233]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[644902.8,4873170.0,650628.0,4880878.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12848,9542],"proj:transform":[0.6,0.0,644902.8,0.0,-0.6,4880878.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20211029","bbox":[-73.255626,43.934253,-73.181287,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183372,43.934253],[-73.181287,44.002604],[-73.253623,44.003733],[-73.255626,43.935379],[-73.183372,43.934253]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[640006.2,4866174.6,645808.2,4873770.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12659,9670],"proj:transform":[0.6,0.0,640006.2,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_nw_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2443' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:29 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125128Z-167d46d96d8dtcxmhC1DEN584s0000000rzg000000002rrn status: code: 200 message: OK - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"], "token": "next:naip:vt_m_4307307_nw_18_060_20211029"}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '132' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307307_ne_18_060_20211029","bbox":[-73.192697,43.934234,-73.119216,44.003752],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121373,43.934234],[-73.119216,44.002598],[-73.190622,44.003752],[-73.192697,43.935384],[-73.121373,43.934234]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[645057.0,4866283.8,650784.6,4873881.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12662,9546],"proj:transform":[0.6,0.0,645057.0,0.0,-0.6,4873881.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20210920","bbox":[-73.130763,43.93418,-73.056149,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20210920"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20210920","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05838,43.93418],[-73.056149,44.002596],[-73.128615,44.003806],[-73.130763,43.935387],[-73.05838,43.93418]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-09-20T16:00:00Z","naip:year":"2021","proj:bbox":[650028.0,4866394.8,655840.8,4873998.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12672,9688],"proj:transform":[0.6,0.0,650028.0,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20181019_20190225","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407364_sw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.6,0.0,649869.0,0.0,-0.6,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20181019_20190225","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307308_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[650027.3999999999,4866339.6,655801.7999999999,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6,0.0,650027.3999999999,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20180923_20190225","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20180923_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_nw_18_060_20180923.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-23T00:00:00Z","naip:year":"2018","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.6,0.0,640005.0,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20180914_20190225","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6,0.0,639858.0,0.0,-0.6,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20180914_20190225","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_se_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6,0.0,644863.2,0.0,-0.6,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20180823_20190225","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20180823_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_ne_18_060_20180823.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-08-23T00:00:00Z","naip:year":"2018","proj:bbox":[645016.2,4866227.4,650785.7999999999,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6,0.0,645016.2,0.0,-0.6,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_h_20160805","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307308_nw_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[650027.4,4866339.6,655801.8,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6000000000000024,0.0,650027.4,0.0,-0.6000000000000292,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_h_20160805","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_ne_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6000000000000096,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[645016.2,4866227.4,650785.8,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6000000000000096,0.0,645016.2,0.0,-0.5999999999999854,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_ne_18_h_20160805"}},{"rel":"previous","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"prev:naip:vt_m_4307307_ne_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2423' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:30 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125129Z-167d46d96d844wzkhC1DEN8g9s0000000s80000000000c0d status: code: 200 message: OK - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '78' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307308_nw_18_030_20230622_20231113","bbox":[-73.130782,43.933691,-73.056636,44.003801],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056636,44.002599],[-73.128619,44.003801],[-73.130782,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[650027.7,4866339.600000001,655801.7999999999,4873997.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19247],"proj:centroid":{"lat":43.96875,"lon":-73.09373},"proj:transform":[0.3,0.0,650027.7,0.0,-0.3,4873997.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_030_20230622_20231113","bbox":[-73.255644,43.933764,-73.181774,44.003728],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181774,44.002607],[-73.253627,44.003728],[-73.255644,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[640005.9,4866119.4,645769.2000000001,4873769.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25500,19211],"proj:centroid":{"lat":43.96875,"lon":-73.21873},"proj:transform":[0.3,0.0,640005.9,0.0,-0.3,4873769.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_030_20230622_20231113","bbox":[-73.193213,43.933726,-73.119205,44.003763],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121377,43.933726],[-73.119205,44.002601],[-73.191123,44.003763],[-73.193213,43.934885],[-73.121377,43.933726]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[645016.8,4866227.399999999,650785.5,4873881.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19229],"proj:centroid":{"lat":43.96875,"lon":-73.15623},"proj:transform":[0.3,0.0,645016.8,0.0,-0.3,4873881.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_030_20230621_20231113","bbox":[-73.130789,43.99619,-73.056629,44.066299],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.99619],[-73.056629,44.065097],[-73.128621,44.066299],[-73.130789,43.997389],[-73.05888,43.99619]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[649869.9,4873281.3,655638.6,4880939.1],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19229],"proj:centroid":{"lat":44.03125,"lon":-73.09373},"proj:transform":[0.3,0.0,649869.9,0.0,-0.3,4880939.1,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_030_20230621_20231113","bbox":[-73.193221,43.996227,-73.119196,44.066264],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.996227],[-73.119196,44.065102],[-73.191127,44.066264],[-73.193221,43.997386],[-73.121374,43.996227]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[644864.1,4873169.399999999,650627.7,4880823.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19212],"proj:centroid":{"lat":44.03125,"lon":-73.15623},"proj:transform":[0.3,0.0,644864.1,0.0,-0.3,4880823.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_030_20230620_20231113","bbox":[-73.255654,43.996263,-73.181764,44.066229],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_030_20230620_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996263],[-73.181764,44.065107],[-73.253633,44.066229],[-73.255654,43.997382],[-73.183868,43.996263]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-20T16:00:00Z","naip:year":"2023","proj:bbox":[639858.3,4873061.100000001,645616.8,4880711.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25501,19195],"proj:centroid":{"lat":44.03125,"lon":-73.21873},"proj:transform":[0.3,0.0,639858.3,0.0,-0.3,4880711.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20211029","bbox":[-73.130807,43.996179,-73.056111,44.06681],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058379,43.996179],[-73.056111,44.065598],[-73.128623,44.06681],[-73.130807,43.997387],[-73.058379,43.996179]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[649868.4,4873281.0,655678.8,4880995.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12858,9684],"proj:transform":[0.6,0.0,649868.4,0.0,-0.6,4880995.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20211029","bbox":[-73.255666,43.996252,-73.181247,44.066737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183367,43.996252],[-73.181247,44.065607],[-73.25363,44.066737],[-73.255666,43.997379],[-73.183367,43.996252]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[639857.4,4873060.8,645657.0,4880767.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12845,9666],"proj:transform":[0.6,0.0,639857.4,0.0,-0.6,4880767.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20211029","bbox":[-73.192739,43.996233,-73.119177,44.066755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996233],[-73.119177,44.065601],[-73.190629,44.066755],[-73.192739,43.997384],[-73.12137,43.996233]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[644902.8,4873170.0,650628.0,4880878.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12848,9542],"proj:transform":[0.6,0.0,644902.8,0.0,-0.6,4880878.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20211029","bbox":[-73.255626,43.934253,-73.181287,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183372,43.934253],[-73.181287,44.002604],[-73.253623,44.003733],[-73.255626,43.935379],[-73.183372,43.934253]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[640006.2,4866174.6,645808.2,4873770.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12659,9670],"proj:transform":[0.6,0.0,640006.2,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_nw_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2443' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:31 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125130Z-167d46d96d8mdxvvhC1DENbv1s00000003yg000000000k83 status: code: 200 message: OK - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"], "token": "next:naip:vt_m_4307307_nw_18_060_20211029"}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '132' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307307_ne_18_060_20211029","bbox":[-73.192697,43.934234,-73.119216,44.003752],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121373,43.934234],[-73.119216,44.002598],[-73.190622,44.003752],[-73.192697,43.935384],[-73.121373,43.934234]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[645057.0,4866283.8,650784.6,4873881.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12662,9546],"proj:transform":[0.6,0.0,645057.0,0.0,-0.6,4873881.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20210920","bbox":[-73.130763,43.93418,-73.056149,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20210920"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20210920","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05838,43.93418],[-73.056149,44.002596],[-73.128615,44.003806],[-73.130763,43.935387],[-73.05838,43.93418]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-09-20T16:00:00Z","naip:year":"2021","proj:bbox":[650028.0,4866394.8,655840.8,4873998.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12672,9688],"proj:transform":[0.6,0.0,650028.0,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20181019_20190225","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407364_sw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.6,0.0,649869.0,0.0,-0.6,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20181019_20190225","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307308_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[650027.3999999999,4866339.6,655801.7999999999,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6,0.0,650027.3999999999,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20180923_20190225","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20180923_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_nw_18_060_20180923.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-23T00:00:00Z","naip:year":"2018","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.6,0.0,640005.0,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20180914_20190225","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6,0.0,639858.0,0.0,-0.6,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20180914_20190225","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_se_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6,0.0,644863.2,0.0,-0.6,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20180823_20190225","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20180823_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_ne_18_060_20180823.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-08-23T00:00:00Z","naip:year":"2018","proj:bbox":[645016.2,4866227.4,650785.7999999999,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6,0.0,645016.2,0.0,-0.6,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_h_20160805","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307308_nw_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[650027.4,4866339.6,655801.8,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6000000000000024,0.0,650027.4,0.0,-0.6000000000000292,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_h_20160805","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_ne_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6000000000000096,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[645016.2,4866227.4,650785.8,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6000000000000096,0.0,645016.2,0.0,-0.5999999999999854,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_ne_18_h_20160805"}},{"rel":"previous","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"prev:naip:vt_m_4307307_ne_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2423' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:31 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125131Z-167d46d96d88hw2shC1DENzkdg0000000m2g000000001pbm status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_item_search/TestItemSearch.test_get_all_items.yaml000066400000000000000000000211471503646565400324220ustar00rootroot00000000000000interactions: - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '78' Content-Type: - application/json User-Agent: - python-requests/2.25.1 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: !!binary | H4sIAGfKlmEC/+2cbY+buBaA/0qUD/1yM8QvYExWo5W2V1vtlXa76vbTHUURSZyELgEEzNtW/e97 bCBxEoYkkxmFBEZtNTXGPuf4+PBgjv29mz5Hojvo/irc9D4WH0PfF5PUC4NurzvLypLu4O5715tC rYd0tByZJrIpM0fJ4wjzEWJoRBDmGGFH/uIgQiy4eTwOn+DGG5samCLeM6nhOAw7pCeLkMUYcXqm aSDGKLKHvS1BoAXfC/7O+o6FD1cmumx5bTeKfG/iysL+t0RdWcRiBlcWaRolg34/8t1ApG78PAmX 0X0qYmPpTeIwCWepAUV9N/L6SepO+g+4v+4h6QeuF3V/9IrOIzcWQXqGjuMwfLdutW4S4c/Ku5mL 8D9vr2HfS8Uy6R/sUGtJXR96CtxUVFol9VJfXko9Hxz4nKL3MxE0V4rFgyceXyfU1E1dKZSUob90 o5/X0t1K4T7IC7dHzNPCUL+7USecdeTta8Om4intL9Kl3/0BM9RNEpHCjIRgsHTnQv6ypYGUQNw/ iiQ1xn44BqljYTx6wTR8TAzQLbPfA0IEzNeX4kgzgmiTpRKur2TuV8lupJ7mqEoQsPBs9lNH84Jb cNqsMIrDGdj/duKH99ObMEq9pfePmEILceir0NaVJu0O15b48umX3750Pn7+1JEjBzVFOBi7wTSL RYG7VJVUGzAqyzAY5WUxlMlhzv/7KRYi2Kk0V6VatV/8e7FTaywLtUp//PZlp07gxVA2Fckk9iIV FqFMuPGNF8xiVwkz/NHrLsGllIpvNVyz+XRy+Gg9pVvuBF7uBbr9VwJqY/Drp/9+7PwuUlUOSqSL ++UYpPHP5HQEIeNbNN92vG+RmOuqrMXUdPm6KpSKgEupEAV6rCpA2f/++vxH59FLF52pmLn3ftqB 581UxF4wf4NAUfRqyH9KQ0ZycMz4kIWBW2WBD2Nv+nSLe6RHK8Px2kIqGEq/zPQT01ERDzWLfMmv ddax8q1jZ96SEQXz9zPISu3wQcRK8OGWB0H33R9gDQhYMA/iZ2WFrMKfof88D7MIEsZTTz7zZGN3 dxlBca5R1bB3t81VFkZWXowJZ5TouLUFZjbVmthseCgHS2MvCDKSUHowFmEk4tQT6pEwTwAQkcF6 Mp4KCLNSBWmrG4xusPMVoYH683+4UzYweIZQlVfJGvs2yJmRmQ5njoF6Jrcp4RgaZZbFKIdfTM6R YyIDDfN7RJTMuwPCHMzzhuG5nQoFq0W7ycKVFr3DxGZmD9Rixd1p7AbJLIyXcFUKDw33Vt3L/9wg vdNe8ReDAGAWiQgjGNokMwyUGqibF0OsE4G8oByg8FN56WZ9yZjDlL8fG17YFyH4pmygn0wWYuka BXTtvVNqkg1OWQtD+RjR6B2GH4Z9FBxB7zZnyiEoBTOv+J1ayqEQ5Yi1/N5kfj/AperK7/tFPx+/ HzRTa8bvNEepF2Vv+b1G/H7AaF0Cv+9XozH8vj9mNIzfTzLIe/M7WWOVBvAFWBGGTA3gCdV5a4fN TO7oBK83fQaEt0B826BO8QMMDYpRJ2N5jrBh69fg/cPhp0E9MSuhfkcgje7z3q+G7u0td0cOoS/Q PYEXK8vKfUUaUrkVx7ZdeJtNaUv3jaf7apeqNd1Xin5mut83U+tM92Wyt3RfV7ovH62Lo/tSNZpF 95Uxo4l0/1qDvCPdY065JKgCqwpe18CKMFwsuROLMsp13tphM5Nzumpkq+2T8R45N4Qet0KPELLU Cj1jGN6vzR4zLZvBi7bCadt+/Qq9hQHmVUZIxQp93v0Gw6tOr4Hh1ScnuvXJCTnYrGL44pMNYWzF 8IDz2ScfQs2W4RufYVPtUrXOsKkU/cwZNvtmap0zbMpkbxm+rhk25aN1cRk2pWo0K8OmMmY0McPm tQZ5Z4ZnGlZpDF+AlYUx1Rne1nlrh81syk2N4TfafguGx+ZRDE8dbvE8ywYxnDE8w8zgKuHFxuQk hrccXsnwRfcbWTaq02tieHEgw2OHEkoLhyB2xvDYkQnzuU/ZpGX4luErXaruDC9qzPDighletAx/ QQwvroPhRcvwomX4NzDIezI8wRLKC6oq6FvjKkD4otQBmuc6be2QGRD86jVgq+UzALxpckbzFXfM 1CK8hRjJmJ4jTmBGvhbguVyErwb4ovsNgFedXlMizaZH8xcTaaSbEFx8lSGsAHioXXzYsXEL8G0i TaVL1T2R5mXRz59IUzlTa55IsyN7C/A1TqQpGa1LTKTZVaNxiTQvx4yGJtK8yiDvDfDmGqvWBL8C K8KQoyO8jls7aAaMaukErzd9OsLzo/NoLISZQngm3yIyhLe5tZ0dzzk5jeX3bXnN5dhIqFGdXt2W 14X0aHi3Qe0+1xbgT9gsqvnRRWxuXctbkx2tGxPxvHzONlCJvbCjcC1wS+dnpHOm0/khY1VDNj/a 4Zq5gXVtgCbvWj3ICs3cqor0H2JuIzmTSI6sKiRn5TtXzd0Nq/yd96lu66JtWzVXYL5RxyHXuXlV VHJ6u9DecvoRq9WXwum78tZkSf1iOH1X4JbT68rpZWN1cZxeokQzV9CbzelHWaGZa+UbbOuwt+D0 F5fO+TuvmG/rUraAbjnaD7fM61pP3zgTdeX1Znvqe0vprz06XfOiizjqfS1vTc5335iGNaP00vO1 1wK3lF4jSt87VpdA6fuUaOZx7msDNPkM94Os0LyD2zeI1bGtckQ3j0P0M53jvqNL6bHuu0vpV3TK +8am6pcQvT04poX0Y05fuRRIp3WDdHppkE5bSL8YSKfXAOm06ZBOW0g/1goNPftlY/3ZdN4C1M92 FMy2LmUnw2zQvI34pR8UM9zl50A8VZMkeO8ilHT/5+e/vp6GTwm4wWQhXwTCqZoQPjya0+4Ao813 g+wjkJO9E2SvoPBWqvmpMqTyVDntwr9FkGsy2IOONSLo07vJzQmP/H8B68I/5Ux3AAA= headers: Content-Encoding: - gzip Content-Length: - '2216' Content-Type: - application/json Date: - Thu, 18 Nov 2021 21:49:28 GMT Strict-Transport-Security: - max-age=15724800; includeSubDomains Vary: - Accept-Encoding X-Azure-Ref: - 0Z8qWYQAAAAChFl5OScMLRapCgghEzr8VQk9TMzIxMDAwMTEwMDExADkyN2FiZmE2LTE5ZjYtNGFmMS1hMDlkLWM5NTlkOWExZTY0NA== X-Cache: - CONFIG_NOCACHE status: code: 200 message: OK - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"], "token": "next:vt_m_4407363_sw_18_h_20160804"}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '125' Content-Type: - application/json User-Agent: - python-requests/2.25.1 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: !!binary | H4sIAGjKlmEC/+2dbY/iOBKA/wriw3w5OvglcRxOrZN2Tjvak3ZnNTufboRQGgxkNiRREvrlVvPf r+wkxCR0GujuJUBa0yPaMa5yuWweV7vcf/XTp0j0R/2fhZuuY/Ex9H0xTb0w6A/686ws6Y++/dX3 ZlDrPp2sJqaJbMroJBETzCfLCUGYIY5MeMfdXfgItW9samCHEkoHJjUchxFiD1QhdrBDBqZpIMaI TcaDinxow/eCPzORsfDhyVRXKa/tRpHvTV1ZOPyeqCfLWMzhyTJNo2Q0HEa+G4jUjZ+m4SpapyI2 Vt40DpNwnhpQNHQjb5ik7nR4j4elhGQYuF7U/zEohEduLIL0BILjMHw3sZqYRPjz3WIWIvzH2/dw 6KVilQyb/ahUz/Wh+cBNRaMpUi/15aPU88FZ/3Z9h5lczWlice+Jh+M0mbmpKzWRgocrN/pXqdKt 1OiDfHD70kQsTPKrG/XCeU++pzRhKh7T4TJd+f0fMAHdJBEpTDiY4it3IeSLitpSrFg/iCQ17vzw DlSNhfHgBbPwITGgQ5ml7hEiYKih1EIaDDE0XSmdhkrR4fMKG6mneaFSA4w6n/+zp432LXhkVhjF 4RxMfjv1w/XsJoxSb+X9T8yghTj01XLVl1bsj0s7fPn00y9feh8/f+rJwYKaIhzducEsW2gCd6Uq qTZgIFZhMMnLYiiTI5v/+CkWIqhVWqhSrdpP/lrUat3JQq3Sb798qdUJvBjKZiKZxl6k1jwoE258 4wXz2FXKjH8M+ivwItXFtxqs+WI23XesHtOKK4Fbe4Fu/Y162gj8/OnfH3u/ilSVQxfS5Xp1B7r4 J3E4gpDxPVpUne57JBZ6R0oltZ583RTKboA7qWUIerGpAGX/+ePzb70HL132ZmLurv20Bx8kMxF7 weIN1oVCqiH/27lCJM1LxIds1t+qbn+482aPt3hABrRxnS3NohY86YhZp8RsUqx5mhm+5M965Xr4 1utj3pIRBYs3tsKmr+G9iJW244qvgMz+DzABLEvg7/GT6npW4ffQf1qE2ToRxjNPfoLJxr5lZEQw tUswGg++VdHIwrgodTCmXAemGlzZlLOiuNLyWA6Rxk+wlkjKGMAIhJGIU0+odX+RANshgyH9y3QG chUVsLjKLkmT3SB+g8yvCI3Uv/9CQ7K90RMsUHmVrO3voxwEmWlyRg3oFrcpZo5hDpiFGOEGgiKO OIGpOM7fI6Jk0R8R5mCeNwyfyqlQ2Fm0myxdaeFvmNgWHzgwisW709gNknkYr+Dpjr4gkLjRRv5w gwzL0b64ZZYqqRryGxtI2lDiwQQcIcmsCKUG6ufFsAKKQD5Q7lK4snx0Uz4yFrAUrO8MLxyKENxX NjBMpkuxco2Csl58p+xnNpK7WhjLjxaN0in4PLInwYPm8zaxtymdWBazLOUylNrMzCidY9umyukQ tSntKP2aKf05P2orpT+j7+ko/fmJ2DJKpzk0PaNwR+ktovQXx+ocKP2lTlwNpT9jgCuj9MOt8J6U zim3aUlGBWJrbEQYLoCcWLC/4Doy1fAK4JJuGqm0fRiob3GrY5EdoG7fEPswUAdMthSVMwZbEQnq pmUDsWfsbtuAm8eCOpagbu8G9VpfMlDPtdkF6jbipUqXAOpqc2pOEuX2WLq9CbsQpl5ghFglrk5l /9UWD/Msqo4s2Bua+SaRKkt3vH7dUfUmd2p1eL1B8RPH2Ztn6GlR3pQmBE0ysjIr8c+65h3KnxDl TR3l9xmrFqL8wQ53XQH3hrXiGiPvx5njHeEeWZzbVolROZfrIGVhZG3C6pxRovNVhcRsqjVRafkQ tAdWrLK8KYPuhDWxvFljeYcDuCNFyYTLRmETwqiTB90d80iWt5nlDCzg7l0oj3MQ30hX7I51mRcT Vef5HnUfWLcdnG/0GGcbXKdFeJ0j1uH61YfXmxyq1XH2BsVPHHBvnqMtw/WtQGhd8w7XW4TrL47V OeD6S524rsh7w1pxjSH448zxzrjOS4rSaJ1uQvHI1GidcB2vaigGRGppvK43fQJct0B9Ow+9U0Xp gOsckZzgHYe/DtetRlwvpGu4nsu8mNg6rWw/kfMMrqtf1xTRdcLI5jQMw8URLGp2uN6dWW9wqLYf Xn9O8dOfYm+Yo22Ortc173C9rdH1XWN1dtH1HZ24uuPsz60VV3qu/QhzvPPRGcZKjNKOzhQgZWFM 9aMzts5XNRazKcfa0Zmttt8C2JFzELBTh1s8J2XEVHzdtBi281i3jcnRwI4B2C2nEdgL6VvxdSXz koBd7AXsKg/C2mQ8mLuSTDte73i9wZ/OItm0lbwuzpbXRcfrZ8Pr4hJ4XVw7r4uO119pjr8tIdXc mZAqEy03Gakm1uiqBmJA63RnQqp5CljPcj7RJgMV1TNQj4V1C2CdNUfXC+lbsK5kXlyK6X7R9TLX FJe5pqzLNe1ofS+HOouk01bR+h5ztM2HYeqad7Te1sMwu8bq7A7D7OjEdaahdrT+CnO8d2IqKzFK T0xlxyWm2o6emKq3fQpgr2SioiITFb0uEzWPrstM3iZg1zNPsS7zkoB9/+g62aQpE1JG1zcOxZwO 2Dtgb3CotgO7aC2wi7MF9i68fj7ALi4B2MW1A3sXXn+tOd47vI5LjNLj63xzfN3Wb3ykOl/VWMzk 5XGYatunAHYLYZYDO1FnyZmFbM5yeOacvCrC/lK6aS59C9iVzMu8G4bIsz7ZC6d6m2N3N0yH6wde sVJxp/O5G2Zb8TbdDVOboafFdbJFT6Tpqg6leYfrJ8R1ouP6PmPVQlw/2OGu+G6Y7bXi6u+G2dsc 3d0w0kjynkdMmmCddHfDnPLseiOsd2fXO1o/8Aj4OdF6g+JtOrt+VrRe17yj9bbS+q6xOjta39GJ Kz673tH6cebozq4fCevd2fU3hPVxnZ0D8dhMkeCMy1AS/u+f//j6OmJKYJynS7kHCGfKv3347E3B V9D2KfnstzlOth3IfFiOkwZc0pDK9+QsCv8UQd6T0b7YWAGvcJ1chhFkb0Yv/G3RFm0hXi8mNyeA zf8B7eQrXsl3AAA= headers: Content-Encoding: - gzip Content-Length: - '2291' Content-Type: - application/json Date: - Thu, 18 Nov 2021 21:49:28 GMT Strict-Transport-Security: - max-age=15724800; includeSubDomains Vary: - Accept-Encoding X-Azure-Ref: - 0aMqWYQAAAAD+PEqsE6O7Tq6yrVwLeQcbQk9TMzIxMDAwMTEwMDExADkyN2FiZmE2LTE5ZjYtNGFmMS1hMDlkLWM5NTlkOWExZTY0NA== X-Cache: - CONFIG_NOCACHE status: code: 200 message: OK version: 1 TestItemSearch.test_get_all_items_deprecated.yaml000066400000000000000000000206301503646565400345170ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_item_searchinteractions: - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '78' Content-Type: - application/json User-Agent: - python-requests/2.28.1 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: !!binary | H4sIAN9c4WIC/+2cW4/iNhSA/wpC6r6USXxJHIdqVKlTddVK7VbbfeoIoQAGsg1JlGRurfa/99hJ wIEMDAsst6BhBI5jn1vMF+fY/7Wzl1i0u+1fhJc9JOIuCgIxzPwobHfa47wsbXfv/2v7I6j1mPVn fctCDmVWP33qY95HDPUJwhwj7MoPLiLEhpMHg+gZTrxxqIEp4h2LGq7LsEs6sgjZjBG3Y1kGYowi p9dZEgRaCPzwn7zvRARwZKjLVtT24jjwh54sND+n6sg0EWM4Ms2yOO2aZhx4oci85GUYzeKHTCTG zB8mURqNMwOKTC/2zTTzhuYjNhc9pGbo+XH7S6fsPPYSEWZH6DiJooN1q3WTimBc381ERN/vX0PT z8QsNd8cUJonEvHoi6evE2fkZZ4UR/Zuzrz4x4Vct1Ksd/LA7RZhnvlZIC32uxe3onFLnr4wYyae M3OazYL2FwhwL01FBgEN19LMmwj5YUkDKYF4eBJpZgyCaABSJ8J48sNR9JQaoFtuuUeECBjOlOJI A4Jow5kSzlQym+tkNzJf87MSxISi8Q8tzee34PO8ME6isR+I22EQPYxuojjzZ/6/YgQtJFGgRoa2 NGm7t7DEx/c//fqxdffhfSuDM6GmiLoDLxzll3LozVQl1QZ4ZRaF/aIsgTLp5uLr+0SIcKXSRJVq 1X4KHsRKrYEs1Cr98evHlTqhn0DZSKTDxI/VqAJlwktu/HCceEqY3pdOewYhpVTcl7vGk9Hw7d56 zpbCCaLcD3X7zwXUfPDL+5/vWr+LTJWDEtn0YTYAaYIjBR1ByPgcT5YD73MsJroqCzE1XT7NC6Ui EFJqMAI95hWg7Le/PvzRevKzaWskxt5DkLVguB6JxA8nexgoyl4N+W+3IeNdPgrcKgPkX/oDf/Sc F3zn3OHvyB2BN1076C9M5ssPMlBzhcWoXw6Qmok+Fsdai8Fz34Np0ZIRh5NvaKG5HaJHkShNeksx BvK0v4B5YEiDKyV5UWbJK/wZBS+TKB9jomTkh16mGru/zxGFcw1bep37ZXCxMbKLYkw4o0TnmSXy cajWRLXhnvSeBjcwDEkE6IBzolgkmS/Uj8YkBQJDBuvIEVfAQCxVkNa7wegGu58Q6qq/v+FM2UD3 BQazokre2OduAWXMcjlzDdSxuEMJx9Aos21GOXywOEeuhQzUK84RcTppdwlzMS8aht/0TCgaLNtN p5606D0mDrM6oBYrz84SL0zHUTKDo1J4aLgz715+uUF6p53yjUEAMIvEhz4MeyJMJTpIT5cRKg/d LA4ZE7j6HwaGH5kigqg0oBUzHU7FzDNKfNl4phQ590JdC71CHgi1NHeUqqN+aDQ8BveD2/vhFnjs cKYCglIw8xyQqa0CClGOWAPI1wzIbwipIwDymwL9xACZFqzyquwNIJ8QIL/BW+cAyJvVuBZA3jxk XDsg79lChwZksuAWjZBLciEMWRohE6oDzQr8WNzVEVlv+giMbIP4jkHd8gWQCopRN4dljrDh6McA 8F2+GzUTay01rwik4XPR+8Xgs7N0ASCX0FfwmcCdi20XsSINqcKKY8cpo82htMHnq8fn9SF1LHze FOinjM91sjf4fKr4XO+ts8PnWjWuCp/XDhkNPu/VQgfEZ8wpl4hScksJxBq5EIbLSWNiU0a5DjQr 8GNxTueNLLW9Mz8j94bQ7eaYEUK2mmNmDMMtrtVhlu0wuNdVvOo4Xz/HbGOgZZU0sGaOuei+Asmq 00uAZPUYhS49RkEuttZBcvnQgTA2h2Tg5fyhBaFWA8lXn4SxPqSOlYSxKdBPOQmjTvYGkk81CaPe W2eXhFGrxlUlYawdMpokjL1a6MCQzDRu0SC5JBcbY6pDsqMDzQr8OJRbGiRX2t4HJGNrK0imLrd5 kYiBGM4hmWFmcJUT4WCyEyTbLl8LyWX3lUQM1eklQbJ4IyRjlxJKy4AgTg7J2JVJy0VMOaSB5AaS 14bUESFZnDEkiwaSzwiSxWVAsrh6SBYNJH8bCx0SkgmW1FtiS4m3GrgAI5elLuAy13FmBX0Akeec vdTyEQjZsjijxZwxZmoa2UaM5NDMESdwzX4tIXM5jbyekMvuK4SsOr2kXItqjPNXcy1kmBBcPlcg rCRkqF0+mnBwQ8hNrsXakDpirsXaQD/xXIsV2RtCPuFcixpvnWOuxaoa15Zr8fqQ0eRa7NVChyZk a8EtC0SekwthyNUZWeeZFfYBCLR1RNab3p2R+dapFjbCTDEyk5ieM7LD7eUMZc7JbrC8aV1fIUcl 50J1enHr+qYyxuHmATWL+RpC3mExnxZHx17BVwnp47Iwq2AJe2UF1ULghoSPSMJMJ+G3+OoEOXjr gLvKBXsL/Rv03d0s17k0D+kvYi3jL5P4i+x1+MvqV+pZqwv0+IHX5S3roi3Ts+YQXKnjkstcrCfW MnEza9ww8RazxifAxLUhfcpMvCpww8SnysR1vjo7Jq5R4ipnhhsm3qdZrnMOuMKRLtsHE786JcwP PBO8rEvdxLDtai9uW5c1T1zZ4nB+HVjNnsgNEX/tnshaFB17I+RKQJ8YEdduRLsQuCHiEyLijb46 ByLepMRV7nu80L9JId7dLNe3w3GFDl3HrsdhazscPtKGxyu61O5/vDpFfEHbIVcWm76Gw83+FA0Q b7M/xQkAMT03IKYNEJ8NENNLAGJ65UBMGyA+gFmudLeJyryq5e4Dio+2+cSyLnV7UVTI2UH83Lem 6K2yaiies404BRE8jSRN//nhr0+74VUKoTCcSvCORuqiCOAHPGt3MaqyeP6Aw80ZPL/lg7tALVaV jVW0yksv+keEhTbdDah2QsS6ezeFOQEM/gcWYCvyRnEAAA== headers: Content-Encoding: - gzip Content-Length: - '2143' Content-Type: - application/geo+json Date: - Wed, 27 Jul 2022 15:42:23 GMT Strict-Transport-Security: - max-age=15724800; includeSubDomains Vary: - Accept-Encoding X-Azure-Ref: - 031zhYgAAAAD9FbUHh3kmTaVZNPXhmQ4vRE0yQUExMDkxMjA4MDQ3ADkyN2FiZmE2LTE5ZjYtNGFmMS1hMDlkLWM5NTlkOWExZTY0NA== X-Cache: - CONFIG_NOCACHE status: code: 200 message: OK - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"], "token": "next:vt_m_4407363_sw_18_h_20160804"}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '125' Content-Type: - application/json User-Agent: - python-requests/2.28.1 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: !!binary | H4sIAN9c4WIC/+2dbW+rxhKA/4plqf1SB/YFlsVVVKm56lGv1J7q9HzqkWVhe21zigEBebvV+e93 dgGzxg52Ert+I0oie1l2Z2aH9cNkhvzTzZ5j0e13fxFedp+IuygIxDjzo7Db607ztrTb//JP159A r4dsuBhaFnIoo8NUDDEfzocEYYY4suCM0Sh6gt43DjWwSwmlPYsarssIcXqqEbvYJT3LMhBjxCGD Xm1+GCPww7/zKRMRwJGxLlLR24vjwB97stH8mqoj80RM4cg8y+K0b5px4IUi85LncbSI7zORGAt/ nERpNM0MaDK92DfTzBubD9isZkjN0PPj7rdeOXnsJSLMjjBxEkUHm1abJhXBdPM0MxH9sH8NTT8T i9Rs9iPN/Il48MXj22SYeJknZZBTmgsv/qkS5lbK8r08cLvNpTM/C6RtfvPiTjTtyHMqg2XiKTPn 2SLofgNX9tJUZOC6cLEsvJmQL2piy2nF/aNIM2MURCMQNRHGox9OosfUAIVyGz0gRMBEppRCmgox NF4omUwlqPmywEbma+upxDChafpjR1vbW1jbvDFOoqkfiNtxEN1PbqI48xf+/8QERkiiQF34XWnF 7qCyw6cPP//6qXP38UMngzOhp4j6Iy+c5Jds6C1UJzUGLMQiCodFWwJtcmWLtx8SIcK1TjPVqnX7 ObgXa71GslHr9Puvn9b6hH4CbRORjhM/VrsHtAkvufHDaeIpYQbfet0FeJFScV+LNZ1Nxruu1VNW cyVwaz/Urb8UT1uBXz78567zm8hUO6iQze8XI5AlOIrDEYSMr/Gs7nRfYzHTFamE1DT5vGyUaoA7 qQ0HtFh2gLb//vnx986jn807EzH17oOsA1vyRCR+ONvDvlDOashfb9ghvs8v+luldf5mOPInT3nD d84d/o7cEfihjbt5ZSdfvpCemWspJsNyE9Ts8qk41qk2yH1vmMVIRhzODm2WpfLRg0iU+IOaN4EQ 3W9gE9i44IpInpUt8g5/RMHzLMp3kiiZ+KGXqcG+5BRCMHUqCBn0vtQxxMa4bHUxplyHkzWQcShn ZXNt5IFcM41VYLeRn+g9WJIoFknmC/XJMEuBo5DBkP5luT25zwrYfqVK0og3iN8g6zNCffX9Fwwk x+s/wxZWdMnH/tovoItZFmfUALW4QzFzDavHbMQINxA0ccQJXKyD4hwRp7NunzAX82Jg+MTOhEK8 ctx07kkLf8HEsXnPhXUtz84SL0ynUbKAoxt0QTDjUhr55gYZtqt9cduqRFI95A82kLShRIchbIYi TCU2SL8onVgeuqkOGTPYFe5Hhh+ZIgLHNWAUMx3PxcIzSnTZeqZUKF+yTSMMCnnAMdN8VVUf9eGj ETGFqwA5w/BRuwoc4qwSMbFtZtvKZSh1mJUTMceOQ5XTIepQ2hLxNRPxS350BCJ+2aVPjIhpASgv CNwS8QkR8da1Ogci3qbEtRDxC/pfOxHvwyyHJGJOuUMrCilxVuMQwnAJv8QGuuc6nqyhDIAcXQ5S G/t1ULzCiK5NNkCxc0Oc10ExIKmtCJgxwH4JxZbtAB3nnOw4QHNvhWIsodjZDMVruuRQXEizCYod xCuRLgGK1a2hNUzVhYDlhWAB8TP1AiPEavFiKvVXt1OY59FiZMN9mFXckFFl6ZaNrzta3OROxwob N7v4cWnZksYDSXJ4sWrhvHXJW1o+Ii1bOi3vslYnSMuvdririh83bBVtIHmP9jkgPyObc8euSKVA X51VbIzsZZSYM0p0hKnBjkO1IWojv4aegcDquGzJGDJhTbhsreGyy4GNkQJRwuWgwPmMukUM2bXe iMsOs92eDWi7iZZxwbrL2RUeY33OiwkS8+LGcBcedlxc3EsxzpZETMtoMUesJeKrjxY3OdSxwsbN Tn5iRLwSzluXvCXiEyLirWt1DkS8TYmrih83bBVtIHmP9jkwEfMKVDQgpsuAMrI0ICZcJ5g12gHo szUk1oc+AhHbIL5TBJCpAmEgYo5IAcmuy99HxHYjEZeza0RczHkxEWJau+dD7gtErP7oUMaICSPL /AmGy6QdarVE3GYUNzjUEVOLG5z8lGPE65K3RHyqMeJNa3V2MeINSlxbjvFLW0UbI96jfQ6cY8FY RSpajkXJKjbGVM+xcHSEWcMdh3Ks5VisjL0PJkbuq5iYutzmBYwipqLEls2wU0RsHUzezMQYmNh2 G5m4nH0lSqzmvCQmFjsxsUpOt5dp6NamKrsWiVskbvCnY1fbnSUSixaJzwaJxSUgsbhyJBYtEh/e Pv9aIZ61sRBPFpgtK/EsrAHMGusAENONhXjWMXg4r3VDy8o7tF5591YetoGHWXOMuJx9hYfVnBdX WrdbjLiqscNVjR1ra+xaIN7JoY5dbHcWQLyxCKoF4tPPmti0VmeXNbFBiausumuB+LD2OXQdHqtI Ra/DY2+rw3NcvQ5PH/sYTFwrvENl4R16X+FdESOWhYtNTKwX2mF9zkti4t1jxGRZlUlIFSNeOhRz WyZumbjBoY7IxOJsmbgNEp8PE4tLYGJx5UzcBon/BfscOkiMK1LRo8R8mUrs6M9rozrCrOGOxau8 ifrYx2BiG2FWMDFReb3MRg5nBZ9yTt4VJ95WXVfMvsLEas7LfNoEkUkh+Qu3/iy29mkTLRG/8mkT NXc6iadNrLn4cYmYrAAKaSr+V5K3RHxEIiY6Ee+yVidIxK92uOt92sTqVtGmTezRPu3TJqTZ5MPZ MGniYdI+beKYecSNPNzmEbdA/Mo84hMB4mYfP2UgXpe8BeJTBeJNa3V2QLxBievNI26B+GD2afOI 38jDbR7xHnl4sI6noXjKthIUOOQ8kiD9x8c/P7+PqFJY6/FconY0UT4ewCd0Bv6CVrOW879LuDl1 534s10oDMmlj5X/ySor+FmGhTX9XOqvhWXSfXo4hpEb9Lf9T7oRo/f3TFOYEBPo/eJV6O8FxAAA= headers: Content-Encoding: - gzip Content-Length: - '2222' Content-Type: - application/geo+json Date: - Wed, 27 Jul 2022 15:42:23 GMT Strict-Transport-Security: - max-age=15724800; includeSubDomains Vary: - Accept-Encoding X-Azure-Ref: - 031zhYgAAAABamV4PH8y7Q6apw9PxKH7lRE0yQUExMDkxMjA4MDQ3ADkyN2FiZmE2LTE5ZjYtNGFmMS1hMDlkLWM5NTlkOWExZTY0NA== X-Cache: - CONFIG_NOCACHE status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_item_search/TestItemSearch.test_ids_results.yaml000066400000000000000000000111241503646565400321440ustar00rootroot00000000000000interactions: - request: body: '{"ids": ["S2B_MSIL2A_20210610T115639_N0212_R066_T33XXG_20210613T185024.SAFE", "fl_m_2608004_nw_17_060_20191215_20200113"], "collections": ["naip"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '147' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"fl_m_2608004_nw_17_060_20191215_20200113","bbox":[-80.627226,26.93549,-80.560244,27.001987],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/fl_m_2608004_nw_17_060_20191215_20200113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=fl_m_2608004_nw_17_060_20191215_20200113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/fl/2019/fl_60cm_2019/26080/m_2608004_nw_17_060_20191215.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/fl/2019/fl_fgdc_2019/26080/m_2608004_nw_17_060_20191215.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/fl/2019/fl_60cm_2019/26080/m_2608004_nw_17_060_20191215.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=fl_m_2608004_nw_17_060_20191215_20200113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=fl_m_2608004_nw_17_060_20191215_20200113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-80.560502,26.93549],[-80.560244,27.001794],[-80.627008,27.001987],[-80.627226,26.935682],[-80.560502,26.93549]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2019-12-15T00:00:00Z","naip:year":"2019","proj:bbox":[537006.0,2979366.0,543630.0,2986710.0],"proj:epsg":26917,"naip:state":"fl","proj:shape":[12240,11040],"proj:transform":[0.6,0.0,537006.0,0.0,-0.6,2986710.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '996' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:57:26 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125725Z-167d46d96d8mdxvvhC1DENbv1s00000003sg000000005e6a status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_item_search/TestItemSearch.test_intersects_results.yaml000066400000000000000000007450651503646565400335720ustar00rootroot00000000000000interactions: - request: body: '{"collections": ["naip"], "intersects": {"type": "Polygon", "coordinates": [[[-73.21, 43.99], [-73.21, 44.05], [-73.12, 44.05], [-73.12, 43.99], [-73.21, 43.99]]]}}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '164' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307308_nw_18_030_20230622_20231113","bbox":[-73.130782,43.933691,-73.056636,44.003801],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056636,44.002599],[-73.128619,44.003801],[-73.130782,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[650027.7,4866339.600000001,655801.7999999999,4873997.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19247],"proj:centroid":{"lat":43.96875,"lon":-73.09373},"proj:transform":[0.3,0.0,650027.7,0.0,-0.3,4873997.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_030_20230622_20231113","bbox":[-73.255644,43.933764,-73.181774,44.003728],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181774,44.002607],[-73.253627,44.003728],[-73.255644,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[640005.9,4866119.4,645769.2000000001,4873769.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25500,19211],"proj:centroid":{"lat":43.96875,"lon":-73.21873},"proj:transform":[0.3,0.0,640005.9,0.0,-0.3,4873769.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_030_20230622_20231113","bbox":[-73.193213,43.933726,-73.119205,44.003763],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121377,43.933726],[-73.119205,44.002601],[-73.191123,44.003763],[-73.193213,43.934885],[-73.121377,43.933726]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[645016.8,4866227.399999999,650785.5,4873881.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19229],"proj:centroid":{"lat":43.96875,"lon":-73.15623},"proj:transform":[0.3,0.0,645016.8,0.0,-0.3,4873881.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_030_20230621_20231113","bbox":[-73.130789,43.99619,-73.056629,44.066299],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.99619],[-73.056629,44.065097],[-73.128621,44.066299],[-73.130789,43.997389],[-73.05888,43.99619]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[649869.9,4873281.3,655638.6,4880939.1],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19229],"proj:centroid":{"lat":44.03125,"lon":-73.09373},"proj:transform":[0.3,0.0,649869.9,0.0,-0.3,4880939.1,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_030_20230621_20231113","bbox":[-73.193221,43.996227,-73.119196,44.066264],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.996227],[-73.119196,44.065102],[-73.191127,44.066264],[-73.193221,43.997386],[-73.121374,43.996227]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[644864.1,4873169.399999999,650627.7,4880823.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19212],"proj:centroid":{"lat":44.03125,"lon":-73.15623},"proj:transform":[0.3,0.0,644864.1,0.0,-0.3,4880823.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_030_20230620_20231113","bbox":[-73.255654,43.996263,-73.181764,44.066229],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_030_20230620_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996263],[-73.181764,44.065107],[-73.253633,44.066229],[-73.255654,43.997382],[-73.183868,43.996263]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-20T16:00:00Z","naip:year":"2023","proj:bbox":[639858.3,4873061.100000001,645616.8,4880711.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25501,19195],"proj:centroid":{"lat":44.03125,"lon":-73.21873},"proj:transform":[0.3,0.0,639858.3,0.0,-0.3,4880711.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20211029","bbox":[-73.130807,43.996179,-73.056111,44.06681],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058379,43.996179],[-73.056111,44.065598],[-73.128623,44.06681],[-73.130807,43.997387],[-73.058379,43.996179]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[649868.4,4873281.0,655678.8,4880995.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12858,9684],"proj:transform":[0.6,0.0,649868.4,0.0,-0.6,4880995.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20211029","bbox":[-73.255666,43.996252,-73.181247,44.066737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183367,43.996252],[-73.181247,44.065607],[-73.25363,44.066737],[-73.255666,43.997379],[-73.183367,43.996252]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[639857.4,4873060.8,645657.0,4880767.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12845,9666],"proj:transform":[0.6,0.0,639857.4,0.0,-0.6,4880767.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20211029","bbox":[-73.192739,43.996233,-73.119177,44.066755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996233],[-73.119177,44.065601],[-73.190629,44.066755],[-73.192739,43.997384],[-73.12137,43.996233]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[644902.8,4873170.0,650628.0,4880878.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12848,9542],"proj:transform":[0.6,0.0,644902.8,0.0,-0.6,4880878.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20211029","bbox":[-73.255626,43.934253,-73.181287,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183372,43.934253],[-73.181287,44.002604],[-73.253623,44.003733],[-73.255626,43.935379],[-73.183372,43.934253]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[640006.2,4866174.6,645808.2,4873770.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12659,9670],"proj:transform":[0.6,0.0,640006.2,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20211029","bbox":[-73.192697,43.934234,-73.119216,44.003752],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121373,43.934234],[-73.119216,44.002598],[-73.190622,44.003752],[-73.192697,43.935384],[-73.121373,43.934234]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[645057.0,4866283.8,650784.6,4873881.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12662,9546],"proj:transform":[0.6,0.0,645057.0,0.0,-0.6,4873881.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20210920","bbox":[-73.130763,43.93418,-73.056149,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20210920"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20210920","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05838,43.93418],[-73.056149,44.002596],[-73.128615,44.003806],[-73.130763,43.935387],[-73.05838,43.93418]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-09-20T16:00:00Z","naip:year":"2021","proj:bbox":[650028.0,4866394.8,655840.8,4873998.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12672,9688],"proj:transform":[0.6,0.0,650028.0,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20181019_20190225","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407364_sw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.6,0.0,649869.0,0.0,-0.6,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20181019_20190225","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307308_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[650027.3999999999,4866339.6,655801.7999999999,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6,0.0,650027.3999999999,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20180923_20190225","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20180923_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_nw_18_060_20180923.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-23T00:00:00Z","naip:year":"2018","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.6,0.0,640005.0,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20180914_20190225","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6,0.0,639858.0,0.0,-0.6,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20180914_20190225","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_se_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6,0.0,644863.2,0.0,-0.6,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20180823_20190225","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20180823_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_ne_18_060_20180823.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-08-23T00:00:00Z","naip:year":"2018","proj:bbox":[645016.2,4866227.4,650785.7999999999,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6,0.0,645016.2,0.0,-0.6,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_h_20160805","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307308_nw_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[650027.4,4866339.6,655801.8,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6000000000000024,0.0,650027.4,0.0,-0.6000000000000292,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_h_20160805","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_ne_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6000000000000096,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[645016.2,4866227.4,650785.8,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6000000000000096,0.0,645016.2,0.0,-0.5999999999999854,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_h_20160804","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407364_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407364_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407364_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.5999999999999975,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.5999999999999975,0.0,649869.0,0.0,-0.6000000000000292,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_h_20160804","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407363_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6000000000000049,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6000000000000049,0.0,639858.0,0.0,-0.5999999999999708,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_h_20160804","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_se_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407363_se_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_se_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6000000000000049,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6000000000000049,0.0,644863.2,0.0,-0.5999999999999854,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_h_20160727","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_h_20160727"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_h_20160727","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_nw_18_h_20160727.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_nw_18_h_20160727.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_nw_18_h_20160727.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_h_20160727&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_h_20160727&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.5999999999999952,"datetime":"2016-07-27T00:00:00Z","naip:year":"2016","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.5999999999999952,0.0,640005.0,0.0,-0.5999999999999708,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_1_20140826_20141006","bbox":[-73.1308,43.996187,-73.056624,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_1_20140826_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_1_20140826_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407364_sw_18_1_20140826.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407364_sw_18_1_20140826.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407364_sw_18_1_20140826.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058875,43.996187],[-73.056624,44.065105],[-73.128632,44.066307],[-73.1308,43.997387],[-73.058875,43.996187]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-26T00:00:00Z","naip:year":"2014","proj:bbox":[649869.0,4873281.0,655639.0,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5770],"proj:transform":[1.0,0.0,649869.0,0.0,-1.0,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_1_20140826_20141006","bbox":[-73.130791,43.933686,-73.056633,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_1_20140826_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_1_20140826_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307308_nw_18_1_20140826.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/43073/m_4307308_nw_18_1_20140826.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307308_nw_18_1_20140826.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.933686],[-73.056633,44.002604],[-73.128628,44.003806],[-73.130791,43.934885],[-73.05888,43.933686]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-26T00:00:00Z","naip:year":"2014","proj:bbox":[650027.0,4866339.0,655802.0,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5775],"proj:transform":[1.0,0.0,650027.0,0.0,-1.0,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_1_20140809_20141006","bbox":[-73.255658,43.996262,-73.181761,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_sw_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407363_sw_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_sw_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183866,43.996262],[-73.181761,44.065113],[-73.253637,44.066234],[-73.255658,43.997381],[-73.183866,43.996262]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[639858.0,4873061.0,645617.0,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5759],"proj:transform":[1.0,0.0,639858.0,0.0,-1.0,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_1_20140809_20141006","bbox":[-73.193235,43.996224,-73.119192,44.06627],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_se_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407363_se_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_se_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996224],[-73.119192,44.065108],[-73.191141,44.06627],[-73.193235,43.997383],[-73.12137,43.996224]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[644863.0,4873169.0,650628.0,4880824.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5765],"proj:transform":[1.0,0.0,644863.0,0.0,-1.0,4880824.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_1_20140809_20141006","bbox":[-73.255655,43.933761,-73.181776,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307307_nw_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/43073/m_4307307_nw_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307307_nw_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183876,43.933761],[-73.181776,44.002612],[-73.253638,44.003733],[-73.255655,43.934879],[-73.183876,43.933761]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[640005.0,4866119.0,645769.0,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5764],"proj:transform":[1.0,0.0,640005.0,0.0,-1.0,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_1_20140809_20141006","bbox":[-73.193223,43.933722,-73.119198,44.003769],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307307_ne_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/43073/m_4307307_ne_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307307_ne_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121371,43.933722],[-73.119198,44.002607],[-73.191133,44.003769],[-73.193223,43.934881],[-73.121371,43.933722]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[645016.0,4866227.0,650786.0,4873882.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5770],"proj:transform":[1.0,0.0,645016.0,0.0,-1.0,4873882.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_1_20120712_20120927","bbox":[-73.1308,43.996187,-73.056624,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_1_20120712_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_1_20120712_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407364_sw_18_1_20120712.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/44073/m_4407364_sw_18_1_20120712.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407364_sw_18_1_20120712.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058875,43.996187],[-73.056624,44.065105],[-73.128632,44.066307],[-73.1308,43.997387],[-73.058875,43.996187]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-12T00:00:00Z","naip:year":"2012","proj:bbox":[649869.0,4873281.0,655639.0,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5770],"proj:transform":[1.0,0.0,649869.0,0.0,-1.0,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_1_20120712_20120927","bbox":[-73.193235,43.996224,-73.119192,44.06627],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_1_20120712_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_1_20120712_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407363_se_18_1_20120712.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/44073/m_4407363_se_18_1_20120712.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407363_se_18_1_20120712.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996224],[-73.119192,44.065108],[-73.191141,44.06627],[-73.193235,43.997383],[-73.12137,43.996224]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-12T00:00:00Z","naip:year":"2012","proj:bbox":[644863.0,4873169.0,650628.0,4880824.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5765],"proj:transform":[1.0,0.0,644863.0,0.0,-1.0,4880824.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_1_20120712_20120927","bbox":[-73.130791,43.933686,-73.056633,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_1_20120712_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_1_20120712_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307308_nw_18_1_20120712.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/43073/m_4307308_nw_18_1_20120712.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307308_nw_18_1_20120712.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.933686],[-73.056633,44.002604],[-73.128628,44.003806],[-73.130791,43.934885],[-73.05888,43.933686]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-12T00:00:00Z","naip:year":"2012","proj:bbox":[650027.0,4866339.0,655802.0,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5775],"proj:transform":[1.0,0.0,650027.0,0.0,-1.0,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_1_20120712_20120927","bbox":[-73.193223,43.933722,-73.119198,44.003769],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_1_20120712_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_1_20120712_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307307_ne_18_1_20120712.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/43073/m_4307307_ne_18_1_20120712.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307307_ne_18_1_20120712.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121371,43.933722],[-73.119198,44.002607],[-73.191133,44.003769],[-73.193223,43.934881],[-73.121371,43.933722]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-12T00:00:00Z","naip:year":"2012","proj:bbox":[645016.0,4866227.0,650786.0,4873882.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5770],"proj:transform":[1.0,0.0,645016.0,0.0,-1.0,4873882.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_1_20120711_20120927","bbox":[-73.255658,43.996262,-73.181761,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_1_20120711_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_1_20120711_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407363_sw_18_1_20120711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/44073/m_4407363_sw_18_1_20120711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407363_sw_18_1_20120711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_1_20120711_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_1_20120711_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183866,43.996262],[-73.181761,44.065113],[-73.253637,44.066234],[-73.255658,43.997381],[-73.183866,43.996262]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-11T00:00:00Z","naip:year":"2012","proj:bbox":[639858.0,4873061.0,645617.0,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5759],"proj:transform":[1.0,0.0,639858.0,0.0,-1.0,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_1_20120711_20120927","bbox":[-73.255655,43.933761,-73.181776,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_1_20120711_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_1_20120711_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307307_nw_18_1_20120711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/43073/m_4307307_nw_18_1_20120711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307307_nw_18_1_20120711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_1_20120711_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_1_20120711_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183876,43.933761],[-73.181776,44.002612],[-73.253638,44.003733],[-73.255655,43.934879],[-73.183876,43.933761]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-11T00:00:00Z","naip:year":"2012","proj:bbox":[640005.0,4866119.0,645769.0,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5764],"proj:transform":[1.0,0.0,640005.0,0.0,-1.0,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_1_20110820_20111114","bbox":[-73.130863,43.99615,-73.056572,44.066353],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_1_20110820_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_1_20110820_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407364_sw_18_1_20110820.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/44073/m_4407364_sw_18_1_20110820.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407364_sw_18_1_20110820.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_1_20110820_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_1_20110820_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058827,43.99615],[-73.056572,44.065149],[-73.128693,44.066353],[-73.130863,43.997352],[-73.058827,43.99615]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-20T00:00:00Z","naip:year":"2011","proj:bbox":[649864.0,4873277.0,655643.0,4880945.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7668,5779],"proj:transform":[1.0,0.0,649864.0,0.0,-1.0,4880945.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_1_20110820_20111114","bbox":[-73.130854,43.933649,-73.056582,44.003852],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_1_20110820_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_1_20110820_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307308_nw_18_1_20110820.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/43073/m_4307308_nw_18_1_20110820.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307308_nw_18_1_20110820.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_1_20110820_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_1_20110820_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058831,43.933649],[-73.056582,44.002648],[-73.128688,44.003852],[-73.130854,43.93485],[-73.058831,43.933649]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-20T00:00:00Z","naip:year":"2011","proj:bbox":[650022.0,4866335.0,655806.0,4874003.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7668,5784],"proj:transform":[1.0,0.0,650022.0,0.0,-1.0,4874003.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_1_20110818_20111114","bbox":[-73.255722,43.996216,-73.18171,44.06628],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_1_20110818_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_1_20110818_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407363_sw_18_1_20110818.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/44073/m_4407363_sw_18_1_20110818.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407363_sw_18_1_20110818.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183817,43.996216],[-73.18171,44.065157],[-73.253698,44.06628],[-73.255722,43.997337],[-73.183817,43.996216]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-18T00:00:00Z","naip:year":"2011","proj:bbox":[639853.0,4873056.0,645621.0,4880717.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7661,5768],"proj:transform":[1.0,0.0,639853.0,0.0,-1.0,4880717.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_1_20110818_20111114","bbox":[-73.193286,43.996187,-73.119141,44.066316],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_1_20110818_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_1_20110818_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407363_se_18_1_20110818.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/44073/m_4407363_se_18_1_20110818.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407363_se_18_1_20110818.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121322,43.996187],[-73.119141,44.065152],[-73.191189,44.066316],[-73.193286,43.997348],[-73.121322,43.996187]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-18T00:00:00Z","naip:year":"2011","proj:bbox":[644859.0,4873165.0,650632.0,4880829.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7664,5773],"proj:transform":[1.0,0.0,644859.0,0.0,-1.0,4880829.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_1_20110818_20111114","bbox":[-73.255719,43.933724,-73.181712,44.003779],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_1_20110818_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_1_20110818_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307307_nw_18_1_20110818.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/43073/m_4307307_nw_18_1_20110818.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307307_nw_18_1_20110818.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183814,43.933724],[-73.181712,44.002656],[-73.253699,44.003779],[-73.255719,43.934844],[-73.183814,43.933724]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-18T00:00:00Z","naip:year":"2011","proj:bbox":[640000.0,4866115.0,645774.0,4873775.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7660,5774],"proj:transform":[1.0,0.0,640000.0,0.0,-1.0,4873775.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_1_20110818_20111114","bbox":[-73.193287,43.933685,-73.119147,44.003815],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_1_20110818_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_1_20110818_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307307_ne_18_1_20110818.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/43073/m_4307307_ne_18_1_20110818.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307307_ne_18_1_20110818.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121323,43.933685],[-73.119147,44.002651],[-73.191194,44.003815],[-73.193287,43.934846],[-73.121323,43.933685]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-18T00:00:00Z","naip:year":"2011","proj:bbox":[645011.0,4866223.0,650790.0,4873887.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7664,5779],"proj:transform":[1.0,0.0,645011.0,0.0,-1.0,4873887.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '5665' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:58:08 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125808Z-167d46d96d8h7x2fhC1DENd7yn0000000sqg000000002w47 status: code: 200 message: OK - request: body: '{"collections": ["naip"], "intersects": {"type": "Polygon", "coordinates": [[[-73.21, 43.99], [-73.21, 44.05], [-73.12, 44.05], [-73.12, 43.99], [-73.21, 43.99]]]}}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '164' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307308_nw_18_030_20230622_20231113","bbox":[-73.130782,43.933691,-73.056636,44.003801],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056636,44.002599],[-73.128619,44.003801],[-73.130782,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[650027.7,4866339.600000001,655801.7999999999,4873997.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19247],"proj:centroid":{"lat":43.96875,"lon":-73.09373},"proj:transform":[0.3,0.0,650027.7,0.0,-0.3,4873997.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_030_20230622_20231113","bbox":[-73.255644,43.933764,-73.181774,44.003728],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181774,44.002607],[-73.253627,44.003728],[-73.255644,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[640005.9,4866119.4,645769.2000000001,4873769.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25500,19211],"proj:centroid":{"lat":43.96875,"lon":-73.21873},"proj:transform":[0.3,0.0,640005.9,0.0,-0.3,4873769.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_030_20230622_20231113","bbox":[-73.193213,43.933726,-73.119205,44.003763],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121377,43.933726],[-73.119205,44.002601],[-73.191123,44.003763],[-73.193213,43.934885],[-73.121377,43.933726]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[645016.8,4866227.399999999,650785.5,4873881.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19229],"proj:centroid":{"lat":43.96875,"lon":-73.15623},"proj:transform":[0.3,0.0,645016.8,0.0,-0.3,4873881.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_030_20230621_20231113","bbox":[-73.130789,43.99619,-73.056629,44.066299],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.99619],[-73.056629,44.065097],[-73.128621,44.066299],[-73.130789,43.997389],[-73.05888,43.99619]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[649869.9,4873281.3,655638.6,4880939.1],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19229],"proj:centroid":{"lat":44.03125,"lon":-73.09373},"proj:transform":[0.3,0.0,649869.9,0.0,-0.3,4880939.1,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_030_20230621_20231113","bbox":[-73.193221,43.996227,-73.119196,44.066264],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.996227],[-73.119196,44.065102],[-73.191127,44.066264],[-73.193221,43.997386],[-73.121374,43.996227]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[644864.1,4873169.399999999,650627.7,4880823.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19212],"proj:centroid":{"lat":44.03125,"lon":-73.15623},"proj:transform":[0.3,0.0,644864.1,0.0,-0.3,4880823.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_030_20230620_20231113","bbox":[-73.255654,43.996263,-73.181764,44.066229],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_030_20230620_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996263],[-73.181764,44.065107],[-73.253633,44.066229],[-73.255654,43.997382],[-73.183868,43.996263]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-20T16:00:00Z","naip:year":"2023","proj:bbox":[639858.3,4873061.100000001,645616.8,4880711.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25501,19195],"proj:centroid":{"lat":44.03125,"lon":-73.21873},"proj:transform":[0.3,0.0,639858.3,0.0,-0.3,4880711.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20211029","bbox":[-73.130807,43.996179,-73.056111,44.06681],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058379,43.996179],[-73.056111,44.065598],[-73.128623,44.06681],[-73.130807,43.997387],[-73.058379,43.996179]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[649868.4,4873281.0,655678.8,4880995.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12858,9684],"proj:transform":[0.6,0.0,649868.4,0.0,-0.6,4880995.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20211029","bbox":[-73.255666,43.996252,-73.181247,44.066737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183367,43.996252],[-73.181247,44.065607],[-73.25363,44.066737],[-73.255666,43.997379],[-73.183367,43.996252]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[639857.4,4873060.8,645657.0,4880767.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12845,9666],"proj:transform":[0.6,0.0,639857.4,0.0,-0.6,4880767.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20211029","bbox":[-73.192739,43.996233,-73.119177,44.066755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996233],[-73.119177,44.065601],[-73.190629,44.066755],[-73.192739,43.997384],[-73.12137,43.996233]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[644902.8,4873170.0,650628.0,4880878.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12848,9542],"proj:transform":[0.6,0.0,644902.8,0.0,-0.6,4880878.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20211029","bbox":[-73.255626,43.934253,-73.181287,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183372,43.934253],[-73.181287,44.002604],[-73.253623,44.003733],[-73.255626,43.935379],[-73.183372,43.934253]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[640006.2,4866174.6,645808.2,4873770.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12659,9670],"proj:transform":[0.6,0.0,640006.2,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20211029","bbox":[-73.192697,43.934234,-73.119216,44.003752],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121373,43.934234],[-73.119216,44.002598],[-73.190622,44.003752],[-73.192697,43.935384],[-73.121373,43.934234]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[645057.0,4866283.8,650784.6,4873881.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12662,9546],"proj:transform":[0.6,0.0,645057.0,0.0,-0.6,4873881.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20210920","bbox":[-73.130763,43.93418,-73.056149,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20210920"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20210920","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05838,43.93418],[-73.056149,44.002596],[-73.128615,44.003806],[-73.130763,43.935387],[-73.05838,43.93418]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-09-20T16:00:00Z","naip:year":"2021","proj:bbox":[650028.0,4866394.8,655840.8,4873998.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12672,9688],"proj:transform":[0.6,0.0,650028.0,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20181019_20190225","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407364_sw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.6,0.0,649869.0,0.0,-0.6,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20181019_20190225","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307308_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[650027.3999999999,4866339.6,655801.7999999999,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6,0.0,650027.3999999999,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20180923_20190225","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20180923_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_nw_18_060_20180923.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-23T00:00:00Z","naip:year":"2018","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.6,0.0,640005.0,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20180914_20190225","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6,0.0,639858.0,0.0,-0.6,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20180914_20190225","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_se_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6,0.0,644863.2,0.0,-0.6,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20180823_20190225","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20180823_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_ne_18_060_20180823.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-08-23T00:00:00Z","naip:year":"2018","proj:bbox":[645016.2,4866227.4,650785.7999999999,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6,0.0,645016.2,0.0,-0.6,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_h_20160805","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307308_nw_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[650027.4,4866339.6,655801.8,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6000000000000024,0.0,650027.4,0.0,-0.6000000000000292,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_h_20160805","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_ne_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6000000000000096,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[645016.2,4866227.4,650785.8,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6000000000000096,0.0,645016.2,0.0,-0.5999999999999854,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_h_20160804","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407364_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407364_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407364_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.5999999999999975,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.5999999999999975,0.0,649869.0,0.0,-0.6000000000000292,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_h_20160804","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407363_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6000000000000049,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6000000000000049,0.0,639858.0,0.0,-0.5999999999999708,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_h_20160804","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_se_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407363_se_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_se_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6000000000000049,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6000000000000049,0.0,644863.2,0.0,-0.5999999999999854,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_h_20160727","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_h_20160727"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_h_20160727","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_nw_18_h_20160727.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_nw_18_h_20160727.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_nw_18_h_20160727.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_h_20160727&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_h_20160727&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.5999999999999952,"datetime":"2016-07-27T00:00:00Z","naip:year":"2016","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.5999999999999952,0.0,640005.0,0.0,-0.5999999999999708,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_1_20140826_20141006","bbox":[-73.1308,43.996187,-73.056624,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_1_20140826_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_1_20140826_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407364_sw_18_1_20140826.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407364_sw_18_1_20140826.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407364_sw_18_1_20140826.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058875,43.996187],[-73.056624,44.065105],[-73.128632,44.066307],[-73.1308,43.997387],[-73.058875,43.996187]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-26T00:00:00Z","naip:year":"2014","proj:bbox":[649869.0,4873281.0,655639.0,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5770],"proj:transform":[1.0,0.0,649869.0,0.0,-1.0,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_1_20140826_20141006","bbox":[-73.130791,43.933686,-73.056633,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_1_20140826_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_1_20140826_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307308_nw_18_1_20140826.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/43073/m_4307308_nw_18_1_20140826.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307308_nw_18_1_20140826.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.933686],[-73.056633,44.002604],[-73.128628,44.003806],[-73.130791,43.934885],[-73.05888,43.933686]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-26T00:00:00Z","naip:year":"2014","proj:bbox":[650027.0,4866339.0,655802.0,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5775],"proj:transform":[1.0,0.0,650027.0,0.0,-1.0,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_1_20140809_20141006","bbox":[-73.255658,43.996262,-73.181761,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_sw_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407363_sw_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_sw_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183866,43.996262],[-73.181761,44.065113],[-73.253637,44.066234],[-73.255658,43.997381],[-73.183866,43.996262]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[639858.0,4873061.0,645617.0,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5759],"proj:transform":[1.0,0.0,639858.0,0.0,-1.0,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_1_20140809_20141006","bbox":[-73.193235,43.996224,-73.119192,44.06627],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_se_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407363_se_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_se_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996224],[-73.119192,44.065108],[-73.191141,44.06627],[-73.193235,43.997383],[-73.12137,43.996224]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[644863.0,4873169.0,650628.0,4880824.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5765],"proj:transform":[1.0,0.0,644863.0,0.0,-1.0,4880824.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_1_20140809_20141006","bbox":[-73.255655,43.933761,-73.181776,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307307_nw_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/43073/m_4307307_nw_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307307_nw_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183876,43.933761],[-73.181776,44.002612],[-73.253638,44.003733],[-73.255655,43.934879],[-73.183876,43.933761]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[640005.0,4866119.0,645769.0,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5764],"proj:transform":[1.0,0.0,640005.0,0.0,-1.0,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_1_20140809_20141006","bbox":[-73.193223,43.933722,-73.119198,44.003769],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307307_ne_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/43073/m_4307307_ne_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307307_ne_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121371,43.933722],[-73.119198,44.002607],[-73.191133,44.003769],[-73.193223,43.934881],[-73.121371,43.933722]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[645016.0,4866227.0,650786.0,4873882.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5770],"proj:transform":[1.0,0.0,645016.0,0.0,-1.0,4873882.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_1_20120712_20120927","bbox":[-73.1308,43.996187,-73.056624,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_1_20120712_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_1_20120712_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407364_sw_18_1_20120712.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/44073/m_4407364_sw_18_1_20120712.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407364_sw_18_1_20120712.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058875,43.996187],[-73.056624,44.065105],[-73.128632,44.066307],[-73.1308,43.997387],[-73.058875,43.996187]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-12T00:00:00Z","naip:year":"2012","proj:bbox":[649869.0,4873281.0,655639.0,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5770],"proj:transform":[1.0,0.0,649869.0,0.0,-1.0,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_1_20120712_20120927","bbox":[-73.193235,43.996224,-73.119192,44.06627],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_1_20120712_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_1_20120712_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407363_se_18_1_20120712.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/44073/m_4407363_se_18_1_20120712.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407363_se_18_1_20120712.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996224],[-73.119192,44.065108],[-73.191141,44.06627],[-73.193235,43.997383],[-73.12137,43.996224]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-12T00:00:00Z","naip:year":"2012","proj:bbox":[644863.0,4873169.0,650628.0,4880824.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5765],"proj:transform":[1.0,0.0,644863.0,0.0,-1.0,4880824.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_1_20120712_20120927","bbox":[-73.130791,43.933686,-73.056633,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_1_20120712_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_1_20120712_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307308_nw_18_1_20120712.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/43073/m_4307308_nw_18_1_20120712.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307308_nw_18_1_20120712.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.933686],[-73.056633,44.002604],[-73.128628,44.003806],[-73.130791,43.934885],[-73.05888,43.933686]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-12T00:00:00Z","naip:year":"2012","proj:bbox":[650027.0,4866339.0,655802.0,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5775],"proj:transform":[1.0,0.0,650027.0,0.0,-1.0,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_1_20120712_20120927","bbox":[-73.193223,43.933722,-73.119198,44.003769],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_1_20120712_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_1_20120712_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307307_ne_18_1_20120712.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/43073/m_4307307_ne_18_1_20120712.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307307_ne_18_1_20120712.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121371,43.933722],[-73.119198,44.002607],[-73.191133,44.003769],[-73.193223,43.934881],[-73.121371,43.933722]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-12T00:00:00Z","naip:year":"2012","proj:bbox":[645016.0,4866227.0,650786.0,4873882.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5770],"proj:transform":[1.0,0.0,645016.0,0.0,-1.0,4873882.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_1_20120711_20120927","bbox":[-73.255658,43.996262,-73.181761,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_1_20120711_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_1_20120711_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407363_sw_18_1_20120711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/44073/m_4407363_sw_18_1_20120711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407363_sw_18_1_20120711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_1_20120711_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_1_20120711_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183866,43.996262],[-73.181761,44.065113],[-73.253637,44.066234],[-73.255658,43.997381],[-73.183866,43.996262]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-11T00:00:00Z","naip:year":"2012","proj:bbox":[639858.0,4873061.0,645617.0,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5759],"proj:transform":[1.0,0.0,639858.0,0.0,-1.0,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_1_20120711_20120927","bbox":[-73.255655,43.933761,-73.181776,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_1_20120711_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_1_20120711_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307307_nw_18_1_20120711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/43073/m_4307307_nw_18_1_20120711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307307_nw_18_1_20120711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_1_20120711_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_1_20120711_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183876,43.933761],[-73.181776,44.002612],[-73.253638,44.003733],[-73.255655,43.934879],[-73.183876,43.933761]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-11T00:00:00Z","naip:year":"2012","proj:bbox":[640005.0,4866119.0,645769.0,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5764],"proj:transform":[1.0,0.0,640005.0,0.0,-1.0,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_1_20110820_20111114","bbox":[-73.130863,43.99615,-73.056572,44.066353],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_1_20110820_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_1_20110820_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407364_sw_18_1_20110820.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/44073/m_4407364_sw_18_1_20110820.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407364_sw_18_1_20110820.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_1_20110820_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_1_20110820_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058827,43.99615],[-73.056572,44.065149],[-73.128693,44.066353],[-73.130863,43.997352],[-73.058827,43.99615]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-20T00:00:00Z","naip:year":"2011","proj:bbox":[649864.0,4873277.0,655643.0,4880945.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7668,5779],"proj:transform":[1.0,0.0,649864.0,0.0,-1.0,4880945.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_1_20110820_20111114","bbox":[-73.130854,43.933649,-73.056582,44.003852],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_1_20110820_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_1_20110820_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307308_nw_18_1_20110820.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/43073/m_4307308_nw_18_1_20110820.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307308_nw_18_1_20110820.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_1_20110820_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_1_20110820_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058831,43.933649],[-73.056582,44.002648],[-73.128688,44.003852],[-73.130854,43.93485],[-73.058831,43.933649]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-20T00:00:00Z","naip:year":"2011","proj:bbox":[650022.0,4866335.0,655806.0,4874003.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7668,5784],"proj:transform":[1.0,0.0,650022.0,0.0,-1.0,4874003.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_1_20110818_20111114","bbox":[-73.255722,43.996216,-73.18171,44.06628],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_1_20110818_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_1_20110818_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407363_sw_18_1_20110818.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/44073/m_4407363_sw_18_1_20110818.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407363_sw_18_1_20110818.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183817,43.996216],[-73.18171,44.065157],[-73.253698,44.06628],[-73.255722,43.997337],[-73.183817,43.996216]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-18T00:00:00Z","naip:year":"2011","proj:bbox":[639853.0,4873056.0,645621.0,4880717.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7661,5768],"proj:transform":[1.0,0.0,639853.0,0.0,-1.0,4880717.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_1_20110818_20111114","bbox":[-73.193286,43.996187,-73.119141,44.066316],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_1_20110818_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_1_20110818_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407363_se_18_1_20110818.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/44073/m_4407363_se_18_1_20110818.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407363_se_18_1_20110818.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121322,43.996187],[-73.119141,44.065152],[-73.191189,44.066316],[-73.193286,43.997348],[-73.121322,43.996187]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-18T00:00:00Z","naip:year":"2011","proj:bbox":[644859.0,4873165.0,650632.0,4880829.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7664,5773],"proj:transform":[1.0,0.0,644859.0,0.0,-1.0,4880829.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_1_20110818_20111114","bbox":[-73.255719,43.933724,-73.181712,44.003779],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_1_20110818_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_1_20110818_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307307_nw_18_1_20110818.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/43073/m_4307307_nw_18_1_20110818.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307307_nw_18_1_20110818.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183814,43.933724],[-73.181712,44.002656],[-73.253699,44.003779],[-73.255719,43.934844],[-73.183814,43.933724]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-18T00:00:00Z","naip:year":"2011","proj:bbox":[640000.0,4866115.0,645774.0,4873775.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7660,5774],"proj:transform":[1.0,0.0,640000.0,0.0,-1.0,4873775.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_1_20110818_20111114","bbox":[-73.193287,43.933685,-73.119147,44.003815],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_1_20110818_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_1_20110818_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307307_ne_18_1_20110818.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/43073/m_4307307_ne_18_1_20110818.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307307_ne_18_1_20110818.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121323,43.933685],[-73.119147,44.002651],[-73.191194,44.003815],[-73.193287,43.934846],[-73.121323,43.933685]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-18T00:00:00Z","naip:year":"2011","proj:bbox":[645011.0,4866223.0,650790.0,4873887.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7664,5779],"proj:transform":[1.0,0.0,645011.0,0.0,-1.0,4873887.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '5665' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:58:09 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125808Z-167d46d96d844j9nhC1DENytps0000000sng0000000047k5 status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_item_search/TestItemSearch.test_item_collection.yaml000066400000000000000000001723721503646565400327720ustar00rootroot00000000000000interactions: - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '78' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307308_nw_18_030_20230622_20231113","bbox":[-73.130782,43.933691,-73.056636,44.003801],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056636,44.002599],[-73.128619,44.003801],[-73.130782,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[650027.7,4866339.600000001,655801.7999999999,4873997.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19247],"proj:centroid":{"lat":43.96875,"lon":-73.09373},"proj:transform":[0.3,0.0,650027.7,0.0,-0.3,4873997.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_030_20230622_20231113","bbox":[-73.255644,43.933764,-73.181774,44.003728],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181774,44.002607],[-73.253627,44.003728],[-73.255644,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[640005.9,4866119.4,645769.2000000001,4873769.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25500,19211],"proj:centroid":{"lat":43.96875,"lon":-73.21873},"proj:transform":[0.3,0.0,640005.9,0.0,-0.3,4873769.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_030_20230622_20231113","bbox":[-73.193213,43.933726,-73.119205,44.003763],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121377,43.933726],[-73.119205,44.002601],[-73.191123,44.003763],[-73.193213,43.934885],[-73.121377,43.933726]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[645016.8,4866227.399999999,650785.5,4873881.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19229],"proj:centroid":{"lat":43.96875,"lon":-73.15623},"proj:transform":[0.3,0.0,645016.8,0.0,-0.3,4873881.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_030_20230621_20231113","bbox":[-73.130789,43.99619,-73.056629,44.066299],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.99619],[-73.056629,44.065097],[-73.128621,44.066299],[-73.130789,43.997389],[-73.05888,43.99619]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[649869.9,4873281.3,655638.6,4880939.1],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19229],"proj:centroid":{"lat":44.03125,"lon":-73.09373},"proj:transform":[0.3,0.0,649869.9,0.0,-0.3,4880939.1,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_030_20230621_20231113","bbox":[-73.193221,43.996227,-73.119196,44.066264],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.996227],[-73.119196,44.065102],[-73.191127,44.066264],[-73.193221,43.997386],[-73.121374,43.996227]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[644864.1,4873169.399999999,650627.7,4880823.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19212],"proj:centroid":{"lat":44.03125,"lon":-73.15623},"proj:transform":[0.3,0.0,644864.1,0.0,-0.3,4880823.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_030_20230620_20231113","bbox":[-73.255654,43.996263,-73.181764,44.066229],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_030_20230620_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996263],[-73.181764,44.065107],[-73.253633,44.066229],[-73.255654,43.997382],[-73.183868,43.996263]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-20T16:00:00Z","naip:year":"2023","proj:bbox":[639858.3,4873061.100000001,645616.8,4880711.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25501,19195],"proj:centroid":{"lat":44.03125,"lon":-73.21873},"proj:transform":[0.3,0.0,639858.3,0.0,-0.3,4880711.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20211029","bbox":[-73.130807,43.996179,-73.056111,44.06681],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058379,43.996179],[-73.056111,44.065598],[-73.128623,44.06681],[-73.130807,43.997387],[-73.058379,43.996179]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[649868.4,4873281.0,655678.8,4880995.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12858,9684],"proj:transform":[0.6,0.0,649868.4,0.0,-0.6,4880995.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20211029","bbox":[-73.255666,43.996252,-73.181247,44.066737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183367,43.996252],[-73.181247,44.065607],[-73.25363,44.066737],[-73.255666,43.997379],[-73.183367,43.996252]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[639857.4,4873060.8,645657.0,4880767.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12845,9666],"proj:transform":[0.6,0.0,639857.4,0.0,-0.6,4880767.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20211029","bbox":[-73.192739,43.996233,-73.119177,44.066755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996233],[-73.119177,44.065601],[-73.190629,44.066755],[-73.192739,43.997384],[-73.12137,43.996233]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[644902.8,4873170.0,650628.0,4880878.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12848,9542],"proj:transform":[0.6,0.0,644902.8,0.0,-0.6,4880878.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20211029","bbox":[-73.255626,43.934253,-73.181287,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183372,43.934253],[-73.181287,44.002604],[-73.253623,44.003733],[-73.255626,43.935379],[-73.183372,43.934253]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[640006.2,4866174.6,645808.2,4873770.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12659,9670],"proj:transform":[0.6,0.0,640006.2,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_nw_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2443' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:25 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125125Z-167d46d96d8ttf9rhC1DENb9c80000000sk00000000001mz status: code: 200 message: OK - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"], "token": "next:naip:vt_m_4307307_nw_18_060_20211029"}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '132' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307307_ne_18_060_20211029","bbox":[-73.192697,43.934234,-73.119216,44.003752],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121373,43.934234],[-73.119216,44.002598],[-73.190622,44.003752],[-73.192697,43.935384],[-73.121373,43.934234]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[645057.0,4866283.8,650784.6,4873881.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12662,9546],"proj:transform":[0.6,0.0,645057.0,0.0,-0.6,4873881.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20210920","bbox":[-73.130763,43.93418,-73.056149,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20210920"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20210920","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05838,43.93418],[-73.056149,44.002596],[-73.128615,44.003806],[-73.130763,43.935387],[-73.05838,43.93418]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-09-20T16:00:00Z","naip:year":"2021","proj:bbox":[650028.0,4866394.8,655840.8,4873998.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12672,9688],"proj:transform":[0.6,0.0,650028.0,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20181019_20190225","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407364_sw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.6,0.0,649869.0,0.0,-0.6,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20181019_20190225","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307308_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[650027.3999999999,4866339.6,655801.7999999999,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6,0.0,650027.3999999999,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20180923_20190225","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20180923_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_nw_18_060_20180923.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-23T00:00:00Z","naip:year":"2018","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.6,0.0,640005.0,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20180914_20190225","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6,0.0,639858.0,0.0,-0.6,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20180914_20190225","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_se_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6,0.0,644863.2,0.0,-0.6,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20180823_20190225","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20180823_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_ne_18_060_20180823.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-08-23T00:00:00Z","naip:year":"2018","proj:bbox":[645016.2,4866227.4,650785.7999999999,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6,0.0,645016.2,0.0,-0.6,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_h_20160805","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307308_nw_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[650027.4,4866339.6,655801.8,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6000000000000024,0.0,650027.4,0.0,-0.6000000000000292,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_h_20160805","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_ne_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6000000000000096,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[645016.2,4866227.4,650785.8,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6000000000000096,0.0,645016.2,0.0,-0.5999999999999854,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_ne_18_h_20160805"}},{"rel":"previous","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"prev:naip:vt_m_4307307_ne_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2423' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:26 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125125Z-167d46d96d82lsqphC1DENh89s0000000rz0000000003d20 status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_item_search/TestItemSearch.test_items_as_dicts.yaml000066400000000000000000001723721503646565400326130ustar00rootroot00000000000000interactions: - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '78' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307308_nw_18_030_20230622_20231113","bbox":[-73.130782,43.933691,-73.056636,44.003801],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056636,44.002599],[-73.128619,44.003801],[-73.130782,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[650027.7,4866339.600000001,655801.7999999999,4873997.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19247],"proj:centroid":{"lat":43.96875,"lon":-73.09373},"proj:transform":[0.3,0.0,650027.7,0.0,-0.3,4873997.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_030_20230622_20231113","bbox":[-73.255644,43.933764,-73.181774,44.003728],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181774,44.002607],[-73.253627,44.003728],[-73.255644,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[640005.9,4866119.4,645769.2000000001,4873769.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25500,19211],"proj:centroid":{"lat":43.96875,"lon":-73.21873},"proj:transform":[0.3,0.0,640005.9,0.0,-0.3,4873769.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_030_20230622_20231113","bbox":[-73.193213,43.933726,-73.119205,44.003763],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121377,43.933726],[-73.119205,44.002601],[-73.191123,44.003763],[-73.193213,43.934885],[-73.121377,43.933726]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[645016.8,4866227.399999999,650785.5,4873881.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19229],"proj:centroid":{"lat":43.96875,"lon":-73.15623},"proj:transform":[0.3,0.0,645016.8,0.0,-0.3,4873881.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_030_20230621_20231113","bbox":[-73.130789,43.99619,-73.056629,44.066299],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.99619],[-73.056629,44.065097],[-73.128621,44.066299],[-73.130789,43.997389],[-73.05888,43.99619]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[649869.9,4873281.3,655638.6,4880939.1],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19229],"proj:centroid":{"lat":44.03125,"lon":-73.09373},"proj:transform":[0.3,0.0,649869.9,0.0,-0.3,4880939.1,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_030_20230621_20231113","bbox":[-73.193221,43.996227,-73.119196,44.066264],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.996227],[-73.119196,44.065102],[-73.191127,44.066264],[-73.193221,43.997386],[-73.121374,43.996227]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[644864.1,4873169.399999999,650627.7,4880823.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19212],"proj:centroid":{"lat":44.03125,"lon":-73.15623},"proj:transform":[0.3,0.0,644864.1,0.0,-0.3,4880823.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_030_20230620_20231113","bbox":[-73.255654,43.996263,-73.181764,44.066229],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_030_20230620_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996263],[-73.181764,44.065107],[-73.253633,44.066229],[-73.255654,43.997382],[-73.183868,43.996263]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-20T16:00:00Z","naip:year":"2023","proj:bbox":[639858.3,4873061.100000001,645616.8,4880711.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25501,19195],"proj:centroid":{"lat":44.03125,"lon":-73.21873},"proj:transform":[0.3,0.0,639858.3,0.0,-0.3,4880711.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20211029","bbox":[-73.130807,43.996179,-73.056111,44.06681],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058379,43.996179],[-73.056111,44.065598],[-73.128623,44.06681],[-73.130807,43.997387],[-73.058379,43.996179]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[649868.4,4873281.0,655678.8,4880995.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12858,9684],"proj:transform":[0.6,0.0,649868.4,0.0,-0.6,4880995.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20211029","bbox":[-73.255666,43.996252,-73.181247,44.066737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183367,43.996252],[-73.181247,44.065607],[-73.25363,44.066737],[-73.255666,43.997379],[-73.183367,43.996252]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[639857.4,4873060.8,645657.0,4880767.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12845,9666],"proj:transform":[0.6,0.0,639857.4,0.0,-0.6,4880767.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20211029","bbox":[-73.192739,43.996233,-73.119177,44.066755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996233],[-73.119177,44.065601],[-73.190629,44.066755],[-73.192739,43.997384],[-73.12137,43.996233]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[644902.8,4873170.0,650628.0,4880878.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12848,9542],"proj:transform":[0.6,0.0,644902.8,0.0,-0.6,4880878.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20211029","bbox":[-73.255626,43.934253,-73.181287,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183372,43.934253],[-73.181287,44.002604],[-73.253623,44.003733],[-73.255626,43.935379],[-73.183372,43.934253]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[640006.2,4866174.6,645808.2,4873770.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12659,9670],"proj:transform":[0.6,0.0,640006.2,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_nw_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2443' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:52:02 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125201Z-167d46d96d82lsqphC1DENh89s0000000s10000000002tcf status: code: 200 message: OK - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"], "token": "next:naip:vt_m_4307307_nw_18_060_20211029"}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '132' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307307_ne_18_060_20211029","bbox":[-73.192697,43.934234,-73.119216,44.003752],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121373,43.934234],[-73.119216,44.002598],[-73.190622,44.003752],[-73.192697,43.935384],[-73.121373,43.934234]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[645057.0,4866283.8,650784.6,4873881.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12662,9546],"proj:transform":[0.6,0.0,645057.0,0.0,-0.6,4873881.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20210920","bbox":[-73.130763,43.93418,-73.056149,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20210920"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20210920","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05838,43.93418],[-73.056149,44.002596],[-73.128615,44.003806],[-73.130763,43.935387],[-73.05838,43.93418]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-09-20T16:00:00Z","naip:year":"2021","proj:bbox":[650028.0,4866394.8,655840.8,4873998.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12672,9688],"proj:transform":[0.6,0.0,650028.0,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20181019_20190225","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407364_sw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.6,0.0,649869.0,0.0,-0.6,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20181019_20190225","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307308_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[650027.3999999999,4866339.6,655801.7999999999,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6,0.0,650027.3999999999,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20180923_20190225","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20180923_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_nw_18_060_20180923.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-23T00:00:00Z","naip:year":"2018","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.6,0.0,640005.0,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20180914_20190225","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6,0.0,639858.0,0.0,-0.6,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20180914_20190225","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_se_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6,0.0,644863.2,0.0,-0.6,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20180823_20190225","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20180823_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_ne_18_060_20180823.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-08-23T00:00:00Z","naip:year":"2018","proj:bbox":[645016.2,4866227.4,650785.7999999999,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6,0.0,645016.2,0.0,-0.6,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_h_20160805","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307308_nw_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[650027.4,4866339.6,655801.8,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6000000000000024,0.0,650027.4,0.0,-0.6000000000000292,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_h_20160805","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_ne_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6000000000000096,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[645016.2,4866227.4,650785.8,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6000000000000096,0.0,645016.2,0.0,-0.5999999999999854,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_ne_18_h_20160805"}},{"rel":"previous","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"prev:naip:vt_m_4307307_ne_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2423' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:52:03 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125202Z-167d46d96d8bpl7whC1DENxmuw0000000rzg000000003w89 status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_item_search/TestItemSearch.test_result_paging.yaml000066400000000000000000001723721503646565400324640ustar00rootroot00000000000000interactions: - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '78' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307308_nw_18_030_20230622_20231113","bbox":[-73.130782,43.933691,-73.056636,44.003801],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056636,44.002599],[-73.128619,44.003801],[-73.130782,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[650027.7,4866339.600000001,655801.7999999999,4873997.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19247],"proj:centroid":{"lat":43.96875,"lon":-73.09373},"proj:transform":[0.3,0.0,650027.7,0.0,-0.3,4873997.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_030_20230622_20231113","bbox":[-73.255644,43.933764,-73.181774,44.003728],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181774,44.002607],[-73.253627,44.003728],[-73.255644,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[640005.9,4866119.4,645769.2000000001,4873769.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25500,19211],"proj:centroid":{"lat":43.96875,"lon":-73.21873},"proj:transform":[0.3,0.0,640005.9,0.0,-0.3,4873769.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_030_20230622_20231113","bbox":[-73.193213,43.933726,-73.119205,44.003763],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121377,43.933726],[-73.119205,44.002601],[-73.191123,44.003763],[-73.193213,43.934885],[-73.121377,43.933726]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[645016.8,4866227.399999999,650785.5,4873881.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19229],"proj:centroid":{"lat":43.96875,"lon":-73.15623},"proj:transform":[0.3,0.0,645016.8,0.0,-0.3,4873881.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_030_20230621_20231113","bbox":[-73.130789,43.99619,-73.056629,44.066299],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.99619],[-73.056629,44.065097],[-73.128621,44.066299],[-73.130789,43.997389],[-73.05888,43.99619]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[649869.9,4873281.3,655638.6,4880939.1],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19229],"proj:centroid":{"lat":44.03125,"lon":-73.09373},"proj:transform":[0.3,0.0,649869.9,0.0,-0.3,4880939.1,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_030_20230621_20231113","bbox":[-73.193221,43.996227,-73.119196,44.066264],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.996227],[-73.119196,44.065102],[-73.191127,44.066264],[-73.193221,43.997386],[-73.121374,43.996227]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[644864.1,4873169.399999999,650627.7,4880823.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19212],"proj:centroid":{"lat":44.03125,"lon":-73.15623},"proj:transform":[0.3,0.0,644864.1,0.0,-0.3,4880823.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_030_20230620_20231113","bbox":[-73.255654,43.996263,-73.181764,44.066229],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_030_20230620_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996263],[-73.181764,44.065107],[-73.253633,44.066229],[-73.255654,43.997382],[-73.183868,43.996263]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-20T16:00:00Z","naip:year":"2023","proj:bbox":[639858.3,4873061.100000001,645616.8,4880711.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25501,19195],"proj:centroid":{"lat":44.03125,"lon":-73.21873},"proj:transform":[0.3,0.0,639858.3,0.0,-0.3,4880711.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20211029","bbox":[-73.130807,43.996179,-73.056111,44.06681],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058379,43.996179],[-73.056111,44.065598],[-73.128623,44.06681],[-73.130807,43.997387],[-73.058379,43.996179]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[649868.4,4873281.0,655678.8,4880995.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12858,9684],"proj:transform":[0.6,0.0,649868.4,0.0,-0.6,4880995.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20211029","bbox":[-73.255666,43.996252,-73.181247,44.066737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183367,43.996252],[-73.181247,44.065607],[-73.25363,44.066737],[-73.255666,43.997379],[-73.183367,43.996252]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[639857.4,4873060.8,645657.0,4880767.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12845,9666],"proj:transform":[0.6,0.0,639857.4,0.0,-0.6,4880767.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20211029","bbox":[-73.192739,43.996233,-73.119177,44.066755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996233],[-73.119177,44.065601],[-73.190629,44.066755],[-73.192739,43.997384],[-73.12137,43.996233]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[644902.8,4873170.0,650628.0,4880878.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12848,9542],"proj:transform":[0.6,0.0,644902.8,0.0,-0.6,4880878.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20211029","bbox":[-73.255626,43.934253,-73.181287,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183372,43.934253],[-73.181287,44.002604],[-73.253623,44.003733],[-73.255626,43.935379],[-73.183372,43.934253]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[640006.2,4866174.6,645808.2,4873770.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12659,9670],"proj:transform":[0.6,0.0,640006.2,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_nw_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2443' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:22 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125121Z-167d46d96d8bvmllhC1DENt02w0000000rzg00000000427y status: code: 200 message: OK - request: body: '{"limit": 10, "bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"], "token": "next:naip:vt_m_4307307_nw_18_060_20211029"}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '132' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307307_ne_18_060_20211029","bbox":[-73.192697,43.934234,-73.119216,44.003752],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121373,43.934234],[-73.119216,44.002598],[-73.190622,44.003752],[-73.192697,43.935384],[-73.121373,43.934234]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[645057.0,4866283.8,650784.6,4873881.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12662,9546],"proj:transform":[0.6,0.0,645057.0,0.0,-0.6,4873881.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20210920","bbox":[-73.130763,43.93418,-73.056149,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20210920"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20210920","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05838,43.93418],[-73.056149,44.002596],[-73.128615,44.003806],[-73.130763,43.935387],[-73.05838,43.93418]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-09-20T16:00:00Z","naip:year":"2021","proj:bbox":[650028.0,4866394.8,655840.8,4873998.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12672,9688],"proj:transform":[0.6,0.0,650028.0,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20181019_20190225","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407364_sw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.6,0.0,649869.0,0.0,-0.6,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20181019_20190225","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307308_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[650027.3999999999,4866339.6,655801.7999999999,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6,0.0,650027.3999999999,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20180923_20190225","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20180923_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_nw_18_060_20180923.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-23T00:00:00Z","naip:year":"2018","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.6,0.0,640005.0,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20180914_20190225","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6,0.0,639858.0,0.0,-0.6,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20180914_20190225","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_se_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6,0.0,644863.2,0.0,-0.6,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20180823_20190225","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20180823_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_ne_18_060_20180823.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-08-23T00:00:00Z","naip:year":"2018","proj:bbox":[645016.2,4866227.4,650785.7999999999,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6,0.0,645016.2,0.0,-0.6,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_h_20160805","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307308_nw_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[650027.4,4866339.6,655801.8,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6000000000000024,0.0,650027.4,0.0,-0.6000000000000292,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_h_20160805","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_ne_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6000000000000096,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[645016.2,4866227.4,650785.8,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6000000000000096,0.0,645016.2,0.0,-0.5999999999999854,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"next:naip:vt_m_4307307_ne_18_h_20160805"}},{"rel":"previous","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"bbox":[-73.21,43.99,-73.12,44.05],"collections":["naip"],"token":"prev:naip:vt_m_4307307_ne_18_060_20211029"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2423' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:22 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125122Z-167d46d96d8ttf9rhC1DENb9c80000000sd0000000003q9h status: code: 200 message: OK version: 1 TestItemSearch.test_result_paging_max_items.yaml000066400000000000000000002731231503646565400344470ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_item_searchinteractions: - request: body: '{"limit": 10, "collections": ["naip"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '38' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"mt_m_4911664_se_11_060_20231117_20240103","bbox":[-116.066453,48.997642,-115.995973,49.064871],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4911664_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4911664_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49116/m_4911664_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49116/m_4911664_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4911664_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4911664_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.997313,48.997642],[-115.995973,49.064289],[-116.065205,49.064871],[-116.066453,48.998222],[-115.997313,48.997642]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[568284.0,5427678.0,573342.0,5435088.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12350,8430],"proj:centroid":{"lat":49.03126,"lon":-116.03124},"proj:transform":[0.6,0.0,568284.0,0.0,-0.6,5435088.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4911558_sw_11_060_20231117_20240103","bbox":[-115.879177,48.997533,-115.808202,49.06498],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4911558_sw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4911558_sw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911558_sw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911558_sw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4911558_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4911558_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.809795,48.997533],[-115.808202,49.064284],[-115.877676,49.06498],[-115.879177,48.998228],[-115.809795,48.997533]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[581982.0,5427864.0,587058.0,5435286.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12370,8460],"proj:centroid":{"lat":49.03126,"lon":-115.84371},"proj:transform":[0.6,0.0,581982.0,0.0,-0.6,5435286.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4911558_se_11_060_20231117_20240103","bbox":[-115.816751,48.997519,-115.745612,49.065003],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4911558_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4911558_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911558_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911558_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4911558_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4911558_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.747289,48.997519],[-115.745612,49.064268],[-115.815167,49.065003],[-115.816751,48.998252],[-115.747289,48.997519]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[586548.0,5427936.0,591630.0,5435358.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12370,8470],"proj:centroid":{"lat":49.03127,"lon":-115.7812},"proj:transform":[0.6,0.0,586548.0,0.0,-0.6,5435358.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4911557_sw_11_060_20231117_20240103","bbox":[-116.004028,48.997622,-115.933383,49.064887],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4911557_sw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4911557_sw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911557_sw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911557_sw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4911557_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4911557_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.934807,48.997622],[-115.933383,49.064267],[-116.002696,49.064887],[-116.004028,48.99824],[-115.934807,48.997622]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[572850.0,5427738.0,577914.0,5435148.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12350,8440],"proj:centroid":{"lat":49.03126,"lon":-115.96873},"proj:transform":[0.6,0.0,572850.0,0.0,-0.6,5435148.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4911557_se_11_060_20231117_20240103","bbox":[-115.941603,48.997567,-115.870793,49.064924],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4911557_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4911557_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911557_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911557_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4911557_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4911557_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.872301,48.997567],[-115.870793,49.064266],[-115.940187,49.064924],[-115.941603,48.998224],[-115.872301,48.997567]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[577416.0,5427798.0,582486.0,5435214.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12360,8450],"proj:centroid":{"lat":49.03125,"lon":-115.90622},"proj:transform":[0.6,0.0,577416.0,0.0,-0.6,5435214.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4811608_se_11_060_20231117_20240103","bbox":[-116.066408,48.872635,-115.995943,48.939865],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811608_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811608_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48116/m_4811608_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48116/m_4811608_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811608_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811608_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.997277,48.872635],[-115.995943,48.939283],[-116.065166,48.939865],[-116.066408,48.873215],[-115.997277,48.872635]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[568458.0,5413782.0,573528.0,5421192.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12350,8450],"proj:centroid":{"lat":48.90626,"lon":-116.0312},"proj:transform":[0.6,0.0,568458.0,0.0,-0.6,5421192.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4811608_ne_11_060_20231117_20240103","bbox":[-116.066472,48.935139,-115.995999,49.002368],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811608_ne_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811608_ne_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48116/m_4811608_ne_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48116/m_4811608_ne_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811608_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811608_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.997337,48.935139],[-115.995999,49.001787],[-116.065227,49.002368],[-116.066472,48.935719],[-115.997337,48.935139]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[568368.0,5420730.0,573432.0,5428140.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12350,8440],"proj:centroid":{"lat":48.96876,"lon":-116.03126},"proj:transform":[0.6,0.0,568368.0,0.0,-0.6,5428140.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4811502_nw_11_060_20231117_20240103","bbox":[-115.879185,48.935029,-115.808218,49.002478],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811502_nw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811502_nw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811502_nw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811502_nw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811502_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811502_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.809808,48.935029],[-115.808218,49.001781],[-115.877687,49.002478],[-115.879185,48.935725],[-115.809808,48.935029]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[582084.0,5420916.0,587166.0,5428338.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12370,8470],"proj:centroid":{"lat":48.96876,"lon":-115.84372},"proj:transform":[0.6,0.0,582084.0,0.0,-0.6,5428338.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4811501_sw_11_060_20231117_20240103","bbox":[-116.004057,48.872615,-115.933428,48.939882],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811501_sw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811501_sw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_sw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_sw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811501_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811501_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.934845,48.872615],[-115.933428,48.939262],[-116.002731,48.939882],[-116.004057,48.873233],[-115.934845,48.872615]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[573030.0,5413842.0,578106.0,5421252.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12350,8460],"proj:centroid":{"lat":48.90626,"lon":-115.96877},"proj:transform":[0.6,0.0,573030.0,0.0,-0.6,5421252.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4811501_se_11_060_20231117_20240103","bbox":[-115.941624,48.87256,-115.87083,48.939918],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811501_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811501_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811501_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811501_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.872332,48.87256],[-115.87083,48.939259],[-115.940214,48.939918],[-115.941624,48.873217],[-115.872332,48.87256]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[577608.0,5413902.0,582690.0,5421318.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12360,8470],"proj:centroid":{"lat":48.90625,"lon":-115.90625},"proj:transform":[0.6,0.0,577608.0,0.0,-0.6,5421318.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"collections":["naip"],"token":"next:naip:mt_m_4811501_se_11_060_20231117_20240103"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2376' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:23 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125123Z-167d46d96d89wd6bhC1DEN9n1n0000000sp0000000003hkh status: code: 200 message: OK - request: body: '{"limit": 10, "collections": ["naip"], "token": "next:naip:mt_m_4811501_se_11_060_20231117_20240103"}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '101' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"mt_m_4811501_nw_11_060_20231117_20240103","bbox":[-116.004043,48.935118,-115.933406,49.002385],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811501_nw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811501_nw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_nw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_nw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811501_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811501_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.934827,48.935118],[-115.933406,49.001765],[-116.002714,49.002385],[-116.004043,48.935737],[-115.934827,48.935118]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[572940.0,5420790.0,578010.0,5428200.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12350,8450],"proj:centroid":{"lat":48.96876,"lon":-115.96875},"proj:transform":[0.6,0.0,572940.0,0.0,-0.6,5428200.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4811501_ne_11_060_20231117_20240103","bbox":[-115.941614,48.935064,-115.870812,49.002421],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811501_ne_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811501_ne_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_ne_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_ne_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811501_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811501_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.872317,48.935064],[-115.870812,49.001763],[-115.940201,49.002421],[-115.941614,48.935721],[-115.872317,48.935064]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[577512.0,5420850.0,582588.0,5428266.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12360,8460],"proj:centroid":{"lat":48.96875,"lon":-115.90624},"proj:transform":[0.6,0.0,577512.0,0.0,-0.6,5428266.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511363_nw_12_060_20231117_20240103","bbox":[-113.255099,45.059408,-113.182469,45.128069],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511363_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511363_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511363_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511363_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511363_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511363_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.182469,45.060767],[-113.185035,45.128069],[-113.255099,45.126707],[-113.252451,45.059408],[-113.182469,45.060767]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[322656.0,4992018.0,328170.0,4999500.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12470,9190],"proj:centroid":{"lat":45.09374,"lon":-113.21876},"proj:transform":[0.6,0.0,322656.0,0.0,-0.6,4999500.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511362_nw_12_060_20231117_20240103","bbox":[-113.380224,45.059358,-113.307375,45.128146],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511362_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511362_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511362_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511362_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511362_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511362_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.307375,45.060795],[-113.31009,45.128146],[-113.380224,45.126705],[-113.377427,45.059358],[-113.307375,45.060795]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[312816.0,4992294.0,318336.0,4999782.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9200],"proj:centroid":{"lat":45.09376,"lon":-113.34378},"proj:transform":[0.6,0.0,312816.0,0.0,-0.6,4999782.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511362_ne_12_060_20231117_20240103","bbox":[-113.317661,45.0594,-113.244961,45.128097],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511362_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511362_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511362_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511362_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511362_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511362_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.244961,45.060798],[-113.2476,45.128097],[-113.317661,45.126696],[-113.31494,45.0594],[-113.244961,45.060798]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[317736.0,4992156.0,323250.0,4999638.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12470,9190],"proj:centroid":{"lat":45.09375,"lon":-113.28129},"proj:transform":[0.6,0.0,317736.0,0.0,-0.6,4999638.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511361_nw_12_060_20231117_20240103","bbox":[-113.505348,45.059279,-113.432204,45.128194],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511361_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511361_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511361_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511361_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511361_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511361_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.432204,45.060796],[-113.435068,45.128194],[-113.505348,45.126673],[-113.502402,45.059279],[-113.432204,45.060796]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[302976.0,4992582.0,308508.0,5000076.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9220],"proj:centroid":{"lat":45.09374,"lon":-113.46876},"proj:transform":[0.6,0.0,302976.0,0.0,-0.6,5000076.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511361_ne_12_060_20231117_20240103","bbox":[-113.442786,45.059335,-113.36979,45.12816],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511361_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511361_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511361_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511361_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511361_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511361_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.36979,45.060813],[-113.372579,45.12816],[-113.442786,45.126679],[-113.439915,45.059335],[-113.36979,45.060813]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[307896.0,4992438.0,313422.0,4999926.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9210],"proj:centroid":{"lat":45.09375,"lon":-113.40627},"proj:transform":[0.6,0.0,307896.0,0.0,-0.6,4999926.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511360_nw_12_060_20231117_20240103","bbox":[-113.630473,45.059225,-113.55711,45.128266],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511360_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511360_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511360_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511360_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511360_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511360_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.55711,45.060821],[-113.560124,45.128266],[-113.630473,45.126667],[-113.627377,45.059225],[-113.55711,45.060821]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[293136.0,4992888.0,298674.0,5000388.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9230],"proj:centroid":{"lat":45.09375,"lon":-113.59377},"proj:transform":[0.6,0.0,293136.0,0.0,-0.6,5000388.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511360_ne_12_060_20231117_20240103","bbox":[-113.567912,45.059242,-113.494618,45.128248],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511360_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511360_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511360_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511360_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511360_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511360_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.494618,45.060799],[-113.497559,45.128248],[-113.567912,45.126687],[-113.564889,45.059242],[-113.494618,45.060799]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[298056.0,4992732.0,303594.0,5000232.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9230],"proj:centroid":{"lat":45.09375,"lon":-113.53124},"proj:transform":[0.6,0.0,298056.0,0.0,-0.6,5000232.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511355_sw_12_060_20231117_20240103","bbox":[-113.255123,45.121952,-113.182489,45.190559],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511355_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511355_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511355_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511355_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511355_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511355_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.182489,45.123311],[-113.185058,45.190559],[-113.255123,45.189196],[-113.25247,45.121952],[-113.182489,45.123311]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[322848.0,4998966.0,328356.0,5006442.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12460,9180],"proj:centroid":{"lat":45.15626,"lon":-113.21879},"proj:transform":[0.6,0.0,322848.0,0.0,-0.6,5006442.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"collections":["naip"],"token":"next:naip:mt_m_4511355_sw_12_060_20231117_20240103"}},{"rel":"previous","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"collections":["naip"],"token":"prev:naip:mt_m_4811501_nw_11_060_20231117_20240103"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2426' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:24 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125123Z-167d46d96d8ttf9rhC1DENb9c80000000shg000000000f09 status: code: 200 message: OK - request: body: '{"limit": 10, "collections": ["naip"], "token": "next:naip:mt_m_4511355_sw_12_060_20231117_20240103"}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '101' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"mt_m_4511355_nw_12_060_20231117_20240103","bbox":[-113.255072,45.184443,-113.182509,45.253048],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511355_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511355_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511355_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511355_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511355_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511355_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.182509,45.185801],[-113.185084,45.253048],[-113.255072,45.251686],[-113.252414,45.184443],[-113.182509,45.185801]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[323046.0,5005908.0,328542.0,5013384.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12460,9160],"proj:centroid":{"lat":45.21875,"lon":-113.21877},"proj:transform":[0.6,0.0,323046.0,0.0,-0.6,5013384.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511354_sw_12_060_20231117_20240103","bbox":[-113.380232,45.121848,-113.307376,45.190635],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511354_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511354_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511354_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511354_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511354_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511354_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.307376,45.123286],[-113.310098,45.190635],[-113.380232,45.189194],[-113.377428,45.121848],[-113.307376,45.123286]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[313020.0,4999236.0,318534.0,5006724.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9190],"proj:centroid":{"lat":45.15625,"lon":-113.34378},"proj:transform":[0.6,0.0,313020.0,0.0,-0.6,5006724.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511354_se_12_060_20231117_20240103","bbox":[-113.317677,45.12189,-113.244894,45.190588],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511354_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511354_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511354_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511354_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511354_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511354_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.244894,45.123289],[-113.247539,45.190588],[-113.317677,45.189186],[-113.314949,45.12189],[-113.244894,45.123289]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[317934.0,4999098.0,323448.0,5006580.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12470,9190],"proj:centroid":{"lat":45.15624,"lon":-113.28126},"proj:transform":[0.6,0.0,317934.0,0.0,-0.6,5006580.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511354_nw_12_060_20231117_20240103","bbox":[-113.380243,45.184338,-113.307304,45.253126],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511354_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511354_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511354_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511354_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511354_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511354_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.307304,45.185777],[-113.310031,45.253126],[-113.380243,45.251684],[-113.377433,45.184338],[-113.307304,45.185777]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[313224.0,5006178.0,318738.0,5013666.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9190],"proj:centroid":{"lat":45.21874,"lon":-113.34375},"proj:transform":[0.6,0.0,313224.0,0.0,-0.6,5013666.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511354_ne_12_060_20231117_20240103","bbox":[-113.317697,45.18438,-113.244906,45.253131],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511354_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511354_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511354_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511354_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511354_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511354_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.244906,45.185779],[-113.247559,45.253131],[-113.317697,45.251728],[-113.314961,45.18438],[-113.244906,45.185779]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[318132.0,5006040.0,323640.0,5013528.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9180],"proj:centroid":{"lat":45.21876,"lon":-113.28128},"proj:transform":[0.6,0.0,318132.0,0.0,-0.6,5013528.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511353_sw_12_060_20231117_20240103","bbox":[-113.505343,45.121769,-113.432189,45.190738],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511353_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511353_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511353_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511353_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511353_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511353_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.432189,45.123287],[-113.435062,45.190738],[-113.505343,45.189217],[-113.502387,45.121769],[-113.432189,45.123287]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[303192.0,4999524.0,308718.0,5007024.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9210],"proj:centroid":{"lat":45.15626,"lon":-113.46875},"proj:transform":[0.6,0.0,303192.0,0.0,-0.6,5007024.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511353_se_12_060_20231117_20240103","bbox":[-113.442788,45.121826,-113.369783,45.190704],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511353_se_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511353_se_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511353_se_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511353_se_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511353_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511353_se_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.369783,45.123303],[-113.37258,45.190704],[-113.442788,45.189223],[-113.439909,45.121826],[-113.369783,45.123303]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[308106.0,4999380.0,313626.0,5006874.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9200],"proj:centroid":{"lat":45.15627,"lon":-113.40627},"proj:transform":[0.6,0.0,308106.0,0.0,-0.6,5006874.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511353_nw_12_060_20231117_20240103","bbox":[-113.505414,45.184312,-113.43218,45.253228],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511353_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511353_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511353_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511353_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511353_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511353_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.43218,45.185831],[-113.435056,45.253228],[-113.505414,45.251705],[-113.502454,45.184312],[-113.43218,45.185831]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[303402.0,5006472.0,308928.0,5013966.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9210],"proj:centroid":{"lat":45.21878,"lon":-113.46878},"proj:transform":[0.6,0.0,303402.0,0.0,-0.6,5013966.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511353_ne_12_060_20231117_20240103","bbox":[-113.442791,45.184316,-113.36978,45.253193],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511353_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511353_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511353_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511353_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511353_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511353_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.36978,45.185793],[-113.372583,45.253193],[-113.442791,45.251712],[-113.439905,45.184316],[-113.36978,45.185793]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[308316.0,5006322.0,313830.0,5013816.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9190],"proj:centroid":{"lat":45.21876,"lon":-113.40626},"proj:transform":[0.6,0.0,308316.0,0.0,-0.6,5013816.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511352_sw_12_060_20231117_20240103","bbox":[-113.630526,45.121714,-113.557079,45.190757],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511352_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511352_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511352_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511352_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511352_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511352_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.557079,45.123312],[-113.560099,45.190757],[-113.630526,45.189155],[-113.627423,45.121714],[-113.557079,45.123312]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[293358.0,4999830.0,298896.0,5007330.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9230],"proj:centroid":{"lat":45.15624,"lon":-113.59378},"proj:transform":[0.6,0.0,293358.0,0.0,-0.6,5007330.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"collections":["naip"],"token":"next:naip:mt_m_4511352_sw_12_060_20231117_20240103"}},{"rel":"previous","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"collections":["naip"],"token":"prev:naip:mt_m_4511355_nw_12_060_20231117_20240103"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2360' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:24 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125124Z-167d46d96d8dtcxmhC1DEN584s0000000rx0000000004q93 status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_item_search/TestItemSearch.test_results.yaml000066400000000000000000001744571503646565400313300ustar00rootroot00000000000000interactions: - request: body: '{"limit": 10, "collections": ["naip"]}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '38' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"mt_m_4911664_se_11_060_20231117_20240103","bbox":[-116.066453,48.997642,-115.995973,49.064871],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4911664_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4911664_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49116/m_4911664_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49116/m_4911664_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4911664_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4911664_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.997313,48.997642],[-115.995973,49.064289],[-116.065205,49.064871],[-116.066453,48.998222],[-115.997313,48.997642]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[568284.0,5427678.0,573342.0,5435088.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12350,8430],"proj:centroid":{"lat":49.03126,"lon":-116.03124},"proj:transform":[0.6,0.0,568284.0,0.0,-0.6,5435088.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4911558_sw_11_060_20231117_20240103","bbox":[-115.879177,48.997533,-115.808202,49.06498],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4911558_sw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4911558_sw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911558_sw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911558_sw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4911558_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4911558_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.809795,48.997533],[-115.808202,49.064284],[-115.877676,49.06498],[-115.879177,48.998228],[-115.809795,48.997533]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[581982.0,5427864.0,587058.0,5435286.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12370,8460],"proj:centroid":{"lat":49.03126,"lon":-115.84371},"proj:transform":[0.6,0.0,581982.0,0.0,-0.6,5435286.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4911558_se_11_060_20231117_20240103","bbox":[-115.816751,48.997519,-115.745612,49.065003],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4911558_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4911558_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911558_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911558_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4911558_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4911558_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.747289,48.997519],[-115.745612,49.064268],[-115.815167,49.065003],[-115.816751,48.998252],[-115.747289,48.997519]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[586548.0,5427936.0,591630.0,5435358.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12370,8470],"proj:centroid":{"lat":49.03127,"lon":-115.7812},"proj:transform":[0.6,0.0,586548.0,0.0,-0.6,5435358.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4911557_sw_11_060_20231117_20240103","bbox":[-116.004028,48.997622,-115.933383,49.064887],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4911557_sw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4911557_sw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911557_sw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911557_sw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4911557_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4911557_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.934807,48.997622],[-115.933383,49.064267],[-116.002696,49.064887],[-116.004028,48.99824],[-115.934807,48.997622]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[572850.0,5427738.0,577914.0,5435148.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12350,8440],"proj:centroid":{"lat":49.03126,"lon":-115.96873},"proj:transform":[0.6,0.0,572850.0,0.0,-0.6,5435148.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4911557_se_11_060_20231117_20240103","bbox":[-115.941603,48.997567,-115.870793,49.064924],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4911557_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4911557_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911557_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/49115/m_4911557_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4911557_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4911557_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.872301,48.997567],[-115.870793,49.064266],[-115.940187,49.064924],[-115.941603,48.998224],[-115.872301,48.997567]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[577416.0,5427798.0,582486.0,5435214.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12360,8450],"proj:centroid":{"lat":49.03125,"lon":-115.90622},"proj:transform":[0.6,0.0,577416.0,0.0,-0.6,5435214.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4811608_se_11_060_20231117_20240103","bbox":[-116.066408,48.872635,-115.995943,48.939865],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811608_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811608_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48116/m_4811608_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48116/m_4811608_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811608_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811608_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.997277,48.872635],[-115.995943,48.939283],[-116.065166,48.939865],[-116.066408,48.873215],[-115.997277,48.872635]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[568458.0,5413782.0,573528.0,5421192.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12350,8450],"proj:centroid":{"lat":48.90626,"lon":-116.0312},"proj:transform":[0.6,0.0,568458.0,0.0,-0.6,5421192.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4811608_ne_11_060_20231117_20240103","bbox":[-116.066472,48.935139,-115.995999,49.002368],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811608_ne_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811608_ne_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48116/m_4811608_ne_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48116/m_4811608_ne_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811608_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811608_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.997337,48.935139],[-115.995999,49.001787],[-116.065227,49.002368],[-116.066472,48.935719],[-115.997337,48.935139]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[568368.0,5420730.0,573432.0,5428140.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12350,8440],"proj:centroid":{"lat":48.96876,"lon":-116.03126},"proj:transform":[0.6,0.0,568368.0,0.0,-0.6,5428140.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4811502_nw_11_060_20231117_20240103","bbox":[-115.879185,48.935029,-115.808218,49.002478],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811502_nw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811502_nw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811502_nw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811502_nw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811502_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811502_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.809808,48.935029],[-115.808218,49.001781],[-115.877687,49.002478],[-115.879185,48.935725],[-115.809808,48.935029]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[582084.0,5420916.0,587166.0,5428338.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12370,8470],"proj:centroid":{"lat":48.96876,"lon":-115.84372},"proj:transform":[0.6,0.0,582084.0,0.0,-0.6,5428338.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4811501_sw_11_060_20231117_20240103","bbox":[-116.004057,48.872615,-115.933428,48.939882],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811501_sw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811501_sw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_sw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_sw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811501_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811501_sw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.934845,48.872615],[-115.933428,48.939262],[-116.002731,48.939882],[-116.004057,48.873233],[-115.934845,48.872615]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[573030.0,5413842.0,578106.0,5421252.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12350,8460],"proj:centroid":{"lat":48.90626,"lon":-115.96877},"proj:transform":[0.6,0.0,573030.0,0.0,-0.6,5421252.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4811501_se_11_060_20231117_20240103","bbox":[-115.941624,48.87256,-115.87083,48.939918],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811501_se_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811501_se_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_se_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_se_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811501_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811501_se_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.872332,48.87256],[-115.87083,48.939259],[-115.940214,48.939918],[-115.941624,48.873217],[-115.872332,48.87256]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[577608.0,5413902.0,582690.0,5421318.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12360,8470],"proj:centroid":{"lat":48.90625,"lon":-115.90625},"proj:transform":[0.6,0.0,577608.0,0.0,-0.6,5421318.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"collections":["naip"],"token":"next:naip:mt_m_4811501_se_11_060_20231117_20240103"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2376' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:18 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125117Z-167d46d96d84sncshC1DENcfm00000000sc0000000004gq9 status: code: 200 message: OK - request: body: '{"limit": 10, "collections": ["naip"], "token": "next:naip:mt_m_4811501_se_11_060_20231117_20240103"}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '101' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"mt_m_4811501_nw_11_060_20231117_20240103","bbox":[-116.004043,48.935118,-115.933406,49.002385],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811501_nw_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811501_nw_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_nw_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_nw_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811501_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811501_nw_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.934827,48.935118],[-115.933406,49.001765],[-116.002714,49.002385],[-116.004043,48.935737],[-115.934827,48.935118]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[572940.0,5420790.0,578010.0,5428200.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12350,8450],"proj:centroid":{"lat":48.96876,"lon":-115.96875},"proj:transform":[0.6,0.0,572940.0,0.0,-0.6,5428200.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4811501_ne_11_060_20231117_20240103","bbox":[-115.941614,48.935064,-115.870812,49.002421],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4811501_ne_11_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4811501_ne_11_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_ne_11_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/48115/m_4811501_ne_11_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4811501_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4811501_ne_11_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-115.872317,48.935064],[-115.870812,49.001763],[-115.940201,49.002421],[-115.941614,48.935721],[-115.872317,48.935064]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[577512.0,5420850.0,582588.0,5428266.0],"proj:epsg":26911,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12360,8460],"proj:centroid":{"lat":48.96875,"lon":-115.90624},"proj:transform":[0.6,0.0,577512.0,0.0,-0.6,5428266.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511363_nw_12_060_20231117_20240103","bbox":[-113.255099,45.059408,-113.182469,45.128069],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511363_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511363_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511363_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511363_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511363_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511363_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.182469,45.060767],[-113.185035,45.128069],[-113.255099,45.126707],[-113.252451,45.059408],[-113.182469,45.060767]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[322656.0,4992018.0,328170.0,4999500.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12470,9190],"proj:centroid":{"lat":45.09374,"lon":-113.21876},"proj:transform":[0.6,0.0,322656.0,0.0,-0.6,4999500.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511362_nw_12_060_20231117_20240103","bbox":[-113.380224,45.059358,-113.307375,45.128146],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511362_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511362_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511362_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511362_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511362_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511362_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.307375,45.060795],[-113.31009,45.128146],[-113.380224,45.126705],[-113.377427,45.059358],[-113.307375,45.060795]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[312816.0,4992294.0,318336.0,4999782.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9200],"proj:centroid":{"lat":45.09376,"lon":-113.34378},"proj:transform":[0.6,0.0,312816.0,0.0,-0.6,4999782.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511362_ne_12_060_20231117_20240103","bbox":[-113.317661,45.0594,-113.244961,45.128097],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511362_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511362_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511362_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511362_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511362_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511362_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.244961,45.060798],[-113.2476,45.128097],[-113.317661,45.126696],[-113.31494,45.0594],[-113.244961,45.060798]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[317736.0,4992156.0,323250.0,4999638.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12470,9190],"proj:centroid":{"lat":45.09375,"lon":-113.28129},"proj:transform":[0.6,0.0,317736.0,0.0,-0.6,4999638.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511361_nw_12_060_20231117_20240103","bbox":[-113.505348,45.059279,-113.432204,45.128194],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511361_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511361_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511361_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511361_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511361_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511361_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.432204,45.060796],[-113.435068,45.128194],[-113.505348,45.126673],[-113.502402,45.059279],[-113.432204,45.060796]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[302976.0,4992582.0,308508.0,5000076.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12490,9220],"proj:centroid":{"lat":45.09374,"lon":-113.46876},"proj:transform":[0.6,0.0,302976.0,0.0,-0.6,5000076.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511361_ne_12_060_20231117_20240103","bbox":[-113.442786,45.059335,-113.36979,45.12816],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511361_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511361_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511361_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511361_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511361_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511361_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.36979,45.060813],[-113.372579,45.12816],[-113.442786,45.126679],[-113.439915,45.059335],[-113.36979,45.060813]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[307896.0,4992438.0,313422.0,4999926.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12480,9210],"proj:centroid":{"lat":45.09375,"lon":-113.40627},"proj:transform":[0.6,0.0,307896.0,0.0,-0.6,4999926.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511360_nw_12_060_20231117_20240103","bbox":[-113.630473,45.059225,-113.55711,45.128266],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511360_nw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511360_nw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511360_nw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511360_nw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511360_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511360_nw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.55711,45.060821],[-113.560124,45.128266],[-113.630473,45.126667],[-113.627377,45.059225],[-113.55711,45.060821]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[293136.0,4992888.0,298674.0,5000388.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9230],"proj:centroid":{"lat":45.09375,"lon":-113.59377},"proj:transform":[0.6,0.0,293136.0,0.0,-0.6,5000388.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511360_ne_12_060_20231117_20240103","bbox":[-113.567912,45.059242,-113.494618,45.128248],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511360_ne_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511360_ne_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511360_ne_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511360_ne_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511360_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511360_ne_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.494618,45.060799],[-113.497559,45.128248],[-113.567912,45.126687],[-113.564889,45.059242],[-113.494618,45.060799]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[298056.0,4992732.0,303594.0,5000232.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12500,9230],"proj:centroid":{"lat":45.09375,"lon":-113.53124},"proj:transform":[0.6,0.0,298056.0,0.0,-0.6,5000232.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"mt_m_4511355_sw_12_060_20231117_20240103","bbox":[-113.255123,45.121952,-113.182489,45.190559],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/mt_m_4511355_sw_12_060_20231117_20240103"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=mt_m_4511355_sw_12_060_20231117_20240103","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511355_sw_12_060_20231117_20240103.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/mt/2023/mt_060cm_2023/45113/m_4511355_sw_12_060_20231117_20240103.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=mt_m_4511355_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=mt_m_4511355_sw_12_060_20231117_20240103&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-113.182489,45.123311],[-113.185058,45.190559],[-113.255123,45.189196],[-113.25247,45.121952],[-113.182489,45.123311]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2023-11-17T16:00:00Z","naip:year":"2023","proj:bbox":[322848.0,4998966.0,328356.0,5006442.0],"proj:epsg":26912,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"mt","proj:shape":[12460,9180],"proj:centroid":{"lat":45.15626,"lon":-113.21879},"proj:transform":[0.6,0.0,322848.0,0.0,-0.6,5006442.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"next","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"collections":["naip"],"token":"next:naip:mt_m_4511355_sw_12_060_20231117_20240103"}},{"rel":"previous","type":"application/geo+json","method":"POST","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","body":{"limit":10,"collections":["naip"],"token":"prev:naip:mt_m_4811501_nw_11_060_20231117_20240103"}},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2426' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:51:19 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125118Z-167d46d96d8468jqhC1DENbu080000000s5g000000004drn status: code: 200 message: OK version: 1 TestItemSearchParams.test_collection_object.yaml000066400000000000000000001074071503646565400343640ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_item_searchinteractions: - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.9 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t response: body: string: '{"id":"aster-l1t","description":"The [ASTER](https://terra.nasa.gov/about/terra-instruments/aster) instrument, launched on-board NASA''s [Terra](https://terra.nasa.gov/) satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. ASTER images provide information about land surface temperature, color, elevation, and mineral composition.\n\nThis dataset represents ASTER [L1T](https://lpdaac.usgs.gov/products/ast_l1tv003/) data from 2000-2006. L1T images have been terrain-corrected and rotated to a north-up UTM projection. Images are in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\n","stac_version":"1.0.0-beta.2","links":[{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t","rel":"self","type":"application/json"},{"href":"https://planetarycomputer.microsoft.com/","rel":"parent","type":"application/json"},{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items","rel":"item","type":"application/geo+json"},{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/","rel":"root","type":"application/json"},{"href":"https://www.usgs.gov/core-science-systems/hdds/data-policy","rel":"license","title":"public domain"}],"stac_extensions":["item-assets","collection-assets"],"title":"ASTER L1T","license":"proprietary","extent":{"spatial":{"bbox":[[-180.0,-90.0,180.0,90.0]]},"temporal":{"interval":[["2000-03-04T12:00:00.000000Z","2006-12-31T12:00:00.000000Z"]]}},"keywords":["aster","usgs","nasa","satellite","global"],"providers":[{"name":"NASA","roles":["producer","licensor"],"url":"https://terra.nasa.gov/about/terra-instruments/aster"},{"name":"USGS","roles":["processor","producer","licensor"],"url":"https://lpdaac.usgs.gov/data/get-started-data/collection-overview/missions/aster-overview/"},{"name":"Microsoft","roles":["host","processor"],"url":"https://planetarycomputer.microsoft.com"}],"summaries":{"gsd":[15,30,90],"eo:bands":[{"gsd":15,"name":"VNIR_Band1","common_name":"yellow/green","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"gsd":15,"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"gsd":15,"name":"VNIR_Band3N","common_name":"near infrared","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08},{"gsd":30,"name":"SWIR_Band4","common_name":"swir","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"gsd":30,"name":"SWIR_Band5","common_name":"swir","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band6","common_name":"swir","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band7","common_name":"swir","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"gsd":30,"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"gsd":30,"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07},{"gsd":90,"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"gsd":90,"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"platform":["terra"],"instruments":["aster"]},"msft:short_description":"The ASTER instrument, launched on-board NASA''s Terra satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. This dataset contains ASTER data from 2000-2006.","assets":{"thumbnail":{"title":"ASTER L1T","href":"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/aster.png","media_type":"image/png"}},"msft:container":"aster","item_assets":{"TIR":{"title":"TIR Swath data","roles":["data"],"eo:bands":[{"name":"TIR_Band10","common_name":"lwir","center_wavelength":8.3,"full_width_half_max":0.35,"description":"thermal infrared"},{"name":"TIR_Band11","common_name":"lwir","center_wavelength":8.65,"full_width_half_max":0.35,"description":"thermal infrared"},{"name":"TIR_Band12","common_name":"lwir","center_wavelength":9.11,"full_width_half_max":0.35,"description":"thermal infrared"},{"name":"TIR_Band13","common_name":"lwir","center_wavelength":10.6,"full_width_half_max":0.7,"description":"thermal infrared"},{"name":"TIR_Band14","common_name":"lwir","center_wavelength":11.3,"full_width_half_max":0.7,"description":"thermal infrared"}]},"xml":{"title":"XML metadata","type":"application/xml","roles":["metadata"]},"SWIR":{"title":"SWIR Swath data","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"SWIR_Band4","common_name":"swir","center_wavelength":1.65,"full_width_half_max":0.1,"description":"short-wave infrared"},{"name":"SWIR_Band5","common_name":"swir","center_wavelength":2.165,"full_width_half_max":0.04,"description":"short-wave infrared"},{"name":"SWIR_Band6","common_name":"swir","center_wavelength":2.205,"full_width_half_max":0.04,"description":"short-wave infrared"},{"name":"SWIR_Band7","common_name":"swir","center_wavelength":2.26,"full_width_half_max":0.05,"description":"short-wave infrared"},{"name":"SWIR_Band8","common_name":"swir","center_wavelength":2.339,"full_width_half_max":0.07,"description":"short-wave infrared"},{"name":"SWIR_Band9","common_name":"swir","center_wavelength":2.395,"full_width_half_max":0.07,"description":"short-wave infrared"}]},"VNIR":{"title":"VNIR Swath data","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"VNIR_Band1","common_name":"yellow/green","center_wavelength":0.56,"full_width_half_max":0.08,"description":"visible yellow/green"},{"name":"VNIR_Band2","common_name":"red","center_wavelength":0.66,"full_width_half_max":0.06,"description":"visible red"},{"name":"VNIR_Band3N","common_name":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08,"description":"near infrared"}]},"qa-txt":{"title":"QA browse file","description":"Geometric quality assessment report.","type":"text/plain","roles":["metadata"]},"qa-browse":{"title":"QA browse file","description":"Single-band black and white reduced resolution browse overlaid with red, green, and blue (RGB) markers for GCPs used during the geometric verification quality check.","type":"image/jpeg","roles":["thumbnail"]},"tir-browse":{"title":"Standalone reduced resolution TIR","type":"image/jpeg","roles":["thumbnail"]},"vnir-browse":{"title":"VNIR browse file","description":"Standalone reduced resolution VNIR","type":"image/jpeg","roles":["thumbnail"]}},"msft:storage_account":"astersa"}' headers: Connection: - close Content-Length: - '7259' Content-Type: - application/json Date: - Wed, 16 Jun 2021 03:09:46 GMT Strict-Transport-Security: - max-age=15724800; includeSubDomains X-Azure-Ref: - 0emvJYAAAAADyml5CfwWbQoWPV5PEYR4jQk9TMzFFREdFMDQyMQA5MjdhYmZhNi0xOWY2LTRhZjEtYTA5ZC1jOTU5ZDlhMWU2NDQ= X-Cache: - CONFIG_NOCACHE status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.9 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2 response: body: string: '{"id":"landsat-8-c2-l2","description":"The [Landsat](https://landsat.gsfc.nasa.gov/) program has been imaging the Earth since 1972; it provides a comprehensive, continuous archive of the Earth''s surface. [Landsat 8](https://www.usgs.gov/core-science-systems/nli/landsat/landsat-8) is the most recent satellite in the Landsat series. Launched in 2013, Landsat 8 captures data in eleven spectral bands: ten optical/IR bands from the [Operational Land Imager](https://landsat.gsfc.nasa.gov/landsat-8/operational-land-imager) (OLI) instrument, and two thermal bands from the [Thermal Infrared Sensor](https://landsat.gsfc.nasa.gov/landsat-8/thermal-infrared-sensor-tirs) (TIRS) instrument.\n\nThis dataset represents the global archive of Level-2 Landsat 8 data from [Landsat Collection 2](https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-2). Because there is some latency before Level-2 data is available, a rolling window of recent Level-1 data is available as well. Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\n","stac_version":"1.0.0-beta.2","links":[{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2","rel":"self","type":"application/json"},{"href":"https://planetarycomputer.microsoft.com/","rel":"parent","type":"application/json"},{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items","rel":"item","type":"application/geo+json"},{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/","rel":"root","type":"application/json"},{"href":"https://www.usgs.gov/core-science-systems/hdds/data-policy","rel":"license","title":"public domain"}],"stac_extensions":["item-assets","collection-assets"],"title":"Landsat 8 Collection 2 Level-2","license":"proprietary","extent":{"spatial":{"bbox":[[-180.0,-90.0,180.0,90.0]]},"temporal":{"interval":[["2013-04-11T00:00:00Z",null]]}},"keywords":["landsat","usgs","nasa","satellite","global","reflectance"],"providers":[{"name":"NASA","roles":["producer","licensor"],"url":"https://landsat.gsfc.nasa.gov/"},{"name":"USGS","roles":["producer","processor","licensor"],"url":"https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-2-level-2-science-products"},{"name":"Microsoft","roles":["host"],"url":"https://planetarycomputer.microsoft.com"}],"summaries":{"gsd":[15,30,100],"eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","description":"coastal","center_wavelength":0.44,"full_width_half_max":0.02},{"gsd":30,"name":"SR_B2","common_name":"blue","description":"visible blue","center_wavelength":0.48,"full_width_half_max":0.06},{"gsd":30,"name":"SR_B3","common_name":"green","description":"visible green","center_wavelength":0.56,"full_width_half_max":0.06},{"gsd":30,"name":"SR_B4","common_name":"red","description":"visible red","center_wavelength":0.65,"full_width_half_max":0.04},{"gsd":30,"name":"SR_B5","common_name":"nir","description":"near-infrared","center_wavelength":0.86,"full_width_half_max":0.03},{"gsd":30,"name":"SR_B6","common_name":"swir16","description":"short-wave infrared","center_wavelength":1.6,"full_width_half_max":0.08},{"gsd":30,"name":"SR_B7","common_name":"swir22","description":"short-wave infrared","center_wavelength":2.2,"full_width_half_max":0.2},{"gsd":100,"name":"ST_B10","common_name":"lwir11","description":"long-wave infrared","center_wavelength":10.9,"full_width_half_max":0.8},{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"},{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"},{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"},{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"},{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"},{"gsd":30,"name":"ST_EMIS","description":"emissivity"},{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"platform":["landsat-8"],"instruments":["oli","tirs"]},"msft:storage_account":"landsateuwest","msft:container":"landsat-c2","msft:short_description":"Landsat 8 has captured 30m-resolution imagery of the Earth since 2013. This dataset contains global, atmospherically-corrected imagery from Landsat Collection 2","item_assets":{"ANG":{"title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)","type":"text/plain"},"SR_B1":{"title":"Coastal/Aerosol Band (B1)","description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}]},"SR_B2":{"title":"Blue Band (B2)","description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}]},"SR_B3":{"title":"Green Band (B3)","description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}]},"SR_B4":{"title":"Red Band (B4)","description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}]},"SR_B5":{"title":"Near Infrared Band 0.8 (B5)","description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}]},"SR_B6":{"title":"Short-wave Infrared Band 1.6 (B6)","description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}]},"SR_B7":{"title":"Short-wave Infrared Band 2.2 (B7)","description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}]},"SR_B8":{"title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized"},"ST_QA":{"title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized"},"ST_B10":{"title":"Surface Temperature Band (B10)","description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product","gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}]},"MTL.txt":{"title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)","type":"text/plain"},"MTL.xml":{"title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)","type":"application/xml"},"ST_DRAD":{"title":"Downwelled Radiance Band","description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"ST_DRAD","description":"downwelled radiance"}]},"ST_EMIS":{"title":"Emissivity Band","description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"ST_EMIS","description":"emissivity"}]},"ST_EMSD":{"title":"Emissivity Standard Deviation Band","description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"ST_EMSD","description":"emissivity standard deviation"}]},"ST_TRAD":{"title":"Thermal Radiance Band","description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"ST_TRAD","description":"thermal radiance"}]},"ST_URAD":{"title":"Upwelled Radiance Band","description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"ST_URAD","description":"upwelled radiance"}]},"MTL.json":{"title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)","type":"application/json"},"QA_PIXEL":{"title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized"},"ST_ATRAN":{"title":"Atmospheric Transmittance Band","description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"ST_ATRAN","description":"atmospheric transmission"}]},"ST_CDIST":{"title":"Cloud Distance Band","description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"ST_CDIST","description":"distance to nearest cloud"}]},"QA_RADSAT":{"title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized"},"thumbnail":{"title":"Thumbnail image","type":"image/jpeg"},"reduced_resolution_browse":{"title":"Reduced resolution browse image","type":"image/jpeg"}},"assets":{"thumbnail":{"title":"Landsat 8 C2","href":"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/landsat.png","media_type":"image/png"}}}' headers: Connection: - close Content-Length: - '10491' Content-Type: - application/json Date: - Wed, 16 Jun 2021 03:09:46 GMT Strict-Transport-Security: - max-age=15724800; includeSubDomains X-Azure-Ref: - 0e2vJYAAAAAAasa4hpnfLSrdrgmqDOF/2Qk9TMzFFREdFMDQwNwA5MjdhYmZhNi0xOWY2LTRhZjEtYTA5ZC1jOTU5ZDlhMWU2NDQ= X-Cache: - CONFIG_NOCACHE status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.9 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a response: body: string: '{"id":"sentinel-2-l2a","description":"The [Sentinel-2](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) program provides global imagery in thirteen spectral bands at 10m-60m resolution and a revisit time of approximately five days. This dataset represents the global Sentinel-2 archive, from 2016 to the present, processed to L2A (bottom-of-atmosphere) using [Sen2Cor](https://step.esa.int/main/snap-supported-plugins/sen2cor/) and converted to [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.","stac_version":"1.0.0-beta.2","links":[{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a","rel":"self","type":"application/json"},{"href":"https://planetarycomputer.microsoft.com/","rel":"parent","type":"application/json"},{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items","rel":"item","type":"application/geo+json"},{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/","rel":"root","type":"application/json"},{"href":"https://scihub.copernicus.eu/twiki/pub/SciHubWebPortal/TermsConditions/Sentinel_Data_Terms_and_Conditions.pdf","rel":"license","title":"Copernicus Sentinel data terms"}],"stac_extensions":["item-assets","collection-assets"],"title":"Sentinel-2 Level-2A","license":"proprietary","extent":{"spatial":{"bbox":[[-180.0,-90.0,180.0,90.0]]},"temporal":{"interval":[["2015-06-27T10:25:31.456000Z",null]]}},"keywords":["sentinel","copernicus","esa","satellite","global","reflectance"],"providers":[{"name":"ESA","roles":["producer","licensor"],"url":"https://sentinel.esa.int/web/sentinel/missions/sentinel-2"},{"name":"Esri","roles":["processor"],"url":"https://www.esri.com/"},{"name":"Microsoft","roles":["host","processor"],"url":"https://planetarycomputer.microsoft.com"}],"summaries":{"gsd":[10,20,60],"eo:bands":[{"name":"AOT","description":"aerosol optical thickness"},{"gsd":60,"name":"B01","common_name":"coastal","description":"coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027},{"gsd":10,"name":"B02","common_name":"blue","description":"visible blue","center_wavelength":0.49,"full_width_half_max":0.098},{"gsd":10,"name":"B03","common_name":"green","description":"visible green","center_wavelength":0.56,"full_width_half_max":0.045},{"gsd":10,"name":"B04","common_name":"red","description":"visible red","center_wavelength":0.665,"full_width_half_max":0.038},{"gsd":20,"name":"B05","common_name":"rededge","description":"vegetation classification red edge","center_wavelength":0.704,"full_width_half_max":0.019},{"gsd":20,"name":"B06","common_name":"rededge","description":"vegetation classification red edge","center_wavelength":0.74,"full_width_half_max":0.018},{"gsd":20,"name":"B07","common_name":"rededge","description":"vegetation classification red edge","center_wavelength":0.783,"full_width_half_max":0.028},{"gsd":10,"name":"B08","common_name":"nir","description":"near infrared","center_wavelength":0.842,"full_width_half_max":0.145},{"gsd":20,"name":"B8A","common_name":"rededge","description":"vegetation classification red edge","center_wavelength":0.865,"full_width_half_max":0.033},{"gsd":60,"name":"B09","description":"water vapor","center_wavelength":0.945,"full_width_half_max":0.026},{"gsd":20,"name":"B11","common_name":"swir16","description":"short-wave infrared, snow/ice/cloud classification","center_wavelength":1.61,"full_width_half_max":0.143},{"gsd":20,"name":"B12","common_name":"swir22","description":"short-wave infrared, snow/ice/cloud classification","center_wavelength":2.19,"full_width_half_max":0.242}],"platform":["Sentinel-2A","Sentinel-2B"],"instruments":["msi"],"constellation":["sentinel-2"],"view:off_nadir":[0]},"item_assets":{"B01":{"title":"Band 1 - Coastal aerosol","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B01","common_name":"coastal","center_wavelength":0.443,"full_width_half_max":0.027,"description":"Band 1 - Coastal aerosol"}]},"B02":{"title":"Band 2 - Blue","gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B02","common_name":"blue","center_wavelength":0.49,"full_width_half_max":0.098,"description":"Band 2 - Blue"}]},"B03":{"title":"Band 3 - Green","gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045,"description":"Band 3 - Green"}]},"B04":{"title":"Band 4 - Red","gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.665,"full_width_half_max":0.038,"description":"Band 4 - Red"}]},"B05":{"title":"Band 5 - Vegetation red edge 1","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B05","common_name":"rededge","center_wavelength":0.704,"full_width_half_max":0.019,"description":"Band 5 - Vegetation red edge 1"}]},"B06":{"title":"Band 6 - Vegetation red edge 2","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B06","common_name":"rededge","center_wavelength":0.74,"full_width_half_max":0.018,"description":"Band 6 - Vegetation red edge 2"}]},"B07":{"title":"Band 7 - Vegetation red edge 3","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B07","common_name":"rededge","center_wavelength":0.783,"full_width_half_max":0.028,"description":"Band 7 - Vegetation red edge 3"}]},"B08":{"title":"Band 8 - NIR","gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B08","common_name":"nir","center_wavelength":0.842,"full_width_half_max":0.145,"description":"Band 8 - NIR"}]},"B09":{"title":"Band 9 - Water vapor","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B09","center_wavelength":0.945,"full_width_half_max":0.026,"description":"Band 9 - Water vapor"}]},"B11":{"title":"Band 11 - SWIR (1.6)","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B11","common_name":"swir16","center_wavelength":1.61,"full_width_half_max":0.143,"description":"Band 11 - SWIR (1.6)"}]},"B12":{"title":"Band 12 - SWIR (2.2)","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B12","common_name":"swir22","center_wavelength":2.19,"full_width_half_max":0.242,"description":"Band 12 - SWIR (2.2)"}]},"B8A":{"title":"Band 8A - Vegetation red edge 4","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B8A","common_name":"rededge","center_wavelength":0.865,"full_width_half_max":0.033,"description":"Band 8A - Vegetation red edge 4"}]},"AOT-10m":{"title":"Aerosol optical thickness (AOT)","gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"]},"AOT-20m":{"title":"Aerosol optical thickness (AOT)","gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"]},"AOT-60m":{"title":"Aerosol optical thickness (AOT)","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"]},"SCL-20m":{"title":"Scene classfication map (SCL)","gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"]},"SCL-60m":{"title":"Scene classfication map (SCL)","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"]},"WVP-10m":{"title":"Water vapour (WVP)","gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"]},"WVP-20m":{"title":"Water vapour (WVP)","gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"]},"WVP-60m":{"title":"Water vapour (WVP)","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"]},"preview":{"title":"Thumbnail","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"]},"visual-10m":{"title":"True color image","gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.665,"full_width_half_max":0.038,"description":"Band 4 - Red"},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045,"description":"Band 3 - Green"},{"name":"B02","common_name":"blue","center_wavelength":0.49,"full_width_half_max":0.098,"description":"Band 2 - Blue"}]},"visual-20m":{"title":"True color image","gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.665,"full_width_half_max":0.038,"description":"Band 4 - Red"},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045,"description":"Band 3 - Green"},{"name":"B02","common_name":"blue","center_wavelength":0.49,"full_width_half_max":0.098,"description":"Band 2 - Blue"}]},"visual-60m":{"title":"True color image","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.665,"full_width_half_max":0.038,"description":"Band 4 - Red"},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045,"description":"Band 3 - Green"},{"name":"B02","common_name":"blue","center_wavelength":0.49,"full_width_half_max":0.098,"description":"Band 2 - Blue"}]},"safe-manifest":{"title":"SAFE manifest","type":"application/xml","roles":["metadata"]},"granule-metadata":{"title":"Granule metadata","type":"application/xml","roles":["metadata"]},"inspire-metadata":{"title":"INSPIRE metadata","type":"application/xml","roles":["metadata"]},"product-metadata":{"title":"Product metadata","type":"application/xml","roles":["metadata"]},"datastrip-metadata":{"title":"Datastrip metadata","type":"application/xml","roles":["metadata"]}},"assets":{"thumbnail":{"title":"Sentinel 2 L2A","href":"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-2.png","media_type":"image/png"}},"msft:storage_account":"sentinel2l2a01","msft:container":"sentinel2-l2","msft:short_description":"The Sentinel-2 program provides global imagery in thirteen spectral bands at 10m-60m resolution and a revisit time of approximately five days. This dataset contains the global Sentinel-2 archive, from 2016 to the present, processed to L2A (bottom-of-atmosphere)."}' headers: Connection: - close Content-Length: - '10812' Content-Type: - application/json Date: - Wed, 16 Jun 2021 03:09:46 GMT Strict-Transport-Security: - max-age=15724800; includeSubDomains X-Azure-Ref: - 0e2vJYAAAAABn/G/C44HXTafejohein3tQk9TMzFFREdFMDQxNQA5MjdhYmZhNi0xOWY2LTRhZjEtYTA5ZC1jOTU5ZDlhMWU2NDQ= X-Cache: - CONFIG_NOCACHE status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.9 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip response: body: string: '{"id":"naip","description":"The [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/) (NAIP) provides US-wide, high-resolution aerial imagery, with four spectral bands (R, G, B, IR). NAIP is administered by the [Aerial Field Photography Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/) (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA). Data are captured at least once every three years for each state. This dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\n","stac_version":"1.0.0-beta.2","links":[{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip","rel":"self","type":"application/json"},{"href":"https://planetarycomputer.microsoft.com/","rel":"parent","type":"application/json"},{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items","rel":"item","type":"application/geo+json"},{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/","rel":"root","type":"application/json"},{"href":"https://www.fsa.usda.gov/help/policies-and-links/","rel":"license","title":"public domain"}],"stac_extensions":["item-assets","collection-assets"],"title":"NAIP: National Agriculture Imagery Program","license":"proprietary","extent":{"spatial":{"bbox":[[-124.784,24.744,-66.951,49.346]]},"temporal":{"interval":[["2010-01-01T00:00:00Z","2019-12-31T00:00:00Z"]]}},"keywords":["naip","aerial","imagery","usda","afpo","agriculture","united states"],"providers":[{"name":"USDA Farm Service Agency","roles":["producer","licensor"],"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/"},{"name":"Esri","roles":["processor"],"url":"https://www.esri.com/"},{"name":"Microsoft","roles":["host","processor"],"url":"https://planetarycomputer.microsoft.com"}],"summaries":{"gsd":[0.6,1.0],"eo:bands":[{"name":"Red","common_name":"red","description":"visible red"},{"name":"Green","common_name":"green","description":"visible green"},{"name":"Blue","common_name":"blue","description":"visible blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"msft:container":"naip","msft:storage_account":"naipeuwest","item_assets":{"image":{"title":"RGBIR COG tile","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"title":"FGDC Metdata","type":"text/plain","roles":["metadata"]},"thumbnail":{"title":"Thumbnail","type":"image/jpeg","roles":["thumbnail"]}},"msft:short_description":"NAIP provides US-wide, high-resolution aerial imagery. This dataset includes NAIP images from 2010 to the present.","assets":{"thumbnail":{"title":"Landsat 8 C2","href":"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/naip.png","media_type":"image/png"}}}' headers: Connection: - close Content-Length: - '3105' Content-Type: - application/json Date: - Wed, 16 Jun 2021 03:09:47 GMT Strict-Transport-Security: - max-age=15724800; includeSubDomains X-Azure-Ref: - 0e2vJYAAAAABS7NUUb5PNRbZ+ctssOGJiQk9TMzFFREdFMDQxMgA5MjdhYmZhNi0xOWY2LTRhZjEtYTA5ZC1jOTU5ZDlhMWU2NDQ= X-Cache: - CONFIG_NOCACHE status: code: 200 message: OK version: 1 TestItemSearchParams.test_mixed_collection_object_and_string.yaml000066400000000000000000001074271503646565400377640ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_item_searchinteractions: - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.9 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t response: body: string: '{"id":"aster-l1t","description":"The [ASTER](https://terra.nasa.gov/about/terra-instruments/aster) instrument, launched on-board NASA''s [Terra](https://terra.nasa.gov/) satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. ASTER images provide information about land surface temperature, color, elevation, and mineral composition.\n\nThis dataset represents ASTER [L1T](https://lpdaac.usgs.gov/products/ast_l1tv003/) data from 2000-2006. L1T images have been terrain-corrected and rotated to a north-up UTM projection. Images are in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\n","stac_version":"1.0.0-beta.2","links":[{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t","rel":"self","type":"application/json"},{"href":"https://planetarycomputer.microsoft.com/","rel":"parent","type":"application/json"},{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items","rel":"item","type":"application/geo+json"},{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/","rel":"root","type":"application/json"},{"href":"https://www.usgs.gov/core-science-systems/hdds/data-policy","rel":"license","title":"public domain"}],"stac_extensions":["item-assets","collection-assets"],"title":"ASTER L1T","license":"proprietary","extent":{"spatial":{"bbox":[[-180.0,-90.0,180.0,90.0]]},"temporal":{"interval":[["2000-03-04T12:00:00.000000Z","2006-12-31T12:00:00.000000Z"]]}},"keywords":["aster","usgs","nasa","satellite","global"],"providers":[{"name":"NASA","roles":["producer","licensor"],"url":"https://terra.nasa.gov/about/terra-instruments/aster"},{"name":"USGS","roles":["processor","producer","licensor"],"url":"https://lpdaac.usgs.gov/data/get-started-data/collection-overview/missions/aster-overview/"},{"name":"Microsoft","roles":["host","processor"],"url":"https://planetarycomputer.microsoft.com"}],"summaries":{"gsd":[15,30,90],"eo:bands":[{"gsd":15,"name":"VNIR_Band1","common_name":"yellow/green","description":"visible yellow/green","center_wavelength":0.56,"full_width_half_max":0.08},{"gsd":15,"name":"VNIR_Band2","common_name":"red","description":"visible red","center_wavelength":0.66,"full_width_half_max":0.06},{"gsd":15,"name":"VNIR_Band3N","common_name":"near infrared","description":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08},{"gsd":30,"name":"SWIR_Band4","common_name":"swir","description":"short-wave infrared","center_wavelength":1.65,"full_width_half_max":0.1},{"gsd":30,"name":"SWIR_Band5","common_name":"swir","description":"short-wave infrared","center_wavelength":2.165,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band6","common_name":"swir","description":"short-wave infrared","center_wavelength":2.205,"full_width_half_max":0.04},{"gsd":30,"name":"SWIR_Band7","common_name":"swir","description":"short-wave infrared","center_wavelength":2.26,"full_width_half_max":0.05},{"gsd":30,"name":"SWIR_Band8","common_name":"swir","description":"short-wave infrared","center_wavelength":2.339,"full_width_half_max":0.07},{"gsd":30,"name":"SWIR_Band9","common_name":"swir","description":"short-wave infrared","center_wavelength":2.395,"full_width_half_max":0.07},{"gsd":90,"name":"TIR_Band10","common_name":"lwir","description":"thermal infrared","center_wavelength":8.3,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band11","common_name":"lwir","description":"thermal infrared","center_wavelength":8.65,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band12","common_name":"lwir","description":"thermal infrared","center_wavelength":9.11,"full_width_half_max":0.35},{"gsd":90,"name":"TIR_Band13","common_name":"lwir","description":"thermal infrared","center_wavelength":10.6,"full_width_half_max":0.7},{"gsd":90,"name":"TIR_Band14","common_name":"lwir","description":"thermal infrared","center_wavelength":11.3,"full_width_half_max":0.7}],"platform":["terra"],"instruments":["aster"]},"assets":{"thumbnail":{"title":"ASTER L1T","href":"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/aster.png","media_type":"image/png"}},"msft:short_description":"The ASTER instrument, launched on-board NASA''s Terra satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. This dataset contains ASTER data from 2000-2006.","msft:container":"aster","item_assets":{"TIR":{"title":"TIR Swath data","roles":["data"],"eo:bands":[{"name":"TIR_Band10","common_name":"lwir","center_wavelength":8.3,"full_width_half_max":0.35,"description":"thermal infrared"},{"name":"TIR_Band11","common_name":"lwir","center_wavelength":8.65,"full_width_half_max":0.35,"description":"thermal infrared"},{"name":"TIR_Band12","common_name":"lwir","center_wavelength":9.11,"full_width_half_max":0.35,"description":"thermal infrared"},{"name":"TIR_Band13","common_name":"lwir","center_wavelength":10.6,"full_width_half_max":0.7,"description":"thermal infrared"},{"name":"TIR_Band14","common_name":"lwir","center_wavelength":11.3,"full_width_half_max":0.7,"description":"thermal infrared"}]},"xml":{"title":"XML metadata","type":"application/xml","roles":["metadata"]},"SWIR":{"title":"SWIR Swath data","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"SWIR_Band4","common_name":"swir","center_wavelength":1.65,"full_width_half_max":0.1,"description":"short-wave infrared"},{"name":"SWIR_Band5","common_name":"swir","center_wavelength":2.165,"full_width_half_max":0.04,"description":"short-wave infrared"},{"name":"SWIR_Band6","common_name":"swir","center_wavelength":2.205,"full_width_half_max":0.04,"description":"short-wave infrared"},{"name":"SWIR_Band7","common_name":"swir","center_wavelength":2.26,"full_width_half_max":0.05,"description":"short-wave infrared"},{"name":"SWIR_Band8","common_name":"swir","center_wavelength":2.339,"full_width_half_max":0.07,"description":"short-wave infrared"},{"name":"SWIR_Band9","common_name":"swir","center_wavelength":2.395,"full_width_half_max":0.07,"description":"short-wave infrared"}]},"VNIR":{"title":"VNIR Swath data","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"VNIR_Band1","common_name":"yellow/green","center_wavelength":0.56,"full_width_half_max":0.08,"description":"visible yellow/green"},{"name":"VNIR_Band2","common_name":"red","center_wavelength":0.66,"full_width_half_max":0.06,"description":"visible red"},{"name":"VNIR_Band3N","common_name":"near infrared","center_wavelength":0.82,"full_width_half_max":0.08,"description":"near infrared"}]},"qa-txt":{"title":"QA browse file","description":"Geometric quality assessment report.","type":"text/plain","roles":["metadata"]},"qa-browse":{"title":"QA browse file","description":"Single-band black and white reduced resolution browse overlaid with red, green, and blue (RGB) markers for GCPs used during the geometric verification quality check.","type":"image/jpeg","roles":["thumbnail"]},"tir-browse":{"title":"Standalone reduced resolution TIR","type":"image/jpeg","roles":["thumbnail"]},"vnir-browse":{"title":"VNIR browse file","description":"Standalone reduced resolution VNIR","type":"image/jpeg","roles":["thumbnail"]}},"msft:storage_account":"astersa"}' headers: Connection: - close Content-Length: - '7259' Content-Type: - application/json Date: - Wed, 16 Jun 2021 03:09:46 GMT Strict-Transport-Security: - max-age=15724800; includeSubDomains X-Azure-Ref: - 0e2vJYAAAAADongkH9PiFQar9CyEy/1IAQk9TMzFFREdFMDQwNwA5MjdhYmZhNi0xOWY2LTRhZjEtYTA5ZC1jOTU5ZDlhMWU2NDQ= X-Cache: - CONFIG_NOCACHE status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.9 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2 response: body: string: '{"id":"landsat-8-c2-l2","description":"The [Landsat](https://landsat.gsfc.nasa.gov/) program has been imaging the Earth since 1972; it provides a comprehensive, continuous archive of the Earth''s surface. [Landsat 8](https://www.usgs.gov/core-science-systems/nli/landsat/landsat-8) is the most recent satellite in the Landsat series. Launched in 2013, Landsat 8 captures data in eleven spectral bands: ten optical/IR bands from the [Operational Land Imager](https://landsat.gsfc.nasa.gov/landsat-8/operational-land-imager) (OLI) instrument, and two thermal bands from the [Thermal Infrared Sensor](https://landsat.gsfc.nasa.gov/landsat-8/thermal-infrared-sensor-tirs) (TIRS) instrument.\n\nThis dataset represents the global archive of Level-2 Landsat 8 data from [Landsat Collection 2](https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-2). Because there is some latency before Level-2 data is available, a rolling window of recent Level-1 data is available as well. Images are stored in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\n","stac_version":"1.0.0-beta.2","links":[{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2","rel":"self","type":"application/json"},{"href":"https://planetarycomputer.microsoft.com/","rel":"parent","type":"application/json"},{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2/items","rel":"item","type":"application/geo+json"},{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/","rel":"root","type":"application/json"},{"href":"https://www.usgs.gov/core-science-systems/hdds/data-policy","rel":"license","title":"public domain"}],"stac_extensions":["item-assets","collection-assets"],"title":"Landsat 8 Collection 2 Level-2","license":"proprietary","extent":{"spatial":{"bbox":[[-180.0,-90.0,180.0,90.0]]},"temporal":{"interval":[["2013-04-11T00:00:00Z",null]]}},"keywords":["landsat","usgs","nasa","satellite","global","reflectance"],"providers":[{"name":"NASA","roles":["producer","licensor"],"url":"https://landsat.gsfc.nasa.gov/"},{"name":"USGS","roles":["producer","processor","licensor"],"url":"https://www.usgs.gov/core-science-systems/nli/landsat/landsat-collection-2-level-2-science-products"},{"name":"Microsoft","roles":["host"],"url":"https://planetarycomputer.microsoft.com"}],"summaries":{"gsd":[15,30,100],"eo:bands":[{"gsd":30,"name":"SR_B1","common_name":"coastal","description":"coastal","center_wavelength":0.44,"full_width_half_max":0.02},{"gsd":30,"name":"SR_B2","common_name":"blue","description":"visible blue","center_wavelength":0.48,"full_width_half_max":0.06},{"gsd":30,"name":"SR_B3","common_name":"green","description":"visible green","center_wavelength":0.56,"full_width_half_max":0.06},{"gsd":30,"name":"SR_B4","common_name":"red","description":"visible red","center_wavelength":0.65,"full_width_half_max":0.04},{"gsd":30,"name":"SR_B5","common_name":"nir","description":"near-infrared","center_wavelength":0.86,"full_width_half_max":0.03},{"gsd":30,"name":"SR_B6","common_name":"swir16","description":"short-wave infrared","center_wavelength":1.6,"full_width_half_max":0.08},{"gsd":30,"name":"SR_B7","common_name":"swir22","description":"short-wave infrared","center_wavelength":2.2,"full_width_half_max":0.2},{"gsd":100,"name":"ST_B10","common_name":"lwir11","description":"long-wave infrared","center_wavelength":10.9,"full_width_half_max":0.8},{"gsd":30,"name":"ST_TRAD","description":"thermal radiance"},{"gsd":30,"name":"ST_URAD","description":"upwelled radiance"},{"gsd":30,"name":"ST_ATRAN","description":"atmospheric transmission"},{"gsd":30,"name":"ST_CDIST","description":"distance to nearest cloud"},{"gsd":30,"name":"ST_DRAD","description":"downwelled radiance"},{"gsd":30,"name":"ST_EMIS","description":"emissivity"},{"gsd":30,"name":"ST_EMSD","description":"emissivity standard deviation"}],"platform":["landsat-8"],"instruments":["oli","tirs"]},"msft:short_description":"Landsat 8 has captured 30m-resolution imagery of the Earth since 2013. This dataset contains global, atmospherically-corrected imagery from Landsat Collection 2","msft:container":"landsat-c2","msft:storage_account":"landsateuwest","assets":{"thumbnail":{"title":"Landsat 8 C2","href":"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/landsat.png","media_type":"image/png"}},"item_assets":{"ANG":{"title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File (ANG)","type":"text/plain"},"SR_B1":{"title":"Coastal/Aerosol Band (B1)","description":"Collection 2 Level-2 Coastal/Aerosol Band (B1) Surface Reflectance","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"SR_B1","common_name":"coastal","center_wavelength":0.44,"full_width_half_max":0.02}]},"SR_B2":{"title":"Blue Band (B2)","description":"Collection 2 Level-2 Blue Band (B2) Surface Reflectance","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"SR_B2","common_name":"blue","center_wavelength":0.48,"full_width_half_max":0.06}]},"SR_B3":{"title":"Green Band (B3)","description":"Collection 2 Level-2 Green Band (B3) Surface Reflectance","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"SR_B3","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.06}]},"SR_B4":{"title":"Red Band (B4)","description":"Collection 2 Level-2 Red Band (B4) Surface Reflectance","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"SR_B4","common_name":"red","center_wavelength":0.65,"full_width_half_max":0.04}]},"SR_B5":{"title":"Near Infrared Band 0.8 (B5)","description":"Collection 2 Level-2 Near Infrared Band 0.8 (B5) Surface Reflectance","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"SR_B5","common_name":"nir08","center_wavelength":0.86,"full_width_half_max":0.03}]},"SR_B6":{"title":"Short-wave Infrared Band 1.6 (B6)","description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (B6) Surface Reflectance","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"SR_B6","common_name":"swir16","center_wavelength":1.6,"full_width_half_max":0.08}]},"SR_B7":{"title":"Short-wave Infrared Band 2.2 (B7)","description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (B7) Surface Reflectance","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"SR_B7","common_name":"swir22","center_wavelength":2.2,"full_width_half_max":0.2}]},"SR_B8":{"title":"Aerosol Quality Analysis Band","description":"Collection 2 Level-2 Aerosol Quality Analysis Band (ANG) Surface Reflectance","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized"},"ST_QA":{"title":"Surface Temperature Quality Assessment Band","description":"Landsat Collection 2 Level-2 Surface Temperature Band Surface Temperature Product","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized"},"ST_B10":{"title":"Surface Temperature Band (B10)","description":"Landsat Collection 2 Level-2 Surface Temperature Band (B10) Surface Temperature Product","gsd":100.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"ST_B10","common_name":"lwir11","center_wavelength":10.9,"full_width_half_max":0.8}]},"MTL.txt":{"title":"Product Metadata File","description":"Collection 2 Level-1 Product Metadata File (MTL)","type":"text/plain"},"MTL.xml":{"title":"Product Metadata File (xml)","description":"Collection 2 Level-1 Product Metadata File (xml)","type":"application/xml"},"ST_DRAD":{"title":"Downwelled Radiance Band","description":"Landsat Collection 2 Level-2 Downwelled Radiance Band Surface Temperature Product","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"ST_DRAD","description":"downwelled radiance"}]},"ST_EMIS":{"title":"Emissivity Band","description":"Landsat Collection 2 Level-2 Emissivity Band Surface Temperature Product","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"ST_EMIS","description":"emissivity"}]},"ST_EMSD":{"title":"Emissivity Standard Deviation Band","description":"Landsat Collection 2 Level-2 Emissivity Standard Deviation Band Surface Temperature Product","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"ST_EMSD","description":"emissivity standard deviation"}]},"ST_TRAD":{"title":"Thermal Radiance Band","description":"Landsat Collection 2 Level-2 Thermal Radiance Band Surface Temperature Product","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"ST_TRAD","description":"thermal radiance"}]},"ST_URAD":{"title":"Upwelled Radiance Band","description":"Landsat Collection 2 Level-2 Upwelled Radiance Band Surface Temperature Product","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"ST_URAD","description":"upwelled radiance"}]},"MTL.json":{"title":"Product Metadata File (json)","description":"Collection 2 Level-1 Product Metadata File (json)","type":"application/json"},"QA_PIXEL":{"title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized"},"ST_ATRAN":{"title":"Atmospheric Transmittance Band","description":"Landsat Collection 2 Level-2 Atmospheric Transmittance Band Surface Temperature Product","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"ST_ATRAN","description":"atmospheric transmission"}]},"ST_CDIST":{"title":"Cloud Distance Band","description":"Landsat Collection 2 Level-2 Cloud Distance Band Surface Temperature Product","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","eo:bands":[{"name":"ST_CDIST","description":"distance to nearest cloud"}]},"QA_RADSAT":{"title":"Radiometric Saturation Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation Quality Assessment Band","gsd":30.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized"},"thumbnail":{"title":"Thumbnail image","type":"image/jpeg"},"reduced_resolution_browse":{"title":"Reduced resolution browse image","type":"image/jpeg"}}}' headers: Connection: - close Content-Length: - '10491' Content-Type: - application/json Date: - Wed, 16 Jun 2021 03:09:47 GMT Strict-Transport-Security: - max-age=15724800; includeSubDomains X-Azure-Ref: - 0e2vJYAAAAADJA9K9ZpeWTKw9yflAjS9eQk9TMzFFREdFMDQxMAA5MjdhYmZhNi0xOWY2LTRhZjEtYTA5ZC1jOTU5ZDlhMWU2NDQ= X-Cache: - CONFIG_NOCACHE status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.9 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a response: body: string: '{"id":"sentinel-2-l2a","description":"The [Sentinel-2](https://sentinel.esa.int/web/sentinel/missions/sentinel-2) program provides global imagery in thirteen spectral bands at 10m-60m resolution and a revisit time of approximately five days. This dataset represents the global Sentinel-2 archive, from 2016 to the present, processed to L2A (bottom-of-atmosphere) using [Sen2Cor](https://step.esa.int/main/snap-supported-plugins/sen2cor/) and converted to [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.","stac_version":"1.0.0-beta.2","links":[{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a","rel":"self","type":"application/json"},{"href":"https://planetarycomputer.microsoft.com/","rel":"parent","type":"application/json"},{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a/items","rel":"item","type":"application/geo+json"},{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/","rel":"root","type":"application/json"},{"href":"https://scihub.copernicus.eu/twiki/pub/SciHubWebPortal/TermsConditions/Sentinel_Data_Terms_and_Conditions.pdf","rel":"license","title":"Copernicus Sentinel data terms"}],"stac_extensions":["item-assets","collection-assets"],"title":"Sentinel-2 Level-2A","license":"proprietary","extent":{"spatial":{"bbox":[[-180.0,-90.0,180.0,90.0]]},"temporal":{"interval":[["2015-06-27T10:25:31.456000Z",null]]}},"keywords":["sentinel","copernicus","esa","satellite","global","reflectance"],"providers":[{"name":"ESA","roles":["producer","licensor"],"url":"https://sentinel.esa.int/web/sentinel/missions/sentinel-2"},{"name":"Esri","roles":["processor"],"url":"https://www.esri.com/"},{"name":"Microsoft","roles":["host","processor"],"url":"https://planetarycomputer.microsoft.com"}],"summaries":{"gsd":[10,20,60],"eo:bands":[{"name":"AOT","description":"aerosol optical thickness"},{"gsd":60,"name":"B01","common_name":"coastal","description":"coastal aerosol","center_wavelength":0.443,"full_width_half_max":0.027},{"gsd":10,"name":"B02","common_name":"blue","description":"visible blue","center_wavelength":0.49,"full_width_half_max":0.098},{"gsd":10,"name":"B03","common_name":"green","description":"visible green","center_wavelength":0.56,"full_width_half_max":0.045},{"gsd":10,"name":"B04","common_name":"red","description":"visible red","center_wavelength":0.665,"full_width_half_max":0.038},{"gsd":20,"name":"B05","common_name":"rededge","description":"vegetation classification red edge","center_wavelength":0.704,"full_width_half_max":0.019},{"gsd":20,"name":"B06","common_name":"rededge","description":"vegetation classification red edge","center_wavelength":0.74,"full_width_half_max":0.018},{"gsd":20,"name":"B07","common_name":"rededge","description":"vegetation classification red edge","center_wavelength":0.783,"full_width_half_max":0.028},{"gsd":10,"name":"B08","common_name":"nir","description":"near infrared","center_wavelength":0.842,"full_width_half_max":0.145},{"gsd":20,"name":"B8A","common_name":"rededge","description":"vegetation classification red edge","center_wavelength":0.865,"full_width_half_max":0.033},{"gsd":60,"name":"B09","description":"water vapor","center_wavelength":0.945,"full_width_half_max":0.026},{"gsd":20,"name":"B11","common_name":"swir16","description":"short-wave infrared, snow/ice/cloud classification","center_wavelength":1.61,"full_width_half_max":0.143},{"gsd":20,"name":"B12","common_name":"swir22","description":"short-wave infrared, snow/ice/cloud classification","center_wavelength":2.19,"full_width_half_max":0.242}],"platform":["Sentinel-2A","Sentinel-2B"],"instruments":["msi"],"constellation":["sentinel-2"],"view:off_nadir":[0]},"assets":{"thumbnail":{"title":"Sentinel 2 L2A","href":"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/sentinel-2.png","media_type":"image/png"}},"item_assets":{"B01":{"title":"Band 1 - Coastal aerosol","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B01","common_name":"coastal","center_wavelength":0.443,"full_width_half_max":0.027,"description":"Band 1 - Coastal aerosol"}]},"B02":{"title":"Band 2 - Blue","gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B02","common_name":"blue","center_wavelength":0.49,"full_width_half_max":0.098,"description":"Band 2 - Blue"}]},"B03":{"title":"Band 3 - Green","gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045,"description":"Band 3 - Green"}]},"B04":{"title":"Band 4 - Red","gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.665,"full_width_half_max":0.038,"description":"Band 4 - Red"}]},"B05":{"title":"Band 5 - Vegetation red edge 1","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B05","common_name":"rededge","center_wavelength":0.704,"full_width_half_max":0.019,"description":"Band 5 - Vegetation red edge 1"}]},"B06":{"title":"Band 6 - Vegetation red edge 2","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B06","common_name":"rededge","center_wavelength":0.74,"full_width_half_max":0.018,"description":"Band 6 - Vegetation red edge 2"}]},"B07":{"title":"Band 7 - Vegetation red edge 3","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B07","common_name":"rededge","center_wavelength":0.783,"full_width_half_max":0.028,"description":"Band 7 - Vegetation red edge 3"}]},"B08":{"title":"Band 8 - NIR","gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B08","common_name":"nir","center_wavelength":0.842,"full_width_half_max":0.145,"description":"Band 8 - NIR"}]},"B09":{"title":"Band 9 - Water vapor","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B09","center_wavelength":0.945,"full_width_half_max":0.026,"description":"Band 9 - Water vapor"}]},"B11":{"title":"Band 11 - SWIR (1.6)","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B11","common_name":"swir16","center_wavelength":1.61,"full_width_half_max":0.143,"description":"Band 11 - SWIR (1.6)"}]},"B12":{"title":"Band 12 - SWIR (2.2)","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B12","common_name":"swir22","center_wavelength":2.19,"full_width_half_max":0.242,"description":"Band 12 - SWIR (2.2)"}]},"B8A":{"title":"Band 8A - Vegetation red edge 4","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B8A","common_name":"rededge","center_wavelength":0.865,"full_width_half_max":0.033,"description":"Band 8A - Vegetation red edge 4"}]},"AOT-10m":{"title":"Aerosol optical thickness (AOT)","gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"]},"AOT-20m":{"title":"Aerosol optical thickness (AOT)","gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"]},"AOT-60m":{"title":"Aerosol optical thickness (AOT)","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"]},"SCL-20m":{"title":"Scene classfication map (SCL)","gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"]},"SCL-60m":{"title":"Scene classfication map (SCL)","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"]},"WVP-10m":{"title":"Water vapour (WVP)","gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"]},"WVP-20m":{"title":"Water vapour (WVP)","gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"]},"WVP-60m":{"title":"Water vapour (WVP)","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"]},"preview":{"title":"Thumbnail","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["thumbnail"]},"visual-10m":{"title":"True color image","gsd":10.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.665,"full_width_half_max":0.038,"description":"Band 4 - Red"},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045,"description":"Band 3 - Green"},{"name":"B02","common_name":"blue","center_wavelength":0.49,"full_width_half_max":0.098,"description":"Band 2 - Blue"}]},"visual-20m":{"title":"True color image","gsd":20.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.665,"full_width_half_max":0.038,"description":"Band 4 - Red"},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045,"description":"Band 3 - Green"},{"name":"B02","common_name":"blue","center_wavelength":0.49,"full_width_half_max":0.098,"description":"Band 2 - Blue"}]},"visual-60m":{"title":"True color image","gsd":60.0,"type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"B04","common_name":"red","center_wavelength":0.665,"full_width_half_max":0.038,"description":"Band 4 - Red"},{"name":"B03","common_name":"green","center_wavelength":0.56,"full_width_half_max":0.045,"description":"Band 3 - Green"},{"name":"B02","common_name":"blue","center_wavelength":0.49,"full_width_half_max":0.098,"description":"Band 2 - Blue"}]},"safe-manifest":{"title":"SAFE manifest","type":"application/xml","roles":["metadata"]},"granule-metadata":{"title":"Granule metadata","type":"application/xml","roles":["metadata"]},"inspire-metadata":{"title":"INSPIRE metadata","type":"application/xml","roles":["metadata"]},"product-metadata":{"title":"Product metadata","type":"application/xml","roles":["metadata"]},"datastrip-metadata":{"title":"Datastrip metadata","type":"application/xml","roles":["metadata"]}},"msft:container":"sentinel2-l2","msft:storage_account":"sentinel2l2a01","msft:short_description":"The Sentinel-2 program provides global imagery in thirteen spectral bands at 10m-60m resolution and a revisit time of approximately five days. This dataset contains the global Sentinel-2 archive, from 2016 to the present, processed to L2A (bottom-of-atmosphere)."}' headers: Connection: - close Content-Length: - '10812' Content-Type: - application/json Date: - Wed, 16 Jun 2021 03:09:47 GMT Strict-Transport-Security: - max-age=15724800; includeSubDomains X-Azure-Ref: - 0fGvJYAAAAABUQR5QwJZ8R6DvJ8D5vW7wQk9TMzFFREdFMDQxMwA5MjdhYmZhNi0xOWY2LTRhZjEtYTA5ZC1jOTU5ZDlhMWU2NDQ= X-Cache: - CONFIG_NOCACHE status: code: 200 message: OK - request: body: null headers: Connection: - close Host: - planetarycomputer.microsoft.com User-Agent: - Python-urllib/3.9 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip response: body: string: '{"id":"naip","description":"The [National Agriculture Imagery Program](https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/) (NAIP) provides US-wide, high-resolution aerial imagery, with four spectral bands (R, G, B, IR). NAIP is administered by the [Aerial Field Photography Office](https://www.fsa.usda.gov/programs-and-services/aerial-photography/) (AFPO) within the [US Department of Agriculture](https://www.usda.gov/) (USDA). Data are captured at least once every three years for each state. This dataset represents NAIP data from 2010-present, in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\n","stac_version":"1.0.0-beta.2","links":[{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip","rel":"self","type":"application/json"},{"href":"https://planetarycomputer.microsoft.com/","rel":"parent","type":"application/json"},{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items","rel":"item","type":"application/geo+json"},{"href":"https://planetarycomputer.microsoft.com/api/stac/v1/","rel":"root","type":"application/json"},{"href":"https://www.fsa.usda.gov/help/policies-and-links/","rel":"license","title":"public domain"}],"stac_extensions":["item-assets","collection-assets"],"title":"NAIP: National Agriculture Imagery Program","license":"proprietary","extent":{"spatial":{"bbox":[[-124.784,24.744,-66.951,49.346]]},"temporal":{"interval":[["2010-01-01T00:00:00Z","2019-12-31T00:00:00Z"]]}},"keywords":["naip","aerial","imagery","usda","afpo","agriculture","united states"],"providers":[{"name":"USDA Farm Service Agency","roles":["producer","licensor"],"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/"},{"name":"Esri","roles":["processor"],"url":"https://www.esri.com/"},{"name":"Microsoft","roles":["host","processor"],"url":"https://planetarycomputer.microsoft.com"}],"summaries":{"gsd":[0.6,1.0],"eo:bands":[{"name":"Red","common_name":"red","description":"visible red"},{"name":"Green","common_name":"green","description":"visible green"},{"name":"Blue","common_name":"blue","description":"visible blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"item_assets":{"image":{"title":"RGBIR COG tile","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"title":"FGDC Metdata","type":"text/plain","roles":["metadata"]},"thumbnail":{"title":"Thumbnail","type":"image/jpeg","roles":["thumbnail"]}},"assets":{"thumbnail":{"title":"Landsat 8 C2","href":"https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/naip.png","media_type":"image/png"}},"msft:storage_account":"naipeuwest","msft:container":"naip","msft:short_description":"NAIP provides US-wide, high-resolution aerial imagery. This dataset includes NAIP images from 2010 to the present."}' headers: Connection: - close Content-Length: - '3105' Content-Type: - application/json Date: - Wed, 16 Jun 2021 03:09:47 GMT Strict-Transport-Security: - max-age=15724800; includeSubDomains X-Azure-Ref: - 0fGvJYAAAAAD8Q2Yi8hFOQbFJ4QQzp0UHQk9TMzFFREdFMDQxMQA5MjdhYmZhNi0xOWY2LTRhZjEtYTA5ZC1jOTU5ZDlhMWU2NDQ= X-Cache: - CONFIG_NOCACHE status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_item_search/TestItemSearchQuery.test_query_json_syntax.yaml000066400000000000000000007446631503646565400344630ustar00rootroot00000000000000interactions: - request: body: '{"bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"], "query": {"gsd": {"gte": 0, "lte": 1}}}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '105' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307308_nw_18_030_20230622_20231113","bbox":[-73.130782,43.933691,-73.056636,44.003801],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056636,44.002599],[-73.128619,44.003801],[-73.130782,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[650027.7,4866339.600000001,655801.7999999999,4873997.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19247],"proj:centroid":{"lat":43.96875,"lon":-73.09373},"proj:transform":[0.3,0.0,650027.7,0.0,-0.3,4873997.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_030_20230622_20231113","bbox":[-73.255644,43.933764,-73.181774,44.003728],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181774,44.002607],[-73.253627,44.003728],[-73.255644,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[640005.9,4866119.4,645769.2000000001,4873769.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25500,19211],"proj:centroid":{"lat":43.96875,"lon":-73.21873},"proj:transform":[0.3,0.0,640005.9,0.0,-0.3,4873769.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_030_20230622_20231113","bbox":[-73.193213,43.933726,-73.119205,44.003763],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121377,43.933726],[-73.119205,44.002601],[-73.191123,44.003763],[-73.193213,43.934885],[-73.121377,43.933726]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[645016.8,4866227.399999999,650785.5,4873881.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19229],"proj:centroid":{"lat":43.96875,"lon":-73.15623},"proj:transform":[0.3,0.0,645016.8,0.0,-0.3,4873881.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_030_20230621_20231113","bbox":[-73.130789,43.99619,-73.056629,44.066299],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.99619],[-73.056629,44.065097],[-73.128621,44.066299],[-73.130789,43.997389],[-73.05888,43.99619]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[649869.9,4873281.3,655638.6,4880939.1],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19229],"proj:centroid":{"lat":44.03125,"lon":-73.09373},"proj:transform":[0.3,0.0,649869.9,0.0,-0.3,4880939.1,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_030_20230621_20231113","bbox":[-73.193221,43.996227,-73.119196,44.066264],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.996227],[-73.119196,44.065102],[-73.191127,44.066264],[-73.193221,43.997386],[-73.121374,43.996227]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[644864.1,4873169.399999999,650627.7,4880823.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19212],"proj:centroid":{"lat":44.03125,"lon":-73.15623},"proj:transform":[0.3,0.0,644864.1,0.0,-0.3,4880823.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_030_20230620_20231113","bbox":[-73.255654,43.996263,-73.181764,44.066229],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_030_20230620_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996263],[-73.181764,44.065107],[-73.253633,44.066229],[-73.255654,43.997382],[-73.183868,43.996263]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-20T16:00:00Z","naip:year":"2023","proj:bbox":[639858.3,4873061.100000001,645616.8,4880711.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25501,19195],"proj:centroid":{"lat":44.03125,"lon":-73.21873},"proj:transform":[0.3,0.0,639858.3,0.0,-0.3,4880711.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20211029","bbox":[-73.130807,43.996179,-73.056111,44.06681],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058379,43.996179],[-73.056111,44.065598],[-73.128623,44.06681],[-73.130807,43.997387],[-73.058379,43.996179]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[649868.4,4873281.0,655678.8,4880995.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12858,9684],"proj:transform":[0.6,0.0,649868.4,0.0,-0.6,4880995.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20211029","bbox":[-73.255666,43.996252,-73.181247,44.066737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183367,43.996252],[-73.181247,44.065607],[-73.25363,44.066737],[-73.255666,43.997379],[-73.183367,43.996252]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[639857.4,4873060.8,645657.0,4880767.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12845,9666],"proj:transform":[0.6,0.0,639857.4,0.0,-0.6,4880767.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20211029","bbox":[-73.192739,43.996233,-73.119177,44.066755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996233],[-73.119177,44.065601],[-73.190629,44.066755],[-73.192739,43.997384],[-73.12137,43.996233]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[644902.8,4873170.0,650628.0,4880878.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12848,9542],"proj:transform":[0.6,0.0,644902.8,0.0,-0.6,4880878.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20211029","bbox":[-73.255626,43.934253,-73.181287,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183372,43.934253],[-73.181287,44.002604],[-73.253623,44.003733],[-73.255626,43.935379],[-73.183372,43.934253]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[640006.2,4866174.6,645808.2,4873770.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12659,9670],"proj:transform":[0.6,0.0,640006.2,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20211029","bbox":[-73.192697,43.934234,-73.119216,44.003752],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121373,43.934234],[-73.119216,44.002598],[-73.190622,44.003752],[-73.192697,43.935384],[-73.121373,43.934234]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[645057.0,4866283.8,650784.6,4873881.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12662,9546],"proj:transform":[0.6,0.0,645057.0,0.0,-0.6,4873881.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20210920","bbox":[-73.130763,43.93418,-73.056149,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20210920"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20210920","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05838,43.93418],[-73.056149,44.002596],[-73.128615,44.003806],[-73.130763,43.935387],[-73.05838,43.93418]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-09-20T16:00:00Z","naip:year":"2021","proj:bbox":[650028.0,4866394.8,655840.8,4873998.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12672,9688],"proj:transform":[0.6,0.0,650028.0,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20181019_20190225","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407364_sw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.6,0.0,649869.0,0.0,-0.6,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20181019_20190225","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307308_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[650027.3999999999,4866339.6,655801.7999999999,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6,0.0,650027.3999999999,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20180923_20190225","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20180923_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_nw_18_060_20180923.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-23T00:00:00Z","naip:year":"2018","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.6,0.0,640005.0,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20180914_20190225","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6,0.0,639858.0,0.0,-0.6,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20180914_20190225","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_se_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6,0.0,644863.2,0.0,-0.6,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20180823_20190225","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20180823_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_ne_18_060_20180823.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-08-23T00:00:00Z","naip:year":"2018","proj:bbox":[645016.2,4866227.4,650785.7999999999,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6,0.0,645016.2,0.0,-0.6,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_h_20160805","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307308_nw_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[650027.4,4866339.6,655801.8,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6000000000000024,0.0,650027.4,0.0,-0.6000000000000292,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_h_20160805","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_ne_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6000000000000096,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[645016.2,4866227.4,650785.8,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6000000000000096,0.0,645016.2,0.0,-0.5999999999999854,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_h_20160804","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407364_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407364_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407364_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.5999999999999975,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.5999999999999975,0.0,649869.0,0.0,-0.6000000000000292,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_h_20160804","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407363_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6000000000000049,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6000000000000049,0.0,639858.0,0.0,-0.5999999999999708,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_h_20160804","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_se_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407363_se_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_se_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6000000000000049,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6000000000000049,0.0,644863.2,0.0,-0.5999999999999854,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_h_20160727","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_h_20160727"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_h_20160727","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_nw_18_h_20160727.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_nw_18_h_20160727.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_nw_18_h_20160727.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_h_20160727&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_h_20160727&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.5999999999999952,"datetime":"2016-07-27T00:00:00Z","naip:year":"2016","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.5999999999999952,0.0,640005.0,0.0,-0.5999999999999708,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_1_20140826_20141006","bbox":[-73.1308,43.996187,-73.056624,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_1_20140826_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_1_20140826_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407364_sw_18_1_20140826.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407364_sw_18_1_20140826.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407364_sw_18_1_20140826.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058875,43.996187],[-73.056624,44.065105],[-73.128632,44.066307],[-73.1308,43.997387],[-73.058875,43.996187]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-26T00:00:00Z","naip:year":"2014","proj:bbox":[649869.0,4873281.0,655639.0,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5770],"proj:transform":[1.0,0.0,649869.0,0.0,-1.0,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_1_20140826_20141006","bbox":[-73.130791,43.933686,-73.056633,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_1_20140826_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_1_20140826_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307308_nw_18_1_20140826.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/43073/m_4307308_nw_18_1_20140826.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307308_nw_18_1_20140826.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.933686],[-73.056633,44.002604],[-73.128628,44.003806],[-73.130791,43.934885],[-73.05888,43.933686]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-26T00:00:00Z","naip:year":"2014","proj:bbox":[650027.0,4866339.0,655802.0,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5775],"proj:transform":[1.0,0.0,650027.0,0.0,-1.0,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_1_20140809_20141006","bbox":[-73.255658,43.996262,-73.181761,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_sw_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407363_sw_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_sw_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183866,43.996262],[-73.181761,44.065113],[-73.253637,44.066234],[-73.255658,43.997381],[-73.183866,43.996262]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[639858.0,4873061.0,645617.0,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5759],"proj:transform":[1.0,0.0,639858.0,0.0,-1.0,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_1_20140809_20141006","bbox":[-73.193235,43.996224,-73.119192,44.06627],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_se_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407363_se_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_se_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996224],[-73.119192,44.065108],[-73.191141,44.06627],[-73.193235,43.997383],[-73.12137,43.996224]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[644863.0,4873169.0,650628.0,4880824.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5765],"proj:transform":[1.0,0.0,644863.0,0.0,-1.0,4880824.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_1_20140809_20141006","bbox":[-73.255655,43.933761,-73.181776,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307307_nw_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/43073/m_4307307_nw_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307307_nw_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183876,43.933761],[-73.181776,44.002612],[-73.253638,44.003733],[-73.255655,43.934879],[-73.183876,43.933761]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[640005.0,4866119.0,645769.0,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5764],"proj:transform":[1.0,0.0,640005.0,0.0,-1.0,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_1_20140809_20141006","bbox":[-73.193223,43.933722,-73.119198,44.003769],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307307_ne_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/43073/m_4307307_ne_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307307_ne_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121371,43.933722],[-73.119198,44.002607],[-73.191133,44.003769],[-73.193223,43.934881],[-73.121371,43.933722]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[645016.0,4866227.0,650786.0,4873882.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5770],"proj:transform":[1.0,0.0,645016.0,0.0,-1.0,4873882.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_1_20120712_20120927","bbox":[-73.1308,43.996187,-73.056624,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_1_20120712_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_1_20120712_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407364_sw_18_1_20120712.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/44073/m_4407364_sw_18_1_20120712.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407364_sw_18_1_20120712.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058875,43.996187],[-73.056624,44.065105],[-73.128632,44.066307],[-73.1308,43.997387],[-73.058875,43.996187]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-12T00:00:00Z","naip:year":"2012","proj:bbox":[649869.0,4873281.0,655639.0,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5770],"proj:transform":[1.0,0.0,649869.0,0.0,-1.0,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_1_20120712_20120927","bbox":[-73.193235,43.996224,-73.119192,44.06627],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_1_20120712_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_1_20120712_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407363_se_18_1_20120712.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/44073/m_4407363_se_18_1_20120712.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407363_se_18_1_20120712.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996224],[-73.119192,44.065108],[-73.191141,44.06627],[-73.193235,43.997383],[-73.12137,43.996224]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-12T00:00:00Z","naip:year":"2012","proj:bbox":[644863.0,4873169.0,650628.0,4880824.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5765],"proj:transform":[1.0,0.0,644863.0,0.0,-1.0,4880824.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_1_20120712_20120927","bbox":[-73.130791,43.933686,-73.056633,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_1_20120712_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_1_20120712_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307308_nw_18_1_20120712.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/43073/m_4307308_nw_18_1_20120712.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307308_nw_18_1_20120712.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.933686],[-73.056633,44.002604],[-73.128628,44.003806],[-73.130791,43.934885],[-73.05888,43.933686]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-12T00:00:00Z","naip:year":"2012","proj:bbox":[650027.0,4866339.0,655802.0,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5775],"proj:transform":[1.0,0.0,650027.0,0.0,-1.0,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_1_20120712_20120927","bbox":[-73.193223,43.933722,-73.119198,44.003769],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_1_20120712_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_1_20120712_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307307_ne_18_1_20120712.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/43073/m_4307307_ne_18_1_20120712.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307307_ne_18_1_20120712.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121371,43.933722],[-73.119198,44.002607],[-73.191133,44.003769],[-73.193223,43.934881],[-73.121371,43.933722]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-12T00:00:00Z","naip:year":"2012","proj:bbox":[645016.0,4866227.0,650786.0,4873882.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5770],"proj:transform":[1.0,0.0,645016.0,0.0,-1.0,4873882.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_1_20120711_20120927","bbox":[-73.255658,43.996262,-73.181761,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_1_20120711_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_1_20120711_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407363_sw_18_1_20120711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/44073/m_4407363_sw_18_1_20120711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407363_sw_18_1_20120711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_1_20120711_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_1_20120711_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183866,43.996262],[-73.181761,44.065113],[-73.253637,44.066234],[-73.255658,43.997381],[-73.183866,43.996262]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-11T00:00:00Z","naip:year":"2012","proj:bbox":[639858.0,4873061.0,645617.0,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5759],"proj:transform":[1.0,0.0,639858.0,0.0,-1.0,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_1_20120711_20120927","bbox":[-73.255655,43.933761,-73.181776,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_1_20120711_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_1_20120711_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307307_nw_18_1_20120711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/43073/m_4307307_nw_18_1_20120711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307307_nw_18_1_20120711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_1_20120711_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_1_20120711_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183876,43.933761],[-73.181776,44.002612],[-73.253638,44.003733],[-73.255655,43.934879],[-73.183876,43.933761]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-11T00:00:00Z","naip:year":"2012","proj:bbox":[640005.0,4866119.0,645769.0,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5764],"proj:transform":[1.0,0.0,640005.0,0.0,-1.0,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_1_20110820_20111114","bbox":[-73.130863,43.99615,-73.056572,44.066353],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_1_20110820_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_1_20110820_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407364_sw_18_1_20110820.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/44073/m_4407364_sw_18_1_20110820.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407364_sw_18_1_20110820.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_1_20110820_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_1_20110820_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058827,43.99615],[-73.056572,44.065149],[-73.128693,44.066353],[-73.130863,43.997352],[-73.058827,43.99615]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-20T00:00:00Z","naip:year":"2011","proj:bbox":[649864.0,4873277.0,655643.0,4880945.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7668,5779],"proj:transform":[1.0,0.0,649864.0,0.0,-1.0,4880945.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_1_20110820_20111114","bbox":[-73.130854,43.933649,-73.056582,44.003852],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_1_20110820_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_1_20110820_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307308_nw_18_1_20110820.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/43073/m_4307308_nw_18_1_20110820.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307308_nw_18_1_20110820.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_1_20110820_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_1_20110820_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058831,43.933649],[-73.056582,44.002648],[-73.128688,44.003852],[-73.130854,43.93485],[-73.058831,43.933649]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-20T00:00:00Z","naip:year":"2011","proj:bbox":[650022.0,4866335.0,655806.0,4874003.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7668,5784],"proj:transform":[1.0,0.0,650022.0,0.0,-1.0,4874003.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_1_20110818_20111114","bbox":[-73.255722,43.996216,-73.18171,44.06628],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_1_20110818_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_1_20110818_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407363_sw_18_1_20110818.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/44073/m_4407363_sw_18_1_20110818.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407363_sw_18_1_20110818.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183817,43.996216],[-73.18171,44.065157],[-73.253698,44.06628],[-73.255722,43.997337],[-73.183817,43.996216]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-18T00:00:00Z","naip:year":"2011","proj:bbox":[639853.0,4873056.0,645621.0,4880717.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7661,5768],"proj:transform":[1.0,0.0,639853.0,0.0,-1.0,4880717.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_1_20110818_20111114","bbox":[-73.193286,43.996187,-73.119141,44.066316],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_1_20110818_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_1_20110818_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407363_se_18_1_20110818.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/44073/m_4407363_se_18_1_20110818.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407363_se_18_1_20110818.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121322,43.996187],[-73.119141,44.065152],[-73.191189,44.066316],[-73.193286,43.997348],[-73.121322,43.996187]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-18T00:00:00Z","naip:year":"2011","proj:bbox":[644859.0,4873165.0,650632.0,4880829.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7664,5773],"proj:transform":[1.0,0.0,644859.0,0.0,-1.0,4880829.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_1_20110818_20111114","bbox":[-73.255719,43.933724,-73.181712,44.003779],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_1_20110818_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_1_20110818_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307307_nw_18_1_20110818.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/43073/m_4307307_nw_18_1_20110818.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307307_nw_18_1_20110818.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183814,43.933724],[-73.181712,44.002656],[-73.253699,44.003779],[-73.255719,43.934844],[-73.183814,43.933724]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-18T00:00:00Z","naip:year":"2011","proj:bbox":[640000.0,4866115.0,645774.0,4873775.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7660,5774],"proj:transform":[1.0,0.0,640000.0,0.0,-1.0,4873775.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_1_20110818_20111114","bbox":[-73.193287,43.933685,-73.119147,44.003815],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_1_20110818_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_1_20110818_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307307_ne_18_1_20110818.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/43073/m_4307307_ne_18_1_20110818.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307307_ne_18_1_20110818.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121323,43.933685],[-73.119147,44.002651],[-73.191194,44.003815],[-73.193287,43.934846],[-73.121323,43.933685]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-18T00:00:00Z","naip:year":"2011","proj:bbox":[645011.0,4866223.0,650790.0,4873887.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7664,5779],"proj:transform":[1.0,0.0,645011.0,0.0,-1.0,4873887.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '5665' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:52:05 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125204Z-167d46d96d8x72gqhC1DENywxw00000006d0000000001dha status: code: 200 message: OK - request: body: '{"bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"], "query": {"gsd": {"gte": 0, "lte": 1}}}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '105' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4307308_nw_18_030_20230622_20231113","bbox":[-73.130782,43.933691,-73.056636,44.003801],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307308_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056636,44.002599],[-73.128619,44.003801],[-73.130782,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[650027.7,4866339.600000001,655801.7999999999,4873997.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19247],"proj:centroid":{"lat":43.96875,"lon":-73.09373},"proj:transform":[0.3,0.0,650027.7,0.0,-0.3,4873997.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_030_20230622_20231113","bbox":[-73.255644,43.933764,-73.181774,44.003728],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_nw_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181774,44.002607],[-73.253627,44.003728],[-73.255644,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[640005.9,4866119.4,645769.2000000001,4873769.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25500,19211],"proj:centroid":{"lat":43.96875,"lon":-73.21873},"proj:transform":[0.3,0.0,640005.9,0.0,-0.3,4873769.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_030_20230622_20231113","bbox":[-73.193213,43.933726,-73.119205,44.003763],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_030_20230622_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/43073/m_4307307_ne_18_030_20230622_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_030_20230622_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121377,43.933726],[-73.119205,44.002601],[-73.191123,44.003763],[-73.193213,43.934885],[-73.121377,43.933726]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-22T16:00:00Z","naip:year":"2023","proj:bbox":[645016.8,4866227.399999999,650785.5,4873881.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19229],"proj:centroid":{"lat":43.96875,"lon":-73.15623},"proj:transform":[0.3,0.0,645016.8,0.0,-0.3,4873881.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_030_20230621_20231113","bbox":[-73.130789,43.99619,-73.056629,44.066299],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407364_sw_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.99619],[-73.056629,44.065097],[-73.128621,44.066299],[-73.130789,43.997389],[-73.05888,43.99619]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[649869.9,4873281.3,655638.6,4880939.1],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25526,19229],"proj:centroid":{"lat":44.03125,"lon":-73.09373},"proj:transform":[0.3,0.0,649869.9,0.0,-0.3,4880939.1,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_030_20230621_20231113","bbox":[-73.193221,43.996227,-73.119196,44.066264],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_030_20230621_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_se_18_030_20230621_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_030_20230621_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.996227],[-73.119196,44.065102],[-73.191127,44.066264],[-73.193221,43.997386],[-73.121374,43.996227]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-21T16:00:00Z","naip:year":"2023","proj:bbox":[644864.1,4873169.399999999,650627.7,4880823.3],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25513,19212],"proj:centroid":{"lat":44.03125,"lon":-73.15623},"proj:transform":[0.3,0.0,644864.1,0.0,-0.3,4880823.3,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_030_20230620_20231113","bbox":[-73.255654,43.996263,-73.181764,44.066229],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_030_20230620_20231113"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2023/vt_030cm_2023/44073/m_4407363_sw_18_030_20230620_20231113.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_030_20230620_20231113&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996263],[-73.181764,44.065107],[-73.253633,44.066229],[-73.255654,43.997382],[-73.183868,43.996263]]]},"collection":"naip","properties":{"gsd":0.3,"datetime":"2023-06-20T16:00:00Z","naip:year":"2023","proj:bbox":[639858.3,4873061.100000001,645616.8,4880711.4],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[25501,19195],"proj:centroid":{"lat":44.03125,"lon":-73.21873},"proj:transform":[0.3,0.0,639858.3,0.0,-0.3,4880711.4,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20211029","bbox":[-73.130807,43.996179,-73.056111,44.06681],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058379,43.996179],[-73.056111,44.065598],[-73.128623,44.06681],[-73.130807,43.997387],[-73.058379,43.996179]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[649868.4,4873281.0,655678.8,4880995.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12858,9684],"proj:transform":[0.6,0.0,649868.4,0.0,-0.6,4880995.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20211029","bbox":[-73.255666,43.996252,-73.181247,44.066737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183367,43.996252],[-73.181247,44.065607],[-73.25363,44.066737],[-73.255666,43.997379],[-73.183367,43.996252]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[639857.4,4873060.8,645657.0,4880767.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12845,9666],"proj:transform":[0.6,0.0,639857.4,0.0,-0.6,4880767.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20211029","bbox":[-73.192739,43.996233,-73.119177,44.066755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996233],[-73.119177,44.065601],[-73.190629,44.066755],[-73.192739,43.997384],[-73.12137,43.996233]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[644902.8,4873170.0,650628.0,4880878.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12848,9542],"proj:transform":[0.6,0.0,644902.8,0.0,-0.6,4880878.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20211029","bbox":[-73.255626,43.934253,-73.181287,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183372,43.934253],[-73.181287,44.002604],[-73.253623,44.003733],[-73.255626,43.935379],[-73.183372,43.934253]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[640006.2,4866174.6,645808.2,4873770.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12659,9670],"proj:transform":[0.6,0.0,640006.2,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20211029","bbox":[-73.192697,43.934234,-73.119216,44.003752],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121373,43.934234],[-73.119216,44.002598],[-73.190622,44.003752],[-73.192697,43.935384],[-73.121373,43.934234]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[645057.0,4866283.8,650784.6,4873881.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12662,9546],"proj:transform":[0.6,0.0,645057.0,0.0,-0.6,4873881.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20210920","bbox":[-73.130763,43.93418,-73.056149,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20210920"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20210920","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05838,43.93418],[-73.056149,44.002596],[-73.128615,44.003806],[-73.130763,43.935387],[-73.05838,43.93418]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-09-20T16:00:00Z","naip:year":"2021","proj:bbox":[650028.0,4866394.8,655840.8,4873998.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12672,9688],"proj:transform":[0.6,0.0,650028.0,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20181019_20190225","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407364_sw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.6,0.0,649869.0,0.0,-0.6,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20181019_20190225","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307308_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[650027.3999999999,4866339.6,655801.7999999999,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6,0.0,650027.3999999999,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20180923_20190225","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20180923_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_nw_18_060_20180923.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-23T00:00:00Z","naip:year":"2018","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.6,0.0,640005.0,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20180914_20190225","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6,0.0,639858.0,0.0,-0.6,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20180914_20190225","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_se_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6,0.0,644863.2,0.0,-0.6,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20180823_20190225","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20180823_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_ne_18_060_20180823.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-08-23T00:00:00Z","naip:year":"2018","proj:bbox":[645016.2,4866227.4,650785.7999999999,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6,0.0,645016.2,0.0,-0.6,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_h_20160805","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307308_nw_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307308_nw_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6000000000000024,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[650027.4,4866339.6,655801.8,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6000000000000024,0.0,650027.4,0.0,-0.6000000000000292,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_h_20160805","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_h_20160805"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_h_20160805","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_ne_18_h_20160805.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_ne_18_h_20160805.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_h_20160805&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6000000000000096,"datetime":"2016-08-05T00:00:00Z","naip:year":"2016","proj:bbox":[645016.2,4866227.4,650785.8,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6000000000000096,0.0,645016.2,0.0,-0.5999999999999854,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_h_20160804","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407364_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407364_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407364_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.5999999999999975,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.5999999999999975,0.0,649869.0,0.0,-0.6000000000000292,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_h_20160804","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_sw_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407363_sw_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_sw_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6000000000000049,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6000000000000049,0.0,639858.0,0.0,-0.5999999999999708,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_h_20160804","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_h_20160804"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_h_20160804","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_se_18_h_20160804.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/44073/m_4407363_se_18_h_20160804.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/44073/m_4407363_se_18_h_20160804.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_h_20160804&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6000000000000049,"datetime":"2016-08-04T00:00:00Z","naip:year":"2016","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6000000000000049,0.0,644863.2,0.0,-0.5999999999999854,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_h_20160727","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_h_20160727"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_h_20160727","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_nw_18_h_20160727.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_fgdc_2016/43073/m_4307307_nw_18_h_20160727.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2016/vt_060cm_2016/43073/m_4307307_nw_18_h_20160727.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_h_20160727&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_h_20160727&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.5999999999999952,"datetime":"2016-07-27T00:00:00Z","naip:year":"2016","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.5999999999999952,0.0,640005.0,0.0,-0.5999999999999708,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_1_20140826_20141006","bbox":[-73.1308,43.996187,-73.056624,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_1_20140826_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_1_20140826_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407364_sw_18_1_20140826.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407364_sw_18_1_20140826.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407364_sw_18_1_20140826.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058875,43.996187],[-73.056624,44.065105],[-73.128632,44.066307],[-73.1308,43.997387],[-73.058875,43.996187]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-26T00:00:00Z","naip:year":"2014","proj:bbox":[649869.0,4873281.0,655639.0,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5770],"proj:transform":[1.0,0.0,649869.0,0.0,-1.0,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_1_20140826_20141006","bbox":[-73.130791,43.933686,-73.056633,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_1_20140826_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_1_20140826_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307308_nw_18_1_20140826.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/43073/m_4307308_nw_18_1_20140826.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307308_nw_18_1_20140826.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_1_20140826_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.933686],[-73.056633,44.002604],[-73.128628,44.003806],[-73.130791,43.934885],[-73.05888,43.933686]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-26T00:00:00Z","naip:year":"2014","proj:bbox":[650027.0,4866339.0,655802.0,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5775],"proj:transform":[1.0,0.0,650027.0,0.0,-1.0,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_1_20140809_20141006","bbox":[-73.255658,43.996262,-73.181761,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_sw_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407363_sw_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_sw_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183866,43.996262],[-73.181761,44.065113],[-73.253637,44.066234],[-73.255658,43.997381],[-73.183866,43.996262]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[639858.0,4873061.0,645617.0,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5759],"proj:transform":[1.0,0.0,639858.0,0.0,-1.0,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_1_20140809_20141006","bbox":[-73.193235,43.996224,-73.119192,44.06627],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_se_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/44073/m_4407363_se_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/44073/m_4407363_se_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996224],[-73.119192,44.065108],[-73.191141,44.06627],[-73.193235,43.997383],[-73.12137,43.996224]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[644863.0,4873169.0,650628.0,4880824.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5765],"proj:transform":[1.0,0.0,644863.0,0.0,-1.0,4880824.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_1_20140809_20141006","bbox":[-73.255655,43.933761,-73.181776,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307307_nw_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/43073/m_4307307_nw_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307307_nw_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183876,43.933761],[-73.181776,44.002612],[-73.253638,44.003733],[-73.255655,43.934879],[-73.183876,43.933761]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[640005.0,4866119.0,645769.0,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5764],"proj:transform":[1.0,0.0,640005.0,0.0,-1.0,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_1_20140809_20141006","bbox":[-73.193223,43.933722,-73.119198,44.003769],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_1_20140809_20141006"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_1_20140809_20141006","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307307_ne_18_1_20140809.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_fgdc_2014/43073/m_4307307_ne_18_1_20140809.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2014/vt_100cm_2014/43073/m_4307307_ne_18_1_20140809.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_1_20140809_20141006&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121371,43.933722],[-73.119198,44.002607],[-73.191133,44.003769],[-73.193223,43.934881],[-73.121371,43.933722]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2014-08-09T00:00:00Z","naip:year":"2014","proj:bbox":[645016.0,4866227.0,650786.0,4873882.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5770],"proj:transform":[1.0,0.0,645016.0,0.0,-1.0,4873882.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_1_20120712_20120927","bbox":[-73.1308,43.996187,-73.056624,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_1_20120712_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_1_20120712_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407364_sw_18_1_20120712.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/44073/m_4407364_sw_18_1_20120712.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407364_sw_18_1_20120712.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058875,43.996187],[-73.056624,44.065105],[-73.128632,44.066307],[-73.1308,43.997387],[-73.058875,43.996187]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-12T00:00:00Z","naip:year":"2012","proj:bbox":[649869.0,4873281.0,655639.0,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5770],"proj:transform":[1.0,0.0,649869.0,0.0,-1.0,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_1_20120712_20120927","bbox":[-73.193235,43.996224,-73.119192,44.06627],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_1_20120712_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_1_20120712_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407363_se_18_1_20120712.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/44073/m_4407363_se_18_1_20120712.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407363_se_18_1_20120712.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996224],[-73.119192,44.065108],[-73.191141,44.06627],[-73.193235,43.997383],[-73.12137,43.996224]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-12T00:00:00Z","naip:year":"2012","proj:bbox":[644863.0,4873169.0,650628.0,4880824.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5765],"proj:transform":[1.0,0.0,644863.0,0.0,-1.0,4880824.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_1_20120712_20120927","bbox":[-73.130791,43.933686,-73.056633,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_1_20120712_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_1_20120712_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307308_nw_18_1_20120712.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/43073/m_4307308_nw_18_1_20120712.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307308_nw_18_1_20120712.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.933686],[-73.056633,44.002604],[-73.128628,44.003806],[-73.130791,43.934885],[-73.05888,43.933686]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-12T00:00:00Z","naip:year":"2012","proj:bbox":[650027.0,4866339.0,655802.0,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7659,5775],"proj:transform":[1.0,0.0,650027.0,0.0,-1.0,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_1_20120712_20120927","bbox":[-73.193223,43.933722,-73.119198,44.003769],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_1_20120712_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_1_20120712_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307307_ne_18_1_20120712.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/43073/m_4307307_ne_18_1_20120712.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307307_ne_18_1_20120712.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_1_20120712_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121371,43.933722],[-73.119198,44.002607],[-73.191133,44.003769],[-73.193223,43.934881],[-73.121371,43.933722]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-12T00:00:00Z","naip:year":"2012","proj:bbox":[645016.0,4866227.0,650786.0,4873882.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7655,5770],"proj:transform":[1.0,0.0,645016.0,0.0,-1.0,4873882.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_1_20120711_20120927","bbox":[-73.255658,43.996262,-73.181761,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_1_20120711_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_1_20120711_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407363_sw_18_1_20120711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/44073/m_4407363_sw_18_1_20120711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/44073/m_4407363_sw_18_1_20120711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_1_20120711_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_1_20120711_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183866,43.996262],[-73.181761,44.065113],[-73.253637,44.066234],[-73.255658,43.997381],[-73.183866,43.996262]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-11T00:00:00Z","naip:year":"2012","proj:bbox":[639858.0,4873061.0,645617.0,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5759],"proj:transform":[1.0,0.0,639858.0,0.0,-1.0,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_1_20120711_20120927","bbox":[-73.255655,43.933761,-73.181776,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_1_20120711_20120927"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_1_20120711_20120927","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307307_nw_18_1_20120711.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_fgdc_2012/43073/m_4307307_nw_18_1_20120711.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2012/vt_100cm_2012/43073/m_4307307_nw_18_1_20120711.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_1_20120711_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_1_20120711_20120927&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183876,43.933761],[-73.181776,44.002612],[-73.253638,44.003733],[-73.255655,43.934879],[-73.183876,43.933761]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2012-07-11T00:00:00Z","naip:year":"2012","proj:bbox":[640005.0,4866119.0,645769.0,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7651,5764],"proj:transform":[1.0,0.0,640005.0,0.0,-1.0,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_1_20110820_20111114","bbox":[-73.130863,43.99615,-73.056572,44.066353],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_1_20110820_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_1_20110820_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407364_sw_18_1_20110820.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/44073/m_4407364_sw_18_1_20110820.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407364_sw_18_1_20110820.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_1_20110820_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_1_20110820_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058827,43.99615],[-73.056572,44.065149],[-73.128693,44.066353],[-73.130863,43.997352],[-73.058827,43.99615]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-20T00:00:00Z","naip:year":"2011","proj:bbox":[649864.0,4873277.0,655643.0,4880945.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7668,5779],"proj:transform":[1.0,0.0,649864.0,0.0,-1.0,4880945.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_1_20110820_20111114","bbox":[-73.130854,43.933649,-73.056582,44.003852],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_1_20110820_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_1_20110820_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307308_nw_18_1_20110820.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/43073/m_4307308_nw_18_1_20110820.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307308_nw_18_1_20110820.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_1_20110820_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_1_20110820_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058831,43.933649],[-73.056582,44.002648],[-73.128688,44.003852],[-73.130854,43.93485],[-73.058831,43.933649]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-20T00:00:00Z","naip:year":"2011","proj:bbox":[650022.0,4866335.0,655806.0,4874003.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7668,5784],"proj:transform":[1.0,0.0,650022.0,0.0,-1.0,4874003.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_1_20110818_20111114","bbox":[-73.255722,43.996216,-73.18171,44.06628],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_1_20110818_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_1_20110818_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407363_sw_18_1_20110818.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/44073/m_4407363_sw_18_1_20110818.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407363_sw_18_1_20110818.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183817,43.996216],[-73.18171,44.065157],[-73.253698,44.06628],[-73.255722,43.997337],[-73.183817,43.996216]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-18T00:00:00Z","naip:year":"2011","proj:bbox":[639853.0,4873056.0,645621.0,4880717.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7661,5768],"proj:transform":[1.0,0.0,639853.0,0.0,-1.0,4880717.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_1_20110818_20111114","bbox":[-73.193286,43.996187,-73.119141,44.066316],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_1_20110818_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_1_20110818_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407363_se_18_1_20110818.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/44073/m_4407363_se_18_1_20110818.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/44073/m_4407363_se_18_1_20110818.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121322,43.996187],[-73.119141,44.065152],[-73.191189,44.066316],[-73.193286,43.997348],[-73.121322,43.996187]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-18T00:00:00Z","naip:year":"2011","proj:bbox":[644859.0,4873165.0,650632.0,4880829.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7664,5773],"proj:transform":[1.0,0.0,644859.0,0.0,-1.0,4880829.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_1_20110818_20111114","bbox":[-73.255719,43.933724,-73.181712,44.003779],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_1_20110818_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_1_20110818_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307307_nw_18_1_20110818.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/43073/m_4307307_nw_18_1_20110818.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307307_nw_18_1_20110818.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183814,43.933724],[-73.181712,44.002656],[-73.253699,44.003779],[-73.255719,43.934844],[-73.183814,43.933724]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-18T00:00:00Z","naip:year":"2011","proj:bbox":[640000.0,4866115.0,645774.0,4873775.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7660,5774],"proj:transform":[1.0,0.0,640000.0,0.0,-1.0,4873775.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_1_20110818_20111114","bbox":[-73.193287,43.933685,-73.119147,44.003815],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_1_20110818_20111114"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_1_20110818_20111114","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307307_ne_18_1_20110818.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_fgdc_2011/43073/m_4307307_ne_18_1_20110818.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2011/vt_100cm_2011/43073/m_4307307_ne_18_1_20110818.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_1_20110818_20111114&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121323,43.933685],[-73.119147,44.002651],[-73.191194,44.003815],[-73.193287,43.934846],[-73.121323,43.933685]]]},"collection":"naip","properties":{"gsd":1.0,"datetime":"2011-08-18T00:00:00Z","naip:year":"2011","proj:bbox":[645011.0,4866223.0,650790.0,4873887.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[7664,5779],"proj:transform":[1.0,0.0,645011.0,0.0,-1.0,4873887.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '5665' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:52:06 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125205Z-167d46d96d8bvmllhC1DENt02w0000000s0g000000003egf status: code: 200 message: OK version: 1 TestItemSearchQuery.test_query_shortcut_syntax.yaml000066400000000000000000002163551503646565400352760ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_item_searchinteractions: - request: body: '{"bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"], "query": {"gsd": {"eq": 0.6}}}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '96' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4407364_sw_18_060_20211029","bbox":[-73.130807,43.996179,-73.056111,44.06681],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058379,43.996179],[-73.056111,44.065598],[-73.128623,44.06681],[-73.130807,43.997387],[-73.058379,43.996179]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[649868.4,4873281.0,655678.8,4880995.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12858,9684],"proj:transform":[0.6,0.0,649868.4,0.0,-0.6,4880995.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20211029","bbox":[-73.255666,43.996252,-73.181247,44.066737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183367,43.996252],[-73.181247,44.065607],[-73.25363,44.066737],[-73.255666,43.997379],[-73.183367,43.996252]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[639857.4,4873060.8,645657.0,4880767.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12845,9666],"proj:transform":[0.6,0.0,639857.4,0.0,-0.6,4880767.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20211029","bbox":[-73.192739,43.996233,-73.119177,44.066755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996233],[-73.119177,44.065601],[-73.190629,44.066755],[-73.192739,43.997384],[-73.12137,43.996233]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[644902.8,4873170.0,650628.0,4880878.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12848,9542],"proj:transform":[0.6,0.0,644902.8,0.0,-0.6,4880878.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20211029","bbox":[-73.255626,43.934253,-73.181287,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183372,43.934253],[-73.181287,44.002604],[-73.253623,44.003733],[-73.255626,43.935379],[-73.183372,43.934253]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[640006.2,4866174.6,645808.2,4873770.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12659,9670],"proj:transform":[0.6,0.0,640006.2,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20211029","bbox":[-73.192697,43.934234,-73.119216,44.003752],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121373,43.934234],[-73.119216,44.002598],[-73.190622,44.003752],[-73.192697,43.935384],[-73.121373,43.934234]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[645057.0,4866283.8,650784.6,4873881.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12662,9546],"proj:transform":[0.6,0.0,645057.0,0.0,-0.6,4873881.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20210920","bbox":[-73.130763,43.93418,-73.056149,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20210920"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20210920","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05838,43.93418],[-73.056149,44.002596],[-73.128615,44.003806],[-73.130763,43.935387],[-73.05838,43.93418]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-09-20T16:00:00Z","naip:year":"2021","proj:bbox":[650028.0,4866394.8,655840.8,4873998.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12672,9688],"proj:transform":[0.6,0.0,650028.0,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20181019_20190225","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407364_sw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.6,0.0,649869.0,0.0,-0.6,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20181019_20190225","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307308_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[650027.3999999999,4866339.6,655801.7999999999,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6,0.0,650027.3999999999,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20180923_20190225","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20180923_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_nw_18_060_20180923.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-23T00:00:00Z","naip:year":"2018","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.6,0.0,640005.0,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20180914_20190225","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6,0.0,639858.0,0.0,-0.6,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20180914_20190225","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_se_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6,0.0,644863.2,0.0,-0.6,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20180823_20190225","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20180823_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_ne_18_060_20180823.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-08-23T00:00:00Z","naip:year":"2018","proj:bbox":[645016.2,4866227.4,650785.7999999999,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6,0.0,645016.2,0.0,-0.6,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2625' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:52:03 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125203Z-167d46d96d89qkmjhC1DENzae80000000sd0000000002u7v status: code: 200 message: OK - request: body: '{"bbox": [-73.21, 43.99, -73.12, 44.05], "collections": ["naip"], "query": {"gsd": {"eq": 0.6}}}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '96' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://planetarycomputer.microsoft.com/api/stac/v1/search response: body: string: '{"type":"FeatureCollection","features":[{"id":"vt_m_4407364_sw_18_060_20211029","bbox":[-73.130807,43.996179,-73.056111,44.06681],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407364_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058379,43.996179],[-73.056111,44.065598],[-73.128623,44.06681],[-73.130807,43.997387],[-73.058379,43.996179]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[649868.4,4873281.0,655678.8,4880995.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12858,9684],"proj:transform":[0.6,0.0,649868.4,0.0,-0.6,4880995.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20211029","bbox":[-73.255666,43.996252,-73.181247,44.066737],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_sw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183367,43.996252],[-73.181247,44.065607],[-73.25363,44.066737],[-73.255666,43.997379],[-73.183367,43.996252]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[639857.4,4873060.8,645657.0,4880767.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12845,9666],"proj:transform":[0.6,0.0,639857.4,0.0,-0.6,4880767.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20211029","bbox":[-73.192739,43.996233,-73.119177,44.066755],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/44073/m_4407363_se_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996233],[-73.119177,44.065601],[-73.190629,44.066755],[-73.192739,43.997384],[-73.12137,43.996233]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[644902.8,4873170.0,650628.0,4880878.8],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12848,9542],"proj:transform":[0.6,0.0,644902.8,0.0,-0.6,4880878.8,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20211029","bbox":[-73.255626,43.934253,-73.181287,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_nw_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183372,43.934253],[-73.181287,44.002604],[-73.253623,44.003733],[-73.255626,43.935379],[-73.183372,43.934253]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[640006.2,4866174.6,645808.2,4873770.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12659,9670],"proj:transform":[0.6,0.0,640006.2,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20211029","bbox":[-73.192697,43.934234,-73.119216,44.003752],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20211029"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20211029","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307307_ne_18_060_20211029.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20211029&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121373,43.934234],[-73.119216,44.002598],[-73.190622,44.003752],[-73.192697,43.935384],[-73.121373,43.934234]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-10-29T16:00:00Z","naip:year":"2021","proj:bbox":[645057.0,4866283.8,650784.6,4873881.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12662,9546],"proj:transform":[0.6,0.0,645057.0,0.0,-0.6,4873881.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20210920","bbox":[-73.130763,43.93418,-73.056149,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20210920"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20210920","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2021/vt_060cm_2021/43073/m_4307308_nw_18_060_20210920.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20210920&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05838,43.93418],[-73.056149,44.002596],[-73.128615,44.003806],[-73.130763,43.935387],[-73.05838,43.93418]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2021-09-20T16:00:00Z","naip:year":"2021","proj:bbox":[650028.0,4866394.8,655840.8,4873998.0],"proj:epsg":26918,"providers":[{"url":"https://www.fsa.usda.gov/programs-and-services/aerial-photography/imagery-programs/naip-imagery/","name":"USDA Farm Service Agency","roles":["producer","licensor"]}],"naip:state":"vt","proj:shape":[12672,9688],"proj:transform":[0.6,0.0,650028.0,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407364_sw_18_060_20181019_20190225","bbox":[-73.1308,43.996192,-73.056629,44.066307],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407364_sw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407364_sw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407364_sw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407364_sw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.05888,43.996192],[-73.056629,44.065105],[-73.128632,44.066307],[-73.1308,43.997392],[-73.05888,43.996192]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[649869.0,4873281.6,655638.6,4880940.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9616],"proj:transform":[0.6,0.0,649869.0,0.0,-0.6,4880940.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307308_nw_18_060_20181019_20190225","bbox":[-73.130786,43.933691,-73.056635,44.003806],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307308_nw_18_060_20181019_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307308_nw_18_060_20181019.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307308_nw_18_060_20181019.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307308_nw_18_060_20181019_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.058882,43.933691],[-73.056635,44.002604],[-73.128623,44.003806],[-73.130786,43.93489],[-73.058882,43.933691]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-10-19T00:00:00Z","naip:year":"2018","proj:bbox":[650027.3999999999,4866339.6,655801.7999999999,4873998.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12764,9624],"proj:transform":[0.6,0.0,650027.3999999999,0.0,-0.6,4873998.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_nw_18_060_20180923_20190225","bbox":[-73.255655,43.933764,-73.181773,44.003733],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_nw_18_060_20180923_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_nw_18_060_20180923.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_nw_18_060_20180923.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_nw_18_060_20180923_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183873,43.933764],[-73.181773,44.002612],[-73.253638,44.003733],[-73.255655,43.934883],[-73.183873,43.933764]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-23T00:00:00Z","naip:year":"2018","proj:bbox":[640005.0,4866119.4,645769.2,4873770.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9607],"proj:transform":[0.6,0.0,640005.0,0.0,-0.6,4873770.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_sw_18_060_20180914_20190225","bbox":[-73.255658,43.996266,-73.181764,44.066234],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_sw_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_sw_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_sw_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_sw_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.183868,43.996266],[-73.181764,44.065113],[-73.253637,44.066234],[-73.255658,43.997384],[-73.183868,43.996266]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[639858.0,4873061.4,645616.8,4880712.0],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12751,9598],"proj:transform":[0.6,0.0,639858.0,0.0,-0.6,4880712.0,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4407363_se_18_060_20180914_20190225","bbox":[-73.193233,43.996227,-73.119192,44.066272],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4407363_se_18_060_20180914_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/44073/m_4407363_se_18_060_20180914.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/44073/m_4407363_se_18_060_20180914.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4407363_se_18_060_20180914_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.12137,43.996227],[-73.119192,44.06511],[-73.191138,44.066272],[-73.193233,43.997386],[-73.12137,43.996227]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-09-14T00:00:00Z","naip:year":"2018","proj:bbox":[644863.2,4873169.4,650628.0,4880824.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9608],"proj:transform":[0.6,0.0,644863.2,0.0,-0.6,4880824.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"},{"id":"vt_m_4307307_ne_18_060_20180823_20190225","bbox":[-73.193221,43.933726,-73.119201,44.003771],"type":"Feature","links":[{"rel":"collection","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"parent","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/geo+json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip/items/vt_m_4307307_ne_18_060_20180823_20190225"},{"rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/map?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225","title":"Map of item","type":"text/html"}],"assets":{"image":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","roles":["data"],"title":"RGBIR COG tile","eo:bands":[{"name":"Red","common_name":"red"},{"name":"Green","common_name":"green"},{"name":"Blue","common_name":"blue"},{"name":"NIR","common_name":"nir","description":"near-infrared"}]},"metadata":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_fgdc_2018/43073/m_4307307_ne_18_060_20180823.txt","type":"text/plain","roles":["metadata"],"title":"FGDC Metdata"},"thumbnail":{"href":"https://naipeuwest.blob.core.windows.net/naip/v002/vt/2018/vt_060cm_2018/43073/m_4307307_ne_18_060_20180823.200.jpg","type":"image/jpeg","roles":["thumbnail"],"title":"Thumbnail"},"tilejson":{"title":"TileJSON with default rendering","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/tilejson.json?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","type":"application/json","roles":["tiles"]},"rendered_preview":{"title":"Rendered preview","rel":"preview","href":"https://planetarycomputer.microsoft.com/api/data/v1/item/preview.png?collection=naip&item=vt_m_4307307_ne_18_060_20180823_20190225&assets=image&asset_bidx=image%7C1%2C2%2C3&format=png","roles":["overview"],"type":"image/png"}},"geometry":{"type":"Polygon","coordinates":[[[-73.121374,43.933726],[-73.119201,44.002609],[-73.19113,44.003771],[-73.193221,43.934885],[-73.121374,43.933726]]]},"collection":"naip","properties":{"gsd":0.6,"datetime":"2018-08-23T00:00:00Z","naip:year":"2018","proj:bbox":[645016.2,4866227.4,650785.7999999999,4873882.2],"proj:epsg":26918,"naip:state":"vt","proj:shape":[12758,9616],"proj:transform":[0.6,0.0,645016.2,0.0,-0.6,4873882.2,0.0,0.0,1.0]},"stac_extensions":["https://stac-extensions.github.io/eo/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.0.0/schema.json"],"stac_version":"1.0.0"}],"links":[{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search"}]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '2625' Content-Type: - application/geo+json Date: - Thu, 17 Jul 2025 12:52:04 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125203Z-167d46d96d8hfsjbhC1DENta1w0000000scg00000000330b status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_item_search/test_fields.yaml000066400000000000000000000106131503646565400261710ustar00rootroot00000000000000interactions: - request: body: '{"collections": ["sentinel-2-c1-l2a"], "intersects": {"type": "Point", "coordinates": [-105.1019, 40.1672]}, "fields": {"include": [], "exclude": ["geometry", "assets", "links"]}}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '179' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://earth-search.aws.element84.com/v1/search response: body: string: '{"type":"FeatureCollection","stac_version":"1.0.0","stac_extensions":[],"context":{"limit":10,"matched":851,"returned":10},"numberMatched":851,"numberReturned":10,"features":[{"stac_version":"1.0.0","bbox":[-105.374632,39.661012,-104.884569,40.650821],"id":"S2C_T13TDE_20250716T175117_L2A","collection":"sentinel-2-c1-l2a","type":"Feature","properties":{"datetime":"2025-07-16T17:53:22.342000Z"}},{"stac_version":"1.0.0","bbox":[-106.183161,39.655762,-104.884569,40.65079],"id":"S2B_T13TDE_20250714T180139_L2A","collection":"sentinel-2-c1-l2a","type":"Feature","properties":{"datetime":"2025-07-14T18:02:58.965000Z"}},{"stac_version":"1.0.0","bbox":[-106.183161,39.655762,-104.884569,40.65079],"id":"S2A_T13TDE_20250711T175745_L2A","collection":"sentinel-2-c1-l2a","type":"Feature","properties":{"datetime":"2025-07-11T18:03:14.611000Z"}},{"stac_version":"1.0.0","bbox":[-105.360758,39.661056,-104.884569,40.65083],"id":"S2B_T13TDE_20250711T174908_L2A","collection":"sentinel-2-c1-l2a","type":"Feature","properties":{"datetime":"2025-07-11T17:53:02.705000Z"}},{"stac_version":"1.0.0","bbox":[-106.183161,39.655762,-104.884569,40.65079],"id":"S2C_T13TDE_20250709T175631_L2A","collection":"sentinel-2-c1-l2a","type":"Feature","properties":{"datetime":"2025-07-09T18:03:18.512000Z"}},{"stac_version":"1.0.0","bbox":[-105.372067,39.66102,-104.884569,40.650823],"id":"S2C_T13TDE_20250706T175116_L2A","collection":"sentinel-2-c1-l2a","type":"Feature","properties":{"datetime":"2025-07-06T17:53:21.750000Z"}},{"stac_version":"1.0.0","bbox":[-106.183161,39.655762,-104.884569,40.65079],"id":"S2B_T13TDE_20250704T180129_L2A","collection":"sentinel-2-c1-l2a","type":"Feature","properties":{"datetime":"2025-07-04T18:02:58.839000Z"}},{"stac_version":"1.0.0","bbox":[-105.36041,39.661057,-104.884569,40.65083],"id":"S2B_T13TDE_20250701T175049_L2A","collection":"sentinel-2-c1-l2a","type":"Feature","properties":{"datetime":"2025-07-01T17:53:02.109000Z"}},{"stac_version":"1.0.0","bbox":[-106.183161,39.655762,-104.884569,40.65079],"id":"S2C_T13TDE_20250629T175633_L2A","collection":"sentinel-2-c1-l2a","type":"Feature","properties":{"datetime":"2025-06-29T18:03:16.854000Z"}},{"stac_version":"1.0.0","bbox":[-105.362741,39.66105,-104.884569,40.650829],"id":"S2A_T13TDE_20250628T175133_L2A","collection":"sentinel-2-c1-l2a","type":"Feature","properties":{"datetime":"2025-06-28T17:53:15.659000Z"}}],"links":[{"rel":"next","title":"Next page of Items","method":"POST","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","merge":false,"body":{"intersects":{"type":"Point","coordinates":[-105.1019,40.1672]},"fields":{"include":[],"exclude":["geometry","assets","links"]},"collections":["sentinel-2-c1-l2a"],"next":"2025-06-28T17:53:15.659000Z,S2A_T13TDE_20250628T175133_L2A,sentinel-2-c1-l2a"}},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"}]}' headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '725' Content-Type: - application/geo+json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:52:06 GMT Via: - 1.1 39c272e966ab7a6f8a68d2222276a954.cloudfront.net (CloudFront) X-Amz-Cf-Id: - BhQf0XvqG8K8qrCTs409dQVzIsU6oG4pp1azPa4_ksfQ3W3Bl5V1ng== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f1f6-565004651770c7bb2a7b9991;Parent=31d8f5adf357344d;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"b5d-GoQpo/ftBOGD6cKWklh/mfTPLI4" x-amz-apigw-id: - N2q-nEpoPHcEA5A= x-amzn-Remapped-content-length: - '2909' x-amzn-RequestId: - 0194af56-2335-4daa-a8c6-a14317d57611 x-powered-by: - Express status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_item_search/test_multiple_collections.yaml000066400000000000000000001460431503646565400311630ustar00rootroot00000000000000interactions: - request: body: '{"datetime": "2023-10-08T00:00:00Z/2023-10-08T23:59:59Z", "collections": ["sentinel-2-l2a", "landsat-c2-l2"], "intersects": {"type": "Point", "coordinates": [-105.1019, 40.1672]}}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '179' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://earth-search.aws.element84.com/v1/search response: body: string: '{"type":"FeatureCollection","stac_version":"1.0.0","stac_extensions":[],"context":{"limit":10,"matched":2,"returned":2},"numberMatched":2,"numberReturned":2,"features":[{"type":"Feature","stac_version":"1.0.0","id":"S2A_13TDE_20231008_0_L2A","properties":{"created":"2023-10-09T01:25:21.658Z","platform":"sentinel-2a","constellation":"sentinel-2","instruments":["msi"],"eo:cloud_cover":0.000299,"proj:epsg":32613,"mgrs:utm_zone":13,"mgrs:latitude_band":"T","mgrs:grid_square":"DE","grid:code":"MGRS-13TDE","view:sun_azimuth":164.124647750547,"view:sun_elevation":42.6190810694869,"s2:degraded_msi_data_percentage":0.0082,"s2:nodata_pixel_percentage":0.000003,"s2:saturated_defective_pixel_percentage":0,"s2:dark_features_percentage":0.170444,"s2:cloud_shadow_percentage":0,"s2:vegetation_percentage":44.52863,"s2:not_vegetated_percentage":53.898722,"s2:water_percentage":1.342036,"s2:unclassified_percentage":0.000839,"s2:medium_proba_clouds_percentage":0.000236,"s2:high_proba_clouds_percentage":0.000063,"s2:thin_cirrus_percentage":0,"s2:snow_ice_percentage":0.059024,"s2:product_type":"S2MSI2A","s2:processing_baseline":"05.09","s2:product_uri":"S2A_MSIL2A_20231008T175231_N0509_R141_T13TDE_20231008T233154.SAFE","s2:generation_time":"2023-10-08T23:31:54.000000Z","s2:datatake_id":"GS2A_20231008T175231_043324_N05.09","s2:datatake_type":"INS-NOBS","s2:datastrip_id":"S2A_OPER_MSI_L2A_DS_2APS_20231008T233154_S20231008T175927_N05.09","s2:granule_id":"S2A_OPER_MSI_L2A_TL_2APS_20231008T233154_A043324_T13TDE_N05.09","s2:reflectance_conversion_factor":1.00015039292335,"datetime":"2023-10-08T18:02:55.276000Z","s2:sequence":"0","earthsearch:s3_path":"s3://sentinel-cogs/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A","earthsearch:payload_id":"roda-sentinel2/workflow-sentinel2-to-stac/c7ae14a8b6a95dd6baea9173ea99afab","earthsearch:boa_offset_applied":true,"processing:software":{"sentinel2-to-stac":"0.1.1"},"updated":"2023-10-09T01:25:21.658Z"},"geometry":{"type":"Polygon","coordinates":[[[-106.18316062292897,40.64478591807637],[-106.1661201925584,39.65576169772817],[-104.88623172845638,39.661560248682505],[-104.88456877606482,40.650789813976196],[-106.18316062292897,40.64478591807637]]]},"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items/S2A_13TDE_20231008_0_L2A"},{"rel":"canonical","href":"s3://sentinel-cogs/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A/S2A_13TDE_20231008_0_L2A.json","type":"application/json"},{"rel":"license","href":"https://sentinel.esa.int/documents/247904/690755/Sentinel_Data_Legal_Notice"},{"rel":"derived_from","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l1c/items/S2A_13TDE_20231008_0_L1C","type":"application/geo+json"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/sentinel-2-l2a/items/S2A_13TDE_20231008_0_L2A/thumbnail"}],"assets":{"aot":{"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A/AOT.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol optical thickness (AOT)","proj:shape":[5490,5490],"proj:transform":[20,0,399960,0,-20,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":20,"scale":0.001,"offset":0}],"roles":["data","reflectance"]},"blue":{"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A/B02.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue (band 2) - 10m","eo:bands":[{"name":"blue","common_name":"blue","description":"Blue (band 2)","center_wavelength":0.49,"full_width_half_max":0.098}],"gsd":10,"proj:shape":[10980,10980],"proj:transform":[10,0,399960,0,-10,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":10,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"coastal":{"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A/B01.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal aerosol (band 1) - 60m","eo:bands":[{"name":"coastal","common_name":"coastal","description":"Coastal aerosol (band 1)","center_wavelength":0.443,"full_width_half_max":0.027}],"gsd":60,"proj:shape":[1830,1830],"proj:transform":[60,0,399960,0,-60,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":60,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"granule_metadata":{"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A/granule_metadata.xml","type":"application/xml","roles":["metadata"]},"green":{"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A/B03.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green (band 3) - 10m","eo:bands":[{"name":"green","common_name":"green","description":"Green (band 3)","center_wavelength":0.56,"full_width_half_max":0.045}],"gsd":10,"proj:shape":[10980,10980],"proj:transform":[10,0,399960,0,-10,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":10,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"nir":{"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A/B08.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"NIR 1 (band 8) - 10m","eo:bands":[{"name":"nir","common_name":"nir","description":"NIR 1 (band 8)","center_wavelength":0.842,"full_width_half_max":0.145}],"gsd":10,"proj:shape":[10980,10980],"proj:transform":[10,0,399960,0,-10,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":10,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"nir08":{"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A/B8A.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"NIR 2 (band 8A) - 20m","eo:bands":[{"name":"nir08","common_name":"nir08","description":"NIR 2 (band 8A)","center_wavelength":0.865,"full_width_half_max":0.033}],"gsd":20,"proj:shape":[5490,5490],"proj:transform":[20,0,399960,0,-20,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":20,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"nir09":{"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A/B09.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"NIR 3 (band 9) - 60m","eo:bands":[{"name":"nir09","common_name":"nir09","description":"NIR 3 (band 9)","center_wavelength":0.945,"full_width_half_max":0.026}],"gsd":60,"proj:shape":[1830,1830],"proj:transform":[60,0,399960,0,-60,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":60,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"red":{"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A/B04.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red (band 4) - 10m","eo:bands":[{"name":"red","common_name":"red","description":"Red (band 4)","center_wavelength":0.665,"full_width_half_max":0.038}],"gsd":10,"proj:shape":[10980,10980],"proj:transform":[10,0,399960,0,-10,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":10,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"rededge1":{"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A/B05.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red edge 1 (band 5) - 20m","eo:bands":[{"name":"rededge1","common_name":"rededge","description":"Red edge 1 (band 5)","center_wavelength":0.704,"full_width_half_max":0.019}],"gsd":20,"proj:shape":[5490,5490],"proj:transform":[20,0,399960,0,-20,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":20,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"rededge2":{"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A/B06.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red edge 2 (band 6) - 20m","eo:bands":[{"name":"rededge2","common_name":"rededge","description":"Red edge 2 (band 6)","center_wavelength":0.74,"full_width_half_max":0.018}],"gsd":20,"proj:shape":[5490,5490],"proj:transform":[20,0,399960,0,-20,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":20,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"rededge3":{"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A/B07.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red edge 3 (band 7) - 20m","eo:bands":[{"name":"rededge3","common_name":"rededge","description":"Red edge 3 (band 7)","center_wavelength":0.783,"full_width_half_max":0.028}],"gsd":20,"proj:shape":[5490,5490],"proj:transform":[20,0,399960,0,-20,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":20,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"scl":{"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A/SCL.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Scene classification map (SCL)","proj:shape":[5490,5490],"proj:transform":[20,0,399960,0,-20,4500000],"raster:bands":[{"nodata":0,"data_type":"uint8","spatial_resolution":20}],"roles":["data","reflectance"]},"swir16":{"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A/B11.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"SWIR 1 (band 11) - 20m","eo:bands":[{"name":"swir16","common_name":"swir16","description":"SWIR 1 (band 11)","center_wavelength":1.61,"full_width_half_max":0.143}],"gsd":20,"proj:shape":[5490,5490],"proj:transform":[20,0,399960,0,-20,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":20,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"swir22":{"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A/B12.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"SWIR 2 (band 12) - 20m","eo:bands":[{"name":"swir22","common_name":"swir22","description":"SWIR 2 (band 12)","center_wavelength":2.19,"full_width_half_max":0.242}],"gsd":20,"proj:shape":[5490,5490],"proj:transform":[20,0,399960,0,-20,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":20,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"thumbnail":{"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A/thumbnail.jpg","type":"image/jpeg","title":"Thumbnail image","roles":["thumbnail"]},"tileinfo_metadata":{"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A/tileinfo_metadata.json","type":"application/json","roles":["metadata"]},"visual":{"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A/TCI.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"True color image","eo:bands":[{"name":"red","common_name":"red","description":"Red (band 4)","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"green","common_name":"green","description":"Green (band 3)","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"blue","common_name":"blue","description":"Blue (band 2)","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:shape":[10980,10980],"proj:transform":[10,0,399960,0,-10,4500000],"roles":["visual"]},"wvp":{"href":"https://sentinel-cogs.s3.us-west-2.amazonaws.com/sentinel-s2-l2a-cogs/13/T/DE/2023/10/S2A_13TDE_20231008_0_L2A/WVP.tif","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Water vapour (WVP)","proj:shape":[5490,5490],"proj:transform":[20,0,399960,0,-20,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":20,"unit":"cm","scale":0.001,"offset":0}],"roles":["data","reflectance"]},"aot-jp2":{"href":"s3://sentinel-s2-l2a/tiles/13/T/DE/2023/10/8/0/AOT.jp2","type":"image/jp2","title":"Aerosol optical thickness (AOT)","proj:shape":[5490,5490],"proj:transform":[20,0,399960,0,-20,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":20,"scale":0.001,"offset":0}],"roles":["data","reflectance"]},"blue-jp2":{"href":"s3://sentinel-s2-l2a/tiles/13/T/DE/2023/10/8/0/B02.jp2","type":"image/jp2","title":"Blue (band 2) - 10m","eo:bands":[{"name":"blue","common_name":"blue","description":"Blue (band 2)","center_wavelength":0.49,"full_width_half_max":0.098}],"gsd":10,"proj:shape":[10980,10980],"proj:transform":[10,0,399960,0,-10,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":10,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"coastal-jp2":{"href":"s3://sentinel-s2-l2a/tiles/13/T/DE/2023/10/8/0/B01.jp2","type":"image/jp2","title":"Coastal aerosol (band 1) - 60m","eo:bands":[{"name":"coastal","common_name":"coastal","description":"Coastal aerosol (band 1)","center_wavelength":0.443,"full_width_half_max":0.027}],"gsd":60,"proj:shape":[1830,1830],"proj:transform":[60,0,399960,0,-60,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":60,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"green-jp2":{"href":"s3://sentinel-s2-l2a/tiles/13/T/DE/2023/10/8/0/B03.jp2","type":"image/jp2","title":"Green (band 3) - 10m","eo:bands":[{"name":"green","common_name":"green","description":"Green (band 3)","center_wavelength":0.56,"full_width_half_max":0.045}],"gsd":10,"proj:shape":[10980,10980],"proj:transform":[10,0,399960,0,-10,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":10,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"nir-jp2":{"href":"s3://sentinel-s2-l2a/tiles/13/T/DE/2023/10/8/0/B08.jp2","type":"image/jp2","title":"NIR 1 (band 8) - 10m","eo:bands":[{"name":"nir","common_name":"nir","description":"NIR 1 (band 8)","center_wavelength":0.842,"full_width_half_max":0.145}],"gsd":10,"proj:shape":[10980,10980],"proj:transform":[10,0,399960,0,-10,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":10,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"nir08-jp2":{"href":"s3://sentinel-s2-l2a/tiles/13/T/DE/2023/10/8/0/B8A.jp2","type":"image/jp2","title":"NIR 2 (band 8A) - 20m","eo:bands":[{"name":"nir08","common_name":"nir08","description":"NIR 2 (band 8A)","center_wavelength":0.865,"full_width_half_max":0.033}],"gsd":20,"proj:shape":[5490,5490],"proj:transform":[20,0,399960,0,-20,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":20,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"nir09-jp2":{"href":"s3://sentinel-s2-l2a/tiles/13/T/DE/2023/10/8/0/B09.jp2","type":"image/jp2","title":"NIR 3 (band 9) - 60m","eo:bands":[{"name":"nir09","common_name":"nir09","description":"NIR 3 (band 9)","center_wavelength":0.945,"full_width_half_max":0.026}],"gsd":60,"proj:shape":[1830,1830],"proj:transform":[60,0,399960,0,-60,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":60,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"red-jp2":{"href":"s3://sentinel-s2-l2a/tiles/13/T/DE/2023/10/8/0/B04.jp2","type":"image/jp2","title":"Red (band 4) - 10m","eo:bands":[{"name":"red","common_name":"red","description":"Red (band 4)","center_wavelength":0.665,"full_width_half_max":0.038}],"gsd":10,"proj:shape":[10980,10980],"proj:transform":[10,0,399960,0,-10,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":10,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"rededge1-jp2":{"href":"s3://sentinel-s2-l2a/tiles/13/T/DE/2023/10/8/0/B05.jp2","type":"image/jp2","title":"Red edge 1 (band 5) - 20m","eo:bands":[{"name":"rededge1","common_name":"rededge","description":"Red edge 1 (band 5)","center_wavelength":0.704,"full_width_half_max":0.019}],"gsd":20,"proj:shape":[5490,5490],"proj:transform":[20,0,399960,0,-20,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":20,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"rededge2-jp2":{"href":"s3://sentinel-s2-l2a/tiles/13/T/DE/2023/10/8/0/B06.jp2","type":"image/jp2","title":"Red edge 2 (band 6) - 20m","eo:bands":[{"name":"rededge2","common_name":"rededge","description":"Red edge 2 (band 6)","center_wavelength":0.74,"full_width_half_max":0.018}],"gsd":20,"proj:shape":[5490,5490],"proj:transform":[20,0,399960,0,-20,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":20,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"rededge3-jp2":{"href":"s3://sentinel-s2-l2a/tiles/13/T/DE/2023/10/8/0/B07.jp2","type":"image/jp2","title":"Red edge 3 (band 7) - 20m","eo:bands":[{"name":"rededge3","common_name":"rededge","description":"Red edge 3 (band 7)","center_wavelength":0.783,"full_width_half_max":0.028}],"gsd":20,"proj:shape":[5490,5490],"proj:transform":[20,0,399960,0,-20,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":20,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"scl-jp2":{"href":"s3://sentinel-s2-l2a/tiles/13/T/DE/2023/10/8/0/SCL.jp2","type":"image/jp2","title":"Scene classification map (SCL)","proj:shape":[5490,5490],"proj:transform":[20,0,399960,0,-20,4500000],"raster:bands":[{"nodata":0,"data_type":"uint8","spatial_resolution":20}],"roles":["data","reflectance"]},"swir16-jp2":{"href":"s3://sentinel-s2-l2a/tiles/13/T/DE/2023/10/8/0/B11.jp2","type":"image/jp2","title":"SWIR 1 (band 11) - 20m","eo:bands":[{"name":"swir16","common_name":"swir16","description":"SWIR 1 (band 11)","center_wavelength":1.61,"full_width_half_max":0.143}],"gsd":20,"proj:shape":[5490,5490],"proj:transform":[20,0,399960,0,-20,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":20,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"swir22-jp2":{"href":"s3://sentinel-s2-l2a/tiles/13/T/DE/2023/10/8/0/B12.jp2","type":"image/jp2","title":"SWIR 2 (band 12) - 20m","eo:bands":[{"name":"swir22","common_name":"swir22","description":"SWIR 2 (band 12)","center_wavelength":2.19,"full_width_half_max":0.242}],"gsd":20,"proj:shape":[5490,5490],"proj:transform":[20,0,399960,0,-20,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":20,"scale":0.0001,"offset":-0.1}],"roles":["data","reflectance"]},"visual-jp2":{"href":"s3://sentinel-s2-l2a/tiles/13/T/DE/2023/10/8/0/TCI.jp2","type":"image/jp2","title":"True color image","eo:bands":[{"name":"red","common_name":"red","description":"Red (band 4)","center_wavelength":0.665,"full_width_half_max":0.038},{"name":"green","common_name":"green","description":"Green (band 3)","center_wavelength":0.56,"full_width_half_max":0.045},{"name":"blue","common_name":"blue","description":"Blue (band 2)","center_wavelength":0.49,"full_width_half_max":0.098}],"proj:shape":[10980,10980],"proj:transform":[10,0,399960,0,-10,4500000],"roles":["visual"]},"wvp-jp2":{"href":"s3://sentinel-s2-l2a/tiles/13/T/DE/2023/10/8/0/WVP.jp2","type":"image/jp2","title":"Water vapour (WVP)","proj:shape":[5490,5490],"proj:transform":[20,0,399960,0,-20,4500000],"raster:bands":[{"nodata":0,"data_type":"uint16","bits_per_sample":15,"spatial_resolution":20,"unit":"cm","scale":0.001,"offset":0}],"roles":["data","reflectance"]}},"bbox":[-106.18316062292897,39.65576169772817,-104.88456877606482,40.650789813976196],"stac_extensions":["https://stac-extensions.github.io/processing/v1.1.0/schema.json","https://stac-extensions.github.io/grid/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://stac-extensions.github.io/mgrs/v1.0.0/schema.json","https://stac-extensions.github.io/eo/v1.1.0/schema.json"],"collection":"sentinel-2-l2a"},{"type":"Feature","stac_version":"1.0.0","id":"LC08_L2SP_033032_20231008_02_T1","properties":{"platform":"landsat-8","instruments":["oli","tirs"],"created":"2023-10-18T07:31:29.878Z","gsd":30,"description":"Landsat Collection 2 Level-2","eo:cloud_cover":0.06,"view:off_nadir":0,"view:sun_elevation":41.18722795,"view:sun_azimuth":157.5994568,"proj:epsg":32613,"proj:shape":[7831,7711],"proj:transform":[30,0,449085,0,-30,4581915],"proj:centroid":{"lat":40.3225,"lon":-104.22602},"landsat:cloud_cover_land":0.06,"landsat:wrs_type":"2","landsat:wrs_path":"033","landsat:wrs_row":"032","landsat:collection_category":"T1","landsat:collection_number":"02","landsat:correction":"L2SP","landsat:scene_id":"LC80330322023281LGN00","landsat:product_generated":"2023-10-17T16:22:27Z","grid:code":"WRS2-033032","sci:doi":"10.5066/P9OGBGM6","datetime":"2023-10-08T17:37:26.656958Z","earthsearch:payload_id":"usgs-landsat-c2l2/workflow-landsat-to-stac/LC08_L2SP_033032_20231008_20231017_02_T1_SR","processing:software":{"landsat-to-stac":"v2023.11.16"},"updated":"2023-11-30T14:47:41.847Z"},"geometry":{"type":"Polygon","coordinates":[[[-105.04670323039021,41.382809350013794],[-105.5642109040829,39.66577784361798],[-103.46604305388287,39.26994744234798],[-102.89210096366858,40.984398669248556],[-105.04670323039021,41.382809350013794]]]},"links":[{"rel":"self","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/items/LC08_L2SP_033032_20231008_02_T1"},{"rel":"canonical","href":"s3://earthsearch-data/landsat-c2-l2/033/032/2023/10/LC08_L2SP_033032_20231008_02_T1/LC08_L2SP_033032_20231008_02_T1.json","type":"application/json"},{"rel":"cite-as","href":"https://doi.org/10.5066/P9OGBGM6","title":"Landsat 8-9 OLI/TIRS Collection 2 Level-2"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-sr/items/LC08_L2SP_033032_20231008_20231017_02_T1_SR","type":"application/json","title":"USGS STAC Item"},{"rel":"via","href":"https://landsatlook.usgs.gov/stac-server/collections/landsat-c2l2-st/items/LC08_L2SP_033032_20231008_20231017_02_T1_ST","type":"application/json","title":"USGS STAC Item"},{"rel":"parent","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2"},{"rel":"collection","type":"application/json","href":"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2"},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"},{"rel":"thumbnail","href":"https://earth-search.aws.element84.com/v1/collections/landsat-c2-l2/items/LC08_L2SP_033032_20231008_02_T1/thumbnail"}],"assets":{"thumbnail":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_thumb_small.jpeg","type":"image/jpeg","title":"Thumbnail image","roles":["thumbnail"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"reduced_resolution_browse":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_thumb_large.jpeg","type":"image/jpeg","title":"Reduced resolution browse image","roles":["overview"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"mtl.json":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_MTL.json","type":"application/json","title":"Product Metadata File (json)","description":"Collection 2 Level-2 Product Metadata File (json)","roles":["metadata"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"mtl.txt":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_MTL.txt","type":"text/plain","title":"Product Metadata File (txt)","description":"Collection 2 Level-2 Product Metadata File (txt)","roles":["metadata"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"mtl.xml":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_MTL.xml","type":"application/xml","title":"Product Metadata File (xml)","description":"Collection 2 Level-2 Product Metadata File (xml)","roles":["metadata"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"ang":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_ANG.txt","type":"text/plain","title":"Angle Coefficients File","description":"Collection 2 Level-1 Angle Coefficients File","roles":["metadata"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"qa_pixel":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_QA_PIXEL.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Pixel Quality Assessment Band","description":"Collection 2 Level-1 Pixel Quality Assessment Band (QA_PIXEL)","classification:bitfields":[{"name":"fill","description":"Image or fill data","offset":0,"length":1,"classes":[{"value":0,"name":"not_fill","description":"Image data"},{"value":1,"name":"fill","description":"Fill data"}]},{"name":"dilated_cloud","description":"Dilated cloud","offset":1,"length":1,"classes":[{"value":0,"name":"not_dilated","description":"Cloud is not dilated or no cloud"},{"value":1,"name":"dilated","description":"Cloud dilation"}]},{"name":"cirrus","description":"Cirrus mask","offset":2,"length":1,"classes":[{"value":0,"name":"not_cirrus","description":"Cirrus confidence is not high"},{"value":1,"name":"cirrus","description":"High confidence cirrus"}]},{"name":"cloud","description":"Cloud mask","offset":3,"length":1,"classes":[{"value":0,"name":"not_cloud","description":"Cloud confidence is not high"},{"value":1,"name":"cloud","description":"High confidence cloud"}]},{"name":"cloud_shadow","description":"Cloud shadow mask","offset":4,"length":1,"classes":[{"value":0,"name":"not_shadow","description":"Cloud shadow confidence is not high"},{"value":1,"name":"shadow","description":"High confidence cloud shadow"}]},{"name":"snow","description":"Snow/Ice mask","offset":5,"length":1,"classes":[{"value":0,"name":"not_snow","description":"Snow/Ice confidence is not high"},{"value":1,"name":"snow","description":"High confidence snow cover"}]},{"name":"clear","description":"Clear mask","offset":6,"length":1,"classes":[{"value":0,"name":"not_clear","description":"Cloud or dilated cloud bits are set"},{"value":1,"name":"clear","description":"Cloud and dilated cloud bits are not set"}]},{"name":"water","description":"Water mask","offset":7,"length":1,"classes":[{"value":0,"name":"not_water","description":"Land or cloud"},{"value":1,"name":"water","description":"Water"}]},{"name":"cloud_confidence","description":"Cloud confidence levels","offset":8,"length":2,"classes":[{"value":0,"name":"not_set","description":"No confidence level set"},{"value":1,"name":"low","description":"Low confidence cloud"},{"value":2,"name":"medium","description":"Medium confidence cloud"},{"value":3,"name":"high","description":"High confidence cloud"}]},{"name":"cloud_shadow_confidence","description":"Cloud shadow confidence levels","offset":10,"length":2,"classes":[{"value":0,"name":"not_set","description":"No confidence level set"},{"value":1,"name":"low","description":"Low confidence cloud shadow"},{"value":2,"name":"reserved","description":"Reserved - value not used"},{"value":3,"name":"high","description":"High confidence cloud shadow"}]},{"name":"snow_confidence","description":"Snow/Ice confidence levels","offset":12,"length":2,"classes":[{"value":0,"name":"not_set","description":"No confidence level set"},{"value":1,"name":"low","description":"Low confidence snow/ice"},{"value":2,"name":"reserved","description":"Reserved - value not used"},{"value":3,"name":"high","description":"High confidence snow/ice"}]},{"name":"cirrus_confidence","description":"Cirrus confidence levels","offset":14,"length":2,"classes":[{"value":0,"name":"not_set","description":"No confidence level set"},{"value":1,"name":"low","description":"Low confidence cirrus"},{"value":2,"name":"reserved","description":"Reserved - value not used"},{"value":3,"name":"high","description":"High confidence cirrus"}]}],"raster:bands":[{"nodata":1,"data_type":"uint16","spatial_resolution":30,"unit":"bit index"}],"roles":["cloud","cloud-shadow","snow-ice","water-mask"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"qa_radsat":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_QA_RADSAT.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Radiometric Saturation and Terrain Occlusion Quality Assessment Band","description":"Collection 2 Level-1 Radiometric Saturation and Terrain Occlusion Quality Assessment Band (QA_RADSAT)","classification:bitfields":[{"name":"band1","description":"Band 1 radiometric saturation","offset":0,"length":1,"classes":[{"value":0,"name":"not_saturated","description":"Band 1 not saturated"},{"value":1,"name":"saturated","description":"Band 1 saturated"}]},{"name":"band2","description":"Band 2 radiometric saturation","offset":1,"length":1,"classes":[{"value":0,"name":"not_saturated","description":"Band 2 not saturated"},{"value":1,"name":"saturated","description":"Band 2 saturated"}]},{"name":"band3","description":"Band 3 radiometric saturation","offset":2,"length":1,"classes":[{"value":0,"name":"not_saturated","description":"Band 3 not saturated"},{"value":1,"name":"saturated","description":"Band 3 saturated"}]},{"name":"band4","description":"Band 4 radiometric saturation","offset":3,"length":1,"classes":[{"value":0,"name":"not_saturated","description":"Band 4 not saturated"},{"value":1,"name":"saturated","description":"Band 4 saturated"}]},{"name":"band5","description":"Band 5 radiometric saturation","offset":4,"length":1,"classes":[{"value":0,"name":"not_saturated","description":"Band 5 not saturated"},{"value":1,"name":"saturated","description":"Band 5 saturated"}]},{"name":"band6","description":"Band 6 radiometric saturation","offset":5,"length":1,"classes":[{"value":0,"name":"not_saturated","description":"Band 6 not saturated"},{"value":1,"name":"saturated","description":"Band 6 saturated"}]},{"name":"band7","description":"Band 7 radiometric saturation","offset":6,"length":1,"classes":[{"value":0,"name":"not_saturated","description":"Band 7 not saturated"},{"value":1,"name":"saturated","description":"Band 7 saturated"}]},{"name":"band9","description":"Band 9 radiometric saturation","offset":8,"length":1,"classes":[{"value":0,"name":"not_saturated","description":"Band 9 not saturated"},{"value":1,"name":"saturated","description":"Band 9 saturated"}]},{"name":"occlusion","description":"Terrain not visible from sensor due to intervening terrain","offset":11,"length":1,"classes":[{"value":0,"name":"not_occluded","description":"Terrain is not occluded"},{"value":1,"name":"occluded","description":"Terrain is occluded"}]}],"raster:bands":[{"data_type":"uint16","spatial_resolution":30,"unit":"bit index"}],"roles":["saturation"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"coastal":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_SR_B1.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Coastal/Aerosol Band","description":"Collection 2 Level-2 Coastal/Aerosol Band (SR_B1) Surface Reflectance","eo:bands":[{"name":"OLI_B1","common_name":"coastal","description":"Coastal/Aerosol","center_wavelength":0.44,"full_width_half_max":0.02}],"raster:bands":[{"nodata":0,"data_type":"uint16","spatial_resolution":30,"scale":0.0000275,"offset":-0.2}],"roles":["data","reflectance"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"blue":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_SR_B2.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Blue Band","description":"Collection 2 Level-2 Blue Band (SR_B2) Surface Reflectance","eo:bands":[{"name":"OLI_B2","common_name":"blue","description":"Visible blue","center_wavelength":0.48,"full_width_half_max":0.06}],"raster:bands":[{"nodata":0,"data_type":"uint16","spatial_resolution":30,"scale":0.0000275,"offset":-0.2}],"roles":["data","reflectance"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"green":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_SR_B3.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Green Band","description":"Collection 2 Level-2 Green Band (SR_B3) Surface Reflectance","eo:bands":[{"name":"OLI_B3","common_name":"green","description":"Visible green","center_wavelength":0.56,"full_width_half_max":0.06}],"raster:bands":[{"nodata":0,"data_type":"uint16","spatial_resolution":30,"scale":0.0000275,"offset":-0.2}],"roles":["data","reflectance"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"red":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_SR_B4.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Red Band","description":"Collection 2 Level-2 Red Band (SR_B4) Surface Reflectance","eo:bands":[{"name":"OLI_B4","common_name":"red","description":"Visible red","center_wavelength":0.65,"full_width_half_max":0.04}],"raster:bands":[{"nodata":0,"data_type":"uint16","spatial_resolution":30,"scale":0.0000275,"offset":-0.2}],"roles":["data","reflectance"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"nir08":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_SR_B5.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Near Infrared Band 0.8","description":"Collection 2 Level-2 Near Infrared Band 0.8 (SR_B5) Surface Reflectance","eo:bands":[{"name":"OLI_B5","common_name":"nir08","description":"Near infrared","center_wavelength":0.87,"full_width_half_max":0.03}],"raster:bands":[{"nodata":0,"data_type":"uint16","spatial_resolution":30,"scale":0.0000275,"offset":-0.2}],"roles":["data","reflectance"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"swir16":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_SR_B6.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 1.6","description":"Collection 2 Level-2 Short-wave Infrared Band 1.6 (SR_B6) Surface Reflectance","eo:bands":[{"name":"OLI_B6","common_name":"swir16","description":"Short-wave infrared","center_wavelength":1.61,"full_width_half_max":0.09}],"raster:bands":[{"nodata":0,"data_type":"uint16","spatial_resolution":30,"scale":0.0000275,"offset":-0.2}],"roles":["data","reflectance"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"swir22":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_SR_B7.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Short-wave Infrared Band 2.2","description":"Collection 2 Level-2 Short-wave Infrared Band 2.2 (SR_B7) Surface Reflectance","eo:bands":[{"name":"OLI_B7","common_name":"swir22","description":"Short-wave infrared","center_wavelength":2.2,"full_width_half_max":0.19}],"raster:bands":[{"nodata":0,"data_type":"uint16","spatial_resolution":30,"scale":0.0000275,"offset":-0.2}],"roles":["data","reflectance"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"qa_aerosol":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_SR_QA_AEROSOL.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Aerosol Quality Assessment Band","description":"Collection 2 Level-2 Aerosol Quality Assessment Band (SR_QA_AEROSOL) Surface Reflectance Product","classification:bitfields":[{"name":"fill","description":"Image or fill data","offset":0,"length":1,"classes":[{"value":0,"name":"not_fill","description":"Pixel is not fill"},{"value":1,"name":"fill","description":"Pixel is fill"}]},{"name":"retrieval","description":"Valid aerosol retrieval","offset":1,"length":1,"classes":[{"value":0,"name":"not_valid","description":"Pixel retrieval is not valid"},{"value":1,"name":"valid","description":"Pixel retrieval is valid"}]},{"name":"water","description":"Water mask","offset":2,"length":1,"classes":[{"value":0,"name":"not_water","description":"Pixel is not water"},{"value":1,"name":"water","description":"Pixel is water"}]},{"name":"interpolated","description":"Aerosol interpolation","offset":5,"length":1,"classes":[{"value":0,"name":"not_interpolated","description":"Pixel is not interpolated aerosol"},{"value":1,"name":"interpolated","description":"Pixel is interpolated aerosol"}]},{"name":"level","description":"Aerosol level","offset":6,"length":2,"classes":[{"value":0,"name":"climatology","description":"No aerosol correction applied"},{"value":1,"name":"low","description":"Low aerosol level"},{"value":2,"name":"medium","description":"Medium aerosol level"},{"value":3,"name":"high","description":"High aerosol level"}]}],"raster:bands":[{"nodata":1,"data_type":"uint8","spatial_resolution":30,"unit":"bit index"}],"roles":["data-mask","water-mask"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"lwir11":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_ST_B10.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Band","description":"Collection 2 Level-2 Thermal Infrared Band (ST_B10) Surface Temperature","eo:bands":[{"name":"TIRS_B10","common_name":"lwir11","description":"Long-wave infrared","center_wavelength":10.9,"full_width_half_max":0.59}],"raster:bands":[{"nodata":0,"data_type":"uint16","spatial_resolution":30,"unit":"kelvin","scale":0.00341802,"offset":149}],"gsd":100,"roles":["data","temperature"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"atran":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_ST_ATRAN.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Atmospheric Transmittance Band","description":"Collection 2 Level-2 Atmospheric Transmittance Band (ST_ATRAN) Surface Temperature Product","raster:bands":[{"nodata":-9999,"data_type":"int16","spatial_resolution":30,"scale":0.0001}],"roles":["data"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"cdist":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_ST_CDIST.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Cloud Distance Band","description":"Collection 2 Level-2 Cloud Distance Band (ST_CDIST) Surface Temperature Product","raster:bands":[{"nodata":-9999,"data_type":"int16","spatial_resolution":30,"unit":"kilometer","scale":0.01}],"roles":["data"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"drad":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_ST_DRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Downwelled Radiance Band","description":"Collection 2 Level-2 Downwelled Radiance Band (ST_DRAD) Surface Temperature Product","raster:bands":[{"nodata":-9999,"data_type":"int16","spatial_resolution":30,"unit":"watt/steradian/square_meter/micrometer","scale":0.001}],"roles":["data"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"urad":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_ST_URAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Upwelled Radiance Band","description":"Collection 2 Level-2 Upwelled Radiance Band (ST_URAD) Surface Temperature Product","raster:bands":[{"nodata":-9999,"data_type":"int16","spatial_resolution":30,"unit":"watt/steradian/square_meter/micrometer","scale":0.001}],"roles":["data"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"trad":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_ST_TRAD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Thermal Radiance Band","description":"Collection 2 Level-2 Thermal Radiance Band (ST_TRAD) Surface Temperature Product","raster:bands":[{"nodata":-9999,"data_type":"int16","spatial_resolution":30,"unit":"watt/steradian/square_meter/micrometer","scale":0.001}],"roles":["data"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"emis":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_ST_EMIS.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Band","description":"Collection 2 Level-2 Emissivity Band (ST_EMIS) Surface Temperature Product","raster:bands":[{"nodata":-9999,"data_type":"int16","spatial_resolution":30,"scale":0.0001}],"roles":["data","emissivity"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"emsd":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_ST_EMSD.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Emissivity Standard Deviation Band","description":"Collection 2 Level-2 Emissivity Standard Deviation Band (ST_EMSD) Surface Temperature Product","raster:bands":[{"nodata":-9999,"data_type":"int16","spatial_resolution":30,"scale":0.0001}],"roles":["data","emissivity"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true},"qa":{"href":"s3://usgs-landsat/collection02/level-2/standard/oli-tirs/2023/033/032/LC08_L2SP_033032_20231008_20231017_02_T1/LC08_L2SP_033032_20231008_20231017_02_T1_ST_QA.TIF","type":"image/tiff; application=geotiff; profile=cloud-optimized","title":"Surface Temperature Quality Assessment Band","description":"Collection 2 Level-2 Quality Assessment Band (ST_QA) Surface Temperature Product","raster:bands":[{"nodata":-9999,"data_type":"int16","spatial_resolution":30,"unit":"kelvin","scale":0.01}],"roles":["data"],"storage:platform":"AWS","storage:region":"us-west-2","storage:requester_pays":true}},"bbox":[-105.606232,39.255216,-102.84603,41.385732],"stac_extensions":["https://stac-extensions.github.io/projection/v1.1.0/schema.json","https://stac-extensions.github.io/classification/v1.0.0/schema.json","https://stac-extensions.github.io/storage/v1.0.0/schema.json","https://stac-extensions.github.io/raster/v1.1.0/schema.json","https://stac-extensions.github.io/processing/v1.1.0/schema.json","https://stac-extensions.github.io/scientific/v1.0.0/schema.json","https://stac-extensions.github.io/grid/v1.1.0/schema.json","https://stac-extensions.github.io/view/v1.0.0/schema.json","https://stac-extensions.github.io/eo/v1.1.0/schema.json","https://stac-extensions.github.io/landsat/v2.0.0/schema.json"],"collection":"landsat-c2-l2"}],"links":[{"rel":"next","title":"Next page of Items","method":"POST","type":"application/geo+json","href":"https://earth-search.aws.element84.com/v1/search","merge":false,"body":{"datetime":"2023-10-08T00:00:00Z/2023-10-08T23:59:59Z","intersects":{"type":"Point","coordinates":[-105.1019,40.1672]},"collections":["sentinel-2-l2a","landsat-c2-l2"],"next":"2023-10-08T17:37:26.656958Z,LC08_L2SP_033032_20231008_02_T1,landsat-c2-l2"}},{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"}]}' headers: Connection: - keep-alive Content-Encoding: - gzip Content-Length: - '5720' Content-Type: - application/geo+json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:52:06 GMT Via: - 1.1 ea02982ea8ec84214c2e0d4d803fb0f4.cloudfront.net (CloudFront) X-Amz-Cf-Id: - KnKn4ecWbFdtrcNnREEfh_sCqhs1bieh4k9V914FdgTVznoIV-4mMg== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f1f6-2e6f6ab54da462fe250dabee;Parent=58d76a8eed5e6938;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"b82d-fQljHyIcdE8f10m87XM4/q0BOmw" x-amz-apigw-id: - N2q-lEeNPHcEA5g= x-amzn-Remapped-content-length: - '47149' x-amzn-RequestId: - 75bb8cae-1491-4488-b45f-b677d12756c6 x-powered-by: - Express status: code: 200 message: OK - request: body: '{"datetime": "2023-10-08T00:00:00Z/2023-10-08T23:59:59Z", "intersects": {"type": "Point", "coordinates": [-105.1019, 40.1672]}, "collections": ["sentinel-2-l2a", "landsat-c2-l2"], "next": "2023-10-08T17:37:26.656958Z,LC08_L2SP_033032_20231008_02_T1,landsat-c2-l2"}' headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive Content-Length: - '264' Content-Type: - application/json User-Agent: - python-requests/2.32.3 method: POST uri: https://earth-search.aws.element84.com/v1/search response: body: string: '{"type":"FeatureCollection","stac_version":"1.0.0","stac_extensions":[],"context":{"limit":10,"matched":2,"returned":0},"numberMatched":2,"numberReturned":0,"features":[],"links":[{"rel":"root","type":"application/json","href":"https://earth-search.aws.element84.com/v1"}]}' headers: Connection: - keep-alive Content-Length: - '273' Content-Type: - application/geo+json; charset=utf-8 Date: - Thu, 17 Jul 2025 12:52:06 GMT Via: - 1.1 ea02982ea8ec84214c2e0d4d803fb0f4.cloudfront.net (CloudFront) X-Amz-Cf-Id: - 88BPH0TJispqJjNhvvODv1uj1qJc44eb2N23MtzL5jP7OEIeh8aFSQ== X-Amz-Cf-Pop: - DEN52-C1 X-Amzn-Trace-Id: - Root=1-6878f1f6-16440efc330a416b2a587c2c;Parent=3de3260f0599aceb;Sampled=0;Lineage=1:9e2884e9:0 X-Cache: - Miss from cloudfront access-control-allow-origin: - '*' etag: - W/"111-7vxaAljwSdJNfA0V9FinjXcubNg" x-amz-apigw-id: - N2q-mGxwvHcEuig= x-amzn-Remapped-content-length: - '273' x-amzn-RequestId: - b5695ee1-6949-4071-8c20-c505436de367 x-powered-by: - Express status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_stac_api_io/000077500000000000000000000000001503646565400227665ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_stac_api_io/TestSTAC_IOOverride.test_request_input.yaml000066400000000000000000000650531503646565400333110ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3368' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:52:07 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125206Z-167d46d96d844wzkhC1DEN8g9s0000000s40000000003n3n status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_stac_api_io/TestSTAC_IOOverride.test_str_input.yaml000066400000000000000000000650531503646565400324310ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3368' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:52:07 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125207Z-167d46d96d8pgxfphC1DENg83w0000000s4g000000004dkv status: code: 200 message: OK version: 1 TestSTAC_IOOverride.test_timeout_smoke_test.yaml000066400000000000000000000650531503646565400342460ustar00rootroot00000000000000pystac-client-0.9.0/tests/cassettes/test_stac_api_iointeractions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1 response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3368' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:52:08 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125208Z-167d46d96d8rlpdvhC1DEN32q800000005600000000010ry status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/cassettes/test_stac_api_io/test_stac_io_in_pystac.yaml000066400000000000000000000650541503646565400304150ustar00rootroot00000000000000interactions: - request: body: null headers: Accept: - '*/*' Accept-Encoding: - gzip, deflate Connection: - keep-alive User-Agent: - python-requests/2.32.3 method: GET uri: https://planetarycomputer.microsoft.com/api/stac/v1/ response: body: string: '{"type":"Catalog","id":"microsoft-pc","title":"Microsoft Planetary Computer STAC API","description":"Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer","stac_version":"1.0.0","conformsTo":["http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core","https://api.stacspec.org/v1.0.0/item-search#query","https://api.stacspec.org/v1.0.0/item-search#fields","http://www.opengis.net/spec/cql2/1.0/conf/cql2-json","http://www.opengis.net/spec/cql2/1.0/conf/cql2-text","https://api.stacspec.org/v1.0.0/collections","https://api.stacspec.org/v1.0.0/item-search","https://api.stacspec.org/v1.0.0/ogcapi-features","https://api.stacspec.org/v1.0.0/core","http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/filter","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30","http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2","http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson","https://api.stacspec.org/v1.0.0-rc.2/item-search#filter","https://api.stacspec.org/v1.0.0/item-search#sort"],"links":[{"rel":"self","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"root","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/"},{"rel":"data","type":"application/json","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections"},{"rel":"conformance","type":"application/json","title":"STAC/OGC conformance classes implemented by this server","href":"https://planetarycomputer.microsoft.com/api/stac/v1/conformance"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"GET"},{"rel":"search","type":"application/geo+json","title":"STAC search","href":"https://planetarycomputer.microsoft.com/api/stac/v1/search","method":"POST"},{"rel":"http://www.opengis.net/def/rel/ogc/1.0/queryables","type":"application/schema+json","title":"Queryables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/queryables","method":"GET"},{"rel":"child","type":"application/json","title":"Daymet Annual Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-pr"},{"rel":"child","type":"application/json","title":"Daymet Daily Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-hi"},{"rel":"child","type":"application/json","title":"USGS 3DEP Seamless DEMs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-seamless"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Surface Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dsm"},{"rel":"child","type":"application/json","title":"Forest Inventory and Analysis","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fia"},{"rel":"child","type":"application/json","title":"gridMET","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gridmet"},{"rel":"child","type":"application/json","title":"Daymet Annual North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-na"},{"rel":"child","type":"application/json","title":"Daymet Monthly North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-na"},{"rel":"child","type":"application/json","title":"Daymet Annual Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-annual-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Hawaii","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-hi"},{"rel":"child","type":"application/json","title":"Daymet Monthly Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-monthly-pr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Tables","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-tables"},{"rel":"child","type":"application/json","title":"HGB: Harmonized Global Biomass for 2010","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hgb"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-30","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-30"},{"rel":"child","type":"application/json","title":"Copernicus DEM GLO-90","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cop-dem-glo-90"},{"rel":"child","type":"application/json","title":"TerraClimate","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/terraclimate"},{"rel":"child","type":"application/json","title":"Earth Exchange Global Daily Downscaled Projections (NEX-GDDP-CMIP6)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasa-nex-gddp-cmip6"},{"rel":"child","type":"application/json","title":"GPM IMERG","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gpm-imerg-hhr"},{"rel":"child","type":"application/json","title":"gNATSGO Soil Database - Rasters","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gnatsgo-rasters"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Height above Ground","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-hag"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-annual-v02"},{"rel":"child","type":"application/json","title":"GOES-R Cloud & Moisture Imagery","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-cmi"},{"rel":"child","type":"application/json","title":"CONUS404","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/conus404"},{"rel":"child","type":"application/json","title":"Sentinel 1 Radiometrically Terrain Corrected (RTC)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-rtc"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Intensity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-intensity"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Source","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-pointsourceid"},{"rel":"child","type":"application/json","title":"MTBS: Monitoring Trends in Burn Severity","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mtbs"},{"rel":"child","type":"application/json","title":"C-CAP Regional Land Cover and Change","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-c-cap"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Point Cloud","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-copc"},{"rel":"child","type":"application/json","title":"MODIS Burned Area Monthly","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-64A1-061"},{"rel":"child","type":"application/json","title":"ALOS Forest/Non-Forest Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-fnf-mosaic"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Returns","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-returns"},{"rel":"child","type":"application/json","title":"MoBI: Map of Biodiversity Importance","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/mobi"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l2"},{"rel":"child","type":"application/json","title":"ERA5 - PDS","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/era5-pds"},{"rel":"child","type":"application/json","title":"Chloris Biomass","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chloris-biomass"},{"rel":"child","type":"application/json","title":"HydroForecast - Kwando & Upper Zambezi Rivers","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/kaza-hydroforecast"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Analytic)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-analytic"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A2-061"},{"rel":"child","type":"application/json","title":"Daymet Daily Puerto Rico","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-pr"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model (Native)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm-native"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Classification","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-classification"},{"rel":"child","type":"application/json","title":"USGS 3DEP Lidar Digital Terrain Model","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/3dep-lidar-dtm"},{"rel":"child","type":"application/json","title":"USGS Gap Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap"},{"rel":"child","type":"application/json","title":"MODIS Gross Primary Productivity 8-Day Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A2HGF-061"},{"rel":"child","type":"application/json","title":"Planet-NICFI Basemaps (Visual)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/planet-nicfi-visual"},{"rel":"child","type":"application/json","title":"Global Biodiversity Information Facility (GBIF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/gbif"},{"rel":"child","type":"application/json","title":"MODIS Net Primary Production Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-17A3HGF-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09A1-061"},{"rel":"child","type":"application/json","title":"ALOS World 3D-30m","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-dem"},{"rel":"child","type":"application/json","title":"ALOS PALSAR Annual Mosaic","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/alos-palsar-mosaic"},{"rel":"child","type":"application/json","title":"Deltares Global Water Availability","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-water-availability"},{"rel":"child","type":"application/json","title":"MODIS Net Evapotranspiration Yearly Gap-Filled","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-16A3GF-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/3-Band Emissivity 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-21A2-061"},{"rel":"child","type":"application/json","title":"US Census","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/us-census"},{"rel":"child","type":"application/json","title":"JRC Global Surface Water","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/jrc-gsw"},{"rel":"child","type":"application/json","title":"Deltares Global Flood Maps","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/deltares-floods"},{"rel":"child","type":"application/json","title":"MODIS Nadir BRDF-Adjusted Reflectance (NBAR) Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-43A4-061"},{"rel":"child","type":"application/json","title":"MODIS Surface Reflectance 8-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-09Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A1-061"},{"rel":"child","type":"application/json","title":"HREA: High Resolution Electricity Access","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hrea"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (250m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13Q1-061"},{"rel":"child","type":"application/json","title":"MODIS Thermal Anomalies/Fire 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-14A2-061"},{"rel":"child","type":"application/json","title":"Sentinel-2 Level-2A","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 8-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A2H-061"},{"rel":"child","type":"application/json","title":"MODIS Land Surface Temperature/Emissivity Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-11A1-061"},{"rel":"child","type":"application/json","title":"MODIS Leaf Area Index/FPAR 4-Day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-15A3H-061"},{"rel":"child","type":"application/json","title":"MODIS Vegetation Indices 16-Day (500m)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-13A1-061"},{"rel":"child","type":"application/json","title":"Daymet Daily North America","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/daymet-daily-na"},{"rel":"child","type":"application/json","title":"Land Cover of Canada","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nrcan-landcover"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover 8-day","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A2-061"},{"rel":"child","type":"application/json","title":"ECMWF Open Data (real-time)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ecmwf-forecast"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 24-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-24h-pass2"},{"rel":"child","type":"application/json","title":"NASADEM HGT v001","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/nasadem"},{"rel":"child","type":"application/json","title":"Esri 10-Meter Land Cover (10-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc"},{"rel":"child","type":"application/json","title":"Landsat Collection 2 Level-1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-c2-l1"},{"rel":"child","type":"application/json","title":"Denver Regional Council of Governments Land Use Land Cover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/drcog-lulc"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (7-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-7"},{"rel":"child","type":"application/json","title":"Chesapeake Land Cover (13-class)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lc-13"},{"rel":"child","type":"application/json","title":"Chesapeake Land Use","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/chesapeake-lu"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass1"},{"rel":"child","type":"application/json","title":"NOAA MRMS QPE 1-Hour Pass 2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-mrms-qpe-1h-pass2"},{"rel":"child","type":"application/json","title":"Monthly NOAA U.S. Climate Gridded Dataset (NClimGrid)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-nclimgrid-monthly"},{"rel":"child","type":"application/json","title":"USDA Cropland Data Layers (CDLs)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usda-cdl"},{"rel":"child","type":"application/json","title":"Urban Innovation Eclipse Sensor Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/eclipse"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (Cloud Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc"},{"rel":"child","type":"application/json","title":"ESA Climate Change Initiative Land Cover Maps (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-cci-lc-netcdf"},{"rel":"child","type":"application/json","title":"FWS National Wetlands Inventory","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/fws-nwi"},{"rel":"child","type":"application/json","title":"USGS LCMAP CONUS Collection 1.3","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-conus-v13"},{"rel":"child","type":"application/json","title":"USGS LCMAP Hawaii Collection 1.0","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/usgs-lcmap-hawaii-v10"},{"rel":"child","type":"application/json","title":"NOAA US Tabular Climate Normals","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-tabular"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (NetCDF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-netcdf"},{"rel":"child","type":"application/json","title":"GOES-R Lightning Detection","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/goes-glm"},{"rel":"child","type":"application/json","title":"Sentinel 1 Level-1 Ground Range Detected (GRD)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-1-grd"},{"rel":"child","type":"application/json","title":"NOAA US Gridded Climate Normals (Cloud-Optimized GeoTIFF)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-climate-normals-gridded"},{"rel":"child","type":"application/json","title":"ASTER L1T","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-SA-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by-sa"},{"rel":"child","type":"application/json","title":"NAIP: National Agriculture Imagery Program","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip"},{"rel":"child","type":"application/json","title":"10m Annual Land Use Land Cover (9-class) V1","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-lulc-9-class"},{"rel":"child","type":"application/json","title":"Biodiversity Intactness","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/io-biodiversity"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC0-1.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc0"},{"rel":"child","type":"application/json","title":"CIL Global Downscaled Projections for Climate Impacts Research (CC-BY-4.0)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/cil-gdpcir-cc-by"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - WHOI CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-whoi-netcdf"},{"rel":"child","type":"application/json","title":"Sea Surface Temperature - Optimum Interpolation CDR","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-sea-surface-temperature-optimum-interpolation"},{"rel":"child","type":"application/json","title":"MODIS Snow Cover Daily","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/modis-10A1-061"},{"rel":"child","type":"application/json","title":"Sentinel-5P Level-2","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-5p-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Water (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-wfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Global Ocean Heat Content CDR NetCDFs","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/noaa-cdr-ocean-heat-content-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Landsat Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-l30"},{"rel":"child","type":"application/json","title":"Sentinel-3 Global Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-aod-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 10-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-v10-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land (Full Resolution)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-olci-lfr-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-lan-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-lst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Sea Surface Temperature","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-wst-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Ocean Radar Altimetry","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-sral-wat-l2-netcdf"},{"rel":"child","type":"application/json","title":"Harmonized Landsat Sentinel-2 (HLS) Version 2.0, Sentinel-2 Data","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/hls2-s30"},{"rel":"child","type":"application/json","title":"Microsoft Building Footprints","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/ms-buildings"},{"rel":"child","type":"application/json","title":"Sentinel-3 Fire Radiative Power","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-slstr-frp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Land Surface Reflectance and Aerosol","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-syn-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 Top of Atmosphere Reflectance (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vgp-l2-netcdf"},{"rel":"child","type":"application/json","title":"Sentinel-3 1-Day Surface Reflectance and NDVI (SPOT VEGETATION)","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-3-synergy-vg1-l2-netcdf"},{"rel":"child","type":"application/json","title":"ESA WorldCover","href":"https://planetarycomputer.microsoft.com/api/stac/v1/collections/esa-worldcover"},{"rel":"service-desc","type":"application/vnd.oai.openapi+json;version=3.0","title":"OpenAPI service description","href":"https://planetarycomputer.microsoft.com/api/stac/v1/openapi.json"},{"rel":"service-doc","type":"text/html","title":"OpenAPI service documentation","href":"https://planetarycomputer.microsoft.com/api/stac/v1/docs"}],"stac_extensions":[]}' headers: Accept-Ranges: - bytes Access-Control-Allow-Credentials: - 'true' Access-Control-Allow-Headers: - X-PC-Request-Entity,DNT,Keep-Alive,User-Agent,X-Requested-With,If-Modified-Since,Cache-Control,Content-Type,Authorization Access-Control-Allow-Methods: - PUT, GET, POST, OPTIONS Access-Control-Allow-Origin: - '*' Access-Control-Max-Age: - '1728000' Connection: - keep-alive Content-Length: - '3368' Content-Type: - application/json Date: - Thu, 17 Jul 2025 12:52:09 GMT Strict-Transport-Security: - max-age=31536000; includeSubDomains X-Cache: - CONFIG_NOCACHE content-encoding: - gzip vary: - Accept-Encoding x-azure-ref: - 20250717T125209Z-167d46d96d88hw2shC1DENzkdg0000000kzg000000003ng5 status: code: 200 message: OK version: 1 pystac-client-0.9.0/tests/data/000077500000000000000000000000001503646565400163705ustar00rootroot00000000000000pystac-client-0.9.0/tests/data/astraea_api.json000066400000000000000000000377151503646565400215510ustar00rootroot00000000000000{ "conformsTo": [ "http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core", "http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30", "http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson", "http://www.opengis.net/spec/ogcapi_common-2/1.0/req/collections", "http://stacspec.org/spec/api/1.0.0-beta.1/core", "http://stacspec.org/spec/api/1.0.0-beta.1/req/stac-search", "http://stacspec.org/spec/api/1.0.0-beta.1/req/stac-response", "http://stacspec.org/spec/api/1.0.0-beta.1/req/fields", "http://stacspec.org/spec/api/1.0.0-beta.1/req/context", "http://stacspec.org/spec/api/1.0.0-beta.1/req/sort" ], "description": "Astraea Earth OnDemand geospatial imagery query and analysis tool", "id": "astraea", "links": [ { "href": "https://eod-catalog-svc-prod.astraea.earth", "rel": "self", "title": "Self", "type": "application/json" }, { "href": "https://eod-catalog-svc-prod.astraea.earth", "rel": "root", "title": "Root", "type": "application/json" }, { "href": "https://eod-catalog-svc-prod.astraea.earth/api", "rel": "service-desc", "title": "OpenAPI specification", "type": "application/json" }, { "href": "https://eod-catalog-svc-prod.astraea.earth/api.html", "rel": "service-doc", "title": "API documentation", "type": "text/html" }, { "href": "https://eod-catalog-svc-prod.astraea.earth/collections", "rel": "data", "title": "Collections", "type": "application/json" }, { "href": "https://eod-catalog-svc-prod.astraea.earth/collections", "rel": "collections", "title": "Collections", "type": "application/json" }, { "href": "https://eod-catalog-svc-prod.astraea.earth/collections/landsat8_l1tp", "rel": "child", "title": "Landsat 8 C1 T1", "type": "application/json" }, { "href": "https://eod-catalog-svc-prod.astraea.earth/collections/mcd43a4", "rel": "child", "title": "MCD43A4 NBAR", "type": "application/json" }, { "href": "https://eod-catalog-svc-prod.astraea.earth/collections/mod11a1", "rel": "child", "title": "MOD11A1 LST", "type": "application/json" }, { "href": "https://eod-catalog-svc-prod.astraea.earth/collections/myd11a1", "rel": "child", "title": "MYD11A1 LST", "type": "application/json" }, { "href": "https://eod-catalog-svc-prod.astraea.earth/collections/mod13a1", "rel": "child", "title": "MOD13A1 VI", "type": "application/json" }, { "href": "https://eod-catalog-svc-prod.astraea.earth/collections/myd13a1", "rel": "child", "title": "MYD13A1 VI", "type": "application/json" }, { "href": "https://eod-catalog-svc-prod.astraea.earth/collections/sentinel1_l1c_grd", "rel": "child", "title": "Sentinel-1 L1C GRD", "type": "application/json" }, { "href": "https://eod-catalog-svc-prod.astraea.earth/collections/sentinel2_l2a", "rel": "child", "title": "Sentinel-2 L2A", "type": "application/json" }, { "href": "https://eod-catalog-svc-prod.astraea.earth/collections/sentinel2_l1c", "rel": "child", "title": "Sentinel-2 L1C", "type": "application/json" }, { "href": "https://eod-catalog-svc-prod.astraea.earth/collections/naip", "rel": "child", "title": "NAIP", "type": "application/json" }, { "href": "https://eod-catalog-svc-prod.astraea.earth/collections/maxar_open_data", "rel": "child", "title": "Maxar Open Data", "type": "application/json" }, { "href": "https://eod-catalog-svc-prod.astraea.earth/collections/spacenet7", "rel": "child", "title": "SpaceNet 7", "type": "application/json" }, { "href": "https://eod-catalog-svc-prod.astraea.earth/aggregate", "rel": "aggregation", "title": "Aggregation", "type": "application/json" }, { "capabilities": { "parameters": [ { "name": "composite", "values": [ { "description": "Default View.", "name": "default", "title": "Default View" }, { "description": "True Color Composite.", "name": "true_color", "title": "True Color Composite" }, { "description": "Normalized Difference Vegetation Index.", "name": "ndvi", "title": "NDVI" }, { "description": "Normalized Difference Water Index using Green and NIR per McFeeters(1997).", "name": "ndwi", "title": "NDWI (Green & NIR)" }, { "description": "Normalized Difference Water Index using NIR and SWIR per Gao(1997).", "name": "ndwi2", "title": "NDWI (NIR & SWIR)" }, { "description": "Color Infrared (Vegetation) consisting of Near-infrared, Red, and Green bands.", "name": "color_infrared_veg1", "title": "Color Infrared Vegetation (NRG)" }, { "description": "Color Infrared (Vegetation) consisting of Near-infrared, Green, and Blue bands.", "name": "color_infrared_veg2", "title": "Color Infrared Vegetation 2 (NGB)" }, { "description": "False Color Infrared (Urban).", "name": "false_color_urban", "title": "False Color (Urban)" }, { "description": "Agriculture.", "name": "agriculture", "title": "Agriculture" }, { "description": "Moisture Index.", "name": "moisture_index", "title": "Moisture Index" }, { "description": "Geology.", "name": "geology", "title": "Geology" }, { "description": "Bathymetric.", "name": "bathymetric", "title": "Bathymetric" }, { "description": "Atmospheric Penetration.", "name": "atmospheric_penetration", "title": "Atmospheric Penetration" }, { "description": "SWIR 1.", "name": "swir1", "title": "SWIR 1" }, { "description": "SWIR 2.", "name": "swir2", "title": "SWIR 2" }, { "description": "SAR VV Polarization.", "name": "sar_vv", "title": "SAR VV Polarization" }, { "description": "SAR VH Polarization.", "name": "sar_vh", "title": "SAR VH Polarization" }, { "description": "SAR HH Polarization.", "name": "sar_hh", "title": "SAR HH Polarization" }, { "description": "SAR HV Polarization.", "name": "sar_hv", "title": "SAR HV Polarization" }, { "description": "SAR False Color (Urban).", "name": "sar_false_color_urban", "title": "SAR False Color (Urban)" } ] } ] }, "href": "https://eod-catalog-svc-prod.astraea.earth/aggregate", "rel": "aggregate", "title": "Aggregate", "type": "application/json" }, { "capabilities": { "parameters": [ { "name": "composite", "values": [ { "description": "Default View.", "name": "default", "title": "Default View" }, { "description": "True Color Composite.", "name": "true_color", "title": "True Color Composite" }, { "description": "Normalized Difference Vegetation Index.", "name": "ndvi", "title": "NDVI" }, { "description": "Normalized Difference Water Index using Green and NIR per McFeeters(1997).", "name": "ndwi", "title": "NDWI (Green & NIR)" }, { "description": "Normalized Difference Water Index using NIR and SWIR per Gao(1997).", "name": "ndwi2", "title": "NDWI (NIR & SWIR)" }, { "description": "Color Infrared (Vegetation) consisting of Near-infrared, Red, and Green bands.", "name": "color_infrared_veg1", "title": "Color Infrared Vegetation (NRG)" }, { "description": "Color Infrared (Vegetation) consisting of Near-infrared, Green, and Blue bands.", "name": "color_infrared_veg2", "title": "Color Infrared Vegetation 2 (NGB)" }, { "description": "False Color Infrared (Urban).", "name": "false_color_urban", "title": "False Color (Urban)" }, { "description": "Agriculture.", "name": "agriculture", "title": "Agriculture" }, { "description": "Moisture Index.", "name": "moisture_index", "title": "Moisture Index" }, { "description": "Geology.", "name": "geology", "title": "Geology" }, { "description": "Bathymetric.", "name": "bathymetric", "title": "Bathymetric" }, { "description": "Atmospheric Penetration.", "name": "atmospheric_penetration", "title": "Atmospheric Penetration" }, { "description": "SWIR 1.", "name": "swir1", "title": "SWIR 1" }, { "description": "SWIR 2.", "name": "swir2", "title": "SWIR 2" }, { "description": "SAR VV Polarization.", "name": "sar_vv", "title": "SAR VV Polarization" }, { "description": "SAR VH Polarization.", "name": "sar_vh", "title": "SAR VH Polarization" }, { "description": "SAR HH Polarization.", "name": "sar_hh", "title": "SAR HH Polarization" }, { "description": "SAR HV Polarization.", "name": "sar_hv", "title": "SAR HV Polarization" }, { "description": "SAR False Color (Urban).", "name": "sar_false_color_urban", "title": "SAR False Color (Urban)" } ] } ] }, "href": "https://eod-catalog-svc-prod.astraea.earth/search", "rel": "search", "title": "Search", "type": "application/json" }, { "href": "https://eod-catalog-svc-prod.astraea.earth/grid_id_definitions?20200218", "rel": "grid_id_definitions", "title": "Grid ID Definitions", "type": "application/json" } ], "stac_extensions": [ "eo", "proj", "context" ], "stac_version": "1.0.0-beta.2", "title": "Astraea Earth OnDemand" }pystac-client-0.9.0/tests/data/fedeo_clearinghouse.json000066400000000000000000000130571503646565400232630ustar00rootroot00000000000000{ "extent": { "spatial": {"bbox": [[ -180, -90, 180, 90 ]]}, "temporal": {"interval": [[ null, null ]]} }, "stac_version": "1.0.0", "license": "various", "description": "FedEO Clearinghouse provides interoperable access, following ISO/OGC interface guidelines, to Earth Observation metadata", "links": [ { "rel": "self", "href": "https://emc.spacebel.be", "type": "application/json", "title": "This document" }, { "rel": "search", "href": "https://emc.spacebel.be/api?httpAccept=application/opensearchdescription%2Bxml", "type": "application/opensearchdescription+xml", "title": "OpenSearch Description Document" }, { "rel": "service-desc", "href": "https://emc.spacebel.be/api?httpAccept=application/vnd.oai.openapi%2Bjson;version=3.0", "type": "application/vnd.oai.openapi+json;version=3.0", "title": "OpenAPI definition in JSON format" }, { "rel": "service-desc", "href": "https://emc.spacebel.be/api?httpAccept=application/json;profile=http://explain.z3950.org/dtd/2.0/", "type": "application/json;profile=\"http://explain.z3950.org/dtd/2.0/\"", "title": "Explain Document" }, { "rel": "service-desc", "href": "https://emc.spacebel.be/api?httpAccept=application/sru%2Bxml", "type": "application/sru+xml", "title": "Explain Document" }, { "rel": "data", "href": "https://emc.spacebel.be/collections", "type": "application/json", "title": "Metadata about the feature collections" }, { "rel": "data", "href": "https://emc.spacebel.be/collections", "type": "application/ld+json", "title": "Metadata about the feature collections" }, { "rel": "data", "href": "https://emc.spacebel.be/collections", "type": "application/rdf+xml", "title": "Metadata about the feature collections" }, { "rel": "data", "href": "https://emc.spacebel.be/collections", "type": "text/turtle", "title": "Metadata about the feature collections" }, { "rel": "conformance", "href": "https://emc.spacebel.be/conformance", "type": "application/json", "title": "OGC conformance classes implemented by this API" }, { "rel": "service-doc", "href": "https://emc.spacebel.be/readme.html", "type": "text/html", "title": "API Documentation" }, { "rel": "service-doc", "href": "https://emc.spacebel.be/index.html", "type": "text/html", "title": "API Documentation (Jupyter)" }, { "rel": "service-doc", "href": "https://redocly.github.io/redoc/?url=https://emc.spacebel.be/api&nocors", "type": "text/html", "title": "API documentation in ReDoc format" }, { "rel": "service-doc", "href": "http://petstore.swagger.io/?url=https://emc.spacebel.be/api", "type": "text/html", "title": "API documentation in Swagger.io format" }, { "rel": "alternate", "href": "https://emc.spacebel.be?httpAccept=text/html", "type": "text/html", "title": "Landing Page in HTML media type." }, { "rel": "alternate", "href": "https://emc.spacebel.be?httpAccept=application/ld%2Bjson", "type": "application/ld+json", "title": "Landing Page in JSON-LD media type." }, { "method": "GET", "rel": "search", "href": "https://emc.spacebel.be/search", "type": "application/geo+json", "title": "STAC Search" }, { "method": "POST", "rel": "search", "href": "https://emc.spacebel.be/search", "type": "application/geo+json", "title": "STAC Search" }, { "rel": "child", "href": "https://emc.spacebel.be/series", "type": "application/json", "title": "Collections" }, { "rel": "child", "href": "https://emc.spacebel.be/services", "type": "application/json", "title": "Services" }, { "rel": "root", "href": "https://emc.spacebel.be", "type": "application/json" } ], "id": "fedeo", "conformsTo": [ "http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core", "http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30", "http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson", "http://www.opengis.net/spec/ogcapi_common-2/1.0/conf/collections", "http://www.opengis.net/spec/ogcapi-common-2/1.0/conf/simple-query", "http://www.opengis.net/spec/ogcapi-records-1/1.0/req/cql-filter", "http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson", "http://www.opengis.net/spec/ogcapi-features-3/1.0/conf/features-filter", "https://api.stacspec.org/v1.0.0-rc.2/core", "https://api.stacspec.org/v1.0.0-rc.2/stac-search", "https://api.stacspec.org/v1.0.0-rc.2/stac-response", "https://api.stacspec.org/v1.0.0-rc.2/collection-search", "https://api.stacspec.org/v1.0.0-rc.2/collection-search#filter", "https://api.stacspec.org/v1.0.0-rc.1/collection-search#free-text", "https://api.stacspec.org/v1.0.0-rc.1/collection-search#sort", "https://api.stacspec.org/v1.0.0-rc.2/item-search", "https://api.stacspec.org/v1.0.0-rc.2/item-search#filter", "http://www.opengis.net/spec/cql2/1.0/conf/cql2-text", "http://www.opengis.net/spec/cql2/1.0/conf/basic-cql2", "https://api.stacspec.org/v1.0.0/item-search#sort", "https://api.stacspec.org/v1.0.0/ogcapi-features#sort" ], "title": "FedEO Clearinghouse", "type": "Catalog" }pystac-client-0.9.0/tests/data/invalid-collection.json000066400000000000000000000021441503646565400230430ustar00rootroot00000000000000{ "id": "planet", "title": "Planet", "extent": {}, "license": "proprietary", "description": "Planet", "stac_version": "1.0.0", "item_type_accessor": "pl:item_type", "links": [ { "rel": "items", "type": "application/geo+json", "href": "https://csdap.earthdata.nasa.gov/stac/collections/planet/items" }, { "rel": "parent", "type": "application/json", "href": "https://csdap.earthdata.nasa.gov/stac/" }, { "rel": "root", "type": "application/json", "href": "https://csdap.earthdata.nasa.gov/stac/" }, { "rel": "self", "type": "application/json", "href": "https://csdap.earthdata.nasa.gov/stac/collections/planet" }, { "rel": "http://www.opengis.net/def/rel/ogc/1.0/queryables", "type": "application/schema+json", "title": "Queryables", "href": "https://csdap.earthdata.nasa.gov/stac/collections/planet/queryables" } ] }pystac-client-0.9.0/tests/data/netherlands_aoi.json000066400000000000000000000007131503646565400224230ustar00rootroot00000000000000{ "type": "Polygon", "coordinates": [ [ [ 6.42425537109375, 53.174765470134616 ], [ 7.344360351562499, 53.174765470134616 ], [ 7.344360351562499, 53.67393435835391 ], [ 6.42425537109375, 53.67393435835391 ], [ 6.42425537109375, 53.174765470134616 ] ] ] } pystac-client-0.9.0/tests/data/planetary-computer-aster-l1t-collection.json000066400000000000000000000255711503646565400270730ustar00rootroot00000000000000{ "id": "aster-l1t", "type": "Collection", "links": [ { "rel": "items", "type": "application/geo+json", "href": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t/items" }, { "rel": "parent", "type": "application/json", "href": "https://planetarycomputer.microsoft.com/api/stac/v1/" }, { "rel": "root", "type": "application/json", "href": "https://planetarycomputer.microsoft.com/api/stac/v1/" }, { "rel": "self", "type": "application/json", "href": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t" }, { "rel": "license", "href": "https://www.usgs.gov/core-science-systems/hdds/data-policy", "title": "Public Domain" }, { "rel": "describedby", "href": "https://planetarycomputer.microsoft.com/dataset/aster-l1t", "title": "Human readable dataset overview and reference", "type": "text/html" } ], "title": "ASTER L1T", "assets": { "thumbnail": { "href": "https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/aster.png", "type": "image/png", "roles": [ "thumbnail" ], "title": "ASTER L1T" } }, "extent": { "spatial": { "bbox": [ [ -180, -90, 180, 90 ] ] }, "temporal": { "interval": [ [ "2000-03-04T12:00:00.000000Z", "2006-12-31T12:00:00.000000Z" ] ] } }, "license": "proprietary", "keywords": [ "ASTER", "USGS", "NASA", "Satellite", "Global" ], "providers": [ { "url": "https://terra.nasa.gov/about/terra-instruments/aster", "name": "NASA", "roles": [ "producer", "licensor" ] }, { "url": "https://lpdaac.usgs.gov/data/get-started-data/collection-overview/missions/aster-overview/", "name": "USGS", "roles": [ "processor", "producer", "licensor" ] }, { "url": "https://planetarycomputer.microsoft.com", "name": "Microsoft", "roles": [ "host", "processor" ] } ], "summaries": { "gsd": [ 15, 30, 90 ], "eo:bands": [ { "gsd": 15, "name": "VNIR_Band1", "common_name": "green", "description": "visible yellow/green", "center_wavelength": 0.56, "full_width_half_max": 0.08 }, { "gsd": 15, "name": "VNIR_Band2", "common_name": "red", "description": "visible red", "center_wavelength": 0.66, "full_width_half_max": 0.06 }, { "gsd": 15, "name": "VNIR_Band3N", "common_name": "nir08", "description": "near infrared", "center_wavelength": 0.82, "full_width_half_max": 0.08 }, { "gsd": 30, "name": "SWIR_Band4", "common_name": "swir16", "description": "short-wave infrared", "center_wavelength": 1.65, "full_width_half_max": 0.1 }, { "gsd": 30, "name": "SWIR_Band5", "common_name": "swir22", "description": "short-wave infrared", "center_wavelength": 2.165, "full_width_half_max": 0.04 }, { "gsd": 30, "name": "SWIR_Band6", "common_name": "swir22", "description": "short-wave infrared", "center_wavelength": 2.205, "full_width_half_max": 0.04 }, { "gsd": 30, "name": "SWIR_Band7", "common_name": "swir22", "description": "short-wave infrared", "center_wavelength": 2.26, "full_width_half_max": 0.05 }, { "gsd": 30, "name": "SWIR_Band8", "description": "short-wave infrared", "center_wavelength": 2.339, "full_width_half_max": 0.07 }, { "gsd": 30, "name": "SWIR_Band9", "description": "short-wave infrared", "center_wavelength": 2.395, "full_width_half_max": 0.07 }, { "gsd": 90, "name": "TIR_Band10", "common_name": "lwir", "description": "thermal infrared", "center_wavelength": 8.3, "full_width_half_max": 0.35 }, { "gsd": 90, "name": "TIR_Band11", "common_name": "lwir", "description": "thermal infrared", "center_wavelength": 8.65, "full_width_half_max": 0.35 }, { "gsd": 90, "name": "TIR_Band12", "common_name": "lwir", "description": "thermal infrared", "center_wavelength": 9.11, "full_width_half_max": 0.35 }, { "gsd": 90, "name": "TIR_Band13", "common_name": "lwir", "description": "thermal infrared", "center_wavelength": 10.6, "full_width_half_max": 0.7 }, { "gsd": 90, "name": "TIR_Band14", "common_name": "lwir", "description": "thermal infrared", "center_wavelength": 11.3, "full_width_half_max": 0.7 } ], "platform": [ "terra" ], "instruments": [ "aster" ] }, "description": "The [ASTER](https://terra.nasa.gov/about/terra-instruments/aster) instrument, launched on-board NASA's [Terra](https://terra.nasa.gov/) satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. ASTER images provide information about land surface temperature, color, elevation, and mineral composition.\\n\\nThis dataset represents ASTER [L1T](https://lpdaac.usgs.gov/products/ast_l1tv003/) data from 2000-2006. L1T images have been terrain-corrected and rotated to a north-up UTM projection. Images are in [cloud-optimized GeoTIFF](https://www.cogeo.org/) format.\\n", "item_assets": { "TIR": { "roles": [ "data" ], "title": "TIR Swath data", "eo:bands": [ { "gsd": 90, "name": "TIR_Band10", "common_name": "lwir", "description": "thermal infrared", "center_wavelength": 8.3, "full_width_half_max": 0.35 }, { "gsd": 90, "name": "TIR_Band11", "common_name": "lwir", "description": "thermal infrared", "center_wavelength": 8.65, "full_width_half_max": 0.35 }, { "gsd": 90, "name": "TIR_Band12", "common_name": "lwir", "description": "thermal infrared", "center_wavelength": 9.11, "full_width_half_max": 0.35 }, { "gsd": 90, "name": "TIR_Band13", "common_name": "lwir", "description": "thermal infrared", "center_wavelength": 10.6, "full_width_half_max": 0.7 }, { "gsd": 90, "name": "TIR_Band14", "common_name": "lwir", "description": "thermal infrared", "center_wavelength": 11.3, "full_width_half_max": 0.7 } ] }, "xml": { "type": "application/xml", "roles": [ "metadata" ], "title": "XML metadata" }, "SWIR": { "type": "image/tiff; application=geotiff; profile=cloud-optimized", "roles": [ "data" ], "title": "SWIR Swath data", "eo:bands": [ { "gsd": 30, "name": "SWIR_Band4", "common_name": "swir", "description": "short-wave infrared", "center_wavelength": 1.65, "full_width_half_max": 0.1 }, { "gsd": 30, "name": "SWIR_Band5", "common_name": "swir", "description": "short-wave infrared", "center_wavelength": 2.165, "full_width_half_max": 0.04 }, { "gsd": 30, "name": "SWIR_Band6", "common_name": "swir", "description": "short-wave infrared", "center_wavelength": 2.205, "full_width_half_max": 0.04 }, { "gsd": 30, "name": "SWIR_Band7", "common_name": "swir", "description": "short-wave infrared", "center_wavelength": 2.26, "full_width_half_max": 0.05 }, { "gsd": 30, "name": "SWIR_Band8", "common_name": "swir", "description": "short-wave infrared", "center_wavelength": 2.339, "full_width_half_max": 0.07 }, { "gsd": 30, "name": "SWIR_Band9", "common_name": "swir", "description": "short-wave infrared", "center_wavelength": 2.395, "full_width_half_max": 0.07 } ] }, "VNIR": { "type": "image/tiff; application=geotiff; profile=cloud-optimized", "roles": [ "data" ], "title": "VNIR Swath data", "eo:bands": [ { "gsd": 15, "name": "VNIR_Band1", "common_name": "yellow/green", "description": "visible yellow/green", "center_wavelength": 0.56, "full_width_half_max": 0.08 }, { "gsd": 15, "name": "VNIR_Band2", "common_name": "red", "description": "visible red", "center_wavelength": 0.66, "full_width_half_max": 0.06 }, { "gsd": 15, "name": "VNIR_Band3N", "common_name": "near infrared", "description": "near infrared", "center_wavelength": 0.82, "full_width_half_max": 0.08 } ] }, "qa-txt": { "type": "text/plain", "roles": [ "metadata" ], "title": "QA browse file", "description": "Geometric quality assessment report." }, "qa-browse": { "type": "image/jpeg", "roles": [ "thumbnail" ], "title": "QA browse file", "description": "Single-band black and white reduced resolution browse overlaid with red, green, and blue (RGB) markers for GCPs used during the geometric verification quality check." }, "tir-browse": { "type": "image/jpeg", "roles": [ "thumbnail" ], "title": "Standalone reduced resolution TIR" }, "vnir-browse": { "type": "image/jpeg", "roles": [ "thumbnail" ], "title": "VNIR browse file", "description": "Standalone reduced resolution VNIR" } }, "stac_version": "1.0.0", "msft:container": "aster", "stac_extensions": [ "https://stac-extensions.github.io/item-assets/v1.0.0/schema.json" ], "msft:storage_account": "astersa", "msft:short_description": "The ASTER instrument, launched on-board NASA's Terra satellite in 1999, provides multispectral images of the Earth at 15m-90m resolution. This dataset contains ASTER data from 2000-2006." } pystac-client-0.9.0/tests/data/planetary-computer-collection.json000066400000000000000000001150161503646565400252530ustar00rootroot00000000000000{ "id": "gap", "type": "Collection", "links": [ { "rel": "items", "type": "application/geo+json", "href": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap/items" }, { "rel": "parent", "type": "application/json", "href": "https://planetarycomputer.microsoft.com/api/stac/v1/" }, { "rel": "root", "type": "application/json", "href": "https://planetarycomputer.microsoft.com/api/stac/v1/" }, { "rel": "self", "type": "application/json", "href": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/gap" }, { "rel": "license", "href": "https://www.usgs.gov/core-science-systems/hdds/data-policy", "title": "public domain" }, { "rel": "describedby", "href": "https://planetarycomputer.microsoft.com/dataset/gap", "title": "Human readable dataset overview and reference", "type": "text/html" } ], "title": "USGS Gap Land Cover", "assets": { "thumbnail": { "href": "https://ai4edatasetspublicassets.blob.core.windows.net/assets/pc_thumbnails/gap.png", "type": "image/png", "roles": [ "data" ], "title": "USGS GAP" }, "original-data-ak": { "href": "https://ai4edataeuwest.blob.core.windows.net/usgs-gap/originals/gaplandcov_ak.zip", "type": "application/zip", "roles": [ "data" ], "title": "Alaska source data", "description": "Original source data for Alaska" }, "original-data-hi": { "href": "https://ai4edataeuwest.blob.core.windows.net/usgs-gap/originals/gaplandcov_hi.zip", "type": "application/zip", "roles": [ "data" ], "title": "Hawaii source data", "description": "Original source data for Hawaii" }, "original-data-pr": { "href": "https://ai4edataeuwest.blob.core.windows.net/usgs-gap/originals/pr_landcover.zip", "type": "application/zip", "roles": [ "data" ], "title": "Puerto Rico source data", "description": "Original source data for Puerto Rico" }, "original-data-conus": { "href": "https://ai4edataeuwest.blob.core.windows.net/usgs-gap/originals/gap_landfire_nationalterrestrialecosystems2011.zip", "type": "application/zip", "roles": [ "data" ], "title": "CONUS source data", "description": "Original source data for the continental United States (CONUS)" } }, "extent": { "spatial": { "bbox": [ [ -127.9710481801793, 22.797789263564383, -65.26634281147894, 51.64692620669362 ], [ -178.13166387448902, 49.09079265233118, 179.87849702345594, 71.43382483774205 ], [ -160.26640694607218, 18.851824447510786, -154.66974350173518, 22.295114188194738 ], [ -67.9573345827195, 17.874066536543, -65.21836408976736, 18.5296513469496 ] ] }, "temporal": { "interval": [ [ "1999-01-01T00:00:00Z", "2011-12-31T00:00:00Z" ] ] } }, "license": "proprietary", "keywords": [ "USGS", "GAP", "LANDFIRE", "Land Cover", "United States" ], "providers": [ { "url": "https://www.usgs.gov/core-science-systems/science-analytics-and-synthesis/gap/science/land-cover", "name": "USGS", "roles": [ "processor", "producer", "licensor" ] }, { "url": "https://planetarycomputer.microsoft.com", "name": "Microsoft", "roles": [ "host" ] } ], "summaries": { "gsd": [ 30 ], "label:classes": [ { "classes": [ "0", "South Florida Bayhead Swamp", "South Florida Cypress Dome", "South Florida Dwarf Cypress Savanna", "South Florida Mangrove Swamp", "South Florida Hardwood Hammock", "Southeast Florida Coastal Strand and Maritime Hammock", "Southwest Florida Coastal Strand and Maritime Hammock", "South Florida Pine Rockland", "Atlantic Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Open Understory", "Atlantic Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Scrub/Shrub Understory", "Atlantic Coastal Plain Upland Longleaf Pine Woodland", "Atlantic Coastal Plain Xeric River Dune", "East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Open Understory Modifier", "East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Scrub/Shrub Modifier", "Florida Longleaf Pine Sandhill - Scrub/Shrub Understory Modifier", "Florida Longleaf Pine Sandhill- Open Understory Modifier", "West Gulf Coastal Plain Upland Longleaf Pine Forest and Woodland", "Atlantic Coastal Plain Central Maritime Forest", "Atlantic Coastal Plain Southern Maritime Forest", "Central and South Texas Coastal Fringe Forest and Woodland", "East Gulf Coastal Plain Limestone Forest", "East Gulf Coastal Plain Maritime Forest", "East Gulf Coastal Plain Southern Loess Bluff Forest", "East Gulf Coastal Plain Southern Mesic Slope Forest", "Mississippi Delta Maritime Forest", "Southern Coastal Plain Dry Upland Hardwood Forest", "Southern Coastal Plain Oak Dome and Hammock", "West Gulf Coastal Plain Chenier and Upper Texas Coastal Fringe Forest and Woodland", "West Gulf Coastal Plain Mesic Hardwood Forest", "East-Central Texas Plains Pine Forest and Woodland", "West Gulf Coastal Plain Pine-Hardwood Forest", "West Gulf Coastal Plain Sandhill Oak and Shortleaf Pine Forest and Woodland", "Atlantic Coastal Plain Fall-Line Sandhills Longleaf Pine Woodland - Loblolly Modifier", "Deciduous Plantations", "East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Loblolly Modifier", "East Gulf Coastal Plain Interior Upland Longleaf Pine Woodland - Offsite Hardwood Modifier", "East Gulf Coastal Plain Near-Coast Pine Flatwoods - Offsite Hardwood Modifier", "Evergreen Plantation or Managed Pine", "California Central Valley Mixed Oak Savanna", "California Coastal Closed-Cone Conifer Forest and Woodland", "California Coastal Live Oak Woodland and Savanna", "California Lower Montane Blue Oak-Foothill Pine Woodland and Savanna", "Central and Southern California Mixed Evergreen Woodland", "Mediterranean California Lower Montane Black Oak-Conifer Forest and Woodland", "Southern California Oak Woodland and Savanna", "Madrean Encinal", "Madrean Pinyon-Juniper Woodland", "Madrean Pine-Oak Forest and Woodland", "Madrean Upper Montane Conifer-Oak Forest and Woodland", "Edwards Plateau Dry-Mesic Slope Forest and Woodland", "Edwards Plateau Limestone Savanna and Woodland", "Edwards Plateau Mesic Canyon", "Llano Uplift Acidic Forest, Woodland and Glade", "East Cascades Oak-Ponderosa Pine Forest and Woodland", "Mediterranean California Mixed Evergreen Forest", "Mediterranean California Mixed Oak Woodland", "North Pacific Dry Douglas-fir-(Madrone) Forest and Woodland", "North Pacific Oak Woodland", "Edwards Plateau Limestone Shrubland", "Allegheny-Cumberland Dry Oak Forest and Woodland - Hardwood", "Allegheny-Cumberland Dry Oak Forest and Woodland - Pine Modifier", "Central and Southern Appalachian Montane Oak Forest", "Central and Southern Appalachian Northern Hardwood Forest", "Central Appalachian Oak and Pine Forest", "Crosstimbers Oak Forest and Woodland", "East Gulf Coastal Plain Black Belt Calcareous Prairie and Woodland - Woodland Modifier", "East Gulf Coastal Plain Northern Dry Upland Hardwood Forest", "East Gulf Coastal Plain Northern Loess Plain Oak-Hickory Upland - Hardwood Modifier", "East Gulf Coastal Plain Northern Loess Plain Oak-Hickory Upland - Juniper Modifier", "East-Central Texas Plains Post Oak Savanna and Woodland", "Lower Mississippi River Dune Woodland and Forest", "Mississippi River Alluvial Plain Dry-Mesic Loess Slope Forest", "North-Central Interior Dry Oak Forest and Woodland", "North-Central Interior Dry-Mesic Oak Forest and Woodland", "Northeastern Interior Dry Oak Forest - Mixed Modifier", "Northeastern Interior Dry Oak Forest - Virginia/Pitch Pine Modifier", "Northeastern Interior Dry Oak Forest-Hardwood Modifier", "Northeastern Interior Dry-Mesic Oak Forest", "Northern Atlantic Coastal Plain Dry Hardwood Forest", "Crowley's Ridge Sand Forest", "Ouachita Montane Oak Forest", "Ozark-Ouachita Dry Oak Woodland", "Ozark-Ouachita Dry-Mesic Oak Forest", "Southern and Central Appalachian Oak Forest", "Southern and Central Appalachian Oak Forest - Xeric", "Southern Interior Low Plateau Dry-Mesic Oak Forest", "Southern Ridge and Valley Dry Calcareous Forest", "Southern Ridge and Valley Dry Calcareous Forest - Pine modifier", "East Gulf Coastal Plain Northern Dry Upland Hardwood Forest - Offsite Pine Modifier", "Managed Tree Plantation", "Ruderal forest", "Southern Piedmont Dry Oak-(Pine) Forest - Loblolly Pine Modifier", "Acadian Low-Elevation Spruce-Fir-Hardwood Forest", "Acadian-Appalachian Montane Spruce-Fir Forest", "Appalachian Hemlock-Hardwood Forest", "Central and Southern Appalachian Spruce-Fir Forest", "0", "Laurentian-Acadian Northern Hardwoods Forest", "Laurentian-Acadian Northern Pine-(Oak) Forest", "Laurentian-Acadian Pine-Hemlock-Hardwood Forest", "Paleozoic Plateau Bluff and Talus", "Southern Appalachian Northern Hardwood Forest", "Atlantic Coastal Plain Dry and Dry-Mesic Oak Forest", "Atlantic Coastal Plain Fall-line Sandhills Longleaf Pine Woodland - Offsite Hardwood", "East Gulf Coastal Plain Interior Shortleaf Pine-Oak Forest - Hardwood Modifier", "East Gulf Coastal Plain Interior Shortleaf Pine-Oak Forest - Mixed Modifier", "Ozark-Ouachita Shortleaf Pine-Bluestem Woodland", "Ozark-Ouachita Shortleaf Pine-Oak Forest and Woodland", "Southeastern Interior Longleaf Pine Woodland", "Southern Appalachian Low Mountain Pine Forest", "Southern Piedmont Dry Oak-(Pine) Forest", "Southern Piedmont Dry Oak-(Pine) Forest - Hardwood Modifier", "Southern Piedmont Dry Oak-(Pine) Forest - Mixed Modifier", "Southern Piedmont Dry Oak-Heath Forest - Mixed Modifier", "Eastern Great Plains Tallgrass Aspen Parkland", "Northwestern Great Plains Aspen Forest and Parkland", "Northwestern Great Plains Shrubland", "Western Great Plains Dry Bur Oak Forest and Woodland", "Western Great Plains Wooded Draw and Ravine", "Southern Atlantic Coastal Plain Mesic Hardwood Forest", "East Gulf Coastal Plain Northern Loess Bluff Forest", "East Gulf Coastal Plain Northern Mesic Hardwood Forest", "North-Central Interior Beech-Maple Forest", "North-Central Interior Maple-Basswood Forest", "Ozark-Ouachita Mesic Hardwood Forest", "South-Central Interior Mesophytic Forest", "Southern and Central Appalachian Cove Forest", "Crowley's Ridge Mesic Loess Slope Forest", "Southern Piedmont Mesic Forest", "Appalachian Shale Barrens", "Atlantic Coastal Plain Northern Maritime Forest", "Laurentian Pine-Oak Barrens", "Northeastern Interior Pine Barrens", "Northern Atlantic Coastal Plain Pitch Pine Barrens", "Southern Appalachian Montane Pine Forest and Woodland", "East Cascades Mesic Montane Mixed-Conifer Forest and Woodland", "Middle Rocky Mountain Montane Douglas-fir Forest and Woodland", "Northern Rocky Mountain Dry-Mesic Montane Mixed Conifer Forest", "Northern Rocky Mountain Foothill Conifer Wooded Steppe", "Northern Rocky Mountain Mesic Montane Mixed Conifer Forest", "Northern Rocky Mountain Ponderosa Pine Woodland and Savanna", "Northern Rocky Mountain Western Larch Savanna", "Northwestern Great Plains - Black Hills Ponderosa Pine Woodland and Savanna", "Rocky Mountain Foothill Limber Pine-Juniper Woodland", "Inter-Mountain Basins Aspen-Mixed Conifer Forest and Woodland", "Inter-Mountain Basins Subalpine Limber-Bristlecone Pine Woodland", "Northern Rocky Mountain Subalpine Woodland and Parkland", "Rocky Mountain Aspen Forest and Woodland", "Rocky Mountain Lodgepole Pine Forest", "Rocky Mountain Poor-Site Lodgepole Pine Forest", "Rocky Mountain Subalpine Dry-Mesic Spruce-Fir Forest and Woodland", "Rocky Mountain Subalpine Mesic Spruce-Fir Forest and Woodland", "Rocky Mountain Subalpine-Montane Limber-Bristlecone Pine Woodland", "Rocky Mountain Bigtooth Maple Ravine Woodland", "Southern Rocky Mountain Dry-Mesic Montane Mixed Conifer Forest and Woodland", "Southern Rocky Mountain Mesic Montane Mixed Conifer Forest and Woodland", "Southern Rocky Mountain Ponderosa Pine Savanna", "Southern Rocky Mountain Ponderosa Pine Woodland", "California Montane Jeffrey Pine-(Ponderosa Pine) Woodland", "Klamath-Siskiyou Lower Montane Serpentine Mixed Conifer Woodland", "Klamath-Siskiyou Upper Montane Serpentine Mixed Conifer Woodland", "Mediterranean California Dry-Mesic Mixed Conifer Forest and Woodland", "Mediterranean California Mesic Mixed Conifer Forest and Woodland", "Sierran-Intermontane Desert Western White Pine-White Fir Woodland", "California Coastal Redwood Forest", "North Pacific Broadleaf Landslide Forest and Shrubland", "North Pacific Dry-Mesic Silver Fir-Western Hemlock-Douglas-fir Forest", "North Pacific Hypermaritime Sitka Spruce Forest", "North Pacific Hypermaritime Western Red-cedar-Western Hemlock Forest", "North Pacific Lowland Mixed Hardwood-Conifer Forest and Woodland", "North Pacific Maritime Dry-Mesic Douglas-fir-Western Hemlock Forest", "North Pacific Maritime Mesic-Wet Douglas-fir-Western Hemlock Forest", "North Pacific Mesic Western Hemlock-Silver Fir Forest", "North Pacific Wooded Volcanic Flowage", "Mediterranean California Red Fir Forest", "Mediterranean California Subalpine Woodland", "North Pacific Maritime Mesic Subalpine Parkland", "North Pacific Mountain Hemlock Forest", "Northern California Mesic Subalpine Woodland", "Northern Pacific Mesic Subalpine Woodland", "Sierra Nevada Subalpine Lodgepole Pine Forest and Woodland", "Columbia Plateau Western Juniper Woodland and Savanna", "Great Basin Pinyon-Juniper Woodland", "Inter-Mountain Basins Curl-leaf Mountain Mahogany Woodland and Shrubland", "Inter-Mountain Basins Juniper Savanna", "Colorado Plateau Pinyon-Juniper Shrubland", "Colorado Plateau Pinyon-Juniper Woodland", "Southern Rocky Mountain Juniper Woodland and Savanna", "Southern Rocky Mountain Pinyon-Juniper Woodland", "Northwestern Great Plains Floodplain", "Northwestern Great Plains Riparian", "Western Great Plains Floodplain", "Western Great Plains Floodplain Systems", "Western Great Plains Riparian Woodland and Shrubland", "Central Appalachian Floodplain - Forest Modifier", "Central Appalachian Riparian - Forest Modifier", "Central Interior and Appalachian Floodplain Systems", "Central Interior and Appalachian Riparian Systems", "Laurentian-Acadian Floodplain Systems", "Ozark-Ouachita Riparian", "South-Central Interior Large Floodplain", "South-Central Interior Large Floodplain - Forest Modifier", "South-Central Interior Small Stream and Riparian", "North-Central Interior and Appalachian Rich Swamp", "0", "0", "Laurentian-Acadian Swamp Systems", "North-Central Interior Wet Flatwoods", "0", "South-Central Interior / Upper Coastal Plain Wet Flatwoods", "0", "Southern Piedmont/Ridge and Valley Upland Depression Swamp", "Atlantic Coastal Plain Blackwater Stream Floodplain Forest - Forest Modifier", "Atlantic Coastal Plain Brownwater Stream Floodplain Forest", "Atlantic Coastal Plain Northern Tidal Wooded Swamp", "Atlantic Coastal Plain Small Blackwater River Floodplain Forest", "Atlantic Coastal Plain Small Brownwater River Floodplain Forest", "Atlantic Coastal Plain Southern Tidal Wooded Swamp", "East Gulf Coastal Plain Large River Floodplain Forest - Forest Modifier", "East Gulf Coastal Plain Small Stream and River Floodplain Forest", "East Gulf Coastal Plain Tidal Wooded Swamp", "0", "Southeastern Great Plains Riparian Forest", "Southeastern Great Plains Floodplain Forest", "Mississippi River Bottomland Depression", "Mississippi River Floodplain and Riparian Forest", "Mississippi River Low Floodplain (Bottomland) Forest", "Mississippi River Riparian Forest", "Red River Large Floodplain Forest", "Southern Coastal Plain Blackwater River Floodplain Forest", "Southern Piedmont Large Floodplain Forest - Forest Modifier", "Southern Piedmont Small Floodplain and Riparian Forest", "West Gulf Coastal Plain Large River Floodplain Forest", "West Gulf Coastal Plain Near-Coast Large River Swamp", "West Gulf Coastal Plain Small Stream and River Forest", "Atlantic Coastal Plain Streamhead Seepage Swamp - Pocosin - and Baygall", "Gulf and Atlantic Coastal Plain Swamp Systems", "Southern Coastal Plain Hydric Hammock", "Southern Coastal Plain Seepage Swamp and Baygall", "West Gulf Coastal Plain Seepage Swamp and Baygall", "Atlantic Coastal Plain Nonriverine Swamp and Wet Hardwood Forest - Taxodium/Nyssa Modifier", "Atlantic Coastal Plain Nonriverine Swamp and Wet Hardwood Forest - Oak Dominated Modifier", "East Gulf Coastal Plain Southern Loblolly-Hardwood Flatwoods", "Lower Mississippi River Bottomland Depressions - Forest Modifier", "Lower Mississippi River Flatwoods", "Northern Atlantic Coastal Plain Basin Swamp and Wet Hardwood Forest", "Southern Coastal Plain Nonriverine Basin Swamp", "Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Bay/Gum Modifier", "Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Pine Modifier", "Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Taxodium Modifier", "West Gulf Coastal Plain Nonriverine Wet Hardwood Flatwoods", "West Gulf Coastal Plain Pine-Hardwood Flatwoods", "Edwards Plateau Riparian", "Atlantic Coastal Plain Clay-Based Carolina Bay Forested Wetland", "Atlantic Coastal Plain Clay-Based Carolina Bay Herbaceous Wetland", "Atlantic Coastal Plain Southern Wet Pine Savanna and Flatwoods", "Central Atlantic Coastal Plain Wet Longleaf Pine Savanna and Flatwoods", "Central Florida Pine Flatwoods", "East Gulf Coastal Plain Near-Coast Pine Flatwoods", "East Gulf Coastal Plain Near-Coast Pine Flatwoods - Open Understory Modifier", "East Gulf Coastal Plain Near-Coast Pine Flatwoods - Scrub/Shrub Understory Modifier", "South Florida Pine Flatwoods", "Southern Coastal Plain Nonriverine Cypress Dome", "West Gulf Coastal Plain Wet Longleaf Pine Savanna and Flatwoods", "Columbia Basin Foothill Riparian Woodland and Shrubland", "Great Basin Foothill and Lower Montane Riparian Woodland and Shrubland", "0", "Northern Rocky Mountain Conifer Swamp", "Northern Rocky Mountain Lower Montane Riparian Woodland and Shrubland", "Rocky Mountain Lower Montane Riparian Woodland and Shrubland", "Rocky Mountain Montane Riparian Systems", "Rocky Mountain Subalpine-Montane Riparian Woodland", "North Pacific Hardwood-Conifer Swamp", "North Pacific Lowland Riparian Forest and Shrubland", "North Pacific Montane Riparian Woodland and Shrubland", "North Pacific Shrub Swamp", "California Central Valley Riparian Woodland and Shrubland", "Mediterranean California Foothill and Lower Montane Riparian Woodland", "Mediterranean California Serpentine Foothill and Lower Montane Riparian Woodland and Seep", "North American Warm Desert Lower Montane Riparian Woodland and Shrubland", "North American Warm Desert Riparian Systems", "North American Warm Desert Riparian Woodland and Shrubland", "Tamaulipan Floodplain", "Tamaulipan Riparian Systems", "Boreal Aspen-Birch Forest", "Boreal Jack Pine-Black Spruce Forest", "Boreal White Spruce-Fir-Hardwood Forest", "Boreal-Laurentian Conifer Acidic Swamp and Treed Poor Fen", "Eastern Boreal Floodplain", "South Florida Shell Hash Beach", "Southeast Florida Beach", "Southwest Florida Beach", "South Florida Everglades Sawgrass Marsh", "South Florida Freshwater Slough and Gator Hole", "South Florida Wet Marl Prairie", "California Maritime Chaparral", "California Mesic Chaparral", "California Xeric Serpentine Chaparral", "Klamath-Siskiyou Xeromorphic Serpentine Savanna and Chaparral", "Mediterranean California Mesic Serpentine Woodland and Chaparral", "Northern and Central California Dry-Mesic Chaparral", "Southern California Dry-Mesic Chaparral", "Southern California Coastal Scrub", "California Central Valley and Southern Coastal Grassland", "California Mesic Serpentine Grassland", "Columbia Basin Foothill and Canyon Dry Grassland", "Columbia Basin Palouse Prairie", "North Pacific Alpine and Subalpine Dry Grassland", "North Pacific Montane Grassland", "North Pacific Montane Shrubland", "Northern Rocky Mountain Lower Montane, Foothill and Valley Grassland", "Northern Rocky Mountain Montane-Foothill Deciduous Shrubland", "Northern Rocky Mountain Subalpine Deciduous Shrubland", "Northern Rocky Mountain Subalpine-Upper Montane Grassland", "Southern Rocky Mountain Montane-Subalpine Grassland", "Rocky Mountain Gambel Oak-Mixed Montane Shrubland", "Rocky Mountain Lower Montane-Foothill Shrubland", "California Northern Coastal Grassland", "North Pacific Herbaceous Bald and Bluff", "North Pacific Hypermaritime Shrub and Herbaceous Headland", "Willamette Valley Upland Prairie and Savanna", "Mediterranean California Subalpine Meadow", "Rocky Mountain Subalpine-Montane Mesic Meadow", "Central Mixedgrass Prairie", "Northwestern Great Plains Mixedgrass Prairie", "Western Great Plains Foothill and Piedmont Grassland", "Western Great Plains Tallgrass Prairie", "Western Great Plains Sand Prairie", "Western Great Plains Sandhill Steppe", "Western Great Plains Mesquite Woodland and Shrubland", "Western Great Plains Shortgrass Prairie", "Arkansas Valley Prairie and Woodland", "Central Tallgrass Prairie", "North-Central Interior Oak Savanna", "North-Central Interior Sand and Gravel Tallgrass Prairie", "North-Central Oak Barrens", "Northern Tallgrass Prairie", "Southeastern Great Plains Tallgrass Prairie", "Texas Blackland Tallgrass Prairie", "Texas-Louisiana Coastal Prairie", "Central Appalachian Pine-Oak Rocky Woodland", "Southern Appalachian Grass and Shrub Bald", "Southern Appalachian Grass and Shrub Bald - Herbaceous Modifier", "Southern Appalachian Grass and Shrub Bald - Shrub Modifier", "Central Appalachian Alkaline Glade and Woodland", "Central Interior Highlands Calcareous Glade and Barrens", "Central Interior Highlands Dry Acidic Glade and Barrens", "Cumberland Sandstone Glade and Barrens", "Great Lakes Alvar", "Nashville Basin Limestone Glade", "Southern Ridge and Valley / Cumberland Dry Calcareous Forest", "Southern Piedmont Glade and Barrens", "East Gulf Coastal Plain Black Belt Calcareous Prairie and Woodland - Herbaceous Modifier", "East Gulf Coastal Plain Jackson Prairie and Woodland", "Eastern Highland Rim Prairie and Barrens - Dry Modifier", "Coahuilan Chaparral", "Madrean Oriental Chaparral", "Mogollon Chaparral", "Sonora-Mojave Semi-Desert Chaparral", "California Montane Woodland and Chaparral", "Great Basin Semi-Desert Chaparral", "Florida Dry Prairie", "Florida Peninsula Inland Scrub", "West Gulf Coastal Plain Catahoula Barrens", "West Gulf Coastal Plain Nepheline Syenite Glade", "East Gulf Coastal Plain Jackson Plain Dry Flatwoods - Open Understory Modifier", "West Gulf Coastal Plain Northern Calcareous Prairie", "West Gulf Coastal Plain Southern Calcareous Prairie", "Acadian-Appalachian Subalpine Woodland and Heath-Krummholz", "Atlantic and Gulf Coastal Plain Interdunal Wetland", "Atlantic Coastal Plain Southern Dune and Maritime Grassland", "Central and Upper Texas Coast Dune and Coastal Grassland", "East Gulf Coastal Plain Dune and Coastal Grassland", "Great Lakes Dune", "Northern Atlantic Coastal Plain Dune and Swale", "Northern Atlantic Coastal Plain Heathland and Grassland", "South Texas Dune and Coastal Grassland", "South Texas Sand Sheet Grassland", "Southwest Florida Dune and Coastal Grassland", "North Pacific Coastal Cliff and Bluff", "North Pacific Maritime Coastal Sand Dune and Strand", "Northern California Coastal Scrub", "Mediterranean California Coastal Bluff", "Mediterranean California Northern Coastal Dune", "Mediterranean California Southern Coastal Dune", "Atlantic Coastal Plain Northern Sandy Beach", "Atlantic Coastal Plain Sea Island Beach", "Atlantic Coastal Plain Southern Beach", "Florida Panhandle Beach Vegetation", "Louisiana Beach", "Northern Atlantic Coastal Plain Sandy Beach", "Texas Coastal Bend Beach", "Upper Texas Coast Beach", "0", "Mediterranean California Serpentine Fen", "Mediterranean California Subalpine-Montane Fen", "North Pacific Bog and Fen", "Rocky Mountain Subalpine-Montane Fen", "Atlantic Coastal Plain Peatland Pocosin", "Southern and Central Appalachian Bog and Fen", "Atlantic Coastal Plain Central Fresh-Oligohaline Tidal Marsh", "Atlantic Coastal Plain Embayed Region Tidal Freshwater Marsh", "Atlantic Coastal Plain Northern Fresh and Oligohaline Tidal Marsh", "Florida Big Bend Fresh-Oligohaline Tidal Marsh", "Atlantic Coastal Plain Depression Pondshore", "Atlantic Coastal Plain Large Natural Lakeshore", "Central Florida Herbaceous Pondshore", "Central Florida Herbaceous Seep", "East Gulf Coastal Plain Savanna and Wet Prairie", "East Gulf Coastal Plain Depression Pondshore", "Floridian Highlands Freshwater Marsh", "Southern Coastal Plain Herbaceous Seepage Bog", "Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Clethra Modifier", "Southern Coastal Plain Nonriverine Basin Swamp - Okefenokee Nupea Modifier", "Texas-Louisiana Coastal Prairie Slough", "Central Interior and Appalachian Shrub-Herbaceous Wetland Systems", "Great Lakes Coastal Marsh Systems", "0", "0", "Laurentian-Acadian Shrub-Herbaceous Wetland Systems", "0", "Eastern Great Plains Wet Meadow, Prairie and Marsh", "Great Lakes Wet-Mesic Lakeplain Prairie", "Great Plains Prairie Pothole", "Western Great Plains Closed Depression Wetland", "Western Great Plains Depressional Wetland Systems", "Western Great Plains Open Freshwater Depression Wetland", "Cumberland Riverscour", "Inter-Mountain Basins Interdunal Swale Wetland", "North Pacific Avalanche Chute Shrubland", "North Pacific Intertidal Freshwater Wetland", "Temperate Pacific Freshwater Emergent Marsh", "Temperate Pacific Freshwater Mudflat", "Columbia Plateau Vernal Pool", "Northern California Claypan Vernal Pool", "Northern Rocky Mountain Wooded Vernal Pool", "Columbia Plateau Silver Sagebrush Seasonally Flooded Shrub-Steppe", "Rocky Mountain Alpine-Montane Wet Meadow", "Rocky Mountain Subalpine-Montane Riparian Shrubland", "Temperate Pacific Montane Wet Meadow", "Willamette Valley Wet Prairie", "Chihuahuan-Sonoran Desert Bottomland and Swale Grassland", "North American Arid West Emergent Marsh", "North American Warm Desert Riparian Mesquite Bosque", "Western Great Plains Saline Depression Wetland", "Acadian Salt Marsh and Estuary Systems", "Atlantic Coastal Plain Central Salt and Brackish Tidal Marsh", "Atlantic Coastal Plain Embayed Region Tidal Salt and Brackish Marsh", "Atlantic Coastal Plain Indian River Lagoon Tidal Marsh", "Atlantic Coastal Plain Northern Tidal Salt Marsh", "Florida Big Bend Salt-Brackish Tidal Marsh", "Gulf and Atlantic Coastal Plain Tidal Marsh Systems", "Mississippi Sound Salt and Brackish Tidal Marsh", "Texas Saline Coastal Prairie", "Temperate Pacific Tidal Salt and Brackish Marsh", "Inter-Mountain Basins Alkaline Closed Depression", "Inter-Mountain Basins Greasewood Flat", "Inter-Mountain Basins Playa", "North American Warm Desert Playa", "Apacherian-Chihuahuan Mesquite Upland Scrub", "Apacherian-Chihuahuan Semi-Desert Grassland and Steppe", "Chihuahuan Creosotebush, Mixed Desert and Thorn Scrub", "Chihuahuan Gypsophilous Grassland and Steppe", "Chihuahuan Loamy Plains Desert Grassland", "Chihuahuan Mixed Desert and Thorn Scrub", "Chihuahuan Sandy Plains Semi-Desert Grassland", "Chihuahuan Stabilized Coppice Dune and Sand Flat Scrub", "Chihuahuan Succulent Desert Scrub", "Madrean Juniper Savanna", "Mojave Mid-Elevation Mixed Desert Scrub", "North American Warm Desert Active and Stabilized Dune", "Sonora-Mojave Creosotebush-White Bursage Desert Scrub", "Sonoran Mid-Elevation Desert Scrub", "Sonoran Paloverde-Mixed Cacti Desert Scrub", "Chihuahuan Mixed Salt Desert Scrub", "Sonora-Mojave Mixed Salt Desert Scrub", "North American Warm Desert Wash", "South Texas Lomas", "Tamaulipan Calcareous Thornscrub", "Tamaulipan Clay Grassland", "Tamaulipan Mesquite Upland Scrub", "Tamaulipan Mixed Deciduous Thornscrub", "Tamaulipan Savanna Grassland", "Inter-Mountain Basins Mat Saltbush Shrubland", "Inter-Mountain Basins Mixed Salt Desert Scrub", "Inter-Mountain Basins Wash", "Columbia Plateau Steppe and Grassland", "Great Basin Xeric Mixed Sagebrush Shrubland", "Inter-Mountain Basins Big Sagebrush Shrubland", "Inter-Mountain Basins Big Sagebrush Steppe", "Inter-Mountain Basins Montane Sagebrush Steppe", "Colorado Plateau Mixed Low Sagebrush Shrubland", "Columbia Plateau Low Sagebrush Steppe", "Columbia Plateau Scabland Shrubland", "Wyoming Basins Dwarf Sagebrush Shrubland and Steppe", "Colorado Plateau Blackbrush-Mormon-tea Shrubland", "Inter-Mountain Basins Semi-Desert Grassland", "Inter-Mountain Basins Semi-Desert Shrub Steppe", "Southern Colorado Plateau Sand Shrubland", "Acadian-Appalachian Alpine Tundra", "Rocky Mountain Alpine Dwarf-Shrubland", "Rocky Mountain Alpine Fell-Field", "Rocky Mountain Alpine Turf", "Mediterranean California Alpine Dry Tundra", "Mediterranean California Alpine Fell-Field", "North Pacific Dry and Mesic Alpine Dwarf-Shrubland, Fell-field and Meadow", "Rocky Mountain Alpine Tundra/Fell-field/Dwarf-shrub Map Unit", "Temperate Pacific Intertidal Mudflat", "Mediterranean California Eelgrass Bed", "North Pacific Maritime Eelgrass Bed", "South-Central Interior Large Floodplain - Herbaceous Modifier", "East Gulf Coastal Plain Large River Floodplain Forest - Herbaceous Modifier", "Temperate Pacific Freshwater Aquatic Bed", "Central California Coast Ranges Cliff and Canyon", "Mediterranean California Serpentine Barrens", "Southern California Coast Ranges Cliff and Canyon", "Central Interior Acidic Cliff and Talus", "Central Interior Calcareous Cliff and Talus", "East Gulf Coastal Plain Dry Chalk Bluff", "North-Central Appalachian Acidic Cliff and Talus", "North-Central Appalachian Circumneutral Cliff and Talus", "Southern Appalachian Montane Cliff", "Southern Interior Acid Cliff", "Southern Interior Calcareous Cliff", "Southern Piedmont Cliff", "Southern Appalachian Granitic Dome", "Southern Appalachian Rocky Summit", "Southern Piedmont Granite Flatrock", "Rocky Mountain Cliff, Canyon and Massive Bedrock", "Klamath-Siskiyou Cliff and Outcrop", "North Pacific Montane Massive Bedrock, Cliff and Talus", "North Pacific Serpentine Barren", "North Pacific Active Volcanic Rock and Cinder Land", "Sierra Nevada Cliff and Canyon", "Western Great Plains Badland", "Southwestern Great Plains Canyon", "Western Great Plains Cliff and Outcrop", "North American Warm Desert Badland", "North American Warm Desert Bedrock Cliff and Outcrop", "North American Warm Desert Pavement", "North American Warm Desert Volcanic Rockland", "Colorado Plateau Mixed Bedrock Canyon and Tableland", "Columbia Plateau Ash and Tuff Badland", "Geysers and Hot Springs", "Inter-Mountain Basins Active and Stabilized Dune", "Inter-Mountain Basins Cliff and Canyon", "Inter-Mountain Basins Shale Badland", "Inter-Mountain Basins Volcanic Rock and Cinder Land", "Rocky Mountain Alpine Bedrock and Scree", "Mediterranean California Alpine Bedrock and Scree", "North Pacific Alpine and Subalpine Bedrock and Scree", "Unconsolidated Shore", "Undifferentiated Barren Land", "North American Alpine Ice Field", "Orchards Vineyards and Other High Structure Agriculture", "Cultivated Cropland", "Pasture/Hay", "Introduced Upland Vegetation - Annual Grassland", "Introduced Upland Vegetation - Perennial Grassland and Forbland", "Modified/Managed Southern Tall Grassland", "Introduced Upland Vegetation - Shrub", "Introduced Riparian and Wetland Vegetation", "Introduced Upland Vegetation - Treed", "0", "Disturbed, Non-specific", "Recently Logged Areas", "Harvested Forest - Grass/Forb Regeneration", "Harvested Forest-Shrub Regeneration", "Harvested Forest - Northwestern Conifer Regeneration", "Recently Burned", "Recently burned grassland", "Recently burned shrubland", "Recently burned forest", "Disturbed/Successional - Grass/Forb Regeneration", "Disturbed/Successional - Shrub Regeneration", "Disturbed/Successional - Recently Chained Pinyon-Juniper", "Open Water (Aquaculture)", "Open Water (Brackish/Salt)", "Open Water (Fresh)", "Quarries, Mines, Gravel Pits and Oil Wells", "Developed, Open Space", "Developed, Low Intensity", "Developed, Medium Intensity", "Developed, High Intensity" ] } ] }, "description": "The USGS GAP/LANDFIRE National Terrestrial Ecosystems data, based on the NatureServe Ecological Systems Classification, are the foundation of the most detailed, consistent map of vegetation available for the United States. These data facilitate planning and management for biological diversity on a regional and national scale.\\n\\nThis dataset includes the land cover component of the GAP Analyais project.\\n\\n", "item_assets": { "data": { "type": "image/tiff; application=geotiff; profile=cloud-optimized", "roles": [ "data" ], "title": "GeoTIFF data" } }, "stac_version": "1.0.0", "msft:container": "usgs-gap", "stac_extensions": [ "https://stac-extensions.github.io/label/v1.0.0/schema.json", "https://stac-extensions.github.io/item-assets/v1.0.0/schema.json" ], "msft:storage_account": "ai4edataeuwest", "msft:short_description": "US-wide land cover information for 2011" } pystac-client-0.9.0/tests/data/planetary-computer-root.json000066400000000000000000000051301503646565400240760ustar00rootroot00000000000000{ "id": "microsoft-pc", "description": "Searchable spatiotemporal metadata describing Earth science datasets hosted by the Microsoft Planetary Computer", "title": "Microsoft Planetary Computer STAC API", "stac_version": "1.0.0-beta.2", "links": [ { "href": "https://planetarycomputer.microsoft.com/api/stac/v1/", "rel": "self", "type": "application/json" }, { "rel": "data", "type": "application/json", "href": "https://planetarycomputer.microsoft.com/api/stac/v1/collections" }, { "href": "https://planetarycomputer.microsoft.com/api/stac/v1/docs", "rel": "docs", "type": "text/html", "title": "OpenAPI docs" }, { "href": "https://planetarycomputer.microsoft.com/api/stac/v1/conformance", "rel": "conformance", "type": "application/json", "title": "STAC/WFS3 conformance classes implemented by this server" }, { "href": "https://planetarycomputer.microsoft.com/api/stac/v1/search", "rel": "search", "type": "application/geo+json", "title": "STAC search" }, { "href": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/aster-l1t", "rel": "child", "type": "application/json", "title": "ASTER L1T" }, { "href": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/landsat-8-c2-l2", "rel": "child", "type": "application/json", "title": "Landsat 8 Collection 2 Level-2" }, { "href": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/sentinel-2-l2a", "rel": "child", "type": "application/json", "title": "Sentinel-2 Level-2A" }, { "href": "https://planetarycomputer.microsoft.com/api/stac/v1/collections/naip", "rel": "child", "type": "application/json", "title": "NAIP: National Agriculture Imagery Program" } ], "conformsTo": [ "https://api.stacspec.org/v1.0.0-beta.1/core", "https://api.stacspec.org/v1.0.0-beta.1/collections", "https://api.stacspec.org/v1.0.0-beta.1/item-search", "http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/core", "http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/oas30", "http://www.opengis.net/spec/ogcapi-features-1/1.0/conf/geojson" ] }pystac-client-0.9.0/tests/data/sample-item-collection.json000066400000000000000000001726261503646565400236470ustar00rootroot00000000000000{ "type": "FeatureCollection", "stac_version": "1.0.0-rc.4", "numberMatched": 324132, "numberReturned": 10, "features": [ { "type": "Feature", "id": "G1994512890-LPCLOUD", "stac_version": "1.0.0-rc.4", "stac_extensions": [ "https://stac-extensions.github.io/eo/v1.1.0/schema.json" ], "collection": "HLSL30.v1.5", "geometry": { "type": "Polygon", "coordinates": [ [ [ -177.0002548, -45.2413329 ], [ -176.7533258, -45.2410666 ], [ -176.4223072, -44.2514167 ], [ -177.0002505, -44.2528774 ], [ -177.0002548, -45.2413329 ] ] ] }, "bbox": [ -177.000255, -45.241333, -176.422307, -44.251417 ], "links": [ { "rel": "self", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items/G1994512890-LPCLOUD" }, { "rel": "parent", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5" }, { "rel": "collection", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5" }, { "rel": "root", "href": "https://cmr.earthdata.nasa.gov/stac/" }, { "rel": "provider", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD" }, { "rel": "via", "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1994512890-LPCLOUD.json" }, { "rel": "via", "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1994512890-LPCLOUD.umm_json" } ], "properties": { "datetime": "2021-01-01T21:31:13.552Z", "start_datetime": "2021-01-01T21:31:13.552Z", "end_datetime": "2021-01-01T21:31:13.552Z", "eo:cloud_cover": 17 }, "assets": { "B09": { "title": "Download HLS.L30.T01GEL.2021001T213113.v1.5.B09.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.B09.tif" }, "B06": { "title": "Download HLS.L30.T01GEL.2021001T213113.v1.5.B06.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.B06.tif" }, "B11": { "title": "Download HLS.L30.T01GEL.2021001T213113.v1.5.B11.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.B11.tif" }, "B05": { "title": "Download HLS.L30.T01GEL.2021001T213113.v1.5.B05.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.B05.tif" }, "SAA": { "title": "Download HLS.L30.T01GEL.2021001T213113.v1.5.SAA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.SAA.tif" }, "VAA": { "title": "Download HLS.L30.T01GEL.2021001T213113.v1.5.VAA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.VAA.tif" }, "B07": { "title": "Download HLS.L30.T01GEL.2021001T213113.v1.5.B07.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.B07.tif" }, "VZA": { "title": "Download HLS.L30.T01GEL.2021001T213113.v1.5.VZA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.VZA.tif" }, "B03": { "title": "Download HLS.L30.T01GEL.2021001T213113.v1.5.B03.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.B03.tif" }, "B04": { "title": "Download HLS.L30.T01GEL.2021001T213113.v1.5.B04.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.B04.tif" }, "SZA": { "title": "Download HLS.L30.T01GEL.2021001T213113.v1.5.SZA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.SZA.tif" }, "B10": { "title": "Download HLS.L30.T01GEL.2021001T213113.v1.5.B10.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.B10.tif" }, "B01": { "title": "Download HLS.L30.T01GEL.2021001T213113.v1.5.B01.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.B01.tif" }, "Fmask": { "title": "Download HLS.L30.T01GEL.2021001T213113.v1.5.Fmask.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.Fmask.tif" }, "B02": { "title": "Download HLS.L30.T01GEL.2021001T213113.v1.5.B02.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.B02.tif" }, "browse": { "title": "Download HLS.L30.T01GEL.2021001T213113.v1.5.jpg", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSL30.015/HLS.L30.T01GEL.2021001T213113.v1.5.jpg", "type": "image/jpeg" }, "metadata": { "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1994512890-LPCLOUD.xml", "type": "application/xml" } } }, { "type": "Feature", "id": "G1996013881-LPCLOUD", "stac_version": "1.0.0-rc.4", "stac_extensions": [ "https://stac-extensions.github.io/eo/v1.1.0/schema.json" ], "collection": "HLSL30.v1.5", "geometry": { "type": "Polygon", "coordinates": [ [ [ -167.8646796, 53.1198806 ], [ -167.8111953, 53.8385095 ], [ -169.470024, 54.1186972 ], [ -169.5046204, 53.1517855 ], [ -167.8646796, 53.1198806 ] ] ] }, "bbox": [ -169.50462, 53.119881, -167.811195, 54.118697 ], "links": [ { "rel": "self", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items/G1996013881-LPCLOUD" }, { "rel": "parent", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5" }, { "rel": "collection", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5" }, { "rel": "root", "href": "https://cmr.earthdata.nasa.gov/stac/" }, { "rel": "provider", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD" }, { "rel": "via", "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1996013881-LPCLOUD.json" }, { "rel": "via", "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1996013881-LPCLOUD.umm_json" } ], "properties": { "datetime": "2021-01-14T22:12:00.265Z", "start_datetime": "2021-01-14T22:12:00.265Z", "end_datetime": "2021-01-14T22:12:00.265Z", "eo:cloud_cover": 69 }, "assets": { "VZA": { "title": "Download HLS.L30.T02UPE.2021014T221200.v1.5.VZA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.VZA.tif" }, "B02": { "title": "Download HLS.L30.T02UPE.2021014T221200.v1.5.B02.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.B02.tif" }, "B01": { "title": "Download HLS.L30.T02UPE.2021014T221200.v1.5.B01.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.B01.tif" }, "SAA": { "title": "Download HLS.L30.T02UPE.2021014T221200.v1.5.SAA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.SAA.tif" }, "Fmask": { "title": "Download HLS.L30.T02UPE.2021014T221200.v1.5.Fmask.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.Fmask.tif" }, "B07": { "title": "Download HLS.L30.T02UPE.2021014T221200.v1.5.B07.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.B07.tif" }, "B04": { "title": "Download HLS.L30.T02UPE.2021014T221200.v1.5.B04.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.B04.tif" }, "B10": { "title": "Download HLS.L30.T02UPE.2021014T221200.v1.5.B10.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.B10.tif" }, "B05": { "title": "Download HLS.L30.T02UPE.2021014T221200.v1.5.B05.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.B05.tif" }, "SZA": { "title": "Download HLS.L30.T02UPE.2021014T221200.v1.5.SZA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.SZA.tif" }, "B03": { "title": "Download HLS.L30.T02UPE.2021014T221200.v1.5.B03.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.B03.tif" }, "B11": { "title": "Download HLS.L30.T02UPE.2021014T221200.v1.5.B11.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.B11.tif" }, "VAA": { "title": "Download HLS.L30.T02UPE.2021014T221200.v1.5.VAA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.VAA.tif" }, "B06": { "title": "Download HLS.L30.T02UPE.2021014T221200.v1.5.B06.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.B06.tif" }, "B09": { "title": "Download HLS.L30.T02UPE.2021014T221200.v1.5.B09.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.B09.tif" }, "browse": { "title": "Download HLS.L30.T02UPE.2021014T221200.v1.5.jpg", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSL30.015/HLS.L30.T02UPE.2021014T221200.v1.5.jpg", "type": "image/jpeg" }, "metadata": { "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1996013881-LPCLOUD.xml", "type": "application/xml" } } }, { "type": "Feature", "id": "G1996014088-LPCLOUD", "stac_version": "1.0.0-rc.4", "stac_extensions": [ "https://stac-extensions.github.io/eo/v1.1.0/schema.json" ], "collection": "HLSL30.v1.5", "geometry": { "type": "Polygon", "coordinates": [ [ [ -169.3906805, 52.2825976 ], [ -169.355952, 53.238289 ], [ -170.2256392, 53.2471116 ], [ -170.5607883, 52.47777 ], [ -169.3906805, 52.2825976 ] ] ] }, "bbox": [ -170.560788, 52.282598, -169.355952, 53.247112 ], "links": [ { "rel": "self", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items/G1996014088-LPCLOUD" }, { "rel": "parent", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5" }, { "rel": "collection", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5" }, { "rel": "root", "href": "https://cmr.earthdata.nasa.gov/stac/" }, { "rel": "provider", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD" }, { "rel": "via", "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1996014088-LPCLOUD.json" }, { "rel": "via", "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1996014088-LPCLOUD.umm_json" } ], "properties": { "datetime": "2021-01-14T22:12:00.265Z", "start_datetime": "2021-01-14T22:12:00.265Z", "end_datetime": "2021-01-14T22:12:00.265Z", "eo:cloud_cover": 58 }, "assets": { "VAA": { "title": "Download HLS.L30.T02UND.2021014T221200.v1.5.VAA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.VAA.tif" }, "B02": { "title": "Download HLS.L30.T02UND.2021014T221200.v1.5.B02.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.B02.tif" }, "SZA": { "title": "Download HLS.L30.T02UND.2021014T221200.v1.5.SZA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.SZA.tif" }, "B10": { "title": "Download HLS.L30.T02UND.2021014T221200.v1.5.B10.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.B10.tif" }, "B04": { "title": "Download HLS.L30.T02UND.2021014T221200.v1.5.B04.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.B04.tif" }, "B05": { "title": "Download HLS.L30.T02UND.2021014T221200.v1.5.B05.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.B05.tif" }, "VZA": { "title": "Download HLS.L30.T02UND.2021014T221200.v1.5.VZA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.VZA.tif" }, "B11": { "title": "Download HLS.L30.T02UND.2021014T221200.v1.5.B11.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.B11.tif" }, "B06": { "title": "Download HLS.L30.T02UND.2021014T221200.v1.5.B06.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.B06.tif" }, "B01": { "title": "Download HLS.L30.T02UND.2021014T221200.v1.5.B01.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.B01.tif" }, "Fmask": { "title": "Download HLS.L30.T02UND.2021014T221200.v1.5.Fmask.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.Fmask.tif" }, "SAA": { "title": "Download HLS.L30.T02UND.2021014T221200.v1.5.SAA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.SAA.tif" }, "B03": { "title": "Download HLS.L30.T02UND.2021014T221200.v1.5.B03.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.B03.tif" }, "B07": { "title": "Download HLS.L30.T02UND.2021014T221200.v1.5.B07.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.B07.tif" }, "B09": { "title": "Download HLS.L30.T02UND.2021014T221200.v1.5.B09.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.B09.tif" }, "browse": { "title": "Download HLS.L30.T02UND.2021014T221200.v1.5.jpg", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSL30.015/HLS.L30.T02UND.2021014T221200.v1.5.jpg", "type": "image/jpeg" }, "metadata": { "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1996014088-LPCLOUD.xml", "type": "application/xml" } } }, { "type": "Feature", "id": "G1996014249-LPCLOUD", "stac_version": "1.0.0-rc.4", "stac_extensions": [ "https://stac-extensions.github.io/eo/v1.1.0/schema.json" ], "collection": "HLSL30.v1.5", "geometry": { "type": "Polygon", "coordinates": [ [ [ -167.9890892, 53.123645 ], [ -167.3647298, 53.1376912 ], [ -167.0709527, 53.7047108 ], [ -168.0427467, 53.8789932 ], [ -167.9890892, 53.123645 ] ] ] }, "bbox": [ -168.042747, 53.123645, -167.070953, 53.878993 ], "links": [ { "rel": "self", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items/G1996014249-LPCLOUD" }, { "rel": "parent", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5" }, { "rel": "collection", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5" }, { "rel": "root", "href": "https://cmr.earthdata.nasa.gov/stac/" }, { "rel": "provider", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD" }, { "rel": "via", "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1996014249-LPCLOUD.json" }, { "rel": "via", "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1996014249-LPCLOUD.umm_json" } ], "properties": { "datetime": "2021-01-14T22:12:00.265Z", "start_datetime": "2021-01-14T22:12:00.265Z", "end_datetime": "2021-01-14T22:12:00.265Z", "eo:cloud_cover": 58 }, "assets": { "B07": { "title": "Download HLS.L30.T03UUV.2021014T221200.v1.5.B07.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.B07.tif" }, "B09": { "title": "Download HLS.L30.T03UUV.2021014T221200.v1.5.B09.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.B09.tif" }, "B06": { "title": "Download HLS.L30.T03UUV.2021014T221200.v1.5.B06.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.B06.tif" }, "B01": { "title": "Download HLS.L30.T03UUV.2021014T221200.v1.5.B01.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.B01.tif" }, "B05": { "title": "Download HLS.L30.T03UUV.2021014T221200.v1.5.B05.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.B05.tif" }, "B02": { "title": "Download HLS.L30.T03UUV.2021014T221200.v1.5.B02.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.B02.tif" }, "B03": { "title": "Download HLS.L30.T03UUV.2021014T221200.v1.5.B03.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.B03.tif" }, "B10": { "title": "Download HLS.L30.T03UUV.2021014T221200.v1.5.B10.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.B10.tif" }, "VAA": { "title": "Download HLS.L30.T03UUV.2021014T221200.v1.5.VAA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.VAA.tif" }, "SAA": { "title": "Download HLS.L30.T03UUV.2021014T221200.v1.5.SAA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.SAA.tif" }, "VZA": { "title": "Download HLS.L30.T03UUV.2021014T221200.v1.5.VZA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.VZA.tif" }, "Fmask": { "title": "Download HLS.L30.T03UUV.2021014T221200.v1.5.Fmask.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.Fmask.tif" }, "B04": { "title": "Download HLS.L30.T03UUV.2021014T221200.v1.5.B04.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.B04.tif" }, "B11": { "title": "Download HLS.L30.T03UUV.2021014T221200.v1.5.B11.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.B11.tif" }, "SZA": { "title": "Download HLS.L30.T03UUV.2021014T221200.v1.5.SZA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.SZA.tif" }, "browse": { "title": "Download HLS.L30.T03UUV.2021014T221200.v1.5.jpg", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSL30.015/HLS.L30.T03UUV.2021014T221200.v1.5.jpg", "type": "image/jpeg" }, "metadata": { "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1996014249-LPCLOUD.xml", "type": "application/xml" } } }, { "type": "Feature", "id": "G1996014444-LPCLOUD", "stac_version": "1.0.0-rc.4", "stac_extensions": [ "https://stac-extensions.github.io/eo/v1.1.0/schema.json" ], "collection": "HLSL30.v1.5", "geometry": { "type": "Polygon", "coordinates": [ [ [ -167.3814687, 53.1061588 ], [ -167.0710293, 53.7048111 ], [ -167.9589168, 53.8644684 ], [ -168.0115077, 53.12366 ], [ -167.3814687, 53.1061588 ] ] ] }, "bbox": [ -168.011508, 53.106159, -167.071029, 53.864468 ], "links": [ { "rel": "self", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items/G1996014444-LPCLOUD" }, { "rel": "parent", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5" }, { "rel": "collection", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5" }, { "rel": "root", "href": "https://cmr.earthdata.nasa.gov/stac/" }, { "rel": "provider", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD" }, { "rel": "via", "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1996014444-LPCLOUD.json" }, { "rel": "via", "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1996014444-LPCLOUD.umm_json" } ], "properties": { "datetime": "2021-01-14T22:12:00.265Z", "start_datetime": "2021-01-14T22:12:00.265Z", "end_datetime": "2021-01-14T22:12:00.265Z", "eo:cloud_cover": 55 }, "assets": { "B07": { "title": "Download HLS.L30.T02UQE.2021014T221200.v1.5.B07.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.B07.tif" }, "B03": { "title": "Download HLS.L30.T02UQE.2021014T221200.v1.5.B03.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.B03.tif" }, "VAA": { "title": "Download HLS.L30.T02UQE.2021014T221200.v1.5.VAA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.VAA.tif" }, "VZA": { "title": "Download HLS.L30.T02UQE.2021014T221200.v1.5.VZA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.VZA.tif" }, "B02": { "title": "Download HLS.L30.T02UQE.2021014T221200.v1.5.B02.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.B02.tif" }, "B06": { "title": "Download HLS.L30.T02UQE.2021014T221200.v1.5.B06.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.B06.tif" }, "SZA": { "title": "Download HLS.L30.T02UQE.2021014T221200.v1.5.SZA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.SZA.tif" }, "B05": { "title": "Download HLS.L30.T02UQE.2021014T221200.v1.5.B05.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.B05.tif" }, "SAA": { "title": "Download HLS.L30.T02UQE.2021014T221200.v1.5.SAA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.SAA.tif" }, "B11": { "title": "Download HLS.L30.T02UQE.2021014T221200.v1.5.B11.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.B11.tif" }, "B01": { "title": "Download HLS.L30.T02UQE.2021014T221200.v1.5.B01.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.B01.tif" }, "B09": { "title": "Download HLS.L30.T02UQE.2021014T221200.v1.5.B09.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.B09.tif" }, "B04": { "title": "Download HLS.L30.T02UQE.2021014T221200.v1.5.B04.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.B04.tif" }, "Fmask": { "title": "Download HLS.L30.T02UQE.2021014T221200.v1.5.Fmask.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.Fmask.tif" }, "B10": { "title": "Download HLS.L30.T02UQE.2021014T221200.v1.5.B10.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.B10.tif" }, "browse": { "title": "Download HLS.L30.T02UQE.2021014T221200.v1.5.jpg", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSL30.015/HLS.L30.T02UQE.2021014T221200.v1.5.jpg", "type": "image/jpeg" }, "metadata": { "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1996014444-LPCLOUD.xml", "type": "application/xml" } } }, { "type": "Feature", "id": "G1996014471-LPCLOUD", "stac_version": "1.0.0-rc.4", "stac_extensions": [ "https://stac-extensions.github.io/eo/v1.1.0/schema.json" ], "collection": "HLSL30.v1.5", "geometry": { "type": "Polygon", "coordinates": [ [ [ -167.9283215, 52.222566 ], [ -167.8582301, 53.2082014 ], [ -169.5015396, 53.2402084 ], [ -169.5332578, 52.3068431 ], [ -169.1958954, 52.2487605 ], [ -167.9283215, 52.222566 ] ] ] }, "bbox": [ -169.533258, 52.222566, -167.85823, 53.240208 ], "links": [ { "rel": "self", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items/G1996014471-LPCLOUD" }, { "rel": "parent", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5" }, { "rel": "collection", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5" }, { "rel": "root", "href": "https://cmr.earthdata.nasa.gov/stac/" }, { "rel": "provider", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD" }, { "rel": "via", "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1996014471-LPCLOUD.json" }, { "rel": "via", "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1996014471-LPCLOUD.umm_json" } ], "properties": { "datetime": "2021-01-14T22:12:00.265Z", "start_datetime": "2021-01-14T22:12:00.265Z", "end_datetime": "2021-01-14T22:12:00.265Z", "eo:cloud_cover": 37 }, "assets": { "VAA": { "title": "Download HLS.L30.T02UPD.2021014T221200.v1.5.VAA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.VAA.tif" }, "B04": { "title": "Download HLS.L30.T02UPD.2021014T221200.v1.5.B04.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.B04.tif" }, "VZA": { "title": "Download HLS.L30.T02UPD.2021014T221200.v1.5.VZA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.VZA.tif" }, "B09": { "title": "Download HLS.L30.T02UPD.2021014T221200.v1.5.B09.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.B09.tif" }, "SZA": { "title": "Download HLS.L30.T02UPD.2021014T221200.v1.5.SZA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.SZA.tif" }, "B02": { "title": "Download HLS.L30.T02UPD.2021014T221200.v1.5.B02.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.B02.tif" }, "SAA": { "title": "Download HLS.L30.T02UPD.2021014T221200.v1.5.SAA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.SAA.tif" }, "B01": { "title": "Download HLS.L30.T02UPD.2021014T221200.v1.5.B01.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.B01.tif" }, "B10": { "title": "Download HLS.L30.T02UPD.2021014T221200.v1.5.B10.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.B10.tif" }, "B03": { "title": "Download HLS.L30.T02UPD.2021014T221200.v1.5.B03.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.B03.tif" }, "B11": { "title": "Download HLS.L30.T02UPD.2021014T221200.v1.5.B11.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.B11.tif" }, "B05": { "title": "Download HLS.L30.T02UPD.2021014T221200.v1.5.B05.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.B05.tif" }, "B06": { "title": "Download HLS.L30.T02UPD.2021014T221200.v1.5.B06.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.B06.tif" }, "B07": { "title": "Download HLS.L30.T02UPD.2021014T221200.v1.5.B07.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.B07.tif" }, "Fmask": { "title": "Download HLS.L30.T02UPD.2021014T221200.v1.5.Fmask.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.Fmask.tif" }, "browse": { "title": "Download HLS.L30.T02UPD.2021014T221200.v1.5.jpg", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSL30.015/HLS.L30.T02UPD.2021014T221200.v1.5.jpg", "type": "image/jpeg" }, "metadata": { "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1996014471-LPCLOUD.xml", "type": "application/xml" } } }, { "type": "Feature", "id": "G1994877008-LPCLOUD", "stac_version": "1.0.0-rc.4", "stac_extensions": [ "https://stac-extensions.github.io/eo/v1.1.0/schema.json" ], "collection": "HLSL30.v1.5", "geometry": { "type": "Polygon", "coordinates": [ [ [ -178.2128449, 27.9318071 ], [ -177.9168097, 27.9340963 ], [ -177.9253908, 28.9251026 ], [ -177.9690904, 28.9247951 ], [ -178.2128449, 27.9318071 ] ] ] }, "bbox": [ -178.212845, 27.931807, -177.91681, 28.925103 ], "links": [ { "rel": "self", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items/G1994877008-LPCLOUD" }, { "rel": "parent", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5" }, { "rel": "collection", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5" }, { "rel": "root", "href": "https://cmr.earthdata.nasa.gov/stac/" }, { "rel": "provider", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD" }, { "rel": "via", "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1994877008-LPCLOUD.json" }, { "rel": "via", "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1994877008-LPCLOUD.umm_json" } ], "properties": { "datetime": "2021-01-14T22:18:46.319Z", "start_datetime": "2021-01-14T22:18:46.319Z", "end_datetime": "2021-01-14T22:19:10.219Z", "eo:cloud_cover": 41 }, "assets": { "B07": { "title": "Download HLS.L30.T01RCM.2021014T221846.v1.5.B07.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.B07.tif" }, "B04": { "title": "Download HLS.L30.T01RCM.2021014T221846.v1.5.B04.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.B04.tif" }, "B02": { "title": "Download HLS.L30.T01RCM.2021014T221846.v1.5.B02.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.B02.tif" }, "B10": { "title": "Download HLS.L30.T01RCM.2021014T221846.v1.5.B10.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.B10.tif" }, "SZA": { "title": "Download HLS.L30.T01RCM.2021014T221846.v1.5.SZA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.SZA.tif" }, "VZA": { "title": "Download HLS.L30.T01RCM.2021014T221846.v1.5.VZA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.VZA.tif" }, "Fmask": { "title": "Download HLS.L30.T01RCM.2021014T221846.v1.5.Fmask.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.Fmask.tif" }, "SAA": { "title": "Download HLS.L30.T01RCM.2021014T221846.v1.5.SAA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.SAA.tif" }, "B05": { "title": "Download HLS.L30.T01RCM.2021014T221846.v1.5.B05.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.B05.tif" }, "B01": { "title": "Download HLS.L30.T01RCM.2021014T221846.v1.5.B01.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.B01.tif" }, "VAA": { "title": "Download HLS.L30.T01RCM.2021014T221846.v1.5.VAA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.VAA.tif" }, "B09": { "title": "Download HLS.L30.T01RCM.2021014T221846.v1.5.B09.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.B09.tif" }, "B11": { "title": "Download HLS.L30.T01RCM.2021014T221846.v1.5.B11.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.B11.tif" }, "B03": { "title": "Download HLS.L30.T01RCM.2021014T221846.v1.5.B03.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.B03.tif" }, "B06": { "title": "Download HLS.L30.T01RCM.2021014T221846.v1.5.B06.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.B06.tif" }, "browse": { "title": "Download HLS.L30.T01RCM.2021014T221846.v1.5.jpg", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSL30.015/HLS.L30.T01RCM.2021014T221846.v1.5.jpg", "type": "image/jpeg" }, "metadata": { "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1994877008-LPCLOUD.xml", "type": "application/xml" } } }, { "type": "Feature", "id": "G1994877369-LPCLOUD", "stac_version": "1.0.0-rc.4", "stac_extensions": [ "https://stac-extensions.github.io/eo/v1.1.0/schema.json" ], "collection": "HLSL30.v1.5", "geometry": { "type": "Polygon", "coordinates": [ [ [ -178.0168131, 27.9333942 ], [ -176.9007924, 27.9371126 ], [ -176.8998637, 28.9282455 ], [ -177.9690904, 28.9247951 ], [ -178.0241477, 28.7015494 ], [ -178.0168131, 27.9333942 ] ] ] }, "bbox": [ -178.024148, 27.933394, -176.899864, 28.928281 ], "links": [ { "rel": "self", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items/G1994877369-LPCLOUD" }, { "rel": "parent", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5" }, { "rel": "collection", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5" }, { "rel": "root", "href": "https://cmr.earthdata.nasa.gov/stac/" }, { "rel": "provider", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD" }, { "rel": "via", "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1994877369-LPCLOUD.json" }, { "rel": "via", "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1994877369-LPCLOUD.umm_json" } ], "properties": { "datetime": "2021-01-14T22:18:46.319Z", "start_datetime": "2021-01-14T22:18:46.319Z", "end_datetime": "2021-01-14T22:19:10.219Z", "eo:cloud_cover": 43 }, "assets": { "B04": { "title": "Download HLS.L30.T01RDM.2021014T221846.v1.5.B04.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.B04.tif" }, "B09": { "title": "Download HLS.L30.T01RDM.2021014T221846.v1.5.B09.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.B09.tif" }, "SZA": { "title": "Download HLS.L30.T01RDM.2021014T221846.v1.5.SZA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.SZA.tif" }, "B05": { "title": "Download HLS.L30.T01RDM.2021014T221846.v1.5.B05.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.B05.tif" }, "Fmask": { "title": "Download HLS.L30.T01RDM.2021014T221846.v1.5.Fmask.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.Fmask.tif" }, "B11": { "title": "Download HLS.L30.T01RDM.2021014T221846.v1.5.B11.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.B11.tif" }, "VZA": { "title": "Download HLS.L30.T01RDM.2021014T221846.v1.5.VZA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.VZA.tif" }, "B03": { "title": "Download HLS.L30.T01RDM.2021014T221846.v1.5.B03.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.B03.tif" }, "B10": { "title": "Download HLS.L30.T01RDM.2021014T221846.v1.5.B10.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.B10.tif" }, "B02": { "title": "Download HLS.L30.T01RDM.2021014T221846.v1.5.B02.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.B02.tif" }, "B07": { "title": "Download HLS.L30.T01RDM.2021014T221846.v1.5.B07.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.B07.tif" }, "B01": { "title": "Download HLS.L30.T01RDM.2021014T221846.v1.5.B01.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.B01.tif" }, "VAA": { "title": "Download HLS.L30.T01RDM.2021014T221846.v1.5.VAA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.VAA.tif" }, "B06": { "title": "Download HLS.L30.T01RDM.2021014T221846.v1.5.B06.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.B06.tif" }, "SAA": { "title": "Download HLS.L30.T01RDM.2021014T221846.v1.5.SAA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.SAA.tif" }, "browse": { "title": "Download HLS.L30.T01RDM.2021014T221846.v1.5.jpg", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSL30.015/HLS.L30.T01RDM.2021014T221846.v1.5.jpg", "type": "image/jpeg" }, "metadata": { "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1994877369-LPCLOUD.xml", "type": "application/xml" } } }, { "type": "Feature", "id": "G1994873598-LPCLOUD", "stac_version": "1.0.0-rc.4", "stac_extensions": [ "https://stac-extensions.github.io/eo/v1.1.0/schema.json" ], "collection": "HLSL30.v1.5", "geometry": { "type": "Polygon", "coordinates": [ [ [ 175.289865, -1.8969072 ], [ 175.2901904, -1.530116 ], [ 175.2899208, -1.5301158 ], [ 175.2124833, -1.8968285 ], [ 175.289865, -1.8969072 ] ] ] }, "bbox": [ 175.212483, -1.896907, 175.29019, -1.530116 ], "links": [ { "rel": "self", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items/G1994873598-LPCLOUD" }, { "rel": "parent", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5" }, { "rel": "collection", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5" }, { "rel": "root", "href": "https://cmr.earthdata.nasa.gov/stac/" }, { "rel": "provider", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD" }, { "rel": "via", "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1994873598-LPCLOUD.json" }, { "rel": "via", "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1994873598-LPCLOUD.umm_json" } ], "properties": { "datetime": "2021-01-14T22:27:08.323Z", "start_datetime": "2021-01-14T22:27:08.323Z", "end_datetime": "2021-01-14T22:27:08.323Z", "eo:cloud_cover": 35 }, "assets": { "B07": { "title": "Download HLS.L30.T60MTD.2021014T222708.v1.5.B07.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.B07.tif" }, "SZA": { "title": "Download HLS.L30.T60MTD.2021014T222708.v1.5.SZA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.SZA.tif" }, "B10": { "title": "Download HLS.L30.T60MTD.2021014T222708.v1.5.B10.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.B10.tif" }, "VZA": { "title": "Download HLS.L30.T60MTD.2021014T222708.v1.5.VZA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.VZA.tif" }, "VAA": { "title": "Download HLS.L30.T60MTD.2021014T222708.v1.5.VAA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.VAA.tif" }, "B09": { "title": "Download HLS.L30.T60MTD.2021014T222708.v1.5.B09.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.B09.tif" }, "B01": { "title": "Download HLS.L30.T60MTD.2021014T222708.v1.5.B01.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.B01.tif" }, "Fmask": { "title": "Download HLS.L30.T60MTD.2021014T222708.v1.5.Fmask.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.Fmask.tif" }, "B03": { "title": "Download HLS.L30.T60MTD.2021014T222708.v1.5.B03.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.B03.tif" }, "SAA": { "title": "Download HLS.L30.T60MTD.2021014T222708.v1.5.SAA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.SAA.tif" }, "B02": { "title": "Download HLS.L30.T60MTD.2021014T222708.v1.5.B02.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.B02.tif" }, "B11": { "title": "Download HLS.L30.T60MTD.2021014T222708.v1.5.B11.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.B11.tif" }, "B04": { "title": "Download HLS.L30.T60MTD.2021014T222708.v1.5.B04.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.B04.tif" }, "B05": { "title": "Download HLS.L30.T60MTD.2021014T222708.v1.5.B05.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.B05.tif" }, "B06": { "title": "Download HLS.L30.T60MTD.2021014T222708.v1.5.B06.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.B06.tif" }, "browse": { "title": "Download HLS.L30.T60MTD.2021014T222708.v1.5.jpg", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSL30.015/HLS.L30.T60MTD.2021014T222708.v1.5.jpg", "type": "image/jpeg" }, "metadata": { "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1994873598-LPCLOUD.xml", "type": "application/xml" } } }, { "type": "Feature", "id": "G1994873826-LPCLOUD", "stac_version": "1.0.0-rc.4", "stac_extensions": [ "https://stac-extensions.github.io/eo/v1.1.0/schema.json" ], "collection": "HLSL30.v1.5", "geometry": { "type": "Polygon", "coordinates": [ [ [ 176.1889808, -1.8975663 ], [ 176.1893223, -0.9042776 ], [ 175.4231906, -0.904024 ], [ 175.2124833, -1.8968285 ], [ 176.1889808, -1.8975663 ] ] ] }, "bbox": [ 175.212483, -1.897566, 176.189322, -0.904024 ], "links": [ { "rel": "self", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items/G1994873826-LPCLOUD" }, { "rel": "parent", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5" }, { "rel": "collection", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5" }, { "rel": "root", "href": "https://cmr.earthdata.nasa.gov/stac/" }, { "rel": "provider", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD" }, { "rel": "via", "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1994873826-LPCLOUD.json" }, { "rel": "via", "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1994873826-LPCLOUD.umm_json" } ], "properties": { "datetime": "2021-01-14T22:27:08.323Z", "start_datetime": "2021-01-14T22:27:08.323Z", "end_datetime": "2021-01-14T22:27:08.323Z", "eo:cloud_cover": 16 }, "assets": { "B03": { "title": "Download HLS.L30.T60MUD.2021014T222708.v1.5.B03.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.B03.tif" }, "B07": { "title": "Download HLS.L30.T60MUD.2021014T222708.v1.5.B07.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.B07.tif" }, "B09": { "title": "Download HLS.L30.T60MUD.2021014T222708.v1.5.B09.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.B09.tif" }, "B06": { "title": "Download HLS.L30.T60MUD.2021014T222708.v1.5.B06.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.B06.tif" }, "Fmask": { "title": "Download HLS.L30.T60MUD.2021014T222708.v1.5.Fmask.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.Fmask.tif" }, "VZA": { "title": "Download HLS.L30.T60MUD.2021014T222708.v1.5.VZA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.VZA.tif" }, "VAA": { "title": "Download HLS.L30.T60MUD.2021014T222708.v1.5.VAA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.VAA.tif" }, "B10": { "title": "Download HLS.L30.T60MUD.2021014T222708.v1.5.B10.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.B10.tif" }, "B02": { "title": "Download HLS.L30.T60MUD.2021014T222708.v1.5.B02.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.B02.tif" }, "SZA": { "title": "Download HLS.L30.T60MUD.2021014T222708.v1.5.SZA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.SZA.tif" }, "B04": { "title": "Download HLS.L30.T60MUD.2021014T222708.v1.5.B04.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.B04.tif" }, "B01": { "title": "Download HLS.L30.T60MUD.2021014T222708.v1.5.B01.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.B01.tif" }, "B05": { "title": "Download HLS.L30.T60MUD.2021014T222708.v1.5.B05.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.B05.tif" }, "SAA": { "title": "Download HLS.L30.T60MUD.2021014T222708.v1.5.SAA.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.SAA.tif" }, "B11": { "title": "Download HLS.L30.T60MUD.2021014T222708.v1.5.B11.tif", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-protected/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.B11.tif" }, "browse": { "title": "Download HLS.L30.T60MUD.2021014T222708.v1.5.jpg", "href": "https://lpdaac.earthdata.nasa.gov/lp-prod-public/HLSL30.015/HLS.L30.T60MUD.2021014T222708.v1.5.jpg", "type": "image/jpeg" }, "metadata": { "href": "https://cmr.earthdata.nasa.gov/search/concepts/G1994873826-LPCLOUD.xml", "type": "application/xml" } } } ], "links": [ { "rel": "self", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items" }, { "rel": "root", "href": "https://cmr.earthdata.nasa.gov/stac/" }, { "rel": "next", "method": "GET", "href": "https://cmr.earthdata.nasa.gov/stac/LPCLOUD/collections/HLSL30.v1.5/items?page=2" } ], "context": { "returned": 10, "limit": 1000000, "matched": 324132 } }pystac-client-0.9.0/tests/data/sample-item.json000066400000000000000000000035121503646565400215010ustar00rootroot00000000000000{ "type": "Feature", "stac_version": "1.0.0", "id": "CS3-20160503_132131_05", "properties": { "datetime": "2016-05-03T13:22:30.040000Z", "title": "A CS3 item", "license": "PDDL-1.0", "providers": [ { "name": "CoolSat", "roles": [ "producer", "licensor" ], "url": "https://cool-sat.com/" } ] }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -122.308150179, 37.488035566 ], [ -122.597502109, 37.538869539 ], [ -122.576687533, 37.613537207 ], [ -122.2880486, 37.562818007 ], [ -122.308150179, 37.488035566 ] ] ] }, "links": [ { "rel": "collection", "href": "https://raw.githubusercontent.com/radiantearth/stac-spec/v0.8.1/collection-spec/examples/sentinel2.json" } ], "assets": { "analytic": { "href": "http://cool-sat.com/catalog/CS3-20160503_132130_04/analytic.tif", "title": "4-Band Analytic", "product": "http://cool-sat.com/catalog/products/analytic.json", "type": "image/tiff; application=geotiff; profile=cloud-optimized", "roles": [ "data", "analytic" ] }, "thumbnail": { "href": "http://cool-sat.com/catalog/CS3-20160503_132130_04/thumbnail.png", "title": "Thumbnail", "type": "image/png", "roles": [ "thumbnail" ] } }, "bbox": [ -122.59750209, 37.48803556, -122.2880486, 37.613537207 ], "stac_extensions": [], "collection": "CS3" }pystac-client-0.9.0/tests/data/test-case-1/000077500000000000000000000000001503646565400204165ustar00rootroot00000000000000pystac-client-0.9.0/tests/data/test-case-1/catalog.json000066400000000000000000000007141503646565400227250ustar00rootroot00000000000000{ "type": "Catalog", "id": "test", "stac_version": "1.1.0", "description": "test catalog", "links": [ { "rel": "child", "href": "./country-1/catalog.json", "type": "application/json" }, { "rel": "child", "href": "./country-2/catalog.json", "type": "application/json" }, { "rel": "root", "href": "./catalog.json", "type": "application/json" } ], "stac_extensions": [] }pystac-client-0.9.0/tests/data/test-case-1/country-1/000077500000000000000000000000001503646565400222575ustar00rootroot00000000000000pystac-client-0.9.0/tests/data/test-case-1/country-1/area-1-1/000077500000000000000000000000001503646565400234635ustar00rootroot00000000000000pystac-client-0.9.0/tests/data/test-case-1/country-1/area-1-1/area-1-1-imagery/000077500000000000000000000000001503646565400263225ustar00rootroot00000000000000pystac-client-0.9.0/tests/data/test-case-1/country-1/area-1-1/area-1-1-imagery/area-1-1-imagery.json000066400000000000000000000025021503646565400320530ustar00rootroot00000000000000{ "type": "Feature", "stac_version": "1.1.0", "id": "area-1-1-imagery", "properties": { "datetime": "2019-10-04T18:55:37Z" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5048828125, 3.8916575492899987 ], [ -1.9610595703125, 3.8916575492899987 ], [ -1.9610595703125, 4.275202171119132 ], [ -2.5048828125, 4.275202171119132 ], [ -2.5048828125, 3.8916575492899987 ] ] ] }, "links": [ { "rel": "collection", "href": "../collection.json", "type": "application/json" }, { "rel": "root", "href": "../../../catalog.json", "type": "application/json" }, { "rel": "parent", "href": "../collection.json", "type": "application/json" } ], "assets": { "ortho": { "href": "http://example.com/area-1-1_ortho.tif", "type": "image/vnd.stac.geotiff" }, "dsm": { "href": "http://example.com/area-1-1_dsm.tif", "type": "image/vnd.stac.geotiff" } }, "bbox": [ -2.5048828125, 3.8916575492899987, -1.9610595703125, 3.8916575492899987 ], "stac_extensions": [], "collection": "area-1-1" }pystac-client-0.9.0/tests/data/test-case-1/country-1/area-1-1/area-1-1-labels/000077500000000000000000000000001503646565400261275ustar00rootroot00000000000000pystac-client-0.9.0/tests/data/test-case-1/country-1/area-1-1/area-1-1-labels/area-1-1-labels.json000066400000000000000000000033731503646565400314740ustar00rootroot00000000000000{ "type": "Feature", "stac_version": "1.1.0", "id": "area-1-1-labels", "properties": { "datetime": "2019-10-04T18:55:37Z", "label:description": "labels for area-1-1", "label:type": "vector", "label:properties": [ "label" ], "label:classes": [ { "name": "label", "classes": [ "one", "two" ] } ], "label:tasks": [ "classification" ], "label:methods": [ "manual" ] }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5048828125, 3.8916575492899987 ], [ -1.9610595703125, 3.8916575492899987 ], [ -1.9610595703125, 4.275202171119132 ], [ -2.5048828125, 4.275202171119132 ], [ -2.5048828125, 3.8916575492899987 ] ] ] }, "links": [ { "rel": "source", "href": "../area-1-1-imagery/area-1-1-imagery.json", "type": "application/json" }, { "rel": "collection", "href": "../collection.json", "type": "application/json" }, { "rel": "root", "href": "../../../catalog.json", "type": "application/json" }, { "rel": "parent", "href": "../collection.json", "type": "application/json" } ], "assets": { "labels": { "href": "http://example.com/area-1-1-labels.geojson", "type": "application/geo+json" } }, "bbox": [ -2.5048828125, 3.8916575492899987, -1.9610595703125, 3.8916575492899987 ], "stac_extensions": [ "https://stac-extensions.github.io/label/v1.0.1/schema.json" ], "collection": "area-1-1" }pystac-client-0.9.0/tests/data/test-case-1/country-1/area-1-1/collection.json000066400000000000000000000016731503646565400265200ustar00rootroot00000000000000{ "type": "Collection", "id": "area-1-1", "stac_version": "1.1.0", "description": "test collection country-1", "links": [ { "rel": "item", "href": "./area-1-1-imagery/area-1-1-imagery.json", "type": "application/json" }, { "rel": "item", "href": "./area-1-1-labels/area-1-1-labels.json", "type": "application/json" }, { "rel": "root", "href": "../../catalog.json", "type": "application/json" }, { "rel": "parent", "href": "../catalog.json", "type": "application/json" } ], "stac_extensions": [], "extent": { "spatial": { "bbox": [ [ -2.5048828125, 3.8916575492899987, -1.9610595703125, 4.275202171119132 ] ] }, "temporal": { "interval": [ [ "2019-10-04T18:55:37Z", null ] ] } }, "license": "other" }pystac-client-0.9.0/tests/data/test-case-1/country-1/area-1-2/000077500000000000000000000000001503646565400234645ustar00rootroot00000000000000pystac-client-0.9.0/tests/data/test-case-1/country-1/area-1-2/area-1-2-imagery/000077500000000000000000000000001503646565400263245ustar00rootroot00000000000000pystac-client-0.9.0/tests/data/test-case-1/country-1/area-1-2/area-1-2-imagery/area-1-2-imagery.json000066400000000000000000000025021503646565400320560ustar00rootroot00000000000000{ "type": "Feature", "stac_version": "1.1.0", "id": "area-1-2-imagery", "properties": { "datetime": "2019-10-04T18:55:37Z" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5048828125, 3.8916575492899987 ], [ -1.9610595703125, 3.8916575492899987 ], [ -1.9610595703125, 4.275202171119132 ], [ -2.5048828125, 4.275202171119132 ], [ -2.5048828125, 3.8916575492899987 ] ] ] }, "links": [ { "rel": "collection", "href": "../collection.json", "type": "application/json" }, { "rel": "root", "href": "../../../catalog.json", "type": "application/json" }, { "rel": "parent", "href": "../collection.json", "type": "application/json" } ], "assets": { "ortho": { "href": "http://example.com/area-1-2_ortho.tif", "type": "image/vnd.stac.geotiff" }, "dsm": { "href": "http://example.com/area-1-2_dsm.tif", "type": "image/vnd.stac.geotiff" } }, "bbox": [ -2.5048828125, 3.8916575492899987, -1.9610595703125, 3.8916575492899987 ], "stac_extensions": [], "collection": "area-1-2" }pystac-client-0.9.0/tests/data/test-case-1/country-1/area-1-2/area-1-2-labels/000077500000000000000000000000001503646565400261315ustar00rootroot00000000000000pystac-client-0.9.0/tests/data/test-case-1/country-1/area-1-2/area-1-2-labels/area-1-2-labels.json000066400000000000000000000033731503646565400314770ustar00rootroot00000000000000{ "type": "Feature", "stac_version": "1.1.0", "id": "area-1-2-labels", "properties": { "datetime": "2019-10-04T18:55:37Z", "label:description": "labels for area-1-2", "label:type": "vector", "label:properties": [ "label" ], "label:classes": [ { "name": "label", "classes": [ "one", "two" ] } ], "label:tasks": [ "classification" ], "label:methods": [ "manual" ] }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5048828125, 3.8916575492899987 ], [ -1.9610595703125, 3.8916575492899987 ], [ -1.9610595703125, 4.275202171119132 ], [ -2.5048828125, 4.275202171119132 ], [ -2.5048828125, 3.8916575492899987 ] ] ] }, "links": [ { "rel": "source", "href": "../area-1-2-imagery/area-1-2-imagery.json", "type": "application/json" }, { "rel": "collection", "href": "../collection.json", "type": "application/json" }, { "rel": "root", "href": "../../../catalog.json", "type": "application/json" }, { "rel": "parent", "href": "../collection.json", "type": "application/json" } ], "assets": { "labels": { "href": "http://example.com/area-1-2-labels.geojson", "type": "application/geo+json" } }, "bbox": [ -2.5048828125, 3.8916575492899987, -1.9610595703125, 3.8916575492899987 ], "stac_extensions": [ "https://stac-extensions.github.io/label/v1.0.1/schema.json" ], "collection": "area-1-2" }pystac-client-0.9.0/tests/data/test-case-1/country-1/area-1-2/collection.json000066400000000000000000000016731503646565400265210ustar00rootroot00000000000000{ "type": "Collection", "id": "area-1-2", "stac_version": "1.1.0", "description": "test collection country-1", "links": [ { "rel": "item", "href": "./area-1-2-imagery/area-1-2-imagery.json", "type": "application/json" }, { "rel": "item", "href": "./area-1-2-labels/area-1-2-labels.json", "type": "application/json" }, { "rel": "root", "href": "../../catalog.json", "type": "application/json" }, { "rel": "parent", "href": "../catalog.json", "type": "application/json" } ], "stac_extensions": [], "extent": { "spatial": { "bbox": [ [ -2.5048828125, 3.8916575492899987, -1.9610595703125, 4.275202171119132 ] ] }, "temporal": { "interval": [ [ "2019-10-04T18:55:37Z", null ] ] } }, "license": "other" }pystac-client-0.9.0/tests/data/test-case-1/country-1/catalog.json000066400000000000000000000011061503646565400245620ustar00rootroot00000000000000{ "type": "Catalog", "id": "country-1", "stac_version": "1.1.0", "description": "test catalog country-1", "links": [ { "rel": "child", "href": "./area-1-1/collection.json", "type": "application/json" }, { "rel": "child", "href": "./area-1-2/collection.json", "type": "application/json" }, { "rel": "root", "href": "../catalog.json", "type": "application/json" }, { "rel": "parent", "href": "../catalog.json", "type": "application/json" } ], "stac_extensions": [] }pystac-client-0.9.0/tests/data/test-case-1/country-2/000077500000000000000000000000001503646565400222605ustar00rootroot00000000000000pystac-client-0.9.0/tests/data/test-case-1/country-2/area-2-1/000077500000000000000000000000001503646565400234655ustar00rootroot00000000000000pystac-client-0.9.0/tests/data/test-case-1/country-2/area-2-1/area-2-1-imagery/000077500000000000000000000000001503646565400263255ustar00rootroot00000000000000pystac-client-0.9.0/tests/data/test-case-1/country-2/area-2-1/area-2-1-imagery/area-2-1-imagery.json000066400000000000000000000025021503646565400320570ustar00rootroot00000000000000{ "type": "Feature", "stac_version": "1.1.0", "id": "area-2-1-imagery", "properties": { "datetime": "2019-10-04T18:55:37Z" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5048828125, 3.8916575492899987 ], [ -1.9610595703125, 3.8916575492899987 ], [ -1.9610595703125, 4.275202171119132 ], [ -2.5048828125, 4.275202171119132 ], [ -2.5048828125, 3.8916575492899987 ] ] ] }, "links": [ { "rel": "collection", "href": "../collection.json", "type": "application/json" }, { "rel": "root", "href": "../../../catalog.json", "type": "application/json" }, { "rel": "parent", "href": "../collection.json", "type": "application/json" } ], "assets": { "ortho": { "href": "http://example.com/area-2-1_ortho.tif", "type": "image/vnd.stac.geotiff" }, "dsm": { "href": "http://example.com/area-2-1_dsm.tif", "type": "image/vnd.stac.geotiff" } }, "bbox": [ -2.5048828125, 3.8916575492899987, -1.9610595703125, 3.8916575492899987 ], "stac_extensions": [], "collection": "area-2-1" }pystac-client-0.9.0/tests/data/test-case-1/country-2/area-2-1/area-2-1-labels/000077500000000000000000000000001503646565400261325ustar00rootroot00000000000000pystac-client-0.9.0/tests/data/test-case-1/country-2/area-2-1/area-2-1-labels/area-2-1-labels.json000066400000000000000000000033731503646565400315000ustar00rootroot00000000000000{ "type": "Feature", "stac_version": "1.1.0", "id": "area-2-1-labels", "properties": { "datetime": "2019-10-04T18:55:37Z", "label:description": "labels for area-2-1", "label:type": "vector", "label:properties": [ "label" ], "label:classes": [ { "name": "label", "classes": [ "one", "two" ] } ], "label:tasks": [ "classification" ], "label:methods": [ "manual" ] }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5048828125, 3.8916575492899987 ], [ -1.9610595703125, 3.8916575492899987 ], [ -1.9610595703125, 4.275202171119132 ], [ -2.5048828125, 4.275202171119132 ], [ -2.5048828125, 3.8916575492899987 ] ] ] }, "links": [ { "rel": "source", "href": "../area-2-1-imagery/area-2-1-imagery.json", "type": "application/json" }, { "rel": "collection", "href": "../collection.json", "type": "application/json" }, { "rel": "root", "href": "../../../catalog.json", "type": "application/json" }, { "rel": "parent", "href": "../collection.json", "type": "application/json" } ], "assets": { "labels": { "href": "http://example.com/area-2-1-labels.geojson", "type": "application/geo+json" } }, "bbox": [ -2.5048828125, 3.8916575492899987, -1.9610595703125, 3.8916575492899987 ], "stac_extensions": [ "https://stac-extensions.github.io/label/v1.0.1/schema.json" ], "collection": "area-2-1" }pystac-client-0.9.0/tests/data/test-case-1/country-2/area-2-1/collection.json000066400000000000000000000016731503646565400265220ustar00rootroot00000000000000{ "type": "Collection", "id": "area-2-1", "stac_version": "1.1.0", "description": "test collection country-2", "links": [ { "rel": "item", "href": "./area-2-1-imagery/area-2-1-imagery.json", "type": "application/json" }, { "rel": "item", "href": "./area-2-1-labels/area-2-1-labels.json", "type": "application/json" }, { "rel": "root", "href": "../../catalog.json", "type": "application/json" }, { "rel": "parent", "href": "../catalog.json", "type": "application/json" } ], "stac_extensions": [], "extent": { "spatial": { "bbox": [ [ -2.5048828125, 3.8916575492899987, -1.9610595703125, 4.275202171119132 ] ] }, "temporal": { "interval": [ [ "2019-10-04T18:55:37Z", null ] ] } }, "license": "other" }pystac-client-0.9.0/tests/data/test-case-1/country-2/area-2-2/000077500000000000000000000000001503646565400234665ustar00rootroot00000000000000pystac-client-0.9.0/tests/data/test-case-1/country-2/area-2-2/area-2-2-imagery/000077500000000000000000000000001503646565400263275ustar00rootroot00000000000000pystac-client-0.9.0/tests/data/test-case-1/country-2/area-2-2/area-2-2-imagery/area-2-2-imagery.json000066400000000000000000000025021503646565400320620ustar00rootroot00000000000000{ "type": "Feature", "stac_version": "1.1.0", "id": "area-2-2-imagery", "properties": { "datetime": "2019-10-04T18:55:37Z" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5048828125, 3.8916575492899987 ], [ -1.9610595703125, 3.8916575492899987 ], [ -1.9610595703125, 4.275202171119132 ], [ -2.5048828125, 4.275202171119132 ], [ -2.5048828125, 3.8916575492899987 ] ] ] }, "links": [ { "rel": "collection", "href": "../collection.json", "type": "application/json" }, { "rel": "root", "href": "../../../catalog.json", "type": "application/json" }, { "rel": "parent", "href": "../collection.json", "type": "application/json" } ], "assets": { "ortho": { "href": "http://example.com/area-2-2_ortho.tif", "type": "image/vnd.stac.geotiff" }, "dsm": { "href": "http://example.com/area-2-2_dsm.tif", "type": "image/vnd.stac.geotiff" } }, "bbox": [ -2.5048828125, 3.8916575492899987, -1.9610595703125, 3.8916575492899987 ], "stac_extensions": [], "collection": "area-2-2" }pystac-client-0.9.0/tests/data/test-case-1/country-2/area-2-2/area-2-2-labels/000077500000000000000000000000001503646565400261345ustar00rootroot00000000000000pystac-client-0.9.0/tests/data/test-case-1/country-2/area-2-2/area-2-2-labels/area-2-2-labels.json000066400000000000000000000033731503646565400315030ustar00rootroot00000000000000{ "type": "Feature", "stac_version": "1.1.0", "id": "area-2-2-labels", "properties": { "datetime": "2019-10-04T18:55:37Z", "label:description": "labels for area-2-2", "label:type": "vector", "label:properties": [ "label" ], "label:classes": [ { "name": "label", "classes": [ "one", "two" ] } ], "label:tasks": [ "classification" ], "label:methods": [ "manual" ] }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -2.5048828125, 3.8916575492899987 ], [ -1.9610595703125, 3.8916575492899987 ], [ -1.9610595703125, 4.275202171119132 ], [ -2.5048828125, 4.275202171119132 ], [ -2.5048828125, 3.8916575492899987 ] ] ] }, "links": [ { "rel": "source", "href": "../area-2-2-imagery/area-2-2-imagery.json", "type": "application/json" }, { "rel": "collection", "href": "../collection.json", "type": "application/json" }, { "rel": "root", "href": "../../../catalog.json", "type": "application/json" }, { "rel": "parent", "href": "../collection.json", "type": "application/json" } ], "assets": { "labels": { "href": "http://example.com/area-2-2-labels.geojson", "type": "application/geo+json" } }, "bbox": [ -2.5048828125, 3.8916575492899987, -1.9610595703125, 3.8916575492899987 ], "stac_extensions": [ "https://stac-extensions.github.io/label/v1.0.1/schema.json" ], "collection": "area-2-2" }pystac-client-0.9.0/tests/data/test-case-1/country-2/area-2-2/collection.json000066400000000000000000000016731503646565400265230ustar00rootroot00000000000000{ "type": "Collection", "id": "area-2-2", "stac_version": "1.1.0", "description": "test collection country-2", "links": [ { "rel": "item", "href": "./area-2-2-imagery/area-2-2-imagery.json", "type": "application/json" }, { "rel": "item", "href": "./area-2-2-labels/area-2-2-labels.json", "type": "application/json" }, { "rel": "root", "href": "../../catalog.json", "type": "application/json" }, { "rel": "parent", "href": "../catalog.json", "type": "application/json" } ], "stac_extensions": [], "extent": { "spatial": { "bbox": [ [ -2.5048828125, 3.8916575492899987, -1.9610595703125, 4.275202171119132 ] ] }, "temporal": { "interval": [ [ "2019-10-04T18:55:37Z", null ] ] } }, "license": "other" }pystac-client-0.9.0/tests/data/test-case-1/country-2/catalog.json000066400000000000000000000011061503646565400245630ustar00rootroot00000000000000{ "type": "Catalog", "id": "country-2", "stac_version": "1.1.0", "description": "test catalog country-2", "links": [ { "rel": "child", "href": "./area-2-1/collection.json", "type": "application/json" }, { "rel": "child", "href": "./area-2-2/collection.json", "type": "application/json" }, { "rel": "root", "href": "../catalog.json", "type": "application/json" }, { "rel": "parent", "href": "../catalog.json", "type": "application/json" } ], "stac_extensions": [] }pystac-client-0.9.0/tests/helpers.py000066400000000000000000000011671503646565400175000ustar00rootroot00000000000000import json from pathlib import Path from typing import Any TEST_DATA = Path(__file__).parent / "data" STAC_URLS = { "PLANETARY-COMPUTER": "https://planetarycomputer.microsoft.com/api/stac/v1", "EARTH-SEARCH": "https://earth-search.aws.element84.com/v1", "MLHUB": "https://api.radiant.earth/mlhub/v1", "SPACEBEL": "https://emc.spacebel.be", } def read_data_file(file_name: str, mode: str = "r", parse_json: bool = False) -> Any: file_path = TEST_DATA / file_name with file_path.open(mode=mode) as src: if parse_json: return json.load(src) else: return src.read() pystac-client-0.9.0/tests/test_base_search.py000066400000000000000000000462641503646565400213430ustar00rootroot00000000000000import json from collections.abc import Iterator from datetime import datetime from typing import Any import pytest from dateutil.tz import gettz, tzutc from pystac_client import Client from pystac_client.item_search import BaseSearch from .helpers import STAC_URLS, read_data_file SEARCH_URL = f"{STAC_URLS['PLANETARY-COMPUTER']}/search" INTERSECTS_EXAMPLE = { "type": "Polygon", "coordinates": [ [ [-73.21, 43.99], [-73.21, 44.05], [-73.12, 44.05], [-73.12, 43.99], [-73.21, 43.99], ] ], } ITEM_EXAMPLE: dict[str, Any] = {"collections": "io-lulc", "ids": "60U-2020"} class TestBaseSearchParams: @pytest.fixture(scope="function") def sample_client(self) -> Client: api_content = read_data_file("planetary-computer-root.json", parse_json=True) return Client.from_dict(api_content) def test_tuple_bbox(self) -> None: # Tuple input search = BaseSearch(url=SEARCH_URL, bbox=(-104.5, 44.0, -104.0, 45.0)) assert search.get_parameters()["bbox"] == (-104.5, 44.0, -104.0, 45.0) def test_list_bbox(self) -> None: # List input search = BaseSearch(url=SEARCH_URL, bbox=[-104.5, 44.0, -104.0, 45.0]) assert search.get_parameters()["bbox"] == (-104.5, 44.0, -104.0, 45.0) def test_string_bbox(self) -> None: # String Input search = BaseSearch(url=SEARCH_URL, bbox="-104.5,44.0,-104.0,45.0") assert search.get_parameters()["bbox"] == (-104.5, 44.0, -104.0, 45.0) def test_generator_bbox(self) -> None: # Generator Input def bboxer() -> Iterator[float]: yield from [-104.5, 44.0, -104.0, 45.0] search = BaseSearch(url=SEARCH_URL, bbox=bboxer()) assert search.get_parameters()["bbox"] == (-104.5, 44.0, -104.0, 45.0) def test_url_with_parameters(self) -> None: # Single timestamp input search = BaseSearch( url=SEARCH_URL, datetime="2020-02-01T00:00:00Z", bbox=[-104.5, 44.0, -104.0, 45.0], ) assert "bbox=-104.5%2C44.0%2C-104.0%2C45.0" in search.url_with_parameters() # Motivating example: https://github.com/stac-utils/pystac-client/issues/299 search = BaseSearch( url="https://planetarycomputer.microsoft.com/api/stac/v1/search", collections=["cop-dem-glo-30"], bbox=[88.214, 27.927, 88.302, 28.034], ) assert ( search.url_with_parameters() == "https://planetarycomputer.microsoft.com/api/stac/v1/search?" "bbox=88.214%2C27.927%2C88.302%2C28.034&collections=cop-dem-glo-30" ) def test_single_string_datetime(self) -> None: # Single timestamp input search = BaseSearch(url=SEARCH_URL, datetime="2020-02-01T00:00:00Z") assert search.get_parameters()["datetime"] == "2020-02-01T00:00:00Z" def test_range_string_datetime(self) -> None: # Timestamp range input search = BaseSearch( url=SEARCH_URL, datetime="2020-02-01T00:00:00Z/2020-02-02T00:00:00Z" ) assert ( search.get_parameters()["datetime"] == "2020-02-01T00:00:00Z/2020-02-02T00:00:00Z" ) def test_list_of_strings_datetime(self) -> None: # Timestamp list input search = BaseSearch( url=SEARCH_URL, datetime=["2020-02-01T00:00:00Z", "2020-02-02T00:00:00Z"] ) assert ( search.get_parameters()["datetime"] == "2020-02-01T00:00:00Z/2020-02-02T00:00:00Z" ) def test_open_range_string_datetime(self) -> None: # Open timestamp range input search = BaseSearch(url=SEARCH_URL, datetime="2020-02-01T00:00:00Z/..") assert search.get_parameters()["datetime"] == "2020-02-01T00:00:00Z/.." def test_single_datetime_object(self) -> None: start = datetime(2020, 2, 1, 0, 0, 0, tzinfo=tzutc()) # Single datetime input search = BaseSearch(url=SEARCH_URL, datetime=start) assert search.get_parameters()["datetime"] == "2020-02-01T00:00:00Z" def test_list_of_datetimes(self) -> None: start = datetime(2020, 2, 1, 0, 0, 0, tzinfo=tzutc()) end = datetime(2020, 2, 2, 0, 0, 0, tzinfo=tzutc()) # Datetime range input search = BaseSearch(url=SEARCH_URL, datetime=[start, end]) assert ( search.get_parameters()["datetime"] == "2020-02-01T00:00:00Z/2020-02-02T00:00:00Z" ) def test_open_list_of_datetimes(self) -> None: start = datetime(2020, 2, 1, 0, 0, 0, tzinfo=tzutc()) # Open datetime range input search = BaseSearch(url=SEARCH_URL, datetime=(start, None)) assert search.get_parameters()["datetime"] == "2020-02-01T00:00:00Z/.." def test_localized_datetime_converted_to_utc(self) -> None: # Localized datetime input (should be converted to UTC) start_localized = datetime(2020, 2, 1, 0, 0, 0, tzinfo=gettz("US/Eastern")) search = BaseSearch(url=SEARCH_URL, datetime=start_localized) assert search.get_parameters()["datetime"] == "2020-02-01T05:00:00Z" def test_single_year(self) -> None: search = BaseSearch(url=SEARCH_URL, datetime="2020") assert ( search.get_parameters()["datetime"] == "2020-01-01T00:00:00Z/2020-12-31T23:59:59Z" ) def test_range_of_years(self) -> None: search = BaseSearch(url=SEARCH_URL, datetime="2019/2020") assert ( search.get_parameters()["datetime"] == "2019-01-01T00:00:00Z/2020-12-31T23:59:59Z" ) def test_single_month(self) -> None: search = BaseSearch(url=SEARCH_URL, datetime="2020-06") assert ( search.get_parameters()["datetime"] == "2020-06-01T00:00:00Z/2020-06-30T23:59:59Z" ) def test_range_of_months(self) -> None: search = BaseSearch(url=SEARCH_URL, datetime="2020-04/2020-06") assert ( search.get_parameters()["datetime"] == "2020-04-01T00:00:00Z/2020-06-30T23:59:59Z" ) def test_single_date(self) -> None: search = BaseSearch(url=SEARCH_URL, datetime="2020-06-10") assert ( search.get_parameters()["datetime"] == "2020-06-10T00:00:00Z/2020-06-10T23:59:59Z" ) def test_range_of_dates(self) -> None: search = BaseSearch(url=SEARCH_URL, datetime="2020-06-10/2020-06-20") assert ( search.get_parameters()["datetime"] == "2020-06-10T00:00:00Z/2020-06-20T23:59:59Z" ) def test_mixed_simple_date_strings(self) -> None: search = BaseSearch(url=SEARCH_URL, datetime="2019/2020-06-10") assert ( search.get_parameters()["datetime"] == "2019-01-01T00:00:00Z/2020-06-10T23:59:59Z" ) def test_time(self) -> None: search = BaseSearch( url=SEARCH_URL, datetime="2019-01-01T00:00:00Z/2019-01-01T00:12:00" ) assert ( search.get_parameters()["datetime"] == "2019-01-01T00:00:00Z/2019-01-01T00:12:00Z" ) def test_many_datetimes(self) -> None: datetimes = [ "1985-04-12T23:20:50.52Z", "1996-12-19T16:39:57-08:00", "1990-12-31T23:59:60Z", "1990-12-31T15:59:60-08:00", "1937-01-01T12:00:27.87+01:00", "1985-04-12T23:20:50.52Z", "1937-01-01T12:00:27.8710+01:00", "1937-01-01T12:00:27.8+01:00", "1937-01-01T12:00:27.8Z", "1985-04-12t23:20:50.5202020z", "2020-07-23T00:00:00Z", "2020-07-23T00:00:00.0Z", "2020-07-23T00:00:00.01Z", "2020-07-23T00:00:00.012Z", "2020-07-23T00:00:00.0123Z", "2020-07-23T00:00:00.01234Z", "2020-07-23T00:00:00.012345Z", "2020-07-23T00:00:00.000Z", "2020-07-23T00:00:00.000+03:00", "2020-07-23T00:00:00+03:00", "2020-07-23T00:00:00.000+03:00", "2020-07-23T00:00:00.000z", "/2023-01-01T00:00:00Z", "2023-01-01T00:00:00Z/", ] for date_time in datetimes: BaseSearch(url=SEARCH_URL, datetime=date_time) def test_three_datetimes(self) -> None: start = datetime(2020, 2, 1, 0, 0, 0, tzinfo=tzutc()) middle = datetime(2020, 2, 2, 0, 0, 0, tzinfo=tzutc()) end = datetime(2020, 2, 3, 0, 0, 0, tzinfo=tzutc()) with pytest.raises(Exception): BaseSearch(url=SEARCH_URL, datetime=[start, middle, end]) def test_double_open_ended_interval(self) -> None: with pytest.raises(Exception): BaseSearch(url=SEARCH_URL, datetime=[None, None]) def test_datetime_list_of_one_none(self) -> None: with pytest.raises(Exception): BaseSearch(url=SEARCH_URL, datetime=[None]) def test_poorly_formed_datetimes(self) -> None: with pytest.raises(Exception): BaseSearch(url=SEARCH_URL, datetime="2020-7/2020-8") def test_single_collection_string(self) -> None: # Single ID string search = BaseSearch(url=SEARCH_URL, collections="naip") assert search.get_parameters()["collections"] == ("naip",) def test_multiple_collection_string(self) -> None: # Comma-separated ID string search = BaseSearch(url=SEARCH_URL, collections="naip,landsat8_l1tp") assert search.get_parameters()["collections"] == ("naip", "landsat8_l1tp") def test_list_of_collection_strings(self) -> None: # List of ID strings search = BaseSearch(url=SEARCH_URL, collections=["naip", "landsat8_l1tp"]) assert search.get_parameters()["collections"] == ("naip", "landsat8_l1tp") def test_generator_of_collection_strings(self) -> None: # Generator of ID strings def collectioner() -> Iterator[str]: yield from ["naip", "landsat8_l1tp"] search = BaseSearch(url=SEARCH_URL, collections=collectioner()) assert search.get_parameters()["collections"] == ("naip", "landsat8_l1tp") def test_single_id_string(self) -> None: # Single ID search = BaseSearch(url=SEARCH_URL, ids="m_3510836_se_12_060_20180508_20190331") assert search.get_parameters()["ids"] == ( "m_3510836_se_12_060_20180508_20190331", ) def test_multiple_id_string(self) -> None: # Comma-separated ID string search = BaseSearch( url=SEARCH_URL, ids="m_3510836_se_12_060_20180508_20190331,m_3510840_se_12_060_20180504_20190331", ) assert search.get_parameters()["ids"] == ( "m_3510836_se_12_060_20180508_20190331", "m_3510840_se_12_060_20180504_20190331", ) def test_list_of_id_strings(self) -> None: # List of IDs search = BaseSearch( url=SEARCH_URL, ids=[ "m_3510836_se_12_060_20180508_20190331", "m_3510840_se_12_060_20180504_20190331", ], ) assert search.get_parameters()["ids"] == ( "m_3510836_se_12_060_20180508_20190331", "m_3510840_se_12_060_20180504_20190331", ) def test_generator_of_id_string(self) -> None: # Generator of IDs def ids() -> Iterator[str]: yield from [ "m_3510836_se_12_060_20180508_20190331", "m_3510840_se_12_060_20180504_20190331", ] search = BaseSearch(url=SEARCH_URL, ids=ids()) assert search.get_parameters()["ids"] == ( "m_3510836_se_12_060_20180508_20190331", "m_3510840_se_12_060_20180504_20190331", ) def test_intersects_dict(self) -> None: # Dict input search = BaseSearch(url=SEARCH_URL, intersects=INTERSECTS_EXAMPLE) assert search.get_parameters()["intersects"] == INTERSECTS_EXAMPLE def test_intersects_json_string(self) -> None: # JSON string input search = BaseSearch(url=SEARCH_URL, intersects=json.dumps(INTERSECTS_EXAMPLE)) assert search.get_parameters()["intersects"] == INTERSECTS_EXAMPLE def test_intersects_non_geo_interface_object(self) -> None: with pytest.raises(Exception): BaseSearch(url=SEARCH_URL, intersects=object()) # type: ignore def test_filter_lang_default_for_method_despite_filter_as_dict(self) -> None: search = BaseSearch(url=SEARCH_URL, method="GET", filter={}) assert search.get_parameters()["filter-lang"] == "cql2-text" def test_filter_lang_default_for_method_despite_filter_as_str(self) -> None: search = BaseSearch(url=SEARCH_URL, method="POST", filter="") assert search.get_parameters()["filter-lang"] == "cql2-json" def test_filter_lang_cql2_text(self) -> None: # Use specified filter_lang search = BaseSearch(url=SEARCH_URL, filter_lang="cql2-text", filter={}) assert search.get_parameters()["filter-lang"] == "cql2-text" def test_filter_lang_cql2_json(self) -> None: # Use specified filter_lang search = BaseSearch(url=SEARCH_URL, filter_lang="cql2-json", filter="") assert search.get_parameters()["filter-lang"] == "cql2-json" def test_filter_lang_without_filter(self) -> None: # No filter provided search = BaseSearch(url=SEARCH_URL) assert "filter-lang" not in search.get_parameters() def test_filter_conversion_to_cql2_json(self) -> None: search = BaseSearch(url=SEARCH_URL, method="POST", filter="eo:cloud_cover<=10") assert search.get_parameters()["filter-lang"] == "cql2-json" assert search.get_parameters()["filter"] == { "args": [{"property": "eo:cloud_cover"}, 10], "op": "<=", } def test_filter_conversion_to_cql2_text(self) -> None: search = BaseSearch( url=SEARCH_URL, method="GET", filter={"op": "<=", "args": [{"property": "eo:cloud_cover"}, 10]}, ) assert search.get_parameters()["filter-lang"] == "cql2-text" assert search.get_parameters()["filter"] == '("eo:cloud_cover" <= 10)' def test_filter_conversion_does_not_happen_if_filter_lang_specified_json( self, ) -> None: search = BaseSearch( url=SEARCH_URL, method="GET", filter={"op": "<=", "args": [{"property": "eo:cloud_cover"}, 10]}, filter_lang="cql2-json", ) # assert search.get_parameters()["filter-lang"] == "cql2-json" assert ( search.get_parameters()["filter"] == '{"op": "<=", "args": [{"property": "eo:cloud_cover"}, 10]}' ) def test_filter_conversion_does_not_happen_if_filter_lang_specified_text( self, ) -> None: search = BaseSearch( url=SEARCH_URL, method="POST", filter="eo:cloud_cover<=10", filter_lang="cql2-text", ) # note that this is likely to fail when it hits the server assert search.get_parameters()["filter-lang"] == "cql2-text" assert search.get_parameters()["filter"] == "eo:cloud_cover<=10" def test_sortby(self) -> None: search = BaseSearch(url=SEARCH_URL, sortby="properties.datetime") assert search.get_parameters()["sortby"] == [ {"direction": "asc", "field": "properties.datetime"} ] search = BaseSearch(url=SEARCH_URL, sortby="+properties.datetime") assert search.get_parameters()["sortby"] == [ {"direction": "asc", "field": "properties.datetime"} ] search = BaseSearch(url=SEARCH_URL, sortby="-properties.datetime") assert search.get_parameters()["sortby"] == [ {"direction": "desc", "field": "properties.datetime"} ] search = BaseSearch( url=SEARCH_URL, sortby="-properties.datetime,+id,collection" ) assert search.get_parameters()["sortby"] == [ {"direction": "desc", "field": "properties.datetime"}, {"direction": "asc", "field": "id"}, {"direction": "asc", "field": "collection"}, ] search = BaseSearch( url=SEARCH_URL, sortby=[ {"direction": "desc", "field": "properties.datetime"}, {"direction": "asc", "field": "id"}, {"direction": "asc", "field": "collection"}, ], ) assert search.get_parameters()["sortby"] == [ {"direction": "desc", "field": "properties.datetime"}, {"direction": "asc", "field": "id"}, {"direction": "asc", "field": "collection"}, ] search = BaseSearch( url=SEARCH_URL, sortby=["-properties.datetime", "id", "collection"] ) assert search.get_parameters()["sortby"] == [ {"direction": "desc", "field": "properties.datetime"}, {"direction": "asc", "field": "id"}, {"direction": "asc", "field": "collection"}, ] search = BaseSearch( url=SEARCH_URL, method="GET", sortby=["-properties.datetime", "id", "collection"], ) assert ( search.get_parameters()["sortby"] == "-properties.datetime,+id,+collection" ) search = BaseSearch( url=SEARCH_URL, method="GET", sortby="-properties.datetime,id,collection" ) assert ( search.get_parameters()["sortby"] == "-properties.datetime,+id,+collection" ) with pytest.raises(Exception): BaseSearch(url=SEARCH_URL, sortby=1) # type: ignore with pytest.raises(Exception): BaseSearch(url=SEARCH_URL, sortby=[1]) # type: ignore def test_fields(self) -> None: with pytest.raises(Exception): BaseSearch(url=SEARCH_URL, fields=1) # type: ignore with pytest.raises(Exception): BaseSearch(url=SEARCH_URL, fields=[1]) # type: ignore search = BaseSearch(url=SEARCH_URL, fields="id,collection,+foo,-bar") assert search.get_parameters()["fields"] == { "exclude": ["bar"], "include": ["id", "collection", "foo"], } search = BaseSearch(url=SEARCH_URL, fields=["id", "collection", "+foo", "-bar"]) assert search.get_parameters()["fields"] == { "exclude": ["bar"], "include": ["id", "collection", "foo"], } search = BaseSearch( url=SEARCH_URL, fields={"exclude": ["bar"], "include": ["id", "collection"]}, ) assert search.get_parameters()["fields"] == { "exclude": ["bar"], "include": ["id", "collection"], } search = BaseSearch( url=SEARCH_URL, method="GET", fields="id,collection,+foo,-bar" ) assert search.get_parameters()["fields"] == "+id,+collection,+foo,-bar" search = BaseSearch( url=SEARCH_URL, method="GET", fields=["id", "collection", "+foo", "-bar"] ) assert search.get_parameters()["fields"] == "+id,+collection,+foo,-bar" search = BaseSearch( url=SEARCH_URL, method="GET", fields={"exclude": ["bar"], "include": ["id", "collection"]}, ) assert search.get_parameters()["fields"] == "+id,+collection,-bar" pystac-client-0.9.0/tests/test_cli.py000066400000000000000000000240111503646565400176350ustar00rootroot00000000000000import json import tempfile import pytest from pytest_console_scripts import ScriptRunner import pystac_client.cli from tests.helpers import STAC_URLS, TEST_DATA FILTER_JSON = {"op": "lte", "args": [{"property": "eo:cloud_cover"}, 40]} # We want to ensure that the CLI is handling these warnings properly @pytest.mark.filterwarnings("ignore::pystac_client.warnings.PystacClientWarning") class TestCLISearch: @pytest.mark.vcr def test_item_search(self, script_runner: ScriptRunner) -> None: args = [ "stac-client", "search", STAC_URLS["PLANETARY-COMPUTER"], "-c", "naip", "--max-items", "20", ] result = script_runner.run(args, print_result=False) assert result.success @pytest.mark.vcr def test_filter(self, script_runner: ScriptRunner) -> None: args = [ "stac-client", "search", STAC_URLS["EARTH-SEARCH"], "--filter", json.dumps(FILTER_JSON), "--max-items", "20", ] result = script_runner.run(args, print_result=False) assert result.success, result.stderr assert result.stdout @pytest.mark.vcr @pytest.mark.parametrize("filename", ["netherlands_aoi.json", "sample-item.json"]) def test_intersects(self, script_runner: ScriptRunner, filename: str) -> None: args = [ "stac-client", "search", STAC_URLS["PLANETARY-COMPUTER"], "--collections", "landsat-8-c2-l2", "--intersects", str(TEST_DATA / filename), "--max-items", "10", ] result = script_runner.run(args, print_result=False) assert result.success, result.stderr assert result.stdout @pytest.mark.vcr def test_intersects_despite_warning(self, script_runner: ScriptRunner) -> None: args = [ "stac-client", "search", STAC_URLS["PLANETARY-COMPUTER"], "--collections", "landsat-8-c2-l2", "--intersects", str(TEST_DATA / "sample-item-collection.json"), "--max-items", "10", ] result = script_runner.run(args, print_result=False) assert result.success assert result.stdout assert "input to intersects is a FeatureCollection" in result.stderr @pytest.mark.parametrize( "headers,good_header_count", [ (["kick=flip", "home=run"], 2), (["mad=pow"], 1), (["=no-var"], 0), (["no-val="], 0), (["good=header", "bad-header"], 1), (["header=value-with-three-=-signs-=", "plain=jane"], 2), ], ) def test_headers(self, headers: list[str], good_header_count: int) -> None: args = [ "search", STAC_URLS["PLANETARY-COMPUTER"], "-c", "naip", "--max-items", "20", "--headers", ] + headers pargs = pystac_client.cli.parse_args(args) assert len(pargs["headers"]) == good_header_count def test_no_arguments(self, script_runner: ScriptRunner) -> None: args = ["stac-client"] result = script_runner.run(*args, print_result=False) assert not result.success assert result.returncode == 1 @pytest.mark.vcr def test_non_conformant_raises_by_default( self, script_runner: ScriptRunner ) -> None: args = [ "stac-client", "search", "https://earth-search.aws.element84.com/v0", "-c", "sentinel-s2-l2a-cogs", "--matched", ] result = script_runner.run(args, print_result=False) assert result.success is False assert "Server does not conform to ITEM_SEARCH" in result.stderr assert result.returncode == 1 @pytest.mark.vcr @pytest.mark.parametrize("warning_flag", ["--error", "--error=no-conforms-to"]) def test_non_conformant_raises_if_warning_set_to_error( self, script_runner: ScriptRunner, warning_flag: str ) -> None: args = [ "stac-client", "search", "https://earth-search.aws.element84.com/v0", "-c", "sentinel-s2-l2a-cogs", warning_flag, "--matched", ] result = script_runner.run(args, print_result=False) assert result.success is False assert "Server does not advertise any conformance classes" in result.stderr assert result.returncode == 1 @pytest.mark.vcr def test_non_conformant_can_be_fixed(self, script_runner: ScriptRunner) -> None: args = [ "stac-client", "search", "https://earth-search.aws.element84.com/v0", "-c", "sentinel-s2-l2a-cogs", "--add-conforms-to=ITEM_SEARCH", "--matched", ] result = script_runner.run(args, print_result=False) assert result.success @pytest.mark.vcr @pytest.mark.parametrize("warning_flag", ["--ignore", "--ignore=no-conforms-to"]) def test_non_conformant_can_be_ignored( self, script_runner: ScriptRunner, warning_flag: str ) -> None: args = [ "stac-client", "search", "https://earth-search.aws.element84.com/v0", "-c", "sentinel-s2-l2a-cogs", warning_flag, "--add-conforms-to=ITEM_SEARCH", "--matched", ] result = script_runner.run(args, print_result=False) assert result.success @pytest.mark.vcr @pytest.mark.parametrize( "conforms_to_flag", ["--clear-conforms-to", "--remove-conforms-to=ITEM_SEARCH"] ) def test_altering_conforms_to( self, script_runner: ScriptRunner, conforms_to_flag: str ) -> None: args = [ "stac-client", "search", STAC_URLS["EARTH-SEARCH"], conforms_to_flag, ] result = script_runner.run(args, print_result=False) assert result.success is False assert "Server does not conform to ITEM_SEARCH" in result.stderr assert result.returncode == 1 @pytest.mark.vcr @pytest.mark.filterwarnings("ignore::Warning") def test_matched_not_available(self, script_runner: ScriptRunner) -> None: args = [ "stac-client", "search", STAC_URLS["PLANETARY-COMPUTER"], "-c", "naip", "--matched", ] result = script_runner.run(args, print_result=False) assert result.success is False assert "'matched' is not supported for this catalog" in result.stderr assert result.returncode == 1 @pytest.mark.vcr def test_matched(self, script_runner: ScriptRunner) -> None: args = [ "stac-client", "search", STAC_URLS["EARTH-SEARCH"], "-c", "cop-dem-glo-30", "--max-items", "1", "--matched", ] result = script_runner.run(args, print_result=False) assert result.success assert result.stdout[0].isdigit(), "Output does not start with a number" @pytest.mark.vcr def test_fields(self, script_runner: ScriptRunner) -> None: args = [ "stac-client", "search", STAC_URLS["EARTH-SEARCH"], "-c", "cop-dem-glo-30", "--max-items", "1", "--fields=-geometry,-assets", ] result = script_runner.run(args, print_result=True) assert result.success assert "assets" not in result.stdout assert "geometry" not in result.stdout @pytest.mark.vcr def test_save(self, script_runner: ScriptRunner) -> None: with tempfile.NamedTemporaryFile() as fp: path = fp.name args = [ "stac-client", "search", STAC_URLS["EARTH-SEARCH"], "-c", "cop-dem-glo-30", "--max-items", "1", "--save", path, ] result = script_runner.run(args, print_result=False) assert result.success with open(path) as f: output = json.loads(f.read()) assert "features" in output assert len(output["features"]) == 1 @pytest.mark.filterwarnings("ignore::pystac_client.warnings.PystacClientWarning") class TestCLICollections: @pytest.mark.vcr def test_collections(self, script_runner: ScriptRunner) -> None: args = [ "stac-client", "collections", STAC_URLS["EARTH-SEARCH"], ] result = script_runner.run(args, print_result=False) assert result.success assert result.stdout.startswith('[{"type": "Collection"') @pytest.mark.vcr def test_collection_search(self, script_runner: ScriptRunner) -> None: args = [ "stac-client", "collections", STAC_URLS["EARTH-SEARCH"], "--q", "sentinel", ] with pytest.warns(UserWarning, match="COLLECTION_SEARCH"): result = script_runner.run(args, print_result=False) assert result.success collections = json.loads(result.stdout) assert len(collections) == 5 @pytest.mark.vcr def test_save(self, script_runner: ScriptRunner) -> None: with tempfile.NamedTemporaryFile() as fp: path = fp.name args = [ "stac-client", "collections", STAC_URLS["EARTH-SEARCH"], "--save", path, ] result = script_runner.run(args, print_result=False) assert result.success with open(path) as f: output = json.loads(f.read()) assert isinstance(output, list) assert len(output) == 9, "earth-search does not have 9 collections" assert all(c["type"] == "Collection" for c in output) pystac-client-0.9.0/tests/test_client.py000066400000000000000000000710061503646565400203520ustar00rootroot00000000000000import json import os.path import warnings from datetime import datetime from tempfile import TemporaryDirectory from typing import Any from urllib.parse import parse_qs, urlsplit import pystac import pytest from dateutil.tz import tzutc from pystac import MediaType from requests_mock import Mocker from pystac_client import Client, CollectionClient from pystac_client._utils import Modifiable from pystac_client.conformance import ConformanceClasses from pystac_client.errors import ClientTypeError, IgnoredResultWarning from pystac_client.exceptions import APIError from pystac_client.stac_api_io import StacApiIO from pystac_client.warnings import ( DoesNotConformTo, FallbackToPystac, MissingLink, NoConformsTo, strict, ) from .helpers import STAC_URLS, TEST_DATA, read_data_file class TestAPI: @pytest.mark.vcr def test_instance(self) -> None: api = Client.open(STAC_URLS["PLANETARY-COMPUTER"]) # An API instance is also a Catalog instance assert isinstance(api, pystac.Catalog) assert str(api) == "" @pytest.mark.vcr def test_links(self) -> None: api = Client.open(STAC_URLS["PLANETARY-COMPUTER"]) # Should be able to get collections via links as with a typical PySTAC Catalog collection_links = api.get_links("child") assert len(collection_links) > 0 collections = list(api.get_collections()) assert len(collection_links) == len(collections) first_child_link = api.get_single_link("child") assert first_child_link is not None first_collection = first_child_link.resolve_stac_object(root=api).target assert isinstance(first_collection, pystac.Collection) @pytest.mark.vcr def test_from_file(self) -> None: api = Client.from_file(STAC_URLS["PLANETARY-COMPUTER"]) assert api.title == "Microsoft Planetary Computer STAC API" def test_invalid_url(self) -> None: with pytest.raises(TypeError): Client.open() # type: ignore[call-arg] def test_get_collections_with_conformance(self, requests_mock: Mocker) -> None: """Checks that the "data" endpoint is used if the API published the STAC API Collections conformance class.""" pc_root_text = read_data_file("planetary-computer-root.json") pc_collection_dict = read_data_file( "planetary-computer-aster-l1t-collection.json", parse_json=True ) # Mock the root catalog requests_mock.get( STAC_URLS["PLANETARY-COMPUTER"], status_code=200, text=pc_root_text ) api = Client.open(STAC_URLS["PLANETARY-COMPUTER"]) assert api.conforms_to(ConformanceClasses.COLLECTIONS) # Get & mock the collections (rel type "data") link collections_link = api.get_single_link("data") assert collections_link is not None requests_mock.get( collections_link.href, status_code=200, json={"collections": [pc_collection_dict], "links": []}, ) _ = next(api.get_collections()) history = requests_mock.request_history assert len(history) == 2 assert history[1].url == collections_link.href def test_get_collections_single_slash(self, requests_mock: Mocker) -> None: pc_root_text = read_data_file("planetary-computer-root.json") root_url = "http://pystac-client.test/" requests_mock.get(root_url, status_code=200, text=pc_root_text) api = Client.open(root_url) pc_collection_dict = read_data_file( "planetary-computer-aster-l1t-collection.json", parse_json=True ) requests_mock.get( f"{root_url}collections", # note the lack of the slash status_code=200, json={"collections": [pc_collection_dict], "links": []}, ) api.remove_links("data") with pytest.warns(MissingLink, match="No link with rel='data'"): _ = next(api.get_collections()) history = requests_mock.request_history assert len(history) == 2 assert history[1].url == f"{root_url}collections" def test_keep_trailing_slash_on_root(self, requests_mock: Mocker) -> None: pc_root_text = read_data_file("planetary-computer-root.json") root_url = "http://pystac-client.test/" requests_mock.get(root_url, status_code=200, text=pc_root_text) client = Client.open(root_url) self_href = client.get_self_href() assert self_href assert self_href.endswith("/") def test_fall_back_to_data_link_for_collections( self, requests_mock: Mocker ) -> None: pc_root_text = read_data_file("planetary-computer-root.json") root_url = "http://pystac-client.test/" requests_mock.get(root_url, status_code=200, text=pc_root_text) api = Client.open(root_url) api.set_self_href(None) pc_collection_dict = read_data_file( "planetary-computer-aster-l1t-collection.json", parse_json=True ) requests_mock.get( # the href of the data link "https://planetarycomputer.microsoft.com/api/stac/v1/collections", status_code=200, json={"collections": [pc_collection_dict], "links": []}, ) _ = next(api.get_collections()) history = requests_mock.request_history assert len(history) == 2 assert ( history[1].url == "https://planetarycomputer.microsoft.com/api/stac/v1/collections" ) def test_build_absolute_href_from_data_link(self, requests_mock: Mocker) -> None: pc_root = read_data_file("planetary-computer-root.json", parse_json=True) assert isinstance(pc_root, dict) for link in pc_root["links"]: if link["rel"] == "data": link["href"] = "./collections" root_url = "http://pystac-client.test/" requests_mock.get(root_url, status_code=200, text=json.dumps(pc_root)) api = Client.open(root_url) api.set_self_href(None) api.add_link( pystac.Link( rel="self", target="https://planetarycomputer.microsoft.com/api/stac/v1/", ) ) pc_collection_dict = read_data_file( "planetary-computer-aster-l1t-collection.json", parse_json=True ) requests_mock.get( # the href of the data link "https://planetarycomputer.microsoft.com/api/stac/v1/collections", status_code=200, json={"collections": [pc_collection_dict], "links": []}, ) _ = next(api.get_collections()) history = requests_mock.request_history assert len(history) == 2 assert ( history[1].url == "https://planetarycomputer.microsoft.com/api/stac/v1/collections" ) def test_error_if_no_self_href_or_data_link(self, requests_mock: Mocker) -> None: pc_root = read_data_file("planetary-computer-root.json", parse_json=True) assert isinstance(pc_root, dict) pc_root["links"] = [link for link in pc_root["links"] if link["rel"] != "data"] root_url = "http://pystac-client.test/" requests_mock.get(root_url, status_code=200, text=json.dumps(pc_root)) api = Client.open(root_url) api.set_self_href(None) with pytest.warns(MissingLink, match="No link with rel='data'"): with pytest.raises(ValueError, match="does not have a self_href set"): _ = api.get_collection("an-id") def test_custom_request_parameters(self, requests_mock: Mocker) -> None: pc_root_text = read_data_file("planetary-computer-root.json") pc_collection_dict = read_data_file( "planetary-computer-collection.json", parse_json=True ) requests_mock.get( STAC_URLS["PLANETARY-COMPUTER"], status_code=200, text=pc_root_text ) init_qp_name = "my-param" init_qp_value = "some-value" api = Client.open( STAC_URLS["PLANETARY-COMPUTER"], parameters={init_qp_name: init_qp_value} ) # Ensure that the Client will use the /collections endpoint and not fall back # to traversing child links. assert api.conforms_to(ConformanceClasses.COLLECTIONS) # Get the /collections endpoint collections_link = api.get_single_link("data") assert collections_link is not None # Mock the request requests_mock.get( collections_link.href, status_code=200, json={"collections": [pc_collection_dict], "links": []}, ) # Make the collections request _ = next(api.get_collections()) history = requests_mock.request_history assert len(history) == 2 actual_qs = urlsplit(history[1].url).query actual_qp = parse_qs(actual_qs) # Check that the param from the init method is present assert init_qp_name in actual_qp assert len(actual_qp[init_qp_name]) == 1 assert actual_qp[init_qp_name][0] == init_qp_value def test_custom_query_params_get_collections_propagation( self, requests_mock: Mocker ) -> None: """Checks that query params passed to the init method are added to requests for CollectionClients fetched from the /collections endpoint.""" pc_root_text = read_data_file("planetary-computer-root.json") pc_collection_dict = read_data_file( "planetary-computer-collection.json", parse_json=True ) requests_mock.get( STAC_URLS["PLANETARY-COMPUTER"], status_code=200, text=pc_root_text ) init_qp_name = "my-param" init_qp_value = "some-value" client = Client.open( STAC_URLS["PLANETARY-COMPUTER"], parameters={init_qp_name: init_qp_value} ) # Get the /collections endpoint collections_link = client.get_single_link("data") assert collections_link is not None # Mock the request requests_mock.get( collections_link.href, status_code=200, json={"collections": [pc_collection_dict], "links": []}, ) # Make the collections request collection = next(client.get_collections()) # Mock the items endpoint items_link = collection.get_single_link("items") assert items_link is not None requests_mock.get( items_link.href, status_code=200, json={ "type": "FeatureCollection", "stac_version": "1.0.0", "features": [], "links": [], }, ) # Make the items request _ = list(collection.get_items()) history = requests_mock.request_history assert len(history) == 3 actual_qs = urlsplit(history[2].url).query actual_qp = parse_qs(actual_qs) # Check that the query param from the root Client is present assert init_qp_name in actual_qp assert len(actual_qp[init_qp_name]) == 1 assert actual_qp[init_qp_name][0] == init_qp_value def test_custom_query_params_get_collection_propagation( self, requests_mock: Mocker ) -> None: """Checks that query params passed to the init method are added to requests for CollectionClients fetched from the /collections endpoint.""" pc_root_text = read_data_file("planetary-computer-root.json") pc_collection_dict = read_data_file( "planetary-computer-collection.json", parse_json=True ) assert isinstance(pc_collection_dict, dict) pc_collection_id = pc_collection_dict["id"] requests_mock.get( STAC_URLS["PLANETARY-COMPUTER"], status_code=200, text=pc_root_text ) init_qp_name = "my-param" init_qp_value = "some-value" client = Client.open( STAC_URLS["PLANETARY-COMPUTER"], parameters={init_qp_name: init_qp_value} ) # Get the /collections endpoint collections_link = client.get_single_link("data") assert collections_link is not None collection_href = collections_link.href + "/" + pc_collection_id # Mock the request requests_mock.get(collection_href, status_code=200, json=pc_collection_dict) # Make the collections request collection = client.get_collection(pc_collection_id) assert collection is not None # Mock the items endpoint items_link = collection.get_single_link("items") assert items_link is not None requests_mock.get( items_link.href, status_code=200, json={ "type": "FeatureCollection", "stac_version": "1.0.0", "features": [], "links": [], }, ) # Make the items request _ = list(collection.get_items()) history = requests_mock.request_history assert len(history) == 3 actual_qs = urlsplit(history[2].url).query actual_qp = parse_qs(actual_qs) # Check that the query param from the root Client is present assert init_qp_name in actual_qp assert len(actual_qp[init_qp_name]) == 1 assert actual_qp[init_qp_name][0] == init_qp_value def test_get_collections_without_conformance_fallsback_to_pystac( self, requests_mock: Mocker ) -> None: pc_root_dict = read_data_file("planetary-computer-root.json", parse_json=True) pc_collection_dict = read_data_file( "planetary-computer-aster-l1t-collection.json", parse_json=True ) # Remove the collections conformance class pc_root_dict["conformsTo"].remove( "https://api.stacspec.org/v1.0.0-beta.1/collections" ) # Remove all child links except for the collection that we are mocking pc_collection_href = next( link["href"] for link in pc_collection_dict["links"] if link["rel"] == "self" ) pc_root_dict["links"] = [ link for link in pc_root_dict["links"] if link["rel"] != "child" or link["href"] == pc_collection_href ] # Mock the root catalog requests_mock.get( STAC_URLS["PLANETARY-COMPUTER"], status_code=200, json=pc_root_dict ) api = Client.open(STAC_URLS["PLANETARY-COMPUTER"]) assert api.has_conforms_to() assert not api.conforms_to(ConformanceClasses.COLLECTIONS) assert not api.conforms_to(ConformanceClasses.FEATURES) # Mock the collection requests_mock.get(pc_collection_href, status_code=200, json=pc_collection_dict) with pytest.warns(FallbackToPystac): with pytest.warns(DoesNotConformTo, match="COLLECTIONS, FEATURES"): _ = next(api.get_collections()) history = requests_mock.request_history assert len(history) == 2 def test_opening_a_collection(self) -> None: path = str(TEST_DATA / "planetary-computer-aster-l1t-collection.json") with pytest.raises(ClientTypeError): Client.open(path) def test_headers_with_custom_stac_io(self, requests_mock: Mocker) -> None: pc_root_dict = read_data_file("planetary-computer-root.json", parse_json=True) requests_mock.get( STAC_URLS["PLANETARY-COMPUTER"], status_code=200, json=pc_root_dict, request_headers={"ski": "pow", "shred": "gnar"}, ) stac_io = StacApiIO(headers={"ski": "pow"}) _ = Client.open( STAC_URLS["PLANETARY-COMPUTER"], headers={"shred": "gnar"}, stac_io=stac_io ) class TestAPISearch: @pytest.fixture(scope="function") def api(self) -> Client: return Client.from_file(str(TEST_DATA / "planetary-computer-root.json")) def test_search_conformance_error(self, api: Client) -> None: # Remove item search conformance api.remove_conforms_to("ITEM_SEARCH") with strict(): with pytest.raises(DoesNotConformTo, match="ITEM_SEARCH"): api.search(limit=10, max_items=10, collections="mr-peebles") def test_no_search_link(self, api: Client) -> None: # Remove the search link api.remove_links("search") with strict(): with pytest.raises( MissingLink, match="No link with rel='search' could be found on this Client", ): api.search(limit=10, max_items=10, collections="naip") def test_no_conforms_to(self) -> None: with open(str(TEST_DATA / "planetary-computer-root.json")) as f: data = json.load(f) del data["conformsTo"] with TemporaryDirectory() as temporary_directory: path = os.path.join(temporary_directory, "catalog.json") with open(path, "w") as f: json.dump(data, f) api = Client.from_file(path) with strict(): with pytest.raises(DoesNotConformTo, match="ITEM_SEARCH"): api.search(limit=10, max_items=10, collections="naip") def test_search(self, api: Client) -> None: results = api.search( bbox=[-73.21, 43.99, -73.12, 44.05], collections="naip", limit=10, max_items=20, datetime=[datetime(2020, 1, 1, 0, 0, 0, tzinfo=tzutc()), None], ) assert results._parameters == { "bbox": (-73.21, 43.99, -73.12, 44.05), "collections": ("naip",), "limit": 10, "datetime": "2020-01-01T00:00:00Z/..", } def test_json_search_link(self, api: Client) -> None: search_link = api.get_single_link(rel="search") assert search_link api.remove_links(rel="search") search_link.media_type = MediaType.JSON api.add_link(search_link) api.search(limit=1, max_items=1, collections="naip") @pytest.mark.vcr def test_search_max_items_unlimited_default(self, api: Client) -> None: search = api.search( bbox=[-73.21, 43.99, -73.12, 45.05], collections="naip", datetime="2014-01-01/2020-12-31", ) items = list(search.items()) assert len(items) > 100 class TestAPICollectionSearch: @pytest.fixture(scope="function") def api(self) -> Client: return Client.from_file(str(TEST_DATA / "fedeo_clearinghouse.json")) def test_search_conformance_error(self, api: Client) -> None: # Remove collection search conformance api.remove_conforms_to("COLLECTION_SEARCH") api.remove_conforms_to("COLLECTIONS") with strict(): with pytest.raises(DoesNotConformTo, match="COLLECTION_SEARCH"): api.collection_search(limit=10, max_collections=10, q="test") def test_search_conformance_warning(self) -> None: api = Client.from_file(str(TEST_DATA / "planetary-computer-root.json")) # Remove collection search conformance just in case... api.remove_conforms_to("COLLECTION_SEARCH") with strict(): with pytest.warns(UserWarning, match="COLLECTION_SEARCH"): api.collection_search(limit=10, max_collections=10, q="test") @pytest.mark.vcr def test_search(self, api: Client) -> None: results = api.collection_search( bbox=[-73.21, 43.99, -73.12, 44.05], limit=10, datetime=[datetime(2020, 1, 1, 0, 0, 0, tzinfo=tzutc()), None], ) assert results._parameters == { "bbox": (-73.21, 43.99, -73.12, 44.05), "limit": 10, "datetime": "2020-01-01T00:00:00Z/..", } class MySign: def __init__(self) -> None: self.call_count = 0 def __call__(self, x: Modifiable) -> None: self.call_count += 1 class TestSigning: @pytest.mark.vcr def test_signing(self) -> None: sign = MySign() # sign is callable, but mypy keeps trying to interpret it as a "MySign" object. client = Client.open(STAC_URLS["PLANETARY-COMPUTER"], modifier=sign) assert client.modifier is sign collection = client.get_collection("cil-gdpcir-cc0") assert collection assert isinstance(collection, CollectionClient) assert collection.modifier is sign assert sign.call_count == 1 collection.get_item("cil-gdpcir-INM-INM-CM5-0-ssp585-r1i1p1f1-day") assert sign.call_count == 2 next(client.get_collections()) assert sign.call_count == 3 search = client.search(collections=["sentinel-2-l2a"], max_items=10) next(search.items_as_dicts()) assert sign.call_count == 4 next(search.items()) assert sign.call_count == 5 next(search.pages_as_dicts()) assert sign.call_count == 6 next(search.pages()) assert sign.call_count == 7 search.item_collection_as_dict() assert sign.call_count == 8 search.item_collection() assert sign.call_count == 9 @pytest.mark.vcr def test_sign_with_return_warns(self) -> None: def modifier_ok(x: Any) -> Any: return x def modifier_bad(x: Any) -> Any: return 0 client = Client.open(STAC_URLS["PLANETARY-COMPUTER"], modifier=modifier_ok) with warnings.catch_warnings(): warnings.simplefilter("error") client.get_collection("sentinel-2-l2a") client = Client.open(STAC_URLS["PLANETARY-COMPUTER"], modifier=modifier_bad) with pytest.warns(IgnoredResultWarning): client.get_collection("sentinel-2-l2a") class TestQueryables: @pytest.mark.vcr def test_get_queryables_collections(self) -> None: api = Client.open(STAC_URLS["PLANETARY-COMPUTER"]) with pytest.warns(MissingLink, match="queryables"): col = api.get_collection("3dep-seamless") assert isinstance(col, CollectionClient) tdep_seamless_props = col.get_queryables()["properties"] col = api.get_collection("fia") assert isinstance(col, CollectionClient) fia_props = col.get_queryables()["properties"] result = api.get_merged_queryables(["fia", "3dep-seamless"]) assert "properties" in result assert "id" in result["properties"] assert set(fia_props.keys()).issubset(result["properties"]) assert set(tdep_seamless_props.keys()).issubset(result["properties"]) def test_get_queryables_errors(self, requests_mock: Mocker) -> None: pc_root_text = read_data_file("planetary-computer-root.json") root_url = "http://pystac-client.test/" requests_mock.get(root_url, status_code=200, text=pc_root_text) api = Client.open(root_url) with pytest.raises(DoesNotConformTo, match="FILTER"): api.get_queryables() assert api._stac_io is not None api.add_conforms_to("FILTER") self_href = api.get_self_href() api.set_self_href(None) with pytest.warns(MissingLink, match="queryables"): with pytest.raises(ValueError, match="does not have a self_href set"): api.get_queryables() api.set_self_href(self_href) api._stac_io = None with pytest.warns(MissingLink, match="queryables"): with pytest.raises(APIError, match="API access is not properly configured"): api.get_queryables() class TestConformsTo: def test_ignore_conformance_is_deprecated_and_noop(self) -> None: with pytest.warns( FutureWarning, match="`ignore_conformance` option is deprecated" ): client = Client.open( str(TEST_DATA / "planetary-computer-root.json"), ignore_conformance=True, ) assert client.has_conforms_to() assert client.conforms_to(ConformanceClasses.CORE) def test_set_conforms_to_using_list_of_uris(self) -> None: client = Client.from_file(str(TEST_DATA / "planetary-computer-root.json")) client.set_conforms_to(["https://api.stacspec.org/v1.0.0-rc.2/core"]) assert client.conforms_to(ConformanceClasses.CORE) def test_add_and_remove_conforms_to_by_string(self) -> None: client = Client.from_file(str(TEST_DATA / "planetary-computer-root.json")) client.remove_conforms_to("core") assert not client.conforms_to(ConformanceClasses.CORE) client.add_conforms_to("core") assert client.conforms_to("CORE") def test_clear_all_conforms_to(self) -> None: client = Client.from_file(str(TEST_DATA / "planetary-computer-root.json")) client.clear_conforms_to() assert not client.has_conforms_to() def test_empty_conforms_to(self) -> None: client = Client.from_file(str(TEST_DATA / "planetary-computer-root.json")) client.set_conforms_to([]) assert client.has_conforms_to(), "The conformsTo field should still exist" assert not client.conforms_to(ConformanceClasses.CORE) assert not client.conforms_to(ConformanceClasses.ITEM_SEARCH) def test_no_conforms_to_falls_back_to_pystac(self) -> None: client = Client.from_file(str(TEST_DATA / "planetary-computer-root.json")) client.clear_conforms_to() with strict(): with pytest.raises(FallbackToPystac): next(client.get_collections()) @pytest.mark.vcr def test_changing_conforms_to_changes_behavior(self) -> None: with pytest.warns(NoConformsTo): client = Client.open("https://earth-search.aws.element84.com/v0") with pytest.warns(FallbackToPystac): next(client.get_collections()) client.add_conforms_to("COLLECTIONS") with pytest.warns(MissingLink, match="rel='data'"): next(client.get_collections()) @pytest.mark.vcr def test_collections_are_clients() -> None: # https://github.com/stac-utils/pystac-client/issues/548 catalog = Client.open( "https://planetarycomputer.microsoft.com/api/stac/v1/", ) item = catalog.get_collection("cil-gdpcir-cc-by").get_item( "cil-gdpcir-NUIST-NESM3-ssp585-r1i1p1f1-day" ) assert item item.get_collection() @pytest.mark.vcr def test_get_items_without_ids() -> None: client = Client.open( "https://stac.eoapi.dev", ) next(client.get_items()) @pytest.mark.vcr def test_non_recursion_on_fallback() -> None: path = "https://raw.githubusercontent.com/stac-utils/pystac/v1.9.0/docs/example-catalog/catalog.json" catalog = Client.from_file(path) with pytest.warns(FallbackToPystac): [i for i in catalog.get_items()] @pytest.mark.vcr def test_fallback_strategy() -> None: """Make sure links get recreated correctly using APILayoutStrategy.""" client = Client.open( "https://planetarycomputer.microsoft.com/api/stac/v1/", ) col = client.get_collection("landsat-c2-l2") item = next(col.get_items()) item_href = item.self_href col_href = col.self_href root_href = client.self_href col.links = [] item.links = [] client.add_child(col) col.add_item(item) assert col.self_href == col_href assert (col_parent := col.get_single_link("parent")) assert col_parent.href == root_href assert (col_root := col.get_single_link("root")) assert col_root.href == root_href assert item.self_href == item_href assert (item_col := item.get_single_link("collection")) assert item_col.href == col_href assert (item_parent := item.get_single_link("parent")) assert item_parent.href == col_href assert (item_root := item.get_single_link("root")) assert item_root.href == root_href def test_get_collection_fallback_strategy_for_static_catalogs() -> None: client = Client.from_file( str(TEST_DATA / "test-case-1" / "country-1" / "catalog.json") ) with pytest.warns(FallbackToPystac): area_1_1 = client.get_collection("area-1-1") with pytest.warns(FallbackToPystac): area_1_2 = client.get_collection("area-1-2") assert area_1_1.id == "area-1-1" assert area_1_2.id == "area-1-2" def test_get_collection_for_static_catalogs_raise_if_not_found() -> None: client = Client.from_file(str(TEST_DATA / "test-case-1" / "catalog.json")) with pytest.raises(KeyError, match="not found on catalog"): with pytest.warns(FallbackToPystac): client.get_collection("country-1") @pytest.mark.vcr def test_query_string_in_collections_url() -> None: # https://github.com/stac-utils/pystac-client/issues/745 client = Client.open("https://paituli.csc.fi/geoserver/ogc/stac/v1") client.get_collection("sentinel2-l2a") pystac-client-0.9.0/tests/test_collection_client.py000066400000000000000000000064461503646565400225730ustar00rootroot00000000000000import pytest from pystac_client import CollectionClient from pystac_client.client import Client from pystac_client.warnings import FallbackToPystac, MissingLink from .helpers import STAC_URLS class TestCollectionClient: @pytest.mark.vcr def test_instance(self) -> None: client = Client.open(STAC_URLS["PLANETARY-COMPUTER"]) collection = client.get_collection("aster-l1t") assert isinstance(collection, CollectionClient) assert str(collection) == "" @pytest.mark.vcr def test_get_items(self) -> None: client = Client.open(STAC_URLS["PLANETARY-COMPUTER"]) collection = client.get_collection("aster-l1t") assert collection is not None for item in collection.get_items(): assert item.collection_id == collection.id return @pytest.mark.vcr def test_get_items_with_ids(self) -> None: client = Client.open(STAC_URLS["PLANETARY-COMPUTER"]) collection = client.get_collection("aster-l1t") ids = [ "AST_L1T_00312272006020322_20150518201805", "AST_L1T_00312272006020313_20150518201753", "AST_L1T_00312272006020304_20150518201753", ] assert collection is not None for item in collection.get_items(*ids): assert item.collection_id == collection.id assert item.id in ids @pytest.mark.vcr def test_get_item(self) -> None: client = Client.open(STAC_URLS["PLANETARY-COMPUTER"]) collection = client.get_collection("aster-l1t") assert collection is not None item = collection.get_item("AST_L1T_00312272006020322_20150518201805") assert item assert item.id == "AST_L1T_00312272006020322_20150518201805" item = collection.get_item("for-sure-not-a-real-id") assert item is None @pytest.mark.vcr def test_get_item_with_item_search(self) -> None: client = Client.open(STAC_URLS["PLANETARY-COMPUTER"]) collection = client.get_collection("aster-l1t") assert collection is not None client.set_conforms_to( [ "https://api.stacspec.org/v1.0.0-rc.2/core", "https://api.stacspec.org/v1.0.0-rc.2/item-search", ] ) item = collection.get_item("AST_L1T_00312272006020322_20150518201805") assert item assert item.id == "AST_L1T_00312272006020322_20150518201805" item = collection.get_item("for-sure-not-a-real-id") assert item is None with pytest.warns(FallbackToPystac): item = collection.get_item( "AST_L1T_00312272006020322_20150518201805", recursive=True ) assert item assert item.id == "AST_L1T_00312272006020322_20150518201805" @pytest.mark.vcr def test_get_queryables(self) -> None: api = Client.open(STAC_URLS["PLANETARY-COMPUTER"]) collection_client = api.get_collection("landsat-c2-l2") assert collection_client is not None assert isinstance(collection_client, CollectionClient) with pytest.warns(MissingLink, match="/queryables"): result = collection_client.get_queryables() assert "instrument" in result["properties"] assert "landsat:scene_id" in result["properties"] pystac-client-0.9.0/tests/test_collection_search.py000066400000000000000000000326671503646565400225660ustar00rootroot00000000000000import json from datetime import datetime from math import ceil from typing import Any import pystac import pytest import requests from dateutil.tz import tzutc from pytest_benchmark.fixture import BenchmarkFixture from pystac_client.client import Client from pystac_client.collection_search import ( CollectionSearch, bboxes_overlap, collection_matches, temporal_intervals_overlap, ) from pystac_client.warnings import PystacClientWarning from .helpers import STAC_URLS, read_data_file COLLECTION_SEARCH_URL = f"{STAC_URLS['SPACEBEL']}/collections" COLLECTION_EXAMPLE: dict[str, Any] = { "id": "F-TCC", "q": '"cloudless mosaics"', "datetime": "2021-09-15T00:00:00Z", } class TestCollectionPerformance: @pytest.fixture(scope="function") def single_href(self) -> str: collection_href = COLLECTION_SEARCH_URL + f"/{COLLECTION_EXAMPLE['id']}" return collection_href def test_requests(self, benchmark: BenchmarkFixture, single_href: str) -> None: response = benchmark(requests.get, single_href) assert response.status_code == 200 assert response.json()["id"] == COLLECTION_EXAMPLE["id"] def test_single_collection( self, benchmark: BenchmarkFixture, single_href: str ) -> None: collection = benchmark(pystac.Collection.from_file, single_href) assert collection.id == COLLECTION_EXAMPLE["id"] def test_single_collection_search( self, benchmark: BenchmarkFixture, single_href: str ) -> None: search = CollectionSearch(url=COLLECTION_SEARCH_URL, **COLLECTION_EXAMPLE) collection_list = benchmark(search.collection_list()) assert len(collection_list) == 1 assert collection_list[0].id == COLLECTION_EXAMPLE["id"] class TestCollectionSearch: @pytest.fixture(scope="function") def fedeo_api(self) -> Client: api_content = read_data_file("fedeo_clearinghouse.json", parse_json=True) return Client.from_dict(api_content) def test_method(self) -> None: # Default method should be POST... search = CollectionSearch(url=COLLECTION_SEARCH_URL) assert search.method == "GET" def test_method_params(self) -> None: params_in: dict[str, Any] = { "bbox": (-72, 41, -71, 42), "datetime": "2021-01-01T00:00:00Z/2021-12-31T23:59:59Z", "q": "vegetation AND biomass", } # For POST this is pass through search = CollectionSearch( url=COLLECTION_SEARCH_URL, collection_search_extension_enabled=True, collection_search_free_text_enabled=True, **params_in, ) params = search.get_parameters() assert params == search.get_parameters() # For GET requests, parameters are in query string and must be serialized search = CollectionSearch( url=COLLECTION_SEARCH_URL, collection_search_extension_enabled=True, collection_search_free_text_enabled=True, **params_in, ) params = search.get_parameters() assert search.method == "GET" assert all(key in params for key in params_in) assert all(isinstance(params[key], str) for key in params_in) @pytest.mark.vcr def test_q_results(self) -> None: search_string = "monthly cloudless mosaics" search = CollectionSearch( url=COLLECTION_SEARCH_URL, collection_search_extension_enabled=True, collection_search_free_text_enabled=True, q=f'"{search_string}"', max_collections=20, limit=10, ) results = search.collection_list() assert all(isinstance(collection, pystac.Collection) for collection in results) assert all(search_string in collection.description for collection in results) assert search.matched() == 1 @pytest.mark.vcr def test_datetime_results(self) -> None: min_datetime = datetime(2024, 1, 1, 0, 0, 1, tzinfo=tzutc()) max_datetime = datetime(2024, 1, 1, 0, 0, 10, tzinfo=tzutc()) datetime_ = "/".join( ts.isoformat().replace("+00:00", "Z") for ts in [min_datetime, max_datetime] ) search = CollectionSearch( url=COLLECTION_SEARCH_URL, collection_search_extension_enabled=True, collection_search_free_text_enabled=True, datetime=datetime_, max_collections=20, ) for collection in search.collections(): for temporal_intervals in collection.extent.temporal.intervals: assert temporal_intervals_overlap( (temporal_intervals[0], temporal_intervals[1]), (min_datetime, max_datetime), ) search = CollectionSearch( url=COLLECTION_SEARCH_URL, collection_search_extension_enabled=True, collection_search_free_text_enabled=True, datetime=(min_datetime, max_datetime), max_collections=20, ) new_results = search.collections() for collection in new_results: for temporal_intervals in collection.extent.temporal.intervals: assert temporal_intervals_overlap( (temporal_intervals[0], temporal_intervals[1]), (min_datetime, max_datetime), ) @pytest.mark.vcr def test_bbox_results(self) -> None: bbox = (-159.893, 21.843, -159.176, 22.266) search = CollectionSearch( url=COLLECTION_SEARCH_URL, collection_search_extension_enabled=True, collection_search_free_text_enabled=True, bbox=bbox, limit=10, max_collections=10, ) for collection in search.collections(): for _bbox in collection.extent.spatial.bboxes: assert bboxes_overlap(bbox, tuple(float(coord) for coord in _bbox)) @pytest.mark.vcr def test_result_paging(self) -> None: search = CollectionSearch( url=COLLECTION_SEARCH_URL, collection_search_extension_enabled=True, collection_search_free_text_enabled=True, q="sentinel", limit=10, max_collections=20, ) # Check that the current page changes on the ItemSearch instance when a new page # is requested pages = list(search.pages()) assert pages[0] != pages[1] @pytest.mark.vcr def test_matched(self) -> None: q = "sentinel" search = CollectionSearch( url=f"{STAC_URLS['EARTH-SEARCH']}/collections", collection_search_extension_enabled=False, collection_search_free_text_enabled=False, q=q, limit=4, ) assert search.matched() == 5 @pytest.mark.vcr def test_enabled_but_client_side_q(self) -> None: q = "sentinel" limit = 5 search = CollectionSearch( url=COLLECTION_SEARCH_URL, collection_search_extension_enabled=True, collection_search_free_text_enabled=False, limit=limit, max_collections=limit, q=q, ) collection_list = search.collection_list() assert len(collection_list) <= limit collection_list_dict = search.collection_list_as_dict() assert len(collection_list_dict["collections"]) == len(collection_list) for collection in search.collections(): text_fields = [] if collection.description: text_fields.append(collection.description) if collection.title: text_fields.append(collection.title) if collection.keywords: text_fields.extend(collection.keywords) assert any(q in text_field.lower() for text_field in text_fields), ( f"{collection.id} failed check" ) @pytest.mark.vcr def test_client_side_q(self) -> None: q = "sentinel" limit = 10 search = CollectionSearch( url=f"{STAC_URLS['EARTH-SEARCH']}/collections", collection_search_extension_enabled=False, collection_search_free_text_enabled=False, limit=limit, max_collections=limit, q=q, ) collection_list = search.collection_list() assert len(collection_list) <= limit for collection in search.collections(): text_fields = [] if collection.description: text_fields.append(collection.description) if collection.title: text_fields.append(collection.title) if collection.keywords: text_fields.extend(collection.keywords) assert any(q in text_field.lower() for text_field in text_fields), ( f"{collection.id} failed check" ) @pytest.mark.vcr def test_client_side_bbox(self) -> None: bbox = (60, 0, 70, 10) limit = 10 search = CollectionSearch( url=f"{STAC_URLS['EARTH-SEARCH']}/collections", collection_search_extension_enabled=False, collection_search_free_text_enabled=False, limit=limit, max_collections=limit, bbox=bbox, ) collection_list = search.collection_list() assert len(collection_list) <= limit for collection in search.collections(): assert any( bboxes_overlap(bbox, tuple(float(coord) for coord in collection_bbox)) for collection_bbox in collection.extent.spatial.bboxes ), f"{collection.id} failed check" @pytest.mark.vcr def test_client_side_datetime(self) -> None: _datetime_interval = ("2024-09-15T00:00:00+00:00", "2024-09-16T00:00:00+00:00") limit = 10 search = CollectionSearch( url=f"{STAC_URLS['EARTH-SEARCH']}/collections", collection_search_extension_enabled=False, collection_search_free_text_enabled=False, limit=limit, max_collections=limit, datetime="/".join(_datetime_interval), ) collection_list = search.collection_list() assert len(collection_list) <= limit temporal_interval = ( datetime.fromisoformat(_datetime_interval[0]), datetime.fromisoformat(_datetime_interval[1]), ) for collection in search.collections(): assert any( temporal_intervals_overlap( temporal_interval, (collection_temporal_interval[0], collection_temporal_interval[1]), ) for collection_temporal_interval in collection.extent.temporal.intervals ), f"{collection.id} failed check" def test_client_side_extra_args(self) -> None: with pytest.raises(ValueError): CollectionSearch( url=f"{STAC_URLS['EARTH-SEARCH']}/collections", collection_search_extension_enabled=False, collection_search_free_text_enabled=False, filter="title LIKE '%nope%'", ) @pytest.mark.vcr def test_result_paging_max_collections(self) -> None: max_collections = 15 limit = 10 search = CollectionSearch( url=COLLECTION_SEARCH_URL, collection_search_extension_enabled=True, collection_search_free_text_enabled=True, bbox=(-92.379, 46.662, -91.788, 46.919), limit=limit, max_collections=max_collections, ) num_pages = 0 collections = list() for page in search.pages_as_dicts(): num_pages += 1 collections.extend(page["collections"]) assert num_pages == ceil(max_collections / limit) assert len(collections) == max_collections def test_bboxes_overlap() -> None: assert bboxes_overlap( (0, 0, 2, 2), (1, 1, 3, 3), ) assert not bboxes_overlap( (0, 0, 2, 2), (3, 3, 4, 4), ) def test_temporal_intervals_overlap() -> None: assert temporal_intervals_overlap( (datetime(2024, 9, 1, tzinfo=tzutc()), datetime(2024, 9, 2, tzinfo=tzutc())), ( datetime(2024, 9, 1, 12, tzinfo=tzutc()), datetime(2024, 9, 2, 12, tzinfo=tzutc()), ), ) assert temporal_intervals_overlap( (datetime(2024, 9, 1, tzinfo=tzutc()), None), ( datetime(2024, 9, 1, 12, tzinfo=tzutc()), datetime(2024, 9, 2, 12, tzinfo=tzutc()), ), ) assert temporal_intervals_overlap( (None, None), ( datetime(2024, 9, 1, 12, tzinfo=tzutc()), datetime(2024, 9, 2, 12, tzinfo=tzutc()), ), ) assert not temporal_intervals_overlap( (datetime(2023, 9, 1, tzinfo=tzutc()), datetime(2023, 9, 2, tzinfo=tzutc())), ( datetime(2024, 9, 1, 12, tzinfo=tzutc()), datetime(2024, 9, 2, 12, tzinfo=tzutc()), ), ) assert not temporal_intervals_overlap( (datetime(2023, 9, 1, tzinfo=tzutc()), datetime(2023, 9, 2, tzinfo=tzutc())), ( datetime(2024, 9, 1, 12, tzinfo=tzutc()), None, ), ) def test_invalid_collection() -> None: # https://github.com/stac-utils/pystac-client/issues/786 data = json.loads(read_data_file("invalid-collection.json")) with pytest.warns(PystacClientWarning): collection_matches(data) pystac-client-0.9.0/tests/test_free_text.py000066400000000000000000000105351503646565400210610ustar00rootroot00000000000000from pystac_client.free_text import ( sqlite_text_search, ) def test_sqlite_single_term() -> None: query = "sentinel" assert sqlite_text_search(query, {"description": "The sentinel node was true"}) assert not sqlite_text_search(query, {"description": "No match here"}) def test_sqlite_special_characters() -> None: query = "sentinel-2" assert sqlite_text_search(query, {"description": "The sentinel-2 node was true"}) assert not sqlite_text_search(query, {"description": "No, just sentinel-1 here"}) query = "sentinel+2" assert sqlite_text_search(query, {"description": "The sentinel+2 node was true"}) assert not sqlite_text_search(query, {"description": "No, just sentinel+1 here"}) query = "sentinel@2" assert sqlite_text_search(query, {"description": "The sentinel@2 node was true"}) assert not sqlite_text_search(query, {"description": "No, just sentinel@1 here"}) def test_sqlite_exact_phrase() -> None: query = '"climate model"' assert sqlite_text_search(query, {"description": "The climate model is impressive"}) assert not sqlite_text_search( query, {"description": "This model is for climate modeling"} ) # an exact phrase with a comma inside query = '"models, etc"' assert sqlite_text_search( query, {"description": "Produced with equations, and models, etc."} ) assert not sqlite_text_search(query, {"description": "Produced with models"}) def test_sqlite_and_terms_default() -> None: query = "climate model" assert sqlite_text_search( query, { "description": "Climate change is a significant challenge", "keywords": "model, prediction", }, ) assert sqlite_text_search( query, {"description": "The model was developed using climate observation data"} ) assert not sqlite_text_search(query, {"description": "This is an advanced model"}) assert not sqlite_text_search(query, {"description": "No relevant terms here"}) def test_sqlite_or_terms_explicit() -> None: query = "climate OR model" assert sqlite_text_search(query, {"description": "Climate discussion"}) assert sqlite_text_search(query, {"description": "FPGA model creation"}) assert not sqlite_text_search(query, {"description": "No matching term here"}) def test_sqlite_or_terms_commas() -> None: query = "climate,model" assert sqlite_text_search(query, {"description": "Climate change is here"}) assert sqlite_text_search(query, {"description": "They built a model train"}) assert sqlite_text_search(query, {"description": "It's a climate model!"}) assert not sqlite_text_search( query, {"description": "It's a mathematical equation"} ) def test_sqlite_and_terms() -> None: query = "climate AND model" assert sqlite_text_search(query, {"description": "The climate model is impressive"}) assert not sqlite_text_search( query, {"description": "This climate change discussion"} ) assert not sqlite_text_search(query, {"description": "Advanced model system"}) def test_sqlite_parentheses_grouping() -> None: query = "(quick OR brown) AND fox" assert sqlite_text_search(query, {"description": "The quick brown fox"}) assert sqlite_text_search(query, {"description": "A quick fox jumps"}) assert sqlite_text_search(query, {"description": "brown bear and a fox"}) assert not sqlite_text_search(query, {"description": "The fox is clever"}) query = "(quick AND brown) OR (fast AND red)" assert sqlite_text_search(query, {"description": "quick brown fox"}) assert sqlite_text_search(query, {"description": "fast red car"}) assert not sqlite_text_search(query, {"description": "quick red car"}) def test_sqlite_inclusions_exclusions() -> None: query = "quick +brown -fox" assert sqlite_text_search(query, {"description": "The quick brown bear"}) assert not sqlite_text_search(query, {"description": "The quick fox"}) assert not sqlite_text_search(query, {"description": "The quickest"}) assert sqlite_text_search(query, {"description": "A quick light brown jumper"}) def test_sqlite_partial_match() -> None: query = "climat" assert not sqlite_text_search(query, {"description": "climatology"}) assert not sqlite_text_search(query, {"description": "climate"}) assert not sqlite_text_search(query, {"description": "climbing"}) pystac-client-0.9.0/tests/test_item_search.py000066400000000000000000000326561503646565400213670ustar00rootroot00000000000000import operator import urllib.parse from datetime import datetime, timedelta from typing import Any import pystac import pytest import requests from dateutil.tz import tzutc from pytest_benchmark.fixture import BenchmarkFixture from requests_mock import Mocker from pystac_client import Client from pystac_client.item_search import ItemSearch from .helpers import STAC_URLS, read_data_file SEARCH_URL = f"{STAC_URLS['PLANETARY-COMPUTER']}/search" INTERSECTS_EXAMPLE = { "type": "Polygon", "coordinates": [ [ [-73.21, 43.99], [-73.21, 44.05], [-73.12, 44.05], [-73.12, 43.99], [-73.21, 43.99], ] ], } ITEM_EXAMPLE: dict[str, Any] = {"collections": "io-lulc", "ids": "60U-2020"} class TestItemPerformance: @pytest.fixture(scope="function") def single_href(self) -> str: item_href = ( "https://planetarycomputer.microsoft.com/api/stac/v1/collections/" f"{ITEM_EXAMPLE['collections']}/items/{ITEM_EXAMPLE['ids']}" ) return item_href def test_requests(self, benchmark: BenchmarkFixture, single_href: str) -> None: response = benchmark(requests.get, single_href) assert response.status_code == 200 assert response.json()["id"] == ITEM_EXAMPLE["ids"] def test_single_item(self, benchmark: BenchmarkFixture, single_href: str) -> None: item = benchmark(pystac.Item.from_file, single_href) assert item.id == ITEM_EXAMPLE["ids"] def test_single_item_search( self, benchmark: BenchmarkFixture, single_href: str ) -> None: search = ItemSearch(url=SEARCH_URL, **ITEM_EXAMPLE) item_collection = benchmark(search.item_collection()) assert len(item_collection.items) == 1 assert item_collection.items[0].id == ITEM_EXAMPLE["ids"] class TestItemSearch: @pytest.fixture(scope="function") def astraea_api(self) -> Client: api_content = read_data_file("astraea_api.json", parse_json=True) return Client.from_dict(api_content) def test_method(self) -> None: # Default method should be POST... search = ItemSearch(url=SEARCH_URL) assert search.method == "POST" # "method" argument should take precedence over presence of "intersects" search = ItemSearch(url=SEARCH_URL, method="GET", intersects=INTERSECTS_EXAMPLE) assert search.method == "GET" def test_method_params(self) -> None: params_in: dict[str, Any] = { "bbox": (-72, 41, -71, 42), "ids": ( "idone", "idtwo", ), "collections": ("collectionone",), "intersects": INTERSECTS_EXAMPLE, } # For POST this is pass through search = ItemSearch(url=SEARCH_URL, **params_in) params = search.get_parameters() assert params == search.get_parameters() # For GET requests, parameters are in query string and must be serialized search = ItemSearch(url=SEARCH_URL, method="GET", **params_in) params = search.get_parameters() assert all(key in params for key in params_in) assert all(isinstance(params[key], str) for key in params_in) @pytest.mark.vcr def test_results(self) -> None: search = ItemSearch( url=SEARCH_URL, collections="naip", max_items=20, limit=10, ) results = search.items() assert all(isinstance(item, pystac.Item) for item in results) @pytest.mark.vcr def test_ids_results(self) -> None: ids = [ "S2B_MSIL2A_20210610T115639_N0212_R066_T33XXG_20210613T185024.SAFE", "fl_m_2608004_nw_17_060_20191215_20200113", ] search = ItemSearch( url=SEARCH_URL, collections=["naip"], ids=ids, ) results = list(search.items()) assert len(results) == 1 assert all(item.id in ids for item in results) @pytest.mark.vcr def test_datetime_results(self) -> None: min_datetime = datetime(2019, 1, 1, 0, 0, 1, tzinfo=tzutc()) max_datetime = datetime(2019, 1, 1, 0, 0, 10, tzinfo=tzutc()) datetime_ = "2019-01-01T00:00:01Z/2019-01-01T00:00:10Z" search = ItemSearch(url=SEARCH_URL, datetime=datetime_, max_items=20) for item in search.items(): assert item.datetime is not None assert ( min_datetime <= item.datetime <= (max_datetime + timedelta(seconds=1)) ) search = ItemSearch( url=SEARCH_URL, datetime=(min_datetime, max_datetime), max_items=20 ) new_results = search.items() for item in new_results: assert item.datetime is not None assert ( min_datetime <= item.datetime <= (max_datetime + timedelta(seconds=1)) ) @pytest.mark.vcr def test_intersects_results(self) -> None: # GeoJSON-like dict intersects_dict = { "type": "Polygon", "coordinates": [ [ [-73.21, 43.99], [-73.21, 44.05], [-73.12, 44.05], [-73.12, 43.99], [-73.21, 43.99], ] ], } search = ItemSearch( url=SEARCH_URL, intersects=intersects_dict, collections="naip" ) results = list(search.items()) assert len(results) == 42 # Geo-interface object class MockGeoObject: @property def __geo_interface__(self) -> dict[str, Any]: return intersects_dict intersects_obj = MockGeoObject() search = ItemSearch( url=SEARCH_URL, intersects=intersects_obj, collections="naip" ) new_results = search.items() assert all(isinstance(item, pystac.Item) for item in new_results) def test_get_with_query(self, requests_mock: Mocker) -> None: requests_mock.get( ( f"{SEARCH_URL}?query=%7B%22eo%3Acloud_cover%22%3A%7B%22gte%22%3A0%2C%22lte%22%3A10%7D%7D" ), status_code=200, json={"features": [{"foo": "bar"}], "links": []}, ) items = list( ItemSearch( url=SEARCH_URL, method="GET", query={"eo:cloud_cover": {"gte": 0, "lte": 10}}, ).items_as_dicts() ) assert len(items) == 1 @pytest.mark.vcr def test_result_paging(self) -> None: search = ItemSearch( url=SEARCH_URL, bbox=(-73.21, 43.99, -73.12, 44.05), collections="naip", limit=10, max_items=20, ) # Check that the current page changes on the ItemSearch instance when a new page # is requested pages = list(search.pages()) assert pages[0] != pages[1] assert pages[0].items != pages[1].items @pytest.mark.vcr def test_result_paging_max_items(self) -> None: search = ItemSearch( url=SEARCH_URL, collections="naip", limit=10, max_items=25, ) num_pages = 0 items = list() for page in search.pages_as_dicts(): num_pages += 1 items.extend(page["features"]) assert num_pages == 3 assert len(items) == 25 @pytest.mark.vcr def test_item_collection(self) -> None: search = ItemSearch( url=SEARCH_URL, bbox=(-73.21, 43.99, -73.12, 44.05), collections="naip", limit=10, max_items=20, ) item_collection = search.item_collection() assert isinstance(item_collection, pystac.ItemCollection) assert len(item_collection) == 20 @pytest.mark.vcr @pytest.mark.parametrize( "method, alternative, is_sequence, is_pystac", [ ("get_item_collections", "pages", True, True), ("item_collections", "pages", True, True), ("get_items", "items", True, True), ("get_all_items", "item_collection", False, True), ("get_all_items_as_dict", "item_collection_as_dict", False, False), ], ) def test_deprecations( self, method: str, alternative: str, is_sequence: bool, is_pystac: bool ) -> None: search = ItemSearch( url=SEARCH_URL, bbox=(-73.21, 43.99, -73.12, 44.05), collections="naip", limit=10, max_items=20, ) with pytest.warns(FutureWarning, match=method): result = operator.methodcaller(method)(search) expected = operator.methodcaller(alternative)(search) if is_sequence: result = list(result) expected = list(expected) if is_pystac: result = [x.to_dict() for x in result] expected = [x.to_dict() for x in expected] else: if is_pystac: result = result.to_dict() expected = expected.to_dict() assert result == expected @pytest.mark.vcr def test_items_as_dicts(self) -> None: search = ItemSearch( url=SEARCH_URL, bbox=(-73.21, 43.99, -73.12, 44.05), collections="naip", limit=10, max_items=20, ) assert len(list(search.items_as_dicts())) == 20 class TestItemSearchQuery: @pytest.mark.vcr def test_query_shortcut_syntax(self) -> None: search = ItemSearch( url=SEARCH_URL, collections="naip", bbox=(-73.21, 43.99, -73.12, 44.05), query=["gsd=0.6"], max_items=1, ) items1 = list(search.items()) search = ItemSearch( url=SEARCH_URL, collections="naip", bbox=(-73.21, 43.99, -73.12, 44.05), query={"gsd": {"eq": 0.6}}, max_items=1, ) items2 = list(search.items()) assert len(items1) == 1 assert len(items2) == 1 assert items1[0].id == items2[0].id @pytest.mark.vcr def test_query_json_syntax(self) -> None: # with a list of json strs (format of CLI argument to ItemSearch) search = ItemSearch( url=SEARCH_URL, collections="naip", bbox=(-73.21, 43.99, -73.12, 44.05), query=['{"gsd": { "gte": 0, "lte": 1 }}'], max_items=1, ) item1 = list(search.items())[0] assert item1.properties["gsd"] <= 1 # with a single dict search = ItemSearch( url=SEARCH_URL, collections="naip", bbox=(-73.21, 43.99, -73.12, 44.05), query={"gsd": {"gte": 0, "lte": 1}}, max_items=1, ) item2 = list(search.items())[0] assert item2.properties["gsd"] <= 1 assert item1.id == item2.id def test_query_json_syntax() -> None: item_search = ItemSearch("") assert item_search._format_query( ['{"eo:cloud_cover": { "gte": 0, "lte": 1 }}'] ) == {"eo:cloud_cover": {"gte": 0, "lte": 1}} assert item_search._format_query({"eo:cloud_cover": {"gte": 0, "lte": 1}}) == { "eo:cloud_cover": {"gte": 0, "lte": 1} } assert item_search._format_query(["eo:cloud_cover<=1"]) == { "eo:cloud_cover": {"lte": "1"} } assert item_search._format_query(["eo:cloud_cover<=1", "eo:cloud_cover>0"]) == { "eo:cloud_cover": {"lte": "1", "gt": "0"} } def test_url_with_query_parameter() -> None: # https://github.com/stac-utils/pystac-client/issues/522 search = ItemSearch( url="http://pystac-client.test", query={"eo:cloud_cover": {"lt": 42}} ) url = urllib.parse.urlparse(search.url_with_parameters()) query = urllib.parse.parse_qs(url.query) assert query["query"] == [r'{"eo:cloud_cover":{"lt":42}}'] @pytest.mark.vcr def test_multiple_collections() -> None: search = ItemSearch( url="https://earth-search.aws.element84.com/v1/search", collections=["sentinel-2-l2a", "landsat-c2-l2"], intersects={"type": "Point", "coordinates": [-105.1019, 40.1672]}, datetime="2023-10-08", ) collections = {item.collection_id for item in search.items()} assert collections == {"sentinel-2-l2a", "landsat-c2-l2"} def test_naive_datetime() -> None: search = ItemSearch( url="https://earth-search.aws.element84.com/v1/search", datetime=datetime(2024, 5, 14, 4, 25, 42, tzinfo=None), method="POST", ) assert search.get_parameters()["datetime"] == "2024-05-14T04:25:42Z" @pytest.mark.vcr def test_fields() -> None: search = ItemSearch( url="https://earth-search.aws.element84.com/v1/search", collections=["sentinel-2-c1-l2a"], intersects={"type": "Point", "coordinates": [-105.1019, 40.1672]}, max_items=1, fields=["-geometry", "-assets", "-links"], ) item = next(search.items_as_dicts()) assert "geometry" not in item assert "assets" not in item assert "links" not in item def test_feature() -> None: search = ItemSearch( url="https://earth-search.aws.element84.com/v1/search", intersects={ "type": "Feature", "geometry": {"type": "Point", "coordinates": [-105.1019, 40.1672]}, }, ) assert search.get_parameters()["intersects"] == { "type": "Point", "coordinates": [-105.1019, 40.1672], } pystac-client-0.9.0/tests/test_stac_api_io.py000066400000000000000000000232771503646565400213550ustar00rootroot00000000000000import typing from pathlib import Path from urllib.parse import parse_qs, urlsplit import pystac import pytest from pytest import MonkeyPatch from requests_mock.mocker import Mocker from pystac_client.exceptions import APIError from pystac_client.stac_api_io import StacApiIO from .helpers import STAC_URLS class TestSTAC_IOOverride: @pytest.mark.vcr def test_request_input(self) -> None: stac_api_io = StacApiIO() response = stac_api_io.read_text(STAC_URLS["PLANETARY-COMPUTER"]) assert isinstance(response, str) @pytest.mark.vcr def test_str_input(self) -> None: stac_api_io = StacApiIO() response = stac_api_io.read_text(STAC_URLS["PLANETARY-COMPUTER"]) assert isinstance(response, str) @pytest.mark.vcr def test_http_error(self) -> None: stac_api_io = StacApiIO() # Attempt to access an authenticated endpoint with pytest.raises(APIError) as excinfo: stac_api_io.read_text(f"{STAC_URLS['MLHUB']}/search") assert isinstance(excinfo.value, APIError) def test_local_file(self, tmp_path: Path) -> None: stac_api_io = StacApiIO() test_file = tmp_path / "test.txt" with test_file.open("w") as dst: dst.write("Hi there!") response = stac_api_io.read_text(str(test_file)) assert response == "Hi there!" def test_conformance_deprecated(self) -> None: with pytest.warns(FutureWarning, match="`conformance` option is deprecated"): stac_api_io = StacApiIO(conformance=[]) assert not hasattr(stac_api_io, "conformance") def test_custom_headers(self, requests_mock: Mocker) -> None: """Checks that headers passed to the init method are added to requests.""" header_name = "x-my-header" header_value = "Some Value" url = "https://some-url.com/some-file.json" stac_api_io = StacApiIO(headers={header_name: header_value}) requests_mock.get(url, status_code=200, json={}) stac_api_io.read_json(url) history = requests_mock.request_history assert len(history) == 1 assert header_name in history[0].headers assert history[0].headers[header_name] == header_value def test_modifier(self, requests_mock: Mocker) -> None: """Verify the modifier is correctly called with a returned object.""" header_name = "x-my-header" header_value = "Some Value" url = "https://some-url.com/some-file.json" def custom_modifier(request: typing.Any) -> typing.Any | None: request.headers["x-pirate-name"] = "yellowbeard" return request stac_api_io = StacApiIO( headers={header_name: header_value}, request_modifier=custom_modifier ) requests_mock.get(url, status_code=200, json={}) stac_api_io.read_json(url) history = requests_mock.request_history assert len(history) == 1 assert header_name in history[0].headers assert history[0].headers["x-pirate-name"] == "yellowbeard" def test_modifier_noreturn(self, requests_mock: Mocker) -> None: """Verify the modifier is correctly called when None is returned.""" header_name = "x-my-header" header_value = "Some Value" url = "https://some-url.com/some-file.json" def custom_modifier(request: typing.Any) -> typing.Any | None: request.headers["x-pirate-name"] = "yellowbeard" return None stac_api_io = StacApiIO( headers={header_name: header_value}, request_modifier=custom_modifier ) requests_mock.get(url, status_code=200, json={}) stac_api_io.read_json(url) history = requests_mock.request_history assert len(history) == 1 assert header_name in history[0].headers assert history[0].headers["x-pirate-name"] == "yellowbeard" def test_custom_query_params(self, requests_mock: Mocker) -> None: """Checks that query params passed to the init method are added to requests.""" init_qp_name = "my-param" init_qp_value = "something" url = "https://some-url.com/some-file.json" stac_api_io = StacApiIO(parameters={init_qp_name: init_qp_value}) request_qp_name = "another-param" request_qp_value = "another_value" requests_mock.get(url, status_code=200, json={}) stac_api_io.read_json(url, parameters={request_qp_name: request_qp_value}) history = requests_mock.request_history assert len(history) == 1 actual_qs = urlsplit(history[0].url).query actual_qp = parse_qs(actual_qs) # Check that the param from the init method is present assert init_qp_name in actual_qp assert len(actual_qp[init_qp_name]) == 1 assert actual_qp[init_qp_name][0] == init_qp_value # Check that the param from the request is present assert request_qp_name in actual_qp assert len(actual_qp[request_qp_name]) == 1 assert actual_qp[request_qp_name][0] == request_qp_value def test_write(self, tmp_path: Path) -> None: stac_api_io = StacApiIO() test_file = tmp_path / "test.txt" stac_api_io.write_text_to_href(str(test_file), "Hi there!") with open(test_file) as file: data = file.read() assert data == "Hi there!" @pytest.mark.parametrize( ("attribute", "endpoint"), (("features", "search"), ("collections", "collections")), ) def test_stop_on_empty_page( self, requests_mock: Mocker, attribute: str, endpoint: str ) -> None: url = f"https://pystac-client.test/{endpoint}" requests_mock.get( url, status_code=200, json={ attribute: [{"foo": "bar"}], "links": [ { "rel": "next", "href": url + "?token=baz", } ], }, ) requests_mock.get( url + "?token=baz", status_code=200, json={ attribute: [], "links": [ { "rel": "next", "href": url + "?token=bam", } ], }, ) requests_mock.get( url + "?token=bam", status_code=500, ) stac_api_io = StacApiIO() pages = list(stac_api_io.get_pages(url)) assert len(pages) == 1 assert pages[0][attribute][0]["foo"] == "bar" @pytest.mark.parametrize( ("attribute", "endpoint"), (("features", "search"), ("collections", "collections")), ) def test_stop_on_attributeless_page( self, requests_mock: Mocker, attribute: str, endpoint: str ) -> None: url = f"https://pystac-client.test/{endpoint}" requests_mock.get( url, status_code=200, json={ attribute: [{"foo": "bar"}], "links": [ { "rel": "next", "href": url + "?token=baz", } ], }, ) requests_mock.get( url + "?token=baz", status_code=200, json={ "links": [ { "rel": "next", "href": url + "?token=bam", } ], }, ) requests_mock.get( url + "?token=bam", status_code=500, ) stac_api_io = StacApiIO() pages = list(stac_api_io.get_pages(url)) assert len(pages) == 1 assert pages[0][attribute][0]["foo"] == "bar" @pytest.mark.parametrize( ("attribute", "endpoint"), (("features", "search"), ("collections", "collections")), ) def test_stop_on_first_empty_page( self, requests_mock: Mocker, attribute: str, endpoint: str ) -> None: url = f"https://pystac-client.test/{endpoint}" requests_mock.get( url, status_code=200, json={ attribute: [], "links": [ { "rel": "next", "href": url + "?token=bam", } ], }, ) requests_mock.get(url + "?token=bam", status_code=500) stac_api_io = StacApiIO() pages = list(stac_api_io.get_pages(url)) assert len(pages) == 0 @pytest.mark.vcr def test_timeout_smoke_test(self) -> None: # Testing timeout behavior is hard, so we just have a simple smoke test to make # sure that providing a timeout doesn't break anything. stac_api_io = StacApiIO(timeout=42) response = stac_api_io.read_text(STAC_URLS["PLANETARY-COMPUTER"]) assert isinstance(response, str) @pytest.mark.parametrize("name", ("REQUESTS_CA_BUNDLE", "CURL_CA_BUNDLE")) def test_respect_env_for_certs(self, monkeypatch: MonkeyPatch, name: str) -> None: monkeypatch.setenv(name, "/not/a/real/file") stac_api_io = StacApiIO() with pytest.raises(APIError): stac_api_io.request("https://earth-search.aws.element84.com/v1/") @pytest.mark.vcr def test_stac_io_in_pystac() -> None: # https://github.com/stac-utils/pystac-client/issues/706 collection = pystac.read_file( href="tests/data/planetary-computer-collection.json", stac_io=StacApiIO(timeout=42), ) root = collection.get_root() assert root stac_io = root._stac_io assert isinstance(stac_io, StacApiIO) assert stac_io.timeout == 42 pystac-client-0.9.0/uv.lock000066400000000000000000016343321503646565400156350ustar00rootroot00000000000000version = 1 revision = 1 requires-python = ">=3.10" resolution-markers = [ "python_full_version >= '3.12' and platform_python_implementation != 'PyPy'", "python_full_version == '3.11.*' and platform_python_implementation != 'PyPy'", "python_full_version < '3.11' and platform_python_implementation != 'PyPy'", "python_full_version >= '3.12' and platform_python_implementation == 'PyPy'", "python_full_version == '3.11.*' and platform_python_implementation == 'PyPy'", "python_full_version < '3.11' and platform_python_implementation == 'PyPy'", ] [[package]] name = "accessible-pygments" version = "0.0.5" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "pygments" }, ] sdist = { url = "https://files.pythonhosted.org/packages/bc/c1/bbac6a50d02774f91572938964c582fff4270eee73ab822a4aeea4d8b11b/accessible_pygments-0.0.5.tar.gz", hash = "sha256:40918d3e6a2b619ad424cb91e556bd3bd8865443d9f22f1dcdf79e33c8046872", size = 1377899 } wheels = [ { url = "https://files.pythonhosted.org/packages/8d/3f/95338030883d8c8b91223b4e21744b04d11b161a3ef117295d8241f50ab4/accessible_pygments-0.0.5-py3-none-any.whl", hash = "sha256:88ae3211e68a1d0b011504b2ffc1691feafce124b845bd072ab6f9f66f34d4b7", size = 1395903 }, ] [[package]] name = "alabaster" version = "1.0.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/a6/f8/d9c74d0daf3f742840fd818d69cfae176fa332022fd44e3469487d5a9420/alabaster-1.0.0.tar.gz", hash = "sha256:c00dca57bca26fa62a6d7d0a9fcce65f3e026e9bfe33e9c538fd3fbb2144fd9e", size = 24210 } wheels = [ { url = "https://files.pythonhosted.org/packages/7e/b3/6b4067be973ae96ba0d615946e314c5ae35f9f993eca561b356540bb0c2b/alabaster-1.0.0-py3-none-any.whl", hash = "sha256:fc6786402dc3fcb2de3cabd5fe455a2db534b371124f1f21de8731783dec828b", size = 13929 }, ] [[package]] name = "appnope" version = "0.1.4" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/35/5d/752690df9ef5b76e169e68d6a129fa6d08a7100ca7f754c89495db3c6019/appnope-0.1.4.tar.gz", hash = "sha256:1de3860566df9caf38f01f86f65e0e13e379af54f9e4bee1e66b48f2efffd1ee", size = 4170 } wheels = [ { url = "https://files.pythonhosted.org/packages/81/29/5ecc3a15d5a33e31b26c11426c45c501e439cb865d0bff96315d86443b78/appnope-0.1.4-py2.py3-none-any.whl", hash = "sha256:502575ee11cd7a28c0205f379b525beefebab9d161b7c964670864014ed7213c", size = 4321 }, ] [[package]] name = "asttokens" version = "3.0.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/4a/e7/82da0a03e7ba5141f05cce0d302e6eed121ae055e0456ca228bf693984bc/asttokens-3.0.0.tar.gz", hash = "sha256:0dcd8baa8d62b0c1d118b399b2ddba3c4aff271d0d7a9e0d4c1681c79035bbc7", size = 61978 } wheels = [ { url = "https://files.pythonhosted.org/packages/25/8a/c46dcc25341b5bce5472c718902eb3d38600a903b14fa6aeecef3f21a46f/asttokens-3.0.0-py3-none-any.whl", hash = "sha256:e3078351a059199dd5138cb1c706e6430c05eff2ff136af5eb4790f9d28932e2", size = 26918 }, ] [[package]] name = "attrs" version = "24.3.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/48/c8/6260f8ccc11f0917360fc0da435c5c9c7504e3db174d5a12a1494887b045/attrs-24.3.0.tar.gz", hash = "sha256:8f5c07333d543103541ba7be0e2ce16eeee8130cb0b3f9238ab904ce1e85baff", size = 805984 } wheels = [ { url = "https://files.pythonhosted.org/packages/89/aa/ab0f7891a01eeb2d2e338ae8fecbe57fcebea1a24dbb64d45801bfab481d/attrs-24.3.0-py3-none-any.whl", hash = "sha256:ac96cd038792094f438ad1f6ff80837353805ac950cd2aa0e0625ef19850c308", size = 63397 }, ] [[package]] name = "babel" version = "2.16.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/2a/74/f1bc80f23eeba13393b7222b11d95ca3af2c1e28edca18af487137eefed9/babel-2.16.0.tar.gz", hash = "sha256:d1f3554ca26605fe173f3de0c65f750f5a42f924499bf134de6423582298e316", size = 9348104 } wheels = [ { url = "https://files.pythonhosted.org/packages/ed/20/bc79bc575ba2e2a7f70e8a1155618bb1301eaa5132a8271373a6903f73f8/babel-2.16.0-py3-none-any.whl", hash = "sha256:368b5b98b37c06b7daf6696391c3240c938b37767d4584413e8438c5c435fa8b", size = 9587599 }, ] [[package]] name = "beautifulsoup4" version = "4.12.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "soupsieve" }, ] sdist = { url = "https://files.pythonhosted.org/packages/b3/ca/824b1195773ce6166d388573fc106ce56d4a805bd7427b624e063596ec58/beautifulsoup4-4.12.3.tar.gz", hash = "sha256:74e3d1928edc070d21748185c46e3fb33490f22f52a3addee9aee0f4f7781051", size = 581181 } wheels = [ { url = "https://files.pythonhosted.org/packages/b1/fe/e8c672695b37eecc5cbf43e1d0638d88d66ba3a44c4d321c796f4e59167f/beautifulsoup4-4.12.3-py3-none-any.whl", hash = "sha256:b80878c9f40111313e55da8ba20bdba06d8fa3969fc68304167741bbf9e082ed", size = 147925 }, ] [[package]] name = "bleach" version = "6.2.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "webencodings" }, ] sdist = { url = "https://files.pythonhosted.org/packages/76/9a/0e33f5054c54d349ea62c277191c020c2d6ef1d65ab2cb1993f91ec846d1/bleach-6.2.0.tar.gz", hash = "sha256:123e894118b8a599fd80d3ec1a6d4cc7ce4e5882b1317a7e1ba69b56e95f991f", size = 203083 } wheels = [ { url = "https://files.pythonhosted.org/packages/fc/55/96142937f66150805c25c4d0f31ee4132fd33497753400734f9dfdcbdc66/bleach-6.2.0-py3-none-any.whl", hash = "sha256:117d9c6097a7c3d22fd578fcd8d35ff1e125df6736f554da4e432fdd63f31e5e", size = 163406 }, ] [[package]] name = "bokeh" version = "3.6.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "contourpy" }, { name = "jinja2" }, { name = "numpy" }, { name = "packaging" }, { name = "pandas" }, { name = "pillow" }, { name = "pyyaml" }, { name = "tornado" }, { name = "xyzservices" }, ] sdist = { url = "https://files.pythonhosted.org/packages/da/9d/cc9c561e1db8cbecc5cfad972159020700fff2339bdaa316498ace1cb04c/bokeh-3.6.2.tar.gz", hash = "sha256:2f3043d9ecb3d5dc2e8c0ebf8ad55727617188d4e534f3e7208b36357e352396", size = 6247610 } wheels = [ { url = "https://files.pythonhosted.org/packages/56/12/2c266a0dc57379c60b4e73a2f93e71343db4170bf26c5a76a74e7d8bce2a/bokeh-3.6.2-py3-none-any.whl", hash = "sha256:fddc4b91f8b40178c0e3e83dfcc33886d7803a3a1f041a840834255e435a18c2", size = 6866799 }, ] [[package]] name = "boto3" version = "1.35.86" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "botocore" }, { name = "jmespath" }, { name = "s3transfer" }, ] sdist = { url = "https://files.pythonhosted.org/packages/b7/23/0fe81184d4c3c4f640288dce790c705a76263c1aa688f684ef1dbe9d4f7d/boto3-1.35.86.tar.gz", hash = "sha256:d61476fdd5a5388503b72c897083310d2329ce088593c4332b571a860be5d155", size = 111035 } wheels = [ { url = "https://files.pythonhosted.org/packages/b0/f1/c5fde6550f148c86a15ce27f876fdbd9581c86d7b11f9bfdc6ffb4830863/boto3-1.35.86-py3-none-any.whl", hash = "sha256:ed59fb4883da167464a5dfbc96e76d571db75e1a7a27d8e7b790c3008b02fcc7", size = 139181 }, ] [[package]] name = "botocore" version = "1.35.86" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "jmespath" }, { name = "python-dateutil" }, { name = "urllib3" }, ] sdist = { url = "https://files.pythonhosted.org/packages/14/ed/f639350bfa1c1f898dbbf69250c961ded22ebf7bedc02fa23127c7762d78/botocore-1.35.86.tar.gz", hash = "sha256:951e944eb30284b4593d4da98f70f7b5292ea237e4de0c5a2852946a549b8347", size = 13491792 } wheels = [ { url = "https://files.pythonhosted.org/packages/ce/12/51d8ea79a89b6e57ba602b9ced4f062654e9ce2ca7a2f828384a242d992e/botocore-1.35.86-py3-none-any.whl", hash = "sha256:77cb4b445e4f424f956c68c688bd3ad527f4d214d51d67ffc8e245f4476d7de0", size = 13296838 }, ] [[package]] name = "cartopy" version = "0.24.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "matplotlib" }, { name = "numpy" }, { name = "packaging" }, { name = "pyproj" }, { name = "pyshp" }, { name = "shapely" }, ] sdist = { url = "https://files.pythonhosted.org/packages/e0/75/94aff4fef338887641aa780d13795609861e6e9f9593bd66d4917ab7954b/cartopy-0.24.1.tar.gz", hash = "sha256:01c910d5634c69a7efdec46e0a17d473d2328767f001d4dc0b5c4b48e585c8bd", size = 10741277 } wheels = [ { url = "https://files.pythonhosted.org/packages/57/41/9dd14e3ee3f7a0546768c11a8f4a37b1c09fc4868b992f431431d526502b/Cartopy-0.24.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:ce0c83314570c61a695a1f7c3a4a22dc75f79d28f4c68b88a8aeaf13d6a2343c", size = 10982199 }, { url = "https://files.pythonhosted.org/packages/72/57/8b4a3856aaf4c600504566d7d956928b79d8b17e8d3a1c70060e5f90124f/Cartopy-0.24.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:511f992340baea2c171cb17b3ef595537e5355640f3baa7ac895de25df016a70", size = 10971756 }, { url = "https://files.pythonhosted.org/packages/ea/50/e5170302a62259f34289ff7f4944a32ac04a49b38713d001873732742726/Cartopy-0.24.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:54f4d23961e0f9436baaf4747928361ccdcc893fa9b7bad9f615551bc8aa3fe8", size = 11658621 }, { url = "https://files.pythonhosted.org/packages/0b/78/7d77c72c85371f5d87088887ec05fd3701dfdcd640845f85378341a355de/Cartopy-0.24.1-cp310-cp310-win_amd64.whl", hash = "sha256:e0b55526b605a9dee4fa3d7e5659b6d7d9d30e609bc5e62487bc4f7d8e90873b", size = 10960201 }, { url = "https://files.pythonhosted.org/packages/c4/f0/eaa16216c8b91cfd433b60e79080ffaf9e470bb5c939662835faa40fd347/Cartopy-0.24.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:4a14638b63d7df2858f73e9f8f4f4826d7c9cf13781aa6824fa0134fbaebbd98", size = 10982474 }, { url = "https://files.pythonhosted.org/packages/63/99/681a7ae5e572343e15ce8697dd4b41f49d45fe89f5e5d8b122bff0f8165c/Cartopy-0.24.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:d74b4a3eae9e570f474276fb61847112cdccdead396ec2ddad226dad9eaf4564", size = 10971918 }, { url = "https://files.pythonhosted.org/packages/04/87/8dc9249e67c635a5c08ae81d4243a1ad69a1b91b703d3ab9be7fa78efc2b/Cartopy-0.24.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dfa38fb216cfd16cc266fd6f86b60ebdf0056839b490f38d2d89229b03abc877", size = 11718335 }, { url = "https://files.pythonhosted.org/packages/4f/ce/ba4baced164ecd78b4109cd611d7b64d256f012784e944c1b0f6f5dff5c1/Cartopy-0.24.1-cp311-cp311-win_amd64.whl", hash = "sha256:f440ddb61171319adf34ecec4d91202864cd514a7bc8a252e0ff7788a6604031", size = 10960539 }, { url = "https://files.pythonhosted.org/packages/6e/76/774a4f808c6a4fc19b87c2cc38dd8731d413aad606689451c017ff93ad12/Cartopy-0.24.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:a984e33977daed8f760c09c331c8368a6af060db1190af89d74a027c272e39c3", size = 10983939 }, { url = "https://files.pythonhosted.org/packages/2f/48/8517d5d1cc56ce5c4abda1de6454593474a23412115a543f7981aa7e4377/Cartopy-0.24.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:71d8a6d061d0764aba3baf357a68f3d73796a8a46d34b8c9fb241171b273c69e", size = 10972374 }, { url = "https://files.pythonhosted.org/packages/c8/84/cb1577d5ac2f0deb002001c6e25b291735151c8c3033c97f212dc482ef72/Cartopy-0.24.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2f354a1d902a8d6ee33b099acc86ac2e1af528bbc0ea718b834111c97e604981", size = 11715215 }, { url = "https://files.pythonhosted.org/packages/11/95/40c7abae8789aae22ad2a5da3974d3270dc3526b46cee253f680f72ee6cc/Cartopy-0.24.1-cp312-cp312-win_amd64.whl", hash = "sha256:b1bb2d02b31884ee1d4f14e5b436bbf95745eac39c6fc0d6c67c83bb907b55b3", size = 10959875 }, { url = "https://files.pythonhosted.org/packages/e6/e8/38e00eb35743f22d4ee9bcb131ab273fb47ec39cc03ce5144686a3142756/Cartopy-0.24.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:d279968b845f72e3423e454b2b0b985fb2389e6ccd18fb73324abeca4e43f516", size = 10982533 }, { url = "https://files.pythonhosted.org/packages/66/60/cc852a0835a053db18085dec1d1dd6f9cedc764d1524bfe30fd8be5ee3a7/Cartopy-0.24.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f0963b80a048252815c56fbd21bc4e5d163618a9eaa36c8898ce2c60b6c03979", size = 10971183 }, { url = "https://files.pythonhosted.org/packages/a3/5b/476c8f3a277d7c78e5a5318bd32f234b994bfdc5d7731ae84218f2fa8a8f/Cartopy-0.24.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dfdde0a6e0e56c5fc46f4e7d332237eb31bbd9908417f0f190fda5d322754184", size = 11709060 }, { url = "https://files.pythonhosted.org/packages/93/31/50bf07ba820c5aa5d4e674d72cdb5da90bbd012ba1b9c6c95c3f96afe233/Cartopy-0.24.1-cp313-cp313-win_amd64.whl", hash = "sha256:b17cf23dd74d0a922c2a5682dacef3c0bf89fa8c0bd0eae96b87fb684f966b15", size = 10959830 }, ] [[package]] name = "certifi" version = "2024.12.14" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/0f/bd/1d41ee578ce09523c81a15426705dd20969f5abf006d1afe8aeff0dd776a/certifi-2024.12.14.tar.gz", hash = "sha256:b650d30f370c2b724812bee08008be0c4163b163ddaec3f2546c1caf65f191db", size = 166010 } wheels = [ { url = "https://files.pythonhosted.org/packages/a5/32/8f6669fc4798494966bf446c8c4a162e0b5d893dff088afddf76414f70e1/certifi-2024.12.14-py3-none-any.whl", hash = "sha256:1275f7a45be9464efc1173084eaa30f866fe2e47d389406136d332ed4967ec56", size = 164927 }, ] [[package]] name = "cffi" version = "1.17.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "pycparser" }, ] sdist = { url = "https://files.pythonhosted.org/packages/fc/97/c783634659c2920c3fc70419e3af40972dbaf758daa229a7d6ea6135c90d/cffi-1.17.1.tar.gz", hash = "sha256:1c39c6016c32bc48dd54561950ebd6836e1670f2ae46128f67cf49e789c52824", size = 516621 } wheels = [ { url = "https://files.pythonhosted.org/packages/90/07/f44ca684db4e4f08a3fdc6eeb9a0d15dc6883efc7b8c90357fdbf74e186c/cffi-1.17.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:df8b1c11f177bc2313ec4b2d46baec87a5f3e71fc8b45dab2ee7cae86d9aba14", size = 182191 }, { url = "https://files.pythonhosted.org/packages/08/fd/cc2fedbd887223f9f5d170c96e57cbf655df9831a6546c1727ae13fa977a/cffi-1.17.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:8f2cdc858323644ab277e9bb925ad72ae0e67f69e804f4898c070998d50b1a67", size = 178592 }, { url = "https://files.pythonhosted.org/packages/de/cc/4635c320081c78d6ffc2cab0a76025b691a91204f4aa317d568ff9280a2d/cffi-1.17.1-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:edae79245293e15384b51f88b00613ba9f7198016a5948b5dddf4917d4d26382", size = 426024 }, { url = "https://files.pythonhosted.org/packages/b6/7b/3b2b250f3aab91abe5f8a51ada1b717935fdaec53f790ad4100fe2ec64d1/cffi-1.17.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:45398b671ac6d70e67da8e4224a065cec6a93541bb7aebe1b198a61b58c7b702", size = 448188 }, { url = "https://files.pythonhosted.org/packages/d3/48/1b9283ebbf0ec065148d8de05d647a986c5f22586b18120020452fff8f5d/cffi-1.17.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ad9413ccdeda48c5afdae7e4fa2192157e991ff761e7ab8fdd8926f40b160cc3", size = 455571 }, { url = "https://files.pythonhosted.org/packages/40/87/3b8452525437b40f39ca7ff70276679772ee7e8b394934ff60e63b7b090c/cffi-1.17.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5da5719280082ac6bd9aa7becb3938dc9f9cbd57fac7d2871717b1feb0902ab6", size = 436687 }, { url = "https://files.pythonhosted.org/packages/8d/fb/4da72871d177d63649ac449aec2e8a29efe0274035880c7af59101ca2232/cffi-1.17.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2bb1a08b8008b281856e5971307cc386a8e9c5b625ac297e853d36da6efe9c17", size = 446211 }, { url = "https://files.pythonhosted.org/packages/ab/a0/62f00bcb411332106c02b663b26f3545a9ef136f80d5df746c05878f8c4b/cffi-1.17.1-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:045d61c734659cc045141be4bae381a41d89b741f795af1dd018bfb532fd0df8", size = 461325 }, { url = "https://files.pythonhosted.org/packages/36/83/76127035ed2e7e27b0787604d99da630ac3123bfb02d8e80c633f218a11d/cffi-1.17.1-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:6883e737d7d9e4899a8a695e00ec36bd4e5e4f18fabe0aca0efe0a4b44cdb13e", size = 438784 }, { url = "https://files.pythonhosted.org/packages/21/81/a6cd025db2f08ac88b901b745c163d884641909641f9b826e8cb87645942/cffi-1.17.1-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:6b8b4a92e1c65048ff98cfe1f735ef8f1ceb72e3d5f0c25fdb12087a23da22be", size = 461564 }, { url = "https://files.pythonhosted.org/packages/f8/fe/4d41c2f200c4a457933dbd98d3cf4e911870877bd94d9656cc0fcb390681/cffi-1.17.1-cp310-cp310-win32.whl", hash = "sha256:c9c3d058ebabb74db66e431095118094d06abf53284d9c81f27300d0e0d8bc7c", size = 171804 }, { url = "https://files.pythonhosted.org/packages/d1/b6/0b0f5ab93b0df4acc49cae758c81fe4e5ef26c3ae2e10cc69249dfd8b3ab/cffi-1.17.1-cp310-cp310-win_amd64.whl", hash = "sha256:0f048dcf80db46f0098ccac01132761580d28e28bc0f78ae0d58048063317e15", size = 181299 }, { url = "https://files.pythonhosted.org/packages/6b/f4/927e3a8899e52a27fa57a48607ff7dc91a9ebe97399b357b85a0c7892e00/cffi-1.17.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:a45e3c6913c5b87b3ff120dcdc03f6131fa0065027d0ed7ee6190736a74cd401", size = 182264 }, { url = "https://files.pythonhosted.org/packages/6c/f5/6c3a8efe5f503175aaddcbea6ad0d2c96dad6f5abb205750d1b3df44ef29/cffi-1.17.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:30c5e0cb5ae493c04c8b42916e52ca38079f1b235c2f8ae5f4527b963c401caf", size = 178651 }, { url = "https://files.pythonhosted.org/packages/94/dd/a3f0118e688d1b1a57553da23b16bdade96d2f9bcda4d32e7d2838047ff7/cffi-1.17.1-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f75c7ab1f9e4aca5414ed4d8e5c0e303a34f4421f8a0d47a4d019ceff0ab6af4", size = 445259 }, { url = "https://files.pythonhosted.org/packages/2e/ea/70ce63780f096e16ce8588efe039d3c4f91deb1dc01e9c73a287939c79a6/cffi-1.17.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a1ed2dd2972641495a3ec98445e09766f077aee98a1c896dcb4ad0d303628e41", size = 469200 }, { url = "https://files.pythonhosted.org/packages/1c/a0/a4fa9f4f781bda074c3ddd57a572b060fa0df7655d2a4247bbe277200146/cffi-1.17.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:46bf43160c1a35f7ec506d254e5c890f3c03648a4dbac12d624e4490a7046cd1", size = 477235 }, { url = "https://files.pythonhosted.org/packages/62/12/ce8710b5b8affbcdd5c6e367217c242524ad17a02fe5beec3ee339f69f85/cffi-1.17.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a24ed04c8ffd54b0729c07cee15a81d964e6fee0e3d4d342a27b020d22959dc6", size = 459721 }, { url = "https://files.pythonhosted.org/packages/ff/6b/d45873c5e0242196f042d555526f92aa9e0c32355a1be1ff8c27f077fd37/cffi-1.17.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:610faea79c43e44c71e1ec53a554553fa22321b65fae24889706c0a84d4ad86d", size = 467242 }, { url = "https://files.pythonhosted.org/packages/1a/52/d9a0e523a572fbccf2955f5abe883cfa8bcc570d7faeee06336fbd50c9fc/cffi-1.17.1-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:a9b15d491f3ad5d692e11f6b71f7857e7835eb677955c00cc0aefcd0669adaf6", size = 477999 }, { url = "https://files.pythonhosted.org/packages/44/74/f2a2460684a1a2d00ca799ad880d54652841a780c4c97b87754f660c7603/cffi-1.17.1-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:de2ea4b5833625383e464549fec1bc395c1bdeeb5f25c4a3a82b5a8c756ec22f", size = 454242 }, { url = "https://files.pythonhosted.org/packages/f8/4a/34599cac7dfcd888ff54e801afe06a19c17787dfd94495ab0c8d35fe99fb/cffi-1.17.1-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:fc48c783f9c87e60831201f2cce7f3b2e4846bf4d8728eabe54d60700b318a0b", size = 478604 }, { url = "https://files.pythonhosted.org/packages/34/33/e1b8a1ba29025adbdcda5fb3a36f94c03d771c1b7b12f726ff7fef2ebe36/cffi-1.17.1-cp311-cp311-win32.whl", hash = "sha256:85a950a4ac9c359340d5963966e3e0a94a676bd6245a4b55bc43949eee26a655", size = 171727 }, { url = "https://files.pythonhosted.org/packages/3d/97/50228be003bb2802627d28ec0627837ac0bf35c90cf769812056f235b2d1/cffi-1.17.1-cp311-cp311-win_amd64.whl", hash = "sha256:caaf0640ef5f5517f49bc275eca1406b0ffa6aa184892812030f04c2abf589a0", size = 181400 }, { url = "https://files.pythonhosted.org/packages/5a/84/e94227139ee5fb4d600a7a4927f322e1d4aea6fdc50bd3fca8493caba23f/cffi-1.17.1-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:805b4371bf7197c329fcb3ead37e710d1bca9da5d583f5073b799d5c5bd1eee4", size = 183178 }, { url = "https://files.pythonhosted.org/packages/da/ee/fb72c2b48656111c4ef27f0f91da355e130a923473bf5ee75c5643d00cca/cffi-1.17.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:733e99bc2df47476e3848417c5a4540522f234dfd4ef3ab7fafdf555b082ec0c", size = 178840 }, { url = "https://files.pythonhosted.org/packages/cc/b6/db007700f67d151abadf508cbfd6a1884f57eab90b1bb985c4c8c02b0f28/cffi-1.17.1-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1257bdabf294dceb59f5e70c64a3e2f462c30c7ad68092d01bbbfb1c16b1ba36", size = 454803 }, { url = "https://files.pythonhosted.org/packages/1a/df/f8d151540d8c200eb1c6fba8cd0dfd40904f1b0682ea705c36e6c2e97ab3/cffi-1.17.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da95af8214998d77a98cc14e3a3bd00aa191526343078b530ceb0bd710fb48a5", size = 478850 }, { url = "https://files.pythonhosted.org/packages/28/c0/b31116332a547fd2677ae5b78a2ef662dfc8023d67f41b2a83f7c2aa78b1/cffi-1.17.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d63afe322132c194cf832bfec0dc69a99fb9bb6bbd550f161a49e9e855cc78ff", size = 485729 }, { url = "https://files.pythonhosted.org/packages/91/2b/9a1ddfa5c7f13cab007a2c9cc295b70fbbda7cb10a286aa6810338e60ea1/cffi-1.17.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f79fc4fc25f1c8698ff97788206bb3c2598949bfe0fef03d299eb1b5356ada99", size = 471256 }, { url = "https://files.pythonhosted.org/packages/b2/d5/da47df7004cb17e4955df6a43d14b3b4ae77737dff8bf7f8f333196717bf/cffi-1.17.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b62ce867176a75d03a665bad002af8e6d54644fad99a3c70905c543130e39d93", size = 479424 }, { url = "https://files.pythonhosted.org/packages/0b/ac/2a28bcf513e93a219c8a4e8e125534f4f6db03e3179ba1c45e949b76212c/cffi-1.17.1-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:386c8bf53c502fff58903061338ce4f4950cbdcb23e2902d86c0f722b786bbe3", size = 484568 }, { url = "https://files.pythonhosted.org/packages/d4/38/ca8a4f639065f14ae0f1d9751e70447a261f1a30fa7547a828ae08142465/cffi-1.17.1-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:4ceb10419a9adf4460ea14cfd6bc43d08701f0835e979bf821052f1805850fe8", size = 488736 }, { url = "https://files.pythonhosted.org/packages/86/c5/28b2d6f799ec0bdecf44dced2ec5ed43e0eb63097b0f58c293583b406582/cffi-1.17.1-cp312-cp312-win32.whl", hash = "sha256:a08d7e755f8ed21095a310a693525137cfe756ce62d066e53f502a83dc550f65", size = 172448 }, { url = "https://files.pythonhosted.org/packages/50/b9/db34c4755a7bd1cb2d1603ac3863f22bcecbd1ba29e5ee841a4bc510b294/cffi-1.17.1-cp312-cp312-win_amd64.whl", hash = "sha256:51392eae71afec0d0c8fb1a53b204dbb3bcabcb3c9b807eedf3e1e6ccf2de903", size = 181976 }, { url = "https://files.pythonhosted.org/packages/8d/f8/dd6c246b148639254dad4d6803eb6a54e8c85c6e11ec9df2cffa87571dbe/cffi-1.17.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f3a2b4222ce6b60e2e8b337bb9596923045681d71e5a082783484d845390938e", size = 182989 }, { url = "https://files.pythonhosted.org/packages/8b/f1/672d303ddf17c24fc83afd712316fda78dc6fce1cd53011b839483e1ecc8/cffi-1.17.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0984a4925a435b1da406122d4d7968dd861c1385afe3b45ba82b750f229811e2", size = 178802 }, { url = "https://files.pythonhosted.org/packages/0e/2d/eab2e858a91fdff70533cab61dcff4a1f55ec60425832ddfdc9cd36bc8af/cffi-1.17.1-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d01b12eeeb4427d3110de311e1774046ad344f5b1a7403101878976ecd7a10f3", size = 454792 }, { url = "https://files.pythonhosted.org/packages/75/b2/fbaec7c4455c604e29388d55599b99ebcc250a60050610fadde58932b7ee/cffi-1.17.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:706510fe141c86a69c8ddc029c7910003a17353970cff3b904ff0686a5927683", size = 478893 }, { url = "https://files.pythonhosted.org/packages/4f/b7/6e4a2162178bf1935c336d4da8a9352cccab4d3a5d7914065490f08c0690/cffi-1.17.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:de55b766c7aa2e2a3092c51e0483d700341182f08e67c63630d5b6f200bb28e5", size = 485810 }, { url = "https://files.pythonhosted.org/packages/c7/8a/1d0e4a9c26e54746dc08c2c6c037889124d4f59dffd853a659fa545f1b40/cffi-1.17.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c59d6e989d07460165cc5ad3c61f9fd8f1b4796eacbd81cee78957842b834af4", size = 471200 }, { url = "https://files.pythonhosted.org/packages/26/9f/1aab65a6c0db35f43c4d1b4f580e8df53914310afc10ae0397d29d697af4/cffi-1.17.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:dd398dbc6773384a17fe0d3e7eeb8d1a21c2200473ee6806bb5e6a8e62bb73dd", size = 479447 }, { url = "https://files.pythonhosted.org/packages/5f/e4/fb8b3dd8dc0e98edf1135ff067ae070bb32ef9d509d6cb0f538cd6f7483f/cffi-1.17.1-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:3edc8d958eb099c634dace3c7e16560ae474aa3803a5df240542b305d14e14ed", size = 484358 }, { url = "https://files.pythonhosted.org/packages/f1/47/d7145bf2dc04684935d57d67dff9d6d795b2ba2796806bb109864be3a151/cffi-1.17.1-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:72e72408cad3d5419375fc87d289076ee319835bdfa2caad331e377589aebba9", size = 488469 }, { url = "https://files.pythonhosted.org/packages/bf/ee/f94057fa6426481d663b88637a9a10e859e492c73d0384514a17d78ee205/cffi-1.17.1-cp313-cp313-win32.whl", hash = "sha256:e03eab0a8677fa80d646b5ddece1cbeaf556c313dcfac435ba11f107ba117b5d", size = 172475 }, { url = "https://files.pythonhosted.org/packages/7c/fc/6a8cb64e5f0324877d503c854da15d76c1e50eb722e320b15345c4d0c6de/cffi-1.17.1-cp313-cp313-win_amd64.whl", hash = "sha256:f6a16c31041f09ead72d69f583767292f750d24913dadacf5756b966aacb3f1a", size = 182009 }, ] [[package]] name = "cfgv" version = "3.4.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/11/74/539e56497d9bd1d484fd863dd69cbbfa653cd2aa27abfe35653494d85e94/cfgv-3.4.0.tar.gz", hash = "sha256:e52591d4c5f5dead8e0f673fb16db7949d2cfb3f7da4582893288f0ded8fe560", size = 7114 } wheels = [ { url = "https://files.pythonhosted.org/packages/c5/55/51844dd50c4fc7a33b653bfaba4c2456f06955289ca770a5dbd5fd267374/cfgv-3.4.0-py2.py3-none-any.whl", hash = "sha256:b7265b1f29fd3316bfcd2b330d63d024f2bfd8bcb8b0272f8e19a504856c48f9", size = 7249 }, ] [[package]] name = "charset-normalizer" version = "3.4.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/f2/4f/e1808dc01273379acc506d18f1504eb2d299bd4131743b9fc54d7be4df1e/charset_normalizer-3.4.0.tar.gz", hash = "sha256:223217c3d4f82c3ac5e29032b3f1c2eb0fb591b72161f86d93f5719079dae93e", size = 106620 } wheels = [ { url = "https://files.pythonhosted.org/packages/69/8b/825cc84cf13a28bfbcba7c416ec22bf85a9584971be15b21dd8300c65b7f/charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:4f9fc98dad6c2eaa32fc3af1417d95b5e3d08aff968df0cd320066def971f9a6", size = 196363 }, { url = "https://files.pythonhosted.org/packages/23/81/d7eef6a99e42c77f444fdd7bc894b0ceca6c3a95c51239e74a722039521c/charset_normalizer-3.4.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0de7b687289d3c1b3e8660d0741874abe7888100efe14bd0f9fd7141bcbda92b", size = 125639 }, { url = "https://files.pythonhosted.org/packages/21/67/b4564d81f48042f520c948abac7079356e94b30cb8ffb22e747532cf469d/charset_normalizer-3.4.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:5ed2e36c3e9b4f21dd9422f6893dec0abf2cca553af509b10cd630f878d3eb99", size = 120451 }, { url = "https://files.pythonhosted.org/packages/c2/72/12a7f0943dd71fb5b4e7b55c41327ac0a1663046a868ee4d0d8e9c369b85/charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:40d3ff7fc90b98c637bda91c89d51264a3dcf210cade3a2c6f838c7268d7a4ca", size = 140041 }, { url = "https://files.pythonhosted.org/packages/67/56/fa28c2c3e31217c4c52158537a2cf5d98a6c1e89d31faf476c89391cd16b/charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1110e22af8ca26b90bd6364fe4c763329b0ebf1ee213ba32b68c73de5752323d", size = 150333 }, { url = "https://files.pythonhosted.org/packages/f9/d2/466a9be1f32d89eb1554cf84073a5ed9262047acee1ab39cbaefc19635d2/charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:86f4e8cca779080f66ff4f191a685ced73d2f72d50216f7112185dc02b90b9b7", size = 142921 }, { url = "https://files.pythonhosted.org/packages/f8/01/344ec40cf5d85c1da3c1f57566c59e0c9b56bcc5566c08804a95a6cc8257/charset_normalizer-3.4.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7f683ddc7eedd742e2889d2bfb96d69573fde1d92fcb811979cdb7165bb9c7d3", size = 144785 }, { url = "https://files.pythonhosted.org/packages/73/8b/2102692cb6d7e9f03b9a33a710e0164cadfce312872e3efc7cfe22ed26b4/charset_normalizer-3.4.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:27623ba66c183eca01bf9ff833875b459cad267aeeb044477fedac35e19ba907", size = 146631 }, { url = "https://files.pythonhosted.org/packages/d8/96/cc2c1b5d994119ce9f088a9a0c3ebd489d360a2eb058e2c8049f27092847/charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:f606a1881d2663630ea5b8ce2efe2111740df4b687bd78b34a8131baa007f79b", size = 140867 }, { url = "https://files.pythonhosted.org/packages/c9/27/cde291783715b8ec30a61c810d0120411844bc4c23b50189b81188b273db/charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0b309d1747110feb25d7ed6b01afdec269c647d382c857ef4663bbe6ad95a912", size = 149273 }, { url = "https://files.pythonhosted.org/packages/3a/a4/8633b0fc1a2d1834d5393dafecce4a1cc56727bfd82b4dc18fc92f0d3cc3/charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:136815f06a3ae311fae551c3df1f998a1ebd01ddd424aa5603a4336997629e95", size = 152437 }, { url = "https://files.pythonhosted.org/packages/64/ea/69af161062166b5975ccbb0961fd2384853190c70786f288684490913bf5/charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:14215b71a762336254351b00ec720a8e85cada43b987da5a042e4ce3e82bd68e", size = 150087 }, { url = "https://files.pythonhosted.org/packages/3b/fd/e60a9d9fd967f4ad5a92810138192f825d77b4fa2a557990fd575a47695b/charset_normalizer-3.4.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:79983512b108e4a164b9c8d34de3992f76d48cadc9554c9e60b43f308988aabe", size = 145142 }, { url = "https://files.pythonhosted.org/packages/6d/02/8cb0988a1e49ac9ce2eed1e07b77ff118f2923e9ebd0ede41ba85f2dcb04/charset_normalizer-3.4.0-cp310-cp310-win32.whl", hash = "sha256:c94057af19bc953643a33581844649a7fdab902624d2eb739738a30e2b3e60fc", size = 94701 }, { url = "https://files.pythonhosted.org/packages/d6/20/f1d4670a8a723c46be695dff449d86d6092916f9e99c53051954ee33a1bc/charset_normalizer-3.4.0-cp310-cp310-win_amd64.whl", hash = "sha256:55f56e2ebd4e3bc50442fbc0888c9d8c94e4e06a933804e2af3e89e2f9c1c749", size = 102191 }, { url = "https://files.pythonhosted.org/packages/9c/61/73589dcc7a719582bf56aae309b6103d2762b526bffe189d635a7fcfd998/charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:0d99dd8ff461990f12d6e42c7347fd9ab2532fb70e9621ba520f9e8637161d7c", size = 193339 }, { url = "https://files.pythonhosted.org/packages/77/d5/8c982d58144de49f59571f940e329ad6e8615e1e82ef84584c5eeb5e1d72/charset_normalizer-3.4.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c57516e58fd17d03ebe67e181a4e4e2ccab1168f8c2976c6a334d4f819fe5944", size = 124366 }, { url = "https://files.pythonhosted.org/packages/bf/19/411a64f01ee971bed3231111b69eb56f9331a769072de479eae7de52296d/charset_normalizer-3.4.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:6dba5d19c4dfab08e58d5b36304b3f92f3bd5d42c1a3fa37b5ba5cdf6dfcbcee", size = 118874 }, { url = "https://files.pythonhosted.org/packages/4c/92/97509850f0d00e9f14a46bc751daabd0ad7765cff29cdfb66c68b6dad57f/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:bf4475b82be41b07cc5e5ff94810e6a01f276e37c2d55571e3fe175e467a1a1c", size = 138243 }, { url = "https://files.pythonhosted.org/packages/e2/29/d227805bff72ed6d6cb1ce08eec707f7cfbd9868044893617eb331f16295/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ce031db0408e487fd2775d745ce30a7cd2923667cf3b69d48d219f1d8f5ddeb6", size = 148676 }, { url = "https://files.pythonhosted.org/packages/13/bc/87c2c9f2c144bedfa62f894c3007cd4530ba4b5351acb10dc786428a50f0/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:8ff4e7cdfdb1ab5698e675ca622e72d58a6fa2a8aa58195de0c0061288e6e3ea", size = 141289 }, { url = "https://files.pythonhosted.org/packages/eb/5b/6f10bad0f6461fa272bfbbdf5d0023b5fb9bc6217c92bf068fa5a99820f5/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3710a9751938947e6327ea9f3ea6332a09bf0ba0c09cae9cb1f250bd1f1549bc", size = 142585 }, { url = "https://files.pythonhosted.org/packages/3b/a0/a68980ab8a1f45a36d9745d35049c1af57d27255eff8c907e3add84cf68f/charset_normalizer-3.4.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:82357d85de703176b5587dbe6ade8ff67f9f69a41c0733cf2425378b49954de5", size = 144408 }, { url = "https://files.pythonhosted.org/packages/d7/a1/493919799446464ed0299c8eef3c3fad0daf1c3cd48bff9263c731b0d9e2/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:47334db71978b23ebcf3c0f9f5ee98b8d65992b65c9c4f2d34c2eaf5bcaf0594", size = 139076 }, { url = "https://files.pythonhosted.org/packages/fb/9d/9c13753a5a6e0db4a0a6edb1cef7aee39859177b64e1a1e748a6e3ba62c2/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:8ce7fd6767a1cc5a92a639b391891bf1c268b03ec7e021c7d6d902285259685c", size = 146874 }, { url = "https://files.pythonhosted.org/packages/75/d2/0ab54463d3410709c09266dfb416d032a08f97fd7d60e94b8c6ef54ae14b/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:f1a2f519ae173b5b6a2c9d5fa3116ce16e48b3462c8b96dfdded11055e3d6365", size = 150871 }, { url = "https://files.pythonhosted.org/packages/8d/c9/27e41d481557be53d51e60750b85aa40eaf52b841946b3cdeff363105737/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:63bc5c4ae26e4bc6be6469943b8253c0fd4e4186c43ad46e713ea61a0ba49129", size = 148546 }, { url = "https://files.pythonhosted.org/packages/ee/44/4f62042ca8cdc0cabf87c0fc00ae27cd8b53ab68be3605ba6d071f742ad3/charset_normalizer-3.4.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bcb4f8ea87d03bc51ad04add8ceaf9b0f085ac045ab4d74e73bbc2dc033f0236", size = 143048 }, { url = "https://files.pythonhosted.org/packages/01/f8/38842422988b795220eb8038745d27a675ce066e2ada79516c118f291f07/charset_normalizer-3.4.0-cp311-cp311-win32.whl", hash = "sha256:9ae4ef0b3f6b41bad6366fb0ea4fc1d7ed051528e113a60fa2a65a9abb5b1d99", size = 94389 }, { url = "https://files.pythonhosted.org/packages/0b/6e/b13bd47fa9023b3699e94abf565b5a2f0b0be6e9ddac9812182596ee62e4/charset_normalizer-3.4.0-cp311-cp311-win_amd64.whl", hash = "sha256:cee4373f4d3ad28f1ab6290684d8e2ebdb9e7a1b74fdc39e4c211995f77bec27", size = 101752 }, { url = "https://files.pythonhosted.org/packages/d3/0b/4b7a70987abf9b8196845806198975b6aab4ce016632f817ad758a5aa056/charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:0713f3adb9d03d49d365b70b84775d0a0d18e4ab08d12bc46baa6132ba78aaf6", size = 194445 }, { url = "https://files.pythonhosted.org/packages/50/89/354cc56cf4dd2449715bc9a0f54f3aef3dc700d2d62d1fa5bbea53b13426/charset_normalizer-3.4.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:de7376c29d95d6719048c194a9cf1a1b0393fbe8488a22008610b0361d834ecf", size = 125275 }, { url = "https://files.pythonhosted.org/packages/fa/44/b730e2a2580110ced837ac083d8ad222343c96bb6b66e9e4e706e4d0b6df/charset_normalizer-3.4.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:4a51b48f42d9358460b78725283f04bddaf44a9358197b889657deba38f329db", size = 119020 }, { url = "https://files.pythonhosted.org/packages/9d/e4/9263b8240ed9472a2ae7ddc3e516e71ef46617fe40eaa51221ccd4ad9a27/charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b295729485b06c1a0683af02a9e42d2caa9db04a373dc38a6a58cdd1e8abddf1", size = 139128 }, { url = "https://files.pythonhosted.org/packages/6b/e3/9f73e779315a54334240353eaea75854a9a690f3f580e4bd85d977cb2204/charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:ee803480535c44e7f5ad00788526da7d85525cfefaf8acf8ab9a310000be4b03", size = 149277 }, { url = "https://files.pythonhosted.org/packages/1a/cf/f1f50c2f295312edb8a548d3fa56a5c923b146cd3f24114d5adb7e7be558/charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3d59d125ffbd6d552765510e3f31ed75ebac2c7470c7274195b9161a32350284", size = 142174 }, { url = "https://files.pythonhosted.org/packages/16/92/92a76dc2ff3a12e69ba94e7e05168d37d0345fa08c87e1fe24d0c2a42223/charset_normalizer-3.4.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8cda06946eac330cbe6598f77bb54e690b4ca93f593dee1568ad22b04f347c15", size = 143838 }, { url = "https://files.pythonhosted.org/packages/a4/01/2117ff2b1dfc61695daf2babe4a874bca328489afa85952440b59819e9d7/charset_normalizer-3.4.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:07afec21bbbbf8a5cc3651aa96b980afe2526e7f048fdfb7f1014d84acc8b6d8", size = 146149 }, { url = "https://files.pythonhosted.org/packages/f6/9b/93a332b8d25b347f6839ca0a61b7f0287b0930216994e8bf67a75d050255/charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6b40e8d38afe634559e398cc32b1472f376a4099c75fe6299ae607e404c033b2", size = 140043 }, { url = "https://files.pythonhosted.org/packages/ab/f6/7ac4a01adcdecbc7a7587767c776d53d369b8b971382b91211489535acf0/charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b8dcd239c743aa2f9c22ce674a145e0a25cb1566c495928440a181ca1ccf6719", size = 148229 }, { url = "https://files.pythonhosted.org/packages/9d/be/5708ad18161dee7dc6a0f7e6cf3a88ea6279c3e8484844c0590e50e803ef/charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:84450ba661fb96e9fd67629b93d2941c871ca86fc38d835d19d4225ff946a631", size = 151556 }, { url = "https://files.pythonhosted.org/packages/5a/bb/3d8bc22bacb9eb89785e83e6723f9888265f3a0de3b9ce724d66bd49884e/charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:44aeb140295a2f0659e113b31cfe92c9061622cadbc9e2a2f7b8ef6b1e29ef4b", size = 149772 }, { url = "https://files.pythonhosted.org/packages/f7/fa/d3fc622de05a86f30beea5fc4e9ac46aead4731e73fd9055496732bcc0a4/charset_normalizer-3.4.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:1db4e7fefefd0f548d73e2e2e041f9df5c59e178b4c72fbac4cc6f535cfb1565", size = 144800 }, { url = "https://files.pythonhosted.org/packages/9a/65/bdb9bc496d7d190d725e96816e20e2ae3a6fa42a5cac99c3c3d6ff884118/charset_normalizer-3.4.0-cp312-cp312-win32.whl", hash = "sha256:5726cf76c982532c1863fb64d8c6dd0e4c90b6ece9feb06c9f202417a31f7dd7", size = 94836 }, { url = "https://files.pythonhosted.org/packages/3e/67/7b72b69d25b89c0b3cea583ee372c43aa24df15f0e0f8d3982c57804984b/charset_normalizer-3.4.0-cp312-cp312-win_amd64.whl", hash = "sha256:b197e7094f232959f8f20541ead1d9862ac5ebea1d58e9849c1bf979255dfac9", size = 102187 }, { url = "https://files.pythonhosted.org/packages/f3/89/68a4c86f1a0002810a27f12e9a7b22feb198c59b2f05231349fbce5c06f4/charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:dd4eda173a9fcccb5f2e2bd2a9f423d180194b1bf17cf59e3269899235b2a114", size = 194617 }, { url = "https://files.pythonhosted.org/packages/4f/cd/8947fe425e2ab0aa57aceb7807af13a0e4162cd21eee42ef5b053447edf5/charset_normalizer-3.4.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9e3c4c9e1ed40ea53acf11e2a386383c3304212c965773704e4603d589343ed", size = 125310 }, { url = "https://files.pythonhosted.org/packages/5b/f0/b5263e8668a4ee9becc2b451ed909e9c27058337fda5b8c49588183c267a/charset_normalizer-3.4.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:92a7e36b000bf022ef3dbb9c46bfe2d52c047d5e3f3343f43204263c5addc250", size = 119126 }, { url = "https://files.pythonhosted.org/packages/ff/6e/e445afe4f7fda27a533f3234b627b3e515a1b9429bc981c9a5e2aa5d97b6/charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:54b6a92d009cbe2fb11054ba694bc9e284dad30a26757b1e372a1fdddaf21920", size = 139342 }, { url = "https://files.pythonhosted.org/packages/a1/b2/4af9993b532d93270538ad4926c8e37dc29f2111c36f9c629840c57cd9b3/charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1ffd9493de4c922f2a38c2bf62b831dcec90ac673ed1ca182fe11b4d8e9f2a64", size = 149383 }, { url = "https://files.pythonhosted.org/packages/fb/6f/4e78c3b97686b871db9be6f31d64e9264e889f8c9d7ab33c771f847f79b7/charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35c404d74c2926d0287fbd63ed5d27eb911eb9e4a3bb2c6d294f3cfd4a9e0c23", size = 142214 }, { url = "https://files.pythonhosted.org/packages/2b/c9/1c8fe3ce05d30c87eff498592c89015b19fade13df42850aafae09e94f35/charset_normalizer-3.4.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4796efc4faf6b53a18e3d46343535caed491776a22af773f366534056c4e1fbc", size = 144104 }, { url = "https://files.pythonhosted.org/packages/ee/68/efad5dcb306bf37db7db338338e7bb8ebd8cf38ee5bbd5ceaaaa46f257e6/charset_normalizer-3.4.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e7fdd52961feb4c96507aa649550ec2a0d527c086d284749b2f582f2d40a2e0d", size = 146255 }, { url = "https://files.pythonhosted.org/packages/0c/75/1ed813c3ffd200b1f3e71121c95da3f79e6d2a96120163443b3ad1057505/charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:92db3c28b5b2a273346bebb24857fda45601aef6ae1c011c0a997106581e8a88", size = 140251 }, { url = "https://files.pythonhosted.org/packages/7d/0d/6f32255c1979653b448d3c709583557a4d24ff97ac4f3a5be156b2e6a210/charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:ab973df98fc99ab39080bfb0eb3a925181454d7c3ac8a1e695fddfae696d9e90", size = 148474 }, { url = "https://files.pythonhosted.org/packages/ac/a0/c1b5298de4670d997101fef95b97ac440e8c8d8b4efa5a4d1ef44af82f0d/charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:4b67fdab07fdd3c10bb21edab3cbfe8cf5696f453afce75d815d9d7223fbe88b", size = 151849 }, { url = "https://files.pythonhosted.org/packages/04/4f/b3961ba0c664989ba63e30595a3ed0875d6790ff26671e2aae2fdc28a399/charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:aa41e526a5d4a9dfcfbab0716c7e8a1b215abd3f3df5a45cf18a12721d31cb5d", size = 149781 }, { url = "https://files.pythonhosted.org/packages/d8/90/6af4cd042066a4adad58ae25648a12c09c879efa4849c705719ba1b23d8c/charset_normalizer-3.4.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:ffc519621dce0c767e96b9c53f09c5d215578e10b02c285809f76509a3931482", size = 144970 }, { url = "https://files.pythonhosted.org/packages/cc/67/e5e7e0cbfefc4ca79025238b43cdf8a2037854195b37d6417f3d0895c4c2/charset_normalizer-3.4.0-cp313-cp313-win32.whl", hash = "sha256:f19c1585933c82098c2a520f8ec1227f20e339e33aca8fa6f956f6691b784e67", size = 94973 }, { url = "https://files.pythonhosted.org/packages/65/97/fc9bbc54ee13d33dc54a7fcf17b26368b18505500fc01e228c27b5222d80/charset_normalizer-3.4.0-cp313-cp313-win_amd64.whl", hash = "sha256:707b82d19e65c9bd28b81dde95249b07bf9f5b90ebe1ef17d9b57473f8a64b7b", size = 102308 }, { url = "https://files.pythonhosted.org/packages/bf/9b/08c0432272d77b04803958a4598a51e2a4b51c06640af8b8f0f908c18bf2/charset_normalizer-3.4.0-py3-none-any.whl", hash = "sha256:fe9f97feb71aa9896b81973a7bbada8c49501dc73e58a10fcef6663af95e5079", size = 49446 }, ] [[package]] name = "codespell" version = "2.4.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/15/e0/709453393c0ea77d007d907dd436b3ee262e28b30995ea1aa36c6ffbccaf/codespell-2.4.1.tar.gz", hash = "sha256:299fcdcb09d23e81e35a671bbe746d5ad7e8385972e65dbb833a2eaac33c01e5", size = 344740 } wheels = [ { url = "https://files.pythonhosted.org/packages/20/01/b394922252051e97aab231d416c86da3d8a6d781eeadcdca1082867de64e/codespell-2.4.1-py3-none-any.whl", hash = "sha256:3dadafa67df7e4a3dbf51e0d7315061b80d265f9552ebd699b3dd6834b47e425", size = 344501 }, ] [[package]] name = "colorama" version = "0.4.6" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/d8/53/6f443c9a4a8358a93a6792e2acffb9d9d5cb0a5cfd8802644b7b1c9a02e4/colorama-0.4.6.tar.gz", hash = "sha256:08695f5cb7ed6e0531a20572697297273c47b8cae5a63ffc6d6ed5c201be6e44", size = 27697 } wheels = [ { url = "https://files.pythonhosted.org/packages/d1/d6/3965ed04c63042e047cb6a3e6ed1a63a35087b6a609aa3a15ed8ac56c221/colorama-0.4.6-py2.py3-none-any.whl", hash = "sha256:4f1d9991f5acc0ca119f9d443620b77f9d6b33703e51011c16baf57afb285fc6", size = 25335 }, ] [[package]] name = "colorcet" version = "3.1.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/5f/c3/ae78e10b7139d6b7ce080d2e81d822715763336aa4229720f49cb3b3e15b/colorcet-3.1.0.tar.gz", hash = "sha256:2921b3cd81a2288aaf2d63dbc0ce3c26dcd882e8c389cc505d6886bf7aa9a4eb", size = 2183107 } wheels = [ { url = "https://files.pythonhosted.org/packages/c6/c6/9963d588cc3d75d766c819e0377a168ef83cf3316a92769971527a1ad1de/colorcet-3.1.0-py3-none-any.whl", hash = "sha256:2a7d59cc8d0f7938eeedd08aad3152b5319b4ba3bcb7a612398cc17a384cb296", size = 260286 }, ] [[package]] name = "comm" version = "0.2.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "traitlets" }, ] sdist = { url = "https://files.pythonhosted.org/packages/e9/a8/fb783cb0abe2b5fded9f55e5703015cdf1c9c85b3669087c538dd15a6a86/comm-0.2.2.tar.gz", hash = "sha256:3fd7a84065306e07bea1773df6eb8282de51ba82f77c72f9c85716ab11fe980e", size = 6210 } wheels = [ { url = "https://files.pythonhosted.org/packages/e6/75/49e5bfe642f71f272236b5b2d2691cf915a7283cc0ceda56357b61daa538/comm-0.2.2-py3-none-any.whl", hash = "sha256:e6fb86cb70ff661ee8c9c14e7d36d6de3b4066f1441be4063df9c5009f0a64d3", size = 7180 }, ] [[package]] name = "commonmark" version = "0.9.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/60/48/a60f593447e8f0894ebb7f6e6c1f25dafc5e89c5879fdc9360ae93ff83f0/commonmark-0.9.1.tar.gz", hash = "sha256:452f9dc859be7f06631ddcb328b6919c67984aca654e5fefb3914d54691aed60", size = 95764 } wheels = [ { url = "https://files.pythonhosted.org/packages/b1/92/dfd892312d822f36c55366118b95d914e5f16de11044a27cf10a7d71bbbf/commonmark-0.9.1-py2.py3-none-any.whl", hash = "sha256:da2f38c92590f83de410ba1a3cbceafbc74fee9def35f9251ba9a971d6d66fd9", size = 51068 }, ] [[package]] name = "contourpy" version = "1.3.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, ] sdist = { url = "https://files.pythonhosted.org/packages/25/c2/fc7193cc5383637ff390a712e88e4ded0452c9fbcf84abe3de5ea3df1866/contourpy-1.3.1.tar.gz", hash = "sha256:dfd97abd83335045a913e3bcc4a09c0ceadbe66580cf573fe961f4a825efa699", size = 13465753 } wheels = [ { url = "https://files.pythonhosted.org/packages/b2/a3/80937fe3efe0edacf67c9a20b955139a1a622730042c1ea991956f2704ad/contourpy-1.3.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:a045f341a77b77e1c5de31e74e966537bba9f3c4099b35bf4c2e3939dd54cdab", size = 268466 }, { url = "https://files.pythonhosted.org/packages/82/1d/e3eaebb4aa2d7311528c048350ca8e99cdacfafd99da87bc0a5f8d81f2c2/contourpy-1.3.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:500360b77259914f7805af7462e41f9cb7ca92ad38e9f94d6c8641b089338124", size = 253314 }, { url = "https://files.pythonhosted.org/packages/de/f3/d796b22d1a2b587acc8100ba8c07fb7b5e17fde265a7bb05ab967f4c935a/contourpy-1.3.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b2f926efda994cdf3c8d3fdb40b9962f86edbc4457e739277b961eced3d0b4c1", size = 312003 }, { url = "https://files.pythonhosted.org/packages/bf/f5/0e67902bc4394daee8daa39c81d4f00b50e063ee1a46cb3938cc65585d36/contourpy-1.3.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:adce39d67c0edf383647a3a007de0a45fd1b08dedaa5318404f1a73059c2512b", size = 351896 }, { url = "https://files.pythonhosted.org/packages/1f/d6/e766395723f6256d45d6e67c13bb638dd1fa9dc10ef912dc7dd3dcfc19de/contourpy-1.3.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:abbb49fb7dac584e5abc6636b7b2a7227111c4f771005853e7d25176daaf8453", size = 320814 }, { url = "https://files.pythonhosted.org/packages/a9/57/86c500d63b3e26e5b73a28b8291a67c5608d4aa87ebd17bd15bb33c178bc/contourpy-1.3.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a0cffcbede75c059f535725c1680dfb17b6ba8753f0c74b14e6a9c68c29d7ea3", size = 324969 }, { url = "https://files.pythonhosted.org/packages/b8/62/bb146d1289d6b3450bccc4642e7f4413b92ebffd9bf2e91b0404323704a7/contourpy-1.3.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ab29962927945d89d9b293eabd0d59aea28d887d4f3be6c22deaefbb938a7277", size = 1265162 }, { url = "https://files.pythonhosted.org/packages/18/04/9f7d132ce49a212c8e767042cc80ae390f728060d2eea47058f55b9eff1c/contourpy-1.3.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:974d8145f8ca354498005b5b981165b74a195abfae9a8129df3e56771961d595", size = 1324328 }, { url = "https://files.pythonhosted.org/packages/46/23/196813901be3f97c83ababdab1382e13e0edc0bb4e7b49a7bff15fcf754e/contourpy-1.3.1-cp310-cp310-win32.whl", hash = "sha256:ac4578ac281983f63b400f7fe6c101bedc10651650eef012be1ccffcbacf3697", size = 173861 }, { url = "https://files.pythonhosted.org/packages/e0/82/c372be3fc000a3b2005061ca623a0d1ecd2eaafb10d9e883a2fc8566e951/contourpy-1.3.1-cp310-cp310-win_amd64.whl", hash = "sha256:174e758c66bbc1c8576992cec9599ce8b6672b741b5d336b5c74e35ac382b18e", size = 218566 }, { url = "https://files.pythonhosted.org/packages/12/bb/11250d2906ee2e8b466b5f93e6b19d525f3e0254ac8b445b56e618527718/contourpy-1.3.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3e8b974d8db2c5610fb4e76307e265de0edb655ae8169e8b21f41807ccbeec4b", size = 269555 }, { url = "https://files.pythonhosted.org/packages/67/71/1e6e95aee21a500415f5d2dbf037bf4567529b6a4e986594d7026ec5ae90/contourpy-1.3.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:20914c8c973f41456337652a6eeca26d2148aa96dd7ac323b74516988bea89fc", size = 254549 }, { url = "https://files.pythonhosted.org/packages/31/2c/b88986e8d79ac45efe9d8801ae341525f38e087449b6c2f2e6050468a42c/contourpy-1.3.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:19d40d37c1c3a4961b4619dd9d77b12124a453cc3d02bb31a07d58ef684d3d86", size = 313000 }, { url = "https://files.pythonhosted.org/packages/c4/18/65280989b151fcf33a8352f992eff71e61b968bef7432fbfde3a364f0730/contourpy-1.3.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:113231fe3825ebf6f15eaa8bc1f5b0ddc19d42b733345eae0934cb291beb88b6", size = 352925 }, { url = "https://files.pythonhosted.org/packages/f5/c7/5fd0146c93220dbfe1a2e0f98969293b86ca9bc041d6c90c0e065f4619ad/contourpy-1.3.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:4dbbc03a40f916a8420e420d63e96a1258d3d1b58cbdfd8d1f07b49fcbd38e85", size = 323693 }, { url = "https://files.pythonhosted.org/packages/85/fc/7fa5d17daf77306840a4e84668a48ddff09e6bc09ba4e37e85ffc8e4faa3/contourpy-1.3.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a04ecd68acbd77fa2d39723ceca4c3197cb2969633836ced1bea14e219d077c", size = 326184 }, { url = "https://files.pythonhosted.org/packages/ef/e7/104065c8270c7397c9571620d3ab880558957216f2b5ebb7e040f85eeb22/contourpy-1.3.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c414fc1ed8ee1dbd5da626cf3710c6013d3d27456651d156711fa24f24bd1291", size = 1268031 }, { url = "https://files.pythonhosted.org/packages/e2/4a/c788d0bdbf32c8113c2354493ed291f924d4793c4a2e85b69e737a21a658/contourpy-1.3.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:31c1b55c1f34f80557d3830d3dd93ba722ce7e33a0b472cba0ec3b6535684d8f", size = 1325995 }, { url = "https://files.pythonhosted.org/packages/a6/e6/a2f351a90d955f8b0564caf1ebe4b1451a3f01f83e5e3a414055a5b8bccb/contourpy-1.3.1-cp311-cp311-win32.whl", hash = "sha256:f611e628ef06670df83fce17805c344710ca5cde01edfdc72751311da8585375", size = 174396 }, { url = "https://files.pythonhosted.org/packages/a8/7e/cd93cab453720a5d6cb75588cc17dcdc08fc3484b9de98b885924ff61900/contourpy-1.3.1-cp311-cp311-win_amd64.whl", hash = "sha256:b2bdca22a27e35f16794cf585832e542123296b4687f9fd96822db6bae17bfc9", size = 219787 }, { url = "https://files.pythonhosted.org/packages/37/6b/175f60227d3e7f5f1549fcb374592be311293132207e451c3d7c654c25fb/contourpy-1.3.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:0ffa84be8e0bd33410b17189f7164c3589c229ce5db85798076a3fa136d0e509", size = 271494 }, { url = "https://files.pythonhosted.org/packages/6b/6a/7833cfae2c1e63d1d8875a50fd23371394f540ce809d7383550681a1fa64/contourpy-1.3.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:805617228ba7e2cbbfb6c503858e626ab528ac2a32a04a2fe88ffaf6b02c32bc", size = 255444 }, { url = "https://files.pythonhosted.org/packages/7f/b3/7859efce66eaca5c14ba7619791b084ed02d868d76b928ff56890d2d059d/contourpy-1.3.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ade08d343436a94e633db932e7e8407fe7de8083967962b46bdfc1b0ced39454", size = 307628 }, { url = "https://files.pythonhosted.org/packages/48/b2/011415f5e3f0a50b1e285a0bf78eb5d92a4df000553570f0851b6e309076/contourpy-1.3.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:47734d7073fb4590b4a40122b35917cd77be5722d80683b249dac1de266aac80", size = 347271 }, { url = "https://files.pythonhosted.org/packages/84/7d/ef19b1db0f45b151ac78c65127235239a8cf21a59d1ce8507ce03e89a30b/contourpy-1.3.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2ba94a401342fc0f8b948e57d977557fbf4d515f03c67682dd5c6191cb2d16ec", size = 318906 }, { url = "https://files.pythonhosted.org/packages/ba/99/6794142b90b853a9155316c8f470d2e4821fe6f086b03e372aca848227dd/contourpy-1.3.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:efa874e87e4a647fd2e4f514d5e91c7d493697127beb95e77d2f7561f6905bd9", size = 323622 }, { url = "https://files.pythonhosted.org/packages/3c/0f/37d2c84a900cd8eb54e105f4fa9aebd275e14e266736778bb5dccbf3bbbb/contourpy-1.3.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1bf98051f1045b15c87868dbaea84f92408337d4f81d0e449ee41920ea121d3b", size = 1266699 }, { url = "https://files.pythonhosted.org/packages/3a/8a/deb5e11dc7d9cc8f0f9c8b29d4f062203f3af230ba83c30a6b161a6effc9/contourpy-1.3.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:61332c87493b00091423e747ea78200659dc09bdf7fd69edd5e98cef5d3e9a8d", size = 1326395 }, { url = "https://files.pythonhosted.org/packages/1a/35/7e267ae7c13aaf12322ccc493531f1e7f2eb8fba2927b9d7a05ff615df7a/contourpy-1.3.1-cp312-cp312-win32.whl", hash = "sha256:e914a8cb05ce5c809dd0fe350cfbb4e881bde5e2a38dc04e3afe1b3e58bd158e", size = 175354 }, { url = "https://files.pythonhosted.org/packages/a1/35/c2de8823211d07e8a79ab018ef03960716c5dff6f4d5bff5af87fd682992/contourpy-1.3.1-cp312-cp312-win_amd64.whl", hash = "sha256:08d9d449a61cf53033612cb368f3a1b26cd7835d9b8cd326647efe43bca7568d", size = 220971 }, { url = "https://files.pythonhosted.org/packages/9a/e7/de62050dce687c5e96f946a93546910bc67e483fe05324439e329ff36105/contourpy-1.3.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a761d9ccfc5e2ecd1bf05534eda382aa14c3e4f9205ba5b1684ecfe400716ef2", size = 271548 }, { url = "https://files.pythonhosted.org/packages/78/4d/c2a09ae014ae984c6bdd29c11e74d3121b25eaa117eca0bb76340efd7e1c/contourpy-1.3.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:523a8ee12edfa36f6d2a49407f705a6ef4c5098de4f498619787e272de93f2d5", size = 255576 }, { url = "https://files.pythonhosted.org/packages/ab/8a/915380ee96a5638bda80cd061ccb8e666bfdccea38d5741cb69e6dbd61fc/contourpy-1.3.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ece6df05e2c41bd46776fbc712e0996f7c94e0d0543af1656956d150c4ca7c81", size = 306635 }, { url = "https://files.pythonhosted.org/packages/29/5c/c83ce09375428298acd4e6582aeb68b1e0d1447f877fa993d9bf6cd3b0a0/contourpy-1.3.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:573abb30e0e05bf31ed067d2f82500ecfdaec15627a59d63ea2d95714790f5c2", size = 345925 }, { url = "https://files.pythonhosted.org/packages/29/63/5b52f4a15e80c66c8078a641a3bfacd6e07106835682454647aca1afc852/contourpy-1.3.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9fa36448e6a3a1a9a2ba23c02012c43ed88905ec80163f2ffe2421c7192a5d7", size = 318000 }, { url = "https://files.pythonhosted.org/packages/9a/e2/30ca086c692691129849198659bf0556d72a757fe2769eb9620a27169296/contourpy-1.3.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ea9924d28fc5586bf0b42d15f590b10c224117e74409dd7a0be3b62b74a501c", size = 322689 }, { url = "https://files.pythonhosted.org/packages/6b/77/f37812ef700f1f185d348394debf33f22d531e714cf6a35d13d68a7003c7/contourpy-1.3.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5b75aa69cb4d6f137b36f7eb2ace9280cfb60c55dc5f61c731fdf6f037f958a3", size = 1268413 }, { url = "https://files.pythonhosted.org/packages/3f/6d/ce84e79cdd128542ebeb268f84abb4b093af78e7f8ec504676673d2675bc/contourpy-1.3.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:041b640d4ec01922083645a94bb3b2e777e6b626788f4095cf21abbe266413c1", size = 1326530 }, { url = "https://files.pythonhosted.org/packages/72/22/8282f4eae20c73c89bee7a82a19c4e27af9b57bb602ecaa00713d5bdb54d/contourpy-1.3.1-cp313-cp313-win32.whl", hash = "sha256:36987a15e8ace5f58d4d5da9dca82d498c2bbb28dff6e5d04fbfcc35a9cb3a82", size = 175315 }, { url = "https://files.pythonhosted.org/packages/e3/d5/28bca491f65312b438fbf076589dcde7f6f966b196d900777f5811b9c4e2/contourpy-1.3.1-cp313-cp313-win_amd64.whl", hash = "sha256:a7895f46d47671fa7ceec40f31fae721da51ad34bdca0bee83e38870b1f47ffd", size = 220987 }, { url = "https://files.pythonhosted.org/packages/2f/24/a4b285d6adaaf9746e4700932f579f1a7b6f9681109f694cfa233ae75c4e/contourpy-1.3.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:9ddeb796389dadcd884c7eb07bd14ef12408aaae358f0e2ae24114d797eede30", size = 285001 }, { url = "https://files.pythonhosted.org/packages/48/1d/fb49a401b5ca4f06ccf467cd6c4f1fd65767e63c21322b29b04ec40b40b9/contourpy-1.3.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:19c1555a6801c2f084c7ddc1c6e11f02eb6a6016ca1318dd5452ba3f613a1751", size = 268553 }, { url = "https://files.pythonhosted.org/packages/79/1e/4aef9470d13fd029087388fae750dccb49a50c012a6c8d1d634295caa644/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:841ad858cff65c2c04bf93875e384ccb82b654574a6d7f30453a04f04af71342", size = 310386 }, { url = "https://files.pythonhosted.org/packages/b0/34/910dc706ed70153b60392b5305c708c9810d425bde12499c9184a1100888/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4318af1c925fb9a4fb190559ef3eec206845f63e80fb603d47f2d6d67683901c", size = 349806 }, { url = "https://files.pythonhosted.org/packages/31/3c/faee6a40d66d7f2a87f7102236bf4780c57990dd7f98e5ff29881b1b1344/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:14c102b0eab282427b662cb590f2e9340a9d91a1c297f48729431f2dcd16e14f", size = 321108 }, { url = "https://files.pythonhosted.org/packages/17/69/390dc9b20dd4bb20585651d7316cc3054b7d4a7b4f8b710b2b698e08968d/contourpy-1.3.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:05e806338bfeaa006acbdeba0ad681a10be63b26e1b17317bfac3c5d98f36cda", size = 327291 }, { url = "https://files.pythonhosted.org/packages/ef/74/7030b67c4e941fe1e5424a3d988080e83568030ce0355f7c9fc556455b01/contourpy-1.3.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:4d76d5993a34ef3df5181ba3c92fabb93f1eaa5729504fb03423fcd9f3177242", size = 1263752 }, { url = "https://files.pythonhosted.org/packages/f0/ed/92d86f183a8615f13f6b9cbfc5d4298a509d6ce433432e21da838b4b63f4/contourpy-1.3.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:89785bb2a1980c1bd87f0cb1517a71cde374776a5f150936b82580ae6ead44a1", size = 1318403 }, { url = "https://files.pythonhosted.org/packages/b3/0e/c8e4950c77dcfc897c71d61e56690a0a9df39543d2164040301b5df8e67b/contourpy-1.3.1-cp313-cp313t-win32.whl", hash = "sha256:8eb96e79b9f3dcadbad2a3891672f81cdcab7f95b27f28f1c67d75f045b6b4f1", size = 185117 }, { url = "https://files.pythonhosted.org/packages/c1/31/1ae946f11dfbd229222e6d6ad8e7bd1891d3d48bde5fbf7a0beb9491f8e3/contourpy-1.3.1-cp313-cp313t-win_amd64.whl", hash = "sha256:287ccc248c9e0d0566934e7d606201abd74761b5703d804ff3df8935f523d546", size = 236668 }, { url = "https://files.pythonhosted.org/packages/3e/4f/e56862e64b52b55b5ddcff4090085521fc228ceb09a88390a2b103dccd1b/contourpy-1.3.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:b457d6430833cee8e4b8e9b6f07aa1c161e5e0d52e118dc102c8f9bd7dd060d6", size = 265605 }, { url = "https://files.pythonhosted.org/packages/b0/2e/52bfeeaa4541889f23d8eadc6386b442ee2470bd3cff9baa67deb2dd5c57/contourpy-1.3.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cb76c1a154b83991a3cbbf0dfeb26ec2833ad56f95540b442c73950af2013750", size = 315040 }, { url = "https://files.pythonhosted.org/packages/52/94/86bfae441707205634d80392e873295652fc313dfd93c233c52c4dc07874/contourpy-1.3.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:44a29502ca9c7b5ba389e620d44f2fbe792b1fb5734e8b931ad307071ec58c53", size = 218221 }, ] [[package]] name = "coverage" version = "7.6.9" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/5b/d2/c25011f4d036cf7e8acbbee07a8e09e9018390aee25ba085596c4b83d510/coverage-7.6.9.tar.gz", hash = "sha256:4a8d8977b0c6ef5aeadcb644da9e69ae0dcfe66ec7f368c89c72e058bd71164d", size = 801710 } wheels = [ { url = "https://files.pythonhosted.org/packages/49/f3/f830fb53bf7e4f1d5542756f61d9b740352a188f43854aab9409c8cdeb18/coverage-7.6.9-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:85d9636f72e8991a1706b2b55b06c27545448baf9f6dbf51c4004609aacd7dcb", size = 207024 }, { url = "https://files.pythonhosted.org/packages/4e/e3/ea5632a3a6efd00ab0a791adc0f3e48512097a757ee7dcbee5505f57bafa/coverage-7.6.9-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:608a7fd78c67bee8936378299a6cb9f5149bb80238c7a566fc3e6717a4e68710", size = 207463 }, { url = "https://files.pythonhosted.org/packages/e4/ae/18ff8b5580e27e62ebcc888082aa47694c2772782ea7011ddf58e377e98f/coverage-7.6.9-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:96d636c77af18b5cb664ddf12dab9b15a0cfe9c0bde715da38698c8cea748bfa", size = 235902 }, { url = "https://files.pythonhosted.org/packages/6a/52/57030a8d15ab935624d298360f0a6704885578e39f7b4f68569e59f5902d/coverage-7.6.9-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d75cded8a3cff93da9edc31446872d2997e327921d8eed86641efafd350e1df1", size = 233806 }, { url = "https://files.pythonhosted.org/packages/d0/c5/4466602195ecaced298d55af1e29abceb812addabefd5bd9116a204f7bab/coverage-7.6.9-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f7b15f589593110ae767ce997775d645b47e5cbbf54fd322f8ebea6277466cec", size = 234966 }, { url = "https://files.pythonhosted.org/packages/b0/1c/55552c3009b7bf96732e36548596ade771c87f89cf1f5a8e3975b33539b5/coverage-7.6.9-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:44349150f6811b44b25574839b39ae35291f6496eb795b7366fef3bd3cf112d3", size = 234029 }, { url = "https://files.pythonhosted.org/packages/bb/7d/da3dca6878701182ea42c51df47a47c80eaef2a76f5aa3e891dc2a8cce3f/coverage-7.6.9-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:d891c136b5b310d0e702e186d70cd16d1119ea8927347045124cb286b29297e5", size = 232494 }, { url = "https://files.pythonhosted.org/packages/28/cc/39de85ac1d5652bc34ff2bee39ae251b1fdcaae53fab4b44cab75a432bc0/coverage-7.6.9-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:db1dab894cc139f67822a92910466531de5ea6034ddfd2b11c0d4c6257168073", size = 233611 }, { url = "https://files.pythonhosted.org/packages/d1/2b/7eb011a9378911088708f121825a71134d0c15fac96972a0ae7a8f5a4049/coverage-7.6.9-cp310-cp310-win32.whl", hash = "sha256:41ff7b0da5af71a51b53f501a3bac65fb0ec311ebed1632e58fc6107f03b9198", size = 209712 }, { url = "https://files.pythonhosted.org/packages/5b/35/c3f40a2269b416db34ce1dedf682a7132c26f857e33596830fa4deebabf9/coverage-7.6.9-cp310-cp310-win_amd64.whl", hash = "sha256:35371f8438028fdccfaf3570b31d98e8d9eda8bb1d6ab9473f5a390969e98717", size = 210553 }, { url = "https://files.pythonhosted.org/packages/b1/91/b3dc2f7f38b5cca1236ab6bbb03e84046dd887707b4ec1db2baa47493b3b/coverage-7.6.9-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:932fc826442132dde42ee52cf66d941f581c685a6313feebed358411238f60f9", size = 207133 }, { url = "https://files.pythonhosted.org/packages/0d/2b/53fd6cb34d443429a92b3ec737f4953627e38b3bee2a67a3c03425ba8573/coverage-7.6.9-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:085161be5f3b30fd9b3e7b9a8c301f935c8313dcf928a07b116324abea2c1c2c", size = 207577 }, { url = "https://files.pythonhosted.org/packages/74/f2/68edb1e6826f980a124f21ea5be0d324180bf11de6fd1defcf9604f76df0/coverage-7.6.9-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ccc660a77e1c2bf24ddbce969af9447a9474790160cfb23de6be4fa88e3951c7", size = 239524 }, { url = "https://files.pythonhosted.org/packages/d3/83/8fec0ee68c2c4a5ab5f0f8527277f84ed6f2bd1310ae8a19d0c5532253ab/coverage-7.6.9-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c69e42c892c018cd3c8d90da61d845f50a8243062b19d228189b0224150018a9", size = 236925 }, { url = "https://files.pythonhosted.org/packages/8b/20/8f50e7c7ad271144afbc2c1c6ec5541a8c81773f59352f8db544cad1a0ec/coverage-7.6.9-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0824a28ec542a0be22f60c6ac36d679e0e262e5353203bea81d44ee81fe9c6d4", size = 238792 }, { url = "https://files.pythonhosted.org/packages/6f/62/4ac2e5ad9e7a5c9ec351f38947528e11541f1f00e8a0cdce56f1ba7ae301/coverage-7.6.9-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:4401ae5fc52ad8d26d2a5d8a7428b0f0c72431683f8e63e42e70606374c311a1", size = 237682 }, { url = "https://files.pythonhosted.org/packages/58/2f/9d2203f012f3b0533c73336c74134b608742be1ce475a5c72012573cfbb4/coverage-7.6.9-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:98caba4476a6c8d59ec1eb00c7dd862ba9beca34085642d46ed503cc2d440d4b", size = 236310 }, { url = "https://files.pythonhosted.org/packages/33/6d/31f6ab0b4f0f781636075f757eb02141ea1b34466d9d1526dbc586ed7078/coverage-7.6.9-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:ee5defd1733fd6ec08b168bd4f5387d5b322f45ca9e0e6c817ea6c4cd36313e3", size = 237096 }, { url = "https://files.pythonhosted.org/packages/7d/fb/e14c38adebbda9ed8b5f7f8e03340ac05d68d27b24397f8d47478927a333/coverage-7.6.9-cp311-cp311-win32.whl", hash = "sha256:f2d1ec60d6d256bdf298cb86b78dd715980828f50c46701abc3b0a2b3f8a0dc0", size = 209682 }, { url = "https://files.pythonhosted.org/packages/a4/11/a782af39b019066af83fdc0e8825faaccbe9d7b19a803ddb753114b429cc/coverage-7.6.9-cp311-cp311-win_amd64.whl", hash = "sha256:0d59fd927b1f04de57a2ba0137166d31c1a6dd9e764ad4af552912d70428c92b", size = 210542 }, { url = "https://files.pythonhosted.org/packages/60/52/b16af8989a2daf0f80a88522bd8e8eed90b5fcbdecf02a6888f3e80f6ba7/coverage-7.6.9-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:99e266ae0b5d15f1ca8d278a668df6f51cc4b854513daab5cae695ed7b721cf8", size = 207325 }, { url = "https://files.pythonhosted.org/packages/0f/79/6b7826fca8846c1216a113227b9f114ac3e6eacf168b4adcad0cb974aaca/coverage-7.6.9-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:9901d36492009a0a9b94b20e52ebfc8453bf49bb2b27bca2c9706f8b4f5a554a", size = 207563 }, { url = "https://files.pythonhosted.org/packages/a7/07/0bc73da0ccaf45d0d64ef86d33b7d7fdeef84b4c44bf6b85fb12c215c5a6/coverage-7.6.9-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:abd3e72dd5b97e3af4246cdada7738ef0e608168de952b837b8dd7e90341f015", size = 240580 }, { url = "https://files.pythonhosted.org/packages/71/8a/9761f409910961647d892454687cedbaccb99aae828f49486734a82ede6e/coverage-7.6.9-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ff74026a461eb0660366fb01c650c1d00f833a086b336bdad7ab00cc952072b3", size = 237613 }, { url = "https://files.pythonhosted.org/packages/8b/10/ee7d696a17ac94f32f2dbda1e17e730bf798ae9931aec1fc01c1944cd4de/coverage-7.6.9-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:65dad5a248823a4996724a88eb51d4b31587aa7aa428562dbe459c684e5787ae", size = 239684 }, { url = "https://files.pythonhosted.org/packages/16/60/aa1066040d3c52fff051243c2d6ccda264da72dc6d199d047624d395b2b2/coverage-7.6.9-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:22be16571504c9ccea919fcedb459d5ab20d41172056206eb2994e2ff06118a4", size = 239112 }, { url = "https://files.pythonhosted.org/packages/4e/e5/69f35344c6f932ba9028bf168d14a79fedb0dd4849b796d43c81ce75a3c9/coverage-7.6.9-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0f957943bc718b87144ecaee70762bc2bc3f1a7a53c7b861103546d3a403f0a6", size = 237428 }, { url = "https://files.pythonhosted.org/packages/32/20/adc895523c4a28f63441b8ac645abd74f9bdd499d2d175bef5b41fc7f92d/coverage-7.6.9-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:0ae1387db4aecb1f485fb70a6c0148c6cdaebb6038f1d40089b1fc84a5db556f", size = 239098 }, { url = "https://files.pythonhosted.org/packages/a9/a6/e0e74230c9bb3549ec8ffc137cfd16ea5d56e993d6bffed2218bff6187e3/coverage-7.6.9-cp312-cp312-win32.whl", hash = "sha256:1a330812d9cc7ac2182586f6d41b4d0fadf9be9049f350e0efb275c8ee8eb692", size = 209940 }, { url = "https://files.pythonhosted.org/packages/3e/18/cb5b88349d4aa2f41ec78d65f92ea32572b30b3f55bc2b70e87578b8f434/coverage-7.6.9-cp312-cp312-win_amd64.whl", hash = "sha256:b12c6b18269ca471eedd41c1b6a1065b2f7827508edb9a7ed5555e9a56dcfc97", size = 210726 }, { url = "https://files.pythonhosted.org/packages/35/26/9abab6539d2191dbda2ce8c97b67d74cbfc966cc5b25abb880ffc7c459bc/coverage-7.6.9-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:899b8cd4781c400454f2f64f7776a5d87bbd7b3e7f7bda0cb18f857bb1334664", size = 207356 }, { url = "https://files.pythonhosted.org/packages/44/da/d49f19402240c93453f606e660a6676a2a1fbbaa6870cc23207790aa9697/coverage-7.6.9-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:61f70dc68bd36810972e55bbbe83674ea073dd1dcc121040a08cdf3416c5349c", size = 207614 }, { url = "https://files.pythonhosted.org/packages/da/e6/93bb9bf85497816082ec8da6124c25efa2052bd4c887dd3b317b91990c9e/coverage-7.6.9-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8a289d23d4c46f1a82d5db4abeb40b9b5be91731ee19a379d15790e53031c014", size = 240129 }, { url = "https://files.pythonhosted.org/packages/df/65/6a824b9406fe066835c1274a9949e06f084d3e605eb1a602727a27ec2fe3/coverage-7.6.9-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:7e216d8044a356fc0337c7a2a0536d6de07888d7bcda76febcb8adc50bdbbd00", size = 237276 }, { url = "https://files.pythonhosted.org/packages/9f/79/6c7a800913a9dd23ac8c8da133ebb556771a5a3d4df36b46767b1baffd35/coverage-7.6.9-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3c026eb44f744acaa2bda7493dad903aa5bf5fc4f2554293a798d5606710055d", size = 239267 }, { url = "https://files.pythonhosted.org/packages/57/e7/834d530293fdc8a63ba8ff70033d5182022e569eceb9aec7fc716b678a39/coverage-7.6.9-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e77363e8425325384f9d49272c54045bbed2f478e9dd698dbc65dbc37860eb0a", size = 238887 }, { url = "https://files.pythonhosted.org/packages/15/05/ec9d6080852984f7163c96984444e7cd98b338fd045b191064f943ee1c08/coverage-7.6.9-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:777abfab476cf83b5177b84d7486497e034eb9eaea0d746ce0c1268c71652077", size = 236970 }, { url = "https://files.pythonhosted.org/packages/0a/d8/775937670b93156aec29f694ce37f56214ed7597e1a75b4083ee4c32121c/coverage-7.6.9-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:447af20e25fdbe16f26e84eb714ba21d98868705cb138252d28bc400381f6ffb", size = 238831 }, { url = "https://files.pythonhosted.org/packages/f4/58/88551cb7fdd5ec98cb6044e8814e38583436b14040a5ece15349c44c8f7c/coverage-7.6.9-cp313-cp313-win32.whl", hash = "sha256:d872ec5aeb086cbea771c573600d47944eea2dcba8be5f3ee649bfe3cb8dc9ba", size = 210000 }, { url = "https://files.pythonhosted.org/packages/b7/12/cfbf49b95120872785ff8d56ab1c7fe3970a65e35010c311d7dd35c5fd00/coverage-7.6.9-cp313-cp313-win_amd64.whl", hash = "sha256:fd1213c86e48dfdc5a0cc676551db467495a95a662d2396ecd58e719191446e1", size = 210753 }, { url = "https://files.pythonhosted.org/packages/7c/68/c1cb31445599b04bde21cbbaa6d21b47c5823cdfef99eae470dfce49c35a/coverage-7.6.9-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:ba9e7484d286cd5a43744e5f47b0b3fb457865baf07bafc6bee91896364e1419", size = 208091 }, { url = "https://files.pythonhosted.org/packages/11/73/84b02c6b19c4a11eb2d5b5eabe926fb26c21c080e0852f5e5a4f01165f9e/coverage-7.6.9-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:e5ea1cf0872ee455c03e5674b5bca5e3e68e159379c1af0903e89f5eba9ccc3a", size = 208369 }, { url = "https://files.pythonhosted.org/packages/de/e0/ae5d878b72ff26df2e994a5c5b1c1f6a7507d976b23beecb1ed4c85411ef/coverage-7.6.9-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2d10e07aa2b91835d6abec555ec8b2733347956991901eea6ffac295f83a30e4", size = 251089 }, { url = "https://files.pythonhosted.org/packages/ab/9c/0aaac011aef95a93ef3cb2fba3fde30bc7e68a6635199ed469b1f5ea355a/coverage-7.6.9-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:13a9e2d3ee855db3dd6ea1ba5203316a1b1fd8eaeffc37c5b54987e61e4194ae", size = 246806 }, { url = "https://files.pythonhosted.org/packages/f8/19/4d5d3ae66938a7dcb2f58cef3fa5386f838f469575b0bb568c8cc9e3a33d/coverage-7.6.9-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9c38bf15a40ccf5619fa2fe8f26106c7e8e080d7760aeccb3722664c8656b030", size = 249164 }, { url = "https://files.pythonhosted.org/packages/b3/0b/4ee8a7821f682af9ad440ae3c1e379da89a998883271f088102d7ca2473d/coverage-7.6.9-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:d5275455b3e4627c8e7154feaf7ee0743c2e7af82f6e3b561967b1cca755a0be", size = 248642 }, { url = "https://files.pythonhosted.org/packages/8a/12/36ff1d52be18a16b4700f561852e7afd8df56363a5edcfb04cf26a0e19e0/coverage-7.6.9-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:8f8770dfc6e2c6a2d4569f411015c8d751c980d17a14b0530da2d7f27ffdd88e", size = 246516 }, { url = "https://files.pythonhosted.org/packages/43/d0/8e258f6c3a527c1655602f4f576215e055ac704de2d101710a71a2affac2/coverage-7.6.9-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:8d2dfa71665a29b153a9681edb1c8d9c1ea50dfc2375fb4dac99ea7e21a0bcd9", size = 247783 }, { url = "https://files.pythonhosted.org/packages/a9/0d/1e4a48d289429d38aae3babdfcadbf35ca36bdcf3efc8f09b550a845bdb5/coverage-7.6.9-cp313-cp313t-win32.whl", hash = "sha256:5e6b86b5847a016d0fbd31ffe1001b63355ed309651851295315031ea7eb5a9b", size = 210646 }, { url = "https://files.pythonhosted.org/packages/26/74/b0729f196f328ac55e42b1e22ec2f16d8bcafe4b8158a26ec9f1cdd1d93e/coverage-7.6.9-cp313-cp313t-win_amd64.whl", hash = "sha256:97ddc94d46088304772d21b060041c97fc16bdda13c6c7f9d8fcd8d5ae0d8611", size = 211815 }, { url = "https://files.pythonhosted.org/packages/15/0e/4ac9035ee2ee08d2b703fdad2d84283ec0bad3b46eb4ad6affb150174cb6/coverage-7.6.9-pp39.pp310-none-any.whl", hash = "sha256:f3ca78518bc6bc92828cd11867b121891d75cae4ea9e908d72030609b996db1b", size = 199270 }, ] [package.optional-dependencies] toml = [ { name = "tomli", marker = "python_full_version <= '3.11'" }, ] [[package]] name = "cql2" version = "0.3.7" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/1d/0b/0011b4e45c888e1b8b9eaaec05716bb0b6f28c4110923b4654a7b8957ed3/cql2-0.3.7.tar.gz", hash = "sha256:8d70cc6005c379f22247e7f6d4afeb1455cd3d65f88c83326ac10e5aa0453a42", size = 157195 } wheels = [ { url = "https://files.pythonhosted.org/packages/61/2b/ac0073f067f66ea945f2d882f0ff6f7dc4ce549585d1f3d5b23a5482240c/cql2-0.3.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cd84c0e4da28bc72cc4f4bba882f7151d0380ec76638a2af82cc4c60825056c", size = 2695113 }, { url = "https://files.pythonhosted.org/packages/70/77/11403c043abd43b75e6e6f3e6f5afda6695c75a20d4c1fcb0f300dabd477/cql2-0.3.7-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:7715de64184fd8cdfae8bb20004787630446e481c23e565c503dbc6892331287", size = 2621541 }, { url = "https://files.pythonhosted.org/packages/ce/87/1615dbe8c34ed3d24fb263e8d29be3516ada32174f9d09e29c59ead3eb60/cql2-0.3.7-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5fd330362efc4135a128668885164f228bcc8d6e6a5e8ce80e7046e0c016ada7", size = 2898587 }, { url = "https://files.pythonhosted.org/packages/e8/ab/bbf7e7c28973a4b52d939dfecf8cab9deb5f6ff6125290c1dc4073400936/cql2-0.3.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3115a933863ef8debe4971492ba7a3cdde5b00515cf160c9d42297919efbeb6b", size = 3149230 }, { url = "https://files.pythonhosted.org/packages/5c/94/36c533877a2aeaee255af44eae03a0c6c430a830672f1fabda2ae83671c3/cql2-0.3.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:ccc94c7b3163bb2491cc474f369d5fa28fc0bf0faf20a049719e3812297e7df8", size = 2864261 }, { url = "https://files.pythonhosted.org/packages/08/4c/afd76301490ad8d5c5f51e6431aa22433c748df1c673ab8aeebc720c16c6/cql2-0.3.7-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:454b5a4473e7b41fd5d785bb6dd8d5d04fea964c0159fb6ed8fd95883788c2ee", size = 2793003 }, { url = "https://files.pythonhosted.org/packages/c2/f0/7dd698c954720b242a5654e20fc842d6f23473544f72da848ccd932b89f3/cql2-0.3.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:8dcb45ad62c06cb851ab7047846a1292cf4617cc28c473114d949c4d454a9ecb", size = 2858914 }, { url = "https://files.pythonhosted.org/packages/46/35/befddb21a5532a4ae3693d17fb3bcd29923b9d1fd857a81d54caa922c3e0/cql2-0.3.7-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:99d76ddbf05dc3c8521110763db5f4f051a6b3423f8e4f4c6139998e6e7c0fbd", size = 2882462 }, { url = "https://files.pythonhosted.org/packages/f3/0d/ad083be1087e4c977bd5c9a27d0a43bf593ea38a986f3758bec1fce740a6/cql2-0.3.7-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:122c593960d747399696ddd7eba6ff3112d54fad49d8a271e5dba2b2015fae79", size = 2925504 }, { url = "https://files.pythonhosted.org/packages/98/63/cc4db504e9c069aaa8424f41e7a87ae20e4bf69b877648332e7fa036fc87/cql2-0.3.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8f5d516b3298c6b0e52f43cf075bd663dc00f3c5ef559eb2e0e5106ce72c294d", size = 2965514 }, { url = "https://files.pythonhosted.org/packages/cc/00/f6854dff3b66ad38e8cf9e55d38fd6ed6a8fc0916a69a2cd8c8e639c1a72/cql2-0.3.7-cp310-cp310-win32.whl", hash = "sha256:d2530d0f9405686d3353f1feab6e018f5901433a0fd860cdc11087bea7b44d23", size = 2100334 }, { url = "https://files.pythonhosted.org/packages/90/cd/9f28c7436c3f9bff28830d46d2b00563fdcc6c2dc1dde50fe203941ede3f/cql2-0.3.7-cp310-cp310-win_amd64.whl", hash = "sha256:fdcee9760bad0d1accb2acceb075f7a878174fc879330dfb1dca1093fad965d7", size = 2281513 }, { url = "https://files.pythonhosted.org/packages/c1/72/8a90f9332eecc13aabfaf065d774049699ba4ed99780d037a29b402790a4/cql2-0.3.7-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:57e31ca5271e80a541e3fb7db4b02cce3aa390adbc2e215cff6ad2935f80ff70", size = 2564289 }, { url = "https://files.pythonhosted.org/packages/c9/26/2df495004633ac655bef6960d2fb20c5250bdbe3e37f45af5344d1322e5c/cql2-0.3.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:0e5800ea76cb239e97a5127246345811426d7d36589ec5ec20c522ab3a3edcc0", size = 2446368 }, { url = "https://files.pythonhosted.org/packages/26/07/d91d9dd25cc62af353d3c6e35bb14c92243788643f934263bdd1f3bf0813/cql2-0.3.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3de7e29fadda7d5bc8c24d10d807fbdfa7bc9919dadce5655e0345dc2bc25d14", size = 2694218 }, { url = "https://files.pythonhosted.org/packages/55/35/81ebef8e306b890654512d37b26acd65cfc5eadcfe60d20d01a1ae0ad045/cql2-0.3.7-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5f52197549b08db5bceb74d7220f067c75750542322c14d9496866698fb1b586", size = 2620888 }, { url = "https://files.pythonhosted.org/packages/f0/08/278ca5124c0595f0053578195e689dcda0e095fc55be9c546704c8bdb867/cql2-0.3.7-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:fcc05d42bd600af41a26fd2c7b594e1b1e7ddc19e4e7159da2b377b968e892b5", size = 2898818 }, { url = "https://files.pythonhosted.org/packages/ec/0e/8f825cfbfc26d9a4866d1863c56c3a72b81af5167530ded38954d68de06c/cql2-0.3.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:47d3730741e4663a772a2c12cdac58c573cefa4c1256dcca2a47e01179a2f2c7", size = 3148740 }, { url = "https://files.pythonhosted.org/packages/4f/c9/a6e6b5dc36e0ba0ceddcd268d799a346709d4de2e7e9569d4b4241ac4d30/cql2-0.3.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:095270d250c64f2f7ef4d41b6a9cc6db9d2cbac6fe0049b42e594cf586864785", size = 2863891 }, { url = "https://files.pythonhosted.org/packages/b3/08/81181581f8905c650a365014f3672d2bdc10cc8566940ef89c2bc9abf2cf/cql2-0.3.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4d3b27dc924bea109f51533658e886a7ce2aae60d5048519ad6df864486f2787", size = 2793346 }, { url = "https://files.pythonhosted.org/packages/43/15/59d745b752f54c11bc0a9095986315610106743973741adf4e7067f40b08/cql2-0.3.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b9c901ed0b2e53e8ea573d5ad181f63681ef05bc6c50d41ae495099a3063d8a1", size = 2858851 }, { url = "https://files.pythonhosted.org/packages/28/88/3be90b2a8d373d0f5ae456de9ee3ce13cfc3764f28479263297c6f4b5823/cql2-0.3.7-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:7d316b2b946549de59d958a58196e7e464da465df279f5ce8ebff37c5c2359ac", size = 2882954 }, { url = "https://files.pythonhosted.org/packages/a9/91/8be8b0d6d4698df6841bd59f761d3a5782e7d8f94c567ed80ce1dadc80ff/cql2-0.3.7-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:1acc3843140a4184fa2c23c252f48a7dd4019c3bf548ae188eee298af2a9e803", size = 2925149 }, { url = "https://files.pythonhosted.org/packages/b7/dc/f9859fa5fc3ea75d5b0ef0ffdfabf257ed3eb9c186edb8a18692d808f36d/cql2-0.3.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:82f04ba267f478b888dc99ffb605c194398b9cd3cc390d9aae3012f89aa5279e", size = 2965319 }, { url = "https://files.pythonhosted.org/packages/9f/1a/4056f4b32c3e0c7507ad178622f44eba3fec85d0de7dd3b875b25677e956/cql2-0.3.7-cp311-cp311-win32.whl", hash = "sha256:676d5b7651e50963fcb72c0db745ffe16bb6500e81a374f93d091adca82153a4", size = 2101242 }, { url = "https://files.pythonhosted.org/packages/13/eb/3e647ecb986126a1a38af4c8077a13bf3bc138bb8151cd6cdad0884a2c63/cql2-0.3.7-cp311-cp311-win_amd64.whl", hash = "sha256:15b2a47d0d2cb88cf1913b50cd85809cbf7716ca2f2561fe9341d34df572a87f", size = 2281785 }, { url = "https://files.pythonhosted.org/packages/ae/1e/2ab2c6c86600c169ecfc2470ee4426598d1fee24226ca2547fbb53bc41ec/cql2-0.3.7-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:f753fc9ff1f02bcdc2409efceb8445cc2ac3a39d8b2a02cbc299df9361d16099", size = 2558369 }, { url = "https://files.pythonhosted.org/packages/54/77/c93514fe1c1248c70bb7c58c45aabee305745dd1eabdd8fb052ce261bd28/cql2-0.3.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:e076909b68aa8f94bea8ba4a1fd0256a3af9063dfc931220d7c3c1c98feeee26", size = 2441559 }, { url = "https://files.pythonhosted.org/packages/2b/2d/93d8fb620e1ad72dddecbc8db67703183d3ecbdaf82d31cc44b19a1c187e/cql2-0.3.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a2bb92890661364b4fc7a35823bf95ade7a0e5fe00ae1455c2529e820bb72b21", size = 2694594 }, { url = "https://files.pythonhosted.org/packages/5a/35/7722a19e52235e4f53c0ad55b5e0cd504d71e7e72841cfe8df7b7882aaea/cql2-0.3.7-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:6d2b47b378e07696cfa021e99937c910ac8b7f404afc17c741fec9c861f49a77", size = 2620370 }, { url = "https://files.pythonhosted.org/packages/07/6a/1a34d32f2398c07b3aab27438e3d45cbcef26080df83ff0c593b639eca41/cql2-0.3.7-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f2fb1080477c445fb92f653d0f9552efe8684310b7a95573d98371400be7b04f", size = 2898508 }, { url = "https://files.pythonhosted.org/packages/41/c7/d7cb8c4a8bc1db92f8d63e40029701d680b0227f3b3a4da52fa81a9ce32d/cql2-0.3.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:938316b6bcd4482c65fd888185b1e995c9a58528ad52bce02827bed7a70f5c27", size = 3148810 }, { url = "https://files.pythonhosted.org/packages/db/14/6d5f1d5fb2ee17a3f358aee3812b21acaeff46ca00d8246f2926db9b139f/cql2-0.3.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c2a0e95771195a4fcf809bad792ea1375cae0a8800f14d7b78e012932b779e70", size = 2865582 }, { url = "https://files.pythonhosted.org/packages/94/63/ba0e443e430596d142e979e8ad93b162143a9efeedd1bcc0b7285506e4ba/cql2-0.3.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cab7481e43f57af7dd0cfd79129f00c28da1cd9953a1a6b08862d8dcf145040c", size = 2793023 }, { url = "https://files.pythonhosted.org/packages/ba/e2/0ef34e25cdbbc4001968720a0a3314a86e070524a81957a752126f1923f4/cql2-0.3.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:00469a86e6bfb27f61abe159b96e1bfda04a6d91cd6e8966f5f336bb7ee52522", size = 2859283 }, { url = "https://files.pythonhosted.org/packages/81/85/961cc9aac5806cbf45ce6057b472a1f3a4a7902ac8e5a2b529ff1930a655/cql2-0.3.7-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:7e228f3a948b08baf5140354167d06eca247b8b6cdcf2be629f7a76c29aa699b", size = 2881661 }, { url = "https://files.pythonhosted.org/packages/30/3d/de1205213bbc458690ab293023b2f0cafd45c672c16eef3251aca963b14a/cql2-0.3.7-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:ba60c016e473eb44b146128d89c5543eaeee842f7f0d502fad5c3c4514b227c7", size = 2925366 }, { url = "https://files.pythonhosted.org/packages/97/58/ced20074f25c9afa1b88cd1dfdd0789c7f915abece27856140cf21155b32/cql2-0.3.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:30d72f9ee22359c6482c1fa40390b92ae82d57f3338b670b6630660f5bab0648", size = 2965303 }, { url = "https://files.pythonhosted.org/packages/50/26/3a1448563d74d90976f76c3a28c96fcb6c1197e9018d38019ba55101c863/cql2-0.3.7-cp312-cp312-win32.whl", hash = "sha256:0353819c9d16ca86ba84bba527a7f28eb0ce97a61b34dc9fd12f6285cd82685f", size = 2101212 }, { url = "https://files.pythonhosted.org/packages/6e/e3/9185e7d5989edb4181dd94ce2700dc92bb0c33a42d07f314fa9090420fe5/cql2-0.3.7-cp312-cp312-win_amd64.whl", hash = "sha256:c3ac07b473ce5dc12bf0056904f94596dda56ae2b1670a7f55a0fd4eed0c2773", size = 2283394 }, { url = "https://files.pythonhosted.org/packages/6f/35/0accfa660b905afc70f587919330c924a6f70a51d0897c1b685889f19715/cql2-0.3.7-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:93ce3c017ba814b4cbb944f6d989e3bd1e0e39dece3ff000fd6763e37c67d64c", size = 2558023 }, { url = "https://files.pythonhosted.org/packages/01/53/bce290bdb87f9bfe07950cd72f104a9569b74be422cb32140629e0e2d4e3/cql2-0.3.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:1a7fe56629b5273f93cf6e914f4d113ac98a6fff27cee051fe12f1a2fccfa182", size = 2441820 }, { url = "https://files.pythonhosted.org/packages/b9/b6/3f59eb5ab8d4ece76d3235e5fb23eda08e9cebc3262a10547cba54510d7d/cql2-0.3.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9a3010f8e546c69ff34757a2186eb45a62edec8481b5885d8a98ce4c0b3b7038", size = 2695578 }, { url = "https://files.pythonhosted.org/packages/db/29/aff8edf1092343812cece602701b462abe4af15241a2ba3ecea1a35ac693/cql2-0.3.7-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:14512c76d3bac80fa9a91c796b957eb7367b07b39660f0fb1ed0753cafec0161", size = 2620539 }, { url = "https://files.pythonhosted.org/packages/6f/f2/8fd6330b0e855b452f28d80701a94b2b8528700d2449938153977be4355d/cql2-0.3.7-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:234200f577282f79ec2ea04103b5a59a2b3984d084ef922f98c70b7ad4abbe7a", size = 2898898 }, { url = "https://files.pythonhosted.org/packages/2e/6c/bc6a2497b48805aa1ebf3a32a3f25a6afe516761816d49988d070f324660/cql2-0.3.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f973538bcff35785ab5a29646435e11a1bc2dbdfc76b4b14d6f7db12079788df", size = 3149296 }, { url = "https://files.pythonhosted.org/packages/de/0c/9d91ab7074204e36e91e4624bd8804cdc0e9a127441ee805ee16e4eb7a7d/cql2-0.3.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1990dac368c14aae4d2ed680451e2b0c4de7d1571a138a2824a7fa6f6a037c0f", size = 2865849 }, { url = "https://files.pythonhosted.org/packages/1d/24/b335f72326676fa15bb6e298b1bf86e9d466fa2cbc074665d5c163c142b9/cql2-0.3.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5f49a85bd70c71eaf946c1af63050803aa6aae138caf78bc1dd0ef3589935d1a", size = 2793151 }, { url = "https://files.pythonhosted.org/packages/82/73/0bcc678470146d8d42d21ce8b1d7ea76a00e6a0894f585a29e38ec2ecd9a/cql2-0.3.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cff45abd97bacada6725f494bfa95fda578a90414df09437eccda5202f844fc9", size = 2859722 }, { url = "https://files.pythonhosted.org/packages/b0/ca/63b84df3f576b830ce8a31c7b54600eebad1f0eb74dae52881530ceee009/cql2-0.3.7-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:8d0aad5e9ce03c7d338c16ffff2fd050baa161f2bdb895ff8d36d77233823673", size = 2882253 }, { url = "https://files.pythonhosted.org/packages/2e/21/b2aeac23c88739844b72b95969755775edf7a85dcff0a73b847b1146f60f/cql2-0.3.7-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:2b287f21c84886b1655733d73af7542581a23b420e98fbc957880c7b9d06db1c", size = 2925877 }, { url = "https://files.pythonhosted.org/packages/64/42/523a0ac0e8b2a3e667f2f239d9083c3e7e128e56eb2b3840794912ec98ee/cql2-0.3.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:d4913311fbc9d47c752531856d580f9c55d8aa23b0af0f5394d1f5a076af41d0", size = 2965714 }, { url = "https://files.pythonhosted.org/packages/e3/e9/4a4b305f6b279332fcd8275253446c1859070e560eeb9fd210fbab088571/cql2-0.3.7-cp313-cp313-win32.whl", hash = "sha256:cc866398e80639c6c4dd342ee0b3a0eb62d6b5ece6f45cf81e4e5ad99fdb6a10", size = 2101561 }, { url = "https://files.pythonhosted.org/packages/43/64/4b85efadb3e8ecca4a85d842d349e15d2984230a4d99d6131a0a86d6f3c8/cql2-0.3.7-cp313-cp313-win_amd64.whl", hash = "sha256:4caad8ab44a33c3816fc218eeaa8576fb0e13e17ac342c0e9b3581bacaeaa961", size = 2283385 }, { url = "https://files.pythonhosted.org/packages/00/47/f4c8481628665846b63db606cc38e934fc012f141cc1651786b67ca4039d/cql2-0.3.7-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:beda52a31edb2b763753ef15f854c6a8bbfefbb53dc293186b27d33b85454f78", size = 2692671 }, { url = "https://files.pythonhosted.org/packages/ef/9e/819d776c57602a7d1d77619ee8c0d376cded0f7c03a5ae7fd228c3142a12/cql2-0.3.7-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ba05564bdc5933e3a95c4571670fd9d95f15200d5009d998bb938e607ded9731", size = 2617797 }, { url = "https://files.pythonhosted.org/packages/cf/26/7f0ac52da971edee397c82e0ae2e85d4124c6b7705f067fc69e052cf2239/cql2-0.3.7-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:289128d269959622475e9b37b6e83cb9a94274385cf3b7305fe907370d5ad306", size = 3147234 }, { url = "https://files.pythonhosted.org/packages/82/c8/966364964a40469781e75a937a949f1f4d75ae18c061dcd42b9ff56aac01/cql2-0.3.7-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:2b7865fe10f9786ac81253d705ea20dfddcd214b99837b10d8eb2ec342622a08", size = 2864452 }, { url = "https://files.pythonhosted.org/packages/91/9a/0fceddd02b79171cfe6867ea594ab0d849b1c5e857d5a04d783f40e4dde9/cql2-0.3.7-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:238b13f1c7d028395922b45f3fbae64342660d7afd45b7400fde239a9c37e771", size = 2855679 }, { url = "https://files.pythonhosted.org/packages/95/cb/8466100671c828c5d652d59e8380fb00d01e918f60cf62d074d6a1b16ab2/cql2-0.3.7-cp313-cp313t-musllinux_1_2_armv7l.whl", hash = "sha256:73a248d9d2cb7668d396d188471b8c65b261df195cc768fb17e75181744f18fe", size = 2880686 }, { url = "https://files.pythonhosted.org/packages/b3/63/59ba2e3415c80561ca9f9f2637cb40f40279ef18efdf30d01511e480937f/cql2-0.3.7-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:ba558fd2433d4dd752d8c4456ff2e1c05b31c05441ab88258c2eda8114ee59ed", size = 2923188 }, { url = "https://files.pythonhosted.org/packages/ae/0d/2bc0a15c8acce5cc07add8c527217b3005fab982fab24931c54a52a530ec/cql2-0.3.7-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:3810ecdfdba44b5f605021ef8a70ee12a42faa4adbe813f2ff23a23f8a6bf0c6", size = 2964431 }, { url = "https://files.pythonhosted.org/packages/9a/34/64842f6951884f122959370b65e8aca775f5ff9bcede3da1afdd261fd286/cql2-0.3.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b9b0279f2afd2d367d137b8c92066784b3e1d73220761f3337c76d831dec4d5b", size = 2695091 }, { url = "https://files.pythonhosted.org/packages/5f/3d/b0f25747d0926b0387c7273e9d352b514663826be4ddebbba5f53441189a/cql2-0.3.7-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:f5d8a0ad3060f5ade9ce5bb9a13d3a5788a6f389bb381bf96d941999fca2c648", size = 2622989 }, { url = "https://files.pythonhosted.org/packages/b1/66/7be329b3e7bc40ab240f9faefe718ed8f585c4baf4dad63f24b0b559d012/cql2-0.3.7-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:618ceb1013c48e2ddb9732c567ec694d3b29e11294cdcec6250488821a0a5914", size = 2899763 }, { url = "https://files.pythonhosted.org/packages/b2/ec/1feead6f49004f5de1bb16ca10e750f2e9ddea9d74b7232fa79e0fc1eec7/cql2-0.3.7-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:34c5cc694bd61019a23daf2bd0b03df5eaa1a804f94807b222dce22c2082ba13", size = 3148105 }, { url = "https://files.pythonhosted.org/packages/8b/e2/3b3ad325d483164ded2c49f0302cc70e68fb73b53248ed6fe9a6e0cfc51a/cql2-0.3.7-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:dd9946d958b7e8ec246fabece2a97fa8ada7784660dd9c6b665aef34c1f38488", size = 2864037 }, { url = "https://files.pythonhosted.org/packages/2a/08/727439b497544523c7a407395d9126c7886ddf3685190c08c8b39d80fe29/cql2-0.3.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:09e159cb0a42e34d4698b48b67d78c0eacacf7c63c4d016ae96eb72c8127dd15", size = 2793142 }, { url = "https://files.pythonhosted.org/packages/d4/a6/6d75530d282b107e87654a8210ee0e786495bc2f957dc9316d06cd967324/cql2-0.3.7-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:9cfe74c2d105dd5721e7993c5c563cded497ed2281808ed3b3c3ac3564a16041", size = 2858775 }, { url = "https://files.pythonhosted.org/packages/8d/76/03cb2e572a699c4ae4172f373e4ececdc2f3de8d47999716543c66bd70d4/cql2-0.3.7-pp310-pypy310_pp73-musllinux_1_2_armv7l.whl", hash = "sha256:f1f1270721331271a1f717f6494718e2f18856efedaa326bc867313b4ceaf450", size = 2883039 }, { url = "https://files.pythonhosted.org/packages/a9/1a/f5e5b237dcee2d09a86a3affcb53ee3aa0cb0cffd8eeb2e725076d8ae0d2/cql2-0.3.7-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:7c93856e47462ee26893ae692621bf833c02895a7f4ae6d99e53caf90968b025", size = 2925046 }, { url = "https://files.pythonhosted.org/packages/12/75/cc9611a1cf2644317ba2259764039b495e1a205192506b40a45760b05ab5/cql2-0.3.7-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:3d8232bdc5601a835b4e9f1e204ffe71622c98ec8ca6e18646a1f9b7cc07e750", size = 2965217 }, { url = "https://files.pythonhosted.org/packages/f8/65/5995533aa6581981780e45de61f403c99711226b9573c46c1e6971a227ce/cql2-0.3.7-pp311-pypy311_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f519e569ec4b744b8dfbe9d8ada7106e7b18d94a0966457d729275f0e2a1f234", size = 2695118 }, { url = "https://files.pythonhosted.org/packages/ff/00/032e10ae05a96d84070714b2785c4eae3f6c25132785059a18ad55b1884b/cql2-0.3.7-pp311-pypy311_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:9a35030b735fc943bbb6f5fdb556b691c6e796aa6785d2cb8cf0d1081fd8a33b", size = 2622879 }, { url = "https://files.pythonhosted.org/packages/2b/ab/05f77a3884bfa948b9015c49f7ce693dbe9d4e2b4685bfafde6a75a5b55d/cql2-0.3.7-pp311-pypy311_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:073fbb201082aac7cc54f8acfd5495feab142c67895067ee60cb495a9d956d70", size = 2900048 }, { url = "https://files.pythonhosted.org/packages/c8/44/eb2d78228e029d27ba8afe4fc3b1721a6f54003f04eeb0399a06a059ff26/cql2-0.3.7-pp311-pypy311_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0be7a2958a4949930805fd0cdbec2674cab1d24a195406f2c4fb6c44fa33f0e4", size = 3148251 }, { url = "https://files.pythonhosted.org/packages/33/d6/0c9e5050ce0e002cc6b92ec230b3a875caa55a4d8473d70157f8a705f6e6/cql2-0.3.7-pp311-pypy311_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3073c43c04d6cf5f108fd2837dcc995ceef7aea019235ed1945e6c6950957a61", size = 2863973 }, { url = "https://files.pythonhosted.org/packages/a6/a3/566f93f7225f22ca2b71193eba0c23c810b0cedc9376934d23d678e4ccfc/cql2-0.3.7-pp311-pypy311_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5c345908faaa75d4b9e783d8370a4c36cbd2c8132efb62e5d83e5b8aa12308a3", size = 2793272 }, { url = "https://files.pythonhosted.org/packages/35/8c/0962335d8d1021b724196145e2a51cca490a768a5701147b06544cfaa03b/cql2-0.3.7-pp311-pypy311_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:4df0e1864d72bc5ecdd57db610c7ce5bded9109e8d14752268ec46f68a99ddc4", size = 2858862 }, { url = "https://files.pythonhosted.org/packages/8d/85/ca81cfc712a461d5ba8ee2939014fd9f5901fdb42ef55178924b845429a1/cql2-0.3.7-pp311-pypy311_pp73-musllinux_1_2_armv7l.whl", hash = "sha256:690f5832817633e564922ecc667f71bbf0b30060ea45e1a559b40c4a8d33c9be", size = 2883587 }, { url = "https://files.pythonhosted.org/packages/c5/f8/ca76817f8183b11a9e3bdc8c931b94c56a31eafca5ab2a25e30b3e79630c/cql2-0.3.7-pp311-pypy311_pp73-musllinux_1_2_i686.whl", hash = "sha256:1bdc1f924a1dd3011f22d82b66b030664fd8a88c65fa3e2b1992245a0ebdf97b", size = 2925333 }, { url = "https://files.pythonhosted.org/packages/93/76/7275e9fb58e58b76b13097582e4b488ba0639d59c6bad1f9b5657852cc42/cql2-0.3.7-pp311-pypy311_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:2c344ce7644f3a7a328b57d4133986ccbce05336c11eb8de50d935b5d0d9527e", size = 2965142 }, ] [[package]] name = "cycler" version = "0.12.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/a9/95/a3dbbb5028f35eafb79008e7522a75244477d2838f38cbb722248dabc2a8/cycler-0.12.1.tar.gz", hash = "sha256:88bb128f02ba341da8ef447245a9e138fae777f6a23943da4540077d3601eb1c", size = 7615 } wheels = [ { url = "https://files.pythonhosted.org/packages/e7/05/c19819d5e3d95294a6f5947fb9b9629efb316b96de511b418c53d245aae6/cycler-0.12.1-py3-none-any.whl", hash = "sha256:85cef7cff222d8644161529808465972e51340599459b8ac3ccbac5a854e0d30", size = 8321 }, ] [[package]] name = "debugpy" version = "1.8.11" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/bc/e7/666f4c9b0e24796af50aadc28d36d21c2e01e831a934535f956e09b3650c/debugpy-1.8.11.tar.gz", hash = "sha256:6ad2688b69235c43b020e04fecccdf6a96c8943ca9c2fb340b8adc103c655e57", size = 1640124 } wheels = [ { url = "https://files.pythonhosted.org/packages/26/e6/4cf7422eaa591b4c7d6a9fde224095dac25283fdd99d90164f28714242b0/debugpy-1.8.11-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:2b26fefc4e31ff85593d68b9022e35e8925714a10ab4858fb1b577a8a48cb8cd", size = 2075100 }, { url = "https://files.pythonhosted.org/packages/83/3a/e163de1df5995d95760a4d748b02fbefb1c1bf19e915b664017c40435dbf/debugpy-1.8.11-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:61bc8b3b265e6949855300e84dc93d02d7a3a637f2aec6d382afd4ceb9120c9f", size = 3559724 }, { url = "https://files.pythonhosted.org/packages/27/6c/327e19fd1bf428a1efe1a6f97b306689c54c2cebcf871b66674ead718756/debugpy-1.8.11-cp310-cp310-win32.whl", hash = "sha256:c928bbf47f65288574b78518449edaa46c82572d340e2750889bbf8cd92f3737", size = 5178068 }, { url = "https://files.pythonhosted.org/packages/49/80/359ff8aa388f0bd4a48f0fa9ce3606396d576657ac149c6fba3cc7de8adb/debugpy-1.8.11-cp310-cp310-win_amd64.whl", hash = "sha256:8da1db4ca4f22583e834dcabdc7832e56fe16275253ee53ba66627b86e304da1", size = 5210109 }, { url = "https://files.pythonhosted.org/packages/7c/58/8e3f7ec86c1b7985a232667b5df8f3b1b1c8401028d8f4d75e025c9556cd/debugpy-1.8.11-cp311-cp311-macosx_14_0_universal2.whl", hash = "sha256:85de8474ad53ad546ff1c7c7c89230db215b9b8a02754d41cb5a76f70d0be296", size = 2173656 }, { url = "https://files.pythonhosted.org/packages/d2/03/95738a68ade2358e5a4d63a2fd8e7ed9ad911001cfabbbb33a7f81343945/debugpy-1.8.11-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ffc382e4afa4aee367bf413f55ed17bd91b191dcaf979890af239dda435f2a1", size = 3132464 }, { url = "https://files.pythonhosted.org/packages/ca/f4/18204891ab67300950615a6ad09b9de236203a9138f52b3b596fa17628ca/debugpy-1.8.11-cp311-cp311-win32.whl", hash = "sha256:40499a9979c55f72f4eb2fc38695419546b62594f8af194b879d2a18439c97a9", size = 5103637 }, { url = "https://files.pythonhosted.org/packages/3b/90/3775e301cfa573b51eb8a108285681f43f5441dc4c3916feed9f386ef861/debugpy-1.8.11-cp311-cp311-win_amd64.whl", hash = "sha256:987bce16e86efa86f747d5151c54e91b3c1e36acc03ce1ddb50f9d09d16ded0e", size = 5127862 }, { url = "https://files.pythonhosted.org/packages/c6/ae/2cf26f3111e9d94384d9c01e9d6170188b0aeda15b60a4ac6457f7c8a26f/debugpy-1.8.11-cp312-cp312-macosx_14_0_universal2.whl", hash = "sha256:84e511a7545d11683d32cdb8f809ef63fc17ea2a00455cc62d0a4dbb4ed1c308", size = 2498756 }, { url = "https://files.pythonhosted.org/packages/b0/16/ec551789d547541a46831a19aa15c147741133da188e7e6acf77510545a7/debugpy-1.8.11-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ce291a5aca4985d82875d6779f61375e959208cdf09fcec40001e65fb0a54768", size = 4219136 }, { url = "https://files.pythonhosted.org/packages/72/6f/b2b3ce673c55f882d27a6eb04a5f0c68bcad6b742ac08a86d8392ae58030/debugpy-1.8.11-cp312-cp312-win32.whl", hash = "sha256:28e45b3f827d3bf2592f3cf7ae63282e859f3259db44ed2b129093ca0ac7940b", size = 5224440 }, { url = "https://files.pythonhosted.org/packages/77/09/b1f05be802c1caef5b3efc042fc6a7cadd13d8118b072afd04a9b9e91e06/debugpy-1.8.11-cp312-cp312-win_amd64.whl", hash = "sha256:44b1b8e6253bceada11f714acf4309ffb98bfa9ac55e4fce14f9e5d4484287a1", size = 5264578 }, { url = "https://files.pythonhosted.org/packages/2e/66/931dc2479aa8fbf362dc6dcee707d895a84b0b2d7b64020135f20b8db1ed/debugpy-1.8.11-cp313-cp313-macosx_14_0_universal2.whl", hash = "sha256:8988f7163e4381b0da7696f37eec7aca19deb02e500245df68a7159739bbd0d3", size = 2483651 }, { url = "https://files.pythonhosted.org/packages/10/07/6c171d0fe6b8d237e35598b742f20ba062511b3a4631938cc78eefbbf847/debugpy-1.8.11-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6c1f6a173d1140e557347419767d2b14ac1c9cd847e0b4c5444c7f3144697e4e", size = 4213770 }, { url = "https://files.pythonhosted.org/packages/89/f1/0711da6ac250d4fe3bf7b3e9b14b4a86e82a98b7825075c07e19bab8da3d/debugpy-1.8.11-cp313-cp313-win32.whl", hash = "sha256:bb3b15e25891f38da3ca0740271e63ab9db61f41d4d8541745cfc1824252cb28", size = 5223911 }, { url = "https://files.pythonhosted.org/packages/56/98/5e27fa39050749ed460025bcd0034a0a5e78a580a14079b164cc3abdeb98/debugpy-1.8.11-cp313-cp313-win_amd64.whl", hash = "sha256:d8768edcbeb34da9e11bcb8b5c2e0958d25218df7a6e56adf415ef262cd7b6d1", size = 5264166 }, { url = "https://files.pythonhosted.org/packages/77/0a/d29a5aacf47b4383ed569b8478c02d59ee3a01ad91224d2cff8562410e43/debugpy-1.8.11-py2.py3-none-any.whl", hash = "sha256:0e22f846f4211383e6a416d04b4c13ed174d24cc5d43f5fd52e7821d0ebc8920", size = 5226874 }, ] [[package]] name = "decorator" version = "5.1.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/66/0c/8d907af351aa16b42caae42f9d6aa37b900c67308052d10fdce809f8d952/decorator-5.1.1.tar.gz", hash = "sha256:637996211036b6385ef91435e4fae22989472f9d571faba8927ba8253acbc330", size = 35016 } wheels = [ { url = "https://files.pythonhosted.org/packages/d5/50/83c593b07763e1161326b3b8c6686f0f4b0f24d5526546bee538c89837d6/decorator-5.1.1-py3-none-any.whl", hash = "sha256:b8c3f85900b9dc423225913c5aace94729fe1fa9763b38939a95226f02d37186", size = 9073 }, ] [[package]] name = "defusedxml" version = "0.7.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/0f/d5/c66da9b79e5bdb124974bfe172b4daf3c984ebd9c2a06e2b8a4dc7331c72/defusedxml-0.7.1.tar.gz", hash = "sha256:1bb3032db185915b62d7c6209c5a8792be6a32ab2fedacc84e01b52c51aa3e69", size = 75520 } wheels = [ { url = "https://files.pythonhosted.org/packages/07/6c/aa3f2f849e01cb6a001cd8554a88d4c77c5c1a31c95bdf1cf9301e6d9ef4/defusedxml-0.7.1-py2.py3-none-any.whl", hash = "sha256:a352e7e428770286cc899e2542b6cdaedb2b4953ff269a210103ec58f6198a61", size = 25604 }, ] [[package]] name = "distlib" version = "0.3.9" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/0d/dd/1bec4c5ddb504ca60fc29472f3d27e8d4da1257a854e1d96742f15c1d02d/distlib-0.3.9.tar.gz", hash = "sha256:a60f20dea646b8a33f3e7772f74dc0b2d0772d2837ee1342a00645c81edf9403", size = 613923 } wheels = [ { url = "https://files.pythonhosted.org/packages/91/a1/cf2472db20f7ce4a6be1253a81cfdf85ad9c7885ffbed7047fb72c24cf87/distlib-0.3.9-py2.py3-none-any.whl", hash = "sha256:47f8c22fd27c27e25a65601af709b38e4f0a45ea4fc2e710f65755fa8caaaf87", size = 468973 }, ] [[package]] name = "doc8" version = "1.1.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "docutils" }, { name = "pygments" }, { name = "restructuredtext-lint" }, { name = "stevedore" }, { name = "tomli", marker = "python_full_version < '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/11/28/b0a576233730b756ca1ebb422bc6199a761b826b86e93e5196dfa85331ea/doc8-1.1.2.tar.gz", hash = "sha256:1225f30144e1cc97e388dbaf7fe3e996d2897473a53a6dae268ddde21c354b98", size = 27030 } wheels = [ { url = "https://files.pythonhosted.org/packages/0c/f1/6ffd5d76578e98a8f21ae7216b88a7212c778f665f1a8f4f8ce6f9605da4/doc8-1.1.2-py3-none-any.whl", hash = "sha256:e787b3076b391b8b49400da5d018bacafe592dfc0a04f35a9be22d0122b82b59", size = 25794 }, ] [[package]] name = "docutils" version = "0.21.2" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/ae/ed/aefcc8cd0ba62a0560c3c18c33925362d46c6075480bfa4df87b28e169a9/docutils-0.21.2.tar.gz", hash = "sha256:3a6b18732edf182daa3cd12775bbb338cf5691468f91eeeb109deff6ebfa986f", size = 2204444 } wheels = [ { url = "https://files.pythonhosted.org/packages/8f/d7/9322c609343d929e75e7e5e6255e614fcc67572cfd083959cdef3b7aad79/docutils-0.21.2-py3-none-any.whl", hash = "sha256:dafca5b9e384f0e419294eb4d2ff9fa826435bf15f15b7bd45723e8ad76811b2", size = 587408 }, ] [[package]] name = "exceptiongroup" version = "1.2.2" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/09/35/2495c4ac46b980e4ca1f6ad6db102322ef3ad2410b79fdde159a4b0f3b92/exceptiongroup-1.2.2.tar.gz", hash = "sha256:47c2edf7c6738fafb49fd34290706d1a1a2f4d1c6df275526b62cbb4aa5393cc", size = 28883 } wheels = [ { url = "https://files.pythonhosted.org/packages/02/cc/b7e31358aac6ed1ef2bb790a9746ac2c69bcb3c8588b41616914eb106eaf/exceptiongroup-1.2.2-py3-none-any.whl", hash = "sha256:3111b9d131c238bec2f8f516e123e14ba243563fb135d3fe885990585aa7795b", size = 16453 }, ] [[package]] name = "executing" version = "2.1.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/8c/e3/7d45f492c2c4a0e8e0fad57d081a7c8a0286cdd86372b070cca1ec0caa1e/executing-2.1.0.tar.gz", hash = "sha256:8ea27ddd260da8150fa5a708269c4a10e76161e2496ec3e587da9e3c0fe4b9ab", size = 977485 } wheels = [ { url = "https://files.pythonhosted.org/packages/b5/fd/afcd0496feca3276f509df3dbd5dae726fcc756f1a08d9e25abe1733f962/executing-2.1.0-py2.py3-none-any.whl", hash = "sha256:8d63781349375b5ebccc3142f4b30350c0cd9c79f921cde38be2be4637e98eaf", size = 25805 }, ] [[package]] name = "fastjsonschema" version = "2.21.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/8b/50/4b769ce1ac4071a1ef6d86b1a3fb56cdc3a37615e8c5519e1af96cdac366/fastjsonschema-2.21.1.tar.gz", hash = "sha256:794d4f0a58f848961ba16af7b9c85a3e88cd360df008c59aac6fc5ae9323b5d4", size = 373939 } wheels = [ { url = "https://files.pythonhosted.org/packages/90/2b/0817a2b257fe88725c25589d89aec060581aabf668707a8d03b2e9e0cb2a/fastjsonschema-2.21.1-py3-none-any.whl", hash = "sha256:c9e5b7e908310918cf494a434eeb31384dd84a98b57a30bcb1f535015b554667", size = 23924 }, ] [[package]] name = "filelock" version = "3.16.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/9d/db/3ef5bb276dae18d6ec2124224403d1d67bccdbefc17af4cc8f553e341ab1/filelock-3.16.1.tar.gz", hash = "sha256:c249fbfcd5db47e5e2d6d62198e565475ee65e4831e2561c8e313fa7eb961435", size = 18037 } wheels = [ { url = "https://files.pythonhosted.org/packages/b9/f8/feced7779d755758a52d1f6635d990b8d98dc0a29fa568bbe0625f18fdf3/filelock-3.16.1-py3-none-any.whl", hash = "sha256:2082e5703d51fbf98ea75855d9d5527e33d8ff23099bec374a134febee6946b0", size = 16163 }, ] [[package]] name = "fonttools" version = "4.55.3" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/76/61/a300d1574dc381393424047c0396a0e213db212e28361123af9830d71a8d/fonttools-4.55.3.tar.gz", hash = "sha256:3983313c2a04d6cc1fe9251f8fc647754cf49a61dac6cb1e7249ae67afaafc45", size = 3498155 } wheels = [ { url = "https://files.pythonhosted.org/packages/bd/f3/9ac8c6705e4a0ff3c29e524df1caeee6f2987b02fb630129f21cc99a8212/fonttools-4.55.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:1dcc07934a2165ccdc3a5a608db56fb3c24b609658a5b340aee4ecf3ba679dc0", size = 2769857 }, { url = "https://files.pythonhosted.org/packages/d8/24/e8b8edd280bdb7d0ecc88a5d952b1dec2ee2335be71cc5a33c64871cdfe8/fonttools-4.55.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:f7d66c15ba875432a2d2fb419523f5d3d347f91f48f57b8b08a2dfc3c39b8a3f", size = 2299705 }, { url = "https://files.pythonhosted.org/packages/f8/9e/e1ba20bd3b71870207fd45ca3b90208a7edd8ae3b001081dc31c45adb017/fonttools-4.55.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27e4ae3592e62eba83cd2c4ccd9462dcfa603ff78e09110680a5444c6925d841", size = 4576104 }, { url = "https://files.pythonhosted.org/packages/34/db/d423bc646e6703fe3e6aea0edd22a2df47b9d188c5f7f1b49070be4d2205/fonttools-4.55.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:62d65a3022c35e404d19ca14f291c89cc5890032ff04f6c17af0bd1927299674", size = 4618282 }, { url = "https://files.pythonhosted.org/packages/75/a0/e5062ac960a385b984ba74e7b55132e7f2c65e449e8330ab0f595407a3de/fonttools-4.55.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:d342e88764fb201286d185093781bf6628bbe380a913c24adf772d901baa8276", size = 4570539 }, { url = "https://files.pythonhosted.org/packages/1f/33/0d744ff518ebe50020b63e5018b8b278efd6a930c1d2eedda7defc42153b/fonttools-4.55.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:dd68c87a2bfe37c5b33bcda0fba39b65a353876d3b9006fde3adae31f97b3ef5", size = 4742411 }, { url = "https://files.pythonhosted.org/packages/7e/6c/2f768652dba6b801f1567fc5d1829cda369bcd6e95e315a91e628f91c702/fonttools-4.55.3-cp310-cp310-win32.whl", hash = "sha256:1bc7ad24ff98846282eef1cbeac05d013c2154f977a79886bb943015d2b1b261", size = 2175132 }, { url = "https://files.pythonhosted.org/packages/19/d1/4dcd865360fb2c499749a913fe80e41c26e8ae18629d87dfffa3de27e831/fonttools-4.55.3-cp310-cp310-win_amd64.whl", hash = "sha256:b54baf65c52952db65df39fcd4820668d0ef4766c0ccdf32879b77f7c804d5c5", size = 2219430 }, { url = "https://files.pythonhosted.org/packages/4b/18/14be25545600bd100e5b74a3ac39089b7c1cb403dc513b7ca348be3381bf/fonttools-4.55.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8c4491699bad88efe95772543cd49870cf756b019ad56294f6498982408ab03e", size = 2771005 }, { url = "https://files.pythonhosted.org/packages/b2/51/2e1a5d3871cd7c2ae2054b54e92604e7d6abc3fd3656e9583c399648fe1c/fonttools-4.55.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5323a22eabddf4b24f66d26894f1229261021dacd9d29e89f7872dd8c63f0b8b", size = 2300654 }, { url = "https://files.pythonhosted.org/packages/73/1a/50109bb2703bc6f774b52ea081db21edf2a9fa4b6d7485faadf9d1b997e9/fonttools-4.55.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5480673f599ad410695ca2ddef2dfefe9df779a9a5cda89503881e503c9c7d90", size = 4877541 }, { url = "https://files.pythonhosted.org/packages/5d/52/c0b9857fa075da1b8806c5dc2d8342918a8cc2065fd14fbddb3303282693/fonttools-4.55.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:da9da6d65cd7aa6b0f806556f4985bcbf603bf0c5c590e61b43aa3e5a0f822d0", size = 4906304 }, { url = "https://files.pythonhosted.org/packages/0b/1b/55f85c7e962d295e456d5209581c919620ee3e877b95cd86245187a5050f/fonttools-4.55.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e894b5bd60d9f473bed7a8f506515549cc194de08064d829464088d23097331b", size = 4888087 }, { url = "https://files.pythonhosted.org/packages/83/13/6f2809c612ea2ac51391f92468ff861c63473601530fca96458b453212bf/fonttools-4.55.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:aee3b57643827e237ff6ec6d28d9ff9766bd8b21e08cd13bff479e13d4b14765", size = 5056958 }, { url = "https://files.pythonhosted.org/packages/c1/28/d0ea9e872fa4208b9dfca686e1dd9ca22f6c9ef33ecff2f0ebc2dbe7c29b/fonttools-4.55.3-cp311-cp311-win32.whl", hash = "sha256:eb6ca911c4c17eb51853143624d8dc87cdcdf12a711fc38bf5bd21521e79715f", size = 2173939 }, { url = "https://files.pythonhosted.org/packages/be/36/d74ae1020bc41a1dff3e6f5a99f646563beecb97e386d27abdac3ba07650/fonttools-4.55.3-cp311-cp311-win_amd64.whl", hash = "sha256:6314bf82c54c53c71805318fcf6786d986461622dd926d92a465199ff54b1b72", size = 2220363 }, { url = "https://files.pythonhosted.org/packages/89/58/fbcf5dff7e3ea844bb00c4d806ca1e339e1f2dce5529633bf4842c0c9a1f/fonttools-4.55.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:f9e736f60f4911061235603a6119e72053073a12c6d7904011df2d8fad2c0e35", size = 2765380 }, { url = "https://files.pythonhosted.org/packages/81/dd/da6e329e51919b4f421c8738f3497e2ab08c168e76aaef7b6d5351862bdf/fonttools-4.55.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7a8aa2c5e5b8b3bcb2e4538d929f6589a5c6bdb84fd16e2ed92649fb5454f11c", size = 2297940 }, { url = "https://files.pythonhosted.org/packages/00/44/f5ee560858425c99ef07e04919e736db09d6416408e5a8d3bbfb4a6623fd/fonttools-4.55.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:07f8288aacf0a38d174445fc78377a97fb0b83cfe352a90c9d9c1400571963c7", size = 4793327 }, { url = "https://files.pythonhosted.org/packages/24/da/0a001926d791c55e29ac3c52964957a20dbc1963615446b568b7432891c3/fonttools-4.55.3-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b8d5e8916c0970fbc0f6f1bece0063363bb5857a7f170121a4493e31c3db3314", size = 4865624 }, { url = "https://files.pythonhosted.org/packages/3d/d8/1edd8b13a427a9fb6418373437caa586c0caa57f260af8e0548f4d11e340/fonttools-4.55.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:ae3b6600565b2d80b7c05acb8e24d2b26ac407b27a3f2e078229721ba5698427", size = 4774166 }, { url = "https://files.pythonhosted.org/packages/9c/ec/ade054097976c3d6debc9032e09a351505a0196aa5493edf021be376f75e/fonttools-4.55.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:54153c49913f45065c8d9e6d0c101396725c5621c8aee744719300f79771d75a", size = 5001832 }, { url = "https://files.pythonhosted.org/packages/e2/cd/233f0e31ad799bb91fc78099c8b4e5ec43b85a131688519640d6bae46f6a/fonttools-4.55.3-cp312-cp312-win32.whl", hash = "sha256:827e95fdbbd3e51f8b459af5ea10ecb4e30af50221ca103bea68218e9615de07", size = 2162228 }, { url = "https://files.pythonhosted.org/packages/46/45/a498b5291f6c0d91b2394b1ed7447442a57d1c9b9cf8f439aee3c316a56e/fonttools-4.55.3-cp312-cp312-win_amd64.whl", hash = "sha256:e6e8766eeeb2de759e862004aa11a9ea3d6f6d5ec710551a88b476192b64fd54", size = 2209118 }, { url = "https://files.pythonhosted.org/packages/9c/9f/00142a19bad96eeeb1aed93f567adc19b7f2c1af6f5bc0a1c3de90b4b1ac/fonttools-4.55.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:a430178ad3e650e695167cb53242dae3477b35c95bef6525b074d87493c4bf29", size = 2752812 }, { url = "https://files.pythonhosted.org/packages/b0/20/14b8250d63ba65e162091fb0dda07730f90c303bbf5257e9ddacec7230d9/fonttools-4.55.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:529cef2ce91dc44f8e407cc567fae6e49a1786f2fefefa73a294704c415322a4", size = 2291521 }, { url = "https://files.pythonhosted.org/packages/34/47/a681cfd10245eb74f65e491a934053ec75c4af639655446558f29818e45e/fonttools-4.55.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8e75f12c82127486fac2d8bfbf5bf058202f54bf4f158d367e41647b972342ca", size = 4770980 }, { url = "https://files.pythonhosted.org/packages/d2/6c/a7066afc19db0705a12efd812e19c32cde2b9514eb714659522f2ebd60b6/fonttools-4.55.3-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:859c358ebf41db18fb72342d3080bce67c02b39e86b9fbcf1610cca14984841b", size = 4845534 }, { url = "https://files.pythonhosted.org/packages/0c/a2/3c204fbabbfd845d9bdcab9ae35279d41e9a4bf5c80a0a2708f9c5a195d6/fonttools-4.55.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:546565028e244a701f73df6d8dd6be489d01617863ec0c6a42fa25bf45d43048", size = 4753910 }, { url = "https://files.pythonhosted.org/packages/6e/8c/b4cb3592880340b89e4ef6601b531780bba73862332a6451d78fe135d6cb/fonttools-4.55.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:aca318b77f23523309eec4475d1fbbb00a6b133eb766a8bdc401faba91261abe", size = 4976411 }, { url = "https://files.pythonhosted.org/packages/fc/a8/4bf98840ff89fcc188470b59daec57322178bf36d2f4f756cd19a42a826b/fonttools-4.55.3-cp313-cp313-win32.whl", hash = "sha256:8c5ec45428edaa7022f1c949a632a6f298edc7b481312fc7dc258921e9399628", size = 2160178 }, { url = "https://files.pythonhosted.org/packages/e6/57/4cc35004605416df3225ff362f3455cf09765db00df578ae9e46d0fefd23/fonttools-4.55.3-cp313-cp313-win_amd64.whl", hash = "sha256:11e5de1ee0d95af4ae23c1a138b184b7f06e0b6abacabf1d0db41c90b03d834b", size = 2206102 }, { url = "https://files.pythonhosted.org/packages/99/3b/406d17b1f63e04a82aa621936e6e1c53a8c05458abd66300ac85ea7f9ae9/fonttools-4.55.3-py3-none-any.whl", hash = "sha256:f412604ccbeee81b091b420272841e5ec5ef68967a9790e80bffd0e30b8e2977", size = 1111638 }, ] [[package]] name = "geojson" version = "3.2.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/85/5a/33e761df75c732fcea94aaf01f993d823138581d10c91133da58bc231e63/geojson-3.2.0.tar.gz", hash = "sha256:b860baba1e8c6f71f8f5f6e3949a694daccf40820fa8f138b3f712bd85804903", size = 24574 } wheels = [ { url = "https://files.pythonhosted.org/packages/18/67/a7fa2d650602731c90e0a86279841b4586e14228199e8c09165ba4863e29/geojson-3.2.0-py3-none-any.whl", hash = "sha256:69d14156469e13c79479672eafae7b37e2dcd19bdfd77b53f74fa8fe29910b52", size = 15040 }, ] [[package]] name = "geopandas" version = "1.0.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, { name = "packaging" }, { name = "pandas" }, { name = "pyogrio" }, { name = "pyproj" }, { name = "shapely" }, ] sdist = { url = "https://files.pythonhosted.org/packages/39/08/2cf5d85356e45b10b8d066cf4c3ba1e9e3185423c48104eed87e8afd0455/geopandas-1.0.1.tar.gz", hash = "sha256:b8bf70a5534588205b7a56646e2082fb1de9a03599651b3d80c99ea4c2ca08ab", size = 317736 } wheels = [ { url = "https://files.pythonhosted.org/packages/c4/64/7d344cfcef5efddf9cf32f59af7f855828e9d74b5f862eddf5bfd9f25323/geopandas-1.0.1-py3-none-any.whl", hash = "sha256:01e147d9420cc374d26f51fc23716ac307f32b49406e4bd8462c07e82ed1d3d6", size = 323587 }, ] [[package]] name = "geoviews" version = "1.14.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "bokeh" }, { name = "cartopy" }, { name = "holoviews" }, { name = "numpy" }, { name = "packaging" }, { name = "panel" }, { name = "param" }, { name = "pyproj" }, { name = "shapely" }, { name = "xyzservices" }, ] sdist = { url = "https://files.pythonhosted.org/packages/43/5e/1df2d010ba37d628002194cd4113ff2972a93a657ffd22f98177756f0613/geoviews-1.14.0.tar.gz", hash = "sha256:3cca679a32b2c97215424a3a154e3fa343f61e2589d15e333e493bdf2f62fc6a", size = 481702 } wheels = [ { url = "https://files.pythonhosted.org/packages/a8/a1/96b1106f4a443b2c6d64daee158b5c5a186f5f938ea2af25b3254280ee1a/geoviews-1.14.0-py3-none-any.whl", hash = "sha256:45b26ae18b14f71c19f10148f38eef1fadbe7292a4f0666b291b890d3623a3a1", size = 547314 }, ] [[package]] name = "holoviews" version = "1.20.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "bokeh" }, { name = "colorcet" }, { name = "numpy" }, { name = "packaging" }, { name = "pandas" }, { name = "panel" }, { name = "param" }, { name = "pyviz-comms" }, ] sdist = { url = "https://files.pythonhosted.org/packages/9b/6d/460e318557121a3d22fa1dd60db44cac7357cf83a2890b2f781a91b5be25/holoviews-1.20.0.tar.gz", hash = "sha256:29d183045fafa3d846deda999d9687b99b8abdc1a8c06712e54afa576bb02b3e", size = 4590760 } wheels = [ { url = "https://files.pythonhosted.org/packages/56/89/8df4efa78df8b129847c8a7c0e492376cca62ab68453e5a20375a1c6291b/holoviews-1.20.0-py3-none-any.whl", hash = "sha256:dc810b6790e1dd2c90f16406b292e08db10efa377b2554e46755a130e12044c5", size = 5016222 }, ] [[package]] name = "hvplot" version = "0.11.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "bokeh" }, { name = "colorcet" }, { name = "holoviews" }, { name = "numpy" }, { name = "packaging" }, { name = "pandas" }, { name = "panel" }, { name = "param" }, ] sdist = { url = "https://files.pythonhosted.org/packages/1a/61/63b9b18e070aa810c7dd7be4d4f6e246c5ccf0d4ca9b39e0aeb04888c4c8/hvplot-0.11.2.tar.gz", hash = "sha256:b7ad1f2f1c705e47e26b22c89c11711a84f7774faaabab756b45e8d1e00a6010", size = 6980313 } wheels = [ { url = "https://files.pythonhosted.org/packages/ed/d9/466e22e60dd6b1eb09680d7155c47b58da17eda51bbaf4aad8392a45fe12/hvplot-0.11.2-py3-none-any.whl", hash = "sha256:9d576a0c2df0f1cf5041545f2a2eddcf962510162876991cae4d1779fad74556", size = 161870 }, ] [[package]] name = "identify" version = "2.6.3" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/1a/5f/05f0d167be94585d502b4adf8c7af31f1dc0b1c7e14f9938a88fdbbcf4a7/identify-2.6.3.tar.gz", hash = "sha256:62f5dae9b5fef52c84cc188514e9ea4f3f636b1d8799ab5ebc475471f9e47a02", size = 99179 } wheels = [ { url = "https://files.pythonhosted.org/packages/c9/f5/09644a3ad803fae9eca8efa17e1f2aef380c7f0b02f7ec4e8d446e51d64a/identify-2.6.3-py2.py3-none-any.whl", hash = "sha256:9edba65473324c2ea9684b1f944fe3191db3345e50b6d04571d10ed164f8d7bd", size = 99049 }, ] [[package]] name = "idna" version = "3.10" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/f1/70/7703c29685631f5a7590aa73f1f1d3fa9a380e654b86af429e0934a32f7d/idna-3.10.tar.gz", hash = "sha256:12f65c9b470abda6dc35cf8e63cc574b1c52b11df2c86030af0ac09b01b13ea9", size = 190490 } wheels = [ { url = "https://files.pythonhosted.org/packages/76/c6/c88e154df9c4e1a2a66ccf0005a88dfb2650c1dffb6f5ce603dfbd452ce3/idna-3.10-py3-none-any.whl", hash = "sha256:946d195a0d259cbba61165e88e65941f16e9b36ea6ddb97f00452bae8b1287d3", size = 70442 }, ] [[package]] name = "imagesize" version = "1.4.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/a7/84/62473fb57d61e31fef6e36d64a179c8781605429fd927b5dd608c997be31/imagesize-1.4.1.tar.gz", hash = "sha256:69150444affb9cb0d5cc5a92b3676f0b2fb7cd9ae39e947a5e11a36b4497cd4a", size = 1280026 } wheels = [ { url = "https://files.pythonhosted.org/packages/ff/62/85c4c919272577931d407be5ba5d71c20f0b616d31a0befe0ae45bb79abd/imagesize-1.4.1-py2.py3-none-any.whl", hash = "sha256:0d8d18d08f840c19d0ee7ca1fd82490fdc3729b7ac93f49870406ddde8ef8d8b", size = 8769 }, ] [[package]] name = "importlib-metadata" version = "8.5.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "zipp" }, ] sdist = { url = "https://files.pythonhosted.org/packages/cd/12/33e59336dca5be0c398a7482335911a33aa0e20776128f038019f1a95f1b/importlib_metadata-8.5.0.tar.gz", hash = "sha256:71522656f0abace1d072b9e5481a48f07c138e00f079c38c8f883823f9c26bd7", size = 55304 } wheels = [ { url = "https://files.pythonhosted.org/packages/a0/d9/a1e041c5e7caa9a05c925f4bdbdfb7f006d1f74996af53467bc394c97be7/importlib_metadata-8.5.0-py3-none-any.whl", hash = "sha256:45e54197d28b7a7f1559e60b95e7c567032b602131fbd588f1497f47880aa68b", size = 26514 }, ] [[package]] name = "iniconfig" version = "2.0.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/d7/4b/cbd8e699e64a6f16ca3a8220661b5f83792b3017d0f79807cb8708d33913/iniconfig-2.0.0.tar.gz", hash = "sha256:2d91e135bf72d31a410b17c16da610a82cb55f6b0477d1a902134b24a455b8b3", size = 4646 } wheels = [ { url = "https://files.pythonhosted.org/packages/ef/a6/62565a6e1cf69e10f5727360368e451d4b7f58beeac6173dc9db836a5b46/iniconfig-2.0.0-py3-none-any.whl", hash = "sha256:b6a85871a79d2e3b22d2d1b94ac2824226a63c6b741c88f7ae975f18b6778374", size = 5892 }, ] [[package]] name = "ipykernel" version = "6.29.5" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "appnope", marker = "sys_platform == 'darwin'" }, { name = "comm" }, { name = "debugpy" }, { name = "ipython" }, { name = "jupyter-client" }, { name = "jupyter-core" }, { name = "matplotlib-inline" }, { name = "nest-asyncio" }, { name = "packaging" }, { name = "psutil" }, { name = "pyzmq" }, { name = "tornado" }, { name = "traitlets" }, ] sdist = { url = "https://files.pythonhosted.org/packages/e9/5c/67594cb0c7055dc50814b21731c22a601101ea3b1b50a9a1b090e11f5d0f/ipykernel-6.29.5.tar.gz", hash = "sha256:f093a22c4a40f8828f8e330a9c297cb93dcab13bd9678ded6de8e5cf81c56215", size = 163367 } wheels = [ { url = "https://files.pythonhosted.org/packages/94/5c/368ae6c01c7628438358e6d337c19b05425727fbb221d2a3c4303c372f42/ipykernel-6.29.5-py3-none-any.whl", hash = "sha256:afdb66ba5aa354b09b91379bac28ae4afebbb30e8b39510c9690afb7a10421b5", size = 117173 }, ] [[package]] name = "ipython" version = "8.31.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "colorama", marker = "sys_platform == 'win32'" }, { name = "decorator" }, { name = "exceptiongroup", marker = "python_full_version < '3.11'" }, { name = "jedi" }, { name = "matplotlib-inline" }, { name = "pexpect", marker = "sys_platform != 'emscripten' and sys_platform != 'win32'" }, { name = "prompt-toolkit" }, { name = "pygments" }, { name = "stack-data" }, { name = "traitlets" }, { name = "typing-extensions", marker = "python_full_version < '3.12'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/01/35/6f90fdddff7a08b7b715fccbd2427b5212c9525cd043d26fdc45bee0708d/ipython-8.31.0.tar.gz", hash = "sha256:b6a2274606bec6166405ff05e54932ed6e5cfecaca1fc05f2cacde7bb074d70b", size = 5501011 } wheels = [ { url = "https://files.pythonhosted.org/packages/04/60/d0feb6b6d9fe4ab89fe8fe5b47cbf6cd936bfd9f1e7ffa9d0015425aeed6/ipython-8.31.0-py3-none-any.whl", hash = "sha256:46ec58f8d3d076a61d128fe517a51eb730e3aaf0c184ea8c17d16e366660c6a6", size = 821583 }, ] [[package]] name = "jedi" version = "0.19.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "parso" }, ] sdist = { url = "https://files.pythonhosted.org/packages/72/3a/79a912fbd4d8dd6fbb02bf69afd3bb72cf0c729bb3063c6f4498603db17a/jedi-0.19.2.tar.gz", hash = "sha256:4770dc3de41bde3966b02eb84fbcf557fb33cce26ad23da12c742fb50ecb11f0", size = 1231287 } wheels = [ { url = "https://files.pythonhosted.org/packages/c0/5a/9cac0c82afec3d09ccd97c8b6502d48f165f9124db81b4bcb90b4af974ee/jedi-0.19.2-py2.py3-none-any.whl", hash = "sha256:a8ef22bde8490f57fe5c7681a3c83cb58874daf72b4784de3cce5b6ef6edb5b9", size = 1572278 }, ] [[package]] name = "jinja2" version = "3.1.5" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "markupsafe" }, ] sdist = { url = "https://files.pythonhosted.org/packages/af/92/b3130cbbf5591acf9ade8708c365f3238046ac7cb8ccba6e81abccb0ccff/jinja2-3.1.5.tar.gz", hash = "sha256:8fefff8dc3034e27bb80d67c671eb8a9bc424c0ef4c0826edbff304cceff43bb", size = 244674 } wheels = [ { url = "https://files.pythonhosted.org/packages/bd/0f/2ba5fbcd631e3e88689309dbe978c5769e883e4b84ebfe7da30b43275c5a/jinja2-3.1.5-py3-none-any.whl", hash = "sha256:aba0f4dc9ed8013c424088f68a5c226f7d6097ed89b246d7749c2ec4175c6adb", size = 134596 }, ] [[package]] name = "jmespath" version = "1.0.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/00/2a/e867e8531cf3e36b41201936b7fa7ba7b5702dbef42922193f05c8976cd6/jmespath-1.0.1.tar.gz", hash = "sha256:90261b206d6defd58fdd5e85f478bf633a2901798906be2ad389150c5c60edbe", size = 25843 } wheels = [ { url = "https://files.pythonhosted.org/packages/31/b4/b9b800c45527aadd64d5b442f9b932b00648617eb5d63d2c7a6587b7cafc/jmespath-1.0.1-py3-none-any.whl", hash = "sha256:02e2e4cc71b5bcab88332eebf907519190dd9e6e82107fa7f83b1003a6252980", size = 20256 }, ] [[package]] name = "jsonschema" version = "4.23.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "attrs" }, { name = "jsonschema-specifications" }, { name = "referencing" }, { name = "rpds-py" }, ] sdist = { url = "https://files.pythonhosted.org/packages/38/2e/03362ee4034a4c917f697890ccd4aec0800ccf9ded7f511971c75451deec/jsonschema-4.23.0.tar.gz", hash = "sha256:d71497fef26351a33265337fa77ffeb82423f3ea21283cd9467bb03999266bc4", size = 325778 } wheels = [ { url = "https://files.pythonhosted.org/packages/69/4a/4f9dbeb84e8850557c02365a0eee0649abe5eb1d84af92a25731c6c0f922/jsonschema-4.23.0-py3-none-any.whl", hash = "sha256:fbadb6f8b144a8f8cf9f0b89ba94501d143e50411a1278633f56a7acf7fd5566", size = 88462 }, ] [[package]] name = "jsonschema-specifications" version = "2024.10.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "referencing" }, ] sdist = { url = "https://files.pythonhosted.org/packages/10/db/58f950c996c793472e336ff3655b13fbcf1e3b359dcf52dcf3ed3b52c352/jsonschema_specifications-2024.10.1.tar.gz", hash = "sha256:0f38b83639958ce1152d02a7f062902c41c8fd20d558b0c34344292d417ae272", size = 15561 } wheels = [ { url = "https://files.pythonhosted.org/packages/d1/0f/8910b19ac0670a0f80ce1008e5e751c4a57e14d2c4c13a482aa6079fa9d6/jsonschema_specifications-2024.10.1-py3-none-any.whl", hash = "sha256:a09a0680616357d9a0ecf05c12ad234479f549239d0f5b55f3deea67475da9bf", size = 18459 }, ] [[package]] name = "jupyter-client" version = "8.6.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "jupyter-core" }, { name = "python-dateutil" }, { name = "pyzmq" }, { name = "tornado" }, { name = "traitlets" }, ] sdist = { url = "https://files.pythonhosted.org/packages/71/22/bf9f12fdaeae18019a468b68952a60fe6dbab5d67cd2a103cac7659b41ca/jupyter_client-8.6.3.tar.gz", hash = "sha256:35b3a0947c4a6e9d589eb97d7d4cd5e90f910ee73101611f01283732bd6d9419", size = 342019 } wheels = [ { url = "https://files.pythonhosted.org/packages/11/85/b0394e0b6fcccd2c1eeefc230978a6f8cb0c5df1e4cd3e7625735a0d7d1e/jupyter_client-8.6.3-py3-none-any.whl", hash = "sha256:e8a19cc986cc45905ac3362915f410f3af85424b4c0905e94fa5f2cb08e8f23f", size = 106105 }, ] [[package]] name = "jupyter-core" version = "5.7.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "platformdirs" }, { name = "pywin32", marker = "platform_python_implementation != 'PyPy' and sys_platform == 'win32'" }, { name = "traitlets" }, ] sdist = { url = "https://files.pythonhosted.org/packages/00/11/b56381fa6c3f4cc5d2cf54a7dbf98ad9aa0b339ef7a601d6053538b079a7/jupyter_core-5.7.2.tar.gz", hash = "sha256:aa5f8d32bbf6b431ac830496da7392035d6f61b4f54872f15c4bd2a9c3f536d9", size = 87629 } wheels = [ { url = "https://files.pythonhosted.org/packages/c9/fb/108ecd1fe961941959ad0ee4e12ee7b8b1477247f30b1fdfd83ceaf017f0/jupyter_core-5.7.2-py3-none-any.whl", hash = "sha256:4f7315d2f6b4bcf2e3e7cb6e46772eba760ae459cd1f59d29eb57b0a01bd7409", size = 28965 }, ] [[package]] name = "jupyterlab-pygments" version = "0.3.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/90/51/9187be60d989df97f5f0aba133fa54e7300f17616e065d1ada7d7646b6d6/jupyterlab_pygments-0.3.0.tar.gz", hash = "sha256:721aca4d9029252b11cfa9d185e5b5af4d54772bb8072f9b7036f4170054d35d", size = 512900 } wheels = [ { url = "https://files.pythonhosted.org/packages/b1/dd/ead9d8ea85bf202d90cc513b533f9c363121c7792674f78e0d8a854b63b4/jupyterlab_pygments-0.3.0-py3-none-any.whl", hash = "sha256:841a89020971da1d8693f1a99997aefc5dc424bb1b251fd6322462a1b8842780", size = 15884 }, ] [[package]] name = "kiwisolver" version = "1.4.7" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/85/4d/2255e1c76304cbd60b48cee302b66d1dde4468dc5b1160e4b7cb43778f2a/kiwisolver-1.4.7.tar.gz", hash = "sha256:9893ff81bd7107f7b685d3017cc6583daadb4fc26e4a888350df530e41980a60", size = 97286 } wheels = [ { url = "https://files.pythonhosted.org/packages/97/14/fc943dd65268a96347472b4fbe5dcc2f6f55034516f80576cd0dd3a8930f/kiwisolver-1.4.7-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:8a9c83f75223d5e48b0bc9cb1bf2776cf01563e00ade8775ffe13b0b6e1af3a6", size = 122440 }, { url = "https://files.pythonhosted.org/packages/1e/46/e68fed66236b69dd02fcdb506218c05ac0e39745d696d22709498896875d/kiwisolver-1.4.7-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:58370b1ffbd35407444d57057b57da5d6549d2d854fa30249771775c63b5fe17", size = 65758 }, { url = "https://files.pythonhosted.org/packages/ef/fa/65de49c85838681fc9cb05de2a68067a683717321e01ddafb5b8024286f0/kiwisolver-1.4.7-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:aa0abdf853e09aff551db11fce173e2177d00786c688203f52c87ad7fcd91ef9", size = 64311 }, { url = "https://files.pythonhosted.org/packages/42/9c/cc8d90f6ef550f65443bad5872ffa68f3dee36de4974768628bea7c14979/kiwisolver-1.4.7-cp310-cp310-manylinux_2_12_i686.manylinux2010_i686.whl", hash = "sha256:8d53103597a252fb3ab8b5845af04c7a26d5e7ea8122303dd7a021176a87e8b9", size = 1637109 }, { url = "https://files.pythonhosted.org/packages/55/91/0a57ce324caf2ff5403edab71c508dd8f648094b18cfbb4c8cc0fde4a6ac/kiwisolver-1.4.7-cp310-cp310-manylinux_2_12_x86_64.manylinux2010_x86_64.whl", hash = "sha256:88f17c5ffa8e9462fb79f62746428dd57b46eb931698e42e990ad63103f35e6c", size = 1617814 }, { url = "https://files.pythonhosted.org/packages/12/5d/c36140313f2510e20207708adf36ae4919416d697ee0236b0ddfb6fd1050/kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88a9ca9c710d598fd75ee5de59d5bda2684d9db36a9f50b6125eaea3969c2599", size = 1400881 }, { url = "https://files.pythonhosted.org/packages/56/d0/786e524f9ed648324a466ca8df86298780ef2b29c25313d9a4f16992d3cf/kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f4d742cb7af1c28303a51b7a27aaee540e71bb8e24f68c736f6f2ffc82f2bf05", size = 1512972 }, { url = "https://files.pythonhosted.org/packages/67/5a/77851f2f201e6141d63c10a0708e996a1363efaf9e1609ad0441b343763b/kiwisolver-1.4.7-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:e28c7fea2196bf4c2f8d46a0415c77a1c480cc0724722f23d7410ffe9842c407", size = 1444787 }, { url = "https://files.pythonhosted.org/packages/06/5f/1f5eaab84355885e224a6fc8d73089e8713dc7e91c121f00b9a1c58a2195/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e968b84db54f9d42046cf154e02911e39c0435c9801681e3fc9ce8a3c4130278", size = 2199212 }, { url = "https://files.pythonhosted.org/packages/b5/28/9152a3bfe976a0ae21d445415defc9d1cd8614b2910b7614b30b27a47270/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:0c18ec74c0472de033e1bebb2911c3c310eef5649133dd0bedf2a169a1b269e5", size = 2346399 }, { url = "https://files.pythonhosted.org/packages/26/f6/453d1904c52ac3b400f4d5e240ac5fec25263716723e44be65f4d7149d13/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:8f0ea6da6d393d8b2e187e6a5e3fb81f5862010a40c3945e2c6d12ae45cfb2ad", size = 2308688 }, { url = "https://files.pythonhosted.org/packages/5a/9a/d4968499441b9ae187e81745e3277a8b4d7c60840a52dc9d535a7909fac3/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:f106407dda69ae456dd1227966bf445b157ccc80ba0dff3802bb63f30b74e895", size = 2445493 }, { url = "https://files.pythonhosted.org/packages/07/c9/032267192e7828520dacb64dfdb1d74f292765f179e467c1cba97687f17d/kiwisolver-1.4.7-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:84ec80df401cfee1457063732d90022f93951944b5b58975d34ab56bb150dfb3", size = 2262191 }, { url = "https://files.pythonhosted.org/packages/6c/ad/db0aedb638a58b2951da46ddaeecf204be8b4f5454df020d850c7fa8dca8/kiwisolver-1.4.7-cp310-cp310-win32.whl", hash = "sha256:71bb308552200fb2c195e35ef05de12f0c878c07fc91c270eb3d6e41698c3bcc", size = 46644 }, { url = "https://files.pythonhosted.org/packages/12/ca/d0f7b7ffbb0be1e7c2258b53554efec1fd652921f10d7d85045aff93ab61/kiwisolver-1.4.7-cp310-cp310-win_amd64.whl", hash = "sha256:44756f9fd339de0fb6ee4f8c1696cfd19b2422e0d70b4cefc1cc7f1f64045a8c", size = 55877 }, { url = "https://files.pythonhosted.org/packages/97/6c/cfcc128672f47a3e3c0d918ecb67830600078b025bfc32d858f2e2d5c6a4/kiwisolver-1.4.7-cp310-cp310-win_arm64.whl", hash = "sha256:78a42513018c41c2ffd262eb676442315cbfe3c44eed82385c2ed043bc63210a", size = 48347 }, { url = "https://files.pythonhosted.org/packages/e9/44/77429fa0a58f941d6e1c58da9efe08597d2e86bf2b2cce6626834f49d07b/kiwisolver-1.4.7-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:d2b0e12a42fb4e72d509fc994713d099cbb15ebf1103545e8a45f14da2dfca54", size = 122442 }, { url = "https://files.pythonhosted.org/packages/e5/20/8c75caed8f2462d63c7fd65e16c832b8f76cda331ac9e615e914ee80bac9/kiwisolver-1.4.7-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:2a8781ac3edc42ea4b90bc23e7d37b665d89423818e26eb6df90698aa2287c95", size = 65762 }, { url = "https://files.pythonhosted.org/packages/f4/98/fe010f15dc7230f45bc4cf367b012d651367fd203caaa992fd1f5963560e/kiwisolver-1.4.7-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:46707a10836894b559e04b0fd143e343945c97fd170d69a2d26d640b4e297935", size = 64319 }, { url = "https://files.pythonhosted.org/packages/8b/1b/b5d618f4e58c0675654c1e5051bcf42c776703edb21c02b8c74135541f60/kiwisolver-1.4.7-cp311-cp311-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ef97b8df011141c9b0f6caf23b29379f87dd13183c978a30a3c546d2c47314cb", size = 1334260 }, { url = "https://files.pythonhosted.org/packages/b8/01/946852b13057a162a8c32c4c8d2e9ed79f0bb5d86569a40c0b5fb103e373/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:3ab58c12a2cd0fc769089e6d38466c46d7f76aced0a1f54c77652446733d2d02", size = 1426589 }, { url = "https://files.pythonhosted.org/packages/70/d1/c9f96df26b459e15cf8a965304e6e6f4eb291e0f7a9460b4ad97b047561e/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:803b8e1459341c1bb56d1c5c010406d5edec8a0713a0945851290a7930679b51", size = 1541080 }, { url = "https://files.pythonhosted.org/packages/d3/73/2686990eb8b02d05f3de759d6a23a4ee7d491e659007dd4c075fede4b5d0/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f9a9e8a507420fe35992ee9ecb302dab68550dedc0da9e2880dd88071c5fb052", size = 1470049 }, { url = "https://files.pythonhosted.org/packages/a7/4b/2db7af3ed3af7c35f388d5f53c28e155cd402a55432d800c543dc6deb731/kiwisolver-1.4.7-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18077b53dc3bb490e330669a99920c5e6a496889ae8c63b58fbc57c3d7f33a18", size = 1426376 }, { url = "https://files.pythonhosted.org/packages/05/83/2857317d04ea46dc5d115f0df7e676997bbd968ced8e2bd6f7f19cfc8d7f/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6af936f79086a89b3680a280c47ea90b4df7047b5bdf3aa5c524bbedddb9e545", size = 2222231 }, { url = "https://files.pythonhosted.org/packages/0d/b5/866f86f5897cd4ab6d25d22e403404766a123f138bd6a02ecb2cdde52c18/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:3abc5b19d24af4b77d1598a585b8a719beb8569a71568b66f4ebe1fb0449460b", size = 2368634 }, { url = "https://files.pythonhosted.org/packages/c1/ee/73de8385403faba55f782a41260210528fe3273d0cddcf6d51648202d6d0/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:933d4de052939d90afbe6e9d5273ae05fb836cc86c15b686edd4b3560cc0ee36", size = 2329024 }, { url = "https://files.pythonhosted.org/packages/a1/e7/cd101d8cd2cdfaa42dc06c433df17c8303d31129c9fdd16c0ea37672af91/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:65e720d2ab2b53f1f72fb5da5fb477455905ce2c88aaa671ff0a447c2c80e8e3", size = 2468484 }, { url = "https://files.pythonhosted.org/packages/e1/72/84f09d45a10bc57a40bb58b81b99d8f22b58b2040c912b7eb97ebf625bf2/kiwisolver-1.4.7-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:3bf1ed55088f214ba6427484c59553123fdd9b218a42bbc8c6496d6754b1e523", size = 2284078 }, { url = "https://files.pythonhosted.org/packages/d2/d4/71828f32b956612dc36efd7be1788980cb1e66bfb3706e6dec9acad9b4f9/kiwisolver-1.4.7-cp311-cp311-win32.whl", hash = "sha256:4c00336b9dd5ad96d0a558fd18a8b6f711b7449acce4c157e7343ba92dd0cf3d", size = 46645 }, { url = "https://files.pythonhosted.org/packages/a1/65/d43e9a20aabcf2e798ad1aff6c143ae3a42cf506754bcb6a7ed8259c8425/kiwisolver-1.4.7-cp311-cp311-win_amd64.whl", hash = "sha256:929e294c1ac1e9f615c62a4e4313ca1823ba37326c164ec720a803287c4c499b", size = 56022 }, { url = "https://files.pythonhosted.org/packages/35/b3/9f75a2e06f1b4ca00b2b192bc2b739334127d27f1d0625627ff8479302ba/kiwisolver-1.4.7-cp311-cp311-win_arm64.whl", hash = "sha256:e33e8fbd440c917106b237ef1a2f1449dfbb9b6f6e1ce17c94cd6a1e0d438376", size = 48536 }, { url = "https://files.pythonhosted.org/packages/97/9c/0a11c714cf8b6ef91001c8212c4ef207f772dd84540104952c45c1f0a249/kiwisolver-1.4.7-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:5360cc32706dab3931f738d3079652d20982511f7c0ac5711483e6eab08efff2", size = 121808 }, { url = "https://files.pythonhosted.org/packages/f2/d8/0fe8c5f5d35878ddd135f44f2af0e4e1d379e1c7b0716f97cdcb88d4fd27/kiwisolver-1.4.7-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:942216596dc64ddb25adb215c3c783215b23626f8d84e8eff8d6d45c3f29f75a", size = 65531 }, { url = "https://files.pythonhosted.org/packages/80/c5/57fa58276dfdfa612241d640a64ca2f76adc6ffcebdbd135b4ef60095098/kiwisolver-1.4.7-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:48b571ecd8bae15702e4f22d3ff6a0f13e54d3d00cd25216d5e7f658242065ee", size = 63894 }, { url = "https://files.pythonhosted.org/packages/8b/e9/26d3edd4c4ad1c5b891d8747a4f81b1b0aba9fb9721de6600a4adc09773b/kiwisolver-1.4.7-cp312-cp312-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ad42ba922c67c5f219097b28fae965e10045ddf145d2928bfac2eb2e17673640", size = 1369296 }, { url = "https://files.pythonhosted.org/packages/b6/67/3f4850b5e6cffb75ec40577ddf54f7b82b15269cc5097ff2e968ee32ea7d/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:612a10bdae23404a72941a0fc8fa2660c6ea1217c4ce0dbcab8a8f6543ea9e7f", size = 1461450 }, { url = "https://files.pythonhosted.org/packages/52/be/86cbb9c9a315e98a8dc6b1d23c43cffd91d97d49318854f9c37b0e41cd68/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:9e838bba3a3bac0fe06d849d29772eb1afb9745a59710762e4ba3f4cb8424483", size = 1579168 }, { url = "https://files.pythonhosted.org/packages/0f/00/65061acf64bd5fd34c1f4ae53f20b43b0a017a541f242a60b135b9d1e301/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:22f499f6157236c19f4bbbd472fa55b063db77a16cd74d49afe28992dff8c258", size = 1507308 }, { url = "https://files.pythonhosted.org/packages/21/e4/c0b6746fd2eb62fe702118b3ca0cb384ce95e1261cfada58ff693aeec08a/kiwisolver-1.4.7-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:693902d433cf585133699972b6d7c42a8b9f8f826ebcaf0132ff55200afc599e", size = 1464186 }, { url = "https://files.pythonhosted.org/packages/0a/0f/529d0a9fffb4d514f2782c829b0b4b371f7f441d61aa55f1de1c614c4ef3/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:4e77f2126c3e0b0d055f44513ed349038ac180371ed9b52fe96a32aa071a5107", size = 2247877 }, { url = "https://files.pythonhosted.org/packages/d1/e1/66603ad779258843036d45adcbe1af0d1a889a07af4635f8b4ec7dccda35/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:657a05857bda581c3656bfc3b20e353c232e9193eb167766ad2dc58b56504948", size = 2404204 }, { url = "https://files.pythonhosted.org/packages/8d/61/de5fb1ca7ad1f9ab7970e340a5b833d735df24689047de6ae71ab9d8d0e7/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:4bfa75a048c056a411f9705856abfc872558e33c055d80af6a380e3658766038", size = 2352461 }, { url = "https://files.pythonhosted.org/packages/ba/d2/0edc00a852e369827f7e05fd008275f550353f1f9bcd55db9363d779fc63/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:34ea1de54beef1c104422d210c47c7d2a4999bdecf42c7b5718fbe59a4cac383", size = 2501358 }, { url = "https://files.pythonhosted.org/packages/84/15/adc15a483506aec6986c01fb7f237c3aec4d9ed4ac10b756e98a76835933/kiwisolver-1.4.7-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:90da3b5f694b85231cf93586dad5e90e2d71b9428f9aad96952c99055582f520", size = 2314119 }, { url = "https://files.pythonhosted.org/packages/36/08/3a5bb2c53c89660863a5aa1ee236912269f2af8762af04a2e11df851d7b2/kiwisolver-1.4.7-cp312-cp312-win32.whl", hash = "sha256:18e0cca3e008e17fe9b164b55735a325140a5a35faad8de92dd80265cd5eb80b", size = 46367 }, { url = "https://files.pythonhosted.org/packages/19/93/c05f0a6d825c643779fc3c70876bff1ac221f0e31e6f701f0e9578690d70/kiwisolver-1.4.7-cp312-cp312-win_amd64.whl", hash = "sha256:58cb20602b18f86f83a5c87d3ee1c766a79c0d452f8def86d925e6c60fbf7bfb", size = 55884 }, { url = "https://files.pythonhosted.org/packages/d2/f9/3828d8f21b6de4279f0667fb50a9f5215e6fe57d5ec0d61905914f5b6099/kiwisolver-1.4.7-cp312-cp312-win_arm64.whl", hash = "sha256:f5a8b53bdc0b3961f8b6125e198617c40aeed638b387913bf1ce78afb1b0be2a", size = 48528 }, { url = "https://files.pythonhosted.org/packages/c4/06/7da99b04259b0f18b557a4effd1b9c901a747f7fdd84cf834ccf520cb0b2/kiwisolver-1.4.7-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:2e6039dcbe79a8e0f044f1c39db1986a1b8071051efba3ee4d74f5b365f5226e", size = 121913 }, { url = "https://files.pythonhosted.org/packages/97/f5/b8a370d1aa593c17882af0a6f6755aaecd643640c0ed72dcfd2eafc388b9/kiwisolver-1.4.7-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:a1ecf0ac1c518487d9d23b1cd7139a6a65bc460cd101ab01f1be82ecf09794b6", size = 65627 }, { url = "https://files.pythonhosted.org/packages/2a/fc/6c0374f7503522539e2d4d1b497f5ebad3f8ed07ab51aed2af988dd0fb65/kiwisolver-1.4.7-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:7ab9ccab2b5bd5702ab0803676a580fffa2aa178c2badc5557a84cc943fcf750", size = 63888 }, { url = "https://files.pythonhosted.org/packages/bf/3e/0b7172793d0f41cae5c923492da89a2ffcd1adf764c16159ca047463ebd3/kiwisolver-1.4.7-cp313-cp313-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f816dd2277f8d63d79f9c8473a79fe54047bc0467754962840782c575522224d", size = 1369145 }, { url = "https://files.pythonhosted.org/packages/77/92/47d050d6f6aced2d634258123f2688fbfef8ded3c5baf2c79d94d91f1f58/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:cf8bcc23ceb5a1b624572a1623b9f79d2c3b337c8c455405ef231933a10da379", size = 1461448 }, { url = "https://files.pythonhosted.org/packages/9c/1b/8f80b18e20b3b294546a1adb41701e79ae21915f4175f311a90d042301cf/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:dea0bf229319828467d7fca8c7c189780aa9ff679c94539eed7532ebe33ed37c", size = 1578750 }, { url = "https://files.pythonhosted.org/packages/a4/fe/fe8e72f3be0a844f257cadd72689c0848c6d5c51bc1d60429e2d14ad776e/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c06a4c7cf15ec739ce0e5971b26c93638730090add60e183530d70848ebdd34", size = 1507175 }, { url = "https://files.pythonhosted.org/packages/39/fa/cdc0b6105d90eadc3bee525fecc9179e2b41e1ce0293caaf49cb631a6aaf/kiwisolver-1.4.7-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:913983ad2deb14e66d83c28b632fd35ba2b825031f2fa4ca29675e665dfecbe1", size = 1463963 }, { url = "https://files.pythonhosted.org/packages/6e/5c/0c03c4e542720c6177d4f408e56d1c8315899db72d46261a4e15b8b33a41/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:5337ec7809bcd0f424c6b705ecf97941c46279cf5ed92311782c7c9c2026f07f", size = 2248220 }, { url = "https://files.pythonhosted.org/packages/3d/ee/55ef86d5a574f4e767df7da3a3a7ff4954c996e12d4fbe9c408170cd7dcc/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:4c26ed10c4f6fa6ddb329a5120ba3b6db349ca192ae211e882970bfc9d91420b", size = 2404463 }, { url = "https://files.pythonhosted.org/packages/0f/6d/73ad36170b4bff4825dc588acf4f3e6319cb97cd1fb3eb04d9faa6b6f212/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:c619b101e6de2222c1fcb0531e1b17bbffbe54294bfba43ea0d411d428618c27", size = 2352842 }, { url = "https://files.pythonhosted.org/packages/0b/16/fa531ff9199d3b6473bb4d0f47416cdb08d556c03b8bc1cccf04e756b56d/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:073a36c8273647592ea332e816e75ef8da5c303236ec0167196793eb1e34657a", size = 2501635 }, { url = "https://files.pythonhosted.org/packages/78/7e/aa9422e78419db0cbe75fb86d8e72b433818f2e62e2e394992d23d23a583/kiwisolver-1.4.7-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:3ce6b2b0231bda412463e152fc18335ba32faf4e8c23a754ad50ffa70e4091ee", size = 2314556 }, { url = "https://files.pythonhosted.org/packages/a8/b2/15f7f556df0a6e5b3772a1e076a9d9f6c538ce5f05bd590eca8106508e06/kiwisolver-1.4.7-cp313-cp313-win32.whl", hash = "sha256:f4c9aee212bc89d4e13f58be11a56cc8036cabad119259d12ace14b34476fd07", size = 46364 }, { url = "https://files.pythonhosted.org/packages/0b/db/32e897e43a330eee8e4770bfd2737a9584b23e33587a0812b8e20aac38f7/kiwisolver-1.4.7-cp313-cp313-win_amd64.whl", hash = "sha256:8a3ec5aa8e38fc4c8af308917ce12c536f1c88452ce554027e55b22cbbfbff76", size = 55887 }, { url = "https://files.pythonhosted.org/packages/c8/a4/df2bdca5270ca85fd25253049eb6708d4127be2ed0e5c2650217450b59e9/kiwisolver-1.4.7-cp313-cp313-win_arm64.whl", hash = "sha256:76c8094ac20ec259471ac53e774623eb62e6e1f56cd8690c67ce6ce4fcb05650", size = 48530 }, { url = "https://files.pythonhosted.org/packages/ac/59/741b79775d67ab67ced9bb38552da688c0305c16e7ee24bba7a2be253fb7/kiwisolver-1.4.7-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:94252291e3fe68001b1dd747b4c0b3be12582839b95ad4d1b641924d68fd4643", size = 59491 }, { url = "https://files.pythonhosted.org/packages/58/cc/fb239294c29a5656e99e3527f7369b174dd9cc7c3ef2dea7cb3c54a8737b/kiwisolver-1.4.7-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:5b7dfa3b546da08a9f622bb6becdb14b3e24aaa30adba66749d38f3cc7ea9706", size = 57648 }, { url = "https://files.pythonhosted.org/packages/3b/ef/2f009ac1f7aab9f81efb2d837301d255279d618d27b6015780115ac64bdd/kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bd3de6481f4ed8b734da5df134cd5a6a64fe32124fe83dde1e5b5f29fe30b1e6", size = 84257 }, { url = "https://files.pythonhosted.org/packages/81/e1/c64f50987f85b68b1c52b464bb5bf73e71570c0f7782d626d1eb283ad620/kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a91b5f9f1205845d488c928e8570dcb62b893372f63b8b6e98b863ebd2368ff2", size = 80906 }, { url = "https://files.pythonhosted.org/packages/fd/71/1687c5c0a0be2cee39a5c9c389e546f9c6e215e46b691d00d9f646892083/kiwisolver-1.4.7-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:40fa14dbd66b8b8f470d5fc79c089a66185619d31645f9b0773b88b19f7223c4", size = 79951 }, { url = "https://files.pythonhosted.org/packages/ea/8b/d7497df4a1cae9367adf21665dd1f896c2a7aeb8769ad77b662c5e2bcce7/kiwisolver-1.4.7-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:eb542fe7933aa09d8d8f9d9097ef37532a7df6497819d16efe4359890a2f417a", size = 55715 }, ] [[package]] name = "linkify-it-py" version = "2.0.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "uc-micro-py" }, ] sdist = { url = "https://files.pythonhosted.org/packages/2a/ae/bb56c6828e4797ba5a4821eec7c43b8bf40f69cda4d4f5f8c8a2810ec96a/linkify-it-py-2.0.3.tar.gz", hash = "sha256:68cda27e162e9215c17d786649d1da0021a451bdc436ef9e0fa0ba5234b9b048", size = 27946 } wheels = [ { url = "https://files.pythonhosted.org/packages/04/1e/b832de447dee8b582cac175871d2f6c3d5077cc56d5575cadba1fd1cccfa/linkify_it_py-2.0.3-py3-none-any.whl", hash = "sha256:6bcbc417b0ac14323382aef5c5192c0075bf8a9d6b41820a2b66371eac6b6d79", size = 19820 }, ] [[package]] name = "markdown" version = "3.7" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/54/28/3af612670f82f4c056911fbbbb42760255801b3068c48de792d354ff4472/markdown-3.7.tar.gz", hash = "sha256:2ae2471477cfd02dbbf038d5d9bc226d40def84b4fe2986e49b59b6b472bbed2", size = 357086 } wheels = [ { url = "https://files.pythonhosted.org/packages/3f/08/83871f3c50fc983b88547c196d11cf8c3340e37c32d2e9d6152abe2c61f7/Markdown-3.7-py3-none-any.whl", hash = "sha256:7eb6df5690b81a1d7942992c97fad2938e956e79df20cbc6186e9c3a77b1c803", size = 106349 }, ] [[package]] name = "markdown-it-py" version = "3.0.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "mdurl" }, ] sdist = { url = "https://files.pythonhosted.org/packages/38/71/3b932df36c1a044d397a1f92d1cf91ee0a503d91e470cbd670aa66b07ed0/markdown-it-py-3.0.0.tar.gz", hash = "sha256:e3f60a94fa066dc52ec76661e37c851cb232d92f9886b15cb560aaada2df8feb", size = 74596 } wheels = [ { url = "https://files.pythonhosted.org/packages/42/d7/1ec15b46af6af88f19b8e5ffea08fa375d433c998b8a7639e76935c14f1f/markdown_it_py-3.0.0-py3-none-any.whl", hash = "sha256:355216845c60bd96232cd8d8c40e8f9765cc86f46880e43a8fd22dc1a1a8cab1", size = 87528 }, ] [[package]] name = "markupsafe" version = "3.0.2" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/b2/97/5d42485e71dfc078108a86d6de8fa46db44a1a9295e89c5d6d4a06e23a62/markupsafe-3.0.2.tar.gz", hash = "sha256:ee55d3edf80167e48ea11a923c7386f4669df67d7994554387f84e7d8b0a2bf0", size = 20537 } wheels = [ { url = "https://files.pythonhosted.org/packages/04/90/d08277ce111dd22f77149fd1a5d4653eeb3b3eaacbdfcbae5afb2600eebd/MarkupSafe-3.0.2-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7e94c425039cde14257288fd61dcfb01963e658efbc0ff54f5306b06054700f8", size = 14357 }, { url = "https://files.pythonhosted.org/packages/04/e1/6e2194baeae0bca1fae6629dc0cbbb968d4d941469cbab11a3872edff374/MarkupSafe-3.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:9e2d922824181480953426608b81967de705c3cef4d1af983af849d7bd619158", size = 12393 }, { url = "https://files.pythonhosted.org/packages/1d/69/35fa85a8ece0a437493dc61ce0bb6d459dcba482c34197e3efc829aa357f/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:38a9ef736c01fccdd6600705b09dc574584b89bea478200c5fbf112a6b0d5579", size = 21732 }, { url = "https://files.pythonhosted.org/packages/22/35/137da042dfb4720b638d2937c38a9c2df83fe32d20e8c8f3185dbfef05f7/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bbcb445fa71794da8f178f0f6d66789a28d7319071af7a496d4d507ed566270d", size = 20866 }, { url = "https://files.pythonhosted.org/packages/29/28/6d029a903727a1b62edb51863232152fd335d602def598dade38996887f0/MarkupSafe-3.0.2-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57cb5a3cf367aeb1d316576250f65edec5bb3be939e9247ae594b4bcbc317dfb", size = 20964 }, { url = "https://files.pythonhosted.org/packages/cc/cd/07438f95f83e8bc028279909d9c9bd39e24149b0d60053a97b2bc4f8aa51/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:3809ede931876f5b2ec92eef964286840ed3540dadf803dd570c3b7e13141a3b", size = 21977 }, { url = "https://files.pythonhosted.org/packages/29/01/84b57395b4cc062f9c4c55ce0df7d3108ca32397299d9df00fedd9117d3d/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:e07c3764494e3776c602c1e78e298937c3315ccc9043ead7e685b7f2b8d47b3c", size = 21366 }, { url = "https://files.pythonhosted.org/packages/bd/6e/61ebf08d8940553afff20d1fb1ba7294b6f8d279df9fd0c0db911b4bbcfd/MarkupSafe-3.0.2-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b424c77b206d63d500bcb69fa55ed8d0e6a3774056bdc4839fc9298a7edca171", size = 21091 }, { url = "https://files.pythonhosted.org/packages/11/23/ffbf53694e8c94ebd1e7e491de185124277964344733c45481f32ede2499/MarkupSafe-3.0.2-cp310-cp310-win32.whl", hash = "sha256:fcabf5ff6eea076f859677f5f0b6b5c1a51e70a376b0579e0eadef8db48c6b50", size = 15065 }, { url = "https://files.pythonhosted.org/packages/44/06/e7175d06dd6e9172d4a69a72592cb3f7a996a9c396eee29082826449bbc3/MarkupSafe-3.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:6af100e168aa82a50e186c82875a5893c5597a0c1ccdb0d8b40240b1f28b969a", size = 15514 }, { url = "https://files.pythonhosted.org/packages/6b/28/bbf83e3f76936960b850435576dd5e67034e200469571be53f69174a2dfd/MarkupSafe-3.0.2-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:9025b4018f3a1314059769c7bf15441064b2207cb3f065e6ea1e7359cb46db9d", size = 14353 }, { url = "https://files.pythonhosted.org/packages/6c/30/316d194b093cde57d448a4c3209f22e3046c5bb2fb0820b118292b334be7/MarkupSafe-3.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:93335ca3812df2f366e80509ae119189886b0f3c2b81325d39efdb84a1e2ae93", size = 12392 }, { url = "https://files.pythonhosted.org/packages/f2/96/9cdafba8445d3a53cae530aaf83c38ec64c4d5427d975c974084af5bc5d2/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2cb8438c3cbb25e220c2ab33bb226559e7afb3baec11c4f218ffa7308603c832", size = 23984 }, { url = "https://files.pythonhosted.org/packages/f1/a4/aefb044a2cd8d7334c8a47d3fb2c9f328ac48cb349468cc31c20b539305f/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a123e330ef0853c6e822384873bef7507557d8e4a082961e1defa947aa59ba84", size = 23120 }, { url = "https://files.pythonhosted.org/packages/8d/21/5e4851379f88f3fad1de30361db501300d4f07bcad047d3cb0449fc51f8c/MarkupSafe-3.0.2-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:1e084f686b92e5b83186b07e8a17fc09e38fff551f3602b249881fec658d3eca", size = 23032 }, { url = "https://files.pythonhosted.org/packages/00/7b/e92c64e079b2d0d7ddf69899c98842f3f9a60a1ae72657c89ce2655c999d/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:d8213e09c917a951de9d09ecee036d5c7d36cb6cb7dbaece4c71a60d79fb9798", size = 24057 }, { url = "https://files.pythonhosted.org/packages/f9/ac/46f960ca323037caa0a10662ef97d0a4728e890334fc156b9f9e52bcc4ca/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:5b02fb34468b6aaa40dfc198d813a641e3a63b98c2b05a16b9f80b7ec314185e", size = 23359 }, { url = "https://files.pythonhosted.org/packages/69/84/83439e16197337b8b14b6a5b9c2105fff81d42c2a7c5b58ac7b62ee2c3b1/MarkupSafe-3.0.2-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0bff5e0ae4ef2e1ae4fdf2dfd5b76c75e5c2fa4132d05fc1b0dabcd20c7e28c4", size = 23306 }, { url = "https://files.pythonhosted.org/packages/9a/34/a15aa69f01e2181ed8d2b685c0d2f6655d5cca2c4db0ddea775e631918cd/MarkupSafe-3.0.2-cp311-cp311-win32.whl", hash = "sha256:6c89876f41da747c8d3677a2b540fb32ef5715f97b66eeb0c6b66f5e3ef6f59d", size = 15094 }, { url = "https://files.pythonhosted.org/packages/da/b8/3a3bd761922d416f3dc5d00bfbed11f66b1ab89a0c2b6e887240a30b0f6b/MarkupSafe-3.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:70a87b411535ccad5ef2f1df5136506a10775d267e197e4cf531ced10537bd6b", size = 15521 }, { url = "https://files.pythonhosted.org/packages/22/09/d1f21434c97fc42f09d290cbb6350d44eb12f09cc62c9476effdb33a18aa/MarkupSafe-3.0.2-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:9778bd8ab0a994ebf6f84c2b949e65736d5575320a17ae8984a77fab08db94cf", size = 14274 }, { url = "https://files.pythonhosted.org/packages/6b/b0/18f76bba336fa5aecf79d45dcd6c806c280ec44538b3c13671d49099fdd0/MarkupSafe-3.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:846ade7b71e3536c4e56b386c2a47adf5741d2d8b94ec9dc3e92e5e1ee1e2225", size = 12348 }, { url = "https://files.pythonhosted.org/packages/e0/25/dd5c0f6ac1311e9b40f4af06c78efde0f3b5cbf02502f8ef9501294c425b/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1c99d261bd2d5f6b59325c92c73df481e05e57f19837bdca8413b9eac4bd8028", size = 24149 }, { url = "https://files.pythonhosted.org/packages/f3/f0/89e7aadfb3749d0f52234a0c8c7867877876e0a20b60e2188e9850794c17/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e17c96c14e19278594aa4841ec148115f9c7615a47382ecb6b82bd8fea3ab0c8", size = 23118 }, { url = "https://files.pythonhosted.org/packages/d5/da/f2eeb64c723f5e3777bc081da884b414671982008c47dcc1873d81f625b6/MarkupSafe-3.0.2-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:88416bd1e65dcea10bc7569faacb2c20ce071dd1f87539ca2ab364bf6231393c", size = 22993 }, { url = "https://files.pythonhosted.org/packages/da/0e/1f32af846df486dce7c227fe0f2398dc7e2e51d4a370508281f3c1c5cddc/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:2181e67807fc2fa785d0592dc2d6206c019b9502410671cc905d132a92866557", size = 24178 }, { url = "https://files.pythonhosted.org/packages/c4/f6/bb3ca0532de8086cbff5f06d137064c8410d10779c4c127e0e47d17c0b71/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:52305740fe773d09cffb16f8ed0427942901f00adedac82ec8b67752f58a1b22", size = 23319 }, { url = "https://files.pythonhosted.org/packages/a2/82/8be4c96ffee03c5b4a034e60a31294daf481e12c7c43ab8e34a1453ee48b/MarkupSafe-3.0.2-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ad10d3ded218f1039f11a75f8091880239651b52e9bb592ca27de44eed242a48", size = 23352 }, { url = "https://files.pythonhosted.org/packages/51/ae/97827349d3fcffee7e184bdf7f41cd6b88d9919c80f0263ba7acd1bbcb18/MarkupSafe-3.0.2-cp312-cp312-win32.whl", hash = "sha256:0f4ca02bea9a23221c0182836703cbf8930c5e9454bacce27e767509fa286a30", size = 15097 }, { url = "https://files.pythonhosted.org/packages/c1/80/a61f99dc3a936413c3ee4e1eecac96c0da5ed07ad56fd975f1a9da5bc630/MarkupSafe-3.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:8e06879fc22a25ca47312fbe7c8264eb0b662f6db27cb2d3bbbc74b1df4b9b87", size = 15601 }, { url = "https://files.pythonhosted.org/packages/83/0e/67eb10a7ecc77a0c2bbe2b0235765b98d164d81600746914bebada795e97/MarkupSafe-3.0.2-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:ba9527cdd4c926ed0760bc301f6728ef34d841f405abf9d4f959c478421e4efd", size = 14274 }, { url = "https://files.pythonhosted.org/packages/2b/6d/9409f3684d3335375d04e5f05744dfe7e9f120062c9857df4ab490a1031a/MarkupSafe-3.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f8b3d067f2e40fe93e1ccdd6b2e1d16c43140e76f02fb1319a05cf2b79d99430", size = 12352 }, { url = "https://files.pythonhosted.org/packages/d2/f5/6eadfcd3885ea85fe2a7c128315cc1bb7241e1987443d78c8fe712d03091/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:569511d3b58c8791ab4c2e1285575265991e6d8f8700c7be0e88f86cb0672094", size = 24122 }, { url = "https://files.pythonhosted.org/packages/0c/91/96cf928db8236f1bfab6ce15ad070dfdd02ed88261c2afafd4b43575e9e9/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:15ab75ef81add55874e7ab7055e9c397312385bd9ced94920f2802310c930396", size = 23085 }, { url = "https://files.pythonhosted.org/packages/c2/cf/c9d56af24d56ea04daae7ac0940232d31d5a8354f2b457c6d856b2057d69/MarkupSafe-3.0.2-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f3818cb119498c0678015754eba762e0d61e5b52d34c8b13d770f0719f7b1d79", size = 22978 }, { url = "https://files.pythonhosted.org/packages/2a/9f/8619835cd6a711d6272d62abb78c033bda638fdc54c4e7f4272cf1c0962b/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:cdb82a876c47801bb54a690c5ae105a46b392ac6099881cdfb9f6e95e4014c6a", size = 24208 }, { url = "https://files.pythonhosted.org/packages/f9/bf/176950a1792b2cd2102b8ffeb5133e1ed984547b75db47c25a67d3359f77/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:cabc348d87e913db6ab4aa100f01b08f481097838bdddf7c7a84b7575b7309ca", size = 23357 }, { url = "https://files.pythonhosted.org/packages/ce/4f/9a02c1d335caabe5c4efb90e1b6e8ee944aa245c1aaaab8e8a618987d816/MarkupSafe-3.0.2-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:444dcda765c8a838eaae23112db52f1efaf750daddb2d9ca300bcae1039adc5c", size = 23344 }, { url = "https://files.pythonhosted.org/packages/ee/55/c271b57db36f748f0e04a759ace9f8f759ccf22b4960c270c78a394f58be/MarkupSafe-3.0.2-cp313-cp313-win32.whl", hash = "sha256:bcf3e58998965654fdaff38e58584d8937aa3096ab5354d493c77d1fdd66d7a1", size = 15101 }, { url = "https://files.pythonhosted.org/packages/29/88/07df22d2dd4df40aba9f3e402e6dc1b8ee86297dddbad4872bd5e7b0094f/MarkupSafe-3.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:e6a2a455bd412959b57a172ce6328d2dd1f01cb2135efda2e4576e8a23fa3b0f", size = 15603 }, { url = "https://files.pythonhosted.org/packages/62/6a/8b89d24db2d32d433dffcd6a8779159da109842434f1dd2f6e71f32f738c/MarkupSafe-3.0.2-cp313-cp313t-macosx_10_13_universal2.whl", hash = "sha256:b5a6b3ada725cea8a5e634536b1b01c30bcdcd7f9c6fff4151548d5bf6b3a36c", size = 14510 }, { url = "https://files.pythonhosted.org/packages/7a/06/a10f955f70a2e5a9bf78d11a161029d278eeacbd35ef806c3fd17b13060d/MarkupSafe-3.0.2-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:a904af0a6162c73e3edcb969eeeb53a63ceeb5d8cf642fade7d39e7963a22ddb", size = 12486 }, { url = "https://files.pythonhosted.org/packages/34/cf/65d4a571869a1a9078198ca28f39fba5fbb910f952f9dbc5220afff9f5e6/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4aa4e5faecf353ed117801a068ebab7b7e09ffb6e1d5e412dc852e0da018126c", size = 25480 }, { url = "https://files.pythonhosted.org/packages/0c/e3/90e9651924c430b885468b56b3d597cabf6d72be4b24a0acd1fa0e12af67/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c0ef13eaeee5b615fb07c9a7dadb38eac06a0608b41570d8ade51c56539e509d", size = 23914 }, { url = "https://files.pythonhosted.org/packages/66/8c/6c7cf61f95d63bb866db39085150df1f2a5bd3335298f14a66b48e92659c/MarkupSafe-3.0.2-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d16a81a06776313e817c951135cf7340a3e91e8c1ff2fac444cfd75fffa04afe", size = 23796 }, { url = "https://files.pythonhosted.org/packages/bb/35/cbe9238ec3f47ac9a7c8b3df7a808e7cb50fe149dc7039f5f454b3fba218/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:6381026f158fdb7c72a168278597a5e3a5222e83ea18f543112b2662a9b699c5", size = 25473 }, { url = "https://files.pythonhosted.org/packages/e6/32/7621a4382488aa283cc05e8984a9c219abad3bca087be9ec77e89939ded9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:3d79d162e7be8f996986c064d1c7c817f6df3a77fe3d6859f6f9e7be4b8c213a", size = 24114 }, { url = "https://files.pythonhosted.org/packages/0d/80/0985960e4b89922cb5a0bac0ed39c5b96cbc1a536a99f30e8c220a996ed9/MarkupSafe-3.0.2-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:131a3c7689c85f5ad20f9f6fb1b866f402c445b220c19fe4308c0b147ccd2ad9", size = 24098 }, { url = "https://files.pythonhosted.org/packages/82/78/fedb03c7d5380df2427038ec8d973587e90561b2d90cd472ce9254cf348b/MarkupSafe-3.0.2-cp313-cp313t-win32.whl", hash = "sha256:ba8062ed2cf21c07a9e295d5b8a2a5ce678b913b45fdf68c32d95d6c1291e0b6", size = 15208 }, { url = "https://files.pythonhosted.org/packages/4f/65/6079a46068dfceaeabb5dcad6d674f5f5c61a6fa5673746f42a9f4c233b3/MarkupSafe-3.0.2-cp313-cp313t-win_amd64.whl", hash = "sha256:e444a31f8db13eb18ada366ab3cf45fd4b31e4db1236a4448f68778c1d1a5a2f", size = 15739 }, ] [[package]] name = "matplotlib" version = "3.10.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "contourpy" }, { name = "cycler" }, { name = "fonttools" }, { name = "kiwisolver" }, { name = "numpy" }, { name = "packaging" }, { name = "pillow" }, { name = "pyparsing" }, { name = "python-dateutil" }, ] sdist = { url = "https://files.pythonhosted.org/packages/68/dd/fa2e1a45fce2d09f4aea3cee169760e672c8262325aa5796c49d543dc7e6/matplotlib-3.10.0.tar.gz", hash = "sha256:b886d02a581b96704c9d1ffe55709e49b4d2d52709ccebc4be42db856e511278", size = 36686418 } wheels = [ { url = "https://files.pythonhosted.org/packages/09/ec/3cdff7b5239adaaacefcc4f77c316dfbbdf853c4ed2beec467e0fec31b9f/matplotlib-3.10.0-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:2c5829a5a1dd5a71f0e31e6e8bb449bc0ee9dbfb05ad28fc0c6b55101b3a4be6", size = 8160551 }, { url = "https://files.pythonhosted.org/packages/41/f2/b518f2c7f29895c9b167bf79f8529c63383ae94eaf49a247a4528e9a148d/matplotlib-3.10.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a2a43cbefe22d653ab34bb55d42384ed30f611bcbdea1f8d7f431011a2e1c62e", size = 8034853 }, { url = "https://files.pythonhosted.org/packages/ed/8d/45754b4affdb8f0d1a44e4e2bcd932cdf35b256b60d5eda9f455bb293ed0/matplotlib-3.10.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:607b16c8a73943df110f99ee2e940b8a1cbf9714b65307c040d422558397dac5", size = 8446724 }, { url = "https://files.pythonhosted.org/packages/09/5a/a113495110ae3e3395c72d82d7bc4802902e46dc797f6b041e572f195c56/matplotlib-3.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:01d2b19f13aeec2e759414d3bfe19ddfb16b13a1250add08d46d5ff6f9be83c6", size = 8583905 }, { url = "https://files.pythonhosted.org/packages/12/b1/8b1655b4c9ed4600c817c419f7eaaf70082630efd7556a5b2e77a8a3cdaf/matplotlib-3.10.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:5e6c6461e1fc63df30bf6f80f0b93f5b6784299f721bc28530477acd51bfc3d1", size = 9395223 }, { url = "https://files.pythonhosted.org/packages/5a/85/b9a54d64585a6b8737a78a61897450403c30f39e0bd3214270bb0b96f002/matplotlib-3.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:994c07b9d9fe8d25951e3202a68c17900679274dadfc1248738dcfa1bd40d7f3", size = 8025355 }, { url = "https://files.pythonhosted.org/packages/0c/f1/e37f6c84d252867d7ddc418fff70fc661cfd363179263b08e52e8b748e30/matplotlib-3.10.0-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:fd44fc75522f58612ec4a33958a7e5552562b7705b42ef1b4f8c0818e304a363", size = 8171677 }, { url = "https://files.pythonhosted.org/packages/c7/8b/92e9da1f28310a1f6572b5c55097b0c0ceb5e27486d85fb73b54f5a9b939/matplotlib-3.10.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:c58a9622d5dbeb668f407f35f4e6bfac34bb9ecdcc81680c04d0258169747997", size = 8044945 }, { url = "https://files.pythonhosted.org/packages/c5/cb/49e83f0fd066937a5bd3bc5c5d63093703f3637b2824df8d856e0558beef/matplotlib-3.10.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:845d96568ec873be63f25fa80e9e7fae4be854a66a7e2f0c8ccc99e94a8bd4ef", size = 8458269 }, { url = "https://files.pythonhosted.org/packages/b2/7d/2d873209536b9ee17340754118a2a17988bc18981b5b56e6715ee07373ac/matplotlib-3.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5439f4c5a3e2e8eab18e2f8c3ef929772fd5641876db71f08127eed95ab64683", size = 8599369 }, { url = "https://files.pythonhosted.org/packages/b8/03/57d6cbbe85c61fe4cbb7c94b54dce443d68c21961830833a1f34d056e5ea/matplotlib-3.10.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4673ff67a36152c48ddeaf1135e74ce0d4bce1bbf836ae40ed39c29edf7e2765", size = 9405992 }, { url = "https://files.pythonhosted.org/packages/14/cf/e382598f98be11bf51dd0bc60eca44a517f6793e3dc8b9d53634a144620c/matplotlib-3.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:7e8632baebb058555ac0cde75db885c61f1212e47723d63921879806b40bec6a", size = 8034580 }, { url = "https://files.pythonhosted.org/packages/44/c7/6b2d8cb7cc251d53c976799cacd3200add56351c175ba89ab9cbd7c1e68a/matplotlib-3.10.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4659665bc7c9b58f8c00317c3c2a299f7f258eeae5a5d56b4c64226fca2f7c59", size = 8172465 }, { url = "https://files.pythonhosted.org/packages/42/2a/6d66d0fba41e13e9ca6512a0a51170f43e7e7ed3a8dfa036324100775612/matplotlib-3.10.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:d44cb942af1693cced2604c33a9abcef6205601c445f6d0dc531d813af8a2f5a", size = 8043300 }, { url = "https://files.pythonhosted.org/packages/90/60/2a60342b27b90a16bada939a85e29589902b41073f59668b904b15ea666c/matplotlib-3.10.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a994f29e968ca002b50982b27168addfd65f0105610b6be7fa515ca4b5307c95", size = 8448936 }, { url = "https://files.pythonhosted.org/packages/a7/b2/d872fc3d753516870d520595ddd8ce4dd44fa797a240999f125f58521ad7/matplotlib-3.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9b0558bae37f154fffda54d779a592bc97ca8b4701f1c710055b609a3bac44c8", size = 8594151 }, { url = "https://files.pythonhosted.org/packages/f4/bd/b2f60cf7f57d014ab33e4f74602a2b5bdc657976db8196bbc022185f6f9c/matplotlib-3.10.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:503feb23bd8c8acc75541548a1d709c059b7184cde26314896e10a9f14df5f12", size = 9400347 }, { url = "https://files.pythonhosted.org/packages/9f/6e/264673e64001b99d747aff5a288eca82826c024437a3694e19aed1decf46/matplotlib-3.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:c40ba2eb08b3f5de88152c2333c58cee7edcead0a2a0d60fcafa116b17117adc", size = 8039144 }, { url = "https://files.pythonhosted.org/packages/72/11/1b2a094d95dcb6e6edd4a0b238177c439006c6b7a9fe8d31801237bf512f/matplotlib-3.10.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:96f2886f5c1e466f21cc41b70c5a0cd47bfa0015eb2d5793c88ebce658600e25", size = 8173073 }, { url = "https://files.pythonhosted.org/packages/0d/c4/87b6ad2723070511a411ea719f9c70fde64605423b184face4e94986de9d/matplotlib-3.10.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:12eaf48463b472c3c0f8dbacdbf906e573013df81a0ab82f0616ea4b11281908", size = 8043892 }, { url = "https://files.pythonhosted.org/packages/57/69/cb0812a136550b21361335e9ffb7d459bf6d13e03cb7b015555d5143d2d6/matplotlib-3.10.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2fbbabc82fde51391c4da5006f965e36d86d95f6ee83fb594b279564a4c5d0d2", size = 8450532 }, { url = "https://files.pythonhosted.org/packages/ea/3a/bab9deb4fb199c05e9100f94d7f1c702f78d3241e6a71b784d2b88d7bebd/matplotlib-3.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ad2e15300530c1a94c63cfa546e3b7864bd18ea2901317bae8bbf06a5ade6dcf", size = 8593905 }, { url = "https://files.pythonhosted.org/packages/8b/66/742fd242f989adc1847ddf5f445815f73ad7c46aa3440690cc889cfa423c/matplotlib-3.10.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:3547d153d70233a8496859097ef0312212e2689cdf8d7ed764441c77604095ae", size = 9399609 }, { url = "https://files.pythonhosted.org/packages/fa/d6/54cee7142cef7d910a324a7aedf335c0c147b03658b54d49ec48166f10a6/matplotlib-3.10.0-cp313-cp313-win_amd64.whl", hash = "sha256:c55b20591ced744aa04e8c3e4b7543ea4d650b6c3c4b208c08a05b4010e8b442", size = 8039076 }, { url = "https://files.pythonhosted.org/packages/43/14/815d072dc36e88753433bfd0385113405efb947e6895ff7b4d2e8614a33b/matplotlib-3.10.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:9ade1003376731a971e398cc4ef38bb83ee8caf0aee46ac6daa4b0506db1fd06", size = 8211000 }, { url = "https://files.pythonhosted.org/packages/9a/76/34e75f364194ec352678adcb540964be6f35ec7d3d8c75ebcb17e6839359/matplotlib-3.10.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:95b710fea129c76d30be72c3b38f330269363fbc6e570a5dd43580487380b5ff", size = 8087707 }, { url = "https://files.pythonhosted.org/packages/c3/2b/b6bc0dff6a72d333bc7df94a66e6ce662d224e43daa8ad8ae4eaa9a77f55/matplotlib-3.10.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5cdbaf909887373c3e094b0318d7ff230b2ad9dcb64da7ade654182872ab2593", size = 8477384 }, { url = "https://files.pythonhosted.org/packages/c2/2d/b5949fb2b76e9b47ab05e25a5f5f887c70de20d8b0cbc704a4e2ee71c786/matplotlib-3.10.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d907fddb39f923d011875452ff1eca29a9e7f21722b873e90db32e5d8ddff12e", size = 8610334 }, { url = "https://files.pythonhosted.org/packages/d6/9a/6e3c799d5134d9af44b01c787e1360bee38cf51850506ea2e743a787700b/matplotlib-3.10.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:3b427392354d10975c1d0f4ee18aa5844640b512d5311ef32efd4dd7db106ede", size = 9406777 }, { url = "https://files.pythonhosted.org/packages/0e/dd/e6ae97151e5ed648ab2ea48885bc33d39202b640eec7a2910e2c843f7ac0/matplotlib-3.10.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5fd41b0ec7ee45cd960a8e71aea7c946a28a0b8a4dcee47d2856b2af051f334c", size = 8109742 }, { url = "https://files.pythonhosted.org/packages/32/5f/29def7ce4e815ab939b56280976ee35afffb3bbdb43f332caee74cb8c951/matplotlib-3.10.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:81713dd0d103b379de4516b861d964b1d789a144103277769238c732229d7f03", size = 8155500 }, { url = "https://files.pythonhosted.org/packages/de/6d/d570383c9f7ca799d0a54161446f9ce7b17d6c50f2994b653514bcaa108f/matplotlib-3.10.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:359f87baedb1f836ce307f0e850d12bb5f1936f70d035561f90d41d305fdacea", size = 8032398 }, { url = "https://files.pythonhosted.org/packages/c9/b4/680aa700d99b48e8c4393fa08e9ab8c49c0555ee6f4c9c0a5e8ea8dfde5d/matplotlib-3.10.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ae80dc3a4add4665cf2faa90138384a7ffe2a4e37c58d83e115b54287c4f06ef", size = 8587361 }, ] [[package]] name = "matplotlib-inline" version = "0.1.7" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "traitlets" }, ] sdist = { url = "https://files.pythonhosted.org/packages/99/5b/a36a337438a14116b16480db471ad061c36c3694df7c2084a0da7ba538b7/matplotlib_inline-0.1.7.tar.gz", hash = "sha256:8423b23ec666be3d16e16b60bdd8ac4e86e840ebd1dd11a30b9f117f2fa0ab90", size = 8159 } wheels = [ { url = "https://files.pythonhosted.org/packages/8f/8e/9ad090d3553c280a8060fbf6e24dc1c0c29704ee7d1c372f0c174aa59285/matplotlib_inline-0.1.7-py3-none-any.whl", hash = "sha256:df192d39a4ff8f21b1895d72e6a13f5fcc5099f00fa84384e0ea28c2cc0653ca", size = 9899 }, ] [[package]] name = "mdit-py-plugins" version = "0.4.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "markdown-it-py" }, ] sdist = { url = "https://files.pythonhosted.org/packages/19/03/a2ecab526543b152300717cf232bb4bb8605b6edb946c845016fa9c9c9fd/mdit_py_plugins-0.4.2.tar.gz", hash = "sha256:5f2cd1fdb606ddf152d37ec30e46101a60512bc0e5fa1a7002c36647b09e26b5", size = 43542 } wheels = [ { url = "https://files.pythonhosted.org/packages/a7/f7/7782a043553ee469c1ff49cfa1cdace2d6bf99a1f333cf38676b3ddf30da/mdit_py_plugins-0.4.2-py3-none-any.whl", hash = "sha256:0c673c3f889399a33b95e88d2f0d111b4447bdfea7f237dab2d488f459835636", size = 55316 }, ] [[package]] name = "mdurl" version = "0.1.2" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/d6/54/cfe61301667036ec958cb99bd3efefba235e65cdeb9c84d24a8293ba1d90/mdurl-0.1.2.tar.gz", hash = "sha256:bb413d29f5eea38f31dd4754dd7377d4465116fb207585f97bf925588687c1ba", size = 8729 } wheels = [ { url = "https://files.pythonhosted.org/packages/b3/38/89ba8ad64ae25be8de66a6d463314cf1eb366222074cfda9ee839c56a4b4/mdurl-0.1.2-py3-none-any.whl", hash = "sha256:84008a41e51615a49fc9966191ff91509e3c40b939176e643fd50a5c2196b8f8", size = 9979 }, ] [[package]] name = "mistune" version = "3.0.2" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/ef/c8/f0173fe3bf85fd891aee2e7bcd8207dfe26c2c683d727c5a6cc3aec7b628/mistune-3.0.2.tar.gz", hash = "sha256:fc7f93ded930c92394ef2cb6f04a8aabab4117a91449e72dcc8dfa646a508be8", size = 90840 } wheels = [ { url = "https://files.pythonhosted.org/packages/f0/74/c95adcdf032956d9ef6c89a9b8a5152bf73915f8c633f3e3d88d06bd699c/mistune-3.0.2-py3-none-any.whl", hash = "sha256:71481854c30fdbc938963d3605b72501f5c10a9320ecd412c121c163a1c7d205", size = 47958 }, ] [[package]] name = "multidict" version = "6.1.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "typing-extensions", marker = "python_full_version < '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/d6/be/504b89a5e9ca731cd47487e91c469064f8ae5af93b7259758dcfc2b9c848/multidict-6.1.0.tar.gz", hash = "sha256:22ae2ebf9b0c69d206c003e2f6a914ea33f0a932d4aa16f236afc049d9958f4a", size = 64002 } wheels = [ { url = "https://files.pythonhosted.org/packages/29/68/259dee7fd14cf56a17c554125e534f6274c2860159692a414d0b402b9a6d/multidict-6.1.0-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:3380252550e372e8511d49481bd836264c009adb826b23fefcc5dd3c69692f60", size = 48628 }, { url = "https://files.pythonhosted.org/packages/50/79/53ba256069fe5386a4a9e80d4e12857ced9de295baf3e20c68cdda746e04/multidict-6.1.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:99f826cbf970077383d7de805c0681799491cb939c25450b9b5b3ced03ca99f1", size = 29327 }, { url = "https://files.pythonhosted.org/packages/ff/10/71f1379b05b196dae749b5ac062e87273e3f11634f447ebac12a571d90ae/multidict-6.1.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:a114d03b938376557927ab23f1e950827c3b893ccb94b62fd95d430fd0e5cf53", size = 29689 }, { url = "https://files.pythonhosted.org/packages/71/45/70bac4f87438ded36ad4793793c0095de6572d433d98575a5752629ef549/multidict-6.1.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1c416351ee6271b2f49b56ad7f308072f6f44b37118d69c2cad94f3fa8a40d5", size = 126639 }, { url = "https://files.pythonhosted.org/packages/80/cf/17f35b3b9509b4959303c05379c4bfb0d7dd05c3306039fc79cf035bbac0/multidict-6.1.0-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:6b5d83030255983181005e6cfbac1617ce9746b219bc2aad52201ad121226581", size = 134315 }, { url = "https://files.pythonhosted.org/packages/ef/1f/652d70ab5effb33c031510a3503d4d6efc5ec93153562f1ee0acdc895a57/multidict-6.1.0-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3e97b5e938051226dc025ec80980c285b053ffb1e25a3db2a3aa3bc046bf7f56", size = 129471 }, { url = "https://files.pythonhosted.org/packages/a6/64/2dd6c4c681688c0165dea3975a6a4eab4944ea30f35000f8b8af1df3148c/multidict-6.1.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d618649d4e70ac6efcbba75be98b26ef5078faad23592f9b51ca492953012429", size = 124585 }, { url = "https://files.pythonhosted.org/packages/87/56/e6ee5459894c7e554b57ba88f7257dc3c3d2d379cb15baaa1e265b8c6165/multidict-6.1.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10524ebd769727ac77ef2278390fb0068d83f3acb7773792a5080f2b0abf7748", size = 116957 }, { url = "https://files.pythonhosted.org/packages/36/9e/616ce5e8d375c24b84f14fc263c7ef1d8d5e8ef529dbc0f1df8ce71bb5b8/multidict-6.1.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:ff3827aef427c89a25cc96ded1759271a93603aba9fb977a6d264648ebf989db", size = 128609 }, { url = "https://files.pythonhosted.org/packages/8c/4f/4783e48a38495d000f2124020dc96bacc806a4340345211b1ab6175a6cb4/multidict-6.1.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:06809f4f0f7ab7ea2cabf9caca7d79c22c0758b58a71f9d32943ae13c7ace056", size = 123016 }, { url = "https://files.pythonhosted.org/packages/3e/b3/4950551ab8fc39862ba5e9907dc821f896aa829b4524b4deefd3e12945ab/multidict-6.1.0-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:f179dee3b863ab1c59580ff60f9d99f632f34ccb38bf67a33ec6b3ecadd0fd76", size = 133542 }, { url = "https://files.pythonhosted.org/packages/96/4d/f0ce6ac9914168a2a71df117935bb1f1781916acdecbb43285e225b484b8/multidict-6.1.0-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:aaed8b0562be4a0876ee3b6946f6869b7bcdb571a5d1496683505944e268b160", size = 130163 }, { url = "https://files.pythonhosted.org/packages/be/72/17c9f67e7542a49dd252c5ae50248607dfb780bcc03035907dafefb067e3/multidict-6.1.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:3c8b88a2ccf5493b6c8da9076fb151ba106960a2df90c2633f342f120751a9e7", size = 126832 }, { url = "https://files.pythonhosted.org/packages/71/9f/72d719e248cbd755c8736c6d14780533a1606ffb3fbb0fbd77da9f0372da/multidict-6.1.0-cp310-cp310-win32.whl", hash = "sha256:4a9cb68166a34117d6646c0023c7b759bf197bee5ad4272f420a0141d7eb03a0", size = 26402 }, { url = "https://files.pythonhosted.org/packages/04/5a/d88cd5d00a184e1ddffc82aa2e6e915164a6d2641ed3606e766b5d2f275a/multidict-6.1.0-cp310-cp310-win_amd64.whl", hash = "sha256:20b9b5fbe0b88d0bdef2012ef7dee867f874b72528cf1d08f1d59b0e3850129d", size = 28800 }, { url = "https://files.pythonhosted.org/packages/93/13/df3505a46d0cd08428e4c8169a196131d1b0c4b515c3649829258843dde6/multidict-6.1.0-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:3efe2c2cb5763f2f1b275ad2bf7a287d3f7ebbef35648a9726e3b69284a4f3d6", size = 48570 }, { url = "https://files.pythonhosted.org/packages/f0/e1/a215908bfae1343cdb72f805366592bdd60487b4232d039c437fe8f5013d/multidict-6.1.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:c7053d3b0353a8b9de430a4f4b4268ac9a4fb3481af37dfe49825bf45ca24156", size = 29316 }, { url = "https://files.pythonhosted.org/packages/70/0f/6dc70ddf5d442702ed74f298d69977f904960b82368532c88e854b79f72b/multidict-6.1.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:27e5fc84ccef8dfaabb09d82b7d179c7cf1a3fbc8a966f8274fcb4ab2eb4cadb", size = 29640 }, { url = "https://files.pythonhosted.org/packages/d8/6d/9c87b73a13d1cdea30b321ef4b3824449866bd7f7127eceed066ccb9b9ff/multidict-6.1.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0e2b90b43e696f25c62656389d32236e049568b39320e2735d51f08fd362761b", size = 131067 }, { url = "https://files.pythonhosted.org/packages/cc/1e/1b34154fef373371fd6c65125b3d42ff5f56c7ccc6bfff91b9b3c60ae9e0/multidict-6.1.0-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d83a047959d38a7ff552ff94be767b7fd79b831ad1cd9920662db05fec24fe72", size = 138507 }, { url = "https://files.pythonhosted.org/packages/fb/e0/0bc6b2bac6e461822b5f575eae85da6aae76d0e2a79b6665d6206b8e2e48/multidict-6.1.0-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:d1a9dd711d0877a1ece3d2e4fea11a8e75741ca21954c919406b44e7cf971304", size = 133905 }, { url = "https://files.pythonhosted.org/packages/ba/af/73d13b918071ff9b2205fcf773d316e0f8fefb4ec65354bbcf0b10908cc6/multidict-6.1.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec2abea24d98246b94913b76a125e855eb5c434f7c46546046372fe60f666351", size = 129004 }, { url = "https://files.pythonhosted.org/packages/74/21/23960627b00ed39643302d81bcda44c9444ebcdc04ee5bedd0757513f259/multidict-6.1.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4867cafcbc6585e4b678876c489b9273b13e9fff9f6d6d66add5e15d11d926cb", size = 121308 }, { url = "https://files.pythonhosted.org/packages/8b/5c/cf282263ffce4a596ed0bb2aa1a1dddfe1996d6a62d08842a8d4b33dca13/multidict-6.1.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:5b48204e8d955c47c55b72779802b219a39acc3ee3d0116d5080c388970b76e3", size = 132608 }, { url = "https://files.pythonhosted.org/packages/d7/3e/97e778c041c72063f42b290888daff008d3ab1427f5b09b714f5a8eff294/multidict-6.1.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:d8fff389528cad1618fb4b26b95550327495462cd745d879a8c7c2115248e399", size = 127029 }, { url = "https://files.pythonhosted.org/packages/47/ac/3efb7bfe2f3aefcf8d103e9a7162572f01936155ab2f7ebcc7c255a23212/multidict-6.1.0-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:a7a9541cd308eed5e30318430a9c74d2132e9a8cb46b901326272d780bf2d423", size = 137594 }, { url = "https://files.pythonhosted.org/packages/42/9b/6c6e9e8dc4f915fc90a9b7798c44a30773dea2995fdcb619870e705afe2b/multidict-6.1.0-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:da1758c76f50c39a2efd5e9859ce7d776317eb1dd34317c8152ac9251fc574a3", size = 134556 }, { url = "https://files.pythonhosted.org/packages/1d/10/8e881743b26aaf718379a14ac58572a240e8293a1c9d68e1418fb11c0f90/multidict-6.1.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:c943a53e9186688b45b323602298ab727d8865d8c9ee0b17f8d62d14b56f0753", size = 130993 }, { url = "https://files.pythonhosted.org/packages/45/84/3eb91b4b557442802d058a7579e864b329968c8d0ea57d907e7023c677f2/multidict-6.1.0-cp311-cp311-win32.whl", hash = "sha256:90f8717cb649eea3504091e640a1b8568faad18bd4b9fcd692853a04475a4b80", size = 26405 }, { url = "https://files.pythonhosted.org/packages/9f/0b/ad879847ecbf6d27e90a6eabb7eff6b62c129eefe617ea45eae7c1f0aead/multidict-6.1.0-cp311-cp311-win_amd64.whl", hash = "sha256:82176036e65644a6cc5bd619f65f6f19781e8ec2e5330f51aa9ada7504cc1926", size = 28795 }, { url = "https://files.pythonhosted.org/packages/fd/16/92057c74ba3b96d5e211b553895cd6dc7cc4d1e43d9ab8fafc727681ef71/multidict-6.1.0-cp312-cp312-macosx_10_9_universal2.whl", hash = "sha256:b04772ed465fa3cc947db808fa306d79b43e896beb677a56fb2347ca1a49c1fa", size = 48713 }, { url = "https://files.pythonhosted.org/packages/94/3d/37d1b8893ae79716179540b89fc6a0ee56b4a65fcc0d63535c6f5d96f217/multidict-6.1.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:6180c0ae073bddeb5a97a38c03f30c233e0a4d39cd86166251617d1bbd0af436", size = 29516 }, { url = "https://files.pythonhosted.org/packages/a2/12/adb6b3200c363062f805275b4c1e656be2b3681aada66c80129932ff0bae/multidict-6.1.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:071120490b47aa997cca00666923a83f02c7fbb44f71cf7f136df753f7fa8761", size = 29557 }, { url = "https://files.pythonhosted.org/packages/47/e9/604bb05e6e5bce1e6a5cf80a474e0f072e80d8ac105f1b994a53e0b28c42/multidict-6.1.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:50b3a2710631848991d0bf7de077502e8994c804bb805aeb2925a981de58ec2e", size = 130170 }, { url = "https://files.pythonhosted.org/packages/7e/13/9efa50801785eccbf7086b3c83b71a4fb501a4d43549c2f2f80b8787d69f/multidict-6.1.0-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b58c621844d55e71c1b7f7c498ce5aa6985d743a1a59034c57a905b3f153c1ef", size = 134836 }, { url = "https://files.pythonhosted.org/packages/bf/0f/93808b765192780d117814a6dfcc2e75de6dcc610009ad408b8814dca3ba/multidict-6.1.0-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:55b6d90641869892caa9ca42ff913f7ff1c5ece06474fbd32fb2cf6834726c95", size = 133475 }, { url = "https://files.pythonhosted.org/packages/d3/c8/529101d7176fe7dfe1d99604e48d69c5dfdcadb4f06561f465c8ef12b4df/multidict-6.1.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4b820514bfc0b98a30e3d85462084779900347e4d49267f747ff54060cc33925", size = 131049 }, { url = "https://files.pythonhosted.org/packages/ca/0c/fc85b439014d5a58063e19c3a158a889deec399d47b5269a0f3b6a2e28bc/multidict-6.1.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:10a9b09aba0c5b48c53761b7c720aaaf7cf236d5fe394cd399c7ba662d5f9966", size = 120370 }, { url = "https://files.pythonhosted.org/packages/db/46/d4416eb20176492d2258fbd47b4abe729ff3b6e9c829ea4236f93c865089/multidict-6.1.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:1e16bf3e5fc9f44632affb159d30a437bfe286ce9e02754759be5536b169b305", size = 125178 }, { url = "https://files.pythonhosted.org/packages/5b/46/73697ad7ec521df7de5531a32780bbfd908ded0643cbe457f981a701457c/multidict-6.1.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:76f364861c3bfc98cbbcbd402d83454ed9e01a5224bb3a28bf70002a230f73e2", size = 119567 }, { url = "https://files.pythonhosted.org/packages/cd/ed/51f060e2cb0e7635329fa6ff930aa5cffa17f4c7f5c6c3ddc3500708e2f2/multidict-6.1.0-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:820c661588bd01a0aa62a1283f20d2be4281b086f80dad9e955e690c75fb54a2", size = 129822 }, { url = "https://files.pythonhosted.org/packages/df/9e/ee7d1954b1331da3eddea0c4e08d9142da5f14b1321c7301f5014f49d492/multidict-6.1.0-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:0e5f362e895bc5b9e67fe6e4ded2492d8124bdf817827f33c5b46c2fe3ffaca6", size = 128656 }, { url = "https://files.pythonhosted.org/packages/77/00/8538f11e3356b5d95fa4b024aa566cde7a38aa7a5f08f4912b32a037c5dc/multidict-6.1.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3ec660d19bbc671e3a6443325f07263be452c453ac9e512f5eb935e7d4ac28b3", size = 125360 }, { url = "https://files.pythonhosted.org/packages/be/05/5d334c1f2462d43fec2363cd00b1c44c93a78c3925d952e9a71caf662e96/multidict-6.1.0-cp312-cp312-win32.whl", hash = "sha256:58130ecf8f7b8112cdb841486404f1282b9c86ccb30d3519faf301b2e5659133", size = 26382 }, { url = "https://files.pythonhosted.org/packages/a3/bf/f332a13486b1ed0496d624bcc7e8357bb8053823e8cd4b9a18edc1d97e73/multidict-6.1.0-cp312-cp312-win_amd64.whl", hash = "sha256:188215fc0aafb8e03341995e7c4797860181562380f81ed0a87ff455b70bf1f1", size = 28529 }, { url = "https://files.pythonhosted.org/packages/22/67/1c7c0f39fe069aa4e5d794f323be24bf4d33d62d2a348acdb7991f8f30db/multidict-6.1.0-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:d569388c381b24671589335a3be6e1d45546c2988c2ebe30fdcada8457a31008", size = 48771 }, { url = "https://files.pythonhosted.org/packages/3c/25/c186ee7b212bdf0df2519eacfb1981a017bda34392c67542c274651daf23/multidict-6.1.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:052e10d2d37810b99cc170b785945421141bf7bb7d2f8799d431e7db229c385f", size = 29533 }, { url = "https://files.pythonhosted.org/packages/67/5e/04575fd837e0958e324ca035b339cea174554f6f641d3fb2b4f2e7ff44a2/multidict-6.1.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:f90c822a402cb865e396a504f9fc8173ef34212a342d92e362ca498cad308e28", size = 29595 }, { url = "https://files.pythonhosted.org/packages/d3/b2/e56388f86663810c07cfe4a3c3d87227f3811eeb2d08450b9e5d19d78876/multidict-6.1.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b225d95519a5bf73860323e633a664b0d85ad3d5bede6d30d95b35d4dfe8805b", size = 130094 }, { url = "https://files.pythonhosted.org/packages/6c/ee/30ae9b4186a644d284543d55d491fbd4239b015d36b23fea43b4c94f7052/multidict-6.1.0-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:23bfd518810af7de1116313ebd9092cb9aa629beb12f6ed631ad53356ed6b86c", size = 134876 }, { url = "https://files.pythonhosted.org/packages/84/c7/70461c13ba8ce3c779503c70ec9d0345ae84de04521c1f45a04d5f48943d/multidict-6.1.0-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5c09fcfdccdd0b57867577b719c69e347a436b86cd83747f179dbf0cc0d4c1f3", size = 133500 }, { url = "https://files.pythonhosted.org/packages/4a/9f/002af221253f10f99959561123fae676148dd730e2daa2cd053846a58507/multidict-6.1.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf6bea52ec97e95560af5ae576bdac3aa3aae0b6758c6efa115236d9e07dae44", size = 131099 }, { url = "https://files.pythonhosted.org/packages/82/42/d1c7a7301d52af79d88548a97e297f9d99c961ad76bbe6f67442bb77f097/multidict-6.1.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:57feec87371dbb3520da6192213c7d6fc892d5589a93db548331954de8248fd2", size = 120403 }, { url = "https://files.pythonhosted.org/packages/68/f3/471985c2c7ac707547553e8f37cff5158030d36bdec4414cb825fbaa5327/multidict-6.1.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:0c3f390dc53279cbc8ba976e5f8035eab997829066756d811616b652b00a23a3", size = 125348 }, { url = "https://files.pythonhosted.org/packages/67/2c/e6df05c77e0e433c214ec1d21ddd203d9a4770a1f2866a8ca40a545869a0/multidict-6.1.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:59bfeae4b25ec05b34f1956eaa1cb38032282cd4dfabc5056d0a1ec4d696d3aa", size = 119673 }, { url = "https://files.pythonhosted.org/packages/c5/cd/bc8608fff06239c9fb333f9db7743a1b2eafe98c2666c9a196e867a3a0a4/multidict-6.1.0-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:b2f59caeaf7632cc633b5cf6fc449372b83bbdf0da4ae04d5be36118e46cc0aa", size = 129927 }, { url = "https://files.pythonhosted.org/packages/44/8e/281b69b7bc84fc963a44dc6e0bbcc7150e517b91df368a27834299a526ac/multidict-6.1.0-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:37bb93b2178e02b7b618893990941900fd25b6b9ac0fa49931a40aecdf083fe4", size = 128711 }, { url = "https://files.pythonhosted.org/packages/12/a4/63e7cd38ed29dd9f1881d5119f272c898ca92536cdb53ffe0843197f6c85/multidict-6.1.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:4e9f48f58c2c523d5a06faea47866cd35b32655c46b443f163d08c6d0ddb17d6", size = 125519 }, { url = "https://files.pythonhosted.org/packages/38/e0/4f5855037a72cd8a7a2f60a3952d9aa45feedb37ae7831642102604e8a37/multidict-6.1.0-cp313-cp313-win32.whl", hash = "sha256:3a37ffb35399029b45c6cc33640a92bef403c9fd388acce75cdc88f58bd19a81", size = 26426 }, { url = "https://files.pythonhosted.org/packages/7e/a5/17ee3a4db1e310b7405f5d25834460073a8ccd86198ce044dfaf69eac073/multidict-6.1.0-cp313-cp313-win_amd64.whl", hash = "sha256:e9aa71e15d9d9beaad2c6b9319edcdc0a49a43ef5c0a4c8265ca9ee7d6c67774", size = 28531 }, { url = "https://files.pythonhosted.org/packages/99/b7/b9e70fde2c0f0c9af4cc5277782a89b66d35948ea3369ec9f598358c3ac5/multidict-6.1.0-py3-none-any.whl", hash = "sha256:48e171e52d1c4d33888e529b999e5900356b9ae588c2f09a52dcefb158b27506", size = 10051 }, ] [[package]] name = "mypy" version = "1.14.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "mypy-extensions" }, { name = "tomli", marker = "python_full_version < '3.11'" }, { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/8c/7b/08046ef9330735f536a09a2e31b00f42bccdb2795dcd979636ba43bb2d63/mypy-1.14.0.tar.gz", hash = "sha256:822dbd184d4a9804df5a7d5335a68cf7662930e70b8c1bc976645d1509f9a9d6", size = 3215684 } wheels = [ { url = "https://files.pythonhosted.org/packages/ef/97/f00ded038482230e0beaaa08f9c5483a54530b362ad1b0d752d5d2b2f211/mypy-1.14.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:e971c1c667007f9f2b397ffa80fa8e1e0adccff336e5e77e74cb5f22868bee87", size = 11207956 }, { url = "https://files.pythonhosted.org/packages/68/67/8b4db0da19c9e3fa6264e948f1c135ab4dd45bede1809f4fdb613dc119f6/mypy-1.14.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e86aaeaa3221a278c66d3d673b297232947d873773d61ca3ee0e28b2ff027179", size = 10363681 }, { url = "https://files.pythonhosted.org/packages/f5/00/56b1619ff1f3fcad2d411eccda60d74d20e73bda39c218d5ad2769980682/mypy-1.14.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1628c5c3ce823d296e41e2984ff88c5861499041cb416a8809615d0c1f41740e", size = 12832976 }, { url = "https://files.pythonhosted.org/packages/e7/8b/9247838774b0bd865f190cc221822212091317f16310305ef924d9772532/mypy-1.14.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7fadb29b77fc14a0dd81304ed73c828c3e5cde0016c7e668a86a3e0dfc9f3af3", size = 13013704 }, { url = "https://files.pythonhosted.org/packages/b2/69/0c0868a6f3d9761d2f704d1fb6ef84d75998c27d342738a8b20f109a411f/mypy-1.14.0-cp310-cp310-win_amd64.whl", hash = "sha256:3fa76988dc760da377c1e5069200a50d9eaaccf34f4ea18428a3337034ab5a44", size = 9782230 }, { url = "https://files.pythonhosted.org/packages/34/c1/b9dd3e955953aec1c728992545b7877c9f6fa742a623ce4c200da0f62540/mypy-1.14.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:6e73c8a154eed31db3445fe28f63ad2d97b674b911c00191416cf7f6459fd49a", size = 11121032 }, { url = "https://files.pythonhosted.org/packages/ee/96/c52d5d516819ab95bf41f4a1ada828a3decc302f8c152ff4fc5feb0e4529/mypy-1.14.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:273e70fcb2e38c5405a188425aa60b984ffdcef65d6c746ea5813024b68c73dc", size = 10286294 }, { url = "https://files.pythonhosted.org/packages/69/2c/3dbe51877a24daa467f8d8631f9ffd1aabbf0f6d9367a01c44a59df81fe0/mypy-1.14.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:1daca283d732943731a6a9f20fdbcaa927f160bc51602b1d4ef880a6fb252015", size = 12746528 }, { url = "https://files.pythonhosted.org/packages/a1/a8/eb20cde4ba9c4c3e20d958918a7c5d92210f4d1a0200c27de9a641f70996/mypy-1.14.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:7e68047bedb04c1c25bba9901ea46ff60d5eaac2d71b1f2161f33107e2b368eb", size = 12883489 }, { url = "https://files.pythonhosted.org/packages/91/17/a1fc6c70f31d52c99299320cf81c3cb2c6b91ec7269414e0718a6d138e34/mypy-1.14.0-cp311-cp311-win_amd64.whl", hash = "sha256:7a52f26b9c9b1664a60d87675f3bae00b5c7f2806e0c2800545a32c325920bcc", size = 9780113 }, { url = "https://files.pythonhosted.org/packages/fe/d8/0e72175ee0253217f5c44524f5e95251c02e95ba9749fb87b0e2074d203a/mypy-1.14.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d5326ab70a6db8e856d59ad4cb72741124950cbbf32e7b70e30166ba7bbf61dd", size = 11269011 }, { url = "https://files.pythonhosted.org/packages/e9/6d/4ea13839dabe5db588dc6a1b766da16f420d33cf118a7b7172cdf6c7fcb2/mypy-1.14.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:bf4ec4980bec1e0e24e5075f449d014011527ae0055884c7e3abc6a99cd2c7f1", size = 10253076 }, { url = "https://files.pythonhosted.org/packages/3e/38/7db2c5d0f4d290e998f7a52b2e2616c7bbad96b8e04278ab09d11978a29e/mypy-1.14.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:390dfb898239c25289495500f12fa73aa7f24a4c6d90ccdc165762462b998d63", size = 12862786 }, { url = "https://files.pythonhosted.org/packages/bf/4b/62d59c801b34141040989949c2b5c157d0408b45357335d3ec5b2845b0f6/mypy-1.14.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:7e026d55ddcd76e29e87865c08cbe2d0104e2b3153a523c529de584759379d3d", size = 12971568 }, { url = "https://files.pythonhosted.org/packages/f1/9c/e0f281b32d70c87b9e4d2939e302b1ff77ada4d7b0f2fb32890c144bc1d6/mypy-1.14.0-cp312-cp312-win_amd64.whl", hash = "sha256:585ed36031d0b3ee362e5107ef449a8b5dfd4e9c90ccbe36414ee405ee6b32ba", size = 9879477 }, { url = "https://files.pythonhosted.org/packages/13/33/8380efd0ebdfdfac7fc0bf065f03a049800ca1e6c296ec1afc634340d992/mypy-1.14.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:e9f6f4c0b27401d14c483c622bc5105eff3911634d576bbdf6695b9a7c1ba741", size = 11251509 }, { url = "https://files.pythonhosted.org/packages/15/6d/4e1c21c60fee11af7d8e4f2902a29886d1387d6a836be16229eb3982a963/mypy-1.14.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:56b2280cedcb312c7a79f5001ae5325582d0d339bce684e4a529069d0e7ca1e7", size = 10244282 }, { url = "https://files.pythonhosted.org/packages/8b/cf/7a8ae5c0161edae15d25c2c67c68ce8b150cbdc45aefc13a8be271ee80b2/mypy-1.14.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.manylinux_2_28_x86_64.whl", hash = "sha256:342de51c48bab326bfc77ce056ba08c076d82ce4f5a86621f972ed39970f94d8", size = 12867676 }, { url = "https://files.pythonhosted.org/packages/9c/d0/71f7bbdcc7cfd0f2892db5b13b1e8857673f2cc9e0c30e3e4340523dc186/mypy-1.14.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:00df23b42e533e02a6f0055e54de9a6ed491cd8b7ea738647364fd3a39ea7efc", size = 12964189 }, { url = "https://files.pythonhosted.org/packages/a7/40/fb4ad65d6d5f8c51396ecf6305ec0269b66013a5bf02d0e9528053640b4a/mypy-1.14.0-cp313-cp313-win_amd64.whl", hash = "sha256:e8c8387e5d9dff80e7daf961df357c80e694e942d9755f3ad77d69b0957b8e3f", size = 9888247 }, { url = "https://files.pythonhosted.org/packages/39/32/0214608af400cdf8f5102144bb8af10d880675c65ed0b58f7e0e77175d50/mypy-1.14.0-py3-none-any.whl", hash = "sha256:2238d7f93fc4027ed1efc944507683df3ba406445a2b6c96e79666a045aadfab", size = 2752803 }, ] [[package]] name = "mypy-extensions" version = "1.0.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/98/a4/1ab47638b92648243faf97a5aeb6ea83059cc3624972ab6b8d2316078d3f/mypy_extensions-1.0.0.tar.gz", hash = "sha256:75dbf8955dc00442a438fc4d0666508a9a97b6bd41aa2f0ffe9d2f2725af0782", size = 4433 } wheels = [ { url = "https://files.pythonhosted.org/packages/2a/e2/5d3f6ada4297caebe1a2add3b126fe800c96f56dbe5d1988a2cbe0b267aa/mypy_extensions-1.0.0-py3-none-any.whl", hash = "sha256:4392f6c0eb8a5668a69e23d168ffa70f0be9ccfd32b5cc2d26a34ae5b844552d", size = 4695 }, ] [[package]] name = "myst-parser" version = "4.0.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "docutils" }, { name = "jinja2" }, { name = "markdown-it-py" }, { name = "mdit-py-plugins" }, { name = "pyyaml" }, { name = "sphinx" }, ] sdist = { url = "https://files.pythonhosted.org/packages/85/55/6d1741a1780e5e65038b74bce6689da15f620261c490c3511eb4c12bac4b/myst_parser-4.0.0.tar.gz", hash = "sha256:851c9dfb44e36e56d15d05e72f02b80da21a9e0d07cba96baf5e2d476bb91531", size = 93858 } wheels = [ { url = "https://files.pythonhosted.org/packages/ca/b4/b036f8fdb667587bb37df29dc6644681dd78b7a2a6321a34684b79412b28/myst_parser-4.0.0-py3-none-any.whl", hash = "sha256:b9317997552424448c6096c2558872fdb6f81d3ecb3a40ce84a7518798f3f28d", size = 84563 }, ] [[package]] name = "nbclient" version = "0.10.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "jupyter-client" }, { name = "jupyter-core" }, { name = "nbformat" }, { name = "traitlets" }, ] sdist = { url = "https://files.pythonhosted.org/packages/87/66/7ffd18d58eae90d5721f9f39212327695b749e23ad44b3881744eaf4d9e8/nbclient-0.10.2.tar.gz", hash = "sha256:90b7fc6b810630db87a6d0c2250b1f0ab4cf4d3c27a299b0cde78a4ed3fd9193", size = 62424 } wheels = [ { url = "https://files.pythonhosted.org/packages/34/6d/e7fa07f03a4a7b221d94b4d586edb754a9b0dc3c9e2c93353e9fa4e0d117/nbclient-0.10.2-py3-none-any.whl", hash = "sha256:4ffee11e788b4a27fabeb7955547e4318a5298f34342a4bfd01f2e1faaeadc3d", size = 25434 }, ] [[package]] name = "nbconvert" version = "7.16.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "beautifulsoup4" }, { name = "bleach" }, { name = "defusedxml" }, { name = "jinja2" }, { name = "jupyter-core" }, { name = "jupyterlab-pygments" }, { name = "markupsafe" }, { name = "mistune" }, { name = "nbclient" }, { name = "nbformat" }, { name = "packaging" }, { name = "pandocfilters" }, { name = "pygments" }, { name = "tinycss2" }, { name = "traitlets" }, ] sdist = { url = "https://files.pythonhosted.org/packages/af/e8/ba521a033b21132008e520c28ceb818f9f092da5f0261e94e509401b29f9/nbconvert-7.16.4.tar.gz", hash = "sha256:86ca91ba266b0a448dc96fa6c5b9d98affabde2867b363258703536807f9f7f4", size = 854422 } wheels = [ { url = "https://files.pythonhosted.org/packages/b8/bb/bb5b6a515d1584aa2fd89965b11db6632e4bdc69495a52374bcc36e56cfa/nbconvert-7.16.4-py3-none-any.whl", hash = "sha256:05873c620fe520b6322bf8a5ad562692343fe3452abda5765c7a34b7d1aa3eb3", size = 257388 }, ] [[package]] name = "nbformat" version = "5.10.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "fastjsonschema" }, { name = "jsonschema" }, { name = "jupyter-core" }, { name = "traitlets" }, ] sdist = { url = "https://files.pythonhosted.org/packages/6d/fd/91545e604bc3dad7dca9ed03284086039b294c6b3d75c0d2fa45f9e9caf3/nbformat-5.10.4.tar.gz", hash = "sha256:322168b14f937a5d11362988ecac2a4952d3d8e3a2cbeb2319584631226d5b3a", size = 142749 } wheels = [ { url = "https://files.pythonhosted.org/packages/a9/82/0340caa499416c78e5d8f5f05947ae4bc3cba53c9f038ab6e9ed964e22f1/nbformat-5.10.4-py3-none-any.whl", hash = "sha256:3b48d6c8fbca4b299bf3982ea7db1af21580e4fec269ad087b9e81588891200b", size = 78454 }, ] [[package]] name = "nbsphinx" version = "0.9.5" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "docutils" }, { name = "jinja2" }, { name = "nbconvert" }, { name = "nbformat" }, { name = "sphinx" }, { name = "traitlets" }, ] sdist = { url = "https://files.pythonhosted.org/packages/af/49/a6b1ed510bcc7734daa20372222804d6109d3087ced82f65c8720da90ef4/nbsphinx-0.9.5.tar.gz", hash = "sha256:736916e7b0dab28fc904f4a9ae3b53a9a50c29fccc6329c052fcc7485abcf2b7", size = 179599 } wheels = [ { url = "https://files.pythonhosted.org/packages/ae/8a/5a1e56efa95e2038de5646e2bc5c0abe18678ae5d167e267c0fbaa17a372/nbsphinx-0.9.5-py3-none-any.whl", hash = "sha256:d82f71084425db1f48e72515f15c25b4de8652ceaab513ee462ac05f1b8eae0a", size = 31349 }, ] [[package]] name = "nest-asyncio" version = "1.6.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/83/f8/51569ac65d696c8ecbee95938f89d4abf00f47d58d48f6fbabfe8f0baefe/nest_asyncio-1.6.0.tar.gz", hash = "sha256:6f172d5449aca15afd6c646851f4e31e02c598d553a667e38cafa997cfec55fe", size = 7418 } wheels = [ { url = "https://files.pythonhosted.org/packages/a0/c4/c2971a3ba4c6103a3d10c4b0f24f461ddc027f0f09763220cf35ca1401b3/nest_asyncio-1.6.0-py3-none-any.whl", hash = "sha256:87af6efd6b5e897c81050477ef65c62e2b2f35d51703cae01aff2905b1852e1c", size = 5195 }, ] [[package]] name = "nodeenv" version = "1.9.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/43/16/fc88b08840de0e0a72a2f9d8c6bae36be573e475a6326ae854bcc549fc45/nodeenv-1.9.1.tar.gz", hash = "sha256:6ec12890a2dab7946721edbfbcd91f3319c6ccc9aec47be7c7e6b7011ee6645f", size = 47437 } wheels = [ { url = "https://files.pythonhosted.org/packages/d2/1d/1b658dbd2b9fa9c4c9f32accbfc0205d532c8c6194dc0f2a4c0428e7128a/nodeenv-1.9.1-py2.py3-none-any.whl", hash = "sha256:ba11c9782d29c27c70ffbdda2d7415098754709be8a7056d79a737cd901155c9", size = 22314 }, ] [[package]] name = "numpy" version = "2.2.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/f2/a5/fdbf6a7871703df6160b5cf3dd774074b086d278172285c52c2758b76305/numpy-2.2.1.tar.gz", hash = "sha256:45681fd7128c8ad1c379f0ca0776a8b0c6583d2f69889ddac01559dfe4390918", size = 20227662 } wheels = [ { url = "https://files.pythonhosted.org/packages/c7/c4/5588367dc9f91e1a813beb77de46ea8cab13f778e1b3a0e661ab031aba44/numpy-2.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:5edb4e4caf751c1518e6a26a83501fda79bff41cc59dac48d70e6d65d4ec4440", size = 21213214 }, { url = "https://files.pythonhosted.org/packages/d8/8b/32dd9f08419023a4cf856c5ad0b4eba9b830da85eafdef841a104c4fc05a/numpy-2.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:aa3017c40d513ccac9621a2364f939d39e550c542eb2a894b4c8da92b38896ab", size = 14352248 }, { url = "https://files.pythonhosted.org/packages/84/2d/0e895d02940ba6e12389f0ab5cac5afcf8dc2dc0ade4e8cad33288a721bd/numpy-2.2.1-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:61048b4a49b1c93fe13426e04e04fdf5a03f456616f6e98c7576144677598675", size = 5391007 }, { url = "https://files.pythonhosted.org/packages/11/b9/7f1e64a0d46d9c2af6d17966f641fb12d5b8ea3003f31b2308f3e3b9a6aa/numpy-2.2.1-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:7671dc19c7019103ca44e8d94917eba8534c76133523ca8406822efdd19c9308", size = 6926174 }, { url = "https://files.pythonhosted.org/packages/2e/8c/043fa4418bc9364e364ab7aba8ff6ef5f6b9171ade22de8fbcf0e2fa4165/numpy-2.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4250888bcb96617e00bfa28ac24850a83c9f3a16db471eca2ee1f1714df0f957", size = 14330914 }, { url = "https://files.pythonhosted.org/packages/f7/b6/d8110985501ca8912dfc1c3bbef99d66e62d487f72e46b2337494df77364/numpy-2.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a7746f235c47abc72b102d3bce9977714c2444bdfaea7888d241b4c4bb6a78bf", size = 16379607 }, { url = "https://files.pythonhosted.org/packages/e2/57/bdca9fb8bdaa810c3a4ff2eb3231379b77f618a7c0d24be9f7070db50775/numpy-2.2.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:059e6a747ae84fce488c3ee397cee7e5f905fd1bda5fb18c66bc41807ff119b2", size = 15541760 }, { url = "https://files.pythonhosted.org/packages/97/55/3b9147b3cbc3b6b1abc2a411dec5337a46c873deca0dd0bf5bef9d0579cc/numpy-2.2.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:f62aa6ee4eb43b024b0e5a01cf65a0bb078ef8c395e8713c6e8a12a697144528", size = 18168476 }, { url = "https://files.pythonhosted.org/packages/00/e7/7c2cde16c9b87a8e14fdd262ca7849c4681cf48c8a774505f7e6f5e3b643/numpy-2.2.1-cp310-cp310-win32.whl", hash = "sha256:48fd472630715e1c1c89bf1feab55c29098cb403cc184b4859f9c86d4fcb6a95", size = 6570985 }, { url = "https://files.pythonhosted.org/packages/a1/a8/554b0e99fc4ac11ec481254781a10da180d0559c2ebf2c324232317349ee/numpy-2.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:b541032178a718c165a49638d28272b771053f628382d5e9d1c93df23ff58dbf", size = 12913384 }, { url = "https://files.pythonhosted.org/packages/59/14/645887347124e101d983e1daf95b48dc3e136bf8525cb4257bf9eab1b768/numpy-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:40f9e544c1c56ba8f1cf7686a8c9b5bb249e665d40d626a23899ba6d5d9e1484", size = 21217379 }, { url = "https://files.pythonhosted.org/packages/9f/fd/2279000cf29f58ccfd3778cbf4670dfe3f7ce772df5e198c5abe9e88b7d7/numpy-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:f9b57eaa3b0cd8db52049ed0330747b0364e899e8a606a624813452b8203d5f7", size = 14388520 }, { url = "https://files.pythonhosted.org/packages/58/b0/034eb5d5ba12d66ab658ff3455a31f20add0b78df8203c6a7451bd1bee21/numpy-2.2.1-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:bc8a37ad5b22c08e2dbd27df2b3ef7e5c0864235805b1e718a235bcb200cf1cb", size = 5389286 }, { url = "https://files.pythonhosted.org/packages/5d/69/6f3cccde92e82e7835fdb475c2bf439761cbf8a1daa7c07338e1e132dfec/numpy-2.2.1-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:9036d6365d13b6cbe8f27a0eaf73ddcc070cae584e5ff94bb45e3e9d729feab5", size = 6930345 }, { url = "https://files.pythonhosted.org/packages/d1/72/1cd38e91ab563e67f584293fcc6aca855c9ae46dba42e6b5ff4600022899/numpy-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:51faf345324db860b515d3f364eaa93d0e0551a88d6218a7d61286554d190d73", size = 14335748 }, { url = "https://files.pythonhosted.org/packages/f2/d4/f999444e86986f3533e7151c272bd8186c55dda554284def18557e013a2a/numpy-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:38efc1e56b73cc9b182fe55e56e63b044dd26a72128fd2fbd502f75555d92591", size = 16391057 }, { url = "https://files.pythonhosted.org/packages/99/7b/85cef6a3ae1b19542b7afd97d0b296526b6ef9e3c43ea0c4d9c4404fb2d0/numpy-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:31b89fa67a8042e96715c68e071a1200c4e172f93b0fbe01a14c0ff3ff820fc8", size = 15556943 }, { url = "https://files.pythonhosted.org/packages/69/7e/b83cc884c3508e91af78760f6b17ab46ad649831b1fa35acb3eb26d9e6d2/numpy-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:4c86e2a209199ead7ee0af65e1d9992d1dce7e1f63c4b9a616500f93820658d0", size = 18180785 }, { url = "https://files.pythonhosted.org/packages/b2/9f/eb4a9a38867de059dcd4b6e18d47c3867fbd3795d4c9557bb49278f94087/numpy-2.2.1-cp311-cp311-win32.whl", hash = "sha256:b34d87e8a3090ea626003f87f9392b3929a7bbf4104a05b6667348b6bd4bf1cd", size = 6568983 }, { url = "https://files.pythonhosted.org/packages/6d/1e/be3b9f3073da2f8c7fa361fcdc231b548266b0781029fdbaf75eeab997fd/numpy-2.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:360137f8fb1b753c5cde3ac388597ad680eccbbbb3865ab65efea062c4a1fd16", size = 12917260 }, { url = "https://files.pythonhosted.org/packages/62/12/b928871c570d4a87ab13d2cc19f8817f17e340d5481621930e76b80ffb7d/numpy-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:694f9e921a0c8f252980e85bce61ebbd07ed2b7d4fa72d0e4246f2f8aa6642ab", size = 20909861 }, { url = "https://files.pythonhosted.org/packages/3d/c3/59df91ae1d8ad7c5e03efd63fd785dec62d96b0fe56d1f9ab600b55009af/numpy-2.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:3683a8d166f2692664262fd4900f207791d005fb088d7fdb973cc8d663626faa", size = 14095776 }, { url = "https://files.pythonhosted.org/packages/af/4e/8ed5868efc8e601fb69419644a280e9c482b75691466b73bfaab7d86922c/numpy-2.2.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:780077d95eafc2ccc3ced969db22377b3864e5b9a0ea5eb347cc93b3ea900315", size = 5126239 }, { url = "https://files.pythonhosted.org/packages/1a/74/dd0bbe650d7bc0014b051f092f2de65e34a8155aabb1287698919d124d7f/numpy-2.2.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:55ba24ebe208344aa7a00e4482f65742969a039c2acfcb910bc6fcd776eb4355", size = 6659296 }, { url = "https://files.pythonhosted.org/packages/7f/11/4ebd7a3f4a655764dc98481f97bd0a662fb340d1001be6050606be13e162/numpy-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:9b1d07b53b78bf84a96898c1bc139ad7f10fda7423f5fd158fd0f47ec5e01ac7", size = 14047121 }, { url = "https://files.pythonhosted.org/packages/7f/a7/c1f1d978166eb6b98ad009503e4d93a8c1962d0eb14a885c352ee0276a54/numpy-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5062dc1a4e32a10dc2b8b13cedd58988261416e811c1dc4dbdea4f57eea61b0d", size = 16096599 }, { url = "https://files.pythonhosted.org/packages/3d/6d/0e22afd5fcbb4d8d0091f3f46bf4e8906399c458d4293da23292c0ba5022/numpy-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:fce4f615f8ca31b2e61aa0eb5865a21e14f5629515c9151850aa936c02a1ee51", size = 15243932 }, { url = "https://files.pythonhosted.org/packages/03/39/e4e5832820131ba424092b9610d996b37e5557180f8e2d6aebb05c31ae54/numpy-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:67d4cda6fa6ffa073b08c8372aa5fa767ceb10c9a0587c707505a6d426f4e046", size = 17861032 }, { url = "https://files.pythonhosted.org/packages/5f/8a/3794313acbf5e70df2d5c7d2aba8718676f8d054a05abe59e48417fb2981/numpy-2.2.1-cp312-cp312-win32.whl", hash = "sha256:32cb94448be47c500d2c7a95f93e2f21a01f1fd05dd2beea1ccd049bb6001cd2", size = 6274018 }, { url = "https://files.pythonhosted.org/packages/17/c1/c31d3637f2641e25c7a19adf2ae822fdaf4ddd198b05d79a92a9ce7cb63e/numpy-2.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:ba5511d8f31c033a5fcbda22dd5c813630af98c70b2661f2d2c654ae3cdfcfc8", size = 12613843 }, { url = "https://files.pythonhosted.org/packages/20/d6/91a26e671c396e0c10e327b763485ee295f5a5a7a48c553f18417e5a0ed5/numpy-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f1d09e520217618e76396377c81fba6f290d5f926f50c35f3a5f72b01a0da780", size = 20896464 }, { url = "https://files.pythonhosted.org/packages/8c/40/5792ccccd91d45e87d9e00033abc4f6ca8a828467b193f711139ff1f1cd9/numpy-2.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3ecc47cd7f6ea0336042be87d9e7da378e5c7e9b3c8ad0f7c966f714fc10d821", size = 14111350 }, { url = "https://files.pythonhosted.org/packages/c0/2a/fb0a27f846cb857cef0c4c92bef89f133a3a1abb4e16bba1c4dace2e9b49/numpy-2.2.1-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:f419290bc8968a46c4933158c91a0012b7a99bb2e465d5ef5293879742f8797e", size = 5111629 }, { url = "https://files.pythonhosted.org/packages/eb/e5/8e81bb9d84db88b047baf4e8b681a3e48d6390bc4d4e4453eca428ecbb49/numpy-2.2.1-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:5b6c390bfaef8c45a260554888966618328d30e72173697e5cabe6b285fb2348", size = 6645865 }, { url = "https://files.pythonhosted.org/packages/7a/1a/a90ceb191dd2f9e2897c69dde93ccc2d57dd21ce2acbd7b0333e8eea4e8d/numpy-2.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:526fc406ab991a340744aad7e25251dd47a6720a685fa3331e5c59fef5282a59", size = 14043508 }, { url = "https://files.pythonhosted.org/packages/f1/5a/e572284c86a59dec0871a49cd4e5351e20b9c751399d5f1d79628c0542cb/numpy-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f74e6fdeb9a265624ec3a3918430205dff1df7e95a230779746a6af78bc615af", size = 16094100 }, { url = "https://files.pythonhosted.org/packages/0c/2c/a79d24f364788386d85899dd280a94f30b0950be4b4a545f4fa4ed1d4ca7/numpy-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:53c09385ff0b72ba79d8715683c1168c12e0b6e84fb0372e97553d1ea91efe51", size = 15239691 }, { url = "https://files.pythonhosted.org/packages/cf/79/1e20fd1c9ce5a932111f964b544facc5bb9bde7865f5b42f00b4a6a9192b/numpy-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:f3eac17d9ec51be534685ba877b6ab5edc3ab7ec95c8f163e5d7b39859524716", size = 17856571 }, { url = "https://files.pythonhosted.org/packages/be/5b/cc155e107f75d694f562bdc84a26cc930569f3dfdfbccb3420b626065777/numpy-2.2.1-cp313-cp313-win32.whl", hash = "sha256:9ad014faa93dbb52c80d8f4d3dcf855865c876c9660cb9bd7553843dd03a4b1e", size = 6270841 }, { url = "https://files.pythonhosted.org/packages/44/be/0e5cd009d2162e4138d79a5afb3b5d2341f0fe4777ab6e675aa3d4a42e21/numpy-2.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:164a829b6aacf79ca47ba4814b130c4020b202522a93d7bff2202bfb33b61c60", size = 12606618 }, { url = "https://files.pythonhosted.org/packages/a8/87/04ddf02dd86fb17c7485a5f87b605c4437966d53de1e3745d450343a6f56/numpy-2.2.1-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4dfda918a13cc4f81e9118dea249e192ab167a0bb1966272d5503e39234d694e", size = 20921004 }, { url = "https://files.pythonhosted.org/packages/6e/3e/d0e9e32ab14005425d180ef950badf31b862f3839c5b927796648b11f88a/numpy-2.2.1-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:733585f9f4b62e9b3528dd1070ec4f52b8acf64215b60a845fa13ebd73cd0712", size = 14119910 }, { url = "https://files.pythonhosted.org/packages/b5/5b/aa2d1905b04a8fb681e08742bb79a7bddfc160c7ce8e1ff6d5c821be0236/numpy-2.2.1-cp313-cp313t-macosx_14_0_arm64.whl", hash = "sha256:89b16a18e7bba224ce5114db863e7029803c179979e1af6ad6a6b11f70545008", size = 5153612 }, { url = "https://files.pythonhosted.org/packages/ce/35/6831808028df0648d9b43c5df7e1051129aa0d562525bacb70019c5f5030/numpy-2.2.1-cp313-cp313t-macosx_14_0_x86_64.whl", hash = "sha256:676f4eebf6b2d430300f1f4f4c2461685f8269f94c89698d832cdf9277f30b84", size = 6668401 }, { url = "https://files.pythonhosted.org/packages/b1/38/10ef509ad63a5946cc042f98d838daebfe7eaf45b9daaf13df2086b15ff9/numpy-2.2.1-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:27f5cdf9f493b35f7e41e8368e7d7b4bbafaf9660cba53fb21d2cd174ec09631", size = 14014198 }, { url = "https://files.pythonhosted.org/packages/df/f8/c80968ae01df23e249ee0a4487fae55a4c0fe2f838dfe9cc907aa8aea0fa/numpy-2.2.1-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c1ad395cf254c4fbb5b2132fee391f361a6e8c1adbd28f2cd8e79308a615fe9d", size = 16076211 }, { url = "https://files.pythonhosted.org/packages/09/69/05c169376016a0b614b432967ac46ff14269eaffab80040ec03ae1ae8e2c/numpy-2.2.1-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:08ef779aed40dbc52729d6ffe7dd51df85796a702afbf68a4f4e41fafdc8bda5", size = 15220266 }, { url = "https://files.pythonhosted.org/packages/f1/ff/94a4ce67ea909f41cf7ea712aebbe832dc67decad22944a1020bb398a5ee/numpy-2.2.1-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:26c9c4382b19fcfbbed3238a14abf7ff223890ea1936b8890f058e7ba35e8d71", size = 17852844 }, { url = "https://files.pythonhosted.org/packages/46/72/8a5dbce4020dfc595592333ef2fbb0a187d084ca243b67766d29d03e0096/numpy-2.2.1-cp313-cp313t-win32.whl", hash = "sha256:93cf4e045bae74c90ca833cba583c14b62cb4ba2cba0abd2b141ab52548247e2", size = 6326007 }, { url = "https://files.pythonhosted.org/packages/7b/9c/4fce9cf39dde2562584e4cfd351a0140240f82c0e3569ce25a250f47037d/numpy-2.2.1-cp313-cp313t-win_amd64.whl", hash = "sha256:bff7d8ec20f5f42607599f9994770fa65d76edca264a87b5e4ea5629bce12268", size = 12693107 }, { url = "https://files.pythonhosted.org/packages/f1/65/d36a76b811ffe0a4515e290cb05cb0e22171b1b0f0db6bee9141cf023545/numpy-2.2.1-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:7ba9cc93a91d86365a5d270dee221fdc04fb68d7478e6bf6af650de78a8339e3", size = 21044672 }, { url = "https://files.pythonhosted.org/packages/aa/3f/b644199f165063154df486d95198d814578f13dd4d8c1651e075bf1cb8af/numpy-2.2.1-pp310-pypy310_pp73-macosx_14_0_x86_64.whl", hash = "sha256:3d03883435a19794e41f147612a77a8f56d4e52822337844fff3d4040a142964", size = 6789873 }, { url = "https://files.pythonhosted.org/packages/d7/df/2adb0bb98a3cbe8a6c3c6d1019aede1f1d8b83927ced228a46cc56c7a206/numpy-2.2.1-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:4511d9e6071452b944207c8ce46ad2f897307910b402ea5fa975da32e0102800", size = 16194933 }, { url = "https://files.pythonhosted.org/packages/13/3e/1959d5219a9e6d200638d924cedda6a606392f7186a4ed56478252e70d55/numpy-2.2.1-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:5c5cc0cbabe9452038ed984d05ac87910f89370b9242371bd9079cb4af61811e", size = 12820057 }, ] [[package]] name = "orjson" version = "3.10.12" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/e0/04/bb9f72987e7f62fb591d6c880c0caaa16238e4e530cbc3bdc84a7372d75f/orjson-3.10.12.tar.gz", hash = "sha256:0a78bbda3aea0f9f079057ee1ee8a1ecf790d4f1af88dd67493c6b8ee52506ff", size = 5438647 } wheels = [ { url = "https://files.pythonhosted.org/packages/72/d2/78652b67f86d093dca984ce3fa5bf819ee1462627da83e7d0b784a9a7c45/orjson-3.10.12-cp310-cp310-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:ece01a7ec71d9940cc654c482907a6b65df27251255097629d0dea781f255c6d", size = 248688 }, { url = "https://files.pythonhosted.org/packages/70/cb/f8b6a52f3bc724edf8a62d8d1d8ee17cf19d6ae1cac89f077f0e7c30f396/orjson-3.10.12-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c34ec9aebc04f11f4b978dd6caf697a2df2dd9b47d35aa4cc606cabcb9df69d7", size = 136952 }, { url = "https://files.pythonhosted.org/packages/a6/43/c55700df9814545bc8c35d87395ec4b9ee473a3c1f5ed72f8d3ad0298ee9/orjson-3.10.12-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:fd6ec8658da3480939c79b9e9e27e0db31dffcd4ba69c334e98c9976ac29140e", size = 149089 }, { url = "https://files.pythonhosted.org/packages/07/da/e7e7d73bd971710b736fbd8330b8830c5fa4fc0ac003b31af61f03b26dfc/orjson-3.10.12-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:f17e6baf4cf01534c9de8a16c0c611f3d94925d1701bf5f4aff17003677d8ced", size = 140479 }, { url = "https://files.pythonhosted.org/packages/08/49/c9dfddba56ff24eecfacf2f01a76cae4d249ac2995b1359bf63a74b1b318/orjson-3.10.12-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:6402ebb74a14ef96f94a868569f5dccf70d791de49feb73180eb3c6fda2ade56", size = 156564 }, { url = "https://files.pythonhosted.org/packages/96/df/174d2eff227dc23b4540a0c2efa6ec8fe406c442c4b7f0f556242f026d1f/orjson-3.10.12-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0000758ae7c7853e0a4a6063f534c61656ebff644391e1f81698c1b2d2fc8cd2", size = 131282 }, { url = "https://files.pythonhosted.org/packages/6a/96/8628c53a52e2a0a1ee861d809092df72aabbd312c71de9ad6d49e2c039ab/orjson-3.10.12-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:888442dcee99fd1e5bd37a4abb94930915ca6af4db50e23e746cdf4d1e63db13", size = 139764 }, { url = "https://files.pythonhosted.org/packages/38/17/08becb49e59e7bb7b29dc1dad19bc0c48635e627ee27e60eb5b64efcf7b1/orjson-3.10.12-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:c1f7a3ce79246aa0e92f5458d86c54f257fb5dfdc14a192651ba7ec2c00f8a05", size = 131913 }, { url = "https://files.pythonhosted.org/packages/2a/05/f32acc2500e3fafee9445eb8b2a6ff19c4641035e6059c6c8d7bdb3abc9e/orjson-3.10.12-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:802a3935f45605c66fb4a586488a38af63cb37aaad1c1d94c982c40dcc452e85", size = 415782 }, { url = "https://files.pythonhosted.org/packages/06/03/6cc740d998d8bb60e75d4b7e228d18964475239ac842cc1865d49d092545/orjson-3.10.12-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:1da1ef0113a2be19bb6c557fb0ec2d79c92ebd2fed4cfb1b26bab93f021fb885", size = 142383 }, { url = "https://files.pythonhosted.org/packages/f8/30/39cac82547fe021615376245c558b216d3ae8c99bd6b2274f312e49f1c94/orjson-3.10.12-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:7a3273e99f367f137d5b3fecb5e9f45bcdbfac2a8b2f32fbc72129bbd48789c2", size = 130661 }, { url = "https://files.pythonhosted.org/packages/95/29/c6837f4fc1eaa742eaf5abcd767ab6805493f44fe1f72b37c1743706c1d8/orjson-3.10.12-cp310-none-win32.whl", hash = "sha256:475661bf249fd7907d9b0a2a2421b4e684355a77ceef85b8352439a9163418c3", size = 143625 }, { url = "https://files.pythonhosted.org/packages/f6/62/c6b955f2144421108fa441b5471e1d5f8654a7df9840b261106e04d5d15c/orjson-3.10.12-cp310-none-win_amd64.whl", hash = "sha256:87251dc1fb2b9e5ab91ce65d8f4caf21910d99ba8fb24b49fd0c118b2362d509", size = 135075 }, { url = "https://files.pythonhosted.org/packages/d3/48/7c3cd094488f5a3bc58488555244609a8c4d105bc02f2b77e509debf0450/orjson-3.10.12-cp311-cp311-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:a734c62efa42e7df94926d70fe7d37621c783dea9f707a98cdea796964d4cf74", size = 248687 }, { url = "https://files.pythonhosted.org/packages/ff/90/e55f0e25c7fdd1f82551fe787f85df6f378170caca863c04c810cd8f2730/orjson-3.10.12-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:750f8b27259d3409eda8350c2919a58b0cfcd2054ddc1bd317a643afc646ef23", size = 136953 }, { url = "https://files.pythonhosted.org/packages/2a/b3/109c020cf7fee747d400de53b43b183ca9d3ebda3906ad0b858eb5479718/orjson-3.10.12-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bb52c22bfffe2857e7aa13b4622afd0dd9d16ea7cc65fd2bf318d3223b1b6252", size = 149090 }, { url = "https://files.pythonhosted.org/packages/96/d4/35c0275dc1350707d182a1b5da16d1184b9439848060af541285407f18f9/orjson-3.10.12-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:440d9a337ac8c199ff8251e100c62e9488924c92852362cd27af0e67308c16ef", size = 140480 }, { url = "https://files.pythonhosted.org/packages/3b/79/f863ff460c291ad2d882cc3b580cc444bd4ec60c9df55f6901e6c9a3f519/orjson-3.10.12-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:a9e15c06491c69997dfa067369baab3bf094ecb74be9912bdc4339972323f252", size = 156564 }, { url = "https://files.pythonhosted.org/packages/98/7e/8d5835449ddd873424ee7b1c4ba73a0369c1055750990d824081652874d6/orjson-3.10.12-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:362d204ad4b0b8724cf370d0cd917bb2dc913c394030da748a3bb632445ce7c4", size = 131279 }, { url = "https://files.pythonhosted.org/packages/46/f5/d34595b6d7f4f984c6fef289269a7f98abcdc2445ebdf90e9273487dda6b/orjson-3.10.12-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:2b57cbb4031153db37b41622eac67329c7810e5f480fda4cfd30542186f006ae", size = 139764 }, { url = "https://files.pythonhosted.org/packages/b3/5b/ee6e9ddeab54a7b7806768151c2090a2d36025bc346a944f51cf172ef7f7/orjson-3.10.12-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:165c89b53ef03ce0d7c59ca5c82fa65fe13ddf52eeb22e859e58c237d4e33b9b", size = 131915 }, { url = "https://files.pythonhosted.org/packages/c4/45/febee5951aef6db5cd8cdb260548101d7ece0ca9d4ddadadf1766306b7a4/orjson-3.10.12-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:5dee91b8dfd54557c1a1596eb90bcd47dbcd26b0baaed919e6861f076583e9da", size = 415783 }, { url = "https://files.pythonhosted.org/packages/27/a5/5a8569e49f3a6c093bee954a3de95062a231196f59e59df13a48e2420081/orjson-3.10.12-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:77a4e1cfb72de6f905bdff061172adfb3caf7a4578ebf481d8f0530879476c07", size = 142387 }, { url = "https://files.pythonhosted.org/packages/6e/05/02550fb38c5bf758f3994f55401233a2ef304e175f473f2ac6dbf464cc8b/orjson-3.10.12-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:038d42c7bc0606443459b8fe2d1f121db474c49067d8d14c6a075bbea8bf14dd", size = 130664 }, { url = "https://files.pythonhosted.org/packages/8c/f4/ba31019d0646ce51f7ac75af6dabf98fd89dbf8ad87a9086da34710738e7/orjson-3.10.12-cp311-none-win32.whl", hash = "sha256:03b553c02ab39bed249bedd4abe37b2118324d1674e639b33fab3d1dafdf4d79", size = 143623 }, { url = "https://files.pythonhosted.org/packages/83/fe/babf08842b989acf4c46103fefbd7301f026423fab47e6f3ba07b54d7837/orjson-3.10.12-cp311-none-win_amd64.whl", hash = "sha256:8b8713b9e46a45b2af6b96f559bfb13b1e02006f4242c156cbadef27800a55a8", size = 135074 }, { url = "https://files.pythonhosted.org/packages/a1/2f/989adcafad49afb535da56b95d8f87d82e748548b2a86003ac129314079c/orjson-3.10.12-cp312-cp312-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:53206d72eb656ca5ac7d3a7141e83c5bbd3ac30d5eccfe019409177a57634b0d", size = 248678 }, { url = "https://files.pythonhosted.org/packages/69/b9/8c075e21a50c387649db262b618ebb7e4d40f4197b949c146fc225dd23da/orjson-3.10.12-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ac8010afc2150d417ebda810e8df08dd3f544e0dd2acab5370cfa6bcc0662f8f", size = 136763 }, { url = "https://files.pythonhosted.org/packages/87/d3/78edf10b4ab14c19f6d918cf46a145818f4aca2b5a1773c894c5490d3a4c/orjson-3.10.12-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ed459b46012ae950dd2e17150e838ab08215421487371fa79d0eced8d1461d70", size = 149137 }, { url = "https://files.pythonhosted.org/packages/16/81/5db8852bdf990a0ddc997fa8f16b80895b8cc77c0fe3701569ed2b4b9e78/orjson-3.10.12-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:8dcb9673f108a93c1b52bfc51b0af422c2d08d4fc710ce9c839faad25020bb69", size = 140567 }, { url = "https://files.pythonhosted.org/packages/fa/a6/9ce1e3e3db918512efadad489630c25841eb148513d21dab96f6b4157fa1/orjson-3.10.12-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:22a51ae77680c5c4652ebc63a83d5255ac7d65582891d9424b566fb3b5375ee9", size = 156620 }, { url = "https://files.pythonhosted.org/packages/47/d4/05133d6bea24e292d2f7628b1e19986554f7d97b6412b3e51d812e38db2d/orjson-3.10.12-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:910fdf2ac0637b9a77d1aad65f803bac414f0b06f720073438a7bd8906298192", size = 131555 }, { url = "https://files.pythonhosted.org/packages/b9/7a/b3fbffda8743135c7811e95dc2ab7cdbc5f04999b83c2957d046f1b3fac9/orjson-3.10.12-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:24ce85f7100160936bc2116c09d1a8492639418633119a2224114f67f63a4559", size = 139743 }, { url = "https://files.pythonhosted.org/packages/b5/13/95bbcc9a6584aa083da5ce5004ce3d59ea362a542a0b0938d884fd8790b6/orjson-3.10.12-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8a76ba5fc8dd9c913640292df27bff80a685bed3a3c990d59aa6ce24c352f8fc", size = 131733 }, { url = "https://files.pythonhosted.org/packages/e8/29/dddbb2ea6e7af426fcc3da65a370618a88141de75c6603313d70768d1df1/orjson-3.10.12-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:ff70ef093895fd53f4055ca75f93f047e088d1430888ca1229393a7c0521100f", size = 415788 }, { url = "https://files.pythonhosted.org/packages/53/df/4aea59324ac539975919b4705ee086aced38e351a6eb3eea0f5071dd5661/orjson-3.10.12-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:f4244b7018b5753ecd10a6d324ec1f347da130c953a9c88432c7fbc8875d13be", size = 142347 }, { url = "https://files.pythonhosted.org/packages/55/55/a52d83d7c49f8ff44e0daab10554490447d6c658771569e1c662aa7057fe/orjson-3.10.12-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:16135ccca03445f37921fa4b585cff9a58aa8d81ebcb27622e69bfadd220b32c", size = 130829 }, { url = "https://files.pythonhosted.org/packages/a1/8b/b1beb1624dd4adf7d72e2d9b73c4b529e7851c0c754f17858ea13e368b33/orjson-3.10.12-cp312-none-win32.whl", hash = "sha256:2d879c81172d583e34153d524fcba5d4adafbab8349a7b9f16ae511c2cee8708", size = 143659 }, { url = "https://files.pythonhosted.org/packages/13/91/634c9cd0bfc6a857fc8fab9bf1a1bd9f7f3345e0d6ca5c3d4569ceb6dcfa/orjson-3.10.12-cp312-none-win_amd64.whl", hash = "sha256:fc23f691fa0f5c140576b8c365bc942d577d861a9ee1142e4db468e4e17094fb", size = 135221 }, { url = "https://files.pythonhosted.org/packages/1b/bb/3f560735f46fa6f875a9d7c4c2171a58cfb19f56a633d5ad5037a924f35f/orjson-3.10.12-cp313-cp313-macosx_10_15_x86_64.macosx_11_0_arm64.macosx_10_15_universal2.whl", hash = "sha256:47962841b2a8aa9a258b377f5188db31ba49af47d4003a32f55d6f8b19006543", size = 248662 }, { url = "https://files.pythonhosted.org/packages/a3/df/54817902350636cc9270db20486442ab0e4db33b38555300a1159b439d16/orjson-3.10.12-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:6334730e2532e77b6054e87ca84f3072bee308a45a452ea0bffbbbc40a67e296", size = 126055 }, { url = "https://files.pythonhosted.org/packages/2e/77/55835914894e00332601a74540840f7665e81f20b3e2b9a97614af8565ed/orjson-3.10.12-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:accfe93f42713c899fdac2747e8d0d5c659592df2792888c6c5f829472e4f85e", size = 131507 }, { url = "https://files.pythonhosted.org/packages/33/9e/b91288361898e3158062a876b5013c519a5d13e692ac7686e3486c4133ab/orjson-3.10.12-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:a7974c490c014c48810d1dede6c754c3cc46598da758c25ca3b4001ac45b703f", size = 131686 }, { url = "https://files.pythonhosted.org/packages/b2/15/08ce117d60a4d2d3fd24e6b21db463139a658e9f52d22c9c30af279b4187/orjson-3.10.12-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:3f250ce7727b0b2682f834a3facff88e310f52f07a5dcfd852d99637d386e79e", size = 415710 }, { url = "https://files.pythonhosted.org/packages/71/af/c09da5ed58f9c002cf83adff7a4cdf3e6cee742aa9723395f8dcdb397233/orjson-3.10.12-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:f31422ff9486ae484f10ffc51b5ab2a60359e92d0716fcce1b3593d7bb8a9af6", size = 142305 }, { url = "https://files.pythonhosted.org/packages/17/d1/8612038d44f33fae231e9ba480d273bac2b0383ce9e77cb06bede1224ae3/orjson-3.10.12-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:5f29c5d282bb2d577c2a6bbde88d8fdcc4919c593f806aac50133f01b733846e", size = 130815 }, { url = "https://files.pythonhosted.org/packages/67/2c/d5f87834be3591555cfaf9aecdf28f480a6f0b4afeaac53bad534bf9518f/orjson-3.10.12-cp313-none-win32.whl", hash = "sha256:f45653775f38f63dc0e6cd4f14323984c3149c05d6007b58cb154dd080ddc0dc", size = 143664 }, { url = "https://files.pythonhosted.org/packages/6a/05/7d768fa3ca23c9b3e1e09117abeded1501119f1d8de0ab722938c91ab25d/orjson-3.10.12-cp313-none-win_amd64.whl", hash = "sha256:229994d0c376d5bdc91d92b3c9e6be2f1fbabd4cc1b59daae1443a46ee5e9825", size = 134944 }, ] [[package]] name = "packaging" version = "24.2" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/d0/63/68dbb6eb2de9cb10ee4c9c14a0148804425e13c4fb20d61cce69f53106da/packaging-24.2.tar.gz", hash = "sha256:c228a6dc5e932d346bc5739379109d49e8853dd8223571c7c5b55260edc0b97f", size = 163950 } wheels = [ { url = "https://files.pythonhosted.org/packages/88/ef/eb23f262cca3c0c4eb7ab1933c3b1f03d021f2c48f54763065b6f0e321be/packaging-24.2-py3-none-any.whl", hash = "sha256:09abb1bccd265c01f4a3aa3f7a7db064b36514d2cba19a2f694fe6150451a759", size = 65451 }, ] [[package]] name = "pandas" version = "2.2.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, { name = "python-dateutil" }, { name = "pytz" }, { name = "tzdata" }, ] sdist = { url = "https://files.pythonhosted.org/packages/9c/d6/9f8431bacc2e19dca897724cd097b1bb224a6ad5433784a44b587c7c13af/pandas-2.2.3.tar.gz", hash = "sha256:4f18ba62b61d7e192368b84517265a99b4d7ee8912f8708660fb4a366cc82667", size = 4399213 } wheels = [ { url = "https://files.pythonhosted.org/packages/aa/70/c853aec59839bceed032d52010ff5f1b8d87dc3114b762e4ba2727661a3b/pandas-2.2.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:1948ddde24197a0f7add2bdc4ca83bf2b1ef84a1bc8ccffd95eda17fd836ecb5", size = 12580827 }, { url = "https://files.pythonhosted.org/packages/99/f2/c4527768739ffa4469b2b4fff05aa3768a478aed89a2f271a79a40eee984/pandas-2.2.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:381175499d3802cde0eabbaf6324cce0c4f5d52ca6f8c377c29ad442f50f6348", size = 11303897 }, { url = "https://files.pythonhosted.org/packages/ed/12/86c1747ea27989d7a4064f806ce2bae2c6d575b950be087837bdfcabacc9/pandas-2.2.3-cp310-cp310-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:d9c45366def9a3dd85a6454c0e7908f2b3b8e9c138f5dc38fed7ce720d8453ed", size = 66480908 }, { url = "https://files.pythonhosted.org/packages/44/50/7db2cd5e6373ae796f0ddad3675268c8d59fb6076e66f0c339d61cea886b/pandas-2.2.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:86976a1c5b25ae3f8ccae3a5306e443569ee3c3faf444dfd0f41cda24667ad57", size = 13064210 }, { url = "https://files.pythonhosted.org/packages/61/61/a89015a6d5536cb0d6c3ba02cebed51a95538cf83472975275e28ebf7d0c/pandas-2.2.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:b8661b0238a69d7aafe156b7fa86c44b881387509653fdf857bebc5e4008ad42", size = 16754292 }, { url = "https://files.pythonhosted.org/packages/ce/0d/4cc7b69ce37fac07645a94e1d4b0880b15999494372c1523508511b09e40/pandas-2.2.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:37e0aced3e8f539eccf2e099f65cdb9c8aa85109b0be6e93e2baff94264bdc6f", size = 14416379 }, { url = "https://files.pythonhosted.org/packages/31/9e/6ebb433de864a6cd45716af52a4d7a8c3c9aaf3a98368e61db9e69e69a9c/pandas-2.2.3-cp310-cp310-win_amd64.whl", hash = "sha256:56534ce0746a58afaf7942ba4863e0ef81c9c50d3f0ae93e9497d6a41a057645", size = 11598471 }, { url = "https://files.pythonhosted.org/packages/a8/44/d9502bf0ed197ba9bf1103c9867d5904ddcaf869e52329787fc54ed70cc8/pandas-2.2.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:66108071e1b935240e74525006034333f98bcdb87ea116de573a6a0dccb6c039", size = 12602222 }, { url = "https://files.pythonhosted.org/packages/52/11/9eac327a38834f162b8250aab32a6781339c69afe7574368fffe46387edf/pandas-2.2.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:7c2875855b0ff77b2a64a0365e24455d9990730d6431b9e0ee18ad8acee13dbd", size = 11321274 }, { url = "https://files.pythonhosted.org/packages/45/fb/c4beeb084718598ba19aa9f5abbc8aed8b42f90930da861fcb1acdb54c3a/pandas-2.2.3-cp311-cp311-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:cd8d0c3be0515c12fed0bdbae072551c8b54b7192c7b1fda0ba56059a0179698", size = 15579836 }, { url = "https://files.pythonhosted.org/packages/cd/5f/4dba1d39bb9c38d574a9a22548c540177f78ea47b32f99c0ff2ec499fac5/pandas-2.2.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c124333816c3a9b03fbeef3a9f230ba9a737e9e5bb4060aa2107a86cc0a497fc", size = 13058505 }, { url = "https://files.pythonhosted.org/packages/b9/57/708135b90391995361636634df1f1130d03ba456e95bcf576fada459115a/pandas-2.2.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:63cc132e40a2e084cf01adf0775b15ac515ba905d7dcca47e9a251819c575ef3", size = 16744420 }, { url = "https://files.pythonhosted.org/packages/86/4a/03ed6b7ee323cf30404265c284cee9c65c56a212e0a08d9ee06984ba2240/pandas-2.2.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:29401dbfa9ad77319367d36940cd8a0b3a11aba16063e39632d98b0e931ddf32", size = 14440457 }, { url = "https://files.pythonhosted.org/packages/ed/8c/87ddf1fcb55d11f9f847e3c69bb1c6f8e46e2f40ab1a2d2abadb2401b007/pandas-2.2.3-cp311-cp311-win_amd64.whl", hash = "sha256:3fc6873a41186404dad67245896a6e440baacc92f5b716ccd1bc9ed2995ab2c5", size = 11617166 }, { url = "https://files.pythonhosted.org/packages/17/a3/fb2734118db0af37ea7433f57f722c0a56687e14b14690edff0cdb4b7e58/pandas-2.2.3-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:b1d432e8d08679a40e2a6d8b2f9770a5c21793a6f9f47fdd52c5ce1948a5a8a9", size = 12529893 }, { url = "https://files.pythonhosted.org/packages/e1/0c/ad295fd74bfac85358fd579e271cded3ac969de81f62dd0142c426b9da91/pandas-2.2.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:a5a1595fe639f5988ba6a8e5bc9649af3baf26df3998a0abe56c02609392e0a4", size = 11363475 }, { url = "https://files.pythonhosted.org/packages/c6/2a/4bba3f03f7d07207481fed47f5b35f556c7441acddc368ec43d6643c5777/pandas-2.2.3-cp312-cp312-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:5de54125a92bb4d1c051c0659e6fcb75256bf799a732a87184e5ea503965bce3", size = 15188645 }, { url = "https://files.pythonhosted.org/packages/38/f8/d8fddee9ed0d0c0f4a2132c1dfcf0e3e53265055da8df952a53e7eaf178c/pandas-2.2.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fffb8ae78d8af97f849404f21411c95062db1496aeb3e56f146f0355c9989319", size = 12739445 }, { url = "https://files.pythonhosted.org/packages/20/e8/45a05d9c39d2cea61ab175dbe6a2de1d05b679e8de2011da4ee190d7e748/pandas-2.2.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:6dfcb5ee8d4d50c06a51c2fffa6cff6272098ad6540aed1a76d15fb9318194d8", size = 16359235 }, { url = "https://files.pythonhosted.org/packages/1d/99/617d07a6a5e429ff90c90da64d428516605a1ec7d7bea494235e1c3882de/pandas-2.2.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:062309c1b9ea12a50e8ce661145c6aab431b1e99530d3cd60640e255778bd43a", size = 14056756 }, { url = "https://files.pythonhosted.org/packages/29/d4/1244ab8edf173a10fd601f7e13b9566c1b525c4f365d6bee918e68381889/pandas-2.2.3-cp312-cp312-win_amd64.whl", hash = "sha256:59ef3764d0fe818125a5097d2ae867ca3fa64df032331b7e0917cf5d7bf66b13", size = 11504248 }, { url = "https://files.pythonhosted.org/packages/64/22/3b8f4e0ed70644e85cfdcd57454686b9057c6c38d2f74fe4b8bc2527214a/pandas-2.2.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f00d1345d84d8c86a63e476bb4955e46458b304b9575dcf71102b5c705320015", size = 12477643 }, { url = "https://files.pythonhosted.org/packages/e4/93/b3f5d1838500e22c8d793625da672f3eec046b1a99257666c94446969282/pandas-2.2.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:3508d914817e153ad359d7e069d752cdd736a247c322d932eb89e6bc84217f28", size = 11281573 }, { url = "https://files.pythonhosted.org/packages/f5/94/6c79b07f0e5aab1dcfa35a75f4817f5c4f677931d4234afcd75f0e6a66ca/pandas-2.2.3-cp313-cp313-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:22a9d949bfc9a502d320aa04e5d02feab689d61da4e7764b62c30b991c42c5f0", size = 15196085 }, { url = "https://files.pythonhosted.org/packages/e8/31/aa8da88ca0eadbabd0a639788a6da13bb2ff6edbbb9f29aa786450a30a91/pandas-2.2.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f3a255b2c19987fbbe62a9dfd6cff7ff2aa9ccab3fc75218fd4b7530f01efa24", size = 12711809 }, { url = "https://files.pythonhosted.org/packages/ee/7c/c6dbdb0cb2a4344cacfb8de1c5808ca885b2e4dcfde8008266608f9372af/pandas-2.2.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:800250ecdadb6d9c78eae4990da62743b857b470883fa27f652db8bdde7f6659", size = 16356316 }, { url = "https://files.pythonhosted.org/packages/57/b7/8b757e7d92023b832869fa8881a992696a0bfe2e26f72c9ae9f255988d42/pandas-2.2.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:6374c452ff3ec675a8f46fd9ab25c4ad0ba590b71cf0656f8b6daa5202bca3fb", size = 14022055 }, { url = "https://files.pythonhosted.org/packages/3b/bc/4b18e2b8c002572c5a441a64826252ce5da2aa738855747247a971988043/pandas-2.2.3-cp313-cp313-win_amd64.whl", hash = "sha256:61c5ad4043f791b61dd4752191d9f07f0ae412515d59ba8f005832a532f8736d", size = 11481175 }, { url = "https://files.pythonhosted.org/packages/76/a3/a5d88146815e972d40d19247b2c162e88213ef51c7c25993942c39dbf41d/pandas-2.2.3-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:3b71f27954685ee685317063bf13c7709a7ba74fc996b84fc6821c59b0f06468", size = 12615650 }, { url = "https://files.pythonhosted.org/packages/9c/8c/f0fd18f6140ddafc0c24122c8a964e48294acc579d47def376fef12bcb4a/pandas-2.2.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:38cf8125c40dae9d5acc10fa66af8ea6fdf760b2714ee482ca691fc66e6fcb18", size = 11290177 }, { url = "https://files.pythonhosted.org/packages/ed/f9/e995754eab9c0f14c6777401f7eece0943840b7a9fc932221c19d1abee9f/pandas-2.2.3-cp313-cp313t-manylinux2014_aarch64.manylinux_2_17_aarch64.whl", hash = "sha256:ba96630bc17c875161df3818780af30e43be9b166ce51c9a18c1feae342906c2", size = 14651526 }, { url = "https://files.pythonhosted.org/packages/25/b0/98d6ae2e1abac4f35230aa756005e8654649d305df9a28b16b9ae4353bff/pandas-2.2.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:1db71525a1538b30142094edb9adc10be3f3e176748cd7acc2240c2f2e5aa3a4", size = 11871013 }, { url = "https://files.pythonhosted.org/packages/cc/57/0f72a10f9db6a4628744c8e8f0df4e6e21de01212c7c981d31e50ffc8328/pandas-2.2.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:15c0e1e02e93116177d29ff83e8b1619c93ddc9c49083f237d4312337a61165d", size = 15711620 }, { url = "https://files.pythonhosted.org/packages/ab/5f/b38085618b950b79d2d9164a711c52b10aefc0ae6833b96f626b7021b2ed/pandas-2.2.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:ad5b65698ab28ed8d7f18790a0dc58005c7629f227be9ecc1072aa74c0c1d43a", size = 13098436 }, ] [[package]] name = "pandocfilters" version = "1.5.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/70/6f/3dd4940bbe001c06a65f88e36bad298bc7a0de5036115639926b0c5c0458/pandocfilters-1.5.1.tar.gz", hash = "sha256:002b4a555ee4ebc03f8b66307e287fa492e4a77b4ea14d3f934328297bb4939e", size = 8454 } wheels = [ { url = "https://files.pythonhosted.org/packages/ef/af/4fbc8cab944db5d21b7e2a5b8e9211a03a79852b1157e2c102fcc61ac440/pandocfilters-1.5.1-py2.py3-none-any.whl", hash = "sha256:93be382804a9cdb0a7267585f157e5d1731bbe5545a85b268d6f5fe6232de2bc", size = 8663 }, ] [[package]] name = "panel" version = "1.5.5" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "bleach" }, { name = "bokeh" }, { name = "linkify-it-py" }, { name = "markdown" }, { name = "markdown-it-py" }, { name = "mdit-py-plugins" }, { name = "packaging" }, { name = "pandas" }, { name = "param" }, { name = "pyviz-comms" }, { name = "requests" }, { name = "tqdm" }, { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/bc/f6/987dd1a1c1375612f53249cce46ea591aa8e0c4fcd913072e3e05e3f0b01/panel-1.5.5.tar.gz", hash = "sha256:420636b0718b7a65c6d059bb517f4d9ffe651bbc60e7369f52c27d7fa7535bbe", size = 29385620 } wheels = [ { url = "https://files.pythonhosted.org/packages/2e/0a/2020cf87f142348c317e310d9a861c5535b4b19f63c03704e86f1050dda8/panel-1.5.5-py3-none-any.whl", hash = "sha256:31f76fcd3afe3a86b08cf1acb410212bb5e992a815c64fc2300a58b2595156fd", size = 27396553 }, ] [[package]] name = "param" version = "2.2.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/79/5b/244af19409227e81d1424b82e7f71c2b8b283b2911ec87c8a0d5a44357ac/param-2.2.0.tar.gz", hash = "sha256:2ef63ef7aef37412eeb8ee3a06189a51f69c58c068824ae070baecb5b2abd0b8", size = 176845 } wheels = [ { url = "https://files.pythonhosted.org/packages/99/56/370a6636e072a037b52499edd8928942df7f887974fc54444ece5152d26a/param-2.2.0-py3-none-any.whl", hash = "sha256:777f8c7b66ab820b70ea5ad09faaa6818308220caae89da3b5c5f359faa72a5e", size = 119008 }, ] [[package]] name = "parso" version = "0.8.4" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/66/94/68e2e17afaa9169cf6412ab0f28623903be73d1b32e208d9e8e541bb086d/parso-0.8.4.tar.gz", hash = "sha256:eb3a7b58240fb99099a345571deecc0f9540ea5f4dd2fe14c2a99d6b281ab92d", size = 400609 } wheels = [ { url = "https://files.pythonhosted.org/packages/c6/ac/dac4a63f978e4dcb3c6d3a78c4d8e0192a113d288502a1216950c41b1027/parso-0.8.4-py2.py3-none-any.whl", hash = "sha256:a418670a20291dacd2dddc80c377c5c3791378ee1e8d12bffc35420643d43f18", size = 103650 }, ] [[package]] name = "pbr" version = "6.1.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/b2/35/80cf8f6a4f34017a7fe28242dc45161a1baa55c41563c354d8147e8358b2/pbr-6.1.0.tar.gz", hash = "sha256:788183e382e3d1d7707db08978239965e8b9e4e5ed42669bf4758186734d5f24", size = 124032 } wheels = [ { url = "https://files.pythonhosted.org/packages/1d/44/6a65ecd630393d47ad3e7d5354768cb7f9a10b3a0eb2cd8c6f52b28211ee/pbr-6.1.0-py2.py3-none-any.whl", hash = "sha256:a776ae228892d8013649c0aeccbb3d5f99ee15e005a4cbb7e61d55a067b28a2a", size = 108529 }, ] [[package]] name = "pexpect" version = "4.9.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "ptyprocess" }, ] sdist = { url = "https://files.pythonhosted.org/packages/42/92/cc564bf6381ff43ce1f4d06852fc19a2f11d180f23dc32d9588bee2f149d/pexpect-4.9.0.tar.gz", hash = "sha256:ee7d41123f3c9911050ea2c2dac107568dc43b2d3b0c7557a33212c398ead30f", size = 166450 } wheels = [ { url = "https://files.pythonhosted.org/packages/9e/c3/059298687310d527a58bb01f3b1965787ee3b40dce76752eda8b44e9a2c5/pexpect-4.9.0-py2.py3-none-any.whl", hash = "sha256:7236d1e080e4936be2dc3e326cec0af72acf9212a7e1d060210e70a47e253523", size = 63772 }, ] [[package]] name = "pillow" version = "11.0.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/a5/26/0d95c04c868f6bdb0c447e3ee2de5564411845e36a858cfd63766bc7b563/pillow-11.0.0.tar.gz", hash = "sha256:72bacbaf24ac003fea9bff9837d1eedb6088758d41e100c1552930151f677739", size = 46737780 } wheels = [ { url = "https://files.pythonhosted.org/packages/98/fb/a6ce6836bd7fd93fbf9144bf54789e02babc27403b50a9e1583ee877d6da/pillow-11.0.0-cp310-cp310-macosx_10_10_x86_64.whl", hash = "sha256:6619654954dc4936fcff82db8eb6401d3159ec6be81e33c6000dfd76ae189947", size = 3154708 }, { url = "https://files.pythonhosted.org/packages/6a/1d/1f51e6e912d8ff316bb3935a8cda617c801783e0b998bf7a894e91d3bd4c/pillow-11.0.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:b3c5ac4bed7519088103d9450a1107f76308ecf91d6dabc8a33a2fcfb18d0fba", size = 2979223 }, { url = "https://files.pythonhosted.org/packages/90/83/e2077b0192ca8a9ef794dbb74700c7e48384706467067976c2a95a0f40a1/pillow-11.0.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a65149d8ada1055029fcb665452b2814fe7d7082fcb0c5bed6db851cb69b2086", size = 4183167 }, { url = "https://files.pythonhosted.org/packages/0e/74/467af0146970a98349cdf39e9b79a6cc8a2e7558f2c01c28a7b6b85c5bda/pillow-11.0.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:88a58d8ac0cc0e7f3a014509f0455248a76629ca9b604eca7dc5927cc593c5e9", size = 4283912 }, { url = "https://files.pythonhosted.org/packages/85/b1/d95d4f7ca3a6c1ae120959605875a31a3c209c4e50f0029dc1a87566cf46/pillow-11.0.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:c26845094b1af3c91852745ae78e3ea47abf3dbcd1cf962f16b9a5fbe3ee8488", size = 4195815 }, { url = "https://files.pythonhosted.org/packages/41/c3/94f33af0762ed76b5a237c5797e088aa57f2b7fa8ee7932d399087be66a8/pillow-11.0.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:1a61b54f87ab5786b8479f81c4b11f4d61702830354520837f8cc791ebba0f5f", size = 4366117 }, { url = "https://files.pythonhosted.org/packages/ba/3c/443e7ef01f597497268899e1cca95c0de947c9bbf77a8f18b3c126681e5d/pillow-11.0.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:674629ff60030d144b7bca2b8330225a9b11c482ed408813924619c6f302fdbb", size = 4278607 }, { url = "https://files.pythonhosted.org/packages/26/95/1495304448b0081e60c0c5d63f928ef48bb290acee7385804426fa395a21/pillow-11.0.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:598b4e238f13276e0008299bd2482003f48158e2b11826862b1eb2ad7c768b97", size = 4410685 }, { url = "https://files.pythonhosted.org/packages/45/da/861e1df971ef0de9870720cb309ca4d553b26a9483ec9be3a7bf1de4a095/pillow-11.0.0-cp310-cp310-win32.whl", hash = "sha256:9a0f748eaa434a41fccf8e1ee7a3eed68af1b690e75328fd7a60af123c193b50", size = 2249185 }, { url = "https://files.pythonhosted.org/packages/d5/4e/78f7c5202ea2a772a5ab05069c1b82503e6353cd79c7e474d4945f4b82c3/pillow-11.0.0-cp310-cp310-win_amd64.whl", hash = "sha256:a5629742881bcbc1f42e840af185fd4d83a5edeb96475a575f4da50d6ede337c", size = 2566726 }, { url = "https://files.pythonhosted.org/packages/77/e4/6e84eada35cbcc646fc1870f72ccfd4afacb0fae0c37ffbffe7f5dc24bf1/pillow-11.0.0-cp310-cp310-win_arm64.whl", hash = "sha256:ee217c198f2e41f184f3869f3e485557296d505b5195c513b2bfe0062dc537f1", size = 2254585 }, { url = "https://files.pythonhosted.org/packages/f0/eb/f7e21b113dd48a9c97d364e0915b3988c6a0b6207652f5a92372871b7aa4/pillow-11.0.0-cp311-cp311-macosx_10_10_x86_64.whl", hash = "sha256:1c1d72714f429a521d8d2d018badc42414c3077eb187a59579f28e4270b4b0fc", size = 3154705 }, { url = "https://files.pythonhosted.org/packages/25/b3/2b54a1d541accebe6bd8b1358b34ceb2c509f51cb7dcda8687362490da5b/pillow-11.0.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:499c3a1b0d6fc8213519e193796eb1a86a1be4b1877d678b30f83fd979811d1a", size = 2979222 }, { url = "https://files.pythonhosted.org/packages/20/12/1a41eddad8265c5c19dda8fb6c269ce15ee25e0b9f8f26286e6202df6693/pillow-11.0.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c8b2351c85d855293a299038e1f89db92a2f35e8d2f783489c6f0b2b5f3fe8a3", size = 4190220 }, { url = "https://files.pythonhosted.org/packages/a9/9b/8a8c4d07d77447b7457164b861d18f5a31ae6418ef5c07f6f878fa09039a/pillow-11.0.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6f4dba50cfa56f910241eb7f883c20f1e7b1d8f7d91c750cd0b318bad443f4d5", size = 4291399 }, { url = "https://files.pythonhosted.org/packages/fc/e4/130c5fab4a54d3991129800dd2801feeb4b118d7630148cd67f0e6269d4c/pillow-11.0.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:5ddbfd761ee00c12ee1be86c9c0683ecf5bb14c9772ddbd782085779a63dd55b", size = 4202709 }, { url = "https://files.pythonhosted.org/packages/39/63/b3fc299528d7df1f678b0666002b37affe6b8751225c3d9c12cf530e73ed/pillow-11.0.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:45c566eb10b8967d71bf1ab8e4a525e5a93519e29ea071459ce517f6b903d7fa", size = 4372556 }, { url = "https://files.pythonhosted.org/packages/c6/a6/694122c55b855b586c26c694937d36bb8d3b09c735ff41b2f315c6e66a10/pillow-11.0.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:b4fd7bd29610a83a8c9b564d457cf5bd92b4e11e79a4ee4716a63c959699b306", size = 4287187 }, { url = "https://files.pythonhosted.org/packages/ba/a9/f9d763e2671a8acd53d29b1e284ca298bc10a595527f6be30233cdb9659d/pillow-11.0.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:cb929ca942d0ec4fac404cbf520ee6cac37bf35be479b970c4ffadf2b6a1cad9", size = 4418468 }, { url = "https://files.pythonhosted.org/packages/6e/0e/b5cbad2621377f11313a94aeb44ca55a9639adabcaaa073597a1925f8c26/pillow-11.0.0-cp311-cp311-win32.whl", hash = "sha256:006bcdd307cc47ba43e924099a038cbf9591062e6c50e570819743f5607404f5", size = 2249249 }, { url = "https://files.pythonhosted.org/packages/dc/83/1470c220a4ff06cd75fc609068f6605e567ea51df70557555c2ab6516b2c/pillow-11.0.0-cp311-cp311-win_amd64.whl", hash = "sha256:52a2d8323a465f84faaba5236567d212c3668f2ab53e1c74c15583cf507a0291", size = 2566769 }, { url = "https://files.pythonhosted.org/packages/52/98/def78c3a23acee2bcdb2e52005fb2810ed54305602ec1bfcfab2bda6f49f/pillow-11.0.0-cp311-cp311-win_arm64.whl", hash = "sha256:16095692a253047fe3ec028e951fa4221a1f3ed3d80c397e83541a3037ff67c9", size = 2254611 }, { url = "https://files.pythonhosted.org/packages/1c/a3/26e606ff0b2daaf120543e537311fa3ae2eb6bf061490e4fea51771540be/pillow-11.0.0-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d2c0a187a92a1cb5ef2c8ed5412dd8d4334272617f532d4ad4de31e0495bd923", size = 3147642 }, { url = "https://files.pythonhosted.org/packages/4f/d5/1caabedd8863526a6cfa44ee7a833bd97f945dc1d56824d6d76e11731939/pillow-11.0.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:084a07ef0821cfe4858fe86652fffac8e187b6ae677e9906e192aafcc1b69903", size = 2978999 }, { url = "https://files.pythonhosted.org/packages/d9/ff/5a45000826a1aa1ac6874b3ec5a856474821a1b59d838c4f6ce2ee518fe9/pillow-11.0.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8069c5179902dcdce0be9bfc8235347fdbac249d23bd90514b7a47a72d9fecf4", size = 4196794 }, { url = "https://files.pythonhosted.org/packages/9d/21/84c9f287d17180f26263b5f5c8fb201de0f88b1afddf8a2597a5c9fe787f/pillow-11.0.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f02541ef64077f22bf4924f225c0fd1248c168f86e4b7abdedd87d6ebaceab0f", size = 4300762 }, { url = "https://files.pythonhosted.org/packages/84/39/63fb87cd07cc541438b448b1fed467c4d687ad18aa786a7f8e67b255d1aa/pillow-11.0.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:fcb4621042ac4b7865c179bb972ed0da0218a076dc1820ffc48b1d74c1e37fe9", size = 4210468 }, { url = "https://files.pythonhosted.org/packages/7f/42/6e0f2c2d5c60f499aa29be14f860dd4539de322cd8fb84ee01553493fb4d/pillow-11.0.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:00177a63030d612148e659b55ba99527803288cea7c75fb05766ab7981a8c1b7", size = 4381824 }, { url = "https://files.pythonhosted.org/packages/31/69/1ef0fb9d2f8d2d114db982b78ca4eeb9db9a29f7477821e160b8c1253f67/pillow-11.0.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:8853a3bf12afddfdf15f57c4b02d7ded92c7a75a5d7331d19f4f9572a89c17e6", size = 4296436 }, { url = "https://files.pythonhosted.org/packages/44/ea/dad2818c675c44f6012289a7c4f46068c548768bc6c7f4e8c4ae5bbbc811/pillow-11.0.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:3107c66e43bda25359d5ef446f59c497de2b5ed4c7fdba0894f8d6cf3822dafc", size = 4429714 }, { url = "https://files.pythonhosted.org/packages/af/3a/da80224a6eb15bba7a0dcb2346e2b686bb9bf98378c0b4353cd88e62b171/pillow-11.0.0-cp312-cp312-win32.whl", hash = "sha256:86510e3f5eca0ab87429dd77fafc04693195eec7fd6a137c389c3eeb4cfb77c6", size = 2249631 }, { url = "https://files.pythonhosted.org/packages/57/97/73f756c338c1d86bb802ee88c3cab015ad7ce4b838f8a24f16b676b1ac7c/pillow-11.0.0-cp312-cp312-win_amd64.whl", hash = "sha256:8ec4a89295cd6cd4d1058a5e6aec6bf51e0eaaf9714774e1bfac7cfc9051db47", size = 2567533 }, { url = "https://files.pythonhosted.org/packages/0b/30/2b61876e2722374558b871dfbfcbe4e406626d63f4f6ed92e9c8e24cac37/pillow-11.0.0-cp312-cp312-win_arm64.whl", hash = "sha256:27a7860107500d813fcd203b4ea19b04babe79448268403172782754870dac25", size = 2254890 }, { url = "https://files.pythonhosted.org/packages/63/24/e2e15e392d00fcf4215907465d8ec2a2f23bcec1481a8ebe4ae760459995/pillow-11.0.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:bcd1fb5bb7b07f64c15618c89efcc2cfa3e95f0e3bcdbaf4642509de1942a699", size = 3147300 }, { url = "https://files.pythonhosted.org/packages/43/72/92ad4afaa2afc233dc44184adff289c2e77e8cd916b3ddb72ac69495bda3/pillow-11.0.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:0e038b0745997c7dcaae350d35859c9715c71e92ffb7e0f4a8e8a16732150f38", size = 2978742 }, { url = "https://files.pythonhosted.org/packages/9e/da/c8d69c5bc85d72a8523fe862f05ababdc52c0a755cfe3d362656bb86552b/pillow-11.0.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ae08bd8ffc41aebf578c2af2f9d8749d91f448b3bfd41d7d9ff573d74f2a6b2", size = 4194349 }, { url = "https://files.pythonhosted.org/packages/cd/e8/686d0caeed6b998351d57796496a70185376ed9c8ec7d99e1d19ad591fc6/pillow-11.0.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:d69bfd8ec3219ae71bcde1f942b728903cad25fafe3100ba2258b973bd2bc1b2", size = 4298714 }, { url = "https://files.pythonhosted.org/packages/ec/da/430015cec620d622f06854be67fd2f6721f52fc17fca8ac34b32e2d60739/pillow-11.0.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:61b887f9ddba63ddf62fd02a3ba7add935d053b6dd7d58998c630e6dbade8527", size = 4208514 }, { url = "https://files.pythonhosted.org/packages/44/ae/7e4f6662a9b1cb5f92b9cc9cab8321c381ffbee309210940e57432a4063a/pillow-11.0.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:c6a660307ca9d4867caa8d9ca2c2658ab685de83792d1876274991adec7b93fa", size = 4380055 }, { url = "https://files.pythonhosted.org/packages/74/d5/1a807779ac8a0eeed57f2b92a3c32ea1b696e6140c15bd42eaf908a261cd/pillow-11.0.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:73e3a0200cdda995c7e43dd47436c1548f87a30bb27fb871f352a22ab8dcf45f", size = 4296751 }, { url = "https://files.pythonhosted.org/packages/38/8c/5fa3385163ee7080bc13026d59656267daaaaf3c728c233d530e2c2757c8/pillow-11.0.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:fba162b8872d30fea8c52b258a542c5dfd7b235fb5cb352240c8d63b414013eb", size = 4430378 }, { url = "https://files.pythonhosted.org/packages/ca/1d/ad9c14811133977ff87035bf426875b93097fb50af747793f013979facdb/pillow-11.0.0-cp313-cp313-win32.whl", hash = "sha256:f1b82c27e89fffc6da125d5eb0ca6e68017faf5efc078128cfaa42cf5cb38798", size = 2249588 }, { url = "https://files.pythonhosted.org/packages/fb/01/3755ba287dac715e6afdb333cb1f6d69740a7475220b4637b5ce3d78cec2/pillow-11.0.0-cp313-cp313-win_amd64.whl", hash = "sha256:8ba470552b48e5835f1d23ecb936bb7f71d206f9dfeee64245f30c3270b994de", size = 2567509 }, { url = "https://files.pythonhosted.org/packages/c0/98/2c7d727079b6be1aba82d195767d35fcc2d32204c7a5820f822df5330152/pillow-11.0.0-cp313-cp313-win_arm64.whl", hash = "sha256:846e193e103b41e984ac921b335df59195356ce3f71dcfd155aa79c603873b84", size = 2254791 }, { url = "https://files.pythonhosted.org/packages/eb/38/998b04cc6f474e78b563716b20eecf42a2fa16a84589d23c8898e64b0ffd/pillow-11.0.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:4ad70c4214f67d7466bea6a08061eba35c01b1b89eaa098040a35272a8efb22b", size = 3150854 }, { url = "https://files.pythonhosted.org/packages/13/8e/be23a96292113c6cb26b2aa3c8b3681ec62b44ed5c2bd0b258bd59503d3c/pillow-11.0.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:6ec0d5af64f2e3d64a165f490d96368bb5dea8b8f9ad04487f9ab60dc4bb6003", size = 2982369 }, { url = "https://files.pythonhosted.org/packages/97/8a/3db4eaabb7a2ae8203cd3a332a005e4aba00067fc514aaaf3e9721be31f1/pillow-11.0.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:c809a70e43c7977c4a42aefd62f0131823ebf7dd73556fa5d5950f5b354087e2", size = 4333703 }, { url = "https://files.pythonhosted.org/packages/28/ac/629ffc84ff67b9228fe87a97272ab125bbd4dc462745f35f192d37b822f1/pillow-11.0.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:4b60c9520f7207aaf2e1d94de026682fc227806c6e1f55bba7606d1c94dd623a", size = 4412550 }, { url = "https://files.pythonhosted.org/packages/d6/07/a505921d36bb2df6868806eaf56ef58699c16c388e378b0dcdb6e5b2fb36/pillow-11.0.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:1e2688958a840c822279fda0086fec1fdab2f95bf2b717b66871c4ad9859d7e8", size = 4461038 }, { url = "https://files.pythonhosted.org/packages/d6/b9/fb620dd47fc7cc9678af8f8bd8c772034ca4977237049287e99dda360b66/pillow-11.0.0-cp313-cp313t-win32.whl", hash = "sha256:607bbe123c74e272e381a8d1957083a9463401f7bd01287f50521ecb05a313f8", size = 2253197 }, { url = "https://files.pythonhosted.org/packages/df/86/25dde85c06c89d7fc5db17940f07aae0a56ac69aa9ccb5eb0f09798862a8/pillow-11.0.0-cp313-cp313t-win_amd64.whl", hash = "sha256:5c39ed17edea3bc69c743a8dd3e9853b7509625c2462532e62baa0732163a904", size = 2572169 }, { url = "https://files.pythonhosted.org/packages/51/85/9c33f2517add612e17f3381aee7c4072779130c634921a756c97bc29fb49/pillow-11.0.0-cp313-cp313t-win_arm64.whl", hash = "sha256:75acbbeb05b86bc53cbe7b7e6fe00fbcf82ad7c684b3ad82e3d711da9ba287d3", size = 2256828 }, { url = "https://files.pythonhosted.org/packages/36/57/42a4dd825eab762ba9e690d696d894ba366e06791936056e26e099398cda/pillow-11.0.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:1187739620f2b365de756ce086fdb3604573337cc28a0d3ac4a01ab6b2d2a6d2", size = 3119239 }, { url = "https://files.pythonhosted.org/packages/98/f7/25f9f9e368226a1d6cf3507081a1a7944eddd3ca7821023377043f5a83c8/pillow-11.0.0-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:fbbcb7b57dc9c794843e3d1258c0fbf0f48656d46ffe9e09b63bbd6e8cd5d0a2", size = 2950803 }, { url = "https://files.pythonhosted.org/packages/59/01/98ead48a6c2e31e6185d4c16c978a67fe3ccb5da5c2ff2ba8475379bb693/pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d203af30149ae339ad1b4f710d9844ed8796e97fda23ffbc4cc472968a47d0b", size = 3281098 }, { url = "https://files.pythonhosted.org/packages/51/c0/570255b2866a0e4d500a14f950803a2ec273bac7badc43320120b9262450/pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:21a0d3b115009ebb8ac3d2ebec5c2982cc693da935f4ab7bb5c8ebe2f47d36f2", size = 3323665 }, { url = "https://files.pythonhosted.org/packages/0e/75/689b4ec0483c42bfc7d1aacd32ade7a226db4f4fac57c6fdcdf90c0731e3/pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_aarch64.whl", hash = "sha256:73853108f56df97baf2bb8b522f3578221e56f646ba345a372c78326710d3830", size = 3310533 }, { url = "https://files.pythonhosted.org/packages/3d/30/38bd6149cf53da1db4bad304c543ade775d225961c4310f30425995cb9ec/pillow-11.0.0-pp310-pypy310_pp73-manylinux_2_28_x86_64.whl", hash = "sha256:e58876c91f97b0952eb766123bfef372792ab3f4e3e1f1a2267834c2ab131734", size = 3414886 }, { url = "https://files.pythonhosted.org/packages/ec/3d/c32a51d848401bd94cabb8767a39621496491ee7cd5199856b77da9b18ad/pillow-11.0.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:224aaa38177597bb179f3ec87eeefcce8e4f85e608025e9cfac60de237ba6316", size = 2567508 }, ] [[package]] name = "platformdirs" version = "4.3.6" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/13/fc/128cc9cb8f03208bdbf93d3aa862e16d376844a14f9a0ce5cf4507372de4/platformdirs-4.3.6.tar.gz", hash = "sha256:357fb2acbc885b0419afd3ce3ed34564c13c9b95c89360cd9563f73aa5e2b907", size = 21302 } wheels = [ { url = "https://files.pythonhosted.org/packages/3c/a6/bc1012356d8ece4d66dd75c4b9fc6c1f6650ddd5991e421177d9f8f671be/platformdirs-4.3.6-py3-none-any.whl", hash = "sha256:73e575e1408ab8103900836b97580d5307456908a03e92031bab39e4554cc3fb", size = 18439 }, ] [[package]] name = "pluggy" version = "1.5.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/96/2d/02d4312c973c6050a18b314a5ad0b3210edb65a906f868e31c111dede4a6/pluggy-1.5.0.tar.gz", hash = "sha256:2cffa88e94fdc978c4c574f15f9e59b7f4201d439195c3715ca9e2486f1d0cf1", size = 67955 } wheels = [ { url = "https://files.pythonhosted.org/packages/88/5f/e351af9a41f866ac3f1fac4ca0613908d9a41741cfcf2228f4ad853b697d/pluggy-1.5.0-py3-none-any.whl", hash = "sha256:44e1ad92c8ca002de6377e165f3e0f1be63266ab4d554740532335b9d75ea669", size = 20556 }, ] [[package]] name = "pre-commit" version = "4.0.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "cfgv" }, { name = "identify" }, { name = "nodeenv" }, { name = "pyyaml" }, { name = "virtualenv" }, ] sdist = { url = "https://files.pythonhosted.org/packages/2e/c8/e22c292035f1bac8b9f5237a2622305bc0304e776080b246f3df57c4ff9f/pre_commit-4.0.1.tar.gz", hash = "sha256:80905ac375958c0444c65e9cebebd948b3cdb518f335a091a670a89d652139d2", size = 191678 } wheels = [ { url = "https://files.pythonhosted.org/packages/16/8f/496e10d51edd6671ebe0432e33ff800aa86775d2d147ce7d43389324a525/pre_commit-4.0.1-py2.py3-none-any.whl", hash = "sha256:efde913840816312445dc98787724647c65473daefe420785f885e8ed9a06878", size = 218713 }, ] [[package]] name = "prompt-toolkit" version = "3.0.48" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "wcwidth" }, ] sdist = { url = "https://files.pythonhosted.org/packages/2d/4f/feb5e137aff82f7c7f3248267b97451da3644f6cdc218edfe549fb354127/prompt_toolkit-3.0.48.tar.gz", hash = "sha256:d6623ab0477a80df74e646bdbc93621143f5caf104206aa29294d53de1a03d90", size = 424684 } wheels = [ { url = "https://files.pythonhosted.org/packages/a9/6a/fd08d94654f7e67c52ca30523a178b3f8ccc4237fce4be90d39c938a831a/prompt_toolkit-3.0.48-py3-none-any.whl", hash = "sha256:f49a827f90062e411f1ce1f854f2aedb3c23353244f8108b89283587397ac10e", size = 386595 }, ] [[package]] name = "propcache" version = "0.2.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/20/c8/2a13f78d82211490855b2fb303b6721348d0787fdd9a12ac46d99d3acde1/propcache-0.2.1.tar.gz", hash = "sha256:3f77ce728b19cb537714499928fe800c3dda29e8d9428778fc7c186da4c09a64", size = 41735 } wheels = [ { url = "https://files.pythonhosted.org/packages/a7/a5/0ea64c9426959ef145a938e38c832fc551843481d356713ececa9a8a64e8/propcache-0.2.1-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:6b3f39a85d671436ee3d12c017f8fdea38509e4f25b28eb25877293c98c243f6", size = 79296 }, { url = "https://files.pythonhosted.org/packages/76/5a/916db1aba735f55e5eca4733eea4d1973845cf77dfe67c2381a2ca3ce52d/propcache-0.2.1-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:39d51fbe4285d5db5d92a929e3e21536ea3dd43732c5b177c7ef03f918dff9f2", size = 45622 }, { url = "https://files.pythonhosted.org/packages/2d/62/685d3cf268b8401ec12b250b925b21d152b9d193b7bffa5fdc4815c392c2/propcache-0.2.1-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:6445804cf4ec763dc70de65a3b0d9954e868609e83850a47ca4f0cb64bd79fea", size = 45133 }, { url = "https://files.pythonhosted.org/packages/4d/3d/31c9c29ee7192defc05aa4d01624fd85a41cf98e5922aaed206017329944/propcache-0.2.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f9479aa06a793c5aeba49ce5c5692ffb51fcd9a7016e017d555d5e2b0045d212", size = 204809 }, { url = "https://files.pythonhosted.org/packages/10/a1/e4050776f4797fc86140ac9a480d5dc069fbfa9d499fe5c5d2fa1ae71f07/propcache-0.2.1-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d9631c5e8b5b3a0fda99cb0d29c18133bca1e18aea9effe55adb3da1adef80d3", size = 219109 }, { url = "https://files.pythonhosted.org/packages/c9/c0/e7ae0df76343d5e107d81e59acc085cea5fd36a48aa53ef09add7503e888/propcache-0.2.1-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3156628250f46a0895f1f36e1d4fbe062a1af8718ec3ebeb746f1d23f0c5dc4d", size = 217368 }, { url = "https://files.pythonhosted.org/packages/fc/e1/e0a2ed6394b5772508868a977d3238f4afb2eebaf9976f0b44a8d347ad63/propcache-0.2.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6b6fb63ae352e13748289f04f37868099e69dba4c2b3e271c46061e82c745634", size = 205124 }, { url = "https://files.pythonhosted.org/packages/50/c1/e388c232d15ca10f233c778bbdc1034ba53ede14c207a72008de45b2db2e/propcache-0.2.1-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:887d9b0a65404929641a9fabb6452b07fe4572b269d901d622d8a34a4e9043b2", size = 195463 }, { url = "https://files.pythonhosted.org/packages/0a/fd/71b349b9def426cc73813dbd0f33e266de77305e337c8c12bfb0a2a82bfb/propcache-0.2.1-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:a96dc1fa45bd8c407a0af03b2d5218392729e1822b0c32e62c5bf7eeb5fb3958", size = 198358 }, { url = "https://files.pythonhosted.org/packages/02/f2/d7c497cd148ebfc5b0ae32808e6c1af5922215fe38c7a06e4e722fe937c8/propcache-0.2.1-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:a7e65eb5c003a303b94aa2c3852ef130230ec79e349632d030e9571b87c4698c", size = 195560 }, { url = "https://files.pythonhosted.org/packages/bb/57/f37041bbe5e0dfed80a3f6be2612a3a75b9cfe2652abf2c99bef3455bbad/propcache-0.2.1-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:999779addc413181912e984b942fbcc951be1f5b3663cd80b2687758f434c583", size = 196895 }, { url = "https://files.pythonhosted.org/packages/83/36/ae3cc3e4f310bff2f064e3d2ed5558935cc7778d6f827dce74dcfa125304/propcache-0.2.1-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:19a0f89a7bb9d8048d9c4370c9c543c396e894c76be5525f5e1ad287f1750ddf", size = 207124 }, { url = "https://files.pythonhosted.org/packages/8c/c4/811b9f311f10ce9d31a32ff14ce58500458443627e4df4ae9c264defba7f/propcache-0.2.1-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:1ac2f5fe02fa75f56e1ad473f1175e11f475606ec9bd0be2e78e4734ad575034", size = 210442 }, { url = "https://files.pythonhosted.org/packages/18/dd/a1670d483a61ecac0d7fc4305d91caaac7a8fc1b200ea3965a01cf03bced/propcache-0.2.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:574faa3b79e8ebac7cb1d7930f51184ba1ccf69adfdec53a12f319a06030a68b", size = 203219 }, { url = "https://files.pythonhosted.org/packages/f9/2d/30ced5afde41b099b2dc0c6573b66b45d16d73090e85655f1a30c5a24e07/propcache-0.2.1-cp310-cp310-win32.whl", hash = "sha256:03ff9d3f665769b2a85e6157ac8b439644f2d7fd17615a82fa55739bc97863f4", size = 40313 }, { url = "https://files.pythonhosted.org/packages/23/84/bd9b207ac80da237af77aa6e153b08ffa83264b1c7882495984fcbfcf85c/propcache-0.2.1-cp310-cp310-win_amd64.whl", hash = "sha256:2d3af2e79991102678f53e0dbf4c35de99b6b8b58f29a27ca0325816364caaba", size = 44428 }, { url = "https://files.pythonhosted.org/packages/bc/0f/2913b6791ebefb2b25b4efd4bb2299c985e09786b9f5b19184a88e5778dd/propcache-0.2.1-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:1ffc3cca89bb438fb9c95c13fc874012f7b9466b89328c3c8b1aa93cdcfadd16", size = 79297 }, { url = "https://files.pythonhosted.org/packages/cf/73/af2053aeccd40b05d6e19058419ac77674daecdd32478088b79375b9ab54/propcache-0.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:f174bbd484294ed9fdf09437f889f95807e5f229d5d93588d34e92106fbf6717", size = 45611 }, { url = "https://files.pythonhosted.org/packages/3c/09/8386115ba7775ea3b9537730e8cf718d83bbf95bffe30757ccf37ec4e5da/propcache-0.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:70693319e0b8fd35dd863e3e29513875eb15c51945bf32519ef52927ca883bc3", size = 45146 }, { url = "https://files.pythonhosted.org/packages/03/7a/793aa12f0537b2e520bf09f4c6833706b63170a211ad042ca71cbf79d9cb/propcache-0.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b480c6a4e1138e1aa137c0079b9b6305ec6dcc1098a8ca5196283e8a49df95a9", size = 232136 }, { url = "https://files.pythonhosted.org/packages/f1/38/b921b3168d72111769f648314100558c2ea1d52eb3d1ba7ea5c4aa6f9848/propcache-0.2.1-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:d27b84d5880f6d8aa9ae3edb253c59d9f6642ffbb2c889b78b60361eed449787", size = 239706 }, { url = "https://files.pythonhosted.org/packages/14/29/4636f500c69b5edea7786db3c34eb6166f3384b905665ce312a6e42c720c/propcache-0.2.1-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:857112b22acd417c40fa4595db2fe28ab900c8c5fe4670c7989b1c0230955465", size = 238531 }, { url = "https://files.pythonhosted.org/packages/85/14/01fe53580a8e1734ebb704a3482b7829a0ef4ea68d356141cf0994d9659b/propcache-0.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:cf6c4150f8c0e32d241436526f3c3f9cbd34429492abddbada2ffcff506c51af", size = 231063 }, { url = "https://files.pythonhosted.org/packages/33/5c/1d961299f3c3b8438301ccfbff0143b69afcc30c05fa28673cface692305/propcache-0.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:66d4cfda1d8ed687daa4bc0274fcfd5267873db9a5bc0418c2da19273040eeb7", size = 220134 }, { url = "https://files.pythonhosted.org/packages/00/d0/ed735e76db279ba67a7d3b45ba4c654e7b02bc2f8050671ec365d8665e21/propcache-0.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:c2f992c07c0fca81655066705beae35fc95a2fa7366467366db627d9f2ee097f", size = 220009 }, { url = "https://files.pythonhosted.org/packages/75/90/ee8fab7304ad6533872fee982cfff5a53b63d095d78140827d93de22e2d4/propcache-0.2.1-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:4a571d97dbe66ef38e472703067021b1467025ec85707d57e78711c085984e54", size = 212199 }, { url = "https://files.pythonhosted.org/packages/eb/ec/977ffaf1664f82e90737275873461695d4c9407d52abc2f3c3e24716da13/propcache-0.2.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:bb6178c241278d5fe853b3de743087be7f5f4c6f7d6d22a3b524d323eecec505", size = 214827 }, { url = "https://files.pythonhosted.org/packages/57/48/031fb87ab6081764054821a71b71942161619549396224cbb242922525e8/propcache-0.2.1-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:ad1af54a62ffe39cf34db1aa6ed1a1873bd548f6401db39d8e7cd060b9211f82", size = 228009 }, { url = "https://files.pythonhosted.org/packages/1a/06/ef1390f2524850838f2390421b23a8b298f6ce3396a7cc6d39dedd4047b0/propcache-0.2.1-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:e7048abd75fe40712005bcfc06bb44b9dfcd8e101dda2ecf2f5aa46115ad07ca", size = 231638 }, { url = "https://files.pythonhosted.org/packages/38/2a/101e6386d5a93358395da1d41642b79c1ee0f3b12e31727932b069282b1d/propcache-0.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:160291c60081f23ee43d44b08a7e5fb76681221a8e10b3139618c5a9a291b84e", size = 222788 }, { url = "https://files.pythonhosted.org/packages/db/81/786f687951d0979007e05ad9346cd357e50e3d0b0f1a1d6074df334b1bbb/propcache-0.2.1-cp311-cp311-win32.whl", hash = "sha256:819ce3b883b7576ca28da3861c7e1a88afd08cc8c96908e08a3f4dd64a228034", size = 40170 }, { url = "https://files.pythonhosted.org/packages/cf/59/7cc7037b295d5772eceb426358bb1b86e6cab4616d971bd74275395d100d/propcache-0.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:edc9fc7051e3350643ad929df55c451899bb9ae6d24998a949d2e4c87fb596d3", size = 44404 }, { url = "https://files.pythonhosted.org/packages/4c/28/1d205fe49be8b1b4df4c50024e62480a442b1a7b818e734308bb0d17e7fb/propcache-0.2.1-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:081a430aa8d5e8876c6909b67bd2d937bfd531b0382d3fdedb82612c618bc41a", size = 79588 }, { url = "https://files.pythonhosted.org/packages/21/ee/fc4d893f8d81cd4971affef2a6cb542b36617cd1d8ce56b406112cb80bf7/propcache-0.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:d2ccec9ac47cf4e04897619c0e0c1a48c54a71bdf045117d3a26f80d38ab1fb0", size = 45825 }, { url = "https://files.pythonhosted.org/packages/4a/de/bbe712f94d088da1d237c35d735f675e494a816fd6f54e9db2f61ef4d03f/propcache-0.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:14d86fe14b7e04fa306e0c43cdbeebe6b2c2156a0c9ce56b815faacc193e320d", size = 45357 }, { url = "https://files.pythonhosted.org/packages/7f/14/7ae06a6cf2a2f1cb382586d5a99efe66b0b3d0c6f9ac2f759e6f7af9d7cf/propcache-0.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:049324ee97bb67285b49632132db351b41e77833678432be52bdd0289c0e05e4", size = 241869 }, { url = "https://files.pythonhosted.org/packages/cc/59/227a78be960b54a41124e639e2c39e8807ac0c751c735a900e21315f8c2b/propcache-0.2.1-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:1cd9a1d071158de1cc1c71a26014dcdfa7dd3d5f4f88c298c7f90ad6f27bb46d", size = 247884 }, { url = "https://files.pythonhosted.org/packages/84/58/f62b4ffaedf88dc1b17f04d57d8536601e4e030feb26617228ef930c3279/propcache-0.2.1-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:98110aa363f1bb4c073e8dcfaefd3a5cea0f0834c2aab23dda657e4dab2f53b5", size = 248486 }, { url = "https://files.pythonhosted.org/packages/1c/07/ebe102777a830bca91bbb93e3479cd34c2ca5d0361b83be9dbd93104865e/propcache-0.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:647894f5ae99c4cf6bb82a1bb3a796f6e06af3caa3d32e26d2350d0e3e3faf24", size = 243649 }, { url = "https://files.pythonhosted.org/packages/ed/bc/4f7aba7f08f520376c4bb6a20b9a981a581b7f2e385fa0ec9f789bb2d362/propcache-0.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:bfd3223c15bebe26518d58ccf9a39b93948d3dcb3e57a20480dfdd315356baff", size = 229103 }, { url = "https://files.pythonhosted.org/packages/fe/d5/04ac9cd4e51a57a96f78795e03c5a0ddb8f23ec098b86f92de028d7f2a6b/propcache-0.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:d71264a80f3fcf512eb4f18f59423fe82d6e346ee97b90625f283df56aee103f", size = 226607 }, { url = "https://files.pythonhosted.org/packages/e3/f0/24060d959ea41d7a7cc7fdbf68b31852331aabda914a0c63bdb0e22e96d6/propcache-0.2.1-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:e73091191e4280403bde6c9a52a6999d69cdfde498f1fdf629105247599b57ec", size = 221153 }, { url = "https://files.pythonhosted.org/packages/77/a7/3ac76045a077b3e4de4859a0753010765e45749bdf53bd02bc4d372da1a0/propcache-0.2.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:3935bfa5fede35fb202c4b569bb9c042f337ca4ff7bd540a0aa5e37131659348", size = 222151 }, { url = "https://files.pythonhosted.org/packages/e7/af/5e29da6f80cebab3f5a4dcd2a3240e7f56f2c4abf51cbfcc99be34e17f0b/propcache-0.2.1-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:f508b0491767bb1f2b87fdfacaba5f7eddc2f867740ec69ece6d1946d29029a6", size = 233812 }, { url = "https://files.pythonhosted.org/packages/8c/89/ebe3ad52642cc5509eaa453e9f4b94b374d81bae3265c59d5c2d98efa1b4/propcache-0.2.1-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:1672137af7c46662a1c2be1e8dc78cb6d224319aaa40271c9257d886be4363a6", size = 238829 }, { url = "https://files.pythonhosted.org/packages/e9/2f/6b32f273fa02e978b7577159eae7471b3cfb88b48563b1c2578b2d7ca0bb/propcache-0.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b74c261802d3d2b85c9df2dfb2fa81b6f90deeef63c2db9f0e029a3cac50b518", size = 230704 }, { url = "https://files.pythonhosted.org/packages/5c/2e/f40ae6ff5624a5f77edd7b8359b208b5455ea113f68309e2b00a2e1426b6/propcache-0.2.1-cp312-cp312-win32.whl", hash = "sha256:d09c333d36c1409d56a9d29b3a1b800a42c76a57a5a8907eacdbce3f18768246", size = 40050 }, { url = "https://files.pythonhosted.org/packages/3b/77/a92c3ef994e47180862b9d7d11e37624fb1c00a16d61faf55115d970628b/propcache-0.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:c214999039d4f2a5b2073ac506bba279945233da8c786e490d411dfc30f855c1", size = 44117 }, { url = "https://files.pythonhosted.org/packages/0f/2a/329e0547cf2def8857157f9477669043e75524cc3e6251cef332b3ff256f/propcache-0.2.1-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:aca405706e0b0a44cc6bfd41fbe89919a6a56999157f6de7e182a990c36e37bc", size = 77002 }, { url = "https://files.pythonhosted.org/packages/12/2d/c4df5415e2382f840dc2ecbca0eeb2293024bc28e57a80392f2012b4708c/propcache-0.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:12d1083f001ace206fe34b6bdc2cb94be66d57a850866f0b908972f90996b3e9", size = 44639 }, { url = "https://files.pythonhosted.org/packages/d0/5a/21aaa4ea2f326edaa4e240959ac8b8386ea31dedfdaa636a3544d9e7a408/propcache-0.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:d93f3307ad32a27bda2e88ec81134b823c240aa3abb55821a8da553eed8d9439", size = 44049 }, { url = "https://files.pythonhosted.org/packages/4e/3e/021b6cd86c0acc90d74784ccbb66808b0bd36067a1bf3e2deb0f3845f618/propcache-0.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ba278acf14471d36316159c94a802933d10b6a1e117b8554fe0d0d9b75c9d536", size = 224819 }, { url = "https://files.pythonhosted.org/packages/3c/57/c2fdeed1b3b8918b1770a133ba5c43ad3d78e18285b0c06364861ef5cc38/propcache-0.2.1-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:4e6281aedfca15301c41f74d7005e6e3f4ca143584ba696ac69df4f02f40d629", size = 229625 }, { url = "https://files.pythonhosted.org/packages/9d/81/70d4ff57bf2877b5780b466471bebf5892f851a7e2ca0ae7ffd728220281/propcache-0.2.1-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5b750a8e5a1262434fb1517ddf64b5de58327f1adc3524a5e44c2ca43305eb0b", size = 232934 }, { url = "https://files.pythonhosted.org/packages/3c/b9/bb51ea95d73b3fb4100cb95adbd4e1acaf2cbb1fd1083f5468eeb4a099a8/propcache-0.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bf72af5e0fb40e9babf594308911436c8efde3cb5e75b6f206c34ad18be5c052", size = 227361 }, { url = "https://files.pythonhosted.org/packages/f1/20/3c6d696cd6fd70b29445960cc803b1851a1131e7a2e4ee261ee48e002bcd/propcache-0.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b2d0a12018b04f4cb820781ec0dffb5f7c7c1d2a5cd22bff7fb055a2cb19ebce", size = 213904 }, { url = "https://files.pythonhosted.org/packages/a1/cb/1593bfc5ac6d40c010fa823f128056d6bc25b667f5393781e37d62f12005/propcache-0.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:e800776a79a5aabdb17dcc2346a7d66d0777e942e4cd251defeb084762ecd17d", size = 212632 }, { url = "https://files.pythonhosted.org/packages/6d/5c/e95617e222be14a34c709442a0ec179f3207f8a2b900273720501a70ec5e/propcache-0.2.1-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:4160d9283bd382fa6c0c2b5e017acc95bc183570cd70968b9202ad6d8fc48dce", size = 207897 }, { url = "https://files.pythonhosted.org/packages/8e/3b/56c5ab3dc00f6375fbcdeefdede5adf9bee94f1fab04adc8db118f0f9e25/propcache-0.2.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:30b43e74f1359353341a7adb783c8f1b1c676367b011709f466f42fda2045e95", size = 208118 }, { url = "https://files.pythonhosted.org/packages/86/25/d7ef738323fbc6ebcbce33eb2a19c5e07a89a3df2fded206065bd5e868a9/propcache-0.2.1-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:58791550b27d5488b1bb52bc96328456095d96206a250d28d874fafe11b3dfaf", size = 217851 }, { url = "https://files.pythonhosted.org/packages/b3/77/763e6cef1852cf1ba740590364ec50309b89d1c818e3256d3929eb92fabf/propcache-0.2.1-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:0f022d381747f0dfe27e99d928e31bc51a18b65bb9e481ae0af1380a6725dd1f", size = 222630 }, { url = "https://files.pythonhosted.org/packages/4f/e9/0f86be33602089c701696fbed8d8c4c07b6ee9605c5b7536fd27ed540c5b/propcache-0.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:297878dc9d0a334358f9b608b56d02e72899f3b8499fc6044133f0d319e2ec30", size = 216269 }, { url = "https://files.pythonhosted.org/packages/cc/02/5ac83217d522394b6a2e81a2e888167e7ca629ef6569a3f09852d6dcb01a/propcache-0.2.1-cp313-cp313-win32.whl", hash = "sha256:ddfab44e4489bd79bda09d84c430677fc7f0a4939a73d2bba3073036f487a0a6", size = 39472 }, { url = "https://files.pythonhosted.org/packages/f4/33/d6f5420252a36034bc8a3a01171bc55b4bff5df50d1c63d9caa50693662f/propcache-0.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:556fc6c10989f19a179e4321e5d678db8eb2924131e64652a51fe83e4c3db0e1", size = 43363 }, { url = "https://files.pythonhosted.org/packages/41/b6/c5319caea262f4821995dca2107483b94a3345d4607ad797c76cb9c36bcc/propcache-0.2.1-py3-none-any.whl", hash = "sha256:52277518d6aae65536e9cea52d4e7fd2f7a66f4aa2d30ed3f2fcea620ace3c54", size = 11818 }, ] [[package]] name = "psutil" version = "6.1.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/1f/5a/07871137bb752428aa4b659f910b399ba6f291156bdea939be3e96cae7cb/psutil-6.1.1.tar.gz", hash = "sha256:cf8496728c18f2d0b45198f06895be52f36611711746b7f30c464b422b50e2f5", size = 508502 } wheels = [ { url = "https://files.pythonhosted.org/packages/61/99/ca79d302be46f7bdd8321089762dd4476ee725fce16fc2b2e1dbba8cac17/psutil-6.1.1-cp36-abi3-macosx_10_9_x86_64.whl", hash = "sha256:fc0ed7fe2231a444fc219b9c42d0376e0a9a1a72f16c5cfa0f68d19f1a0663e8", size = 247511 }, { url = "https://files.pythonhosted.org/packages/0b/6b/73dbde0dd38f3782905d4587049b9be64d76671042fdcaf60e2430c6796d/psutil-6.1.1-cp36-abi3-macosx_11_0_arm64.whl", hash = "sha256:0bdd4eab935276290ad3cb718e9809412895ca6b5b334f5a9111ee6d9aff9377", size = 248985 }, { url = "https://files.pythonhosted.org/packages/17/38/c319d31a1d3f88c5b79c68b3116c129e5133f1822157dd6da34043e32ed6/psutil-6.1.1-cp36-abi3-manylinux_2_12_i686.manylinux2010_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:b6e06c20c05fe95a3d7302d74e7097756d4ba1247975ad6905441ae1b5b66003", size = 284488 }, { url = "https://files.pythonhosted.org/packages/9c/39/0f88a830a1c8a3aba27fededc642da37613c57cbff143412e3536f89784f/psutil-6.1.1-cp36-abi3-manylinux_2_12_x86_64.manylinux2010_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:97f7cb9921fbec4904f522d972f0c0e1f4fabbdd4e0287813b21215074a0f160", size = 287477 }, { url = "https://files.pythonhosted.org/packages/47/da/99f4345d4ddf2845cb5b5bd0d93d554e84542d116934fde07a0c50bd4e9f/psutil-6.1.1-cp36-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:33431e84fee02bc84ea36d9e2c4a6d395d479c9dd9bba2376c1f6ee8f3a4e0b3", size = 289017 }, { url = "https://files.pythonhosted.org/packages/38/53/bd755c2896f4461fd4f36fa6a6dcb66a88a9e4b9fd4e5b66a77cf9d4a584/psutil-6.1.1-cp37-abi3-win32.whl", hash = "sha256:eaa912e0b11848c4d9279a93d7e2783df352b082f40111e078388701fd479e53", size = 250602 }, { url = "https://files.pythonhosted.org/packages/7b/d7/7831438e6c3ebbfa6e01a927127a6cb42ad3ab844247f3c5b96bea25d73d/psutil-6.1.1-cp37-abi3-win_amd64.whl", hash = "sha256:f35cfccb065fff93529d2afb4a2e89e363fe63ca1e4a5da22b603a85833c2649", size = 254444 }, ] [[package]] name = "ptyprocess" version = "0.7.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/20/e5/16ff212c1e452235a90aeb09066144d0c5a6a8c0834397e03f5224495c4e/ptyprocess-0.7.0.tar.gz", hash = "sha256:5c5d0a3b48ceee0b48485e0c26037c0acd7d29765ca3fbb5cb3831d347423220", size = 70762 } wheels = [ { url = "https://files.pythonhosted.org/packages/22/a6/858897256d0deac81a172289110f31629fc4cee19b6f01283303e18c8db3/ptyprocess-0.7.0-py2.py3-none-any.whl", hash = "sha256:4b41f3967fce3af57cc7e94b888626c18bf37a083e3651ca8feeb66d492fef35", size = 13993 }, ] [[package]] name = "pure-eval" version = "0.2.3" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/cd/05/0a34433a064256a578f1783a10da6df098ceaa4a57bbeaa96a6c0352786b/pure_eval-0.2.3.tar.gz", hash = "sha256:5f4e983f40564c576c7c8635ae88db5956bb2229d7e9237d03b3c0b0190eaf42", size = 19752 } wheels = [ { url = "https://files.pythonhosted.org/packages/8e/37/efad0257dc6e593a18957422533ff0f87ede7c9c6ea010a2177d738fb82f/pure_eval-0.2.3-py3-none-any.whl", hash = "sha256:1db8e35b67b3d218d818ae653e27f06c3aa420901fa7b081ca98cbedc874e0d0", size = 11842 }, ] [[package]] name = "py-cpuinfo" version = "9.0.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/37/a8/d832f7293ebb21690860d2e01d8115e5ff6f2ae8bbdc953f0eb0fa4bd2c7/py-cpuinfo-9.0.0.tar.gz", hash = "sha256:3cdbbf3fac90dc6f118bfd64384f309edeadd902d7c8fb17f02ffa1fc3f49690", size = 104716 } wheels = [ { url = "https://files.pythonhosted.org/packages/e0/a9/023730ba63db1e494a271cb018dcd361bd2c917ba7004c3e49d5daf795a2/py_cpuinfo-9.0.0-py3-none-any.whl", hash = "sha256:859625bc251f64e21f077d099d4162689c762b5d6a4c3c97553d56241c9674d5", size = 22335 }, ] [[package]] name = "pycparser" version = "2.22" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/1d/b2/31537cf4b1ca988837256c910a668b553fceb8f069bedc4b1c826024b52c/pycparser-2.22.tar.gz", hash = "sha256:491c8be9c040f5390f5bf44a5b07752bd07f56edf992381b05c701439eec10f6", size = 172736 } wheels = [ { url = "https://files.pythonhosted.org/packages/13/a3/a812df4e2dd5696d1f351d58b8fe16a405b234ad2886a0dab9183fb78109/pycparser-2.22-py3-none-any.whl", hash = "sha256:c3702b6d3dd8c7abc1afa565d7e63d53a1d0bd86cdc24edd75470f4de499cfcc", size = 117552 }, ] [[package]] name = "pydata-sphinx-theme" version = "0.16.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "accessible-pygments" }, { name = "babel" }, { name = "beautifulsoup4" }, { name = "docutils" }, { name = "pygments" }, { name = "sphinx" }, { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/00/20/bb50f9de3a6de69e6abd6b087b52fa2418a0418b19597601605f855ad044/pydata_sphinx_theme-0.16.1.tar.gz", hash = "sha256:a08b7f0b7f70387219dc659bff0893a7554d5eb39b59d3b8ef37b8401b7642d7", size = 2412693 } wheels = [ { url = "https://files.pythonhosted.org/packages/e2/0d/8ba33fa83a7dcde13eb3c1c2a0c1cc29950a048bfed6d9b0d8b6bd710b4c/pydata_sphinx_theme-0.16.1-py3-none-any.whl", hash = "sha256:225331e8ac4b32682c18fcac5a57a6f717c4e632cea5dd0e247b55155faeccde", size = 6723264 }, ] [[package]] name = "pygeoif" version = "1.5.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "typing-extensions" }, ] sdist = { url = "https://files.pythonhosted.org/packages/be/2e/9f2e369b293e84acabd34df5cc189ac519d7c1bebfd56f5b3ca5bfe1a57b/pygeoif-1.5.1.tar.gz", hash = "sha256:f27a6b6a1ecb87aeacc2b51bcc59ca79be70ed12a0104de8601478b213dd5d81", size = 41210 } wheels = [ { url = "https://files.pythonhosted.org/packages/ea/16/58211b90cc314f7fa4f7d7124c770a6ca67ffd57e2b3937ed557f9ac9f57/pygeoif-1.5.1-py3-none-any.whl", hash = "sha256:2210cca8707c2858885525330db2164321218bb676fe0900123eed94624aab34", size = 28075 }, ] [[package]] name = "pygments" version = "2.18.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/8e/62/8336eff65bcbc8e4cb5d05b55faf041285951b6e80f33e2bff2024788f31/pygments-2.18.0.tar.gz", hash = "sha256:786ff802f32e91311bff3889f6e9a86e81505fe99f2735bb6d60ae0c5004f199", size = 4891905 } wheels = [ { url = "https://files.pythonhosted.org/packages/f7/3f/01c8b82017c199075f8f788d0d906b9ffbbc5a47dc9918a945e13d5a2bda/pygments-2.18.0-py3-none-any.whl", hash = "sha256:b8e6aca0523f3ab76fee51799c488e38782ac06eafcf95e7ba832985c8e7b13a", size = 1205513 }, ] [[package]] name = "pyogrio" version = "0.10.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "certifi" }, { name = "numpy" }, { name = "packaging" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a5/8f/5a784595524a79c269f2b1c880f4fdb152867df700c97005dda51997da02/pyogrio-0.10.0.tar.gz", hash = "sha256:ec051cb568324de878828fae96379b71858933413e185148acb6c162851ab23c", size = 281950 } wheels = [ { url = "https://files.pythonhosted.org/packages/41/ea/cba24d241858a72b58d8fcd0ad2276f9631fd4528b3062157637e43581eb/pyogrio-0.10.0-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:046eeeae12a03a3ebc3dc5ff5a87664e4f5fc0a4fb1ea5d5c45d547fa941072b", size = 15083657 }, { url = "https://files.pythonhosted.org/packages/90/f8/a58795a2aee415c612aac8b425681d932b8983330884207fd1915d234d36/pyogrio-0.10.0-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:44380f4d9245c776f432526e29ce4d29238aea26adad991803c4f453474f51d3", size = 16457115 }, { url = "https://files.pythonhosted.org/packages/45/86/74c37e3d4d000bdcd91b25929fe4abc5ad6d93d5f5fbc59a4c7d4f0ed982/pyogrio-0.10.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:14fd3b72b4e2dc59e264607b265c742b0c5ec2ea9e748b115f742381b28dd373", size = 23721911 }, { url = "https://files.pythonhosted.org/packages/a6/07/35e4127a878ecdcbaaf46f0f2d068b385a454b5b0cab44ea901adc5888a0/pyogrio-0.10.0-cp310-cp310-manylinux_2_28_aarch64.whl", hash = "sha256:1fea7892f4633cab04d13563e47ec2e87dc2b5cd71b9546018d123184528c151", size = 22941003 }, { url = "https://files.pythonhosted.org/packages/56/8b/67187ae03dce5cd6f5c5a2f41c405e77059f4cf498e0817b69cec094f022/pyogrio-0.10.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:3539596a76eb8a9d166d6f9d3f36731a8c5bd5c43901209d89dc66b9dc00f079", size = 23861913 }, { url = "https://files.pythonhosted.org/packages/75/ca/b31083da2e6c4b598b6609a98c655977189fe8982c36d98ea4789a938045/pyogrio-0.10.0-cp310-cp310-win_amd64.whl", hash = "sha256:eac90b2501656892c63bc500c12e71f3dbf7d66ddc5a7fb05cd480d25d1b7022", size = 16171065 }, { url = "https://files.pythonhosted.org/packages/8d/2c/c761e6adeb81bd4029a137b3240e7214a8c9aaf225883356196afd6ef9d8/pyogrio-0.10.0-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:5b1a51431a27a1cb3e4e19558939c1423106e06e7b67d6285f4fba9c2d0a91b9", size = 15083526 }, { url = "https://files.pythonhosted.org/packages/c3/e5/983aa9ddf2ff784e973d6b2ec3e874065d6655a5329ca26311b0f3b9f92f/pyogrio-0.10.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:216d69cd77b2b4a0c9d7d449bc239f8b77f3d73f4a05d9c738a0745b236902d8", size = 16457867 }, { url = "https://files.pythonhosted.org/packages/fa/9a/7103eee7aa3b6ec88e072ef18a05c3aae1ed96fe00009a7a5ce139b50f30/pyogrio-0.10.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:a2f0b75f0077ce33256aec6278c2a9c3b79bf0637ddf4f93d3ab2609f0501d96", size = 23926332 }, { url = "https://files.pythonhosted.org/packages/8b/b2/2ca124343aba24b9a5dcd7c1f43da81e652849cfaf3110d3f507a80af0a1/pyogrio-0.10.0-cp311-cp311-manylinux_2_28_aarch64.whl", hash = "sha256:0a47f702d29808c557d2ebea8542c23903f021eae44e16838adef2ab4281c71b", size = 23138693 }, { url = "https://files.pythonhosted.org/packages/ae/15/501aa4823c142232169d54255ab343f28c4ea9e7fa489b8433dcc873a942/pyogrio-0.10.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:11e6c71d12da6b445e77d0fc0198db1bd35a77e03a0685e45338cbab9ce02add", size = 24062952 }, { url = "https://files.pythonhosted.org/packages/94/8d/24f21e6a93ca418231aee3bddade7a0766c89c523832f29e08a8860f83e6/pyogrio-0.10.0-cp311-cp311-win_amd64.whl", hash = "sha256:d0d74e91a9c0ff2f9abe01b556ff663977193b2d6922208406172d0fc833beff", size = 16172573 }, { url = "https://files.pythonhosted.org/packages/b5/b5/3c5dfd0b50cbce6f3d4e42c0484647feb1809dbe20e225c4c6abd067e69f/pyogrio-0.10.0-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:2d6558b180e020f71ab7aa7f82d592ed3305c9f698d98f6d0a4637ec7a84c4ce", size = 15079211 }, { url = "https://files.pythonhosted.org/packages/b8/9a/1ba9c707a094976f343bd0177741eaba0e842fa05ecd8ab97192db4f2ec1/pyogrio-0.10.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:a99102037eead8ba491bc57825c1e395ee31c9956d7bff7b4a9e4fdbff3a13c2", size = 16442782 }, { url = "https://files.pythonhosted.org/packages/5e/bb/b4250746c2c85fea5004cae93e9e25ad01516e9e94e04de780a2e78139da/pyogrio-0.10.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3a4c373281d7cbf560c5b61f8f3c7442103ad7f1c7ac4ef3a84572ed7a5dd2f6", size = 23899832 }, { url = "https://files.pythonhosted.org/packages/bd/4c/79e47e40a8e54e79a45133786a0a58209534f580591c933d40c5ed314fe7/pyogrio-0.10.0-cp312-cp312-manylinux_2_28_aarch64.whl", hash = "sha256:19f18411bdf836d24cdc08b9337eb3ec415e4ac4086ba64516b36b73a2e88622", size = 23081469 }, { url = "https://files.pythonhosted.org/packages/47/78/2b62c8a340bcb0ea56b9ddf2ef5fd3d1f101dc0e98816b9e6da87c5ac3b7/pyogrio-0.10.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:1abbcdd9876f30bebf1df8a0273f6cdeb29d03259290008275c7fddebe139f20", size = 24024758 }, { url = "https://files.pythonhosted.org/packages/43/97/34605480f06b0ad9611bf58a174eccc6f3673275f3d519cf763391892881/pyogrio-0.10.0-cp312-cp312-win_amd64.whl", hash = "sha256:2a3e09839590d71ff832aa95c4f23fa00a2c63c3de82c1fbd4fb8d265792acfc", size = 16160294 }, { url = "https://files.pythonhosted.org/packages/14/4a/4c8e4f5b9edbca46e0f8d6c1c0b56c0d4af0900c29f4bea22d37853c07f3/pyogrio-0.10.0-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:c90478209537a31dcc65664a87a04c094bb0e08efe502908a6682b8cec0259bf", size = 15076879 }, { url = "https://files.pythonhosted.org/packages/5f/be/7db0644eef9ef3382518399aaf3332827c43018112d2a74f78784fd496ec/pyogrio-0.10.0-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:fec45e1963b7058e5a1aa98598aed07c0858512c833d6aad2c672c3ec98bbf04", size = 16440405 }, { url = "https://files.pythonhosted.org/packages/96/77/f199230ba86fe88b1f57e71428c169ed982de68a32d6082cd7c12d0f5d55/pyogrio-0.10.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:28cb139f8a5d0365ede602230104b407ae52bb6b55173c8d5a35424d28c4a2c5", size = 23871511 }, { url = "https://files.pythonhosted.org/packages/25/ac/ca483bec408b59c54f7129b0244cc9de21d8461aefe89ece7bd74ad33807/pyogrio-0.10.0-cp313-cp313-manylinux_2_28_aarch64.whl", hash = "sha256:cea0187fcc2d574e52af8cfab041fa0a7ad71d5ef6b94b49a3f3d2a04534a27e", size = 23048830 }, { url = "https://files.pythonhosted.org/packages/d7/3e/c35f2d8dad95b24e568c468f09ff60fb61945065465e0ec7868400596566/pyogrio-0.10.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:7c02b207ea8cf09c501ea3e95d29152781a00d3c32267286bc36fa457c332205", size = 23996873 }, { url = "https://files.pythonhosted.org/packages/27/5d/0deb16d228362a097ee3258d0a887c9c0add4b9678bb4847b08a241e124d/pyogrio-0.10.0-cp313-cp313-win_amd64.whl", hash = "sha256:02e54bcfb305af75f829044b0045f74de31b77c2d6546f7aaf96822066147848", size = 16158260 }, ] [[package]] name = "pyparsing" version = "3.2.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/8c/d5/e5aeee5387091148a19e1145f63606619cb5f20b83fccb63efae6474e7b2/pyparsing-3.2.0.tar.gz", hash = "sha256:cbf74e27246d595d9a74b186b810f6fbb86726dbf3b9532efb343f6d7294fe9c", size = 920984 } wheels = [ { url = "https://files.pythonhosted.org/packages/be/ec/2eb3cd785efd67806c46c13a17339708ddc346cbb684eade7a6e6f79536a/pyparsing-3.2.0-py3-none-any.whl", hash = "sha256:93d9577b88da0bbea8cc8334ee8b918ed014968fd2ec383e868fb8afb1ccef84", size = 106921 }, ] [[package]] name = "pyproj" version = "3.7.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "certifi" }, ] sdist = { url = "https://files.pythonhosted.org/packages/47/c2/0572c8e31aebf0270f15f3368adebd10fc473de9f09567a0743a3bc41c8d/pyproj-3.7.0.tar.gz", hash = "sha256:bf658f4aaf815d9d03c8121650b6f0b8067265c36e31bc6660b98ef144d81813", size = 225577 } wheels = [ { url = "https://files.pythonhosted.org/packages/e4/fa/8a769da6bb8e26b1028c19d048b88373a40bd8e17a893e07b9889d1aed03/pyproj-3.7.0-cp310-cp310-macosx_12_0_x86_64.whl", hash = "sha256:d5c7e7d24b967e328a5efd013f466804a1f226d1106ac7efc47dcc99360dbc8f", size = 6270121 }, { url = "https://files.pythonhosted.org/packages/82/65/ee312dc4cdd2499cc5984144e05c582604afd76ba01289d89d74b50ab654/pyproj-3.7.0-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:448958c46bd3fe2da91c89ba551ac5835e63073ca861422c6eb1af89979dfab1", size = 4633387 }, { url = "https://files.pythonhosted.org/packages/f8/0d/d300194f021e3d56b30bb45bd19447bb00761c62f5342371bd389b774f82/pyproj-3.7.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f673ca345bb92afc93d4235938ca0c9a76237aa7addf42a95965c8dc8cad9b49", size = 6330358 }, { url = "https://files.pythonhosted.org/packages/52/30/c82c12cea9a5c17fac146212cd914ec587f646eef91986dcb7f629fe0f7f/pyproj-3.7.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ee60895f60cbd1a9c903ab2bc22adea63004296a1c28b8775a11cf50905cf085", size = 9227537 }, { url = "https://files.pythonhosted.org/packages/09/94/34bd5a5e637e8839beb17cc09410785bad24098ef01e52f66fe32bcf74fa/pyproj-3.7.0-cp310-cp310-win32.whl", hash = "sha256:0dd31b0740ee010934234f848d2d092c66146cb8d0ba009a64e41d192caa7686", size = 5822094 }, { url = "https://files.pythonhosted.org/packages/9e/04/33835c6ca0edf266b56495555c375994c42f914eb65a639b363d6f2c47f9/pyproj-3.7.0-cp310-cp310-win_amd64.whl", hash = "sha256:7943d85ba39e89c51b920339ff63162d63bf89da161f0acb6206b0d39b11661e", size = 6230436 }, { url = "https://files.pythonhosted.org/packages/e2/8f/15ff6ab10a08050e94afcd544962a1a930d0bb7ca102ad39795a847eb340/pyproj-3.7.0-cp311-cp311-macosx_12_0_x86_64.whl", hash = "sha256:e66d8d42dbdf232e121546c5a1dec097caf0454e4885c09a8e03cdcee0753c03", size = 6272213 }, { url = "https://files.pythonhosted.org/packages/2d/4d/610fe2a17de71b4fe210af69ce25f2d65379ba0a48299129894d0d0988ee/pyproj-3.7.0-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:7764b64a0aefe40134a2828b3a40be88f6c8b7832c45d8a9f2bd592ace4b2a3b", size = 4634548 }, { url = "https://files.pythonhosted.org/packages/d6/27/0327d0b0fcdfc4cf72696a2effca2963e524dcd846a0274ba503f8bf2648/pyproj-3.7.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:53c442c5081dc95346996f5c4323fde2caafc69c6e60b4707aa46e88244f1e04", size = 6333913 }, { url = "https://files.pythonhosted.org/packages/3c/e5/2cb256148c730b9c3f74bfb3c03904f5070499c6dcaea153073a9642c6c6/pyproj-3.7.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc5b305d4d5d7697885681d9b660623e328227612823d5c660e0a9566cb48838", size = 9460363 }, { url = "https://files.pythonhosted.org/packages/ba/a3/4aa1e8e78ad18aa170efd2c94c1931bf2a34c526683b874d06e40fa323f6/pyproj-3.7.0-cp311-cp311-win32.whl", hash = "sha256:de2b47d748dc41cccb6b3b713d4d7dc9aa1046a82141c8665026908726426abc", size = 5820551 }, { url = "https://files.pythonhosted.org/packages/26/0c/b084e8839a117eaad8cb4fbaa81bbb24c6f183de0ee95c6c4e2770ab6f09/pyproj-3.7.0-cp311-cp311-win_amd64.whl", hash = "sha256:38cba7c4c5679e40242dd959133e95b908d3b912dd66291094fd13510e8517ff", size = 6231788 }, { url = "https://files.pythonhosted.org/packages/bd/19/be806b711e9ebfb80411c653054157db128fffdd7f8493e3064136c8d880/pyproj-3.7.0-cp312-cp312-macosx_12_0_x86_64.whl", hash = "sha256:8cbec92bdd6e9933ca08795c12717d1384e9b51cf4b1acf0d753db255a75c51e", size = 6261400 }, { url = "https://files.pythonhosted.org/packages/99/3b/8497995e8cae0049d013679c6a7ac6c57b816d590c733a388748dafe5af5/pyproj-3.7.0-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:8c4a8e4d3ba76c3adac3c087544cf92f7f9a19ea34946904a13fca48cc1c0106", size = 4637848 }, { url = "https://files.pythonhosted.org/packages/ea/f7/2a5b46d6f8da913d58d44942ab06ca4803b5424b73259b15344cf90040f6/pyproj-3.7.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:82624fb42aa31f6b1a860fbc0316babd07fd712642bc31022df4e9b4056bf463", size = 6324856 }, { url = "https://files.pythonhosted.org/packages/36/83/c257771077bcf9da20d0e97abc834f9037c219986cc76d40183903a30464/pyproj-3.7.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:34e1bbb3f89c68d4a6835c40b2da8b27680eec60e8cc7cdb08c09bcc725b2b62", size = 9525831 }, { url = "https://files.pythonhosted.org/packages/d6/50/a635de79def69fe03cdef3a4bd3bec780c30987bce3a15dd7099afb2506f/pyproj-3.7.0-cp312-cp312-win32.whl", hash = "sha256:952515d5592167ad4436b355485f82acebed2a49b46722159e4584b75a763dd3", size = 5811864 }, { url = "https://files.pythonhosted.org/packages/a1/8b/96bc8c8f3eca4eb7fa3758fde0b755d1df30a19f494376e3ee8de1ef4e79/pyproj-3.7.0-cp312-cp312-win_amd64.whl", hash = "sha256:0692f806224e8ed82fe4acfa57268ff444fdaf9f330689f24c0d96e59480cce1", size = 6224720 }, { url = "https://files.pythonhosted.org/packages/bf/da/a17c452bea1ff4cd58d6dc573055b9c8fb6af114b7d2c694782aec770865/pyproj-3.7.0-cp313-cp313-macosx_12_0_x86_64.whl", hash = "sha256:94e8b903a9e83448fd2379c49dec3e8cd83c9ed36f54354e68b601cef56d5426", size = 6254898 }, { url = "https://files.pythonhosted.org/packages/c2/31/ab07b389f2caa527c95ab2ea1940d28879bd2a19e67b2529cb3e94648d26/pyproj-3.7.0-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:64cb5c17d6f6305a8b978a40f95560c87c5b363fcac40632337955664437875a", size = 4628612 }, { url = "https://files.pythonhosted.org/packages/1d/24/def3ded6529db3e3d8351ad73481730249ab57d8d876d502f86d7958ce06/pyproj-3.7.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2c54e9bdda7ab9c4a5af50f9d6e6ee7704e05fafd504896b96ed1208c7aea098", size = 6315895 }, { url = "https://files.pythonhosted.org/packages/dd/14/07314f78302105d199fb25e73376d723efe9c2ef3906463aae209913a6d3/pyproj-3.7.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:24fa4e9e0abba875f9524808410cc520067eaf38fd5549ed0ef7c43ac39923c9", size = 9466144 }, { url = "https://files.pythonhosted.org/packages/00/f2/2a116920db3496e3ff3c94d7d8d15da41374f35cfe1b9e79682eca500a61/pyproj-3.7.0-cp313-cp313-win32.whl", hash = "sha256:b9e8353fc3c79dc14d1f5ac758a1a6e4eee04102c3c0b138670f121f5ac52eb4", size = 5807180 }, { url = "https://files.pythonhosted.org/packages/f8/33/3c8c6302717096b54aa14ccbb271045ba04629e21cbf348f2f2dc94f69b4/pyproj-3.7.0-cp313-cp313-win_amd64.whl", hash = "sha256:10a8dc6ec61af97c89ff032647d743f8dc023645773da42ef43f7ae1125b3509", size = 6218036 }, ] [[package]] name = "pyshp" version = "2.3.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/63/9f/0dd21250c60375a532c35e89fad8d5e8a3f1a2e3f7c389ccc5a60b05263e/pyshp-2.3.1.tar.gz", hash = "sha256:4caec82fd8dd096feba8217858068bacb2a3b5950f43c048c6dc32a3489d5af1", size = 1731544 } wheels = [ { url = "https://files.pythonhosted.org/packages/98/2f/68116db5b36b895c0450e3072b8cb6c2fac0359279b182ea97014d3c8ac0/pyshp-2.3.1-py2.py3-none-any.whl", hash = "sha256:67024c0ccdc352ba5db777c4e968483782dfa78f8e200672a90d2d30fd8b7b49", size = 46537 }, ] [[package]] name = "pystac" version = "1.11.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "python-dateutil" }, ] sdist = { url = "https://files.pythonhosted.org/packages/90/4f/f6f89956aabffd1211fa9c9130293ac67f774c66fab7944bfe33dc317f18/pystac-1.11.0.tar.gz", hash = "sha256:acb1e04be398a0cda2d8870ab5e90457783a8014a206590233171d8b2ae0d9e7", size = 141392 } wheels = [ { url = "https://files.pythonhosted.org/packages/71/5b/60dc94cbf6af2fd3a3d3fae52de7e294819af2dfe7a1bea4d246beb7e0b6/pystac-1.11.0-py3-none-any.whl", hash = "sha256:10ac7c7b4ea6c5ec8333829a09ec1a33b596f02d1a97ffbbd72cd1b6c10598c1", size = 183925 }, ] [package.optional-dependencies] validation = [ { name = "jsonschema" }, ] [[package]] name = "pystac-client" source = { editable = "." } dependencies = [ { name = "pystac", extra = ["validation"] }, { name = "python-dateutil" }, { name = "requests" }, ] [package.dev-dependencies] dev = [ { name = "codespell" }, { name = "coverage" }, { name = "cql2" }, { name = "doc8" }, { name = "importlib-metadata" }, { name = "mypy" }, { name = "orjson" }, { name = "pre-commit" }, { name = "pytest" }, { name = "pytest-benchmark" }, { name = "pytest-console-scripts" }, { name = "pytest-cov" }, { name = "pytest-recording" }, { name = "recommonmark" }, { name = "requests-mock" }, { name = "ruff" }, { name = "tomli", marker = "python_full_version < '3.11'" }, { name = "types-python-dateutil" }, { name = "types-requests" }, { name = "urllib3" }, ] docs = [ { name = "boto3" }, { name = "cartopy" }, { name = "geojson" }, { name = "geopandas" }, { name = "geoviews" }, { name = "hvplot" }, { name = "ipykernel" }, { name = "ipython" }, { name = "jinja2" }, { name = "matplotlib" }, { name = "myst-parser" }, { name = "nbsphinx" }, { name = "pydata-sphinx-theme" }, { name = "pygeoif" }, { name = "scipy" }, { name = "sphinx" }, { name = "sphinxcontrib-fulltoc" }, ] [package.metadata] requires-dist = [ { name = "pystac", extras = ["validation"], specifier = ">=1.10.0" }, { name = "python-dateutil", specifier = ">=2.8.2" }, { name = "requests", specifier = ">=2.28.2" }, ] [package.metadata.requires-dev] dev = [ { name = "codespell", specifier = "~=2.4.0" }, { name = "coverage", specifier = "~=7.2" }, { name = "cql2", specifier = ">=0.3.7" }, { name = "doc8", specifier = "~=1.1.1" }, { name = "importlib-metadata", specifier = "~=8.0" }, { name = "mypy", specifier = "~=1.2" }, { name = "orjson", specifier = "~=3.8" }, { name = "pre-commit", specifier = "~=4.0" }, { name = "pytest", specifier = "~=8.0" }, { name = "pytest-benchmark", specifier = "~=5.1.0" }, { name = "pytest-console-scripts", specifier = "~=1.4.0" }, { name = "pytest-cov", specifier = "~=6.0" }, { name = "pytest-recording", specifier = "~=0.13" }, { name = "recommonmark", specifier = "~=0.7.1" }, { name = "requests-mock", specifier = "~=1.12" }, { name = "ruff", specifier = "==0.9.4" }, { name = "tomli", marker = "python_full_version < '3.11'", specifier = "~=2.0" }, { name = "types-python-dateutil", specifier = ">=2.8.19,<2.10.0" }, { name = "types-requests", specifier = "~=2.32.0" }, { name = "urllib3", specifier = ">=2.0,<2.3.0" }, ] docs = [ { name = "boto3", specifier = "~=1.26" }, { name = "cartopy", specifier = "~=0.21" }, { name = "geojson", specifier = "~=3.2.0" }, { name = "geopandas", specifier = "~=1.0.0" }, { name = "geoviews", specifier = "~=1.9" }, { name = "hvplot", specifier = "~=0.11.0" }, { name = "ipykernel", specifier = "~=6.22" }, { name = "ipython", specifier = "~=8.12" }, { name = "jinja2", specifier = ">=3.0,<4.0" }, { name = "matplotlib", specifier = "~=3.8" }, { name = "myst-parser", specifier = "~=4.0" }, { name = "nbsphinx", specifier = "~=0.9" }, { name = "pydata-sphinx-theme", specifier = "~=0.13" }, { name = "pygeoif", specifier = "~=1.0" }, { name = "scipy", specifier = "~=1.10" }, { name = "sphinx", specifier = "~=8.0" }, { name = "sphinxcontrib-fulltoc", specifier = "~=1.2" }, ] [[package]] name = "pytest" version = "8.3.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "colorama", marker = "sys_platform == 'win32'" }, { name = "exceptiongroup", marker = "python_full_version < '3.11'" }, { name = "iniconfig" }, { name = "packaging" }, { name = "pluggy" }, { name = "tomli", marker = "python_full_version < '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/05/35/30e0d83068951d90a01852cb1cef56e5d8a09d20c7f511634cc2f7e0372a/pytest-8.3.4.tar.gz", hash = "sha256:965370d062bce11e73868e0335abac31b4d3de0e82f4007408d242b4f8610761", size = 1445919 } wheels = [ { url = "https://files.pythonhosted.org/packages/11/92/76a1c94d3afee238333bc0a42b82935dd8f9cf8ce9e336ff87ee14d9e1cf/pytest-8.3.4-py3-none-any.whl", hash = "sha256:50e16d954148559c9a74109af1eaf0c945ba2d8f30f0a3d3335edde19788b6f6", size = 343083 }, ] [[package]] name = "pytest-benchmark" version = "5.1.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "py-cpuinfo" }, { name = "pytest" }, ] sdist = { url = "https://files.pythonhosted.org/packages/39/d0/a8bd08d641b393db3be3819b03e2d9bb8760ca8479080a26a5f6e540e99c/pytest-benchmark-5.1.0.tar.gz", hash = "sha256:9ea661cdc292e8231f7cd4c10b0319e56a2118e2c09d9f50e1b3d150d2aca105", size = 337810 } wheels = [ { url = "https://files.pythonhosted.org/packages/9e/d6/b41653199ea09d5969d4e385df9bbfd9a100f28ca7e824ce7c0a016e3053/pytest_benchmark-5.1.0-py3-none-any.whl", hash = "sha256:922de2dfa3033c227c96da942d1878191afa135a29485fb942e85dff1c592c89", size = 44259 }, ] [[package]] name = "pytest-console-scripts" version = "1.4.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "pytest" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a1/85/2fbafaea1fa948497ef7f52574448e7ff99236c71a1519e312b8a2f01008/pytest-console-scripts-1.4.1.tar.gz", hash = "sha256:5a826ed84cc0afa202eb9e44381d7d762f7bdda8e0c23f9f79a7f1f44cf4a895", size = 20994 } wheels = [ { url = "https://files.pythonhosted.org/packages/32/12/149a568c244b58912350c7fd3b997ed6b57889a22098564cc43c3e511b76/pytest_console_scripts-1.4.1-py3-none-any.whl", hash = "sha256:ad860a951a90eca4bd3bd1159b8f5428633ba4ea01abd5c9526b67a95f65437a", size = 10881 }, ] [[package]] name = "pytest-cov" version = "6.0.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "coverage", extra = ["toml"] }, { name = "pytest" }, ] sdist = { url = "https://files.pythonhosted.org/packages/be/45/9b538de8cef30e17c7b45ef42f538a94889ed6a16f2387a6c89e73220651/pytest-cov-6.0.0.tar.gz", hash = "sha256:fde0b595ca248bb8e2d76f020b465f3b107c9632e6a1d1705f17834c89dcadc0", size = 66945 } wheels = [ { url = "https://files.pythonhosted.org/packages/36/3b/48e79f2cd6a61dbbd4807b4ed46cb564b4fd50a76166b1c4ea5c1d9e2371/pytest_cov-6.0.0-py3-none-any.whl", hash = "sha256:eee6f1b9e61008bd34975a4d5bab25801eb31898b032dd55addc93e96fcaaa35", size = 22949 }, ] [[package]] name = "pytest-recording" version = "0.13.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "pytest" }, { name = "vcrpy", version = "5.1.0", source = { registry = "https://pypi.org/simple" }, marker = "platform_python_implementation == 'PyPy'" }, { name = "vcrpy", version = "6.0.2", source = { registry = "https://pypi.org/simple" }, marker = "platform_python_implementation != 'PyPy'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/fe/2a/ea6b8036ae01979eae02d8ad5a7da14dec90d9176b613e49fb8d134c78fc/pytest_recording-0.13.2.tar.gz", hash = "sha256:000c3babbb466681457fd65b723427c1779a0c6c17d9e381c3142a701e124877", size = 25270 } wheels = [ { url = "https://files.pythonhosted.org/packages/72/52/8e67a969e9fad3fa5ec4eab9f2a7348ff04692065c7deda21d76e9112703/pytest_recording-0.13.2-py3-none-any.whl", hash = "sha256:3820fe5743d1ac46e807989e11d073cb776a60bdc544cf43ebca454051b22d13", size = 12783 }, ] [[package]] name = "python-dateutil" version = "2.9.0.post0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "six" }, ] sdist = { url = "https://files.pythonhosted.org/packages/66/c0/0c8b6ad9f17a802ee498c46e004a0eb49bc148f2fd230864601a86dcf6db/python-dateutil-2.9.0.post0.tar.gz", hash = "sha256:37dd54208da7e1cd875388217d5e00ebd4179249f90fb72437e91a35459a0ad3", size = 342432 } wheels = [ { url = "https://files.pythonhosted.org/packages/ec/57/56b9bcc3c9c6a792fcbaf139543cee77261f3651ca9da0c93f5c1221264b/python_dateutil-2.9.0.post0-py2.py3-none-any.whl", hash = "sha256:a8b2bc7bffae282281c8140a97d3aa9c14da0b136dfe83f850eea9a5f7470427", size = 229892 }, ] [[package]] name = "pytz" version = "2024.2" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/3a/31/3c70bf7603cc2dca0f19bdc53b4537a797747a58875b552c8c413d963a3f/pytz-2024.2.tar.gz", hash = "sha256:2aa355083c50a0f93fa581709deac0c9ad65cca8a9e9beac660adcbd493c798a", size = 319692 } wheels = [ { url = "https://files.pythonhosted.org/packages/11/c3/005fcca25ce078d2cc29fd559379817424e94885510568bc1bc53d7d5846/pytz-2024.2-py2.py3-none-any.whl", hash = "sha256:31c7c1817eb7fae7ca4b8c7ee50c72f93aa2dd863de768e1ef4245d426aa0725", size = 508002 }, ] [[package]] name = "pyviz-comms" version = "3.0.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "param" }, ] sdist = { url = "https://files.pythonhosted.org/packages/0d/d6/21460c434d01fe94bd97b9a5b41726ae79b68024b634dcaf7d77f8254c6f/pyviz_comms-3.0.3.tar.gz", hash = "sha256:fde4a017c2213ecee63a9a6741431c845e42a5c7b1588e4a7ba2e4370c583728", size = 196501 } wheels = [ { url = "https://files.pythonhosted.org/packages/81/3e/5a36494314e4780362b15a7e190095eec68366a0d512b5b532607c213a26/pyviz_comms-3.0.3-py3-none-any.whl", hash = "sha256:fd26951eebc7950106d481655d91ba06296d4cf352dffb1d03f88f959832448e", size = 83530 }, ] [[package]] name = "pywin32" version = "308" source = { registry = "https://pypi.org/simple" } wheels = [ { url = "https://files.pythonhosted.org/packages/72/a6/3e9f2c474895c1bb61b11fa9640be00067b5c5b363c501ee9c3fa53aec01/pywin32-308-cp310-cp310-win32.whl", hash = "sha256:796ff4426437896550d2981b9c2ac0ffd75238ad9ea2d3bfa67a1abd546d262e", size = 5927028 }, { url = "https://files.pythonhosted.org/packages/d9/b4/84e2463422f869b4b718f79eb7530a4c1693e96b8a4e5e968de38be4d2ba/pywin32-308-cp310-cp310-win_amd64.whl", hash = "sha256:4fc888c59b3c0bef905ce7eb7e2106a07712015ea1c8234b703a088d46110e8e", size = 6558484 }, { url = "https://files.pythonhosted.org/packages/9f/8f/fb84ab789713f7c6feacaa08dad3ec8105b88ade8d1c4f0f0dfcaaa017d6/pywin32-308-cp310-cp310-win_arm64.whl", hash = "sha256:a5ab5381813b40f264fa3495b98af850098f814a25a63589a8e9eb12560f450c", size = 7971454 }, { url = "https://files.pythonhosted.org/packages/eb/e2/02652007469263fe1466e98439831d65d4ca80ea1a2df29abecedf7e47b7/pywin32-308-cp311-cp311-win32.whl", hash = "sha256:5d8c8015b24a7d6855b1550d8e660d8daa09983c80e5daf89a273e5c6fb5095a", size = 5928156 }, { url = "https://files.pythonhosted.org/packages/48/ef/f4fb45e2196bc7ffe09cad0542d9aff66b0e33f6c0954b43e49c33cad7bd/pywin32-308-cp311-cp311-win_amd64.whl", hash = "sha256:575621b90f0dc2695fec346b2d6302faebd4f0f45c05ea29404cefe35d89442b", size = 6559559 }, { url = "https://files.pythonhosted.org/packages/79/ef/68bb6aa865c5c9b11a35771329e95917b5559845bd75b65549407f9fc6b4/pywin32-308-cp311-cp311-win_arm64.whl", hash = "sha256:100a5442b7332070983c4cd03f2e906a5648a5104b8a7f50175f7906efd16bb6", size = 7972495 }, { url = "https://files.pythonhosted.org/packages/00/7c/d00d6bdd96de4344e06c4afbf218bc86b54436a94c01c71a8701f613aa56/pywin32-308-cp312-cp312-win32.whl", hash = "sha256:587f3e19696f4bf96fde9d8a57cec74a57021ad5f204c9e627e15c33ff568897", size = 5939729 }, { url = "https://files.pythonhosted.org/packages/21/27/0c8811fbc3ca188f93b5354e7c286eb91f80a53afa4e11007ef661afa746/pywin32-308-cp312-cp312-win_amd64.whl", hash = "sha256:00b3e11ef09ede56c6a43c71f2d31857cf7c54b0ab6e78ac659497abd2834f47", size = 6543015 }, { url = "https://files.pythonhosted.org/packages/9d/0f/d40f8373608caed2255781a3ad9a51d03a594a1248cd632d6a298daca693/pywin32-308-cp312-cp312-win_arm64.whl", hash = "sha256:9b4de86c8d909aed15b7011182c8cab38c8850de36e6afb1f0db22b8959e3091", size = 7976033 }, { url = "https://files.pythonhosted.org/packages/a9/a4/aa562d8935e3df5e49c161b427a3a2efad2ed4e9cf81c3de636f1fdddfd0/pywin32-308-cp313-cp313-win32.whl", hash = "sha256:1c44539a37a5b7b21d02ab34e6a4d314e0788f1690d65b48e9b0b89f31abbbed", size = 5938579 }, { url = "https://files.pythonhosted.org/packages/c7/50/b0efb8bb66210da67a53ab95fd7a98826a97ee21f1d22949863e6d588b22/pywin32-308-cp313-cp313-win_amd64.whl", hash = "sha256:fd380990e792eaf6827fcb7e187b2b4b1cede0585e3d0c9e84201ec27b9905e4", size = 6542056 }, { url = "https://files.pythonhosted.org/packages/26/df/2b63e3e4f2df0224f8aaf6d131f54fe4e8c96400eb9df563e2aae2e1a1f9/pywin32-308-cp313-cp313-win_arm64.whl", hash = "sha256:ef313c46d4c18dfb82a2431e3051ac8f112ccee1a34f29c263c583c568db63cd", size = 7974986 }, ] [[package]] name = "pyyaml" version = "6.0.2" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/54/ed/79a089b6be93607fa5cdaedf301d7dfb23af5f25c398d5ead2525b063e17/pyyaml-6.0.2.tar.gz", hash = "sha256:d584d9ec91ad65861cc08d42e834324ef890a082e591037abe114850ff7bbc3e", size = 130631 } wheels = [ { url = "https://files.pythonhosted.org/packages/9b/95/a3fac87cb7158e231b5a6012e438c647e1a87f09f8e0d123acec8ab8bf71/PyYAML-6.0.2-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:0a9a2848a5b7feac301353437eb7d5957887edbf81d56e903999a75a3d743086", size = 184199 }, { url = "https://files.pythonhosted.org/packages/c7/7a/68bd47624dab8fd4afbfd3c48e3b79efe09098ae941de5b58abcbadff5cb/PyYAML-6.0.2-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:29717114e51c84ddfba879543fb232a6ed60086602313ca38cce623c1d62cfbf", size = 171758 }, { url = "https://files.pythonhosted.org/packages/49/ee/14c54df452143b9ee9f0f29074d7ca5516a36edb0b4cc40c3f280131656f/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8824b5a04a04a047e72eea5cec3bc266db09e35de6bdfe34c9436ac5ee27d237", size = 718463 }, { url = "https://files.pythonhosted.org/packages/4d/61/de363a97476e766574650d742205be468921a7b532aa2499fcd886b62530/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7c36280e6fb8385e520936c3cb3b8042851904eba0e58d277dca80a5cfed590b", size = 719280 }, { url = "https://files.pythonhosted.org/packages/6b/4e/1523cb902fd98355e2e9ea5e5eb237cbc5f3ad5f3075fa65087aa0ecb669/PyYAML-6.0.2-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ec031d5d2feb36d1d1a24380e4db6d43695f3748343d99434e6f5f9156aaa2ed", size = 751239 }, { url = "https://files.pythonhosted.org/packages/b7/33/5504b3a9a4464893c32f118a9cc045190a91637b119a9c881da1cf6b7a72/PyYAML-6.0.2-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:936d68689298c36b53b29f23c6dbb74de12b4ac12ca6cfe0e047bedceea56180", size = 695802 }, { url = "https://files.pythonhosted.org/packages/5c/20/8347dcabd41ef3a3cdc4f7b7a2aff3d06598c8779faa189cdbf878b626a4/PyYAML-6.0.2-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:23502f431948090f597378482b4812b0caae32c22213aecf3b55325e049a6c68", size = 720527 }, { url = "https://files.pythonhosted.org/packages/be/aa/5afe99233fb360d0ff37377145a949ae258aaab831bde4792b32650a4378/PyYAML-6.0.2-cp310-cp310-win32.whl", hash = "sha256:2e99c6826ffa974fe6e27cdb5ed0021786b03fc98e5ee3c5bfe1fd5015f42b99", size = 144052 }, { url = "https://files.pythonhosted.org/packages/b5/84/0fa4b06f6d6c958d207620fc60005e241ecedceee58931bb20138e1e5776/PyYAML-6.0.2-cp310-cp310-win_amd64.whl", hash = "sha256:a4d3091415f010369ae4ed1fc6b79def9416358877534caf6a0fdd2146c87a3e", size = 161774 }, { url = "https://files.pythonhosted.org/packages/f8/aa/7af4e81f7acba21a4c6be026da38fd2b872ca46226673c89a758ebdc4fd2/PyYAML-6.0.2-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:cc1c1159b3d456576af7a3e4d1ba7e6924cb39de8f67111c735f6fc832082774", size = 184612 }, { url = "https://files.pythonhosted.org/packages/8b/62/b9faa998fd185f65c1371643678e4d58254add437edb764a08c5a98fb986/PyYAML-6.0.2-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:1e2120ef853f59c7419231f3bf4e7021f1b936f6ebd222406c3b60212205d2ee", size = 172040 }, { url = "https://files.pythonhosted.org/packages/ad/0c/c804f5f922a9a6563bab712d8dcc70251e8af811fce4524d57c2c0fd49a4/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:5d225db5a45f21e78dd9358e58a98702a0302f2659a3c6cd320564b75b86f47c", size = 736829 }, { url = "https://files.pythonhosted.org/packages/51/16/6af8d6a6b210c8e54f1406a6b9481febf9c64a3109c541567e35a49aa2e7/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:5ac9328ec4831237bec75defaf839f7d4564be1e6b25ac710bd1a96321cc8317", size = 764167 }, { url = "https://files.pythonhosted.org/packages/75/e4/2c27590dfc9992f73aabbeb9241ae20220bd9452df27483b6e56d3975cc5/PyYAML-6.0.2-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3ad2a3decf9aaba3d29c8f537ac4b243e36bef957511b4766cb0057d32b0be85", size = 762952 }, { url = "https://files.pythonhosted.org/packages/9b/97/ecc1abf4a823f5ac61941a9c00fe501b02ac3ab0e373c3857f7d4b83e2b6/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:ff3824dc5261f50c9b0dfb3be22b4567a6f938ccce4587b38952d85fd9e9afe4", size = 735301 }, { url = "https://files.pythonhosted.org/packages/45/73/0f49dacd6e82c9430e46f4a027baa4ca205e8b0a9dce1397f44edc23559d/PyYAML-6.0.2-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:797b4f722ffa07cc8d62053e4cff1486fa6dc094105d13fea7b1de7d8bf71c9e", size = 756638 }, { url = "https://files.pythonhosted.org/packages/22/5f/956f0f9fc65223a58fbc14459bf34b4cc48dec52e00535c79b8db361aabd/PyYAML-6.0.2-cp311-cp311-win32.whl", hash = "sha256:11d8f3dd2b9c1207dcaf2ee0bbbfd5991f571186ec9cc78427ba5bd32afae4b5", size = 143850 }, { url = "https://files.pythonhosted.org/packages/ed/23/8da0bbe2ab9dcdd11f4f4557ccaf95c10b9811b13ecced089d43ce59c3c8/PyYAML-6.0.2-cp311-cp311-win_amd64.whl", hash = "sha256:e10ce637b18caea04431ce14fabcf5c64a1c61ec9c56b071a4b7ca131ca52d44", size = 161980 }, { url = "https://files.pythonhosted.org/packages/86/0c/c581167fc46d6d6d7ddcfb8c843a4de25bdd27e4466938109ca68492292c/PyYAML-6.0.2-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:c70c95198c015b85feafc136515252a261a84561b7b1d51e3384e0655ddf25ab", size = 183873 }, { url = "https://files.pythonhosted.org/packages/a8/0c/38374f5bb272c051e2a69281d71cba6fdb983413e6758b84482905e29a5d/PyYAML-6.0.2-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:ce826d6ef20b1bc864f0a68340c8b3287705cae2f8b4b1d932177dcc76721725", size = 173302 }, { url = "https://files.pythonhosted.org/packages/c3/93/9916574aa8c00aa06bbac729972eb1071d002b8e158bd0e83a3b9a20a1f7/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1f71ea527786de97d1a0cc0eacd1defc0985dcf6b3f17bb77dcfc8c34bec4dc5", size = 739154 }, { url = "https://files.pythonhosted.org/packages/95/0f/b8938f1cbd09739c6da569d172531567dbcc9789e0029aa070856f123984/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:9b22676e8097e9e22e36d6b7bda33190d0d400f345f23d4065d48f4ca7ae0425", size = 766223 }, { url = "https://files.pythonhosted.org/packages/b9/2b/614b4752f2e127db5cc206abc23a8c19678e92b23c3db30fc86ab731d3bd/PyYAML-6.0.2-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:80bab7bfc629882493af4aa31a4cfa43a4c57c83813253626916b8c7ada83476", size = 767542 }, { url = "https://files.pythonhosted.org/packages/d4/00/dd137d5bcc7efea1836d6264f049359861cf548469d18da90cd8216cf05f/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:0833f8694549e586547b576dcfaba4a6b55b9e96098b36cdc7ebefe667dfed48", size = 731164 }, { url = "https://files.pythonhosted.org/packages/c9/1f/4f998c900485e5c0ef43838363ba4a9723ac0ad73a9dc42068b12aaba4e4/PyYAML-6.0.2-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:8b9c7197f7cb2738065c481a0461e50ad02f18c78cd75775628afb4d7137fb3b", size = 756611 }, { url = "https://files.pythonhosted.org/packages/df/d1/f5a275fdb252768b7a11ec63585bc38d0e87c9e05668a139fea92b80634c/PyYAML-6.0.2-cp312-cp312-win32.whl", hash = "sha256:ef6107725bd54b262d6dedcc2af448a266975032bc85ef0172c5f059da6325b4", size = 140591 }, { url = "https://files.pythonhosted.org/packages/0c/e8/4f648c598b17c3d06e8753d7d13d57542b30d56e6c2dedf9c331ae56312e/PyYAML-6.0.2-cp312-cp312-win_amd64.whl", hash = "sha256:7e7401d0de89a9a855c839bc697c079a4af81cf878373abd7dc625847d25cbd8", size = 156338 }, { url = "https://files.pythonhosted.org/packages/ef/e3/3af305b830494fa85d95f6d95ef7fa73f2ee1cc8ef5b495c7c3269fb835f/PyYAML-6.0.2-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:efdca5630322a10774e8e98e1af481aad470dd62c3170801852d752aa7a783ba", size = 181309 }, { url = "https://files.pythonhosted.org/packages/45/9f/3b1c20a0b7a3200524eb0076cc027a970d320bd3a6592873c85c92a08731/PyYAML-6.0.2-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:50187695423ffe49e2deacb8cd10510bc361faac997de9efef88badc3bb9e2d1", size = 171679 }, { url = "https://files.pythonhosted.org/packages/7c/9a/337322f27005c33bcb656c655fa78325b730324c78620e8328ae28b64d0c/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0ffe8360bab4910ef1b9e87fb812d8bc0a308b0d0eef8c8f44e0254ab3b07133", size = 733428 }, { url = "https://files.pythonhosted.org/packages/a3/69/864fbe19e6c18ea3cc196cbe5d392175b4cf3d5d0ac1403ec3f2d237ebb5/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:17e311b6c678207928d649faa7cb0d7b4c26a0ba73d41e99c4fff6b6c3276484", size = 763361 }, { url = "https://files.pythonhosted.org/packages/04/24/b7721e4845c2f162d26f50521b825fb061bc0a5afcf9a386840f23ea19fa/PyYAML-6.0.2-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:70b189594dbe54f75ab3a1acec5f1e3faa7e8cf2f1e08d9b561cb41b845f69d5", size = 759523 }, { url = "https://files.pythonhosted.org/packages/2b/b2/e3234f59ba06559c6ff63c4e10baea10e5e7df868092bf9ab40e5b9c56b6/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:41e4e3953a79407c794916fa277a82531dd93aad34e29c2a514c2c0c5fe971cc", size = 726660 }, { url = "https://files.pythonhosted.org/packages/fe/0f/25911a9f080464c59fab9027482f822b86bf0608957a5fcc6eaac85aa515/PyYAML-6.0.2-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:68ccc6023a3400877818152ad9a1033e3db8625d899c72eacb5a668902e4d652", size = 751597 }, { url = "https://files.pythonhosted.org/packages/14/0d/e2c3b43bbce3cf6bd97c840b46088a3031085179e596d4929729d8d68270/PyYAML-6.0.2-cp313-cp313-win32.whl", hash = "sha256:bc2fa7c6b47d6bc618dd7fb02ef6fdedb1090ec036abab80d4681424b84c1183", size = 140527 }, { url = "https://files.pythonhosted.org/packages/fa/de/02b54f42487e3d3c6efb3f89428677074ca7bf43aae402517bc7cca949f3/PyYAML-6.0.2-cp313-cp313-win_amd64.whl", hash = "sha256:8388ee1976c416731879ac16da0aff3f63b286ffdd57cdeb95f3f2e085687563", size = 156446 }, ] [[package]] name = "pyzmq" version = "26.2.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "cffi", marker = "implementation_name == 'pypy'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/fd/05/bed626b9f7bb2322cdbbf7b4bd8f54b1b617b0d2ab2d3547d6e39428a48e/pyzmq-26.2.0.tar.gz", hash = "sha256:070672c258581c8e4f640b5159297580a9974b026043bd4ab0470be9ed324f1f", size = 271975 } wheels = [ { url = "https://files.pythonhosted.org/packages/1f/a8/9837c39aba390eb7d01924ace49d761c8dbe7bc2d6082346d00c8332e431/pyzmq-26.2.0-cp310-cp310-macosx_10_15_universal2.whl", hash = "sha256:ddf33d97d2f52d89f6e6e7ae66ee35a4d9ca6f36eda89c24591b0c40205a3629", size = 1340058 }, { url = "https://files.pythonhosted.org/packages/a2/1f/a006f2e8e4f7d41d464272012695da17fb95f33b54342612a6890da96ff6/pyzmq-26.2.0-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:dacd995031a01d16eec825bf30802fceb2c3791ef24bcce48fa98ce40918c27b", size = 1008818 }, { url = "https://files.pythonhosted.org/packages/b6/09/b51b6683fde5ca04593a57bbe81788b6b43114d8f8ee4e80afc991e14760/pyzmq-26.2.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:89289a5ee32ef6c439086184529ae060c741334b8970a6855ec0b6ad3ff28764", size = 673199 }, { url = "https://files.pythonhosted.org/packages/c9/78/486f3e2e824f3a645238332bf5a4c4b4477c3063033a27c1e4052358dee2/pyzmq-26.2.0-cp310-cp310-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:5506f06d7dc6ecf1efacb4a013b1f05071bb24b76350832c96449f4a2d95091c", size = 911762 }, { url = "https://files.pythonhosted.org/packages/5e/3b/2eb1667c9b866f53e76ee8b0c301b0469745a23bd5a87b7ee3d5dd9eb6e5/pyzmq-26.2.0-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8ea039387c10202ce304af74def5021e9adc6297067f3441d348d2b633e8166a", size = 868773 }, { url = "https://files.pythonhosted.org/packages/16/29/ca99b4598a9dc7e468b5417eda91f372b595be1e3eec9b7cbe8e5d3584e8/pyzmq-26.2.0-cp310-cp310-manylinux_2_28_x86_64.whl", hash = "sha256:a2224fa4a4c2ee872886ed00a571f5e967c85e078e8e8c2530a2fb01b3309b88", size = 868834 }, { url = "https://files.pythonhosted.org/packages/ad/e5/9efaeb1d2f4f8c50da04144f639b042bc52869d3a206d6bf672ab3522163/pyzmq-26.2.0-cp310-cp310-musllinux_1_1_aarch64.whl", hash = "sha256:28ad5233e9c3b52d76196c696e362508959741e1a005fb8fa03b51aea156088f", size = 1202861 }, { url = "https://files.pythonhosted.org/packages/c3/62/c721b5608a8ac0a69bb83cbb7d07a56f3ff00b3991a138e44198a16f94c7/pyzmq-26.2.0-cp310-cp310-musllinux_1_1_i686.whl", hash = "sha256:1c17211bc037c7d88e85ed8b7d8f7e52db6dc8eca5590d162717c654550f7282", size = 1515304 }, { url = "https://files.pythonhosted.org/packages/87/84/e8bd321aa99b72f48d4606fc5a0a920154125bd0a4608c67eab742dab087/pyzmq-26.2.0-cp310-cp310-musllinux_1_1_x86_64.whl", hash = "sha256:b8f86dd868d41bea9a5f873ee13bf5551c94cf6bc51baebc6f85075971fe6eea", size = 1414712 }, { url = "https://files.pythonhosted.org/packages/cd/cd/420e3fd1ac6977b008b72e7ad2dae6350cc84d4c5027fc390b024e61738f/pyzmq-26.2.0-cp310-cp310-win32.whl", hash = "sha256:46a446c212e58456b23af260f3d9fb785054f3e3653dbf7279d8f2b5546b21c2", size = 578113 }, { url = "https://files.pythonhosted.org/packages/5c/57/73930d56ed45ae0cb4946f383f985c855c9b3d4063f26416998f07523c0e/pyzmq-26.2.0-cp310-cp310-win_amd64.whl", hash = "sha256:49d34ab71db5a9c292a7644ce74190b1dd5a3475612eefb1f8be1d6961441971", size = 641631 }, { url = "https://files.pythonhosted.org/packages/61/d2/ae6ac5c397f1ccad59031c64beaafce7a0d6182e0452cc48f1c9c87d2dd0/pyzmq-26.2.0-cp310-cp310-win_arm64.whl", hash = "sha256:bfa832bfa540e5b5c27dcf5de5d82ebc431b82c453a43d141afb1e5d2de025fa", size = 543528 }, { url = "https://files.pythonhosted.org/packages/12/20/de7442172f77f7c96299a0ac70e7d4fb78cd51eca67aa2cf552b66c14196/pyzmq-26.2.0-cp311-cp311-macosx_10_15_universal2.whl", hash = "sha256:8f7e66c7113c684c2b3f1c83cdd3376103ee0ce4c49ff80a648643e57fb22218", size = 1340639 }, { url = "https://files.pythonhosted.org/packages/98/4d/5000468bd64c7910190ed0a6c76a1ca59a68189ec1f007c451dc181a22f4/pyzmq-26.2.0-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:3a495b30fc91db2db25120df5847d9833af237546fd59170701acd816ccc01c4", size = 1008710 }, { url = "https://files.pythonhosted.org/packages/e1/bf/c67fd638c2f9fbbab8090a3ee779370b97c82b84cc12d0c498b285d7b2c0/pyzmq-26.2.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:77eb0968da535cba0470a5165468b2cac7772cfb569977cff92e240f57e31bef", size = 673129 }, { url = "https://files.pythonhosted.org/packages/86/94/99085a3f492aa538161cbf27246e8886ff850e113e0c294a5b8245f13b52/pyzmq-26.2.0-cp311-cp311-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:6ace4f71f1900a548f48407fc9be59c6ba9d9aaf658c2eea6cf2779e72f9f317", size = 910107 }, { url = "https://files.pythonhosted.org/packages/31/1d/346809e8a9b999646d03f21096428453465b1bca5cd5c64ecd048d9ecb01/pyzmq-26.2.0-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:92a78853d7280bffb93df0a4a6a2498cba10ee793cc8076ef797ef2f74d107cf", size = 867960 }, { url = "https://files.pythonhosted.org/packages/ab/68/6fb6ae5551846ad5beca295b7bca32bf0a7ce19f135cb30e55fa2314e6b6/pyzmq-26.2.0-cp311-cp311-manylinux_2_28_x86_64.whl", hash = "sha256:689c5d781014956a4a6de61d74ba97b23547e431e9e7d64f27d4922ba96e9d6e", size = 869204 }, { url = "https://files.pythonhosted.org/packages/0f/f9/18417771dee223ccf0f48e29adf8b4e25ba6d0e8285e33bcbce078070bc3/pyzmq-26.2.0-cp311-cp311-musllinux_1_1_aarch64.whl", hash = "sha256:0aca98bc423eb7d153214b2df397c6421ba6373d3397b26c057af3c904452e37", size = 1203351 }, { url = "https://files.pythonhosted.org/packages/e0/46/f13e67fe0d4f8a2315782cbad50493de6203ea0d744610faf4d5f5b16e90/pyzmq-26.2.0-cp311-cp311-musllinux_1_1_i686.whl", hash = "sha256:1f3496d76b89d9429a656293744ceca4d2ac2a10ae59b84c1da9b5165f429ad3", size = 1514204 }, { url = "https://files.pythonhosted.org/packages/50/11/ddcf7343b7b7a226e0fc7b68cbf5a5bb56291fac07f5c3023bb4c319ebb4/pyzmq-26.2.0-cp311-cp311-musllinux_1_1_x86_64.whl", hash = "sha256:5c2b3bfd4b9689919db068ac6c9911f3fcb231c39f7dd30e3138be94896d18e6", size = 1414339 }, { url = "https://files.pythonhosted.org/packages/01/14/1c18d7d5b7be2708f513f37c61bfadfa62161c10624f8733f1c8451b3509/pyzmq-26.2.0-cp311-cp311-win32.whl", hash = "sha256:eac5174677da084abf378739dbf4ad245661635f1600edd1221f150b165343f4", size = 576928 }, { url = "https://files.pythonhosted.org/packages/3b/1b/0a540edd75a41df14ec416a9a500b9fec66e554aac920d4c58fbd5756776/pyzmq-26.2.0-cp311-cp311-win_amd64.whl", hash = "sha256:5a509df7d0a83a4b178d0f937ef14286659225ef4e8812e05580776c70e155d5", size = 642317 }, { url = "https://files.pythonhosted.org/packages/98/77/1cbfec0358078a4c5add529d8a70892db1be900980cdb5dd0898b3d6ab9d/pyzmq-26.2.0-cp311-cp311-win_arm64.whl", hash = "sha256:c0e6091b157d48cbe37bd67233318dbb53e1e6327d6fc3bb284afd585d141003", size = 543834 }, { url = "https://files.pythonhosted.org/packages/28/2f/78a766c8913ad62b28581777ac4ede50c6d9f249d39c2963e279524a1bbe/pyzmq-26.2.0-cp312-cp312-macosx_10_15_universal2.whl", hash = "sha256:ded0fc7d90fe93ae0b18059930086c51e640cdd3baebdc783a695c77f123dcd9", size = 1343105 }, { url = "https://files.pythonhosted.org/packages/b7/9c/4b1e2d3d4065be715e007fe063ec7885978fad285f87eae1436e6c3201f4/pyzmq-26.2.0-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:17bf5a931c7f6618023cdacc7081f3f266aecb68ca692adac015c383a134ca52", size = 1008365 }, { url = "https://files.pythonhosted.org/packages/4f/ef/5a23ec689ff36d7625b38d121ef15abfc3631a9aecb417baf7a4245e4124/pyzmq-26.2.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:55cf66647e49d4621a7e20c8d13511ef1fe1efbbccf670811864452487007e08", size = 665923 }, { url = "https://files.pythonhosted.org/packages/ae/61/d436461a47437d63c6302c90724cf0981883ec57ceb6073873f32172d676/pyzmq-26.2.0-cp312-cp312-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:4661c88db4a9e0f958c8abc2b97472e23061f0bc737f6f6179d7a27024e1faa5", size = 903400 }, { url = "https://files.pythonhosted.org/packages/47/42/fc6d35ecefe1739a819afaf6f8e686f7f02a4dd241c78972d316f403474c/pyzmq-26.2.0-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:ea7f69de383cb47522c9c208aec6dd17697db7875a4674c4af3f8cfdac0bdeae", size = 860034 }, { url = "https://files.pythonhosted.org/packages/07/3b/44ea6266a6761e9eefaa37d98fabefa112328808ac41aa87b4bbb668af30/pyzmq-26.2.0-cp312-cp312-manylinux_2_28_x86_64.whl", hash = "sha256:7f98f6dfa8b8ccaf39163ce872bddacca38f6a67289116c8937a02e30bbe9711", size = 860579 }, { url = "https://files.pythonhosted.org/packages/38/6f/4df2014ab553a6052b0e551b37da55166991510f9e1002c89cab7ce3b3f2/pyzmq-26.2.0-cp312-cp312-musllinux_1_1_aarch64.whl", hash = "sha256:e3e0210287329272539eea617830a6a28161fbbd8a3271bf4150ae3e58c5d0e6", size = 1196246 }, { url = "https://files.pythonhosted.org/packages/38/9d/ee240fc0c9fe9817f0c9127a43238a3e28048795483c403cc10720ddef22/pyzmq-26.2.0-cp312-cp312-musllinux_1_1_i686.whl", hash = "sha256:6b274e0762c33c7471f1a7471d1a2085b1a35eba5cdc48d2ae319f28b6fc4de3", size = 1507441 }, { url = "https://files.pythonhosted.org/packages/85/4f/01711edaa58d535eac4a26c294c617c9a01f09857c0ce191fd574d06f359/pyzmq-26.2.0-cp312-cp312-musllinux_1_1_x86_64.whl", hash = "sha256:29c6a4635eef69d68a00321e12a7d2559fe2dfccfa8efae3ffb8e91cd0b36a8b", size = 1406498 }, { url = "https://files.pythonhosted.org/packages/07/18/907134c85c7152f679ed744e73e645b365f3ad571f38bdb62e36f347699a/pyzmq-26.2.0-cp312-cp312-win32.whl", hash = "sha256:989d842dc06dc59feea09e58c74ca3e1678c812a4a8a2a419046d711031f69c7", size = 575533 }, { url = "https://files.pythonhosted.org/packages/ce/2c/a6f4a20202a4d3c582ad93f95ee78d79bbdc26803495aec2912b17dbbb6c/pyzmq-26.2.0-cp312-cp312-win_amd64.whl", hash = "sha256:2a50625acdc7801bc6f74698c5c583a491c61d73c6b7ea4dee3901bb99adb27a", size = 637768 }, { url = "https://files.pythonhosted.org/packages/5f/0e/eb16ff731632d30554bf5af4dbba3ffcd04518219d82028aea4ae1b02ca5/pyzmq-26.2.0-cp312-cp312-win_arm64.whl", hash = "sha256:4d29ab8592b6ad12ebbf92ac2ed2bedcfd1cec192d8e559e2e099f648570e19b", size = 540675 }, { url = "https://files.pythonhosted.org/packages/04/a7/0f7e2f6c126fe6e62dbae0bc93b1bd3f1099cf7fea47a5468defebe3f39d/pyzmq-26.2.0-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:9dd8cd1aeb00775f527ec60022004d030ddc51d783d056e3e23e74e623e33726", size = 1006564 }, { url = "https://files.pythonhosted.org/packages/31/b6/a187165c852c5d49f826a690857684333a6a4a065af0a6015572d2284f6a/pyzmq-26.2.0-cp313-cp313-macosx_10_15_universal2.whl", hash = "sha256:28c812d9757fe8acecc910c9ac9dafd2ce968c00f9e619db09e9f8f54c3a68a3", size = 1340447 }, { url = "https://files.pythonhosted.org/packages/68/ba/f4280c58ff71f321602a6e24fd19879b7e79793fb8ab14027027c0fb58ef/pyzmq-26.2.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4d80b1dd99c1942f74ed608ddb38b181b87476c6a966a88a950c7dee118fdf50", size = 665485 }, { url = "https://files.pythonhosted.org/packages/77/b5/c987a5c53c7d8704216f29fc3d810b32f156bcea488a940e330e1bcbb88d/pyzmq-26.2.0-cp313-cp313-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:8c997098cc65e3208eca09303630e84d42718620e83b733d0fd69543a9cab9cb", size = 903484 }, { url = "https://files.pythonhosted.org/packages/29/c9/07da157d2db18c72a7eccef8e684cefc155b712a88e3d479d930aa9eceba/pyzmq-26.2.0-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:7ad1bc8d1b7a18497dda9600b12dc193c577beb391beae5cd2349184db40f187", size = 859981 }, { url = "https://files.pythonhosted.org/packages/43/09/e12501bd0b8394b7d02c41efd35c537a1988da67fc9c745cae9c6c776d31/pyzmq-26.2.0-cp313-cp313-manylinux_2_28_x86_64.whl", hash = "sha256:bea2acdd8ea4275e1278350ced63da0b166421928276c7c8e3f9729d7402a57b", size = 860334 }, { url = "https://files.pythonhosted.org/packages/eb/ff/f5ec1d455f8f7385cc0a8b2acd8c807d7fade875c14c44b85c1bddabae21/pyzmq-26.2.0-cp313-cp313-musllinux_1_1_aarch64.whl", hash = "sha256:23f4aad749d13698f3f7b64aad34f5fc02d6f20f05999eebc96b89b01262fb18", size = 1196179 }, { url = "https://files.pythonhosted.org/packages/ec/8a/bb2ac43295b1950fe436a81fc5b298be0b96ac76fb029b514d3ed58f7b27/pyzmq-26.2.0-cp313-cp313-musllinux_1_1_i686.whl", hash = "sha256:a4f96f0d88accc3dbe4a9025f785ba830f968e21e3e2c6321ccdfc9aef755115", size = 1507668 }, { url = "https://files.pythonhosted.org/packages/a9/49/dbc284ebcfd2dca23f6349227ff1616a7ee2c4a35fe0a5d6c3deff2b4fed/pyzmq-26.2.0-cp313-cp313-musllinux_1_1_x86_64.whl", hash = "sha256:ced65e5a985398827cc9276b93ef6dfabe0273c23de8c7931339d7e141c2818e", size = 1406539 }, { url = "https://files.pythonhosted.org/packages/00/68/093cdce3fe31e30a341d8e52a1ad86392e13c57970d722c1f62a1d1a54b6/pyzmq-26.2.0-cp313-cp313-win32.whl", hash = "sha256:31507f7b47cc1ead1f6e86927f8ebb196a0bab043f6345ce070f412a59bf87b5", size = 575567 }, { url = "https://files.pythonhosted.org/packages/92/ae/6cc4657148143412b5819b05e362ae7dd09fb9fe76e2a539dcff3d0386bc/pyzmq-26.2.0-cp313-cp313-win_amd64.whl", hash = "sha256:70fc7fcf0410d16ebdda9b26cbd8bf8d803d220a7f3522e060a69a9c87bf7bad", size = 637551 }, { url = "https://files.pythonhosted.org/packages/6c/67/fbff102e201688f97c8092e4c3445d1c1068c2f27bbd45a578df97ed5f94/pyzmq-26.2.0-cp313-cp313-win_arm64.whl", hash = "sha256:c3789bd5768ab5618ebf09cef6ec2b35fed88709b104351748a63045f0ff9797", size = 540378 }, { url = "https://files.pythonhosted.org/packages/3f/fe/2d998380b6e0122c6c4bdf9b6caf490831e5f5e2d08a203b5adff060c226/pyzmq-26.2.0-cp313-cp313t-macosx_10_13_x86_64.whl", hash = "sha256:034da5fc55d9f8da09015d368f519478a52675e558c989bfcb5cf6d4e16a7d2a", size = 1007378 }, { url = "https://files.pythonhosted.org/packages/4a/f4/30d6e7157f12b3a0390bde94d6a8567cdb88846ed068a6e17238a4ccf600/pyzmq-26.2.0-cp313-cp313t-macosx_10_15_universal2.whl", hash = "sha256:c92d73464b886931308ccc45b2744e5968cbaade0b1d6aeb40d8ab537765f5bc", size = 1329532 }, { url = "https://files.pythonhosted.org/packages/82/86/3fe917870e15ee1c3ad48229a2a64458e36036e64b4afa9659045d82bfa8/pyzmq-26.2.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:794a4562dcb374f7dbbfb3f51d28fb40123b5a2abadee7b4091f93054909add5", size = 653242 }, { url = "https://files.pythonhosted.org/packages/50/2d/242e7e6ef6c8c19e6cb52d095834508cd581ffb925699fd3c640cdc758f1/pyzmq-26.2.0-cp313-cp313t-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:aee22939bb6075e7afededabad1a56a905da0b3c4e3e0c45e75810ebe3a52672", size = 888404 }, { url = "https://files.pythonhosted.org/packages/ac/11/7270566e1f31e4ea73c81ec821a4b1688fd551009a3d2bab11ec66cb1e8f/pyzmq-26.2.0-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2ae90ff9dad33a1cfe947d2c40cb9cb5e600d759ac4f0fd22616ce6540f72797", size = 845858 }, { url = "https://files.pythonhosted.org/packages/91/d5/72b38fbc69867795c8711bdd735312f9fef1e3d9204e2f63ab57085434b9/pyzmq-26.2.0-cp313-cp313t-manylinux_2_28_x86_64.whl", hash = "sha256:43a47408ac52647dfabbc66a25b05b6a61700b5165807e3fbd40063fcaf46386", size = 847375 }, { url = "https://files.pythonhosted.org/packages/dd/9a/10ed3c7f72b4c24e719c59359fbadd1a27556a28b36cdf1cd9e4fb7845d5/pyzmq-26.2.0-cp313-cp313t-musllinux_1_1_aarch64.whl", hash = "sha256:25bf2374a2a8433633c65ccb9553350d5e17e60c8eb4de4d92cc6bd60f01d306", size = 1183489 }, { url = "https://files.pythonhosted.org/packages/72/2d/8660892543fabf1fe41861efa222455811adac9f3c0818d6c3170a1153e3/pyzmq-26.2.0-cp313-cp313t-musllinux_1_1_i686.whl", hash = "sha256:007137c9ac9ad5ea21e6ad97d3489af654381324d5d3ba614c323f60dab8fae6", size = 1492932 }, { url = "https://files.pythonhosted.org/packages/7b/d6/32fd69744afb53995619bc5effa2a405ae0d343cd3e747d0fbc43fe894ee/pyzmq-26.2.0-cp313-cp313t-musllinux_1_1_x86_64.whl", hash = "sha256:470d4a4f6d48fb34e92d768b4e8a5cc3780db0d69107abf1cd7ff734b9766eb0", size = 1392485 }, { url = "https://files.pythonhosted.org/packages/53/fb/36b2b2548286e9444e52fcd198760af99fd89102b5be50f0660fcfe902df/pyzmq-26.2.0-pp310-pypy310_pp73-macosx_10_15_x86_64.whl", hash = "sha256:706e794564bec25819d21a41c31d4df2d48e1cc4b061e8d345d7fb4dd3e94072", size = 906955 }, { url = "https://files.pythonhosted.org/packages/77/8f/6ce54f8979a01656e894946db6299e2273fcee21c8e5fa57c6295ef11f57/pyzmq-26.2.0-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:8b435f2753621cd36e7c1762156815e21c985c72b19135dac43a7f4f31d28dd1", size = 565701 }, { url = "https://files.pythonhosted.org/packages/ee/1c/bf8cd66730a866b16db8483286078892b7f6536f8c389fb46e4beba0a970/pyzmq-26.2.0-pp310-pypy310_pp73-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:160c7e0a5eb178011e72892f99f918c04a131f36056d10d9c1afb223fc952c2d", size = 794312 }, { url = "https://files.pythonhosted.org/packages/71/43/91fa4ff25bbfdc914ab6bafa0f03241d69370ef31a761d16bb859f346582/pyzmq-26.2.0-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c4a71d5d6e7b28a47a394c0471b7e77a0661e2d651e7ae91e0cab0a587859ca", size = 752775 }, { url = "https://files.pythonhosted.org/packages/ec/d2/3b2ab40f455a256cb6672186bea95cd97b459ce4594050132d71e76f0d6f/pyzmq-26.2.0-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:90412f2db8c02a3864cbfc67db0e3dcdbda336acf1c469526d3e869394fe001c", size = 550762 }, ] [[package]] name = "recommonmark" version = "0.7.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "commonmark" }, { name = "docutils" }, { name = "sphinx" }, ] sdist = { url = "https://files.pythonhosted.org/packages/1c/00/3dd2bdc4184b0ce754b5b446325abf45c2e0a347e022292ddc44670f628c/recommonmark-0.7.1.tar.gz", hash = "sha256:bdb4db649f2222dcd8d2d844f0006b958d627f732415d399791ee436a3686d67", size = 34444 } wheels = [ { url = "https://files.pythonhosted.org/packages/c6/77/ed589c75db5d02a77a1d5d2d9abc63f29676467d396c64277f98b50b79c2/recommonmark-0.7.1-py2.py3-none-any.whl", hash = "sha256:1b1db69af0231efce3fa21b94ff627ea33dee7079a01dd0a7f8482c3da148b3f", size = 10214 }, ] [[package]] name = "referencing" version = "0.35.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "attrs" }, { name = "rpds-py" }, ] sdist = { url = "https://files.pythonhosted.org/packages/99/5b/73ca1f8e72fff6fa52119dbd185f73a907b1989428917b24cff660129b6d/referencing-0.35.1.tar.gz", hash = "sha256:25b42124a6c8b632a425174f24087783efb348a6f1e0008e63cd4466fedf703c", size = 62991 } wheels = [ { url = "https://files.pythonhosted.org/packages/b7/59/2056f61236782a2c86b33906c025d4f4a0b17be0161b63b70fd9e8775d36/referencing-0.35.1-py3-none-any.whl", hash = "sha256:eda6d3234d62814d1c64e305c1331c9a3a6132da475ab6382eaa997b21ee75de", size = 26684 }, ] [[package]] name = "requests" version = "2.32.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "certifi" }, { name = "charset-normalizer" }, { name = "idna" }, { name = "urllib3" }, ] sdist = { url = "https://files.pythonhosted.org/packages/63/70/2bf7780ad2d390a8d301ad0b550f1581eadbd9a20f896afe06353c2a2913/requests-2.32.3.tar.gz", hash = "sha256:55365417734eb18255590a9ff9eb97e9e1da868d4ccd6402399eaf68af20a760", size = 131218 } wheels = [ { url = "https://files.pythonhosted.org/packages/f9/9b/335f9764261e915ed497fcdeb11df5dfd6f7bf257d4a6a2a686d80da4d54/requests-2.32.3-py3-none-any.whl", hash = "sha256:70761cfe03c773ceb22aa2f671b4757976145175cdfca038c02654d061d6dcc6", size = 64928 }, ] [[package]] name = "requests-mock" version = "1.12.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "requests" }, ] sdist = { url = "https://files.pythonhosted.org/packages/92/32/587625f91f9a0a3d84688bf9cfc4b2480a7e8ec327cefd0ff2ac891fd2cf/requests-mock-1.12.1.tar.gz", hash = "sha256:e9e12e333b525156e82a3c852f22016b9158220d2f47454de9cae8a77d371401", size = 60901 } wheels = [ { url = "https://files.pythonhosted.org/packages/97/ec/889fbc557727da0c34a33850950310240f2040f3b1955175fdb2b36a8910/requests_mock-1.12.1-py2.py3-none-any.whl", hash = "sha256:b1e37054004cdd5e56c84454cc7df12b25f90f382159087f4b6915aaeef39563", size = 27695 }, ] [[package]] name = "restructuredtext-lint" version = "1.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "docutils" }, ] sdist = { url = "https://files.pythonhosted.org/packages/48/9c/6d8035cafa2d2d314f34e6cd9313a299de095b26e96f1c7312878f988eec/restructuredtext_lint-1.4.0.tar.gz", hash = "sha256:1b235c0c922341ab6c530390892eb9e92f90b9b75046063e047cacfb0f050c45", size = 16723 } [[package]] name = "rpds-py" version = "0.22.3" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/01/80/cce854d0921ff2f0a9fa831ba3ad3c65cee3a46711addf39a2af52df2cfd/rpds_py-0.22.3.tar.gz", hash = "sha256:e32fee8ab45d3c2db6da19a5323bc3362237c8b653c70194414b892fd06a080d", size = 26771 } wheels = [ { url = "https://files.pythonhosted.org/packages/42/2a/ead1d09e57449b99dcc190d8d2323e3a167421d8f8fdf0f217c6f6befe47/rpds_py-0.22.3-cp310-cp310-macosx_10_12_x86_64.whl", hash = "sha256:6c7b99ca52c2c1752b544e310101b98a659b720b21db00e65edca34483259967", size = 359514 }, { url = "https://files.pythonhosted.org/packages/8f/7e/1254f406b7793b586c68e217a6a24ec79040f85e030fff7e9049069284f4/rpds_py-0.22.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:be2eb3f2495ba669d2a985f9b426c1797b7d48d6963899276d22f23e33d47e37", size = 349031 }, { url = "https://files.pythonhosted.org/packages/aa/da/17c6a2c73730d426df53675ff9cc6653ac7a60b6438d03c18e1c822a576a/rpds_py-0.22.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:70eb60b3ae9245ddea20f8a4190bd79c705a22f8028aaf8bbdebe4716c3fab24", size = 381485 }, { url = "https://files.pythonhosted.org/packages/aa/13/2dbacd820466aa2a3c4b747afb18d71209523d353cf865bf8f4796c969ea/rpds_py-0.22.3-cp310-cp310-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:4041711832360a9b75cfb11b25a6a97c8fb49c07b8bd43d0d02b45d0b499a4ff", size = 386794 }, { url = "https://files.pythonhosted.org/packages/6d/62/96905d0a35ad4e4bc3c098b2f34b2e7266e211d08635baa690643d2227be/rpds_py-0.22.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:64607d4cbf1b7e3c3c8a14948b99345eda0e161b852e122c6bb71aab6d1d798c", size = 423523 }, { url = "https://files.pythonhosted.org/packages/eb/1b/d12770f2b6a9fc2c3ec0d810d7d440f6d465ccd8b7f16ae5385952c28b89/rpds_py-0.22.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:81e69b0a0e2537f26d73b4e43ad7bc8c8efb39621639b4434b76a3de50c6966e", size = 446695 }, { url = "https://files.pythonhosted.org/packages/4d/cf/96f1fd75512a017f8e07408b6d5dbeb492d9ed46bfe0555544294f3681b3/rpds_py-0.22.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bc27863442d388870c1809a87507727b799c8460573cfbb6dc0eeaef5a11b5ec", size = 381959 }, { url = "https://files.pythonhosted.org/packages/ab/f0/d1c5b501c8aea85aeb938b555bfdf7612110a2f8cdc21ae0482c93dd0c24/rpds_py-0.22.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:e79dd39f1e8c3504be0607e5fc6e86bb60fe3584bec8b782578c3b0fde8d932c", size = 410420 }, { url = "https://files.pythonhosted.org/packages/33/3b/45b6c58fb6aad5a569ae40fb890fc494c6b02203505a5008ee6dc68e65f7/rpds_py-0.22.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:e0fa2d4ec53dc51cf7d3bb22e0aa0143966119f42a0c3e4998293a3dd2856b09", size = 557620 }, { url = "https://files.pythonhosted.org/packages/83/62/3fdd2d3d47bf0bb9b931c4c73036b4ab3ec77b25e016ae26fab0f02be2af/rpds_py-0.22.3-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fda7cb070f442bf80b642cd56483b5548e43d366fe3f39b98e67cce780cded00", size = 584202 }, { url = "https://files.pythonhosted.org/packages/04/f2/5dced98b64874b84ca824292f9cee2e3f30f3bcf231d15a903126684f74d/rpds_py-0.22.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:cff63a0272fcd259dcc3be1657b07c929c466b067ceb1c20060e8d10af56f5bf", size = 552787 }, { url = "https://files.pythonhosted.org/packages/67/13/2273dea1204eda0aea0ef55145da96a9aa28b3f88bb5c70e994f69eda7c3/rpds_py-0.22.3-cp310-cp310-win32.whl", hash = "sha256:9bd7228827ec7bb817089e2eb301d907c0d9827a9e558f22f762bb690b131652", size = 220088 }, { url = "https://files.pythonhosted.org/packages/4e/80/8c8176b67ad7f4a894967a7a4014ba039626d96f1d4874d53e409b58d69f/rpds_py-0.22.3-cp310-cp310-win_amd64.whl", hash = "sha256:9beeb01d8c190d7581a4d59522cd3d4b6887040dcfc744af99aa59fef3e041a8", size = 231737 }, { url = "https://files.pythonhosted.org/packages/15/ad/8d1ddf78f2805a71253fcd388017e7b4a0615c22c762b6d35301fef20106/rpds_py-0.22.3-cp311-cp311-macosx_10_12_x86_64.whl", hash = "sha256:d20cfb4e099748ea39e6f7b16c91ab057989712d31761d3300d43134e26e165f", size = 359773 }, { url = "https://files.pythonhosted.org/packages/c8/75/68c15732293a8485d79fe4ebe9045525502a067865fa4278f178851b2d87/rpds_py-0.22.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:68049202f67380ff9aa52f12e92b1c30115f32e6895cd7198fa2a7961621fc5a", size = 349214 }, { url = "https://files.pythonhosted.org/packages/3c/4c/7ce50f3070083c2e1b2bbd0fb7046f3da55f510d19e283222f8f33d7d5f4/rpds_py-0.22.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:fb4f868f712b2dd4bcc538b0a0c1f63a2b1d584c925e69a224d759e7070a12d5", size = 380477 }, { url = "https://files.pythonhosted.org/packages/9a/e9/835196a69cb229d5c31c13b8ae603bd2da9a6695f35fe4270d398e1db44c/rpds_py-0.22.3-cp311-cp311-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bc51abd01f08117283c5ebf64844a35144a0843ff7b2983e0648e4d3d9f10dbb", size = 386171 }, { url = "https://files.pythonhosted.org/packages/f9/8e/33fc4eba6683db71e91e6d594a2cf3a8fbceb5316629f0477f7ece5e3f75/rpds_py-0.22.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:0f3cec041684de9a4684b1572fe28c7267410e02450f4561700ca5a3bc6695a2", size = 422676 }, { url = "https://files.pythonhosted.org/packages/37/47/2e82d58f8046a98bb9497a8319604c92b827b94d558df30877c4b3c6ccb3/rpds_py-0.22.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:7ef9d9da710be50ff6809fed8f1963fecdfecc8b86656cadfca3bc24289414b0", size = 446152 }, { url = "https://files.pythonhosted.org/packages/e1/78/79c128c3e71abbc8e9739ac27af11dc0f91840a86fce67ff83c65d1ba195/rpds_py-0.22.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:59f4a79c19232a5774aee369a0c296712ad0e77f24e62cad53160312b1c1eaa1", size = 381300 }, { url = "https://files.pythonhosted.org/packages/c9/5b/2e193be0e8b228c1207f31fa3ea79de64dadb4f6a4833111af8145a6bc33/rpds_py-0.22.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1a60bce91f81ddaac922a40bbb571a12c1070cb20ebd6d49c48e0b101d87300d", size = 409636 }, { url = "https://files.pythonhosted.org/packages/c2/3f/687c7100b762d62186a1c1100ffdf99825f6fa5ea94556844bbbd2d0f3a9/rpds_py-0.22.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:e89391e6d60251560f0a8f4bd32137b077a80d9b7dbe6d5cab1cd80d2746f648", size = 556708 }, { url = "https://files.pythonhosted.org/packages/8c/a2/c00cbc4b857e8b3d5e7f7fc4c81e23afd8c138b930f4f3ccf9a41a23e9e4/rpds_py-0.22.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e3fb866d9932a3d7d0c82da76d816996d1667c44891bd861a0f97ba27e84fc74", size = 583554 }, { url = "https://files.pythonhosted.org/packages/d0/08/696c9872cf56effdad9ed617ac072f6774a898d46b8b8964eab39ec562d2/rpds_py-0.22.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:1352ae4f7c717ae8cba93421a63373e582d19d55d2ee2cbb184344c82d2ae55a", size = 552105 }, { url = "https://files.pythonhosted.org/packages/18/1f/4df560be1e994f5adf56cabd6c117e02de7c88ee238bb4ce03ed50da9d56/rpds_py-0.22.3-cp311-cp311-win32.whl", hash = "sha256:b0b4136a252cadfa1adb705bb81524eee47d9f6aab4f2ee4fa1e9d3cd4581f64", size = 220199 }, { url = "https://files.pythonhosted.org/packages/b8/1b/c29b570bc5db8237553002788dc734d6bd71443a2ceac2a58202ec06ef12/rpds_py-0.22.3-cp311-cp311-win_amd64.whl", hash = "sha256:8bd7c8cfc0b8247c8799080fbff54e0b9619e17cdfeb0478ba7295d43f635d7c", size = 231775 }, { url = "https://files.pythonhosted.org/packages/75/47/3383ee3bd787a2a5e65a9b9edc37ccf8505c0a00170e3a5e6ea5fbcd97f7/rpds_py-0.22.3-cp312-cp312-macosx_10_12_x86_64.whl", hash = "sha256:27e98004595899949bd7a7b34e91fa7c44d7a97c40fcaf1d874168bb652ec67e", size = 352334 }, { url = "https://files.pythonhosted.org/packages/40/14/aa6400fa8158b90a5a250a77f2077c0d0cd8a76fce31d9f2b289f04c6dec/rpds_py-0.22.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:1978d0021e943aae58b9b0b196fb4895a25cc53d3956b8e35e0b7682eefb6d56", size = 342111 }, { url = "https://files.pythonhosted.org/packages/7d/06/395a13bfaa8a28b302fb433fb285a67ce0ea2004959a027aea8f9c52bad4/rpds_py-0.22.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:655ca44a831ecb238d124e0402d98f6212ac527a0ba6c55ca26f616604e60a45", size = 384286 }, { url = "https://files.pythonhosted.org/packages/43/52/d8eeaffab047e6b7b7ef7f00d5ead074a07973968ffa2d5820fa131d7852/rpds_py-0.22.3-cp312-cp312-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:feea821ee2a9273771bae61194004ee2fc33f8ec7db08117ef9147d4bbcbca8e", size = 391739 }, { url = "https://files.pythonhosted.org/packages/83/31/52dc4bde85c60b63719610ed6f6d61877effdb5113a72007679b786377b8/rpds_py-0.22.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:22bebe05a9ffc70ebfa127efbc429bc26ec9e9b4ee4d15a740033efda515cf3d", size = 427306 }, { url = "https://files.pythonhosted.org/packages/70/d5/1bab8e389c2261dba1764e9e793ed6830a63f830fdbec581a242c7c46bda/rpds_py-0.22.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:3af6e48651c4e0d2d166dc1b033b7042ea3f871504b6805ba5f4fe31581d8d38", size = 442717 }, { url = "https://files.pythonhosted.org/packages/82/a1/a45f3e30835b553379b3a56ea6c4eb622cf11e72008229af840e4596a8ea/rpds_py-0.22.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e67ba3c290821343c192f7eae1d8fd5999ca2dc99994114643e2f2d3e6138b15", size = 385721 }, { url = "https://files.pythonhosted.org/packages/a6/27/780c942de3120bdd4d0e69583f9c96e179dfff082f6ecbb46b8d6488841f/rpds_py-0.22.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:02fbb9c288ae08bcb34fb41d516d5eeb0455ac35b5512d03181d755d80810059", size = 415824 }, { url = "https://files.pythonhosted.org/packages/94/0b/aa0542ca88ad20ea719b06520f925bae348ea5c1fdf201b7e7202d20871d/rpds_py-0.22.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:f56a6b404f74ab372da986d240e2e002769a7d7102cc73eb238a4f72eec5284e", size = 561227 }, { url = "https://files.pythonhosted.org/packages/0d/92/3ed77d215f82c8f844d7f98929d56cc321bb0bcfaf8f166559b8ec56e5f1/rpds_py-0.22.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:0a0461200769ab3b9ab7e513f6013b7a97fdeee41c29b9db343f3c5a8e2b9e61", size = 587424 }, { url = "https://files.pythonhosted.org/packages/09/42/cacaeb047a22cab6241f107644f230e2935d4efecf6488859a7dd82fc47d/rpds_py-0.22.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8633e471c6207a039eff6aa116e35f69f3156b3989ea3e2d755f7bc41754a4a7", size = 555953 }, { url = "https://files.pythonhosted.org/packages/e6/52/c921dc6d5f5d45b212a456c1f5b17df1a471127e8037eb0972379e39dff4/rpds_py-0.22.3-cp312-cp312-win32.whl", hash = "sha256:593eba61ba0c3baae5bc9be2f5232430453fb4432048de28399ca7376de9c627", size = 221339 }, { url = "https://files.pythonhosted.org/packages/f2/c7/f82b5be1e8456600395366f86104d1bd8d0faed3802ad511ef6d60c30d98/rpds_py-0.22.3-cp312-cp312-win_amd64.whl", hash = "sha256:d115bffdd417c6d806ea9069237a4ae02f513b778e3789a359bc5856e0404cc4", size = 235786 }, { url = "https://files.pythonhosted.org/packages/d0/bf/36d5cc1f2c609ae6e8bf0fc35949355ca9d8790eceb66e6385680c951e60/rpds_py-0.22.3-cp313-cp313-macosx_10_12_x86_64.whl", hash = "sha256:ea7433ce7e4bfc3a85654aeb6747babe3f66eaf9a1d0c1e7a4435bbdf27fea84", size = 351657 }, { url = "https://files.pythonhosted.org/packages/24/2a/f1e0fa124e300c26ea9382e59b2d582cba71cedd340f32d1447f4f29fa4e/rpds_py-0.22.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6dd9412824c4ce1aca56c47b0991e65bebb7ac3f4edccfd3f156150c96a7bf25", size = 341829 }, { url = "https://files.pythonhosted.org/packages/cf/c2/0da1231dd16953845bed60d1a586fcd6b15ceaeb965f4d35cdc71f70f606/rpds_py-0.22.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:20070c65396f7373f5df4005862fa162db5d25d56150bddd0b3e8214e8ef45b4", size = 384220 }, { url = "https://files.pythonhosted.org/packages/c7/73/a4407f4e3a00a9d4b68c532bf2d873d6b562854a8eaff8faa6133b3588ec/rpds_py-0.22.3-cp313-cp313-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:0b09865a9abc0ddff4e50b5ef65467cd94176bf1e0004184eb915cbc10fc05c5", size = 391009 }, { url = "https://files.pythonhosted.org/packages/a9/c3/04b7353477ab360fe2563f5f0b176d2105982f97cd9ae80a9c5a18f1ae0f/rpds_py-0.22.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:3453e8d41fe5f17d1f8e9c383a7473cd46a63661628ec58e07777c2fff7196dc", size = 426989 }, { url = "https://files.pythonhosted.org/packages/8d/e6/e4b85b722bcf11398e17d59c0f6049d19cd606d35363221951e6d625fcb0/rpds_py-0.22.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:f5d36399a1b96e1a5fdc91e0522544580dbebeb1f77f27b2b0ab25559e103b8b", size = 441544 }, { url = "https://files.pythonhosted.org/packages/27/fc/403e65e56f65fff25f2973216974976d3f0a5c3f30e53758589b6dc9b79b/rpds_py-0.22.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:009de23c9c9ee54bf11303a966edf4d9087cd43a6003672e6aa7def643d06518", size = 385179 }, { url = "https://files.pythonhosted.org/packages/57/9b/2be9ff9700d664d51fd96b33d6595791c496d2778cb0b2a634f048437a55/rpds_py-0.22.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:1aef18820ef3e4587ebe8b3bc9ba6e55892a6d7b93bac6d29d9f631a3b4befbd", size = 415103 }, { url = "https://files.pythonhosted.org/packages/bb/a5/03c2ad8ca10994fcf22dd2150dd1d653bc974fa82d9a590494c84c10c641/rpds_py-0.22.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:f60bd8423be1d9d833f230fdbccf8f57af322d96bcad6599e5a771b151398eb2", size = 560916 }, { url = "https://files.pythonhosted.org/packages/ba/2e/be4fdfc8b5b576e588782b56978c5b702c5a2307024120d8aeec1ab818f0/rpds_py-0.22.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:62d9cfcf4948683a18a9aff0ab7e1474d407b7bab2ca03116109f8464698ab16", size = 587062 }, { url = "https://files.pythonhosted.org/packages/67/e0/2034c221937709bf9c542603d25ad43a68b4b0a9a0c0b06a742f2756eb66/rpds_py-0.22.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:9253fc214112405f0afa7db88739294295f0e08466987f1d70e29930262b4c8f", size = 555734 }, { url = "https://files.pythonhosted.org/packages/ea/ce/240bae07b5401a22482b58e18cfbabaa392409b2797da60223cca10d7367/rpds_py-0.22.3-cp313-cp313-win32.whl", hash = "sha256:fb0ba113b4983beac1a2eb16faffd76cb41e176bf58c4afe3e14b9c681f702de", size = 220663 }, { url = "https://files.pythonhosted.org/packages/cb/f0/d330d08f51126330467edae2fa4efa5cec8923c87551a79299380fdea30d/rpds_py-0.22.3-cp313-cp313-win_amd64.whl", hash = "sha256:c58e2339def52ef6b71b8f36d13c3688ea23fa093353f3a4fee2556e62086ec9", size = 235503 }, { url = "https://files.pythonhosted.org/packages/f7/c4/dbe1cc03df013bf2feb5ad00615038050e7859f381e96fb5b7b4572cd814/rpds_py-0.22.3-cp313-cp313t-macosx_10_12_x86_64.whl", hash = "sha256:f82a116a1d03628a8ace4859556fb39fd1424c933341a08ea3ed6de1edb0283b", size = 347698 }, { url = "https://files.pythonhosted.org/packages/a4/3a/684f66dd6b0f37499cad24cd1c0e523541fd768576fa5ce2d0a8799c3cba/rpds_py-0.22.3-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:3dfcbc95bd7992b16f3f7ba05af8a64ca694331bd24f9157b49dadeeb287493b", size = 337330 }, { url = "https://files.pythonhosted.org/packages/82/eb/e022c08c2ce2e8f7683baa313476492c0e2c1ca97227fe8a75d9f0181e95/rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:59259dc58e57b10e7e18ce02c311804c10c5a793e6568f8af4dead03264584d1", size = 380022 }, { url = "https://files.pythonhosted.org/packages/e4/21/5a80e653e4c86aeb28eb4fea4add1f72e1787a3299687a9187105c3ee966/rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:5725dd9cc02068996d4438d397e255dcb1df776b7ceea3b9cb972bdb11260a83", size = 390754 }, { url = "https://files.pythonhosted.org/packages/37/a4/d320a04ae90f72d080b3d74597074e62be0a8ecad7d7321312dfe2dc5a6a/rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:99b37292234e61325e7a5bb9689e55e48c3f5f603af88b1642666277a81f1fbd", size = 423840 }, { url = "https://files.pythonhosted.org/packages/87/70/674dc47d93db30a6624279284e5631be4c3a12a0340e8e4f349153546728/rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:27b1d3b3915a99208fee9ab092b8184c420f2905b7d7feb4aeb5e4a9c509b8a1", size = 438970 }, { url = "https://files.pythonhosted.org/packages/3f/64/9500f4d66601d55cadd21e90784cfd5d5f4560e129d72e4339823129171c/rpds_py-0.22.3-cp313-cp313t-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:f612463ac081803f243ff13cccc648578e2279295048f2a8d5eb430af2bae6e3", size = 383146 }, { url = "https://files.pythonhosted.org/packages/4d/45/630327addb1d17173adcf4af01336fd0ee030c04798027dfcb50106001e0/rpds_py-0.22.3-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:f73d3fef726b3243a811121de45193c0ca75f6407fe66f3f4e183c983573e130", size = 408294 }, { url = "https://files.pythonhosted.org/packages/5f/ef/8efb3373cee54ea9d9980b772e5690a0c9e9214045a4e7fa35046e399fee/rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:3f21f0495edea7fdbaaa87e633a8689cd285f8f4af5c869f27bc8074638ad69c", size = 556345 }, { url = "https://files.pythonhosted.org/packages/54/01/151d3b9ef4925fc8f15bfb131086c12ec3c3d6dd4a4f7589c335bf8e85ba/rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:1e9663daaf7a63ceccbbb8e3808fe90415b0757e2abddbfc2e06c857bf8c5e2b", size = 582292 }, { url = "https://files.pythonhosted.org/packages/30/89/35fc7a6cdf3477d441c7aca5e9bbf5a14e0f25152aed7f63f4e0b141045d/rpds_py-0.22.3-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:a76e42402542b1fae59798fab64432b2d015ab9d0c8c47ba7addddbaf7952333", size = 553855 }, { url = "https://files.pythonhosted.org/packages/8f/e0/830c02b2457c4bd20a8c5bb394d31d81f57fbefce2dbdd2e31feff4f7003/rpds_py-0.22.3-cp313-cp313t-win32.whl", hash = "sha256:69803198097467ee7282750acb507fba35ca22cc3b85f16cf45fb01cb9097730", size = 219100 }, { url = "https://files.pythonhosted.org/packages/f8/30/7ac943f69855c2db77407ae363484b915d861702dbba1aa82d68d57f42be/rpds_py-0.22.3-cp313-cp313t-win_amd64.whl", hash = "sha256:f5cf2a0c2bdadf3791b5c205d55a37a54025c6e18a71c71f82bb536cf9a454bf", size = 233794 }, { url = "https://files.pythonhosted.org/packages/8b/63/e29f8ee14fcf383574f73b6bbdcbec0fbc2e5fc36b4de44d1ac389b1de62/rpds_py-0.22.3-pp310-pypy310_pp73-macosx_10_12_x86_64.whl", hash = "sha256:d48424e39c2611ee1b84ad0f44fb3b2b53d473e65de061e3f460fc0be5f1939d", size = 360786 }, { url = "https://files.pythonhosted.org/packages/d3/e0/771ee28b02a24e81c8c0e645796a371350a2bb6672753144f36ae2d2afc9/rpds_py-0.22.3-pp310-pypy310_pp73-macosx_11_0_arm64.whl", hash = "sha256:24e8abb5878e250f2eb0d7859a8e561846f98910326d06c0d51381fed59357bd", size = 350589 }, { url = "https://files.pythonhosted.org/packages/cf/49/abad4c4a1e6f3adf04785a99c247bfabe55ed868133e2d1881200aa5d381/rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4b232061ca880db21fa14defe219840ad9b74b6158adb52ddf0e87bead9e8493", size = 381848 }, { url = "https://files.pythonhosted.org/packages/3a/7d/f4bc6d6fbe6af7a0d2b5f2ee77079efef7c8528712745659ec0026888998/rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:ac0a03221cdb5058ce0167ecc92a8c89e8d0decdc9e99a2ec23380793c4dcb96", size = 387879 }, { url = "https://files.pythonhosted.org/packages/13/b0/575c797377fdcd26cedbb00a3324232e4cb2c5d121f6e4b0dbf8468b12ef/rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:eb0c341fa71df5a4595f9501df4ac5abfb5a09580081dffbd1ddd4654e6e9123", size = 423916 }, { url = "https://files.pythonhosted.org/packages/54/78/87157fa39d58f32a68d3326f8a81ad8fb99f49fe2aa7ad9a1b7d544f9478/rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:bf9db5488121b596dbfc6718c76092fda77b703c1f7533a226a5a9f65248f8ad", size = 448410 }, { url = "https://files.pythonhosted.org/packages/59/69/860f89996065a88be1b6ff2d60e96a02b920a262d8aadab99e7903986597/rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:0b8db6b5b2d4491ad5b6bdc2bc7c017eec108acbf4e6785f42a9eb0ba234f4c9", size = 382841 }, { url = "https://files.pythonhosted.org/packages/bd/d7/bc144e10d27e3cb350f98df2492a319edd3caaf52ddfe1293f37a9afbfd7/rpds_py-0.22.3-pp310-pypy310_pp73-manylinux_2_5_i686.manylinux1_i686.whl", hash = "sha256:b3d504047aba448d70cf6fa22e06cb09f7cbd761939fdd47604f5e007675c24e", size = 409662 }, { url = "https://files.pythonhosted.org/packages/14/2a/6bed0b05233c291a94c7e89bc76ffa1c619d4e1979fbfe5d96024020c1fb/rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_aarch64.whl", hash = "sha256:e61b02c3f7a1e0b75e20c3978f7135fd13cb6cf551bf4a6d29b999a88830a338", size = 558221 }, { url = "https://files.pythonhosted.org/packages/11/23/cd8f566de444a137bc1ee5795e47069a947e60810ba4152886fe5308e1b7/rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_i686.whl", hash = "sha256:e35ba67d65d49080e8e5a1dd40101fccdd9798adb9b050ff670b7d74fa41c566", size = 583780 }, { url = "https://files.pythonhosted.org/packages/8d/63/79c3602afd14d501f751e615a74a59040328da5ef29ed5754ae80d236b84/rpds_py-0.22.3-pp310-pypy310_pp73-musllinux_1_2_x86_64.whl", hash = "sha256:26fd7cac7dd51011a245f29a2cc6489c4608b5a8ce8d75661bb4a1066c52dfbe", size = 553619 }, { url = "https://files.pythonhosted.org/packages/9f/2e/c5c1689e80298d4e94c75b70faada4c25445739d91b94c211244a3ed7ed1/rpds_py-0.22.3-pp310-pypy310_pp73-win_amd64.whl", hash = "sha256:177c7c0fce2855833819c98e43c262007f42ce86651ffbb84f37883308cb0e7d", size = 233338 }, ] [[package]] name = "ruff" version = "0.9.4" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/c0/17/529e78f49fc6f8076f50d985edd9a2cf011d1dbadb1cdeacc1d12afc1d26/ruff-0.9.4.tar.gz", hash = "sha256:6907ee3529244bb0ed066683e075f09285b38dd5b4039370df6ff06041ca19e7", size = 3599458 } wheels = [ { url = "https://files.pythonhosted.org/packages/b6/f8/3fafb7804d82e0699a122101b5bee5f0d6e17c3a806dcbc527bb7d3f5b7a/ruff-0.9.4-py3-none-linux_armv6l.whl", hash = "sha256:64e73d25b954f71ff100bb70f39f1ee09e880728efb4250c632ceed4e4cdf706", size = 11668400 }, { url = "https://files.pythonhosted.org/packages/2e/a6/2efa772d335da48a70ab2c6bb41a096c8517ca43c086ea672d51079e3d1f/ruff-0.9.4-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:6ce6743ed64d9afab4fafeaea70d3631b4d4b28b592db21a5c2d1f0ef52934bf", size = 11628395 }, { url = "https://files.pythonhosted.org/packages/dc/d7/cd822437561082f1c9d7225cc0d0fbb4bad117ad7ac3c41cd5d7f0fa948c/ruff-0.9.4-py3-none-macosx_11_0_arm64.whl", hash = "sha256:54499fb08408e32b57360f6f9de7157a5fec24ad79cb3f42ef2c3f3f728dfe2b", size = 11090052 }, { url = "https://files.pythonhosted.org/packages/9e/67/3660d58e893d470abb9a13f679223368ff1684a4ef40f254a0157f51b448/ruff-0.9.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:37c892540108314a6f01f105040b5106aeb829fa5fb0561d2dcaf71485021137", size = 11882221 }, { url = "https://files.pythonhosted.org/packages/79/d1/757559995c8ba5f14dfec4459ef2dd3fcea82ac43bc4e7c7bf47484180c0/ruff-0.9.4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:de9edf2ce4b9ddf43fd93e20ef635a900e25f622f87ed6e3047a664d0e8f810e", size = 11424862 }, { url = "https://files.pythonhosted.org/packages/c0/96/7915a7c6877bb734caa6a2af424045baf6419f685632469643dbd8eb2958/ruff-0.9.4-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:87c90c32357c74f11deb7fbb065126d91771b207bf9bfaaee01277ca59b574ec", size = 12626735 }, { url = "https://files.pythonhosted.org/packages/0e/cc/dadb9b35473d7cb17c7ffe4737b4377aeec519a446ee8514123ff4a26091/ruff-0.9.4-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:56acd6c694da3695a7461cc55775f3a409c3815ac467279dfa126061d84b314b", size = 13255976 }, { url = "https://files.pythonhosted.org/packages/5f/c3/ad2dd59d3cabbc12df308cced780f9c14367f0321e7800ca0fe52849da4c/ruff-0.9.4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e0c93e7d47ed951b9394cf352d6695b31498e68fd5782d6cbc282425655f687a", size = 12752262 }, { url = "https://files.pythonhosted.org/packages/c7/17/5f1971e54bd71604da6788efd84d66d789362b1105e17e5ccc53bba0289b/ruff-0.9.4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1d4c8772670aecf037d1bf7a07c39106574d143b26cfe5ed1787d2f31e800214", size = 14401648 }, { url = "https://files.pythonhosted.org/packages/30/24/6200b13ea611b83260501b6955b764bb320e23b2b75884c60ee7d3f0b68e/ruff-0.9.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bfc5f1d7afeda8d5d37660eeca6d389b142d7f2b5a1ab659d9214ebd0e025231", size = 12414702 }, { url = "https://files.pythonhosted.org/packages/34/cb/f5d50d0c4ecdcc7670e348bd0b11878154bc4617f3fdd1e8ad5297c0d0ba/ruff-0.9.4-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:faa935fc00ae854d8b638c16a5f1ce881bc3f67446957dd6f2af440a5fc8526b", size = 11859608 }, { url = "https://files.pythonhosted.org/packages/d6/f4/9c8499ae8426da48363bbb78d081b817b0f64a9305f9b7f87eab2a8fb2c1/ruff-0.9.4-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:a6c634fc6f5a0ceae1ab3e13c58183978185d131a29c425e4eaa9f40afe1e6d6", size = 11485702 }, { url = "https://files.pythonhosted.org/packages/18/59/30490e483e804ccaa8147dd78c52e44ff96e1c30b5a95d69a63163cdb15b/ruff-0.9.4-py3-none-musllinux_1_2_i686.whl", hash = "sha256:433dedf6ddfdec7f1ac7575ec1eb9844fa60c4c8c2f8887a070672b8d353d34c", size = 12067782 }, { url = "https://files.pythonhosted.org/packages/3d/8c/893fa9551760b2f8eb2a351b603e96f15af167ceaf27e27ad873570bc04c/ruff-0.9.4-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:d612dbd0f3a919a8cc1d12037168bfa536862066808960e0cc901404b77968f0", size = 12483087 }, { url = "https://files.pythonhosted.org/packages/23/15/f6751c07c21ca10e3f4a51ea495ca975ad936d780c347d9808bcedbd7182/ruff-0.9.4-py3-none-win32.whl", hash = "sha256:db1192ddda2200671f9ef61d9597fcef89d934f5d1705e571a93a67fb13a4402", size = 9852302 }, { url = "https://files.pythonhosted.org/packages/12/41/2d2d2c6a72e62566f730e49254f602dfed23019c33b5b21ea8f8917315a1/ruff-0.9.4-py3-none-win_amd64.whl", hash = "sha256:05bebf4cdbe3ef75430d26c375773978950bbf4ee3c95ccb5448940dc092408e", size = 10850051 }, { url = "https://files.pythonhosted.org/packages/c6/e6/3d6ec3bc3d254e7f005c543a661a41c3e788976d0e52a1ada195bd664344/ruff-0.9.4-py3-none-win_arm64.whl", hash = "sha256:585792f1e81509e38ac5123492f8875fbc36f3ede8185af0a26df348e5154f41", size = 10078251 }, ] [[package]] name = "s3transfer" version = "0.10.4" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "botocore" }, ] sdist = { url = "https://files.pythonhosted.org/packages/c0/0a/1cdbabf9edd0ea7747efdf6c9ab4e7061b085aa7f9bfc36bb1601563b069/s3transfer-0.10.4.tar.gz", hash = "sha256:29edc09801743c21eb5ecbc617a152df41d3c287f67b615f73e5f750583666a7", size = 145287 } wheels = [ { url = "https://files.pythonhosted.org/packages/66/05/7957af15543b8c9799209506df4660cba7afc4cf94bfb60513827e96bed6/s3transfer-0.10.4-py3-none-any.whl", hash = "sha256:244a76a24355363a68164241438de1b72f8781664920260c48465896b712a41e", size = 83175 }, ] [[package]] name = "scipy" version = "1.14.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, ] sdist = { url = "https://files.pythonhosted.org/packages/62/11/4d44a1f274e002784e4dbdb81e0ea96d2de2d1045b2132d5af62cc31fd28/scipy-1.14.1.tar.gz", hash = "sha256:5a275584e726026a5699459aa72f828a610821006228e841b94275c4a7c08417", size = 58620554 } wheels = [ { url = "https://files.pythonhosted.org/packages/64/68/3bc0cfaf64ff507d82b1e5d5b64521df4c8bf7e22bc0b897827cbee9872c/scipy-1.14.1-cp310-cp310-macosx_10_13_x86_64.whl", hash = "sha256:b28d2ca4add7ac16ae8bb6632a3c86e4b9e4d52d3e34267f6e1b0c1f8d87e389", size = 39069598 }, { url = "https://files.pythonhosted.org/packages/43/a5/8d02f9c372790326ad405d94f04d4339482ec082455b9e6e288f7100513b/scipy-1.14.1-cp310-cp310-macosx_12_0_arm64.whl", hash = "sha256:d0d2821003174de06b69e58cef2316a6622b60ee613121199cb2852a873f8cf3", size = 29879676 }, { url = "https://files.pythonhosted.org/packages/07/42/0e0bea9666fcbf2cb6ea0205db42c81b1f34d7b729ba251010edf9c80ebd/scipy-1.14.1-cp310-cp310-macosx_14_0_arm64.whl", hash = "sha256:8bddf15838ba768bb5f5083c1ea012d64c9a444e16192762bd858f1e126196d0", size = 23088696 }, { url = "https://files.pythonhosted.org/packages/15/47/298ab6fef5ebf31b426560e978b8b8548421d4ed0bf99263e1eb44532306/scipy-1.14.1-cp310-cp310-macosx_14_0_x86_64.whl", hash = "sha256:97c5dddd5932bd2a1a31c927ba5e1463a53b87ca96b5c9bdf5dfd6096e27efc3", size = 25470699 }, { url = "https://files.pythonhosted.org/packages/d8/df/cdb6be5274bc694c4c22862ac3438cb04f360ed9df0aecee02ce0b798380/scipy-1.14.1-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ff0a7e01e422c15739ecd64432743cf7aae2b03f3084288f399affcefe5222d", size = 35606631 }, { url = "https://files.pythonhosted.org/packages/47/78/b0c2c23880dd1e99e938ad49ccfb011ae353758a2dc5ed7ee59baff684c3/scipy-1.14.1-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8e32dced201274bf96899e6491d9ba3e9a5f6b336708656466ad0522d8528f69", size = 41178528 }, { url = "https://files.pythonhosted.org/packages/5d/aa/994b45c34b897637b853ec04334afa55a85650a0d11dacfa67232260fb0a/scipy-1.14.1-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:8426251ad1e4ad903a4514712d2fa8fdd5382c978010d1c6f5f37ef286a713ad", size = 42784535 }, { url = "https://files.pythonhosted.org/packages/e7/1c/8daa6df17a945cb1a2a1e3bae3c49643f7b3b94017ff01a4787064f03f84/scipy-1.14.1-cp310-cp310-win_amd64.whl", hash = "sha256:a49f6ed96f83966f576b33a44257d869756df6cf1ef4934f59dd58b25e0327e5", size = 44772117 }, { url = "https://files.pythonhosted.org/packages/b2/ab/070ccfabe870d9f105b04aee1e2860520460ef7ca0213172abfe871463b9/scipy-1.14.1-cp311-cp311-macosx_10_13_x86_64.whl", hash = "sha256:2da0469a4ef0ecd3693761acbdc20f2fdeafb69e6819cc081308cc978153c675", size = 39076999 }, { url = "https://files.pythonhosted.org/packages/a7/c5/02ac82f9bb8f70818099df7e86c3ad28dae64e1347b421d8e3adf26acab6/scipy-1.14.1-cp311-cp311-macosx_12_0_arm64.whl", hash = "sha256:c0ee987efa6737242745f347835da2cc5bb9f1b42996a4d97d5c7ff7928cb6f2", size = 29894570 }, { url = "https://files.pythonhosted.org/packages/ed/05/7f03e680cc5249c4f96c9e4e845acde08eb1aee5bc216eff8a089baa4ddb/scipy-1.14.1-cp311-cp311-macosx_14_0_arm64.whl", hash = "sha256:3a1b111fac6baec1c1d92f27e76511c9e7218f1695d61b59e05e0fe04dc59617", size = 23103567 }, { url = "https://files.pythonhosted.org/packages/5e/fc/9f1413bef53171f379d786aabc104d4abeea48ee84c553a3e3d8c9f96a9c/scipy-1.14.1-cp311-cp311-macosx_14_0_x86_64.whl", hash = "sha256:8475230e55549ab3f207bff11ebfc91c805dc3463ef62eda3ccf593254524ce8", size = 25499102 }, { url = "https://files.pythonhosted.org/packages/c2/4b/b44bee3c2ddc316b0159b3d87a3d467ef8d7edfd525e6f7364a62cd87d90/scipy-1.14.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:278266012eb69f4a720827bdd2dc54b2271c97d84255b2faaa8f161a158c3b37", size = 35586346 }, { url = "https://files.pythonhosted.org/packages/93/6b/701776d4bd6bdd9b629c387b5140f006185bd8ddea16788a44434376b98f/scipy-1.14.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:fef8c87f8abfb884dac04e97824b61299880c43f4ce675dd2cbeadd3c9b466d2", size = 41165244 }, { url = "https://files.pythonhosted.org/packages/06/57/e6aa6f55729a8f245d8a6984f2855696c5992113a5dc789065020f8be753/scipy-1.14.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:b05d43735bb2f07d689f56f7b474788a13ed8adc484a85aa65c0fd931cf9ccd2", size = 42817917 }, { url = "https://files.pythonhosted.org/packages/ea/c2/5ecadc5fcccefaece775feadcd795060adf5c3b29a883bff0e678cfe89af/scipy-1.14.1-cp311-cp311-win_amd64.whl", hash = "sha256:716e389b694c4bb564b4fc0c51bc84d381735e0d39d3f26ec1af2556ec6aad94", size = 44781033 }, { url = "https://files.pythonhosted.org/packages/c0/04/2bdacc8ac6387b15db6faa40295f8bd25eccf33f1f13e68a72dc3c60a99e/scipy-1.14.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:631f07b3734d34aced009aaf6fedfd0eb3498a97e581c3b1e5f14a04164a456d", size = 39128781 }, { url = "https://files.pythonhosted.org/packages/c8/53/35b4d41f5fd42f5781dbd0dd6c05d35ba8aa75c84ecddc7d44756cd8da2e/scipy-1.14.1-cp312-cp312-macosx_12_0_arm64.whl", hash = "sha256:af29a935803cc707ab2ed7791c44288a682f9c8107bc00f0eccc4f92c08d6e07", size = 29939542 }, { url = "https://files.pythonhosted.org/packages/66/67/6ef192e0e4d77b20cc33a01e743b00bc9e68fb83b88e06e636d2619a8767/scipy-1.14.1-cp312-cp312-macosx_14_0_arm64.whl", hash = "sha256:2843f2d527d9eebec9a43e6b406fb7266f3af25a751aa91d62ff416f54170bc5", size = 23148375 }, { url = "https://files.pythonhosted.org/packages/f6/32/3a6dedd51d68eb7b8e7dc7947d5d841bcb699f1bf4463639554986f4d782/scipy-1.14.1-cp312-cp312-macosx_14_0_x86_64.whl", hash = "sha256:eb58ca0abd96911932f688528977858681a59d61a7ce908ffd355957f7025cfc", size = 25578573 }, { url = "https://files.pythonhosted.org/packages/f0/5a/efa92a58dc3a2898705f1dc9dbaf390ca7d4fba26d6ab8cfffb0c72f656f/scipy-1.14.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:30ac8812c1d2aab7131a79ba62933a2a76f582d5dbbc695192453dae67ad6310", size = 35319299 }, { url = "https://files.pythonhosted.org/packages/8e/ee/8a26858ca517e9c64f84b4c7734b89bda8e63bec85c3d2f432d225bb1886/scipy-1.14.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8f9ea80f2e65bdaa0b7627fb00cbeb2daf163caa015e59b7516395fe3bd1e066", size = 40849331 }, { url = "https://files.pythonhosted.org/packages/a5/cd/06f72bc9187840f1c99e1a8750aad4216fc7dfdd7df46e6280add14b4822/scipy-1.14.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:edaf02b82cd7639db00dbff629995ef185c8df4c3ffa71a5562a595765a06ce1", size = 42544049 }, { url = "https://files.pythonhosted.org/packages/aa/7d/43ab67228ef98c6b5dd42ab386eae2d7877036970a0d7e3dd3eb47a0d530/scipy-1.14.1-cp312-cp312-win_amd64.whl", hash = "sha256:2ff38e22128e6c03ff73b6bb0f85f897d2362f8c052e3b8ad00532198fbdae3f", size = 44521212 }, { url = "https://files.pythonhosted.org/packages/50/ef/ac98346db016ff18a6ad7626a35808f37074d25796fd0234c2bb0ed1e054/scipy-1.14.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:1729560c906963fc8389f6aac023739ff3983e727b1a4d87696b7bf108316a79", size = 39091068 }, { url = "https://files.pythonhosted.org/packages/b9/cc/70948fe9f393b911b4251e96b55bbdeaa8cca41f37c26fd1df0232933b9e/scipy-1.14.1-cp313-cp313-macosx_12_0_arm64.whl", hash = "sha256:4079b90df244709e675cdc8b93bfd8a395d59af40b72e339c2287c91860deb8e", size = 29875417 }, { url = "https://files.pythonhosted.org/packages/3b/2e/35f549b7d231c1c9f9639f9ef49b815d816bf54dd050da5da1c11517a218/scipy-1.14.1-cp313-cp313-macosx_14_0_arm64.whl", hash = "sha256:e0cf28db0f24a38b2a0ca33a85a54852586e43cf6fd876365c86e0657cfe7d73", size = 23084508 }, { url = "https://files.pythonhosted.org/packages/3f/d6/b028e3f3e59fae61fb8c0f450db732c43dd1d836223a589a8be9f6377203/scipy-1.14.1-cp313-cp313-macosx_14_0_x86_64.whl", hash = "sha256:0c2f95de3b04e26f5f3ad5bb05e74ba7f68b837133a4492414b3afd79dfe540e", size = 25503364 }, { url = "https://files.pythonhosted.org/packages/a7/2f/6c142b352ac15967744d62b165537a965e95d557085db4beab2a11f7943b/scipy-1.14.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b99722ea48b7ea25e8e015e8341ae74624f72e5f21fc2abd45f3a93266de4c5d", size = 35292639 }, { url = "https://files.pythonhosted.org/packages/56/46/2449e6e51e0d7c3575f289f6acb7f828938eaab8874dbccfeb0cd2b71a27/scipy-1.14.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:5149e3fd2d686e42144a093b206aef01932a0059c2a33ddfa67f5f035bdfe13e", size = 40798288 }, { url = "https://files.pythonhosted.org/packages/32/cd/9d86f7ed7f4497c9fd3e39f8918dd93d9f647ba80d7e34e4946c0c2d1a7c/scipy-1.14.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:e4f5a7c49323533f9103d4dacf4e4f07078f360743dec7f7596949149efeec06", size = 42524647 }, { url = "https://files.pythonhosted.org/packages/f5/1b/6ee032251bf4cdb0cc50059374e86a9f076308c1512b61c4e003e241efb7/scipy-1.14.1-cp313-cp313-win_amd64.whl", hash = "sha256:baff393942b550823bfce952bb62270ee17504d02a1801d7fd0719534dfb9c84", size = 44469524 }, ] [[package]] name = "shapely" version = "2.0.6" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "numpy" }, ] sdist = { url = "https://files.pythonhosted.org/packages/4a/89/0d20bac88016be35ff7d3c0c2ae64b477908f1b1dfa540c5d69ac7af07fe/shapely-2.0.6.tar.gz", hash = "sha256:997f6159b1484059ec239cacaa53467fd8b5564dabe186cd84ac2944663b0bf6", size = 282361 } wheels = [ { url = "https://files.pythonhosted.org/packages/17/d4/f84bbbdb7771f5b9ade94db2398b256cf1471f1eb0ca8afbe0f6ca725d5a/shapely-2.0.6-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:29a34e068da2d321e926b5073539fd2a1d4429a2c656bd63f0bd4c8f5b236d0b", size = 1449635 }, { url = "https://files.pythonhosted.org/packages/03/10/bd6edb66ed0a845f0809f7ce653596f6fd9c6be675b3653872f47bf49f82/shapely-2.0.6-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:e1c84c3f53144febf6af909d6b581bc05e8785d57e27f35ebaa5c1ab9baba13b", size = 1296756 }, { url = "https://files.pythonhosted.org/packages/af/09/6374c11cb493a9970e8c04d7be25f578a37f6494a2fecfbed3a447b16b2c/shapely-2.0.6-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:2ad2fae12dca8d2b727fa12b007e46fbc522148a584f5d6546c539f3464dccde", size = 2381960 }, { url = "https://files.pythonhosted.org/packages/2b/a6/302e0d9c210ccf4d1ffadf7ab941797d3255dcd5f93daa73aaf116a4db39/shapely-2.0.6-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3304883bd82d44be1b27a9d17f1167fda8c7f5a02a897958d86c59ec69b705e", size = 2468133 }, { url = "https://files.pythonhosted.org/packages/8c/be/e448681dc485f2931d4adee93d531fce93608a3ee59433303cc1a46e21a5/shapely-2.0.6-cp310-cp310-win32.whl", hash = "sha256:3ec3a0eab496b5e04633a39fa3d5eb5454628228201fb24903d38174ee34565e", size = 1294982 }, { url = "https://files.pythonhosted.org/packages/cd/4c/6f4a6fc085e3be01c4c9de0117a2d373bf9fec5f0426cf4d5c94090a5a4d/shapely-2.0.6-cp310-cp310-win_amd64.whl", hash = "sha256:28f87cdf5308a514763a5c38de295544cb27429cfa655d50ed8431a4796090c4", size = 1441141 }, { url = "https://files.pythonhosted.org/packages/37/15/269d8e1f7f658a37e61f7028683c546f520e4e7cedba1e32c77ff9d3a3c7/shapely-2.0.6-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:5aeb0f51a9db176da9a30cb2f4329b6fbd1e26d359012bb0ac3d3c7781667a9e", size = 1449578 }, { url = "https://files.pythonhosted.org/packages/37/63/e182e43081fffa0a2d970c480f2ef91647a6ab94098f61748c23c2a485f2/shapely-2.0.6-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:9a7a78b0d51257a367ee115f4d41ca4d46edbd0dd280f697a8092dd3989867b2", size = 1296792 }, { url = "https://files.pythonhosted.org/packages/6e/5a/d019f69449329dcd517355444fdb9ddd58bec5e080b8bdba007e8e4c546d/shapely-2.0.6-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:f32c23d2f43d54029f986479f7c1f6e09c6b3a19353a3833c2ffb226fb63a855", size = 2443997 }, { url = "https://files.pythonhosted.org/packages/25/aa/53f145e5a610a49af9ac49f2f1be1ec8659ebd5c393d66ac94e57c83b00e/shapely-2.0.6-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:b3dc9fb0eb56498912025f5eb352b5126f04801ed0e8bdbd867d21bdbfd7cbd0", size = 2528334 }, { url = "https://files.pythonhosted.org/packages/64/64/0c7b0a22b416d36f6296b92bb4219d82b53d0a7c47e16fd0a4c85f2f117c/shapely-2.0.6-cp311-cp311-win32.whl", hash = "sha256:d93b7e0e71c9f095e09454bf18dad5ea716fb6ced5df3cb044564a00723f339d", size = 1294669 }, { url = "https://files.pythonhosted.org/packages/b1/5a/6a67d929c467a1973b6bb9f0b00159cc343b02bf9a8d26db1abd2f87aa23/shapely-2.0.6-cp311-cp311-win_amd64.whl", hash = "sha256:c02eb6bf4cfb9fe6568502e85bb2647921ee49171bcd2d4116c7b3109724ef9b", size = 1442032 }, { url = "https://files.pythonhosted.org/packages/46/77/efd9f9d4b6a762f976f8b082f54c9be16f63050389500fb52e4f6cc07c1a/shapely-2.0.6-cp312-cp312-macosx_10_9_x86_64.whl", hash = "sha256:cec9193519940e9d1b86a3b4f5af9eb6910197d24af02f247afbfb47bcb3fab0", size = 1450326 }, { url = "https://files.pythonhosted.org/packages/68/53/5efa6e7a4036a94fe6276cf7bbb298afded51ca3396b03981ad680c8cc7d/shapely-2.0.6-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:83b94a44ab04a90e88be69e7ddcc6f332da7c0a0ebb1156e1c4f568bbec983c3", size = 1298480 }, { url = "https://files.pythonhosted.org/packages/88/a2/1be1db4fc262e536465a52d4f19d85834724fedf2299a1b9836bc82fe8fa/shapely-2.0.6-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:537c4b2716d22c92036d00b34aac9d3775e3691f80c7aa517c2c290351f42cd8", size = 2439311 }, { url = "https://files.pythonhosted.org/packages/d5/7d/9a57e187cbf2fbbbdfd4044a4f9ce141c8d221f9963750d3b001f0ec080d/shapely-2.0.6-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:98fea108334be345c283ce74bf064fa00cfdd718048a8af7343c59eb40f59726", size = 2524835 }, { url = "https://files.pythonhosted.org/packages/6d/0a/f407509ab56825f39bf8cfce1fb410238da96cf096809c3e404e5bc71ea1/shapely-2.0.6-cp312-cp312-win32.whl", hash = "sha256:42fd4cd4834747e4990227e4cbafb02242c0cffe9ce7ef9971f53ac52d80d55f", size = 1295613 }, { url = "https://files.pythonhosted.org/packages/7b/b3/857afd9dfbfc554f10d683ac412eac6fa260d1f4cd2967ecb655c57e831a/shapely-2.0.6-cp312-cp312-win_amd64.whl", hash = "sha256:665990c84aece05efb68a21b3523a6b2057e84a1afbef426ad287f0796ef8a48", size = 1442539 }, { url = "https://files.pythonhosted.org/packages/34/e8/d164ef5b0eab86088cde06dee8415519ffd5bb0dd1bd9d021e640e64237c/shapely-2.0.6-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:42805ef90783ce689a4dde2b6b2f261e2c52609226a0438d882e3ced40bb3013", size = 1445344 }, { url = "https://files.pythonhosted.org/packages/ce/e2/9fba7ac142f7831757a10852bfa465683724eadbc93d2d46f74a16f9af04/shapely-2.0.6-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:6d2cb146191a47bd0cee8ff5f90b47547b82b6345c0d02dd8b25b88b68af62d7", size = 1296182 }, { url = "https://files.pythonhosted.org/packages/cf/dc/790d4bda27d196cd56ec66975eaae3351c65614cafd0e16ddde39ec9fb92/shapely-2.0.6-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e3fdef0a1794a8fe70dc1f514440aa34426cc0ae98d9a1027fb299d45741c381", size = 2423426 }, { url = "https://files.pythonhosted.org/packages/af/b0/f8169f77eac7392d41e231911e0095eb1148b4d40c50ea9e34d999c89a7e/shapely-2.0.6-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:2c665a0301c645615a107ff7f52adafa2153beab51daf34587170d85e8ba6805", size = 2513249 }, { url = "https://files.pythonhosted.org/packages/f6/1d/a8c0e9ab49ff2f8e4dedd71b0122eafb22a18ad7e9d256025e1f10c84704/shapely-2.0.6-cp313-cp313-win32.whl", hash = "sha256:0334bd51828f68cd54b87d80b3e7cee93f249d82ae55a0faf3ea21c9be7b323a", size = 1294848 }, { url = "https://files.pythonhosted.org/packages/23/38/2bc32dd1e7e67a471d4c60971e66df0bdace88656c47a9a728ace0091075/shapely-2.0.6-cp313-cp313-win_amd64.whl", hash = "sha256:d37d070da9e0e0f0a530a621e17c0b8c3c9d04105655132a87cfff8bd77cc4c2", size = 1441371 }, ] [[package]] name = "six" version = "1.17.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/94/e7/b2c673351809dca68a0e064b6af791aa332cf192da575fd474ed7d6f16a2/six-1.17.0.tar.gz", hash = "sha256:ff70335d468e7eb6ec65b95b99d3a2836546063f63acc5171de367e834932a81", size = 34031 } wheels = [ { url = "https://files.pythonhosted.org/packages/b7/ce/149a00dd41f10bc29e5921b496af8b574d8413afcd5e30dfa0ed46c2cc5e/six-1.17.0-py2.py3-none-any.whl", hash = "sha256:4721f391ed90541fddacab5acf947aa0d3dc7d27b2e1e8eda2be8970586c3274", size = 11050 }, ] [[package]] name = "snowballstemmer" version = "2.2.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/44/7b/af302bebf22c749c56c9c3e8ae13190b5b5db37a33d9068652e8f73b7089/snowballstemmer-2.2.0.tar.gz", hash = "sha256:09b16deb8547d3412ad7b590689584cd0fe25ec8db3be37788be3810cbf19cb1", size = 86699 } wheels = [ { url = "https://files.pythonhosted.org/packages/ed/dc/c02e01294f7265e63a7315fe086dd1df7dacb9f840a804da846b96d01b96/snowballstemmer-2.2.0-py2.py3-none-any.whl", hash = "sha256:c8e1716e83cc398ae16824e5572ae04e0d9fc2c6b985fb0f900f5f0c96ecba1a", size = 93002 }, ] [[package]] name = "soupsieve" version = "2.6" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/d7/ce/fbaeed4f9fb8b2daa961f90591662df6a86c1abf25c548329a86920aedfb/soupsieve-2.6.tar.gz", hash = "sha256:e2e68417777af359ec65daac1057404a3c8a5455bb8abc36f1a9866ab1a51abb", size = 101569 } wheels = [ { url = "https://files.pythonhosted.org/packages/d1/c2/fe97d779f3ef3b15f05c94a2f1e3d21732574ed441687474db9d342a7315/soupsieve-2.6-py3-none-any.whl", hash = "sha256:e72c4ff06e4fb6e4b5a9f0f55fe6e81514581fca1515028625d0f299c602ccc9", size = 36186 }, ] [[package]] name = "sphinx" version = "8.1.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "alabaster" }, { name = "babel" }, { name = "colorama", marker = "sys_platform == 'win32'" }, { name = "docutils" }, { name = "imagesize" }, { name = "jinja2" }, { name = "packaging" }, { name = "pygments" }, { name = "requests" }, { name = "snowballstemmer" }, { name = "sphinxcontrib-applehelp" }, { name = "sphinxcontrib-devhelp" }, { name = "sphinxcontrib-htmlhelp" }, { name = "sphinxcontrib-jsmath" }, { name = "sphinxcontrib-qthelp" }, { name = "sphinxcontrib-serializinghtml" }, { name = "tomli", marker = "python_full_version < '3.11'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/6f/6d/be0b61178fe2cdcb67e2a92fc9ebb488e3c51c4f74a36a7824c0adf23425/sphinx-8.1.3.tar.gz", hash = "sha256:43c1911eecb0d3e161ad78611bc905d1ad0e523e4ddc202a58a821773dc4c927", size = 8184611 } wheels = [ { url = "https://files.pythonhosted.org/packages/26/60/1ddff83a56d33aaf6f10ec8ce84b4c007d9368b21008876fceda7e7381ef/sphinx-8.1.3-py3-none-any.whl", hash = "sha256:09719015511837b76bf6e03e42eb7595ac8c2e41eeb9c29c5b755c6b677992a2", size = 3487125 }, ] [[package]] name = "sphinxcontrib-applehelp" version = "2.0.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/ba/6e/b837e84a1a704953c62ef8776d45c3e8d759876b4a84fe14eba2859106fe/sphinxcontrib_applehelp-2.0.0.tar.gz", hash = "sha256:2f29ef331735ce958efa4734873f084941970894c6090408b079c61b2e1c06d1", size = 20053 } wheels = [ { url = "https://files.pythonhosted.org/packages/5d/85/9ebeae2f76e9e77b952f4b274c27238156eae7979c5421fba91a28f4970d/sphinxcontrib_applehelp-2.0.0-py3-none-any.whl", hash = "sha256:4cd3f0ec4ac5dd9c17ec65e9ab272c9b867ea77425228e68ecf08d6b28ddbdb5", size = 119300 }, ] [[package]] name = "sphinxcontrib-devhelp" version = "2.0.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/f6/d2/5beee64d3e4e747f316bae86b55943f51e82bb86ecd325883ef65741e7da/sphinxcontrib_devhelp-2.0.0.tar.gz", hash = "sha256:411f5d96d445d1d73bb5d52133377b4248ec79db5c793ce7dbe59e074b4dd1ad", size = 12967 } wheels = [ { url = "https://files.pythonhosted.org/packages/35/7a/987e583882f985fe4d7323774889ec58049171828b58c2217e7f79cdf44e/sphinxcontrib_devhelp-2.0.0-py3-none-any.whl", hash = "sha256:aefb8b83854e4b0998877524d1029fd3e6879210422ee3780459e28a1f03a8a2", size = 82530 }, ] [[package]] name = "sphinxcontrib-fulltoc" version = "1.2.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/8e/a6/d1297db9b75650681e5429e92e13df139ee6b64303ff1b2eea4ebd32c0a9/sphinxcontrib-fulltoc-1.2.0.tar.gz", hash = "sha256:c845d62fc467f3135d4543e9f10e13ef91852683bd1c90fd19d07f9d36757cd9", size = 13752 } [[package]] name = "sphinxcontrib-htmlhelp" version = "2.1.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/43/93/983afd9aa001e5201eab16b5a444ed5b9b0a7a010541e0ddfbbfd0b2470c/sphinxcontrib_htmlhelp-2.1.0.tar.gz", hash = "sha256:c9e2916ace8aad64cc13a0d233ee22317f2b9025b9cf3295249fa985cc7082e9", size = 22617 } wheels = [ { url = "https://files.pythonhosted.org/packages/0a/7b/18a8c0bcec9182c05a0b3ec2a776bba4ead82750a55ff798e8d406dae604/sphinxcontrib_htmlhelp-2.1.0-py3-none-any.whl", hash = "sha256:166759820b47002d22914d64a075ce08f4c46818e17cfc9470a9786b759b19f8", size = 98705 }, ] [[package]] name = "sphinxcontrib-jsmath" version = "1.0.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/b2/e8/9ed3830aeed71f17c026a07a5097edcf44b692850ef215b161b8ad875729/sphinxcontrib-jsmath-1.0.1.tar.gz", hash = "sha256:a9925e4a4587247ed2191a22df5f6970656cb8ca2bd6284309578f2153e0c4b8", size = 5787 } wheels = [ { url = "https://files.pythonhosted.org/packages/c2/42/4c8646762ee83602e3fb3fbe774c2fac12f317deb0b5dbeeedd2d3ba4b77/sphinxcontrib_jsmath-1.0.1-py2.py3-none-any.whl", hash = "sha256:2ec2eaebfb78f3f2078e73666b1415417a116cc848b72e5172e596c871103178", size = 5071 }, ] [[package]] name = "sphinxcontrib-qthelp" version = "2.0.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/68/bc/9104308fc285eb3e0b31b67688235db556cd5b0ef31d96f30e45f2e51cae/sphinxcontrib_qthelp-2.0.0.tar.gz", hash = "sha256:4fe7d0ac8fc171045be623aba3e2a8f613f8682731f9153bb2e40ece16b9bbab", size = 17165 } wheels = [ { url = "https://files.pythonhosted.org/packages/27/83/859ecdd180cacc13b1f7e857abf8582a64552ea7a061057a6c716e790fce/sphinxcontrib_qthelp-2.0.0-py3-none-any.whl", hash = "sha256:b18a828cdba941ccd6ee8445dbe72ffa3ef8cbe7505d8cd1fa0d42d3f2d5f3eb", size = 88743 }, ] [[package]] name = "sphinxcontrib-serializinghtml" version = "2.0.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/3b/44/6716b257b0aa6bfd51a1b31665d1c205fb12cb5ad56de752dfa15657de2f/sphinxcontrib_serializinghtml-2.0.0.tar.gz", hash = "sha256:e9d912827f872c029017a53f0ef2180b327c3f7fd23c87229f7a8e8b70031d4d", size = 16080 } wheels = [ { url = "https://files.pythonhosted.org/packages/52/a7/d2782e4e3f77c8450f727ba74a8f12756d5ba823d81b941f1b04da9d033a/sphinxcontrib_serializinghtml-2.0.0-py3-none-any.whl", hash = "sha256:6e2cb0eef194e10c27ec0023bfeb25badbbb5868244cf5bc5bdc04e4464bf331", size = 92072 }, ] [[package]] name = "stack-data" version = "0.6.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "asttokens" }, { name = "executing" }, { name = "pure-eval" }, ] sdist = { url = "https://files.pythonhosted.org/packages/28/e3/55dcc2cfbc3ca9c29519eb6884dd1415ecb53b0e934862d3559ddcb7e20b/stack_data-0.6.3.tar.gz", hash = "sha256:836a778de4fec4dcd1dcd89ed8abff8a221f58308462e1c4aa2a3cf30148f0b9", size = 44707 } wheels = [ { url = "https://files.pythonhosted.org/packages/f1/7b/ce1eafaf1a76852e2ec9b22edecf1daa58175c090266e9f6c64afcd81d91/stack_data-0.6.3-py3-none-any.whl", hash = "sha256:d5558e0c25a4cb0853cddad3d77da9891a08cb85dd9f9f91b9f8cd66e511e695", size = 24521 }, ] [[package]] name = "stevedore" version = "5.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "pbr" }, ] sdist = { url = "https://files.pythonhosted.org/packages/4a/e9/4eedccff8332cc40cc60ddd3b28d4c3e255ee7e9c65679fa4533ab98f598/stevedore-5.4.0.tar.gz", hash = "sha256:79e92235ecb828fe952b6b8b0c6c87863248631922c8e8e0fa5b17b232c4514d", size = 513899 } wheels = [ { url = "https://files.pythonhosted.org/packages/8f/73/d0091d22a65b55e8fb6aca7b3b6713b5a261dd01cec4cfd28ed127ac0cfc/stevedore-5.4.0-py3-none-any.whl", hash = "sha256:b0be3c4748b3ea7b854b265dcb4caa891015e442416422be16f8b31756107857", size = 49534 }, ] [[package]] name = "tinycss2" version = "1.4.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "webencodings" }, ] sdist = { url = "https://files.pythonhosted.org/packages/7a/fd/7a5ee21fd08ff70d3d33a5781c255cbe779659bd03278feb98b19ee550f4/tinycss2-1.4.0.tar.gz", hash = "sha256:10c0972f6fc0fbee87c3edb76549357415e94548c1ae10ebccdea16fb404a9b7", size = 87085 } wheels = [ { url = "https://files.pythonhosted.org/packages/e6/34/ebdc18bae6aa14fbee1a08b63c015c72b64868ff7dae68808ab500c492e2/tinycss2-1.4.0-py3-none-any.whl", hash = "sha256:3a49cf47b7675da0b15d0c6e1df8df4ebd96e9394bb905a5775adb0d884c5289", size = 26610 }, ] [[package]] name = "tomli" version = "2.2.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/18/87/302344fed471e44a87289cf4967697d07e532f2421fdaf868a303cbae4ff/tomli-2.2.1.tar.gz", hash = "sha256:cd45e1dc79c835ce60f7404ec8119f2eb06d38b1deba146f07ced3bbc44505ff", size = 17175 } wheels = [ { url = "https://files.pythonhosted.org/packages/43/ca/75707e6efa2b37c77dadb324ae7d9571cb424e61ea73fad7c56c2d14527f/tomli-2.2.1-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:678e4fa69e4575eb77d103de3df8a895e1591b48e740211bd1067378c69e8249", size = 131077 }, { url = "https://files.pythonhosted.org/packages/c7/16/51ae563a8615d472fdbffc43a3f3d46588c264ac4f024f63f01283becfbb/tomli-2.2.1-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:023aa114dd824ade0100497eb2318602af309e5a55595f76b626d6d9f3b7b0a6", size = 123429 }, { url = "https://files.pythonhosted.org/packages/f1/dd/4f6cd1e7b160041db83c694abc78e100473c15d54620083dbd5aae7b990e/tomli-2.2.1-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:ece47d672db52ac607a3d9599a9d48dcb2f2f735c6c2d1f34130085bb12b112a", size = 226067 }, { url = "https://files.pythonhosted.org/packages/a9/6b/c54ede5dc70d648cc6361eaf429304b02f2871a345bbdd51e993d6cdf550/tomli-2.2.1-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:6972ca9c9cc9f0acaa56a8ca1ff51e7af152a9f87fb64623e31d5c83700080ee", size = 236030 }, { url = "https://files.pythonhosted.org/packages/1f/47/999514fa49cfaf7a92c805a86c3c43f4215621855d151b61c602abb38091/tomli-2.2.1-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c954d2250168d28797dd4e3ac5cf812a406cd5a92674ee4c8f123c889786aa8e", size = 240898 }, { url = "https://files.pythonhosted.org/packages/73/41/0a01279a7ae09ee1573b423318e7934674ce06eb33f50936655071d81a24/tomli-2.2.1-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:8dd28b3e155b80f4d54beb40a441d366adcfe740969820caf156c019fb5c7ec4", size = 229894 }, { url = "https://files.pythonhosted.org/packages/55/18/5d8bc5b0a0362311ce4d18830a5d28943667599a60d20118074ea1b01bb7/tomli-2.2.1-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:e59e304978767a54663af13c07b3d1af22ddee3bb2fb0618ca1593e4f593a106", size = 245319 }, { url = "https://files.pythonhosted.org/packages/92/a3/7ade0576d17f3cdf5ff44d61390d4b3febb8a9fc2b480c75c47ea048c646/tomli-2.2.1-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:33580bccab0338d00994d7f16f4c4ec25b776af3ffaac1ed74e0b3fc95e885a8", size = 238273 }, { url = "https://files.pythonhosted.org/packages/72/6f/fa64ef058ac1446a1e51110c375339b3ec6be245af9d14c87c4a6412dd32/tomli-2.2.1-cp311-cp311-win32.whl", hash = "sha256:465af0e0875402f1d226519c9904f37254b3045fc5084697cefb9bdde1ff99ff", size = 98310 }, { url = "https://files.pythonhosted.org/packages/6a/1c/4a2dcde4a51b81be3530565e92eda625d94dafb46dbeb15069df4caffc34/tomli-2.2.1-cp311-cp311-win_amd64.whl", hash = "sha256:2d0f2fdd22b02c6d81637a3c95f8cd77f995846af7414c5c4b8d0545afa1bc4b", size = 108309 }, { url = "https://files.pythonhosted.org/packages/52/e1/f8af4c2fcde17500422858155aeb0d7e93477a0d59a98e56cbfe75070fd0/tomli-2.2.1-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:4a8f6e44de52d5e6c657c9fe83b562f5f4256d8ebbfe4ff922c495620a7f6cea", size = 132762 }, { url = "https://files.pythonhosted.org/packages/03/b8/152c68bb84fc00396b83e7bbddd5ec0bd3dd409db4195e2a9b3e398ad2e3/tomli-2.2.1-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:8d57ca8095a641b8237d5b079147646153d22552f1c637fd3ba7f4b0b29167a8", size = 123453 }, { url = "https://files.pythonhosted.org/packages/c8/d6/fc9267af9166f79ac528ff7e8c55c8181ded34eb4b0e93daa767b8841573/tomli-2.2.1-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:4e340144ad7ae1533cb897d406382b4b6fede8890a03738ff1683af800d54192", size = 233486 }, { url = "https://files.pythonhosted.org/packages/5c/51/51c3f2884d7bab89af25f678447ea7d297b53b5a3b5730a7cb2ef6069f07/tomli-2.2.1-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:db2b95f9de79181805df90bedc5a5ab4c165e6ec3fe99f970d0e302f384ad222", size = 242349 }, { url = "https://files.pythonhosted.org/packages/ab/df/bfa89627d13a5cc22402e441e8a931ef2108403db390ff3345c05253935e/tomli-2.2.1-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:40741994320b232529c802f8bc86da4e1aa9f413db394617b9a256ae0f9a7f77", size = 252159 }, { url = "https://files.pythonhosted.org/packages/9e/6e/fa2b916dced65763a5168c6ccb91066f7639bdc88b48adda990db10c8c0b/tomli-2.2.1-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:400e720fe168c0f8521520190686ef8ef033fb19fc493da09779e592861b78c6", size = 237243 }, { url = "https://files.pythonhosted.org/packages/b4/04/885d3b1f650e1153cbb93a6a9782c58a972b94ea4483ae4ac5cedd5e4a09/tomli-2.2.1-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:02abe224de6ae62c19f090f68da4e27b10af2b93213d36cf44e6e1c5abd19fdd", size = 259645 }, { url = "https://files.pythonhosted.org/packages/9c/de/6b432d66e986e501586da298e28ebeefd3edc2c780f3ad73d22566034239/tomli-2.2.1-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:b82ebccc8c8a36f2094e969560a1b836758481f3dc360ce9a3277c65f374285e", size = 244584 }, { url = "https://files.pythonhosted.org/packages/1c/9a/47c0449b98e6e7d1be6cbac02f93dd79003234ddc4aaab6ba07a9a7482e2/tomli-2.2.1-cp312-cp312-win32.whl", hash = "sha256:889f80ef92701b9dbb224e49ec87c645ce5df3fa2cc548664eb8a25e03127a98", size = 98875 }, { url = "https://files.pythonhosted.org/packages/ef/60/9b9638f081c6f1261e2688bd487625cd1e660d0a85bd469e91d8db969734/tomli-2.2.1-cp312-cp312-win_amd64.whl", hash = "sha256:7fc04e92e1d624a4a63c76474610238576942d6b8950a2d7f908a340494e67e4", size = 109418 }, { url = "https://files.pythonhosted.org/packages/04/90/2ee5f2e0362cb8a0b6499dc44f4d7d48f8fff06d28ba46e6f1eaa61a1388/tomli-2.2.1-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:f4039b9cbc3048b2416cc57ab3bda989a6fcf9b36cf8937f01a6e731b64f80d7", size = 132708 }, { url = "https://files.pythonhosted.org/packages/c0/ec/46b4108816de6b385141f082ba99e315501ccd0a2ea23db4a100dd3990ea/tomli-2.2.1-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:286f0ca2ffeeb5b9bd4fcc8d6c330534323ec51b2f52da063b11c502da16f30c", size = 123582 }, { url = "https://files.pythonhosted.org/packages/a0/bd/b470466d0137b37b68d24556c38a0cc819e8febe392d5b199dcd7f578365/tomli-2.2.1-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:a92ef1a44547e894e2a17d24e7557a5e85a9e1d0048b0b5e7541f76c5032cb13", size = 232543 }, { url = "https://files.pythonhosted.org/packages/d9/e5/82e80ff3b751373f7cead2815bcbe2d51c895b3c990686741a8e56ec42ab/tomli-2.2.1-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9316dc65bed1684c9a98ee68759ceaed29d229e985297003e494aa825ebb0281", size = 241691 }, { url = "https://files.pythonhosted.org/packages/05/7e/2a110bc2713557d6a1bfb06af23dd01e7dde52b6ee7dadc589868f9abfac/tomli-2.2.1-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e85e99945e688e32d5a35c1ff38ed0b3f41f43fad8df0bdf79f72b2ba7bc5272", size = 251170 }, { url = "https://files.pythonhosted.org/packages/64/7b/22d713946efe00e0adbcdfd6d1aa119ae03fd0b60ebed51ebb3fa9f5a2e5/tomli-2.2.1-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:ac065718db92ca818f8d6141b5f66369833d4a80a9d74435a268c52bdfa73140", size = 236530 }, { url = "https://files.pythonhosted.org/packages/38/31/3a76f67da4b0cf37b742ca76beaf819dca0ebef26d78fc794a576e08accf/tomli-2.2.1-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:d920f33822747519673ee656a4b6ac33e382eca9d331c87770faa3eef562aeb2", size = 258666 }, { url = "https://files.pythonhosted.org/packages/07/10/5af1293da642aded87e8a988753945d0cf7e00a9452d3911dd3bb354c9e2/tomli-2.2.1-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:a198f10c4d1b1375d7687bc25294306e551bf1abfa4eace6650070a5c1ae2744", size = 243954 }, { url = "https://files.pythonhosted.org/packages/5b/b9/1ed31d167be802da0fc95020d04cd27b7d7065cc6fbefdd2f9186f60d7bd/tomli-2.2.1-cp313-cp313-win32.whl", hash = "sha256:d3f5614314d758649ab2ab3a62d4f2004c825922f9e370b29416484086b264ec", size = 98724 }, { url = "https://files.pythonhosted.org/packages/c7/32/b0963458706accd9afcfeb867c0f9175a741bf7b19cd424230714d722198/tomli-2.2.1-cp313-cp313-win_amd64.whl", hash = "sha256:a38aa0308e754b0e3c67e344754dff64999ff9b513e691d0e786265c93583c69", size = 109383 }, { url = "https://files.pythonhosted.org/packages/6e/c2/61d3e0f47e2b74ef40a68b9e6ad5984f6241a942f7cd3bbfbdbd03861ea9/tomli-2.2.1-py3-none-any.whl", hash = "sha256:cb55c73c5f4408779d0cf3eef9f762b9c9f147a77de7b258bef0a5628adc85cc", size = 14257 }, ] [[package]] name = "tornado" version = "6.4.2" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/59/45/a0daf161f7d6f36c3ea5fc0c2de619746cc3dd4c76402e9db545bd920f63/tornado-6.4.2.tar.gz", hash = "sha256:92bad5b4746e9879fd7bf1eb21dce4e3fc5128d71601f80005afa39237ad620b", size = 501135 } wheels = [ { url = "https://files.pythonhosted.org/packages/26/7e/71f604d8cea1b58f82ba3590290b66da1e72d840aeb37e0d5f7291bd30db/tornado-6.4.2-cp38-abi3-macosx_10_9_universal2.whl", hash = "sha256:e828cce1123e9e44ae2a50a9de3055497ab1d0aeb440c5ac23064d9e44880da1", size = 436299 }, { url = "https://files.pythonhosted.org/packages/96/44/87543a3b99016d0bf54fdaab30d24bf0af2e848f1d13d34a3a5380aabe16/tornado-6.4.2-cp38-abi3-macosx_10_9_x86_64.whl", hash = "sha256:072ce12ada169c5b00b7d92a99ba089447ccc993ea2143c9ede887e0937aa803", size = 434253 }, { url = "https://files.pythonhosted.org/packages/cb/fb/fdf679b4ce51bcb7210801ef4f11fdac96e9885daa402861751353beea6e/tornado-6.4.2-cp38-abi3-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:1a017d239bd1bb0919f72af256a970624241f070496635784d9bf0db640d3fec", size = 437602 }, { url = "https://files.pythonhosted.org/packages/4f/3b/e31aeffffc22b475a64dbeb273026a21b5b566f74dee48742817626c47dc/tornado-6.4.2-cp38-abi3-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c36e62ce8f63409301537222faffcef7dfc5284f27eec227389f2ad11b09d946", size = 436972 }, { url = "https://files.pythonhosted.org/packages/22/55/b78a464de78051a30599ceb6983b01d8f732e6f69bf37b4ed07f642ac0fc/tornado-6.4.2-cp38-abi3-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bca9eb02196e789c9cb5c3c7c0f04fb447dc2adffd95265b2c7223a8a615ccbf", size = 437173 }, { url = "https://files.pythonhosted.org/packages/79/5e/be4fb0d1684eb822c9a62fb18a3e44a06188f78aa466b2ad991d2ee31104/tornado-6.4.2-cp38-abi3-musllinux_1_2_aarch64.whl", hash = "sha256:304463bd0772442ff4d0f5149c6f1c2135a1fae045adf070821c6cdc76980634", size = 437892 }, { url = "https://files.pythonhosted.org/packages/f5/33/4f91fdd94ea36e1d796147003b490fe60a0215ac5737b6f9c65e160d4fe0/tornado-6.4.2-cp38-abi3-musllinux_1_2_i686.whl", hash = "sha256:c82c46813ba483a385ab2a99caeaedf92585a1f90defb5693351fa7e4ea0bf73", size = 437334 }, { url = "https://files.pythonhosted.org/packages/2b/ae/c1b22d4524b0e10da2f29a176fb2890386f7bd1f63aacf186444873a88a0/tornado-6.4.2-cp38-abi3-musllinux_1_2_x86_64.whl", hash = "sha256:932d195ca9015956fa502c6b56af9eb06106140d844a335590c1ec7f5277d10c", size = 437261 }, { url = "https://files.pythonhosted.org/packages/b5/25/36dbd49ab6d179bcfc4c6c093a51795a4f3bed380543a8242ac3517a1751/tornado-6.4.2-cp38-abi3-win32.whl", hash = "sha256:2876cef82e6c5978fde1e0d5b1f919d756968d5b4282418f3146b79b58556482", size = 438463 }, { url = "https://files.pythonhosted.org/packages/61/cc/58b1adeb1bb46228442081e746fcdbc4540905c87e8add7c277540934edb/tornado-6.4.2-cp38-abi3-win_amd64.whl", hash = "sha256:908b71bf3ff37d81073356a5fadcc660eb10c1476ee6e2725588626ce7e5ca38", size = 438907 }, ] [[package]] name = "tqdm" version = "4.67.1" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "colorama", marker = "sys_platform == 'win32'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a8/4b/29b4ef32e036bb34e4ab51796dd745cdba7ed47ad142a9f4a1eb8e0c744d/tqdm-4.67.1.tar.gz", hash = "sha256:f8aef9c52c08c13a65f30ea34f4e5aac3fd1a34959879d7e59e63027286627f2", size = 169737 } wheels = [ { url = "https://files.pythonhosted.org/packages/d0/30/dc54f88dd4a2b5dc8a0279bdd7270e735851848b762aeb1c1184ed1f6b14/tqdm-4.67.1-py3-none-any.whl", hash = "sha256:26445eca388f82e72884e0d580d5464cd801a3ea01e63e5601bdff9ba6a48de2", size = 78540 }, ] [[package]] name = "traitlets" version = "5.14.3" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/eb/79/72064e6a701c2183016abbbfedaba506d81e30e232a68c9f0d6f6fcd1574/traitlets-5.14.3.tar.gz", hash = "sha256:9ed0579d3502c94b4b3732ac120375cda96f923114522847de4b3bb98b96b6b7", size = 161621 } wheels = [ { url = "https://files.pythonhosted.org/packages/00/c0/8f5d070730d7836adc9c9b6408dec68c6ced86b304a9b26a14df072a6e8c/traitlets-5.14.3-py3-none-any.whl", hash = "sha256:b74e89e397b1ed28cc831db7aea759ba6640cb3de13090ca145426688ff1ac4f", size = 85359 }, ] [[package]] name = "types-python-dateutil" version = "2.9.0.20241206" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/a9/60/47d92293d9bc521cd2301e423a358abfac0ad409b3a1606d8fbae1321961/types_python_dateutil-2.9.0.20241206.tar.gz", hash = "sha256:18f493414c26ffba692a72369fea7a154c502646301ebfe3d56a04b3767284cb", size = 13802 } wheels = [ { url = "https://files.pythonhosted.org/packages/0f/b3/ca41df24db5eb99b00d97f89d7674a90cb6b3134c52fb8121b6d8d30f15c/types_python_dateutil-2.9.0.20241206-py3-none-any.whl", hash = "sha256:e248a4bc70a486d3e3ec84d0dc30eec3a5f979d6e7ee4123ae043eedbb987f53", size = 14384 }, ] [[package]] name = "types-requests" version = "2.32.0.20241016" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "urllib3" }, ] sdist = { url = "https://files.pythonhosted.org/packages/fa/3c/4f2a430c01a22abd49a583b6b944173e39e7d01b688190a5618bd59a2e22/types-requests-2.32.0.20241016.tar.gz", hash = "sha256:0d9cad2f27515d0e3e3da7134a1b6f28fb97129d86b867f24d9c726452634d95", size = 18065 } wheels = [ { url = "https://files.pythonhosted.org/packages/d7/01/485b3026ff90e5190b5e24f1711522e06c79f4a56c8f4b95848ac072e20f/types_requests-2.32.0.20241016-py3-none-any.whl", hash = "sha256:4195d62d6d3e043a4eaaf08ff8a62184584d2e8684e9d2aa178c7915a7da3747", size = 15836 }, ] [[package]] name = "typing-extensions" version = "4.12.2" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/df/db/f35a00659bc03fec321ba8bce9420de607a1d37f8342eee1863174c69557/typing_extensions-4.12.2.tar.gz", hash = "sha256:1a7ead55c7e559dd4dee8856e3a88b41225abfe1ce8df57b7c13915fe121ffb8", size = 85321 } wheels = [ { url = "https://files.pythonhosted.org/packages/26/9f/ad63fc0248c5379346306f8668cda6e2e2e9c95e01216d2b8ffd9ff037d0/typing_extensions-4.12.2-py3-none-any.whl", hash = "sha256:04e5ca0351e0f3f85c6853954072df659d0d13fac324d0072316b67d7794700d", size = 37438 }, ] [[package]] name = "tzdata" version = "2024.2" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/e1/34/943888654477a574a86a98e9896bae89c7aa15078ec29f490fef2f1e5384/tzdata-2024.2.tar.gz", hash = "sha256:7d85cc416e9382e69095b7bdf4afd9e3880418a2413feec7069d533d6b4e31cc", size = 193282 } wheels = [ { url = "https://files.pythonhosted.org/packages/a6/ab/7e5f53c3b9d14972843a647d8d7a853969a58aecc7559cb3267302c94774/tzdata-2024.2-py2.py3-none-any.whl", hash = "sha256:a48093786cdcde33cad18c2555e8532f34422074448fbc874186f0abd79565cd", size = 346586 }, ] [[package]] name = "uc-micro-py" version = "1.0.3" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/91/7a/146a99696aee0609e3712f2b44c6274566bc368dfe8375191278045186b8/uc-micro-py-1.0.3.tar.gz", hash = "sha256:d321b92cff673ec58027c04015fcaa8bb1e005478643ff4a500882eaab88c48a", size = 6043 } wheels = [ { url = "https://files.pythonhosted.org/packages/37/87/1f677586e8ac487e29672e4b17455758fce261de06a0d086167bb760361a/uc_micro_py-1.0.3-py3-none-any.whl", hash = "sha256:db1dffff340817673d7b466ec86114a9dc0e9d4d9b5ba229d9d60e5c12600cd5", size = 6229 }, ] [[package]] name = "urllib3" version = "2.2.3" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/ed/63/22ba4ebfe7430b76388e7cd448d5478814d3032121827c12a2cc287e2260/urllib3-2.2.3.tar.gz", hash = "sha256:e7d814a81dad81e6caf2ec9fdedb284ecc9c73076b62654547cc64ccdcae26e9", size = 300677 } wheels = [ { url = "https://files.pythonhosted.org/packages/ce/d9/5f4c13cecde62396b0d3fe530a50ccea91e7dfc1ccf0e09c228841bb5ba8/urllib3-2.2.3-py3-none-any.whl", hash = "sha256:ca899ca043dcb1bafa3e262d73aa25c465bfb49e0bd9dd5d59f1d0acba2f8fac", size = 126338 }, ] [[package]] name = "vcrpy" version = "5.1.0" source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.12' and platform_python_implementation == 'PyPy'", "python_full_version == '3.11.*' and platform_python_implementation == 'PyPy'", "python_full_version < '3.11' and platform_python_implementation == 'PyPy'", ] dependencies = [ { name = "pyyaml", marker = "platform_python_implementation == 'PyPy'" }, { name = "wrapt", marker = "platform_python_implementation == 'PyPy'" }, { name = "yarl", marker = "platform_python_implementation == 'PyPy'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/a5/ea/a166a3cce4ac5958ba9bbd9768acdb1ba38ae17ff7986da09fa5b9dbc633/vcrpy-5.1.0.tar.gz", hash = "sha256:bbf1532f2618a04f11bce2a99af3a9647a32c880957293ff91e0a5f187b6b3d2", size = 84576 } wheels = [ { url = "https://files.pythonhosted.org/packages/2a/5b/3f70bcb279ad30026cc4f1df0a0491a0205a24dddd88301f396c485de9e7/vcrpy-5.1.0-py2.py3-none-any.whl", hash = "sha256:605e7b7a63dcd940db1df3ab2697ca7faf0e835c0852882142bafb19649d599e", size = 41969 }, ] [[package]] name = "vcrpy" version = "6.0.2" source = { registry = "https://pypi.org/simple" } resolution-markers = [ "python_full_version >= '3.12' and platform_python_implementation != 'PyPy'", "python_full_version == '3.11.*' and platform_python_implementation != 'PyPy'", "python_full_version < '3.11' and platform_python_implementation != 'PyPy'", ] dependencies = [ { name = "pyyaml", marker = "platform_python_implementation != 'PyPy'" }, { name = "urllib3", marker = "platform_python_implementation != 'PyPy'" }, { name = "wrapt", marker = "platform_python_implementation != 'PyPy'" }, { name = "yarl", marker = "platform_python_implementation != 'PyPy'" }, ] sdist = { url = "https://files.pythonhosted.org/packages/16/4e/fff59599826793f9e3460c22c0af0377abb27dc9781a7d5daca8cb03da25/vcrpy-6.0.2.tar.gz", hash = "sha256:88e13d9111846745898411dbc74a75ce85870af96dd320d75f1ee33158addc09", size = 85472 } wheels = [ { url = "https://files.pythonhosted.org/packages/da/ed/25d19705791d3fccc84423d564695421a75b4e08e8ab15a004a49068742d/vcrpy-6.0.2-py2.py3-none-any.whl", hash = "sha256:40370223861181bc76a5e5d4b743a95058bb1ad516c3c08570316ab592f56cad", size = 42431 }, ] [[package]] name = "virtualenv" version = "20.28.0" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "distlib" }, { name = "filelock" }, { name = "platformdirs" }, ] sdist = { url = "https://files.pythonhosted.org/packages/bf/75/53316a5a8050069228a2f6d11f32046cfa94fbb6cc3f08703f59b873de2e/virtualenv-20.28.0.tar.gz", hash = "sha256:2c9c3262bb8e7b87ea801d715fae4495e6032450c71d2309be9550e7364049aa", size = 7650368 } wheels = [ { url = "https://files.pythonhosted.org/packages/10/f9/0919cf6f1432a8c4baa62511f8f8da8225432d22e83e3476f5be1a1edc6e/virtualenv-20.28.0-py3-none-any.whl", hash = "sha256:23eae1b4516ecd610481eda647f3a7c09aea295055337331bb4e6892ecce47b0", size = 4276702 }, ] [[package]] name = "wcwidth" version = "0.2.13" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/6c/63/53559446a878410fc5a5974feb13d31d78d752eb18aeba59c7fef1af7598/wcwidth-0.2.13.tar.gz", hash = "sha256:72ea0c06399eb286d978fdedb6923a9eb47e1c486ce63e9b4e64fc18303972b5", size = 101301 } wheels = [ { url = "https://files.pythonhosted.org/packages/fd/84/fd2ba7aafacbad3c4201d395674fc6348826569da3c0937e75505ead3528/wcwidth-0.2.13-py2.py3-none-any.whl", hash = "sha256:3da69048e4540d84af32131829ff948f1e022c1c6bdb8d6102117aac784f6859", size = 34166 }, ] [[package]] name = "webencodings" version = "0.5.1" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/0b/02/ae6ceac1baeda530866a85075641cec12989bd8d31af6d5ab4a3e8c92f47/webencodings-0.5.1.tar.gz", hash = "sha256:b36a1c245f2d304965eb4e0a82848379241dc04b865afcc4aab16748587e1923", size = 9721 } wheels = [ { url = "https://files.pythonhosted.org/packages/f4/24/2a3e3df732393fed8b3ebf2ec078f05546de641fe1b667ee316ec1dcf3b7/webencodings-0.5.1-py2.py3-none-any.whl", hash = "sha256:a0af1213f3c2226497a97e2b3aa01a7e4bee4f403f95be16fc9acd2947514a78", size = 11774 }, ] [[package]] name = "wrapt" version = "1.17.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/24/a1/fc03dca9b0432725c2e8cdbf91a349d2194cf03d8523c124faebe581de09/wrapt-1.17.0.tar.gz", hash = "sha256:16187aa2317c731170a88ef35e8937ae0f533c402872c1ee5e6d079fcf320801", size = 55542 } wheels = [ { url = "https://files.pythonhosted.org/packages/99/f9/85220321e9bb1a5f72ccce6604395ae75fcb463d87dad0014dc1010bd1f1/wrapt-1.17.0-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:2a0c23b8319848426f305f9cb0c98a6e32ee68a36264f45948ccf8e7d2b941f8", size = 38766 }, { url = "https://files.pythonhosted.org/packages/ff/71/ff624ff3bde91ceb65db6952cdf8947bc0111d91bd2359343bc2fa7c57fd/wrapt-1.17.0-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:b1ca5f060e205f72bec57faae5bd817a1560fcfc4af03f414b08fa29106b7e2d", size = 83262 }, { url = "https://files.pythonhosted.org/packages/9f/0a/814d4a121a643af99cfe55a43e9e6dd08f4a47cdac8e8f0912c018794715/wrapt-1.17.0-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e185ec6060e301a7e5f8461c86fb3640a7beb1a0f0208ffde7a65ec4074931df", size = 74990 }, { url = "https://files.pythonhosted.org/packages/cd/c7/b8c89bf5ca5c4e6a2d0565d149d549cdb4cffb8916d1d1b546b62fb79281/wrapt-1.17.0-cp310-cp310-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:bb90765dd91aed05b53cd7a87bd7f5c188fcd95960914bae0d32c5e7f899719d", size = 82712 }, { url = "https://files.pythonhosted.org/packages/19/7c/5977aefa8460906c1ff914fd42b11cf6c09ded5388e46e1cc6cea4ab15e9/wrapt-1.17.0-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:879591c2b5ab0a7184258274c42a126b74a2c3d5a329df16d69f9cee07bba6ea", size = 81705 }, { url = "https://files.pythonhosted.org/packages/ae/e7/233402d7bd805096bb4a8ec471f5a141421a01de3c8c957cce569772c056/wrapt-1.17.0-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fce6fee67c318fdfb7f285c29a82d84782ae2579c0e1b385b7f36c6e8074fffb", size = 74636 }, { url = "https://files.pythonhosted.org/packages/93/81/b6c32d8387d9cfbc0134f01585dee7583315c3b46dfd3ae64d47693cd078/wrapt-1.17.0-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:0698d3a86f68abc894d537887b9bbf84d29bcfbc759e23f4644be27acf6da301", size = 81299 }, { url = "https://files.pythonhosted.org/packages/d1/c3/1fae15d453468c98f09519076f8d401b476d18d8d94379e839eed14c4c8b/wrapt-1.17.0-cp310-cp310-win32.whl", hash = "sha256:69d093792dc34a9c4c8a70e4973a3361c7a7578e9cd86961b2bbf38ca71e4e22", size = 36425 }, { url = "https://files.pythonhosted.org/packages/c6/f4/77e0886c95556f2b4caa8908ea8eb85f713fc68296a2113f8c63d50fe0fb/wrapt-1.17.0-cp310-cp310-win_amd64.whl", hash = "sha256:f28b29dc158ca5d6ac396c8e0a2ef45c4e97bb7e65522bfc04c989e6fe814575", size = 38748 }, { url = "https://files.pythonhosted.org/packages/0e/40/def56538acddc2f764c157d565b9f989072a1d2f2a8e384324e2e104fc7d/wrapt-1.17.0-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:74bf625b1b4caaa7bad51d9003f8b07a468a704e0644a700e936c357c17dd45a", size = 38766 }, { url = "https://files.pythonhosted.org/packages/89/e2/8c299f384ae4364193724e2adad99f9504599d02a73ec9199bf3f406549d/wrapt-1.17.0-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:0f2a28eb35cf99d5f5bd12f5dd44a0f41d206db226535b37b0c60e9da162c3ed", size = 83730 }, { url = "https://files.pythonhosted.org/packages/29/ef/fcdb776b12df5ea7180d065b28fa6bb27ac785dddcd7202a0b6962bbdb47/wrapt-1.17.0-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:81b1289e99cf4bad07c23393ab447e5e96db0ab50974a280f7954b071d41b489", size = 75470 }, { url = "https://files.pythonhosted.org/packages/55/b5/698bd0bf9fbb3ddb3a2feefbb7ad0dea1205f5d7d05b9cbab54f5db731aa/wrapt-1.17.0-cp311-cp311-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:9f2939cd4a2a52ca32bc0b359015718472d7f6de870760342e7ba295be9ebaf9", size = 83168 }, { url = "https://files.pythonhosted.org/packages/ce/07/701a5cee28cb4d5df030d4b2649319e36f3d9fdd8000ef1d84eb06b9860d/wrapt-1.17.0-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:6a9653131bda68a1f029c52157fd81e11f07d485df55410401f745007bd6d339", size = 82307 }, { url = "https://files.pythonhosted.org/packages/42/92/c48ba92cda6f74cb914dc3c5bba9650dc80b790e121c4b987f3a46b028f5/wrapt-1.17.0-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:4e4b4385363de9052dac1a67bfb535c376f3d19c238b5f36bddc95efae15e12d", size = 75101 }, { url = "https://files.pythonhosted.org/packages/8a/0a/9276d3269334138b88a2947efaaf6335f61d547698e50dff672ade24f2c6/wrapt-1.17.0-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:bdf62d25234290db1837875d4dceb2151e4ea7f9fff2ed41c0fde23ed542eb5b", size = 81835 }, { url = "https://files.pythonhosted.org/packages/b9/4c/39595e692753ef656ea94b51382cc9aea662fef59d7910128f5906486f0e/wrapt-1.17.0-cp311-cp311-win32.whl", hash = "sha256:5d8fd17635b262448ab8f99230fe4dac991af1dabdbb92f7a70a6afac8a7e346", size = 36412 }, { url = "https://files.pythonhosted.org/packages/63/bb/c293a67fb765a2ada48f48cd0f2bb957da8161439da4c03ea123b9894c02/wrapt-1.17.0-cp311-cp311-win_amd64.whl", hash = "sha256:92a3d214d5e53cb1db8b015f30d544bc9d3f7179a05feb8f16df713cecc2620a", size = 38744 }, { url = "https://files.pythonhosted.org/packages/85/82/518605474beafff11f1a34759f6410ab429abff9f7881858a447e0d20712/wrapt-1.17.0-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:89fc28495896097622c3fc238915c79365dd0ede02f9a82ce436b13bd0ab7569", size = 38904 }, { url = "https://files.pythonhosted.org/packages/80/6c/17c3b2fed28edfd96d8417c865ef0b4c955dc52c4e375d86f459f14340f1/wrapt-1.17.0-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:875d240fdbdbe9e11f9831901fb8719da0bd4e6131f83aa9f69b96d18fae7504", size = 88622 }, { url = "https://files.pythonhosted.org/packages/4a/11/60ecdf3b0fd3dca18978d89acb5d095a05f23299216e925fcd2717c81d93/wrapt-1.17.0-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e5ed16d95fd142e9c72b6c10b06514ad30e846a0d0917ab406186541fe68b451", size = 80920 }, { url = "https://files.pythonhosted.org/packages/d2/50/dbef1a651578a3520d4534c1e434989e3620380c1ad97e309576b47f0ada/wrapt-1.17.0-cp312-cp312-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:18b956061b8db634120b58f668592a772e87e2e78bc1f6a906cfcaa0cc7991c1", size = 89170 }, { url = "https://files.pythonhosted.org/packages/44/a2/78c5956bf39955288c9e0dd62e807b308c3aa15a0f611fbff52aa8d6b5ea/wrapt-1.17.0-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:daba396199399ccabafbfc509037ac635a6bc18510ad1add8fd16d4739cdd106", size = 86748 }, { url = "https://files.pythonhosted.org/packages/99/49/2ee413c78fc0bdfebe5bee590bf3becdc1fab0096a7a9c3b5c9666b2415f/wrapt-1.17.0-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:4d63f4d446e10ad19ed01188d6c1e1bb134cde8c18b0aa2acfd973d41fcc5ada", size = 79734 }, { url = "https://files.pythonhosted.org/packages/c0/8c/4221b7b270e36be90f0930fe15a4755a6ea24093f90b510166e9ed7861ea/wrapt-1.17.0-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:8a5e7cc39a45fc430af1aefc4d77ee6bad72c5bcdb1322cfde852c15192b8bd4", size = 87552 }, { url = "https://files.pythonhosted.org/packages/4c/6b/1aaccf3efe58eb95e10ce8e77c8909b7a6b0da93449a92c4e6d6d10b3a3d/wrapt-1.17.0-cp312-cp312-win32.whl", hash = "sha256:0a0a1a1ec28b641f2a3a2c35cbe86c00051c04fffcfcc577ffcdd707df3f8635", size = 36647 }, { url = "https://files.pythonhosted.org/packages/b3/4f/243f88ac49df005b9129194c6511b3642818b3e6271ddea47a15e2ee4934/wrapt-1.17.0-cp312-cp312-win_amd64.whl", hash = "sha256:3c34f6896a01b84bab196f7119770fd8466c8ae3dfa73c59c0bb281e7b588ce7", size = 38830 }, { url = "https://files.pythonhosted.org/packages/67/9c/38294e1bb92b055222d1b8b6591604ca4468b77b1250f59c15256437644f/wrapt-1.17.0-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:714c12485aa52efbc0fc0ade1e9ab3a70343db82627f90f2ecbc898fdf0bb181", size = 38904 }, { url = "https://files.pythonhosted.org/packages/78/b6/76597fb362cbf8913a481d41b14b049a8813cd402a5d2f84e57957c813ae/wrapt-1.17.0-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:da427d311782324a376cacb47c1a4adc43f99fd9d996ffc1b3e8529c4074d393", size = 88608 }, { url = "https://files.pythonhosted.org/packages/bc/69/b500884e45b3881926b5f69188dc542fb5880019d15c8a0df1ab1dfda1f7/wrapt-1.17.0-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ba1739fb38441a27a676f4de4123d3e858e494fac05868b7a281c0a383c098f4", size = 80879 }, { url = "https://files.pythonhosted.org/packages/52/31/f4cc58afe29eab8a50ac5969963010c8b60987e719c478a5024bce39bc42/wrapt-1.17.0-cp313-cp313-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e711fc1acc7468463bc084d1b68561e40d1eaa135d8c509a65dd534403d83d7b", size = 89119 }, { url = "https://files.pythonhosted.org/packages/aa/9c/05ab6bf75dbae7a9d34975fb6ee577e086c1c26cde3b6cf6051726d33c7c/wrapt-1.17.0-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:140ea00c87fafc42739bd74a94a5a9003f8e72c27c47cd4f61d8e05e6dec8721", size = 86778 }, { url = "https://files.pythonhosted.org/packages/0e/6c/4b8d42e3db355603d35fe5c9db79c28f2472a6fd1ccf4dc25ae46739672a/wrapt-1.17.0-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:73a96fd11d2b2e77d623a7f26e004cc31f131a365add1ce1ce9a19e55a1eef90", size = 79793 }, { url = "https://files.pythonhosted.org/packages/69/23/90e3a2ee210c0843b2c2a49b3b97ffcf9cad1387cb18cbeef9218631ed5a/wrapt-1.17.0-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:0b48554952f0f387984da81ccfa73b62e52817a4386d070c75e4db7d43a28c4a", size = 87606 }, { url = "https://files.pythonhosted.org/packages/5f/06/3683126491ca787d8d71d8d340e775d40767c5efedb35039d987203393b7/wrapt-1.17.0-cp313-cp313-win32.whl", hash = "sha256:498fec8da10e3e62edd1e7368f4b24aa362ac0ad931e678332d1b209aec93045", size = 36651 }, { url = "https://files.pythonhosted.org/packages/f1/bc/3bf6d2ca0d2c030d324ef9272bea0a8fdaff68f3d1fa7be7a61da88e51f7/wrapt-1.17.0-cp313-cp313-win_amd64.whl", hash = "sha256:fd136bb85f4568fffca995bd3c8d52080b1e5b225dbf1c2b17b66b4c5fa02838", size = 38835 }, { url = "https://files.pythonhosted.org/packages/ce/b5/251165c232d87197a81cd362eeb5104d661a2dd3aa1f0b33e4bf61dda8b8/wrapt-1.17.0-cp313-cp313t-macosx_11_0_arm64.whl", hash = "sha256:17fcf043d0b4724858f25b8826c36e08f9fb2e475410bece0ec44a22d533da9b", size = 40146 }, { url = "https://files.pythonhosted.org/packages/89/33/1e1bdd3e866eeb73d8c4755db1ceb8a80d5bd51ee4648b3f2247adec4e67/wrapt-1.17.0-cp313-cp313t-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e4a557d97f12813dc5e18dad9fa765ae44ddd56a672bb5de4825527c847d6379", size = 113444 }, { url = "https://files.pythonhosted.org/packages/9f/7c/94f53b065a43f5dc1fbdd8b80fd8f41284315b543805c956619c0b8d92f0/wrapt-1.17.0-cp313-cp313t-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:0229b247b0fc7dee0d36176cbb79dbaf2a9eb7ecc50ec3121f40ef443155fb1d", size = 101246 }, { url = "https://files.pythonhosted.org/packages/62/5d/640360baac6ea6018ed5e34e6e80e33cfbae2aefde24f117587cd5efd4b7/wrapt-1.17.0-cp313-cp313t-manylinux_2_5_x86_64.manylinux1_x86_64.manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:8425cfce27b8b20c9b89d77fb50e368d8306a90bf2b6eef2cdf5cd5083adf83f", size = 109320 }, { url = "https://files.pythonhosted.org/packages/e3/cf/6c7a00ae86a2e9482c91170aefe93f4ccda06c1ac86c4de637c69133da59/wrapt-1.17.0-cp313-cp313t-musllinux_1_2_aarch64.whl", hash = "sha256:9c900108df470060174108012de06d45f514aa4ec21a191e7ab42988ff42a86c", size = 110193 }, { url = "https://files.pythonhosted.org/packages/cd/cc/aa718df0d20287e8f953ce0e2f70c0af0fba1d3c367db7ee8bdc46ea7003/wrapt-1.17.0-cp313-cp313t-musllinux_1_2_i686.whl", hash = "sha256:4e547b447073fc0dbfcbff15154c1be8823d10dab4ad401bdb1575e3fdedff1b", size = 100460 }, { url = "https://files.pythonhosted.org/packages/f7/16/9f3ac99fe1f6caaa789d67b4e3c562898b532c250769f5255fa8b8b93983/wrapt-1.17.0-cp313-cp313t-musllinux_1_2_x86_64.whl", hash = "sha256:914f66f3b6fc7b915d46c1cc424bc2441841083de01b90f9e81109c9759e43ab", size = 106347 }, { url = "https://files.pythonhosted.org/packages/64/85/c77a331b2c06af49a687f8b926fc2d111047a51e6f0b0a4baa01ff3a673a/wrapt-1.17.0-cp313-cp313t-win32.whl", hash = "sha256:a4192b45dff127c7d69b3bdfb4d3e47b64179a0b9900b6351859f3001397dabf", size = 37971 }, { url = "https://files.pythonhosted.org/packages/05/9b/b2469f8be9efed24283fd7b9eeb8e913e9bc0715cf919ea8645e428ab7af/wrapt-1.17.0-cp313-cp313t-win_amd64.whl", hash = "sha256:4f643df3d4419ea3f856c5c3f40fec1d65ea2e89ec812c83f7767c8730f9827a", size = 40755 }, { url = "https://files.pythonhosted.org/packages/4b/d9/a8ba5e9507a9af1917285d118388c5eb7a81834873f45df213a6fe923774/wrapt-1.17.0-py3-none-any.whl", hash = "sha256:d2c63b93548eda58abf5188e505ffed0229bf675f7c3090f8e36ad55b8cbc371", size = 23592 }, ] [[package]] name = "xyzservices" version = "2024.9.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/a0/16/ae87cbd2d6bfc40a419077521c35aadf5121725b7bee3d7c51b56f50958b/xyzservices-2024.9.0.tar.gz", hash = "sha256:68fb8353c9dbba4f1ff6c0f2e5e4e596bb9e1db7f94f4f7dfbcb26e25aa66fde", size = 1131900 } wheels = [ { url = "https://files.pythonhosted.org/packages/4c/d3/e07ce413d16ef64e885bea37551eac4c5ca3ddd440933f9c94594273d0d9/xyzservices-2024.9.0-py3-none-any.whl", hash = "sha256:776ae82b78d6e5ca63dd6a94abb054df8130887a4a308473b54a6bd364de8644", size = 85130 }, ] [[package]] name = "yarl" version = "1.18.3" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "idna" }, { name = "multidict" }, { name = "propcache" }, ] sdist = { url = "https://files.pythonhosted.org/packages/b7/9d/4b94a8e6d2b51b599516a5cb88e5bc99b4d8d4583e468057eaa29d5f0918/yarl-1.18.3.tar.gz", hash = "sha256:ac1801c45cbf77b6c99242eeff4fffb5e4e73a800b5c4ad4fc0be5def634d2e1", size = 181062 } wheels = [ { url = "https://files.pythonhosted.org/packages/d2/98/e005bc608765a8a5569f58e650961314873c8469c333616eb40bff19ae97/yarl-1.18.3-cp310-cp310-macosx_10_9_universal2.whl", hash = "sha256:7df647e8edd71f000a5208fe6ff8c382a1de8edfbccdbbfe649d263de07d8c34", size = 141458 }, { url = "https://files.pythonhosted.org/packages/df/5d/f8106b263b8ae8a866b46d9be869ac01f9b3fb7f2325f3ecb3df8003f796/yarl-1.18.3-cp310-cp310-macosx_10_9_x86_64.whl", hash = "sha256:c69697d3adff5aa4f874b19c0e4ed65180ceed6318ec856ebc423aa5850d84f7", size = 94365 }, { url = "https://files.pythonhosted.org/packages/56/3e/d8637ddb9ba69bf851f765a3ee288676f7cf64fb3be13760c18cbc9d10bd/yarl-1.18.3-cp310-cp310-macosx_11_0_arm64.whl", hash = "sha256:602d98f2c2d929f8e697ed274fbadc09902c4025c5a9963bf4e9edfc3ab6f7ed", size = 92181 }, { url = "https://files.pythonhosted.org/packages/76/f9/d616a5c2daae281171de10fba41e1c0e2d8207166fc3547252f7d469b4e1/yarl-1.18.3-cp310-cp310-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:c654d5207c78e0bd6d749f6dae1dcbbfde3403ad3a4b11f3c5544d9906969dde", size = 315349 }, { url = "https://files.pythonhosted.org/packages/bb/b4/3ea5e7b6f08f698b3769a06054783e434f6d59857181b5c4e145de83f59b/yarl-1.18.3-cp310-cp310-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:5094d9206c64181d0f6e76ebd8fb2f8fe274950a63890ee9e0ebfd58bf9d787b", size = 330494 }, { url = "https://files.pythonhosted.org/packages/55/f1/e0fc810554877b1b67420568afff51b967baed5b53bcc983ab164eebf9c9/yarl-1.18.3-cp310-cp310-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:35098b24e0327fc4ebdc8ffe336cee0a87a700c24ffed13161af80124b7dc8e5", size = 326927 }, { url = "https://files.pythonhosted.org/packages/a9/42/b1753949b327b36f210899f2dd0a0947c0c74e42a32de3f8eb5c7d93edca/yarl-1.18.3-cp310-cp310-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:3236da9272872443f81fedc389bace88408f64f89f75d1bdb2256069a8730ccc", size = 319703 }, { url = "https://files.pythonhosted.org/packages/f0/6d/e87c62dc9635daefb064b56f5c97df55a2e9cc947a2b3afd4fd2f3b841c7/yarl-1.18.3-cp310-cp310-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:e2c08cc9b16f4f4bc522771d96734c7901e7ebef70c6c5c35dd0f10845270bcd", size = 310246 }, { url = "https://files.pythonhosted.org/packages/e3/ef/e2e8d1785cdcbd986f7622d7f0098205f3644546da7919c24b95790ec65a/yarl-1.18.3-cp310-cp310-musllinux_1_2_aarch64.whl", hash = "sha256:80316a8bd5109320d38eef8833ccf5f89608c9107d02d2a7f985f98ed6876990", size = 319730 }, { url = "https://files.pythonhosted.org/packages/fc/15/8723e22345bc160dfde68c4b3ae8b236e868f9963c74015f1bc8a614101c/yarl-1.18.3-cp310-cp310-musllinux_1_2_armv7l.whl", hash = "sha256:c1e1cc06da1491e6734f0ea1e6294ce00792193c463350626571c287c9a704db", size = 321681 }, { url = "https://files.pythonhosted.org/packages/86/09/bf764e974f1516efa0ae2801494a5951e959f1610dd41edbfc07e5e0f978/yarl-1.18.3-cp310-cp310-musllinux_1_2_i686.whl", hash = "sha256:fea09ca13323376a2fdfb353a5fa2e59f90cd18d7ca4eaa1fd31f0a8b4f91e62", size = 324812 }, { url = "https://files.pythonhosted.org/packages/f6/4c/20a0187e3b903c97d857cf0272d687c1b08b03438968ae8ffc50fe78b0d6/yarl-1.18.3-cp310-cp310-musllinux_1_2_ppc64le.whl", hash = "sha256:e3b9fd71836999aad54084906f8663dffcd2a7fb5cdafd6c37713b2e72be1760", size = 337011 }, { url = "https://files.pythonhosted.org/packages/c9/71/6244599a6e1cc4c9f73254a627234e0dad3883ece40cc33dce6265977461/yarl-1.18.3-cp310-cp310-musllinux_1_2_s390x.whl", hash = "sha256:757e81cae69244257d125ff31663249b3013b5dc0a8520d73694aed497fb195b", size = 338132 }, { url = "https://files.pythonhosted.org/packages/af/f5/e0c3efaf74566c4b4a41cb76d27097df424052a064216beccae8d303c90f/yarl-1.18.3-cp310-cp310-musllinux_1_2_x86_64.whl", hash = "sha256:b1771de9944d875f1b98a745bc547e684b863abf8f8287da8466cf470ef52690", size = 331849 }, { url = "https://files.pythonhosted.org/packages/8a/b8/3d16209c2014c2f98a8f658850a57b716efb97930aebf1ca0d9325933731/yarl-1.18.3-cp310-cp310-win32.whl", hash = "sha256:8874027a53e3aea659a6d62751800cf6e63314c160fd607489ba5c2edd753cf6", size = 84309 }, { url = "https://files.pythonhosted.org/packages/fd/b7/2e9a5b18eb0fe24c3a0e8bae994e812ed9852ab4fd067c0107fadde0d5f0/yarl-1.18.3-cp310-cp310-win_amd64.whl", hash = "sha256:93b2e109287f93db79210f86deb6b9bbb81ac32fc97236b16f7433db7fc437d8", size = 90484 }, { url = "https://files.pythonhosted.org/packages/40/93/282b5f4898d8e8efaf0790ba6d10e2245d2c9f30e199d1a85cae9356098c/yarl-1.18.3-cp311-cp311-macosx_10_9_universal2.whl", hash = "sha256:8503ad47387b8ebd39cbbbdf0bf113e17330ffd339ba1144074da24c545f0069", size = 141555 }, { url = "https://files.pythonhosted.org/packages/6d/9c/0a49af78df099c283ca3444560f10718fadb8a18dc8b3edf8c7bd9fd7d89/yarl-1.18.3-cp311-cp311-macosx_10_9_x86_64.whl", hash = "sha256:02ddb6756f8f4517a2d5e99d8b2f272488e18dd0bfbc802f31c16c6c20f22193", size = 94351 }, { url = "https://files.pythonhosted.org/packages/5a/a1/205ab51e148fdcedad189ca8dd587794c6f119882437d04c33c01a75dece/yarl-1.18.3-cp311-cp311-macosx_11_0_arm64.whl", hash = "sha256:67a283dd2882ac98cc6318384f565bffc751ab564605959df4752d42483ad889", size = 92286 }, { url = "https://files.pythonhosted.org/packages/ed/fe/88b690b30f3f59275fb674f5f93ddd4a3ae796c2b62e5bb9ece8a4914b83/yarl-1.18.3-cp311-cp311-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:d980e0325b6eddc81331d3f4551e2a333999fb176fd153e075c6d1c2530aa8a8", size = 340649 }, { url = "https://files.pythonhosted.org/packages/07/eb/3b65499b568e01f36e847cebdc8d7ccb51fff716dbda1ae83c3cbb8ca1c9/yarl-1.18.3-cp311-cp311-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:b643562c12680b01e17239be267bc306bbc6aac1f34f6444d1bded0c5ce438ca", size = 356623 }, { url = "https://files.pythonhosted.org/packages/33/46/f559dc184280b745fc76ec6b1954de2c55595f0ec0a7614238b9ebf69618/yarl-1.18.3-cp311-cp311-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:c017a3b6df3a1bd45b9fa49a0f54005e53fbcad16633870104b66fa1a30a29d8", size = 354007 }, { url = "https://files.pythonhosted.org/packages/af/ba/1865d85212351ad160f19fb99808acf23aab9a0f8ff31c8c9f1b4d671fc9/yarl-1.18.3-cp311-cp311-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:75674776d96d7b851b6498f17824ba17849d790a44d282929c42dbb77d4f17ae", size = 344145 }, { url = "https://files.pythonhosted.org/packages/94/cb/5c3e975d77755d7b3d5193e92056b19d83752ea2da7ab394e22260a7b824/yarl-1.18.3-cp311-cp311-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:ccaa3a4b521b780a7e771cc336a2dba389a0861592bbce09a476190bb0c8b4b3", size = 336133 }, { url = "https://files.pythonhosted.org/packages/19/89/b77d3fd249ab52a5c40859815765d35c91425b6bb82e7427ab2f78f5ff55/yarl-1.18.3-cp311-cp311-musllinux_1_2_aarch64.whl", hash = "sha256:2d06d3005e668744e11ed80812e61efd77d70bb7f03e33c1598c301eea20efbb", size = 347967 }, { url = "https://files.pythonhosted.org/packages/35/bd/f6b7630ba2cc06c319c3235634c582a6ab014d52311e7d7c22f9518189b5/yarl-1.18.3-cp311-cp311-musllinux_1_2_armv7l.whl", hash = "sha256:9d41beda9dc97ca9ab0b9888cb71f7539124bc05df02c0cff6e5acc5a19dcc6e", size = 346397 }, { url = "https://files.pythonhosted.org/packages/18/1a/0b4e367d5a72d1f095318344848e93ea70da728118221f84f1bf6c1e39e7/yarl-1.18.3-cp311-cp311-musllinux_1_2_i686.whl", hash = "sha256:ba23302c0c61a9999784e73809427c9dbedd79f66a13d84ad1b1943802eaaf59", size = 350206 }, { url = "https://files.pythonhosted.org/packages/b5/cf/320fff4367341fb77809a2d8d7fe75b5d323a8e1b35710aafe41fdbf327b/yarl-1.18.3-cp311-cp311-musllinux_1_2_ppc64le.whl", hash = "sha256:6748dbf9bfa5ba1afcc7556b71cda0d7ce5f24768043a02a58846e4a443d808d", size = 362089 }, { url = "https://files.pythonhosted.org/packages/57/cf/aadba261d8b920253204085268bad5e8cdd86b50162fcb1b10c10834885a/yarl-1.18.3-cp311-cp311-musllinux_1_2_s390x.whl", hash = "sha256:0b0cad37311123211dc91eadcb322ef4d4a66008d3e1bdc404808992260e1a0e", size = 366267 }, { url = "https://files.pythonhosted.org/packages/54/58/fb4cadd81acdee6dafe14abeb258f876e4dd410518099ae9a35c88d8097c/yarl-1.18.3-cp311-cp311-musllinux_1_2_x86_64.whl", hash = "sha256:0fb2171a4486bb075316ee754c6d8382ea6eb8b399d4ec62fde2b591f879778a", size = 359141 }, { url = "https://files.pythonhosted.org/packages/9a/7a/4c571597589da4cd5c14ed2a0b17ac56ec9ee7ee615013f74653169e702d/yarl-1.18.3-cp311-cp311-win32.whl", hash = "sha256:61b1a825a13bef4a5f10b1885245377d3cd0bf87cba068e1d9a88c2ae36880e1", size = 84402 }, { url = "https://files.pythonhosted.org/packages/ae/7b/8600250b3d89b625f1121d897062f629883c2f45339623b69b1747ec65fa/yarl-1.18.3-cp311-cp311-win_amd64.whl", hash = "sha256:b9d60031cf568c627d028239693fd718025719c02c9f55df0a53e587aab951b5", size = 91030 }, { url = "https://files.pythonhosted.org/packages/33/85/bd2e2729752ff4c77338e0102914897512e92496375e079ce0150a6dc306/yarl-1.18.3-cp312-cp312-macosx_10_13_universal2.whl", hash = "sha256:1dd4bdd05407ced96fed3d7f25dbbf88d2ffb045a0db60dbc247f5b3c5c25d50", size = 142644 }, { url = "https://files.pythonhosted.org/packages/ff/74/1178322cc0f10288d7eefa6e4a85d8d2e28187ccab13d5b844e8b5d7c88d/yarl-1.18.3-cp312-cp312-macosx_10_13_x86_64.whl", hash = "sha256:7c33dd1931a95e5d9a772d0ac5e44cac8957eaf58e3c8da8c1414de7dd27c576", size = 94962 }, { url = "https://files.pythonhosted.org/packages/be/75/79c6acc0261e2c2ae8a1c41cf12265e91628c8c58ae91f5ff59e29c0787f/yarl-1.18.3-cp312-cp312-macosx_11_0_arm64.whl", hash = "sha256:25b411eddcfd56a2f0cd6a384e9f4f7aa3efee14b188de13048c25b5e91f1640", size = 92795 }, { url = "https://files.pythonhosted.org/packages/6b/32/927b2d67a412c31199e83fefdce6e645247b4fb164aa1ecb35a0f9eb2058/yarl-1.18.3-cp312-cp312-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:436c4fc0a4d66b2badc6c5fc5ef4e47bb10e4fd9bf0c79524ac719a01f3607c2", size = 332368 }, { url = "https://files.pythonhosted.org/packages/19/e5/859fca07169d6eceeaa4fde1997c91d8abde4e9a7c018e371640c2da2b71/yarl-1.18.3-cp312-cp312-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e35ef8683211db69ffe129a25d5634319a677570ab6b2eba4afa860f54eeaf75", size = 342314 }, { url = "https://files.pythonhosted.org/packages/08/75/76b63ccd91c9e03ab213ef27ae6add2e3400e77e5cdddf8ed2dbc36e3f21/yarl-1.18.3-cp312-cp312-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:84b2deecba4a3f1a398df819151eb72d29bfeb3b69abb145a00ddc8d30094512", size = 341987 }, { url = "https://files.pythonhosted.org/packages/1a/e1/a097d5755d3ea8479a42856f51d97eeff7a3a7160593332d98f2709b3580/yarl-1.18.3-cp312-cp312-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:00e5a1fea0fd4f5bfa7440a47eff01d9822a65b4488f7cff83155a0f31a2ecba", size = 336914 }, { url = "https://files.pythonhosted.org/packages/0b/42/e1b4d0e396b7987feceebe565286c27bc085bf07d61a59508cdaf2d45e63/yarl-1.18.3-cp312-cp312-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:d0e883008013c0e4aef84dcfe2a0b172c4d23c2669412cf5b3371003941f72bb", size = 325765 }, { url = "https://files.pythonhosted.org/packages/7e/18/03a5834ccc9177f97ca1bbb245b93c13e58e8225276f01eedc4cc98ab820/yarl-1.18.3-cp312-cp312-musllinux_1_2_aarch64.whl", hash = "sha256:5a3f356548e34a70b0172d8890006c37be92995f62d95a07b4a42e90fba54272", size = 344444 }, { url = "https://files.pythonhosted.org/packages/c8/03/a713633bdde0640b0472aa197b5b86e90fbc4c5bc05b727b714cd8a40e6d/yarl-1.18.3-cp312-cp312-musllinux_1_2_armv7l.whl", hash = "sha256:ccd17349166b1bee6e529b4add61727d3f55edb7babbe4069b5764c9587a8cc6", size = 340760 }, { url = "https://files.pythonhosted.org/packages/eb/99/f6567e3f3bbad8fd101886ea0276c68ecb86a2b58be0f64077396cd4b95e/yarl-1.18.3-cp312-cp312-musllinux_1_2_i686.whl", hash = "sha256:b958ddd075ddba5b09bb0be8a6d9906d2ce933aee81100db289badbeb966f54e", size = 346484 }, { url = "https://files.pythonhosted.org/packages/8e/a9/84717c896b2fc6cb15bd4eecd64e34a2f0a9fd6669e69170c73a8b46795a/yarl-1.18.3-cp312-cp312-musllinux_1_2_ppc64le.whl", hash = "sha256:c7d79f7d9aabd6011004e33b22bc13056a3e3fb54794d138af57f5ee9d9032cb", size = 359864 }, { url = "https://files.pythonhosted.org/packages/1e/2e/d0f5f1bef7ee93ed17e739ec8dbcb47794af891f7d165fa6014517b48169/yarl-1.18.3-cp312-cp312-musllinux_1_2_s390x.whl", hash = "sha256:4891ed92157e5430874dad17b15eb1fda57627710756c27422200c52d8a4e393", size = 364537 }, { url = "https://files.pythonhosted.org/packages/97/8a/568d07c5d4964da5b02621a517532adb8ec5ba181ad1687191fffeda0ab6/yarl-1.18.3-cp312-cp312-musllinux_1_2_x86_64.whl", hash = "sha256:ce1af883b94304f493698b00d0f006d56aea98aeb49d75ec7d98cd4a777e9285", size = 357861 }, { url = "https://files.pythonhosted.org/packages/7d/e3/924c3f64b6b3077889df9a1ece1ed8947e7b61b0a933f2ec93041990a677/yarl-1.18.3-cp312-cp312-win32.whl", hash = "sha256:f91c4803173928a25e1a55b943c81f55b8872f0018be83e3ad4938adffb77dd2", size = 84097 }, { url = "https://files.pythonhosted.org/packages/34/45/0e055320daaabfc169b21ff6174567b2c910c45617b0d79c68d7ab349b02/yarl-1.18.3-cp312-cp312-win_amd64.whl", hash = "sha256:7e2ee16578af3b52ac2f334c3b1f92262f47e02cc6193c598502bd46f5cd1477", size = 90399 }, { url = "https://files.pythonhosted.org/packages/30/c7/c790513d5328a8390be8f47be5d52e141f78b66c6c48f48d241ca6bd5265/yarl-1.18.3-cp313-cp313-macosx_10_13_universal2.whl", hash = "sha256:90adb47ad432332d4f0bc28f83a5963f426ce9a1a8809f5e584e704b82685dcb", size = 140789 }, { url = "https://files.pythonhosted.org/packages/30/aa/a2f84e93554a578463e2edaaf2300faa61c8701f0898725842c704ba5444/yarl-1.18.3-cp313-cp313-macosx_10_13_x86_64.whl", hash = "sha256:913829534200eb0f789d45349e55203a091f45c37a2674678744ae52fae23efa", size = 94144 }, { url = "https://files.pythonhosted.org/packages/c6/fc/d68d8f83714b221a85ce7866832cba36d7c04a68fa6a960b908c2c84f325/yarl-1.18.3-cp313-cp313-macosx_11_0_arm64.whl", hash = "sha256:ef9f7768395923c3039055c14334ba4d926f3baf7b776c923c93d80195624782", size = 91974 }, { url = "https://files.pythonhosted.org/packages/56/4e/d2563d8323a7e9a414b5b25341b3942af5902a2263d36d20fb17c40411e2/yarl-1.18.3-cp313-cp313-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:88a19f62ff30117e706ebc9090b8ecc79aeb77d0b1f5ec10d2d27a12bc9f66d0", size = 333587 }, { url = "https://files.pythonhosted.org/packages/25/c9/cfec0bc0cac8d054be223e9f2c7909d3e8442a856af9dbce7e3442a8ec8d/yarl-1.18.3-cp313-cp313-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e17c9361d46a4d5addf777c6dd5eab0715a7684c2f11b88c67ac37edfba6c482", size = 344386 }, { url = "https://files.pythonhosted.org/packages/ab/5d/4c532190113b25f1364d25f4c319322e86232d69175b91f27e3ebc2caf9a/yarl-1.18.3-cp313-cp313-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:1a74a13a4c857a84a845505fd2d68e54826a2cd01935a96efb1e9d86c728e186", size = 345421 }, { url = "https://files.pythonhosted.org/packages/23/d1/6cdd1632da013aa6ba18cee4d750d953104a5e7aac44e249d9410a972bf5/yarl-1.18.3-cp313-cp313-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:41f7ce59d6ee7741af71d82020346af364949314ed3d87553763a2df1829cc58", size = 339384 }, { url = "https://files.pythonhosted.org/packages/9a/c4/6b3c39bec352e441bd30f432cda6ba51681ab19bb8abe023f0d19777aad1/yarl-1.18.3-cp313-cp313-manylinux_2_5_i686.manylinux1_i686.manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:f52a265001d830bc425f82ca9eabda94a64a4d753b07d623a9f2863fde532b53", size = 326689 }, { url = "https://files.pythonhosted.org/packages/23/30/07fb088f2eefdc0aa4fc1af4e3ca4eb1a3aadd1ce7d866d74c0f124e6a85/yarl-1.18.3-cp313-cp313-musllinux_1_2_aarch64.whl", hash = "sha256:82123d0c954dc58db301f5021a01854a85bf1f3bb7d12ae0c01afc414a882ca2", size = 345453 }, { url = "https://files.pythonhosted.org/packages/63/09/d54befb48f9cd8eec43797f624ec37783a0266855f4930a91e3d5c7717f8/yarl-1.18.3-cp313-cp313-musllinux_1_2_armv7l.whl", hash = "sha256:2ec9bbba33b2d00999af4631a3397d1fd78290c48e2a3e52d8dd72db3a067ac8", size = 341872 }, { url = "https://files.pythonhosted.org/packages/91/26/fd0ef9bf29dd906a84b59f0cd1281e65b0c3e08c6aa94b57f7d11f593518/yarl-1.18.3-cp313-cp313-musllinux_1_2_i686.whl", hash = "sha256:fbd6748e8ab9b41171bb95c6142faf068f5ef1511935a0aa07025438dd9a9bc1", size = 347497 }, { url = "https://files.pythonhosted.org/packages/d9/b5/14ac7a256d0511b2ac168d50d4b7d744aea1c1aa20c79f620d1059aab8b2/yarl-1.18.3-cp313-cp313-musllinux_1_2_ppc64le.whl", hash = "sha256:877d209b6aebeb5b16c42cbb377f5f94d9e556626b1bfff66d7b0d115be88d0a", size = 359981 }, { url = "https://files.pythonhosted.org/packages/ca/b3/d493221ad5cbd18bc07e642894030437e405e1413c4236dd5db6e46bcec9/yarl-1.18.3-cp313-cp313-musllinux_1_2_s390x.whl", hash = "sha256:b464c4ab4bfcb41e3bfd3f1c26600d038376c2de3297760dfe064d2cb7ea8e10", size = 366229 }, { url = "https://files.pythonhosted.org/packages/04/56/6a3e2a5d9152c56c346df9b8fb8edd2c8888b1e03f96324d457e5cf06d34/yarl-1.18.3-cp313-cp313-musllinux_1_2_x86_64.whl", hash = "sha256:8d39d351e7faf01483cc7ff7c0213c412e38e5a340238826be7e0e4da450fdc8", size = 360383 }, { url = "https://files.pythonhosted.org/packages/fd/b7/4b3c7c7913a278d445cc6284e59b2e62fa25e72758f888b7a7a39eb8423f/yarl-1.18.3-cp313-cp313-win32.whl", hash = "sha256:61ee62ead9b68b9123ec24bc866cbef297dd266175d53296e2db5e7f797f902d", size = 310152 }, { url = "https://files.pythonhosted.org/packages/f5/d5/688db678e987c3e0fb17867970700b92603cadf36c56e5fb08f23e822a0c/yarl-1.18.3-cp313-cp313-win_amd64.whl", hash = "sha256:578e281c393af575879990861823ef19d66e2b1d0098414855dd367e234f5b3c", size = 315723 }, { url = "https://files.pythonhosted.org/packages/f5/4b/a06e0ec3d155924f77835ed2d167ebd3b211a7b0853da1cf8d8414d784ef/yarl-1.18.3-py3-none-any.whl", hash = "sha256:b57f4f58099328dfb26c6a771d09fb20dbbae81d20cfb66141251ea063bd101b", size = 45109 }, ] [[package]] name = "zipp" version = "3.21.0" source = { registry = "https://pypi.org/simple" } sdist = { url = "https://files.pythonhosted.org/packages/3f/50/bad581df71744867e9468ebd0bcd6505de3b275e06f202c2cb016e3ff56f/zipp-3.21.0.tar.gz", hash = "sha256:2c9958f6430a2040341a52eb608ed6dd93ef4392e02ffe219417c1b28b5dd1f4", size = 24545 } wheels = [ { url = "https://files.pythonhosted.org/packages/b7/1a/7e4798e9339adc931158c9d69ecc34f5e6791489d469f5e50ec15e35f458/zipp-3.21.0-py3-none-any.whl", hash = "sha256:ac1bbe05fd2991f160ebce24ffbac5f6d11d83dc90891255885223d42b3cd931", size = 9630 }, ]